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

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
fe05fe6f 7c432159

+850 -7596
+4 -3
doc/languages-frameworks/python.section.md
··· 411 411 version = "0.10.0"; 412 412 format = "setuptools"; 413 413 414 - src = python311.pkgs.fetchPypi { 414 + src = fetchPypi { 415 415 inherit pname version; 416 416 hash = "sha256-CP3V73yWSArRHBLUct4hrNMjWZlvaaUlkpm1QP66RWA="; 417 417 }; ··· 1229 1229 packageOverrides = self: super: { 1230 1230 pandas = super.pandas.overridePythonAttrs(old: rec { 1231 1231 version = "0.19.1"; 1232 - src = super.fetchPypi { 1232 + src = fetchPypi { 1233 1233 pname = "pandas"; 1234 1234 inherit version; 1235 1235 hash = "sha256-JQn+rtpy/OA2deLszSKEuxyttqBzcAil50H+JDHUdCE="; ··· 1286 1286 ```nix 1287 1287 { lib 1288 1288 , python3 1289 + , fetchPypi 1289 1290 }: 1290 1291 1291 1292 python3.pkgs.buildPythonApplication rec { ··· 1294 1293 version = "2.7.9"; 1295 1294 format = "setuptools"; 1296 1295 1297 - src = python3.pkgs.fetchPypi { 1296 + src = fetchPypi { 1298 1297 inherit pname version; 1299 1298 hash = "sha256-Pe229rT0aHwA98s+nTHQMEFKZPo/yw6sot8MivFDvAw="; 1300 1299 };
+12 -6
maintainers/maintainer-list.nix
··· 4609 4609 githubId = 18535642; 4610 4610 name = "Emily"; 4611 4611 }; 4612 + emilylange = { 4613 + email = "nix@emilylange.de"; 4614 + github = "emilylange"; 4615 + githubId = 55066419; 4616 + name = "Emily Lange"; 4617 + }; 4612 4618 emilytrau = { 4613 4619 name = "Emily Trau"; 4614 4620 email = "nix@angus.ws"; ··· 6781 6775 githubId = 36667224; 6782 6776 name = "Yingchi Long"; 6783 6777 }; 6784 - indeednotjames = { 6785 - email = "nix@indeednotjames.com"; 6786 - github = "IndeedNotJames"; 6787 - githubId = 55066419; 6788 - name = "Emily Lange"; 6789 - }; 6790 6778 indexyz = { 6791 6779 email = "indexyz@pm.me"; 6792 6780 github = "5aaee9"; ··· 7941 7941 github = "JulienMalka"; 7942 7942 githubId = 1792886; 7943 7943 name = "Julien Malka"; 7944 + }; 7945 + juliusrickert = { 7946 + email = "nixpkgs@juliusrickert.de"; 7947 + github = "juliusrickert"; 7948 + githubId = 5007494; 7949 + name = "Julius Rickert"; 7944 7950 }; 7945 7951 julm = { 7946 7952 email = "julm+nixpkgs@sourcephile.fr";
+2
nixos/doc/manual/release-notes/rl-2305.section.md
··· 563 563 564 564 - `make-disk-image` handles `contents` arguments that are directories better, fixing a bug where it used to put them in a subdirectory of the intended `target`. 565 565 566 + - The option `services.jitsi-videobridge.apis` has been renamed to `colibriRestApi` and turned into a boolean. Setting it to `true` will enable the private rest API, useful for monitoring using `services.prometheus.exporters.jitsi.enable`. Learn more about the API: "[The COLIBRI control interface (/colibri/)](https://github.com/jitsi/jitsi-videobridge/blob/v2.3/doc/rest.md)". 567 + 566 568 ## Detailed migration information {#sec-release-23.05-migration} 567 569 568 570 ### Pipewire configuration overrides {#sec-release-23.05-migration-pipewire}
+3 -3
nixos/modules/services/network-filesystems/kubo.nix
··· 172 172 173 173 emptyRepo = mkOption { 174 174 type = types.bool; 175 - default = false; 176 - description = lib.mdDoc "If set to true, the repo won't be initialized with help files"; 175 + default = true; 176 + description = lib.mdDoc "If set to false, the repo will be initialized with help files"; 177 177 }; 178 178 179 179 settings = mkOption { ··· 331 331 332 332 preStart = '' 333 333 if [[ ! -f "$IPFS_PATH/config" ]]; then 334 - ipfs init ${optionalString cfg.emptyRepo "-e"} 334 + ipfs init --empty-repo=${lib.boolToString cfg.emptyRepo} 335 335 else 336 336 # After an unclean shutdown this file may exist which will cause the config command to attempt to talk to the daemon. This will hang forever if systemd is holding our sockets open. 337 337 rm -vf "$IPFS_PATH/api"
+12 -7
nixos/modules/services/networking/jitsi-videobridge.nix
··· 43 43 muc_nickname = xmppConfig.mucNickname; 44 44 disable_certificate_verification = xmppConfig.disableCertificateVerification; 45 45 }); 46 + apis.rest.enabled = cfg.colibriRestApi; 46 47 }; 47 48 }; 48 49 ··· 51 50 jvbConfig = recursiveUpdate defaultJvbConfig cfg.config; 52 51 in 53 52 { 53 + imports = [ 54 + (mkRemovedOptionModule [ "services" "jitsi-videobridge" "apis" ] 55 + "services.jitsi-videobridge.apis was broken and has been migrated into the boolean option services.jitsi-videobridge.colibriRestApi. It is set to false by default, setting it to true will correctly enable the private /colibri rest API." 56 + ) 57 + ]; 54 58 options.services.jitsi-videobridge = with types; { 55 59 enable = mkEnableOption (lib.mdDoc "Jitsi Videobridge, a WebRTC compatible video router"); 56 60 ··· 198 192 ''; 199 193 }; 200 194 201 - apis = mkOption { 202 - type = with types; listOf str; 195 + colibriRestApi = mkOption { 196 + type = bool; 203 197 description = lib.mdDoc '' 204 - What is passed as --apis= parameter. If this is empty, "none" is passed. 205 - Needed for monitoring jitsi. 198 + Whether to enable the private rest API for the COLIBRI control interface. 199 + Needed for monitoring jitsi, enabling scraping of the /colibri/stats endpoint. 206 200 ''; 207 - default = []; 208 - example = literalExpression "[ \"colibri\" \"rest\" ]"; 201 + default = false; 209 202 }; 210 203 }; 211 204 ··· 238 233 "export ${toVarName name}=$(cat ${xmppConfig.passwordFile})\n" 239 234 ) cfg.xmppConfigs)) 240 235 + '' 241 - ${pkgs.jitsi-videobridge}/bin/jitsi-videobridge --apis=${if (cfg.apis == []) then "none" else concatStringsSep "," cfg.apis} 236 + ${pkgs.jitsi-videobridge}/bin/jitsi-videobridge 242 237 ''; 243 238 244 239 serviceConfig = {
+1 -1
nixos/modules/services/security/vault-agent.nix
··· 123 123 }) 124 124 [ "consul-template" "vault-agent" ]); 125 125 126 - meta.maintainers = with maintainers; [ indeednotjames tcheronneau ]; 126 + meta.maintainers = with maintainers; [ emilylange tcheronneau ]; 127 127 } 128 128
+6
nixos/modules/services/video/epgstation/default.nix
··· 264 264 description = "EPGStation user"; 265 265 group = config.users.groups.epgstation.name; 266 266 isSystemUser = true; 267 + 268 + # NPM insists on creating ~/.npm 269 + home = "/var/cache/epgstation"; 267 270 }; 268 271 269 272 users.groups.epgstation = { }; ··· 321 318 ++ lib.optional config.services.mirakurun.enable "mirakurun.service" 322 319 ++ lib.optional config.services.mysql.enable "mysql.service"; 323 320 321 + environment.NODE_ENV = "production"; 322 + 324 323 serviceConfig = { 325 324 ExecStart = "${cfg.package}/bin/epgstation start"; 326 325 ExecStartPre = "+${preStartScript}"; 327 326 User = username; 328 327 Group = groupname; 328 + CacheDirectory = "epgstation"; 329 329 StateDirectory = "epgstation"; 330 330 LogsDirectory = "epgstation"; 331 331 ConfigurationDirectory = "epgstation";
+1 -1
nixos/tests/gitea.nix
··· 26 26 supportedDbTypes = [ "mysql" "postgres" "sqlite3" ]; 27 27 makeGiteaTest = type: nameValuePair type (makeTest { 28 28 name = "${giteaPackage.pname}-${type}"; 29 - meta.maintainers = with maintainers; [ aanderse indeednotjames kolaente ma27 ]; 29 + meta.maintainers = with maintainers; [ aanderse emilylange kolaente ma27 ]; 30 30 31 31 nodes = { 32 32 server = { config, pkgs, ... }: {
+9 -7
nixos/tests/prometheus-exporters.nix
··· 328 328 systemd.services.prometheus-jitsi-exporter.after = [ "jitsi-videobridge2.service" ]; 329 329 services.jitsi-videobridge = { 330 330 enable = true; 331 - apis = [ "colibri" "rest" ]; 331 + colibriRestApi = true; 332 332 }; 333 333 }; 334 334 exporterTest = '' ··· 1198 1198 wait_for_unit("prometheus-statsd-exporter.service") 1199 1199 wait_for_open_port(9102) 1200 1200 succeed("curl http://localhost:9102/metrics | grep 'statsd_exporter_build_info{'") 1201 - succeed( 1202 - "echo 'test.udp:1|c' > /dev/udp/localhost/9125", 1203 - "curl http://localhost:9102/metrics | grep 'test_udp 1'", 1201 + wait_until_succeeds( 1202 + "echo 'test.udp:1|c' > /dev/udp/localhost/9125 && \ 1203 + curl http://localhost:9102/metrics | grep 'test_udp 1'", 1204 + timeout=10 1204 1205 ) 1205 - succeed( 1206 - "echo 'test.tcp:1|c' > /dev/tcp/localhost/9125", 1207 - "curl http://localhost:9102/metrics | grep 'test_tcp 1'", 1206 + wait_until_succeeds( 1207 + "echo 'test.tcp:1|c' > /dev/tcp/localhost/9125 && \ 1208 + curl http://localhost:9102/metrics | grep 'test_tcp 1'", 1209 + timeout=10 1208 1210 ) 1209 1211 ''; 1210 1212 };
+2 -2
pkgs/applications/blockchains/ton/default.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "ton"; 16 - version = "2023.04"; 16 + version = "2023.05"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "ton-blockchain"; 20 20 repo = "ton"; 21 21 rev = "v${version}"; 22 - sha256 = "sha256-3HQF0wKk0iRV5fKzuCTv7X7MC+snMDrodgqScCZQVY4="; 22 + sha256 = "sha256-EuFKoqOzKoaBCiVAsb8K053kAL4bw1WqmmybVJX2Fmo="; 23 23 fetchSubmodules = true; 24 24 }; 25 25
+1 -13
pkgs/applications/editors/emacs/elisp-packages/manual-packages/color-theme-solarized/default.nix
··· 1 1 { lib 2 2 , trivialBuild 3 3 , fetchFromGitHub 4 - , emacs 5 4 , color-theme 6 5 }: 7 6 ··· 15 16 hash = "sha256-oxX0lo6sxotEiR3nPrKPE9H01HKB3ohB/p8eEHFTp5k="; 16 17 }; 17 18 18 - buildInputs = [ emacs ]; 19 - propagatedUserEnvPkgs = [ color-theme ]; 20 - 21 - buildPhase = '' 22 - runHook preBuild 23 - 24 - emacs -L . -L ${color-theme}/share/emacs/site-lisp/elpa/color-theme-* \ 25 - --batch -f batch-byte-compile *.el 26 - 27 - runHook postBuild 28 - ''; 19 + packageRequires = [ color-theme ]; 29 20 30 21 meta = with lib; { 31 22 homepage = "http://ethanschoonover.com/solarized"; 32 23 description = "Precision colors for machines and people; Emacs implementation"; 33 24 license = licenses.mit; 34 25 maintainers = with maintainers; [ samuelrivas AndersonTorres ]; 35 - inherit (emacs.meta) platforms; 36 26 }; 37 27 }
+3 -3
pkgs/applications/misc/system76-keyboard-configurator/default.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "system76-keyboard-configurator"; 9 - version = "1.3.1"; 9 + version = "1.3.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "pop-os"; 13 13 repo = "keyboard-configurator"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-k9VmEg/HZECUwHaD491ZmfGUxZ14hLOaJD5x3zMK2jI="; 15 + sha256 = "sha256-21cn43qyKg8jL6FF8D9H7dgcgSKggqaxb4cJVc0ljl0="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ ··· 28 28 udev 29 29 ]; 30 30 31 - cargoHash = "sha256-0SFph9quh4QWR3nU5IJr4FyLGqrYvmHcZHDRli6phsc="; 31 + cargoHash = "sha256-9VjrDE/1VAgNrRmSYxCYKPrnilPQF+OXAYpFkF2lpAE="; 32 32 33 33 meta = with lib; { 34 34 description = "Keyboard configuration application for System76 keyboards and laptops";
+2 -2
pkgs/applications/networking/kubo/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubo"; 5 - version = "0.19.2"; # When updating, also check if the repo version changed and adjust repoVersion below 5 + version = "0.20.0"; # When updating, also check if the repo version changed and adjust repoVersion below 6 6 rev = "v${version}"; 7 7 8 8 passthru.repoVersion = "13"; # Also update kubo-migrator when changing the repo version ··· 10 10 # Kubo makes changes to it's source tarball that don't match the git source. 11 11 src = fetchurl { 12 12 url = "https://github.com/ipfs/kubo/releases/download/${rev}/kubo-source.tar.gz"; 13 - hash = "sha256-HPhlKAavINaN0SJHWmeJRx43jfeHeYDZb3/dZ55kMLI="; 13 + hash = "sha256-3Oj/x3EkceNO8/Ik7+U43wi1aL0lYJi1FA0AjtdJRDI="; 14 14 }; 15 15 16 16 # tarball contains multiple files/directories
+4
pkgs/applications/terminal-emulators/wezterm/default.nix
··· 22 22 , CoreGraphics 23 23 , Cocoa 24 24 , Foundation 25 + , System 25 26 , libiconv 26 27 , UserNotifications 27 28 , nixosTests ··· 82 81 CoreGraphics 83 82 Foundation 84 83 libiconv 84 + System 85 85 UserNotifications 86 86 ]; 87 87 88 88 buildFeatures = [ "distro-defaults" ]; 89 + 90 + env.NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-framework System"; 89 91 90 92 postInstall = '' 91 93 mkdir -p $out/nix-support
+1 -1
pkgs/applications/version-management/forgejo/default.nix
··· 116 116 homepage = "https://forgejo.org"; 117 117 changelog = "https://codeberg.org/forgejo/forgejo/releases/tag/v${version}"; 118 118 license = licenses.mit; 119 - maintainers = with maintainers; [ indeednotjames urandom ]; 119 + maintainers = with maintainers; [ emilylange urandom ]; 120 120 broken = stdenv.isDarwin; 121 121 mainProgram = "gitea"; 122 122 };
+1 -1
pkgs/applications/version-management/gitlab/rubyEnv/Gemfile
··· 19 19 20 20 # Pin openssl to match the version bundled with our supported Rubies. 21 21 # See https://stdgems.org/openssl/#gem-version. 22 - gem 'openssl', '2.2.2' 22 + gem 'openssl', '3.0.2' 23 23 gem 'ipaddr', '~> 1.2.5' 24 24 25 25 # Responders respond_to and respond_with
+3 -4
pkgs/applications/version-management/gitlab/rubyEnv/Gemfile.lock
··· 1093 1093 validate_email 1094 1094 validate_url 1095 1095 webfinger (>= 1.0.1) 1096 - openssl (2.2.2) 1097 - ipaddr 1096 + openssl (3.0.2) 1098 1097 openssl-signature_algorithm (1.3.0) 1099 1098 openssl (> 2.0) 1100 1099 opentracing (0.5.0) ··· 1854 1855 omniauth_crowd (~> 2.4.0)! 1855 1856 omniauth_openid_connect (~> 0.6.1) 1856 1857 openid_connect (= 1.3.0) 1857 - openssl (= 2.2.2) 1858 + openssl (= 3.0.2) 1858 1859 org-ruby (~> 0.9.12) 1859 1860 pact (~> 1.63) 1860 1861 parallel (~> 1.19) ··· 1966 1967 yajl-ruby (~> 1.4.3) 1967 1968 1968 1969 BUNDLED WITH 1969 - 2.4.12 1970 + 2.4.13
+2 -3
pkgs/applications/version-management/gitlab/rubyEnv/gemset.nix
··· 4218 4218 version = "1.3.0"; 4219 4219 }; 4220 4220 openssl = { 4221 - dependencies = ["ipaddr"]; 4222 4221 groups = ["default"]; 4223 4222 platforms = []; 4224 4223 source = { 4225 4224 remotes = ["https://rubygems.org"]; 4226 - sha256 = "0xx01in25q31rpxmq2qlimi44zarsp4px7046xnc6in0pa127xsk"; 4225 + sha256 = "0mcg47zz4w902cq6c8cdj62npawgwq68sfh7n7aqy7vm3pgvls9h"; 4227 4226 type = "gem"; 4228 4227 }; 4229 - version = "2.2.2"; 4228 + version = "3.0.2"; 4230 4229 }; 4231 4230 openssl-signature_algorithm = { 4232 4231 dependencies = ["openssl"];
+3
pkgs/applications/version-management/gitlab/update.py
··· 144 144 with open(rubyenv_dir / fn, 'w') as f: 145 145 f.write(repo.get_file(fn, rev)) 146 146 147 + # patch for openssl 3.x support 148 + subprocess.check_output(['sed', '-i', "s:'openssl', '2.*':'openssl', '3.0.2':g", 'Gemfile'], cwd=rubyenv_dir) 149 + 147 150 # Fetch vendored dependencies temporarily in order to build the gemset.nix 148 151 subprocess.check_output(['mkdir', '-p', 'vendor/gems'], cwd=rubyenv_dir) 149 152 subprocess.check_output(['sh', '-c', f'curl -L https://gitlab.com/gitlab-org/gitlab/-/archive/v{version}-ee/gitlab-v{version}-ee.tar.bz2?path=vendor/gems | tar -xj --strip-components=3'], cwd=f'{rubyenv_dir}/vendor/gems')
+5 -1
pkgs/applications/video/mpv/scripts/webtorrent-mpv-hook.nix
··· 1 - { lib , buildNpmPackage , fetchFromGitHub, nodejs }: 1 + { lib, buildNpmPackage, fetchFromGitHub, nodejs, python3 }: 2 2 3 3 buildNpmPackage rec { 4 4 pname = "webtorrent-mpv-hook"; ··· 20 20 21 21 npmDepsHash = "sha256-GpNUJ5ZCgMjSYLqsIE/RwkTSFT3uAhxrHPe7XvGDRHE="; 22 22 makeCacheWritable = true; 23 + 24 + nativeBuildInputs = [ 25 + python3 # Fixes node-gyp on aarch64-linux 26 + ]; 23 27 24 28 postInstall = '' 25 29 mkdir -p $out/share/mpv/scripts/
+1
pkgs/build-support/node/build-npm-package/hooks/default.nix
··· 6 6 name = "npm-config-hook"; 7 7 substitutions = { 8 8 nodeSrc = srcOnly nodejs; 9 + nodeGyp = "${buildPackages.nodejs}/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js"; 9 10 10 11 # Specify `diff`, `jq`, and `prefetch-npm-deps` by abspath to ensure that the user's build 11 12 # inputs do not cause us to find the wrong binaries.
+6 -16
pkgs/build-support/node/build-npm-package/hooks/npm-config-hook.sh
··· 3 3 npmConfigHook() { 4 4 echo "Executing npmConfigHook" 5 5 6 + # Use npm patches in the nodejs package 7 + export NIX_NODEJS_BUILDNPMPACKAGE=1 8 + export prefetchNpmDeps="@prefetchNpmDeps@" 9 + 6 10 echo "Configuring npm" 7 11 8 12 export HOME="$TMPDIR" 9 13 export npm_config_nodedir="@nodeSrc@" 14 + export npm_config_node_gyp="@nodeGyp@" 10 15 11 16 if [ -z "${npmDeps-}" ]; then 12 17 echo ··· 98 93 99 94 patchShebangs node_modules 100 95 101 - local -r lockfileVersion="$(@jq@ .lockfileVersion package-lock.json)" 102 - 103 - if (( lockfileVersion < 2 )); then 104 - # This is required because npm consults a hidden lockfile in node_modules to figure out 105 - # what to create bin links for. When using an old lockfile offline, this hidden lockfile 106 - # contains insufficent data, making npm silently fail to create links. The hidden lockfile 107 - # is bypassed when any file in node_modules is newer than it. Thus, we create a file when 108 - # using an old lockfile, so bin links work as expected without having to downgrade Node or npm. 109 - touch node_modules/.meow 110 - fi 111 - 112 - npm rebuild "${npmRebuildFlags[@]}" "${npmFlags[@]}" 113 - 114 - if (( lockfileVersion < 2 )); then 115 - rm node_modules/.meow 116 - fi 96 + npm rebuild $npmRebuildFlags "${npmRebuildFlagsArray[@]}" $npmFlags "${npmFlagsArray[@]}" 117 97 118 98 patchShebangs node_modules 119 99
+4 -4
pkgs/data/fonts/source-code-pro/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "source-code-pro"; 5 - version = "2.038"; 5 + version = "2.042"; 6 6 7 7 src = fetchzip { 8 - url = "https://github.com/adobe-fonts/source-code-pro/releases/download/${version}R-ro%2F1.058R-it%2F1.018R-VAR/OTF-source-code-pro-${version}R-ro-1.058R-it.zip"; 8 + url = "https://github.com/adobe-fonts/source-code-pro/releases/download/${version}R-u%2F1.062R-i%2F1.026R-vf/OTF-source-code-pro-${version}R-u_1.062R-i.zip"; 9 9 stripRoot = false; 10 - hash = "sha256-ijeTLka131jf6B9xj/eNWK1T5r7r3aBXBgnVyRAxmuY="; 10 + hash = "sha256-+BnfmD+AjObSoVxPvFAqbnMD2j5qf2YmbXGQtXoaiy0="; 11 11 }; 12 12 13 13 installPhase = '' 14 14 runHook preInstall 15 15 16 - install -Dm644 *.otf -t $out/share/fonts/opentype 16 + install -Dm644 OTF/*.otf -t $out/share/fonts/opentype 17 17 18 18 runHook postInstall 19 19 '';
+2 -2
pkgs/data/fonts/victor-mono/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "victor-mono"; 5 - version = "1.5.4"; 5 + version = "1.5.5"; 6 6 7 7 # Upstream prefers we download from the website, 8 8 # but we really insist on a more versioned resource. ··· 14 14 src = fetchzip { 15 15 url = "https://github.com/rubjo/victor-mono/raw/v${version}/public/VictorMonoAll.zip"; 16 16 stripRoot = false; 17 - hash = "sha256-E8j1bfYrM8yRtasiwgTvyE4EYx2LyAbmw3MXH1l+owk="; 17 + hash = "sha256-l8XeKE9PtluiazZO0PXfkGCcnm5o+VZdL7NZ6w0tp80="; 18 18 }; 19 19 20 20 installPhase = ''
+2 -7
pkgs/development/compilers/souffle/default.nix
··· 10 10 in 11 11 stdenv.mkDerivation rec { 12 12 pname = "souffle"; 13 - version = "2.3"; 13 + version = "2.4"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "souffle-lang"; 17 17 repo = "souffle"; 18 18 rev = version; 19 - sha256 = "sha256-wdTBSmyA2I+gaSV577NNKA2oY2fdVTGmvV7h15NY1tU="; 19 + sha256 = "sha256-5g2Ikbfm5nQrsgGntZZ/VbjqSDOj0AP/mnH1nW2b4co="; 20 20 }; 21 21 22 22 patches = [ 23 23 ./threads.patch 24 - (fetchpatch { 25 - name = "missing-override.patch"; 26 - url = "https://github.com/souffle-lang/souffle/commit/da2d778f0cca94f206686546fa56b9ffc738ad75.patch"; 27 - sha256 = "Oefm3vRRwOyom94oGSOK2w9m23gkbJ++9gcWrdLlkyk="; 28 - }) 29 24 ]; 30 25 31 26 hardeningDisable = lib.optionals stdenv.isDarwin [ "strictoverflow" ];
+8
pkgs/development/haskell-modules/configuration-common.nix
··· 2663 2663 parsec = lself.parsec_3_1_16_1; 2664 2664 text = lself.text_2_0_2; 2665 2665 })); 2666 + 2667 + # Merged upstream, but never released. Allows both intel and aarch64 darwin to build. 2668 + # https://github.com/vincenthz/hs-gauge/pull/106 2669 + gauge = appendPatch (pkgs.fetchpatch { 2670 + name = "darwin-aarch64-fix.patch"; 2671 + url = "https://github.com/vincenthz/hs-gauge/commit/3d7776f41187c70c4f0b4517e6a7dde10dc02309.patch"; 2672 + hash = "sha256-4osUMo0cvTvyDTXF8lY9tQbFqLywRwsc3RkHIhqSriQ="; 2673 + }) super.gauge; 2666 2674 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
+1
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 708 708 linux-mount: [ platforms.linux ] 709 709 linux-namespaces: [ platforms.linux ] 710 710 lxc: [ platforms.linux ] 711 + memfd: [ platforms.linux ] 711 712 midi-alsa: [ platforms.linux ] # alsa-core only supported on linux 712 713 midisurface: [ platforms.linux ] # alsa-core only supported on linux 713 714 OrderedBits: [ platforms.x86 ] # lacks implementations for non-x86: https://github.com/choener/OrderedBits/blob/401cbbe933b1635aa33e8e9b29a4a570b0a8f044/lib/Data/Bits/Ordered.hs#L316
+1
pkgs/development/haskell-modules/hackage-packages.nix
··· 192598 192598 libraryHaskellDepends = [ base transformers ]; 192599 192599 description = "Open temporary anonymous Linux file handles"; 192600 192600 license = lib.licenses.asl20; 192601 + platforms = lib.platforms.linux; 192601 192602 }) {}; 192602 192603 192603 192604 "meminfo" = callPackage
+4 -4
pkgs/development/interpreters/bqn/cbqn/cbqn-bytecode.nix
··· 5 5 6 6 stdenvNoCC.mkDerivation { 7 7 pname = "cbqn-bytecode"; 8 - version = "unstable-2023-04-19"; 8 + version = "unstable-2023-05-17"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "dzaima"; 12 12 repo = "cbqnBytecode"; 13 - rev = "78ed4102f914eb5fa490d76d4dcd4f8be6e53417"; 14 - hash = "sha256-IOhxcfGmpARiTdFMSpc+Rh8VXtasZdfP6vKJzULNxAg="; 13 + rev = "32db4dfbfc753835bf112f3d8ae2991d8aebbe3d"; 14 + hash = "sha256-9uBPrEESn/rB9u0xXwKaQ7ABveQWPc8LRMPlnI/79kg="; 15 15 }; 16 16 17 17 dontConfigure = true; ··· 20 20 installPhase = '' 21 21 runHook preInstall 22 22 23 - install -D $src/gen/{compiles,explain,formatter,runtime0,runtime1,src} -t $out/dev 23 + install -D $src/gen/{compiles,explain,formatter,runtime0,runtime1,runtime1x,src} -t $out/dev 24 24 25 25 runHook postInstall 26 26 '';
+30 -10
pkgs/development/interpreters/bqn/cbqn/default.nix
··· 6 6 , fixDarwinDylibNames 7 7 , genBytecode ? false 8 8 , bqn-path ? null 9 - , mbqn-source ? null 9 + , mbqn-source 10 10 , enableReplxx ? false 11 - , enableSingeli ? stdenv.hostPlatform.avx2Support 12 11 , enableLibcbqn ? ((stdenv.hostPlatform.isLinux || stdenv.hostPlatform.isDarwin) && !enableReplxx) 13 12 , libffi 14 13 , pkg-config ··· 23 24 24 25 stdenv.mkDerivation rec { 25 26 pname = "cbqn" + lib.optionalString (!genBytecode) "-standalone"; 26 - version = "0.2.0"; 27 + version = "0.3.0"; 27 28 28 29 src = fetchFromGitHub { 29 30 owner = "dzaima"; 30 31 repo = "CBQN"; 31 32 rev = "v${version}"; 32 - hash = "sha256-M9GTsm65DySLcMk9QDEhImHnUvWtYGPwiG657wHg3KA="; 33 + hash = "sha256-LoxwNxuadbYJgIkr1+bZoErTc9WllN2siAsKnxoom3Y="; 33 34 }; 34 35 35 36 nativeBuildInputs = [ ··· 41 42 ]; 42 43 43 44 dontConfigure = true; 45 + doInstallCheck = true; 44 46 45 47 postPatch = '' 46 48 sed -i '/SHELL =.*/ d' makefile ··· 54 54 55 55 buildFlags = [ 56 56 # interpreter binary 57 - (lib.flatten (if enableSingeli then ["o3n-singeli" "f='-mavx2'"] else ["o3"])) 57 + "o3" 58 + "notui=1" # display build progress in a plain-text format 58 59 "REPLXX=${if enableReplxx then "1" else "0"}" 60 + ] ++ lib.optionals stdenv.hostPlatform.avx2Support [ 61 + "has=avx2" 59 62 ] ++ lib.optionals enableLibcbqn [ 60 63 # embeddable interpreter as a shared lib 61 64 "shared-o3" ··· 67 64 preBuild = '' 68 65 # Purity: avoids git downloading bytecode files 69 66 mkdir -p build/bytecodeLocal/gen 67 + cp -r ${singeli-submodule}/dev/* build/singeliLocal/ 70 68 '' + (if genBytecode then '' 71 69 ${bqn-path} ./build/genRuntime ${mbqn-source} build/bytecodeLocal/ 72 70 '' else '' ··· 75 71 '') 76 72 + lib.optionalString enableReplxx '' 77 73 cp -r ${replxx-submodule}/dev/* build/replxxLocal/ 78 - '' 79 - + lib.optionalString enableSingeli '' 80 - cp -r ${singeli-submodule}/dev/* build/singeliLocal/ 81 - ''; 74 + ''; 82 75 83 76 outputs = [ 84 77 "out" ··· 101 100 runHook postInstall 102 101 ''; 103 102 103 + installCheckPhase = '' 104 + runHook preInstallCheck 105 + 106 + # main test suite from mlochbaum/BQN 107 + $out/bin/BQN ${mbqn-source}/test/this.bqn 108 + 109 + # CBQN tests that do not require compiling with test-only flags 110 + $out/bin/BQN test/cmp.bqn 111 + $out/bin/BQN test/equal.bqn 112 + $out/bin/BQN test/copy.bqn 113 + $out/bin/BQN test/bit.bqn 114 + $out/bin/BQN test/hash.bqn 115 + $out/bin/BQN test/squeezeValid.bqn 116 + $out/bin/BQN test/squeezeExact.bqn 117 + $out/bin/BQN test/various.bqn 118 + $out/bin/BQN test/random.bqn 119 + 120 + runHook postInstallCheck 121 + ''; 122 + 104 123 meta = with lib; { 105 124 homepage = "https://github.com/dzaima/CBQN/"; 106 125 description = "BQN implementation in C"; ··· 129 108 platforms = platforms.all; 130 109 }; 131 110 } 132 - # TODO: test suite
+3 -3
pkgs/development/interpreters/bqn/cbqn/singeli.nix
··· 5 5 6 6 stdenvNoCC.mkDerivation { 7 7 pname = "singeli"; 8 - version = "unstable-2023-04-12"; 8 + version = "unstable-2023-04-27"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "mlochbaum"; 12 12 repo = "Singeli"; 13 - rev = "3327956fedfdc6aef12954bc12120f20de2226d0"; 14 - hash = "sha256-k25hk5zTn0m+2Nh9buTJYhtM98/VRlQ0guoRw9el3VE="; 13 + rev = "853ab1a06ae8d8603f228d8e784fa319cc401459"; 14 + hash = "sha256-X/NnufvakihJAE9H7geuuDS7Tv9l7tgLKdRgXC4ZX4A="; 15 15 }; 16 16 17 17 dontConfigure = true;
+3 -3
pkgs/development/interpreters/bqn/mlochbaum-bqn/default.nix
··· 7 7 8 8 stdenvNoCC.mkDerivation rec { 9 9 pname = "bqn"; 10 - version = "0.pre+date=2023-05-09"; 10 + version = "unstable-2023-05-17"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "mlochbaum"; 14 14 repo = "BQN"; 15 - rev = "656b176c5dc783b038b018f0ed17a5414ea62b4d"; 16 - hash = "sha256-6r+N0eCvwvaoB84cw+Vtoqa6MXuI0NXLbOPblemY4M8="; 15 + rev = "070bd07dc10c291695215265218ec0ff856ce457"; 16 + hash = "sha256-GRIIzJwlJ+JTBHXZjoX/9vLFbAC7zyeuqVcrA/Jm/NA="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ makeWrapper ];
+4 -1
pkgs/development/libraries/composable_kernel/default.nix
··· 76 76 77 77 passthru.updateScript = unstableGitUpdater { }; 78 78 79 + # Times out otherwise 80 + requiredSystemFeatures = [ "big-parallel" ]; 81 + 79 82 meta = with lib; { 80 83 description = "Performance portable programming model for machine learning tensor operators"; 81 84 homepage = "https://github.com/ROCmSoftwarePlatform/composable_kernel"; ··· 92 89 cp -a ${ck}/bin/ckProfiler $out 93 90 ''; 94 91 in stdenv.mkDerivation { 95 - inherit (ck) pname version outputs src passthru meta; 92 + inherit (ck) pname version outputs src passthru requiredSystemFeatures meta; 96 93 97 94 dontUnpack = true; 98 95 dontPatch = true;
+2 -2
pkgs/development/libraries/pagmo2/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "pagmo2"; 15 - version = "2.18.0"; 15 + version = "2.19.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "esa"; 19 19 repo = "pagmo2"; 20 20 rev = "v${version}"; 21 - sha256 = "0rd8scs4hj6qd8ylmn5hafncml2vr4fvcgm3agz3jrvmnc7hadrj"; 21 + sha256 = "sha256-z5kg2xKZ666EPK844yp+hi4iGisaIPme9xNdzsAEEjw="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/development/libraries/parson/default.nix
··· 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "parson"; 5 - version = "1.5.1"; 5 + version = "1.5.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "kgabis"; 9 9 repo = "parson"; 10 - rev = "3c4ee26dbb3df177a2d7b9d80e154ec435ca8c01"; # upstream doesn't use tags 11 - sha256 = "sha256-fz2yhxy6Q5uEPAbzMxMiaXqSYkQ9uB3A4sV2qYOekJ8="; 10 + rev = "60c37844d7a1c97547812cac3423d458c73e60f9"; # upstream doesn't use tags 11 + hash = "sha256-SbM0kqRtdcz1s+pUTW7VPMY1O6zdql3bao19Rk4t470="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ meson ninja ];
+27
pkgs/development/python-modules/dashing/default.nix
··· 1 + { lib 2 + , python3 3 + }: 4 + 5 + python3.pkgs.buildPythonPackage rec { 6 + pname = "dashing"; 7 + version = "0.1.0"; 8 + format = "setuptools"; 9 + 10 + disabled = python3.pythonOlder "3.7"; 11 + 12 + src = python3.pkgs.fetchPypi { 13 + inherit pname version; 14 + hash = "sha256-JRRgjg8pp3Xb0bERFWEhnOg9U8+kuqL+QQH6uE/Vbxs="; 15 + }; 16 + 17 + propagatedBuildInputs = with python3.pkgs; [ 18 + blessed 19 + ]; 20 + 21 + meta = with lib; { 22 + homepage = "https://github.com/FedericoCeratto/dashing"; 23 + description = "Terminal dashboards for Python"; 24 + license = licenses.gpl3; 25 + maintainers = with maintainers; [ juliusrickert ]; 26 + }; 27 + }
+4 -3
pkgs/development/python-modules/glances-api/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "glances-api"; 14 - version = "0.4.1"; 14 + version = "0.4.2"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.8"; ··· 19 19 src = fetchFromGitHub { 20 20 owner = "home-assistant-ecosystem"; 21 21 repo = "python-glances-api"; 22 - rev = version; 23 - hash = "sha256-IBEy19iouYAHIZwc/bnMgmHLrbfZjLni0Ne4o0I6FNg="; 22 + rev = "refs/tags/${version}"; 23 + hash = "sha256-fcQgwOYGhpwxSXfa1PYFOe2UDTEu+2YGIQmuSa5J0g4="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ ··· 44 44 meta = with lib; { 45 45 description = "Python API for interacting with Glances"; 46 46 homepage = "https://github.com/home-assistant-ecosystem/python-glances-api"; 47 + changelog = "https://github.com/home-assistant-ecosystem/python-glances-api/releases/tag/${version}"; 47 48 license = with licenses; [ mit ]; 48 49 maintainers = with maintainers; [ fab ]; 49 50 };
+5 -5
pkgs/development/python-modules/hmmlearn/default.nix
··· 1 1 { lib 2 - , fetchurl 2 + , fetchPypi 3 3 , buildPythonPackage 4 4 , numpy 5 5 , scikit-learn ··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "hmmlearn"; 15 - version = "0.2.8"; 15 + version = "0.3.0"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.6"; 19 19 20 - src = fetchurl { 21 - url = "mirror://pypi/h/hmmlearn/${pname}-${version}.tar.gz"; 22 - hash = "sha256-aWkx49zmgBzJt4xin1QwYd1+tnpxFVsD0bOeoXKipfk="; 20 + src = fetchPypi { 21 + inherit pname version; 22 + hash = "sha256-0TqR6jaV34gUZePTYTLX7vToTUg/S6U4pLRuJLXqEA8="; 23 23 }; 24 24 25 25 buildInputs = [
+3
pkgs/development/python-modules/jaraco-net/default.nix
··· 26 26 , importlib-resources 27 27 , pyparsing 28 28 , requests-mock 29 + , nettools 29 30 }: 30 31 31 32 buildPythonPackage rec { ··· 79 78 importlib-resources 80 79 pyparsing 81 80 requests-mock 81 + ] ++ lib.optionals stdenv.isDarwin [ 82 + nettools 82 83 ]; 83 84 84 85 disabledTestPaths = [
+6
pkgs/development/python-modules/json-stream-rs-tokenizer/default.nix
··· 1 1 { lib 2 + , stdenv 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , rustPlatform 5 6 , cargo 7 + , darwin 6 8 , rustc 7 9 , setuptools-rust 8 10 , json-stream-rs-tokenizer ··· 38 36 rustPlatform.cargoSetupHook 39 37 cargo 40 38 rustc 39 + ]; 40 + 41 + buildInputs = lib.optionals stdenv.isDarwin [ 42 + darwin.libiconv 41 43 ]; 42 44 43 45 # Tests depend on json-stream, which depends on this package.
-30
pkgs/development/python-modules/markerlib/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , setuptools 5 - , nose 6 - }: 7 - 8 - buildPythonPackage rec { 9 - version = "0.6.0"; 10 - pname = "markerlib"; 11 - 12 - src = fetchPypi { 13 - inherit pname version; 14 - sha256 = "2fdb3939441f5bf4f090b1979a34f84a11d33eed6c0e3995de88ae5c06b6e3ae"; 15 - }; 16 - 17 - buildInputs = [ setuptools ]; 18 - nativeCheckInputs = [ nose ]; 19 - 20 - checkPhase = '' 21 - nosetests 22 - ''; 23 - 24 - meta = with lib; { 25 - homepage = "https://bitbucket.org/dholth/markerlib/"; 26 - description = "A compiler for PEP 345 environment markers"; 27 - license = licenses.mit; 28 - maintainers = [ maintainers.costrouc ]; 29 - }; 30 - }
+27 -15
pkgs/development/python-modules/onnx/default.nix
··· 1 1 { lib 2 + , stdenv 2 3 , buildPythonPackage 3 - , python3 4 - , bash 5 4 , cmake 6 5 , fetchFromGitHub 7 6 , gtest 8 - , isPy27 9 7 , nbval 10 8 , numpy 9 + , parameterized 11 10 , protobuf 12 11 , pybind11 13 12 , pytestCheckHook 14 - , six 13 + , pythonOlder 15 14 , tabulate 16 15 , typing-extensions 17 - , pythonRelaxDepsHook 18 16 }: 19 17 20 18 let 21 19 gtestStatic = gtest.override { static = true; }; 22 20 in buildPythonPackage rec { 23 21 pname = "onnx"; 24 - version = "1.13.1"; 22 + version = "1.14.0"; 25 23 format = "setuptools"; 26 24 27 - disabled = isPy27; 25 + disabled = pythonOlder "3.8"; 28 26 29 27 src = fetchFromGitHub { 30 28 owner = pname; 31 29 repo = pname; 32 30 rev = "refs/tags/v${version}"; 33 - hash = "sha256-10MH23XpAv/uDW/2tRFGS2lKU8hnaNBwbIBIgVc7Jpk="; 31 + hash = "sha256-f+s25Y/jGosaSdoZY6PE3j6pENkfDcD+IQndrbtuzWg="; 34 32 }; 35 33 36 34 nativeBuildInputs = [ 37 35 cmake 38 - pythonRelaxDepsHook 39 36 pybind11 40 37 ]; 41 - 42 - pythonRelaxDeps = [ "protobuf" ]; 43 38 44 39 propagatedBuildInputs = [ 45 40 protobuf 46 41 numpy 47 - six 48 42 typing-extensions 49 43 ]; 50 44 51 45 nativeCheckInputs = [ 52 46 nbval 47 + parameterized 53 48 pytestCheckHook 54 49 tabulate 55 50 ]; ··· 67 72 # Set CMAKE_INSTALL_LIBDIR to lib explicitly, because otherwise it gets set 68 73 # to lib64 and cmake incorrectly looks for the protobuf library in lib64 69 74 export CMAKE_ARGS="-DCMAKE_INSTALL_LIBDIR=lib -DONNX_USE_PROTOBUF_SHARED_LIBS=ON" 70 - '' + lib.optionalString doCheck '' 71 75 export CMAKE_ARGS+=" -Dgoogletest_STATIC_LIBRARIES=${gtestStatic}/lib/libgtest.a -Dgoogletest_INCLUDE_DIRS=${lib.getDev gtestStatic}/include" 72 76 export ONNX_BUILD_TESTS=1 73 77 ''; ··· 83 89 # The setup.py does all the configuration 84 90 dontUseCmakeConfigure = true; 85 91 86 - doCheck = true; 87 92 preCheck = '' 88 93 export HOME=$(mktemp -d) 89 94 90 95 # detecting source dir as a python package confuses pytest 91 96 mv onnx/__init__.py onnx/__init__.py.hidden 92 97 ''; 93 - pytestFlagsArray = [ "onnx/test" "onnx/examples" ]; 98 + 99 + pytestFlagsArray = [ 100 + "onnx/test" 101 + "onnx/examples" 102 + ]; 103 + 94 104 disabledTests = [ 95 105 # attempts to fetch data from web 96 106 "test_bvlc_alexnet_cpu" ··· 106 108 "test_squeezenet_cpu" 107 109 "test_vgg19_cpu" 108 110 "test_zfnet512_cpu" 111 + ] ++ lib.optionals stdenv.isAarch64 [ 112 + # AssertionError: Output 0 of test 0 in folder 113 + "test__pytorch_converted_Conv2d_depthwise_padded" 114 + "test__pytorch_converted_Conv2d_dilated" 115 + "test_dft" 116 + "test_dft_axis" 117 + # AssertionError: Mismatch in test 'test_Conv2d_depthwise_padded' 118 + "test_xor_bcast4v4d" 119 + # AssertionError: assert 1 == 0 120 + "test_ops_tested" 109 121 ]; 122 + 110 123 disabledTestPaths = [ 111 124 # Unexpected output fields from running code: {'stderr'} 112 125 "onnx/examples/np_array_tensorproto.ipynb" 113 126 ]; 127 + 128 + __darwinAllowLocalNetworking = true; 129 + 114 130 postCheck = '' 115 131 # run "cpp" tests 116 132 .setuptools-cmake-build/onnx_gtests
+1 -1
pkgs/development/ruby-modules/gem-config/default.nix
··· 516 516 517 517 openssl = attrs: { 518 518 # https://github.com/ruby/openssl/issues/369 519 - buildInputs = [ openssl_1_1 ]; 519 + buildInputs = [ (if (lib.versionAtLeast attrs.version "3.0.0") then openssl else openssl_1_1) ]; 520 520 }; 521 521 522 522 opus-ruby = attrs: {
+1 -1
pkgs/development/tools/continuous-integration/drone-runner-docker/default.nix
··· 14 14 vendorHash = "sha256-KcNp3VdJ201oxzF0bLXY4xWHqHNz54ZrVSI96cfhU+k="; 15 15 16 16 meta = with lib; { 17 - maintainers = with maintainers; [ endocrimes indeednotjames ]; 17 + maintainers = with maintainers; [ endocrimes emilylange ]; 18 18 license = licenses.unfreeRedistributable; 19 19 homepage = "https://github.com/drone-runners/drone-runner-docker"; 20 20 description = "Drone pipeline runner that executes builds inside Docker containers";
+2 -2
pkgs/development/tools/database/clickhouse-backup/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "clickhouse-backup"; 10 - version = "2.2.5"; 10 + version = "2.2.6"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "AlexAkulov"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-sy5R2QSVkxFmfRMiD5KDzkFCol7MpOnfz0/JR++zIX4="; 16 + sha256 = "sha256-oFGaNxK8cVrs+rkmJR9wSYB4+i3B8BGYhsuHbUTK3es="; 17 17 }; 18 18 19 19 vendorHash = "sha256-UY/8fWPoO3d0g1/CN215Q4z744S2cCT7fB4ctpridAI=";
+3 -3
pkgs/development/tools/fq/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "fq"; 10 - version = "0.5.0"; 10 + version = "0.6.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "wader"; 14 14 repo = "fq"; 15 15 rev = "v${version}"; 16 - hash = "sha256-Fg5J/iLxGUwb2QRZJMHLqK9dBECW9VsiZGX+LyUtyhw="; 16 + hash = "sha256-j7s9oluNtYi6MmTKCendTIjc/zvynY6fWvXH47XkwOI="; 17 17 }; 18 18 19 - vendorHash = "sha256-sjzGtSBgRybcJvOXM4wKN5pTgihNrjUCMPsc62n3tLk="; 19 + vendorHash = "sha256-XobOcG5s2ggTk3RmJPM14OWv45PMyKs0w0BOvozUobw="; 20 20 21 21 ldflags = [ 22 22 "-s"
+2 -2
pkgs/development/tools/go-containerregistry/default.nix
··· 4 4 5 5 buildGoModule rec { 6 6 pname = "go-containerregistry"; 7 - version = "0.15.1"; 7 + version = "0.15.2"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "google"; 11 11 repo = pname; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-yXIFPLuqyWaWgbGbGOuBwWg/KWM9vuMnXnTBcgluzhI="; 13 + sha256 = "sha256-Bva962laaHJAHwiQAMPtOBkwqce1ww+sBGkjV1TjrwQ="; 14 14 }; 15 15 vendorHash = null; 16 16
+2 -2
pkgs/development/tools/kustomize/kustomize-sops.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kustomize-sops"; 5 - version = "4.1.1"; 5 + version = "4.1.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "viaduct-ai"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-jwOyOGSnUgk9+cD+cGj1/ZzQ84HAdAn0HMy3CLPs1U0="; 11 + sha256 = "sha256-ZIYg6ITGHXJZ0YySwSN8mlSmiFiWsWUeGwIo8vRLw3Y="; 12 12 }; 13 13 14 14 vendorHash = "sha256-tNYPgXFDJuNRlrVE0ywg77goNzfoWHFVzOG9mHqK3q8=";
+3 -3
pkgs/development/tools/pet/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "pet"; 5 - version = "0.4.0"; 5 + version = "0.5.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "knqyf263"; 9 9 repo = "pet"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-gVTpzmXekQxGMucDKskGi+e+34nJwwsXwvQTjRO6Gdg="; 11 + sha256 = "sha256-+ng4+wrJW/fl1DJMbycLymFgiviTwjlxNApE2Q8PesQ="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-dUvp7FEW09V0xMuhewPGw3TuAic/sD7xyXEYviZ2Ivs="; 14 + vendorHash = "sha256-JOP7hcCOwVZ0hb2UXHHdxpKxpZqs6a8AjOFbrs711ps="; 15 15 16 16 ldflags = [ 17 17 "-s" "-w" "-X=github.com/knqyf263/pet/cmd.version=${version}"
+4 -2
pkgs/development/tools/vsce/default.nix
··· 1 1 { lib 2 + , stdenv 2 3 , buildNpmPackage 3 4 , fetchFromGitHub 4 5 , pkg-config 5 6 , libsecret 7 + , darwin 6 8 , python3 7 9 , testers 8 10 , vsce ··· 29 27 30 28 nativeBuildInputs = [ pkg-config python3 ]; 31 29 32 - buildInputs = [ libsecret ]; 30 + buildInputs = [ libsecret ] 31 + ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ AppKit Security ]); 33 32 34 33 makeCacheWritable = true; 35 34 npmFlags = [ "--legacy-peer-deps" ]; ··· 46 43 license = licenses.mit; 47 44 }; 48 45 } 49 -
+18 -9
pkgs/development/web/newman/default.nix
··· 1 - { pkgs, nodejs, stdenv, lib, ... }: 1 + { lib 2 + , buildNpmPackage 3 + , fetchFromGitHub 4 + }: 2 5 3 - let 6 + buildNpmPackage rec { 7 + pname = "newman"; 8 + version = "5.3.2"; 4 9 5 - packageName = with lib; concatStrings (map (entry: (concatStrings (mapAttrsToList (key: value: "${key}-${value}") entry))) (importJSON ./package.json)); 6 - 7 - nodePackages = import ./node-composition.nix { 8 - inherit pkgs nodejs; 9 - inherit (stdenv.hostPlatform) system; 10 + src = fetchFromGitHub { 11 + owner = "postmanlabs"; 12 + repo = "newman"; 13 + rev = "refs/tags/v${version}"; 14 + hash = "sha256-j5YS9Zbk9b3K4+0sGzqtCgEsR+S5nGPf/rebeGzsscA="; 10 15 }; 11 - in 12 - nodePackages.newman.override { 16 + 17 + npmDepsHash = "sha256-FwVmesHtzTZKsTCIfZiRPb1zf7q5LqABAZOh8gXB9qw="; 18 + 19 + dontNpmBuild = true; 20 + 13 21 meta = with lib; { 14 22 homepage = "https://www.getpostman.com"; 15 23 description = "A command-line collection runner for Postman"; 24 + changelog = "https://github.com/postmanlabs/newman/releases/tag/v${version}"; 16 25 maintainers = with maintainers; [ freezeboy ]; 17 26 license = licenses.asl20; 18 27 };
-9
pkgs/development/web/newman/generate-dependencies.sh
··· 1 - #!/usr/bin/env nix-shell 2 - #! nix-shell -i bash -p nodePackages.node2nix 3 - 4 - node2nix \ 5 - --node-env node-env.nix \ 6 - --development \ 7 - --input package.json \ 8 - --output node-packages.nix \ 9 - --composition node-composition.nix
-17
pkgs/development/web/newman/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_14"}: 6 - 7 - let 8 - nodeEnv = import ./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-packages.nix { 15 - inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit; 16 - inherit nodeEnv; 17 - }
-686
pkgs/development/web/newman/node-env.nix
··· 1 - # This file originates from node2nix 2 - 3 - {lib, stdenv, nodejs, python2, pkgs, libtool, runCommand, writeTextFile, writeShellScript}: 4 - 5 - let 6 - # Workaround to cope with utillinux in Nixpkgs 20.09 and util-linux in Nixpkgs master 7 - utillinux = if pkgs ? utillinux then pkgs.utillinux else pkgs.util-linux; 8 - 9 - python = if nodejs ? python then nodejs.python else python2; 10 - 11 - # Create a tar wrapper that filters all the 'Ignoring unknown extended header keyword' noise 12 - tarWrapper = runCommand "tarWrapper" {} '' 13 - mkdir -p $out/bin 14 - 15 - cat > $out/bin/tar <<EOF 16 - #! ${stdenv.shell} -e 17 - $(type -p tar) "\$@" --warning=no-unknown-keyword --delay-directory-restore 18 - EOF 19 - 20 - chmod +x $out/bin/tar 21 - ''; 22 - 23 - # Function that generates a TGZ file from a NPM project 24 - buildNodeSourceDist = 25 - { name, version, src, ... }: 26 - 27 - stdenv.mkDerivation { 28 - name = "node-tarball-${name}-${version}"; 29 - inherit src; 30 - buildInputs = [ nodejs ]; 31 - buildPhase = '' 32 - export HOME=$TMPDIR 33 - tgzFile=$(npm pack | tail -n 1) # Hooks to the pack command will add output (https://docs.npmjs.com/misc/scripts) 34 - ''; 35 - installPhase = '' 36 - mkdir -p $out/tarballs 37 - mv $tgzFile $out/tarballs 38 - mkdir -p $out/nix-support 39 - echo "file source-dist $out/tarballs/$tgzFile" >> $out/nix-support/hydra-build-products 40 - ''; 41 - }; 42 - 43 - # Common shell logic 44 - installPackage = writeShellScript "install-package" '' 45 - installPackage() { 46 - local packageName=$1 src=$2 47 - 48 - local strippedName 49 - 50 - local DIR=$PWD 51 - cd $TMPDIR 52 - 53 - unpackFile $src 54 - 55 - # Make the base dir in which the target dependency resides first 56 - mkdir -p "$(dirname "$DIR/$packageName")" 57 - 58 - if [ -f "$src" ] 59 - then 60 - # Figure out what directory has been unpacked 61 - packageDir="$(find . -maxdepth 1 -type d | tail -1)" 62 - 63 - # Restore write permissions to make building work 64 - find "$packageDir" -type d -exec chmod u+x {} \; 65 - chmod -R u+w "$packageDir" 66 - 67 - # Move the extracted tarball into the output folder 68 - mv "$packageDir" "$DIR/$packageName" 69 - elif [ -d "$src" ] 70 - then 71 - # Get a stripped name (without hash) of the source directory. 72 - # On old nixpkgs it's already set internally. 73 - if [ -z "$strippedName" ] 74 - then 75 - strippedName="$(stripHash $src)" 76 - fi 77 - 78 - # Restore write permissions to make building work 79 - chmod -R u+w "$strippedName" 80 - 81 - # Move the extracted directory into the output folder 82 - mv "$strippedName" "$DIR/$packageName" 83 - fi 84 - 85 - # Change to the package directory to install dependencies 86 - cd "$DIR/$packageName" 87 - } 88 - ''; 89 - 90 - # Bundle the dependencies of the package 91 - # 92 - # Only include dependencies if they don't exist. They may also be bundled in the package. 93 - includeDependencies = {dependencies}: 94 - lib.optionalString (dependencies != []) ( 95 - '' 96 - mkdir -p node_modules 97 - cd node_modules 98 - '' 99 - + (lib.concatMapStrings (dependency: 100 - '' 101 - if [ ! -e "${dependency.packageName}" ]; then 102 - ${composePackage dependency} 103 - fi 104 - '' 105 - ) dependencies) 106 - + '' 107 - cd .. 108 - '' 109 - ); 110 - 111 - # Recursively composes the dependencies of a package 112 - composePackage = { name, packageName, src, dependencies ? [], ... }@args: 113 - builtins.addErrorContext "while evaluating node package '${packageName}'" '' 114 - installPackage "${packageName}" "${src}" 115 - ${includeDependencies { inherit dependencies; }} 116 - cd .. 117 - ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."} 118 - ''; 119 - 120 - pinpointDependencies = {dependencies, production}: 121 - let 122 - pinpointDependenciesFromPackageJSON = writeTextFile { 123 - name = "pinpointDependencies.js"; 124 - text = '' 125 - var fs = require('fs'); 126 - var path = require('path'); 127 - 128 - function resolveDependencyVersion(location, name) { 129 - if(location == process.env['NIX_STORE']) { 130 - return null; 131 - } else { 132 - var dependencyPackageJSON = path.join(location, "node_modules", name, "package.json"); 133 - 134 - if(fs.existsSync(dependencyPackageJSON)) { 135 - var dependencyPackageObj = JSON.parse(fs.readFileSync(dependencyPackageJSON)); 136 - 137 - if(dependencyPackageObj.name == name) { 138 - return dependencyPackageObj.version; 139 - } 140 - } else { 141 - return resolveDependencyVersion(path.resolve(location, ".."), name); 142 - } 143 - } 144 - } 145 - 146 - function replaceDependencies(dependencies) { 147 - if(typeof dependencies == "object" && dependencies !== null) { 148 - for(var dependency in dependencies) { 149 - var resolvedVersion = resolveDependencyVersion(process.cwd(), dependency); 150 - 151 - if(resolvedVersion === null) { 152 - process.stderr.write("WARNING: cannot pinpoint dependency: "+dependency+", context: "+process.cwd()+"\n"); 153 - } else { 154 - dependencies[dependency] = resolvedVersion; 155 - } 156 - } 157 - } 158 - } 159 - 160 - /* Read the package.json configuration */ 161 - var packageObj = JSON.parse(fs.readFileSync('./package.json')); 162 - 163 - /* Pinpoint all dependencies */ 164 - replaceDependencies(packageObj.dependencies); 165 - if(process.argv[2] == "development") { 166 - replaceDependencies(packageObj.devDependencies); 167 - } 168 - else { 169 - packageObj.devDependencies = {}; 170 - } 171 - replaceDependencies(packageObj.optionalDependencies); 172 - replaceDependencies(packageObj.peerDependencies); 173 - 174 - /* Write the fixed package.json file */ 175 - fs.writeFileSync("package.json", JSON.stringify(packageObj, null, 2)); 176 - ''; 177 - }; 178 - in 179 - '' 180 - node ${pinpointDependenciesFromPackageJSON} ${if production then "production" else "development"} 181 - 182 - ${lib.optionalString (dependencies != []) 183 - '' 184 - if [ -d node_modules ] 185 - then 186 - cd node_modules 187 - ${lib.concatMapStrings (dependency: pinpointDependenciesOfPackage dependency) dependencies} 188 - cd .. 189 - fi 190 - ''} 191 - ''; 192 - 193 - # Recursively traverses all dependencies of a package and pinpoints all 194 - # dependencies in the package.json file to the versions that are actually 195 - # being used. 196 - 197 - pinpointDependenciesOfPackage = { packageName, dependencies ? [], production ? true, ... }@args: 198 - '' 199 - if [ -d "${packageName}" ] 200 - then 201 - cd "${packageName}" 202 - ${pinpointDependencies { inherit dependencies production; }} 203 - cd .. 204 - ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."} 205 - fi 206 - ''; 207 - 208 - # Extract the Node.js source code which is used to compile packages with 209 - # native bindings 210 - nodeSources = runCommand "node-sources" {} '' 211 - tar --no-same-owner --no-same-permissions -xf ${nodejs.src} 212 - mv node-* $out 213 - ''; 214 - 215 - # Script that adds _integrity fields to all package.json files to prevent NPM from consulting the cache (that is empty) 216 - addIntegrityFieldsScript = writeTextFile { 217 - name = "addintegrityfields.js"; 218 - text = '' 219 - var fs = require('fs'); 220 - var path = require('path'); 221 - 222 - function augmentDependencies(baseDir, dependencies) { 223 - for(var dependencyName in dependencies) { 224 - var dependency = dependencies[dependencyName]; 225 - 226 - // Open package.json and augment metadata fields 227 - var packageJSONDir = path.join(baseDir, "node_modules", dependencyName); 228 - var packageJSONPath = path.join(packageJSONDir, "package.json"); 229 - 230 - if(fs.existsSync(packageJSONPath)) { // Only augment packages that exist. Sometimes we may have production installs in which development dependencies can be ignored 231 - console.log("Adding metadata fields to: "+packageJSONPath); 232 - var packageObj = JSON.parse(fs.readFileSync(packageJSONPath)); 233 - 234 - if(dependency.integrity) { 235 - packageObj["_integrity"] = dependency.integrity; 236 - } else { 237 - packageObj["_integrity"] = "sha1-000000000000000000000000000="; // When no _integrity string has been provided (e.g. by Git dependencies), add a dummy one. It does not seem to harm and it bypasses downloads. 238 - } 239 - 240 - if(dependency.resolved) { 241 - packageObj["_resolved"] = dependency.resolved; // Adopt the resolved property if one has been provided 242 - } else { 243 - packageObj["_resolved"] = dependency.version; // Set the resolved version to the version identifier. This prevents NPM from cloning Git repositories. 244 - } 245 - 246 - if(dependency.from !== undefined) { // Adopt from property if one has been provided 247 - packageObj["_from"] = dependency.from; 248 - } 249 - 250 - fs.writeFileSync(packageJSONPath, JSON.stringify(packageObj, null, 2)); 251 - } 252 - 253 - // Augment transitive dependencies 254 - if(dependency.dependencies !== undefined) { 255 - augmentDependencies(packageJSONDir, dependency.dependencies); 256 - } 257 - } 258 - } 259 - 260 - if(fs.existsSync("./package-lock.json")) { 261 - var packageLock = JSON.parse(fs.readFileSync("./package-lock.json")); 262 - 263 - if(![1, 2].includes(packageLock.lockfileVersion)) { 264 - process.stderr.write("Sorry, I only understand lock file versions 1 and 2!\n"); 265 - process.exit(1); 266 - } 267 - 268 - if(packageLock.dependencies !== undefined) { 269 - augmentDependencies(".", packageLock.dependencies); 270 - } 271 - } 272 - ''; 273 - }; 274 - 275 - # Reconstructs a package-lock file from the node_modules/ folder structure and package.json files with dummy sha1 hashes 276 - reconstructPackageLock = writeTextFile { 277 - name = "reconstructpackagelock.js"; 278 - text = '' 279 - var fs = require('fs'); 280 - var path = require('path'); 281 - 282 - var packageObj = JSON.parse(fs.readFileSync("package.json")); 283 - 284 - var lockObj = { 285 - name: packageObj.name, 286 - version: packageObj.version, 287 - lockfileVersion: 2, 288 - requires: true, 289 - packages: { 290 - "": { 291 - name: packageObj.name, 292 - version: packageObj.version, 293 - license: packageObj.license, 294 - bin: packageObj.bin, 295 - dependencies: packageObj.dependencies, 296 - engines: packageObj.engines, 297 - optionalDependencies: packageObj.optionalDependencies 298 - } 299 - }, 300 - dependencies: {} 301 - }; 302 - 303 - function augmentPackageJSON(filePath, packages, dependencies) { 304 - var packageJSON = path.join(filePath, "package.json"); 305 - if(fs.existsSync(packageJSON)) { 306 - var packageObj = JSON.parse(fs.readFileSync(packageJSON)); 307 - packages[filePath] = { 308 - version: packageObj.version, 309 - integrity: "sha1-000000000000000000000000000=", 310 - dependencies: packageObj.dependencies, 311 - engines: packageObj.engines, 312 - optionalDependencies: packageObj.optionalDependencies 313 - }; 314 - dependencies[packageObj.name] = { 315 - version: packageObj.version, 316 - integrity: "sha1-000000000000000000000000000=", 317 - dependencies: {} 318 - }; 319 - processDependencies(path.join(filePath, "node_modules"), packages, dependencies[packageObj.name].dependencies); 320 - } 321 - } 322 - 323 - function processDependencies(dir, packages, dependencies) { 324 - if(fs.existsSync(dir)) { 325 - var files = fs.readdirSync(dir); 326 - 327 - files.forEach(function(entry) { 328 - var filePath = path.join(dir, entry); 329 - var stats = fs.statSync(filePath); 330 - 331 - if(stats.isDirectory()) { 332 - if(entry.substr(0, 1) == "@") { 333 - // When we encounter a namespace folder, augment all packages belonging to the scope 334 - var pkgFiles = fs.readdirSync(filePath); 335 - 336 - pkgFiles.forEach(function(entry) { 337 - if(stats.isDirectory()) { 338 - var pkgFilePath = path.join(filePath, entry); 339 - augmentPackageJSON(pkgFilePath, packages, dependencies); 340 - } 341 - }); 342 - } else { 343 - augmentPackageJSON(filePath, packages, dependencies); 344 - } 345 - } 346 - }); 347 - } 348 - } 349 - 350 - processDependencies("node_modules", lockObj.packages, lockObj.dependencies); 351 - 352 - fs.writeFileSync("package-lock.json", JSON.stringify(lockObj, null, 2)); 353 - ''; 354 - }; 355 - 356 - # Script that links bins defined in package.json to the node_modules bin directory 357 - # NPM does not do this for top-level packages itself anymore as of v7 358 - linkBinsScript = writeTextFile { 359 - name = "linkbins.js"; 360 - text = '' 361 - var fs = require('fs'); 362 - var path = require('path'); 363 - 364 - var packageObj = JSON.parse(fs.readFileSync("package.json")); 365 - 366 - var nodeModules = Array(packageObj.name.split("/").length).fill("..").join(path.sep); 367 - 368 - if(packageObj.bin !== undefined) { 369 - fs.mkdirSync(path.join(nodeModules, ".bin")) 370 - 371 - if(typeof packageObj.bin == "object") { 372 - Object.keys(packageObj.bin).forEach(function(exe) { 373 - if(fs.existsSync(packageObj.bin[exe])) { 374 - console.log("linking bin '" + exe + "'"); 375 - fs.symlinkSync( 376 - path.join("..", packageObj.name, packageObj.bin[exe]), 377 - path.join(nodeModules, ".bin", exe) 378 - ); 379 - } 380 - else { 381 - console.log("skipping non-existent bin '" + exe + "'"); 382 - } 383 - }) 384 - } 385 - else { 386 - if(fs.existsSync(packageObj.bin)) { 387 - console.log("linking bin '" + packageObj.bin + "'"); 388 - fs.symlinkSync( 389 - path.join("..", packageObj.name, packageObj.bin), 390 - path.join(nodeModules, ".bin", packageObj.name.split("/").pop()) 391 - ); 392 - } 393 - else { 394 - console.log("skipping non-existent bin '" + packageObj.bin + "'"); 395 - } 396 - } 397 - } 398 - else if(packageObj.directories !== undefined && packageObj.directories.bin !== undefined) { 399 - fs.mkdirSync(path.join(nodeModules, ".bin")) 400 - 401 - fs.readdirSync(packageObj.directories.bin).forEach(function(exe) { 402 - if(fs.existsSync(path.join(packageObj.directories.bin, exe))) { 403 - console.log("linking bin '" + exe + "'"); 404 - fs.symlinkSync( 405 - path.join("..", packageObj.name, packageObj.directories.bin, exe), 406 - path.join(nodeModules, ".bin", exe) 407 - ); 408 - } 409 - else { 410 - console.log("skipping non-existent bin '" + exe + "'"); 411 - } 412 - }) 413 - } 414 - ''; 415 - }; 416 - 417 - prepareAndInvokeNPM = {packageName, bypassCache, reconstructLock, npmFlags, production}: 418 - let 419 - forceOfflineFlag = if bypassCache then "--offline" else "--registry http://www.example.com"; 420 - in 421 - '' 422 - # Pinpoint the versions of all dependencies to the ones that are actually being used 423 - echo "pinpointing versions of dependencies..." 424 - source $pinpointDependenciesScriptPath 425 - 426 - # Patch the shebangs of the bundled modules to prevent them from 427 - # calling executables outside the Nix store as much as possible 428 - patchShebangs . 429 - 430 - # Deploy the Node.js package by running npm install. Since the 431 - # dependencies have been provided already by ourselves, it should not 432 - # attempt to install them again, which is good, because we want to make 433 - # it Nix's responsibility. If it needs to install any dependencies 434 - # anyway (e.g. because the dependency parameters are 435 - # incomplete/incorrect), it fails. 436 - # 437 - # The other responsibilities of NPM are kept -- version checks, build 438 - # steps, postprocessing etc. 439 - 440 - export HOME=$TMPDIR 441 - cd "${packageName}" 442 - runHook preRebuild 443 - 444 - ${lib.optionalString bypassCache '' 445 - ${lib.optionalString reconstructLock '' 446 - if [ -f package-lock.json ] 447 - then 448 - echo "WARNING: Reconstruct lock option enabled, but a lock file already exists!" 449 - echo "This will most likely result in version mismatches! We will remove the lock file and regenerate it!" 450 - rm package-lock.json 451 - else 452 - echo "No package-lock.json file found, reconstructing..." 453 - fi 454 - 455 - node ${reconstructPackageLock} 456 - ''} 457 - 458 - node ${addIntegrityFieldsScript} 459 - ''} 460 - 461 - npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${lib.optionalString production "--production"} rebuild 462 - 463 - runHook postRebuild 464 - 465 - if [ "''${dontNpmInstall-}" != "1" ] 466 - then 467 - # NPM tries to download packages even when they already exist if npm-shrinkwrap is used. 468 - rm -f npm-shrinkwrap.json 469 - 470 - npm ${forceOfflineFlag} --nodedir=${nodeSources} --no-bin-links --ignore-scripts ${npmFlags} ${lib.optionalString production "--production"} install 471 - fi 472 - 473 - # Link executables defined in package.json 474 - node ${linkBinsScript} 475 - ''; 476 - 477 - # Builds and composes an NPM package including all its dependencies 478 - buildNodePackage = 479 - { name 480 - , packageName 481 - , version ? null 482 - , dependencies ? [] 483 - , buildInputs ? [] 484 - , production ? true 485 - , npmFlags ? "" 486 - , dontNpmInstall ? false 487 - , bypassCache ? false 488 - , reconstructLock ? false 489 - , preRebuild ? "" 490 - , dontStrip ? true 491 - , unpackPhase ? "true" 492 - , buildPhase ? "true" 493 - , meta ? {} 494 - , ... }@args: 495 - 496 - let 497 - extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "preRebuild" "unpackPhase" "buildPhase" "meta" ]; 498 - in 499 - stdenv.mkDerivation ({ 500 - name = "${name}${if version == null then "" else "-${version}"}"; 501 - buildInputs = [ tarWrapper python nodejs ] 502 - ++ lib.optional (stdenv.isLinux) utillinux 503 - ++ lib.optional (stdenv.isDarwin) libtool 504 - ++ buildInputs; 505 - 506 - inherit nodejs; 507 - 508 - inherit dontStrip; # Stripping may fail a build for some package deployments 509 - inherit dontNpmInstall preRebuild unpackPhase buildPhase; 510 - 511 - compositionScript = composePackage args; 512 - pinpointDependenciesScript = pinpointDependenciesOfPackage args; 513 - 514 - passAsFile = [ "compositionScript" "pinpointDependenciesScript" ]; 515 - 516 - installPhase = '' 517 - source ${installPackage} 518 - 519 - # Create and enter a root node_modules/ folder 520 - mkdir -p $out/lib/node_modules 521 - cd $out/lib/node_modules 522 - 523 - # Compose the package and all its dependencies 524 - source $compositionScriptPath 525 - 526 - ${prepareAndInvokeNPM { inherit packageName bypassCache reconstructLock npmFlags production; }} 527 - 528 - # Create symlink to the deployed executable folder, if applicable 529 - if [ -d "$out/lib/node_modules/.bin" ] 530 - then 531 - ln -s $out/lib/node_modules/.bin $out/bin 532 - 533 - # Patch the shebang lines of all the executables 534 - ls $out/bin/* | while read i 535 - do 536 - file="$(readlink -f "$i")" 537 - chmod u+rwx "$file" 538 - patchShebangs "$file" 539 - done 540 - fi 541 - 542 - # Create symlinks to the deployed manual page folders, if applicable 543 - if [ -d "$out/lib/node_modules/${packageName}/man" ] 544 - then 545 - mkdir -p $out/share 546 - for dir in "$out/lib/node_modules/${packageName}/man/"* 547 - do 548 - mkdir -p $out/share/man/$(basename "$dir") 549 - for page in "$dir"/* 550 - do 551 - ln -s $page $out/share/man/$(basename "$dir") 552 - done 553 - done 554 - fi 555 - 556 - # Run post install hook, if provided 557 - runHook postInstall 558 - ''; 559 - 560 - meta = { 561 - # default to Node.js' platforms 562 - platforms = nodejs.meta.platforms; 563 - } // meta; 564 - } // extraArgs); 565 - 566 - # Builds a node environment (a node_modules folder and a set of binaries) 567 - buildNodeDependencies = 568 - { name 569 - , packageName 570 - , version ? null 571 - , src 572 - , dependencies ? [] 573 - , buildInputs ? [] 574 - , production ? true 575 - , npmFlags ? "" 576 - , dontNpmInstall ? false 577 - , bypassCache ? false 578 - , reconstructLock ? false 579 - , dontStrip ? true 580 - , unpackPhase ? "true" 581 - , buildPhase ? "true" 582 - , ... }@args: 583 - 584 - let 585 - extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" ]; 586 - in 587 - stdenv.mkDerivation ({ 588 - name = "node-dependencies-${name}${if version == null then "" else "-${version}"}"; 589 - 590 - buildInputs = [ tarWrapper python nodejs ] 591 - ++ lib.optional (stdenv.isLinux) utillinux 592 - ++ lib.optional (stdenv.isDarwin) libtool 593 - ++ buildInputs; 594 - 595 - inherit dontStrip; # Stripping may fail a build for some package deployments 596 - inherit dontNpmInstall unpackPhase buildPhase; 597 - 598 - includeScript = includeDependencies { inherit dependencies; }; 599 - pinpointDependenciesScript = pinpointDependenciesOfPackage args; 600 - 601 - passAsFile = [ "includeScript" "pinpointDependenciesScript" ]; 602 - 603 - installPhase = '' 604 - source ${installPackage} 605 - 606 - mkdir -p $out/${packageName} 607 - cd $out/${packageName} 608 - 609 - source $includeScriptPath 610 - 611 - # Create fake package.json to make the npm commands work properly 612 - cp ${src}/package.json . 613 - chmod 644 package.json 614 - ${lib.optionalString bypassCache '' 615 - if [ -f ${src}/package-lock.json ] 616 - then 617 - cp ${src}/package-lock.json . 618 - chmod 644 package-lock.json 619 - fi 620 - ''} 621 - 622 - # Go to the parent folder to make sure that all packages are pinpointed 623 - cd .. 624 - ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."} 625 - 626 - ${prepareAndInvokeNPM { inherit packageName bypassCache reconstructLock npmFlags production; }} 627 - 628 - # Expose the executables that were installed 629 - cd .. 630 - ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."} 631 - 632 - mv ${packageName} lib 633 - ln -s $out/lib/node_modules/.bin $out/bin 634 - ''; 635 - } // extraArgs); 636 - 637 - # Builds a development shell 638 - buildNodeShell = 639 - { name 640 - , packageName 641 - , version ? null 642 - , src 643 - , dependencies ? [] 644 - , buildInputs ? [] 645 - , production ? true 646 - , npmFlags ? "" 647 - , dontNpmInstall ? false 648 - , bypassCache ? false 649 - , reconstructLock ? false 650 - , dontStrip ? true 651 - , unpackPhase ? "true" 652 - , buildPhase ? "true" 653 - , ... }@args: 654 - 655 - let 656 - nodeDependencies = buildNodeDependencies args; 657 - extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "unpackPhase" "buildPhase" ]; 658 - in 659 - stdenv.mkDerivation ({ 660 - name = "node-shell-${name}${if version == null then "" else "-${version}"}"; 661 - 662 - buildInputs = [ python nodejs ] ++ lib.optional (stdenv.isLinux) utillinux ++ buildInputs; 663 - buildCommand = '' 664 - mkdir -p $out/bin 665 - cat > $out/bin/shell <<EOF 666 - #! ${stdenv.shell} -e 667 - $shellHook 668 - exec ${stdenv.shell} 669 - EOF 670 - chmod +x $out/bin/shell 671 - ''; 672 - 673 - # Provide the dependencies in a development shell through the NODE_PATH environment variable 674 - inherit nodeDependencies; 675 - shellHook = lib.optionalString (dependencies != []) '' 676 - export NODE_PATH=${nodeDependencies}/lib/node_modules 677 - export PATH="${nodeDependencies}/bin:$PATH" 678 - ''; 679 - } // extraArgs); 680 - in 681 - { 682 - buildNodeSourceDist = lib.makeOverridable buildNodeSourceDist; 683 - buildNodePackage = lib.makeOverridable buildNodePackage; 684 - buildNodeDependencies = lib.makeOverridable buildNodeDependencies; 685 - buildNodeShell = lib.makeOverridable buildNodeShell; 686 - }
-5645
pkgs/development/web/newman/node-packages.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 - "@ampproject/remapping-2.2.0" = { 8 - name = "_at_ampproject_slash_remapping"; 9 - packageName = "@ampproject/remapping"; 10 - version = "2.2.0"; 11 - src = fetchurl { 12 - url = "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz"; 13 - sha512 = "qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="; 14 - }; 15 - }; 16 - "@babel/code-frame-7.12.11" = { 17 - name = "_at_babel_slash_code-frame"; 18 - packageName = "@babel/code-frame"; 19 - version = "7.12.11"; 20 - src = fetchurl { 21 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz"; 22 - sha512 = "Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw=="; 23 - }; 24 - }; 25 - "@babel/code-frame-7.18.6" = { 26 - name = "_at_babel_slash_code-frame"; 27 - packageName = "@babel/code-frame"; 28 - version = "7.18.6"; 29 - src = fetchurl { 30 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz"; 31 - sha512 = "TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q=="; 32 - }; 33 - }; 34 - "@babel/compat-data-7.20.5" = { 35 - name = "_at_babel_slash_compat-data"; 36 - packageName = "@babel/compat-data"; 37 - version = "7.20.5"; 38 - src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.5.tgz"; 40 - sha512 = "KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g=="; 41 - }; 42 - }; 43 - "@babel/core-7.20.5" = { 44 - name = "_at_babel_slash_core"; 45 - packageName = "@babel/core"; 46 - version = "7.20.5"; 47 - src = fetchurl { 48 - url = "https://registry.npmjs.org/@babel/core/-/core-7.20.5.tgz"; 49 - sha512 = "UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ=="; 50 - }; 51 - }; 52 - "@babel/generator-7.20.5" = { 53 - name = "_at_babel_slash_generator"; 54 - packageName = "@babel/generator"; 55 - version = "7.20.5"; 56 - src = fetchurl { 57 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.20.5.tgz"; 58 - sha512 = "jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA=="; 59 - }; 60 - }; 61 - "@babel/helper-compilation-targets-7.20.0" = { 62 - name = "_at_babel_slash_helper-compilation-targets"; 63 - packageName = "@babel/helper-compilation-targets"; 64 - version = "7.20.0"; 65 - src = fetchurl { 66 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz"; 67 - sha512 = "0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ=="; 68 - }; 69 - }; 70 - "@babel/helper-environment-visitor-7.18.9" = { 71 - name = "_at_babel_slash_helper-environment-visitor"; 72 - packageName = "@babel/helper-environment-visitor"; 73 - version = "7.18.9"; 74 - src = fetchurl { 75 - url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz"; 76 - sha512 = "3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg=="; 77 - }; 78 - }; 79 - "@babel/helper-function-name-7.19.0" = { 80 - name = "_at_babel_slash_helper-function-name"; 81 - packageName = "@babel/helper-function-name"; 82 - version = "7.19.0"; 83 - src = fetchurl { 84 - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz"; 85 - sha512 = "WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w=="; 86 - }; 87 - }; 88 - "@babel/helper-hoist-variables-7.18.6" = { 89 - name = "_at_babel_slash_helper-hoist-variables"; 90 - packageName = "@babel/helper-hoist-variables"; 91 - version = "7.18.6"; 92 - src = fetchurl { 93 - url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz"; 94 - sha512 = "UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q=="; 95 - }; 96 - }; 97 - "@babel/helper-module-imports-7.18.6" = { 98 - name = "_at_babel_slash_helper-module-imports"; 99 - packageName = "@babel/helper-module-imports"; 100 - version = "7.18.6"; 101 - src = fetchurl { 102 - url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz"; 103 - sha512 = "0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA=="; 104 - }; 105 - }; 106 - "@babel/helper-module-transforms-7.20.2" = { 107 - name = "_at_babel_slash_helper-module-transforms"; 108 - packageName = "@babel/helper-module-transforms"; 109 - version = "7.20.2"; 110 - src = fetchurl { 111 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz"; 112 - sha512 = "zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA=="; 113 - }; 114 - }; 115 - "@babel/helper-simple-access-7.20.2" = { 116 - name = "_at_babel_slash_helper-simple-access"; 117 - packageName = "@babel/helper-simple-access"; 118 - version = "7.20.2"; 119 - src = fetchurl { 120 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz"; 121 - sha512 = "+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA=="; 122 - }; 123 - }; 124 - "@babel/helper-split-export-declaration-7.18.6" = { 125 - name = "_at_babel_slash_helper-split-export-declaration"; 126 - packageName = "@babel/helper-split-export-declaration"; 127 - version = "7.18.6"; 128 - src = fetchurl { 129 - url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz"; 130 - sha512 = "bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA=="; 131 - }; 132 - }; 133 - "@babel/helper-string-parser-7.19.4" = { 134 - name = "_at_babel_slash_helper-string-parser"; 135 - packageName = "@babel/helper-string-parser"; 136 - version = "7.19.4"; 137 - src = fetchurl { 138 - url = "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz"; 139 - sha512 = "nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw=="; 140 - }; 141 - }; 142 - "@babel/helper-validator-identifier-7.19.1" = { 143 - name = "_at_babel_slash_helper-validator-identifier"; 144 - packageName = "@babel/helper-validator-identifier"; 145 - version = "7.19.1"; 146 - src = fetchurl { 147 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz"; 148 - sha512 = "awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="; 149 - }; 150 - }; 151 - "@babel/helper-validator-option-7.18.6" = { 152 - name = "_at_babel_slash_helper-validator-option"; 153 - packageName = "@babel/helper-validator-option"; 154 - version = "7.18.6"; 155 - src = fetchurl { 156 - url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz"; 157 - sha512 = "XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw=="; 158 - }; 159 - }; 160 - "@babel/helpers-7.20.6" = { 161 - name = "_at_babel_slash_helpers"; 162 - packageName = "@babel/helpers"; 163 - version = "7.20.6"; 164 - src = fetchurl { 165 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.6.tgz"; 166 - sha512 = "Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w=="; 167 - }; 168 - }; 169 - "@babel/highlight-7.18.6" = { 170 - name = "_at_babel_slash_highlight"; 171 - packageName = "@babel/highlight"; 172 - version = "7.18.6"; 173 - src = fetchurl { 174 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz"; 175 - sha512 = "u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="; 176 - }; 177 - }; 178 - "@babel/parser-7.20.5" = { 179 - name = "_at_babel_slash_parser"; 180 - packageName = "@babel/parser"; 181 - version = "7.20.5"; 182 - src = fetchurl { 183 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.20.5.tgz"; 184 - sha512 = "r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA=="; 185 - }; 186 - }; 187 - "@babel/template-7.18.10" = { 188 - name = "_at_babel_slash_template"; 189 - packageName = "@babel/template"; 190 - version = "7.18.10"; 191 - src = fetchurl { 192 - url = "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz"; 193 - sha512 = "TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA=="; 194 - }; 195 - }; 196 - "@babel/traverse-7.20.5" = { 197 - name = "_at_babel_slash_traverse"; 198 - packageName = "@babel/traverse"; 199 - version = "7.20.5"; 200 - src = fetchurl { 201 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.5.tgz"; 202 - sha512 = "WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ=="; 203 - }; 204 - }; 205 - "@babel/types-7.20.5" = { 206 - name = "_at_babel_slash_types"; 207 - packageName = "@babel/types"; 208 - version = "7.20.5"; 209 - src = fetchurl { 210 - url = "https://registry.npmjs.org/@babel/types/-/types-7.20.5.tgz"; 211 - sha512 = "c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg=="; 212 - }; 213 - }; 214 - "@es-joy/jsdoccomment-0.10.8" = { 215 - name = "_at_es-joy_slash_jsdoccomment"; 216 - packageName = "@es-joy/jsdoccomment"; 217 - version = "0.10.8"; 218 - src = fetchurl { 219 - url = "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.10.8.tgz"; 220 - sha512 = "3P1JiGL4xaR9PoTKUHa2N/LKwa2/eUdRqGwijMWWgBqbFEqJUVpmaOi2TcjcemrsRMgFLBzQCK4ToPhrSVDiFQ=="; 221 - }; 222 - }; 223 - "@eslint/eslintrc-0.4.3" = { 224 - name = "_at_eslint_slash_eslintrc"; 225 - packageName = "@eslint/eslintrc"; 226 - version = "0.4.3"; 227 - src = fetchurl { 228 - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz"; 229 - sha512 = "J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw=="; 230 - }; 231 - }; 232 - "@humanwhocodes/config-array-0.5.0" = { 233 - name = "_at_humanwhocodes_slash_config-array"; 234 - packageName = "@humanwhocodes/config-array"; 235 - version = "0.5.0"; 236 - src = fetchurl { 237 - url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz"; 238 - sha512 = "FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg=="; 239 - }; 240 - }; 241 - "@humanwhocodes/object-schema-1.2.1" = { 242 - name = "_at_humanwhocodes_slash_object-schema"; 243 - packageName = "@humanwhocodes/object-schema"; 244 - version = "1.2.1"; 245 - src = fetchurl { 246 - url = "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"; 247 - sha512 = "ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="; 248 - }; 249 - }; 250 - "@istanbuljs/load-nyc-config-1.1.0" = { 251 - name = "_at_istanbuljs_slash_load-nyc-config"; 252 - packageName = "@istanbuljs/load-nyc-config"; 253 - version = "1.1.0"; 254 - src = fetchurl { 255 - url = "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz"; 256 - sha512 = "VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ=="; 257 - }; 258 - }; 259 - "@istanbuljs/schema-0.1.3" = { 260 - name = "_at_istanbuljs_slash_schema"; 261 - packageName = "@istanbuljs/schema"; 262 - version = "0.1.3"; 263 - src = fetchurl { 264 - url = "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz"; 265 - sha512 = "ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="; 266 - }; 267 - }; 268 - "@jridgewell/gen-mapping-0.1.1" = { 269 - name = "_at_jridgewell_slash_gen-mapping"; 270 - packageName = "@jridgewell/gen-mapping"; 271 - version = "0.1.1"; 272 - src = fetchurl { 273 - url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz"; 274 - sha512 = "sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w=="; 275 - }; 276 - }; 277 - "@jridgewell/gen-mapping-0.3.2" = { 278 - name = "_at_jridgewell_slash_gen-mapping"; 279 - packageName = "@jridgewell/gen-mapping"; 280 - version = "0.3.2"; 281 - src = fetchurl { 282 - url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz"; 283 - sha512 = "mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A=="; 284 - }; 285 - }; 286 - "@jridgewell/resolve-uri-3.1.0" = { 287 - name = "_at_jridgewell_slash_resolve-uri"; 288 - packageName = "@jridgewell/resolve-uri"; 289 - version = "3.1.0"; 290 - src = fetchurl { 291 - url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"; 292 - sha512 = "F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="; 293 - }; 294 - }; 295 - "@jridgewell/set-array-1.1.2" = { 296 - name = "_at_jridgewell_slash_set-array"; 297 - packageName = "@jridgewell/set-array"; 298 - version = "1.1.2"; 299 - src = fetchurl { 300 - url = "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz"; 301 - sha512 = "xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="; 302 - }; 303 - }; 304 - "@jridgewell/sourcemap-codec-1.4.14" = { 305 - name = "_at_jridgewell_slash_sourcemap-codec"; 306 - packageName = "@jridgewell/sourcemap-codec"; 307 - version = "1.4.14"; 308 - src = fetchurl { 309 - url = "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"; 310 - sha512 = "XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="; 311 - }; 312 - }; 313 - "@jridgewell/trace-mapping-0.3.17" = { 314 - name = "_at_jridgewell_slash_trace-mapping"; 315 - packageName = "@jridgewell/trace-mapping"; 316 - version = "0.3.17"; 317 - src = fetchurl { 318 - url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz"; 319 - sha512 = "MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g=="; 320 - }; 321 - }; 322 - "@jsdoc/salty-0.2.1" = { 323 - name = "_at_jsdoc_slash_salty"; 324 - packageName = "@jsdoc/salty"; 325 - version = "0.2.1"; 326 - src = fetchurl { 327 - url = "https://registry.npmjs.org/@jsdoc/salty/-/salty-0.2.1.tgz"; 328 - sha512 = "JXwylDNSHa549N9uceDYu8D4GMXwSo3H8CCPYEQqxhhHpxD28+lRl2b3bS/caaPj5w1YD3SWtrficJNTnUjGpg=="; 329 - }; 330 - }; 331 - "@postman/form-data-3.1.1" = { 332 - name = "_at_postman_slash_form-data"; 333 - packageName = "@postman/form-data"; 334 - version = "3.1.1"; 335 - src = fetchurl { 336 - url = "https://registry.npmjs.org/@postman/form-data/-/form-data-3.1.1.tgz"; 337 - sha512 = "vjh8Q2a8S6UCm/KKs31XFJqEEgmbjBmpPNVV2eVav6905wyFAwaUOBGA1NPBI4ERH9MMZc6w0umFgM6WbEPMdg=="; 338 - }; 339 - }; 340 - "@postman/tunnel-agent-0.6.3" = { 341 - name = "_at_postman_slash_tunnel-agent"; 342 - packageName = "@postman/tunnel-agent"; 343 - version = "0.6.3"; 344 - src = fetchurl { 345 - url = "https://registry.npmjs.org/@postman/tunnel-agent/-/tunnel-agent-0.6.3.tgz"; 346 - sha512 = "k57fzmAZ2PJGxfOA4SGR05ejorHbVAa/84Hxh/2nAztjNXc4ZjOm9NUIk6/Z6LCrBvJZqjRZbN8e/nROVUPVdg=="; 347 - }; 348 - }; 349 - "@sinonjs/commons-1.8.6" = { 350 - name = "_at_sinonjs_slash_commons"; 351 - packageName = "@sinonjs/commons"; 352 - version = "1.8.6"; 353 - src = fetchurl { 354 - url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz"; 355 - sha512 = "Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ=="; 356 - }; 357 - }; 358 - "@sinonjs/commons-2.0.0" = { 359 - name = "_at_sinonjs_slash_commons"; 360 - packageName = "@sinonjs/commons"; 361 - version = "2.0.0"; 362 - src = fetchurl { 363 - url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz"; 364 - sha512 = "uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg=="; 365 - }; 366 - }; 367 - "@sinonjs/fake-timers-7.1.2" = { 368 - name = "_at_sinonjs_slash_fake-timers"; 369 - packageName = "@sinonjs/fake-timers"; 370 - version = "7.1.2"; 371 - src = fetchurl { 372 - url = "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-7.1.2.tgz"; 373 - sha512 = "iQADsW4LBMISqZ6Ci1dupJL9pprqwcVFTcOsEmQOEhW+KLCVn/Y4Jrvg2k19fIHCp+iFprriYPTdRcQR8NbUPg=="; 374 - }; 375 - }; 376 - "@sinonjs/fake-timers-9.1.2" = { 377 - name = "_at_sinonjs_slash_fake-timers"; 378 - packageName = "@sinonjs/fake-timers"; 379 - version = "9.1.2"; 380 - src = fetchurl { 381 - url = "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz"; 382 - sha512 = "BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw=="; 383 - }; 384 - }; 385 - "@sinonjs/samsam-6.1.3" = { 386 - name = "_at_sinonjs_slash_samsam"; 387 - packageName = "@sinonjs/samsam"; 388 - version = "6.1.3"; 389 - src = fetchurl { 390 - url = "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-6.1.3.tgz"; 391 - sha512 = "nhOb2dWPeb1sd3IQXL/dVPnKHDOAFfvichtBf4xV00/rU1QbPCQqKMbvIheIjqwVjh7qIgf2AHTHi391yMOMpQ=="; 392 - }; 393 - }; 394 - "@sinonjs/text-encoding-0.7.2" = { 395 - name = "_at_sinonjs_slash_text-encoding"; 396 - packageName = "@sinonjs/text-encoding"; 397 - version = "0.7.2"; 398 - src = fetchurl { 399 - url = "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.2.tgz"; 400 - sha512 = "sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ=="; 401 - }; 402 - }; 403 - "@types/linkify-it-3.0.2" = { 404 - name = "_at_types_slash_linkify-it"; 405 - packageName = "@types/linkify-it"; 406 - version = "3.0.2"; 407 - src = fetchurl { 408 - url = "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-3.0.2.tgz"; 409 - sha512 = "HZQYqbiFVWufzCwexrvh694SOim8z2d+xJl5UNamcvQFejLY/2YUtzXHYi3cHdI7PMlS8ejH2slRAOJQ32aNbA=="; 410 - }; 411 - }; 412 - "@types/markdown-it-12.2.3" = { 413 - name = "_at_types_slash_markdown-it"; 414 - packageName = "@types/markdown-it"; 415 - version = "12.2.3"; 416 - src = fetchurl { 417 - url = "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-12.2.3.tgz"; 418 - sha512 = "GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ=="; 419 - }; 420 - }; 421 - "@types/mdurl-1.0.2" = { 422 - name = "_at_types_slash_mdurl"; 423 - packageName = "@types/mdurl"; 424 - version = "1.0.2"; 425 - src = fetchurl { 426 - url = "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.2.tgz"; 427 - sha512 = "eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA=="; 428 - }; 429 - }; 430 - "@ungap/promise-all-settled-1.1.2" = { 431 - name = "_at_ungap_slash_promise-all-settled"; 432 - packageName = "@ungap/promise-all-settled"; 433 - version = "1.1.2"; 434 - src = fetchurl { 435 - url = "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz"; 436 - sha512 = "sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q=="; 437 - }; 438 - }; 439 - "JSONStream-1.3.2" = { 440 - name = "JSONStream"; 441 - packageName = "JSONStream"; 442 - version = "1.3.2"; 443 - src = fetchurl { 444 - url = "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.2.tgz"; 445 - sha512 = "mn0KSip7N4e0UDPZHnqDsHECo5uGQrixQKnAskOM1BIB8hd7QKbd6il8IPRPudPHOeHiECoCFqhyMaRO9+nWyA=="; 446 - }; 447 - }; 448 - "acorn-7.4.1" = { 449 - name = "acorn"; 450 - packageName = "acorn"; 451 - version = "7.4.1"; 452 - src = fetchurl { 453 - url = "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"; 454 - sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; 455 - }; 456 - }; 457 - "acorn-jsx-5.3.2" = { 458 - name = "acorn-jsx"; 459 - packageName = "acorn-jsx"; 460 - version = "5.3.2"; 461 - src = fetchurl { 462 - url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"; 463 - sha512 = "rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="; 464 - }; 465 - }; 466 - "aggregate-error-3.1.0" = { 467 - name = "aggregate-error"; 468 - packageName = "aggregate-error"; 469 - version = "3.1.0"; 470 - src = fetchurl { 471 - url = "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz"; 472 - sha512 = "4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA=="; 473 - }; 474 - }; 475 - "ajv-6.12.6" = { 476 - name = "ajv"; 477 - packageName = "ajv"; 478 - version = "6.12.6"; 479 - src = fetchurl { 480 - url = "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"; 481 - sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 482 - }; 483 - }; 484 - "ajv-8.11.2" = { 485 - name = "ajv"; 486 - packageName = "ajv"; 487 - version = "8.11.2"; 488 - src = fetchurl { 489 - url = "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz"; 490 - sha512 = "E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg=="; 491 - }; 492 - }; 493 - "ansi-colors-4.1.1" = { 494 - name = "ansi-colors"; 495 - packageName = "ansi-colors"; 496 - version = "4.1.1"; 497 - src = fetchurl { 498 - url = "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz"; 499 - sha512 = "JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA=="; 500 - }; 501 - }; 502 - "ansi-colors-4.1.3" = { 503 - name = "ansi-colors"; 504 - packageName = "ansi-colors"; 505 - version = "4.1.3"; 506 - src = fetchurl { 507 - url = "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz"; 508 - sha512 = "/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw=="; 509 - }; 510 - }; 511 - "ansi-escape-sequences-4.1.0" = { 512 - name = "ansi-escape-sequences"; 513 - packageName = "ansi-escape-sequences"; 514 - version = "4.1.0"; 515 - src = fetchurl { 516 - url = "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-4.1.0.tgz"; 517 - sha512 = "dzW9kHxH011uBsidTXd14JXgzye/YLb2LzeKZ4bsgl/Knwx8AtbSFkkGxagdNOoh0DlqHCmfiEjWKBaqjOanVw=="; 518 - }; 519 - }; 520 - "ansi-regex-5.0.1" = { 521 - name = "ansi-regex"; 522 - packageName = "ansi-regex"; 523 - version = "5.0.1"; 524 - src = fetchurl { 525 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"; 526 - sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="; 527 - }; 528 - }; 529 - "ansi-styles-3.2.1" = { 530 - name = "ansi-styles"; 531 - packageName = "ansi-styles"; 532 - version = "3.2.1"; 533 - src = fetchurl { 534 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"; 535 - sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; 536 - }; 537 - }; 538 - "ansi-styles-4.3.0" = { 539 - name = "ansi-styles"; 540 - packageName = "ansi-styles"; 541 - version = "4.3.0"; 542 - src = fetchurl { 543 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"; 544 - sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; 545 - }; 546 - }; 547 - "anymatch-3.1.3" = { 548 - name = "anymatch"; 549 - packageName = "anymatch"; 550 - version = "3.1.3"; 551 - src = fetchurl { 552 - url = "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz"; 553 - sha512 = "KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw=="; 554 - }; 555 - }; 556 - "append-transform-2.0.0" = { 557 - name = "append-transform"; 558 - packageName = "append-transform"; 559 - version = "2.0.0"; 560 - src = fetchurl { 561 - url = "https://registry.npmjs.org/append-transform/-/append-transform-2.0.0.tgz"; 562 - sha512 = "7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg=="; 563 - }; 564 - }; 565 - "archy-1.0.0" = { 566 - name = "archy"; 567 - packageName = "archy"; 568 - version = "1.0.0"; 569 - src = fetchurl { 570 - url = "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz"; 571 - sha512 = "Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw=="; 572 - }; 573 - }; 574 - "argparse-1.0.10" = { 575 - name = "argparse"; 576 - packageName = "argparse"; 577 - version = "1.0.10"; 578 - src = fetchurl { 579 - url = "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"; 580 - sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="; 581 - }; 582 - }; 583 - "argparse-2.0.1" = { 584 - name = "argparse"; 585 - packageName = "argparse"; 586 - version = "2.0.1"; 587 - src = fetchurl { 588 - url = "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"; 589 - sha512 = "8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="; 590 - }; 591 - }; 592 - "array-back-1.0.4" = { 593 - name = "array-back"; 594 - packageName = "array-back"; 595 - version = "1.0.4"; 596 - src = fetchurl { 597 - url = "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz"; 598 - sha512 = "1WxbZvrmyhkNoeYcizokbmh5oiOCIfyvGtcqbK3Ls1v1fKcquzxnQSceOx6tzq7jmai2kFLWIpGND2cLhH6TPw=="; 599 - }; 600 - }; 601 - "array-back-2.0.0" = { 602 - name = "array-back"; 603 - packageName = "array-back"; 604 - version = "2.0.0"; 605 - src = fetchurl { 606 - url = "https://registry.npmjs.org/array-back/-/array-back-2.0.0.tgz"; 607 - sha512 = "eJv4pLLufP3g5kcZry0j6WXpIbzYw9GUB4mVJZno9wfwiBxbizTnHCw3VJb07cBihbFX48Y7oSrW9y+gt4glyw=="; 608 - }; 609 - }; 610 - "array-back-3.1.0" = { 611 - name = "array-back"; 612 - packageName = "array-back"; 613 - version = "3.1.0"; 614 - src = fetchurl { 615 - url = "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz"; 616 - sha512 = "TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q=="; 617 - }; 618 - }; 619 - "array-back-4.0.2" = { 620 - name = "array-back"; 621 - packageName = "array-back"; 622 - version = "4.0.2"; 623 - src = fetchurl { 624 - url = "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz"; 625 - sha512 = "NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg=="; 626 - }; 627 - }; 628 - "array-back-5.0.0" = { 629 - name = "array-back"; 630 - packageName = "array-back"; 631 - version = "5.0.0"; 632 - src = fetchurl { 633 - url = "https://registry.npmjs.org/array-back/-/array-back-5.0.0.tgz"; 634 - sha512 = "kgVWwJReZWmVuWOQKEOohXKJX+nD02JAZ54D1RRWlv8L0NebauKAaFxACKzB74RTclt1+WNz5KHaLRDAPZbDEw=="; 635 - }; 636 - }; 637 - "array-back-6.2.2" = { 638 - name = "array-back"; 639 - packageName = "array-back"; 640 - version = "6.2.2"; 641 - src = fetchurl { 642 - url = "https://registry.npmjs.org/array-back/-/array-back-6.2.2.tgz"; 643 - sha512 = "gUAZ7HPyb4SJczXAMUXMGAvI976JoK3qEx9v1FTmeYuJj0IBiaKttG1ydtGKdkfqWkIkouke7nG8ufGy77+Cvw=="; 644 - }; 645 - }; 646 - "asn1-0.2.6" = { 647 - name = "asn1"; 648 - packageName = "asn1"; 649 - version = "0.2.6"; 650 - src = fetchurl { 651 - url = "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz"; 652 - sha512 = "ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ=="; 653 - }; 654 - }; 655 - "assert-plus-1.0.0" = { 656 - name = "assert-plus"; 657 - packageName = "assert-plus"; 658 - version = "1.0.0"; 659 - src = fetchurl { 660 - url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; 661 - sha512 = "NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw=="; 662 - }; 663 - }; 664 - "assertion-error-1.1.0" = { 665 - name = "assertion-error"; 666 - packageName = "assertion-error"; 667 - version = "1.1.0"; 668 - src = fetchurl { 669 - url = "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz"; 670 - sha512 = "jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw=="; 671 - }; 672 - }; 673 - "astral-regex-2.0.0" = { 674 - name = "astral-regex"; 675 - packageName = "astral-regex"; 676 - version = "2.0.0"; 677 - src = fetchurl { 678 - url = "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz"; 679 - sha512 = "Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ=="; 680 - }; 681 - }; 682 - "async-1.4.2" = { 683 - name = "async"; 684 - packageName = "async"; 685 - version = "1.4.2"; 686 - src = fetchurl { 687 - url = "https://registry.npmjs.org/async/-/async-1.4.2.tgz"; 688 - sha512 = "O4fvy4JjdS0Q8MYH4jOODxJdXGbZ61eqfXdmfFDloHSnWoggxkn/+xWbh2eQbmQ6pJNliaravcTK1iQMpW9k4Q=="; 689 - }; 690 - }; 691 - "async-2.6.4" = { 692 - name = "async"; 693 - packageName = "async"; 694 - version = "2.6.4"; 695 - src = fetchurl { 696 - url = "https://registry.npmjs.org/async/-/async-2.6.4.tgz"; 697 - sha512 = "mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA=="; 698 - }; 699 - }; 700 - "async-3.2.3" = { 701 - name = "async"; 702 - packageName = "async"; 703 - version = "3.2.3"; 704 - src = fetchurl { 705 - url = "https://registry.npmjs.org/async/-/async-3.2.3.tgz"; 706 - sha512 = "spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g=="; 707 - }; 708 - }; 709 - "asynckit-0.4.0" = { 710 - name = "asynckit"; 711 - packageName = "asynckit"; 712 - version = "0.4.0"; 713 - src = fetchurl { 714 - url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"; 715 - sha512 = "Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="; 716 - }; 717 - }; 718 - "aws-sign2-0.7.0" = { 719 - name = "aws-sign2"; 720 - packageName = "aws-sign2"; 721 - version = "0.7.0"; 722 - src = fetchurl { 723 - url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"; 724 - sha512 = "08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA=="; 725 - }; 726 - }; 727 - "aws4-1.11.0" = { 728 - name = "aws4"; 729 - packageName = "aws4"; 730 - version = "1.11.0"; 731 - src = fetchurl { 732 - url = "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz"; 733 - sha512 = "xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="; 734 - }; 735 - }; 736 - "balanced-match-1.0.2" = { 737 - name = "balanced-match"; 738 - packageName = "balanced-match"; 739 - version = "1.0.2"; 740 - src = fetchurl { 741 - url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"; 742 - sha512 = "3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="; 743 - }; 744 - }; 745 - "base64-js-1.5.1" = { 746 - name = "base64-js"; 747 - packageName = "base64-js"; 748 - version = "1.5.1"; 749 - src = fetchurl { 750 - url = "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"; 751 - sha512 = "AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="; 752 - }; 753 - }; 754 - "bcrypt-pbkdf-1.0.2" = { 755 - name = "bcrypt-pbkdf"; 756 - packageName = "bcrypt-pbkdf"; 757 - version = "1.0.2"; 758 - src = fetchurl { 759 - url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"; 760 - sha512 = "qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w=="; 761 - }; 762 - }; 763 - "binary-extensions-2.2.0" = { 764 - name = "binary-extensions"; 765 - packageName = "binary-extensions"; 766 - version = "2.2.0"; 767 - src = fetchurl { 768 - url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"; 769 - sha512 = "jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="; 770 - }; 771 - }; 772 - "bl-1.2.3" = { 773 - name = "bl"; 774 - packageName = "bl"; 775 - version = "1.2.3"; 776 - src = fetchurl { 777 - url = "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz"; 778 - sha512 = "pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww=="; 779 - }; 780 - }; 781 - "bluebird-2.11.0" = { 782 - name = "bluebird"; 783 - packageName = "bluebird"; 784 - version = "2.11.0"; 785 - src = fetchurl { 786 - url = "https://registry.npmjs.org/bluebird/-/bluebird-2.11.0.tgz"; 787 - sha512 = "UfFSr22dmHPQqPP9XWHRhq+gWnHCYguQGkXQlbyPtW5qTnhFWA8/iXg765tH0cAjy7l/zPJ1aBTO0g5XgA7kvQ=="; 788 - }; 789 - }; 790 - "bluebird-3.7.2" = { 791 - name = "bluebird"; 792 - packageName = "bluebird"; 793 - version = "3.7.2"; 794 - src = fetchurl { 795 - url = "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz"; 796 - sha512 = "XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg=="; 797 - }; 798 - }; 799 - "brace-expansion-1.1.11" = { 800 - name = "brace-expansion"; 801 - packageName = "brace-expansion"; 802 - version = "1.1.11"; 803 - src = fetchurl { 804 - url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"; 805 - sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; 806 - }; 807 - }; 808 - "braces-3.0.2" = { 809 - name = "braces"; 810 - packageName = "braces"; 811 - version = "3.0.2"; 812 - src = fetchurl { 813 - url = "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"; 814 - sha512 = "b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="; 815 - }; 816 - }; 817 - "brotli-1.3.3" = { 818 - name = "brotli"; 819 - packageName = "brotli"; 820 - version = "1.3.3"; 821 - src = fetchurl { 822 - url = "https://registry.npmjs.org/brotli/-/brotli-1.3.3.tgz"; 823 - sha512 = "oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg=="; 824 - }; 825 - }; 826 - "browser-stdout-1.3.1" = { 827 - name = "browser-stdout"; 828 - packageName = "browser-stdout"; 829 - version = "1.3.1"; 830 - src = fetchurl { 831 - url = "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz"; 832 - sha512 = "qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw=="; 833 - }; 834 - }; 835 - "browserslist-4.21.4" = { 836 - name = "browserslist"; 837 - packageName = "browserslist"; 838 - version = "4.21.4"; 839 - src = fetchurl { 840 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz"; 841 - sha512 = "CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw=="; 842 - }; 843 - }; 844 - "buffer-alloc-1.2.0" = { 845 - name = "buffer-alloc"; 846 - packageName = "buffer-alloc"; 847 - version = "1.2.0"; 848 - src = fetchurl { 849 - url = "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz"; 850 - sha512 = "CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow=="; 851 - }; 852 - }; 853 - "buffer-alloc-unsafe-1.1.0" = { 854 - name = "buffer-alloc-unsafe"; 855 - packageName = "buffer-alloc-unsafe"; 856 - version = "1.1.0"; 857 - src = fetchurl { 858 - url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz"; 859 - sha512 = "TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg=="; 860 - }; 861 - }; 862 - "buffer-fill-1.0.0" = { 863 - name = "buffer-fill"; 864 - packageName = "buffer-fill"; 865 - version = "1.0.0"; 866 - src = fetchurl { 867 - url = "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz"; 868 - sha512 = "T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ=="; 869 - }; 870 - }; 871 - "buffer-from-1.1.2" = { 872 - name = "buffer-from"; 873 - packageName = "buffer-from"; 874 - version = "1.1.2"; 875 - src = fetchurl { 876 - url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz"; 877 - sha512 = "E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="; 878 - }; 879 - }; 880 - "cache-point-2.0.0" = { 881 - name = "cache-point"; 882 - packageName = "cache-point"; 883 - version = "2.0.0"; 884 - src = fetchurl { 885 - url = "https://registry.npmjs.org/cache-point/-/cache-point-2.0.0.tgz"; 886 - sha512 = "4gkeHlFpSKgm3vm2gJN5sPqfmijYRFYCQ6tv5cLw0xVmT6r1z1vd4FNnpuOREco3cBs1G709sZ72LdgddKvL5w=="; 887 - }; 888 - }; 889 - "caching-transform-4.0.0" = { 890 - name = "caching-transform"; 891 - packageName = "caching-transform"; 892 - version = "4.0.0"; 893 - src = fetchurl { 894 - url = "https://registry.npmjs.org/caching-transform/-/caching-transform-4.0.0.tgz"; 895 - sha512 = "kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA=="; 896 - }; 897 - }; 898 - "callsites-3.1.0" = { 899 - name = "callsites"; 900 - packageName = "callsites"; 901 - version = "3.1.0"; 902 - src = fetchurl { 903 - url = "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"; 904 - sha512 = "P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="; 905 - }; 906 - }; 907 - "camelcase-5.3.1" = { 908 - name = "camelcase"; 909 - packageName = "camelcase"; 910 - version = "5.3.1"; 911 - src = fetchurl { 912 - url = "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"; 913 - sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; 914 - }; 915 - }; 916 - "camelcase-6.3.0" = { 917 - name = "camelcase"; 918 - packageName = "camelcase"; 919 - version = "6.3.0"; 920 - src = fetchurl { 921 - url = "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz"; 922 - sha512 = "Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="; 923 - }; 924 - }; 925 - "caniuse-lite-1.0.30001436" = { 926 - name = "caniuse-lite"; 927 - packageName = "caniuse-lite"; 928 - version = "1.0.30001436"; 929 - src = fetchurl { 930 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001436.tgz"; 931 - sha512 = "ZmWkKsnC2ifEPoWUvSAIGyOYwT+keAaaWPHiQ9DfMqS1t6tfuyFYoWR78TeZtznkEQ64+vGXH9cZrElwR2Mrxg=="; 932 - }; 933 - }; 934 - "caseless-0.12.0" = { 935 - name = "caseless"; 936 - packageName = "caseless"; 937 - version = "0.12.0"; 938 - src = fetchurl { 939 - url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz"; 940 - sha512 = "4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw=="; 941 - }; 942 - }; 943 - "catharsis-0.9.0" = { 944 - name = "catharsis"; 945 - packageName = "catharsis"; 946 - version = "0.9.0"; 947 - src = fetchurl { 948 - url = "https://registry.npmjs.org/catharsis/-/catharsis-0.9.0.tgz"; 949 - sha512 = "prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A=="; 950 - }; 951 - }; 952 - "chai-4.3.7" = { 953 - name = "chai"; 954 - packageName = "chai"; 955 - version = "4.3.7"; 956 - src = fetchurl { 957 - url = "https://registry.npmjs.org/chai/-/chai-4.3.7.tgz"; 958 - sha512 = "HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A=="; 959 - }; 960 - }; 961 - "chalk-2.4.2" = { 962 - name = "chalk"; 963 - packageName = "chalk"; 964 - version = "2.4.2"; 965 - src = fetchurl { 966 - url = "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"; 967 - sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; 968 - }; 969 - }; 970 - "chalk-4.1.2" = { 971 - name = "chalk"; 972 - packageName = "chalk"; 973 - version = "4.1.2"; 974 - src = fetchurl { 975 - url = "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"; 976 - sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="; 977 - }; 978 - }; 979 - "chardet-1.4.0" = { 980 - name = "chardet"; 981 - packageName = "chardet"; 982 - version = "1.4.0"; 983 - src = fetchurl { 984 - url = "https://registry.npmjs.org/chardet/-/chardet-1.4.0.tgz"; 985 - sha512 = "NpwMDdSIprbYx1CLnfbxEIarI0Z+s9MssEgggMNheGM+WD68yOhV7IEA/3r6tr0yTRgQD0HuZJDw32s99i6L+A=="; 986 - }; 987 - }; 988 - "charset-1.0.1" = { 989 - name = "charset"; 990 - packageName = "charset"; 991 - version = "1.0.1"; 992 - src = fetchurl { 993 - url = "https://registry.npmjs.org/charset/-/charset-1.0.1.tgz"; 994 - sha512 = "6dVyOOYjpfFcL1Y4qChrAoQLRHvj2ziyhcm0QJlhOcAhykL/k1kTUPbeo+87MNRTRdk2OIIsIXbuF3x2wi5EXg=="; 995 - }; 996 - }; 997 - "check-error-1.0.2" = { 998 - name = "check-error"; 999 - packageName = "check-error"; 1000 - version = "1.0.2"; 1001 - src = fetchurl { 1002 - url = "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz"; 1003 - sha512 = "BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA=="; 1004 - }; 1005 - }; 1006 - "chokidar-3.5.3" = { 1007 - name = "chokidar"; 1008 - packageName = "chokidar"; 1009 - version = "3.5.3"; 1010 - src = fetchurl { 1011 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz"; 1012 - sha512 = "Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw=="; 1013 - }; 1014 - }; 1015 - "chownr-1.1.4" = { 1016 - name = "chownr"; 1017 - packageName = "chownr"; 1018 - version = "1.1.4"; 1019 - src = fetchurl { 1020 - url = "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz"; 1021 - sha512 = "jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg=="; 1022 - }; 1023 - }; 1024 - "clean-stack-2.2.0" = { 1025 - name = "clean-stack"; 1026 - packageName = "clean-stack"; 1027 - version = "2.2.0"; 1028 - src = fetchurl { 1029 - url = "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz"; 1030 - sha512 = "4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A=="; 1031 - }; 1032 - }; 1033 - "cli-progress-3.10.0" = { 1034 - name = "cli-progress"; 1035 - packageName = "cli-progress"; 1036 - version = "3.10.0"; 1037 - src = fetchurl { 1038 - url = "https://registry.npmjs.org/cli-progress/-/cli-progress-3.10.0.tgz"; 1039 - sha512 = "kLORQrhYCAtUPLZxqsAt2YJGOvRdt34+O6jl5cQGb7iF3dM55FQZlTR+rQyIK9JUcO9bBMwZsTlND+3dmFU2Cw=="; 1040 - }; 1041 - }; 1042 - "cli-table3-0.6.1" = { 1043 - name = "cli-table3"; 1044 - packageName = "cli-table3"; 1045 - version = "0.6.1"; 1046 - src = fetchurl { 1047 - url = "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.1.tgz"; 1048 - sha512 = "w0q/enDHhPLq44ovMGdQeeDLvwxwavsJX7oQGYt/LrBlYsyaxyDnp6z3QzFut/6kLLKnlcUVJLrpB7KBfgG/RA=="; 1049 - }; 1050 - }; 1051 - "cliui-6.0.0" = { 1052 - name = "cliui"; 1053 - packageName = "cliui"; 1054 - version = "6.0.0"; 1055 - src = fetchurl { 1056 - url = "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz"; 1057 - sha512 = "t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ=="; 1058 - }; 1059 - }; 1060 - "cliui-7.0.4" = { 1061 - name = "cliui"; 1062 - packageName = "cliui"; 1063 - version = "7.0.4"; 1064 - src = fetchurl { 1065 - url = "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz"; 1066 - sha512 = "OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ=="; 1067 - }; 1068 - }; 1069 - "collect-all-1.0.4" = { 1070 - name = "collect-all"; 1071 - packageName = "collect-all"; 1072 - version = "1.0.4"; 1073 - src = fetchurl { 1074 - url = "https://registry.npmjs.org/collect-all/-/collect-all-1.0.4.tgz"; 1075 - sha512 = "RKZhRwJtJEP5FWul+gkSMEnaK6H3AGPTTWOiRimCcs+rc/OmQE3Yhy1Q7A7KsdkG3ZXVdZq68Y6ONSdvkeEcKA=="; 1076 - }; 1077 - }; 1078 - "color-convert-1.9.3" = { 1079 - name = "color-convert"; 1080 - packageName = "color-convert"; 1081 - version = "1.9.3"; 1082 - src = fetchurl { 1083 - url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"; 1084 - sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="; 1085 - }; 1086 - }; 1087 - "color-convert-2.0.1" = { 1088 - name = "color-convert"; 1089 - packageName = "color-convert"; 1090 - version = "2.0.1"; 1091 - src = fetchurl { 1092 - url = "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"; 1093 - sha512 = "RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="; 1094 - }; 1095 - }; 1096 - "color-name-1.1.3" = { 1097 - name = "color-name"; 1098 - packageName = "color-name"; 1099 - version = "1.1.3"; 1100 - src = fetchurl { 1101 - url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"; 1102 - sha512 = "72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="; 1103 - }; 1104 - }; 1105 - "color-name-1.1.4" = { 1106 - name = "color-name"; 1107 - packageName = "color-name"; 1108 - version = "1.1.4"; 1109 - src = fetchurl { 1110 - url = "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"; 1111 - sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 1112 - }; 1113 - }; 1114 - "colors-1.0.3" = { 1115 - name = "colors"; 1116 - packageName = "colors"; 1117 - version = "1.0.3"; 1118 - src = fetchurl { 1119 - url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz"; 1120 - sha512 = "pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw=="; 1121 - }; 1122 - }; 1123 - "colors-1.4.0" = { 1124 - name = "colors"; 1125 - packageName = "colors"; 1126 - version = "1.4.0"; 1127 - src = fetchurl { 1128 - url = "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz"; 1129 - sha512 = "a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA=="; 1130 - }; 1131 - }; 1132 - "combined-stream-1.0.8" = { 1133 - name = "combined-stream"; 1134 - packageName = "combined-stream"; 1135 - version = "1.0.8"; 1136 - src = fetchurl { 1137 - url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"; 1138 - sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; 1139 - }; 1140 - }; 1141 - "command-line-args-5.2.1" = { 1142 - name = "command-line-args"; 1143 - packageName = "command-line-args"; 1144 - version = "5.2.1"; 1145 - src = fetchurl { 1146 - url = "https://registry.npmjs.org/command-line-args/-/command-line-args-5.2.1.tgz"; 1147 - sha512 = "H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg=="; 1148 - }; 1149 - }; 1150 - "command-line-tool-0.8.0" = { 1151 - name = "command-line-tool"; 1152 - packageName = "command-line-tool"; 1153 - version = "0.8.0"; 1154 - src = fetchurl { 1155 - url = "https://registry.npmjs.org/command-line-tool/-/command-line-tool-0.8.0.tgz"; 1156 - sha512 = "Xw18HVx/QzQV3Sc5k1vy3kgtOeGmsKIqwtFFoyjI4bbcpSgnw2CWVULvtakyw4s6fhyAdI6soQQhXc2OzJy62g=="; 1157 - }; 1158 - }; 1159 - "command-line-usage-4.1.0" = { 1160 - name = "command-line-usage"; 1161 - packageName = "command-line-usage"; 1162 - version = "4.1.0"; 1163 - src = fetchurl { 1164 - url = "https://registry.npmjs.org/command-line-usage/-/command-line-usage-4.1.0.tgz"; 1165 - sha512 = "MxS8Ad995KpdAC0Jopo/ovGIroV/m0KHwzKfXxKag6FHOkGsH8/lv5yjgablcRxCJJC0oJeUMuO/gmaq+Wq46g=="; 1166 - }; 1167 - }; 1168 - "commander-2.20.3" = { 1169 - name = "commander"; 1170 - packageName = "commander"; 1171 - version = "2.20.3"; 1172 - src = fetchurl { 1173 - url = "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz"; 1174 - sha512 = "GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="; 1175 - }; 1176 - }; 1177 - "commander-2.9.0" = { 1178 - name = "commander"; 1179 - packageName = "commander"; 1180 - version = "2.9.0"; 1181 - src = fetchurl { 1182 - url = "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz"; 1183 - sha512 = "bmkUukX8wAOjHdN26xj5c4ctEV22TQ7dQYhSmuckKhToXrkUn0iIaolHdIxYYqD55nhpSPA9zPQ1yP57GdXP2A=="; 1184 - }; 1185 - }; 1186 - "commander-7.2.0" = { 1187 - name = "commander"; 1188 - packageName = "commander"; 1189 - version = "7.2.0"; 1190 - src = fetchurl { 1191 - url = "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz"; 1192 - sha512 = "QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="; 1193 - }; 1194 - }; 1195 - "commander-8.3.0" = { 1196 - name = "commander"; 1197 - packageName = "commander"; 1198 - version = "8.3.0"; 1199 - src = fetchurl { 1200 - url = "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz"; 1201 - sha512 = "OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="; 1202 - }; 1203 - }; 1204 - "comment-parser-1.2.4" = { 1205 - name = "comment-parser"; 1206 - packageName = "comment-parser"; 1207 - version = "1.2.4"; 1208 - src = fetchurl { 1209 - url = "https://registry.npmjs.org/comment-parser/-/comment-parser-1.2.4.tgz"; 1210 - sha512 = "pm0b+qv+CkWNriSTMsfnjChF9kH0kxz55y44Wo5le9qLxMj5xDQAaEd9ZN1ovSuk9CsrncWaFwgpOMg7ClJwkw=="; 1211 - }; 1212 - }; 1213 - "common-sequence-2.0.2" = { 1214 - name = "common-sequence"; 1215 - packageName = "common-sequence"; 1216 - version = "2.0.2"; 1217 - src = fetchurl { 1218 - url = "https://registry.npmjs.org/common-sequence/-/common-sequence-2.0.2.tgz"; 1219 - sha512 = "jAg09gkdkrDO9EWTdXfv80WWH3yeZl5oT69fGfedBNS9pXUKYInVJ1bJ+/ht2+Moeei48TmSbQDYMc8EOx9G0g=="; 1220 - }; 1221 - }; 1222 - "commondir-1.0.1" = { 1223 - name = "commondir"; 1224 - packageName = "commondir"; 1225 - version = "1.0.1"; 1226 - src = fetchurl { 1227 - url = "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz"; 1228 - sha512 = "W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg=="; 1229 - }; 1230 - }; 1231 - "concat-map-0.0.1" = { 1232 - name = "concat-map"; 1233 - packageName = "concat-map"; 1234 - version = "0.0.1"; 1235 - src = fetchurl { 1236 - url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; 1237 - sha512 = "/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="; 1238 - }; 1239 - }; 1240 - "concat-stream-1.6.2" = { 1241 - name = "concat-stream"; 1242 - packageName = "concat-stream"; 1243 - version = "1.6.2"; 1244 - src = fetchurl { 1245 - url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz"; 1246 - sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw=="; 1247 - }; 1248 - }; 1249 - "config-master-3.1.0" = { 1250 - name = "config-master"; 1251 - packageName = "config-master"; 1252 - version = "3.1.0"; 1253 - src = fetchurl { 1254 - url = "https://registry.npmjs.org/config-master/-/config-master-3.1.0.tgz"; 1255 - sha512 = "n7LBL1zBzYdTpF1mx5DNcZnZn05CWIdsdvtPL4MosvqbBUK3Rq6VWEtGUuF3Y0s9/CIhMejezqlSkP6TnCJ/9g=="; 1256 - }; 1257 - }; 1258 - "convert-source-map-1.9.0" = { 1259 - name = "convert-source-map"; 1260 - packageName = "convert-source-map"; 1261 - version = "1.9.0"; 1262 - src = fetchurl { 1263 - url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz"; 1264 - sha512 = "ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="; 1265 - }; 1266 - }; 1267 - "core-util-is-1.0.2" = { 1268 - name = "core-util-is"; 1269 - packageName = "core-util-is"; 1270 - version = "1.0.2"; 1271 - src = fetchurl { 1272 - url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; 1273 - sha512 = "3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ=="; 1274 - }; 1275 - }; 1276 - "cross-spawn-7.0.3" = { 1277 - name = "cross-spawn"; 1278 - packageName = "cross-spawn"; 1279 - version = "7.0.3"; 1280 - src = fetchurl { 1281 - url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"; 1282 - sha512 = "iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="; 1283 - }; 1284 - }; 1285 - "csv-parse-4.16.3" = { 1286 - name = "csv-parse"; 1287 - packageName = "csv-parse"; 1288 - version = "4.16.3"; 1289 - src = fetchurl { 1290 - url = "https://registry.npmjs.org/csv-parse/-/csv-parse-4.16.3.tgz"; 1291 - sha512 = "cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg=="; 1292 - }; 1293 - }; 1294 - "cycle-1.0.3" = { 1295 - name = "cycle"; 1296 - packageName = "cycle"; 1297 - version = "1.0.3"; 1298 - src = fetchurl { 1299 - url = "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz"; 1300 - sha512 = "TVF6svNzeQCOpjCqsy0/CSy8VgObG3wXusJ73xW2GbG5rGx7lC8zxDSURicsXI2UsGdi2L0QNRCi745/wUDvsA=="; 1301 - }; 1302 - }; 1303 - "dashdash-1.14.1" = { 1304 - name = "dashdash"; 1305 - packageName = "dashdash"; 1306 - version = "1.14.1"; 1307 - src = fetchurl { 1308 - url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz"; 1309 - sha512 = "jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g=="; 1310 - }; 1311 - }; 1312 - "date-format-0.0.2" = { 1313 - name = "date-format"; 1314 - packageName = "date-format"; 1315 - version = "0.0.2"; 1316 - src = fetchurl { 1317 - url = "https://registry.npmjs.org/date-format/-/date-format-0.0.2.tgz"; 1318 - sha512 = "M4obuJx8jU5T91lcbwi0+QPNVaWOY1DQYz5xUuKYWO93osVzB2ZPqyDUc5T+mDjbA1X8VOb4JDZ+8r2MrSOp7Q=="; 1319 - }; 1320 - }; 1321 - "debug-3.2.7" = { 1322 - name = "debug"; 1323 - packageName = "debug"; 1324 - version = "3.2.7"; 1325 - src = fetchurl { 1326 - url = "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz"; 1327 - sha512 = "CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="; 1328 - }; 1329 - }; 1330 - "debug-4.3.3" = { 1331 - name = "debug"; 1332 - packageName = "debug"; 1333 - version = "4.3.3"; 1334 - src = fetchurl { 1335 - url = "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz"; 1336 - sha512 = "/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q=="; 1337 - }; 1338 - }; 1339 - "debug-4.3.4" = { 1340 - name = "debug"; 1341 - packageName = "debug"; 1342 - version = "4.3.4"; 1343 - src = fetchurl { 1344 - url = "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"; 1345 - sha512 = "PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="; 1346 - }; 1347 - }; 1348 - "decamelize-1.2.0" = { 1349 - name = "decamelize"; 1350 - packageName = "decamelize"; 1351 - version = "1.2.0"; 1352 - src = fetchurl { 1353 - url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; 1354 - sha512 = "z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA=="; 1355 - }; 1356 - }; 1357 - "decamelize-4.0.0" = { 1358 - name = "decamelize"; 1359 - packageName = "decamelize"; 1360 - version = "4.0.0"; 1361 - src = fetchurl { 1362 - url = "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz"; 1363 - sha512 = "9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ=="; 1364 - }; 1365 - }; 1366 - "deep-eql-4.1.3" = { 1367 - name = "deep-eql"; 1368 - packageName = "deep-eql"; 1369 - version = "4.1.3"; 1370 - src = fetchurl { 1371 - url = "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz"; 1372 - sha512 = "WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw=="; 1373 - }; 1374 - }; 1375 - "deep-extend-0.6.0" = { 1376 - name = "deep-extend"; 1377 - packageName = "deep-extend"; 1378 - version = "0.6.0"; 1379 - src = fetchurl { 1380 - url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz"; 1381 - sha512 = "LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="; 1382 - }; 1383 - }; 1384 - "deep-is-0.1.4" = { 1385 - name = "deep-is"; 1386 - packageName = "deep-is"; 1387 - version = "0.1.4"; 1388 - src = fetchurl { 1389 - url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz"; 1390 - sha512 = "oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="; 1391 - }; 1392 - }; 1393 - "default-require-extensions-3.0.1" = { 1394 - name = "default-require-extensions"; 1395 - packageName = "default-require-extensions"; 1396 - version = "3.0.1"; 1397 - src = fetchurl { 1398 - url = "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-3.0.1.tgz"; 1399 - sha512 = "eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw=="; 1400 - }; 1401 - }; 1402 - "delayed-stream-1.0.0" = { 1403 - name = "delayed-stream"; 1404 - packageName = "delayed-stream"; 1405 - version = "1.0.0"; 1406 - src = fetchurl { 1407 - url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"; 1408 - sha512 = "ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="; 1409 - }; 1410 - }; 1411 - "diff-5.0.0" = { 1412 - name = "diff"; 1413 - packageName = "diff"; 1414 - version = "5.0.0"; 1415 - src = fetchurl { 1416 - url = "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz"; 1417 - sha512 = "/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w=="; 1418 - }; 1419 - }; 1420 - "dmd-6.2.0" = { 1421 - name = "dmd"; 1422 - packageName = "dmd"; 1423 - version = "6.2.0"; 1424 - src = fetchurl { 1425 - url = "https://registry.npmjs.org/dmd/-/dmd-6.2.0.tgz"; 1426 - sha512 = "uXWxLF1H7TkUAuoHK59/h/ts5cKavm2LnhrIgJWisip4BVzPoXavlwyoprFFn2CzcahKYgvkfaebS6oxzgflkg=="; 1427 - }; 1428 - }; 1429 - "docker-modem-1.0.9" = { 1430 - name = "docker-modem"; 1431 - packageName = "docker-modem"; 1432 - version = "1.0.9"; 1433 - src = fetchurl { 1434 - url = "https://registry.npmjs.org/docker-modem/-/docker-modem-1.0.9.tgz"; 1435 - sha512 = "lVjqCSCIAUDZPAZIeyM125HXfNvOmYYInciphNrLrylUtKyW66meAjSPXWchKVzoIYZx69TPnAepVSSkeawoIw=="; 1436 - }; 1437 - }; 1438 - "dockerfile_lint-0.3.4" = { 1439 - name = "dockerfile_lint"; 1440 - packageName = "dockerfile_lint"; 1441 - version = "0.3.4"; 1442 - src = fetchurl { 1443 - url = "https://registry.npmjs.org/dockerfile_lint/-/dockerfile_lint-0.3.4.tgz"; 1444 - sha512 = "+4SUTb7Helo7TuhzNsukJgV6T7B7GGFYnn1h5c5DFrV0VmtXGcqSyZYBHz+s+vrFDt8ehE2DqGdrmG1RaqPkpw=="; 1445 - }; 1446 - }; 1447 - "dockerode-2.5.8" = { 1448 - name = "dockerode"; 1449 - packageName = "dockerode"; 1450 - version = "2.5.8"; 1451 - src = fetchurl { 1452 - url = "https://registry.npmjs.org/dockerode/-/dockerode-2.5.8.tgz"; 1453 - sha512 = "+7iOUYBeDTScmOmQqpUYQaE7F4vvIt6+gIZNHWhqAQEI887tiPFB9OvXI/HzQYqfUNvukMK+9myLW63oTJPZpw=="; 1454 - }; 1455 - }; 1456 - "doctrine-3.0.0" = { 1457 - name = "doctrine"; 1458 - packageName = "doctrine"; 1459 - version = "3.0.0"; 1460 - src = fetchurl { 1461 - url = "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz"; 1462 - sha512 = "yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w=="; 1463 - }; 1464 - }; 1465 - "ecc-jsbn-0.1.2" = { 1466 - name = "ecc-jsbn"; 1467 - packageName = "ecc-jsbn"; 1468 - version = "0.1.2"; 1469 - src = fetchurl { 1470 - url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"; 1471 - sha512 = "eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw=="; 1472 - }; 1473 - }; 1474 - "editorconfig-0.15.3" = { 1475 - name = "editorconfig"; 1476 - packageName = "editorconfig"; 1477 - version = "0.15.3"; 1478 - src = fetchurl { 1479 - url = "https://registry.npmjs.org/editorconfig/-/editorconfig-0.15.3.tgz"; 1480 - sha512 = "M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g=="; 1481 - }; 1482 - }; 1483 - "electron-to-chromium-1.4.284" = { 1484 - name = "electron-to-chromium"; 1485 - packageName = "electron-to-chromium"; 1486 - version = "1.4.284"; 1487 - src = fetchurl { 1488 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz"; 1489 - sha512 = "M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA=="; 1490 - }; 1491 - }; 1492 - "emoji-regex-8.0.0" = { 1493 - name = "emoji-regex"; 1494 - packageName = "emoji-regex"; 1495 - version = "8.0.0"; 1496 - src = fetchurl { 1497 - url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"; 1498 - sha512 = "MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="; 1499 - }; 1500 - }; 1501 - "end-of-stream-1.4.4" = { 1502 - name = "end-of-stream"; 1503 - packageName = "end-of-stream"; 1504 - version = "1.4.4"; 1505 - src = fetchurl { 1506 - url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz"; 1507 - sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="; 1508 - }; 1509 - }; 1510 - "enquirer-2.3.6" = { 1511 - name = "enquirer"; 1512 - packageName = "enquirer"; 1513 - version = "2.3.6"; 1514 - src = fetchurl { 1515 - url = "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz"; 1516 - sha512 = "yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg=="; 1517 - }; 1518 - }; 1519 - "entities-2.1.0" = { 1520 - name = "entities"; 1521 - packageName = "entities"; 1522 - version = "2.1.0"; 1523 - src = fetchurl { 1524 - url = "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz"; 1525 - sha512 = "hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w=="; 1526 - }; 1527 - }; 1528 - "es6-error-4.1.1" = { 1529 - name = "es6-error"; 1530 - packageName = "es6-error"; 1531 - version = "4.1.1"; 1532 - src = fetchurl { 1533 - url = "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz"; 1534 - sha512 = "Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg=="; 1535 - }; 1536 - }; 1537 - "escalade-3.1.1" = { 1538 - name = "escalade"; 1539 - packageName = "escalade"; 1540 - version = "3.1.1"; 1541 - src = fetchurl { 1542 - url = "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"; 1543 - sha512 = "k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="; 1544 - }; 1545 - }; 1546 - "escape-string-regexp-1.0.5" = { 1547 - name = "escape-string-regexp"; 1548 - packageName = "escape-string-regexp"; 1549 - version = "1.0.5"; 1550 - src = fetchurl { 1551 - url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; 1552 - sha512 = "vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="; 1553 - }; 1554 - }; 1555 - "escape-string-regexp-2.0.0" = { 1556 - name = "escape-string-regexp"; 1557 - packageName = "escape-string-regexp"; 1558 - version = "2.0.0"; 1559 - src = fetchurl { 1560 - url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz"; 1561 - sha512 = "UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w=="; 1562 - }; 1563 - }; 1564 - "escape-string-regexp-4.0.0" = { 1565 - name = "escape-string-regexp"; 1566 - packageName = "escape-string-regexp"; 1567 - version = "4.0.0"; 1568 - src = fetchurl { 1569 - url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"; 1570 - sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="; 1571 - }; 1572 - }; 1573 - "eslint-7.32.0" = { 1574 - name = "eslint"; 1575 - packageName = "eslint"; 1576 - version = "7.32.0"; 1577 - src = fetchurl { 1578 - url = "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz"; 1579 - sha512 = "VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA=="; 1580 - }; 1581 - }; 1582 - "eslint-plugin-jsdoc-36.1.1" = { 1583 - name = "eslint-plugin-jsdoc"; 1584 - packageName = "eslint-plugin-jsdoc"; 1585 - version = "36.1.1"; 1586 - src = fetchurl { 1587 - url = "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-36.1.1.tgz"; 1588 - sha512 = "nuLDvH1EJaKx0PCa9oeQIxH6pACIhZd1gkalTUxZbaxxwokjs7TplqY0Q8Ew3CoZaf5aowm0g/Z3JGHCatt+gQ=="; 1589 - }; 1590 - }; 1591 - "eslint-plugin-lodash-7.4.0" = { 1592 - name = "eslint-plugin-lodash"; 1593 - packageName = "eslint-plugin-lodash"; 1594 - version = "7.4.0"; 1595 - src = fetchurl { 1596 - url = "https://registry.npmjs.org/eslint-plugin-lodash/-/eslint-plugin-lodash-7.4.0.tgz"; 1597 - sha512 = "Tl83UwVXqe1OVeBRKUeWcfg6/pCW1GTRObbdnbEJgYwjxp5Q92MEWQaH9+dmzbRt6kvYU1Mp893E79nJiCSM8A=="; 1598 - }; 1599 - }; 1600 - "eslint-plugin-mocha-10.1.0" = { 1601 - name = "eslint-plugin-mocha"; 1602 - packageName = "eslint-plugin-mocha"; 1603 - version = "10.1.0"; 1604 - src = fetchurl { 1605 - url = "https://registry.npmjs.org/eslint-plugin-mocha/-/eslint-plugin-mocha-10.1.0.tgz"; 1606 - sha512 = "xLqqWUF17llsogVOC+8C6/jvQ+4IoOREbN7ZCHuOHuD6cT5cDD4h7f2LgsZuzMAiwswWE21tO7ExaknHVDrSkw=="; 1607 - }; 1608 - }; 1609 - "eslint-plugin-security-1.5.0" = { 1610 - name = "eslint-plugin-security"; 1611 - packageName = "eslint-plugin-security"; 1612 - version = "1.5.0"; 1613 - src = fetchurl { 1614 - url = "https://registry.npmjs.org/eslint-plugin-security/-/eslint-plugin-security-1.5.0.tgz"; 1615 - sha512 = "hAFVwLZ/UeXrlyVD2TDarv/x00CoFVpaY0IUZhKjPjiFxqkuQVixsK4f2rxngeQOqSxi6OUjzJM/jMwKEVjJ8g=="; 1616 - }; 1617 - }; 1618 - "eslint-scope-5.1.1" = { 1619 - name = "eslint-scope"; 1620 - packageName = "eslint-scope"; 1621 - version = "5.1.1"; 1622 - src = fetchurl { 1623 - url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz"; 1624 - sha512 = "2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="; 1625 - }; 1626 - }; 1627 - "eslint-utils-2.1.0" = { 1628 - name = "eslint-utils"; 1629 - packageName = "eslint-utils"; 1630 - version = "2.1.0"; 1631 - src = fetchurl { 1632 - url = "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz"; 1633 - sha512 = "w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg=="; 1634 - }; 1635 - }; 1636 - "eslint-utils-3.0.0" = { 1637 - name = "eslint-utils"; 1638 - packageName = "eslint-utils"; 1639 - version = "3.0.0"; 1640 - src = fetchurl { 1641 - url = "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz"; 1642 - sha512 = "uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA=="; 1643 - }; 1644 - }; 1645 - "eslint-visitor-keys-1.3.0" = { 1646 - name = "eslint-visitor-keys"; 1647 - packageName = "eslint-visitor-keys"; 1648 - version = "1.3.0"; 1649 - src = fetchurl { 1650 - url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"; 1651 - sha512 = "6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ=="; 1652 - }; 1653 - }; 1654 - "eslint-visitor-keys-2.1.0" = { 1655 - name = "eslint-visitor-keys"; 1656 - packageName = "eslint-visitor-keys"; 1657 - version = "2.1.0"; 1658 - src = fetchurl { 1659 - url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"; 1660 - sha512 = "0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw=="; 1661 - }; 1662 - }; 1663 - "espree-7.3.1" = { 1664 - name = "espree"; 1665 - packageName = "espree"; 1666 - version = "7.3.1"; 1667 - src = fetchurl { 1668 - url = "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz"; 1669 - sha512 = "v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g=="; 1670 - }; 1671 - }; 1672 - "esprima-4.0.1" = { 1673 - name = "esprima"; 1674 - packageName = "esprima"; 1675 - version = "4.0.1"; 1676 - src = fetchurl { 1677 - url = "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"; 1678 - sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; 1679 - }; 1680 - }; 1681 - "esquery-1.4.0" = { 1682 - name = "esquery"; 1683 - packageName = "esquery"; 1684 - version = "1.4.0"; 1685 - src = fetchurl { 1686 - url = "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz"; 1687 - sha512 = "cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w=="; 1688 - }; 1689 - }; 1690 - "esrecurse-4.3.0" = { 1691 - name = "esrecurse"; 1692 - packageName = "esrecurse"; 1693 - version = "4.3.0"; 1694 - src = fetchurl { 1695 - url = "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz"; 1696 - sha512 = "KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="; 1697 - }; 1698 - }; 1699 - "estraverse-4.3.0" = { 1700 - name = "estraverse"; 1701 - packageName = "estraverse"; 1702 - version = "4.3.0"; 1703 - src = fetchurl { 1704 - url = "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz"; 1705 - sha512 = "39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="; 1706 - }; 1707 - }; 1708 - "estraverse-5.3.0" = { 1709 - name = "estraverse"; 1710 - packageName = "estraverse"; 1711 - version = "5.3.0"; 1712 - src = fetchurl { 1713 - url = "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz"; 1714 - sha512 = "MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="; 1715 - }; 1716 - }; 1717 - "esutils-2.0.3" = { 1718 - name = "esutils"; 1719 - packageName = "esutils"; 1720 - version = "2.0.3"; 1721 - src = fetchurl { 1722 - url = "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"; 1723 - sha512 = "kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="; 1724 - }; 1725 - }; 1726 - "eventemitter3-4.0.7" = { 1727 - name = "eventemitter3"; 1728 - packageName = "eventemitter3"; 1729 - version = "4.0.7"; 1730 - src = fetchurl { 1731 - url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz"; 1732 - sha512 = "8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="; 1733 - }; 1734 - }; 1735 - "extend-3.0.2" = { 1736 - name = "extend"; 1737 - packageName = "extend"; 1738 - version = "3.0.2"; 1739 - src = fetchurl { 1740 - url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"; 1741 - sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="; 1742 - }; 1743 - }; 1744 - "extsprintf-1.3.0" = { 1745 - name = "extsprintf"; 1746 - packageName = "extsprintf"; 1747 - version = "1.3.0"; 1748 - src = fetchurl { 1749 - url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"; 1750 - sha512 = "11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g=="; 1751 - }; 1752 - }; 1753 - "eyes-0.1.8" = { 1754 - name = "eyes"; 1755 - packageName = "eyes"; 1756 - version = "0.1.8"; 1757 - src = fetchurl { 1758 - url = "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz"; 1759 - sha512 = "GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ=="; 1760 - }; 1761 - }; 1762 - "faker-5.5.3" = { 1763 - name = "faker"; 1764 - packageName = "faker"; 1765 - version = "5.5.3"; 1766 - src = fetchurl { 1767 - url = "https://registry.npmjs.org/faker/-/faker-5.5.3.tgz"; 1768 - sha512 = "wLTv2a28wjUyWkbnX7u/ABZBkUkIF2fCd73V6P2oFqEGEktDfzWx4UxrSqtPRw0xPRAcjeAOIiJWqZm3pP4u3g=="; 1769 - }; 1770 - }; 1771 - "fast-deep-equal-3.1.3" = { 1772 - name = "fast-deep-equal"; 1773 - packageName = "fast-deep-equal"; 1774 - version = "3.1.3"; 1775 - src = fetchurl { 1776 - url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"; 1777 - sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="; 1778 - }; 1779 - }; 1780 - "fast-json-stable-stringify-2.1.0" = { 1781 - name = "fast-json-stable-stringify"; 1782 - packageName = "fast-json-stable-stringify"; 1783 - version = "2.1.0"; 1784 - src = fetchurl { 1785 - url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; 1786 - sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="; 1787 - }; 1788 - }; 1789 - "fast-levenshtein-2.0.6" = { 1790 - name = "fast-levenshtein"; 1791 - packageName = "fast-levenshtein"; 1792 - version = "2.0.6"; 1793 - src = fetchurl { 1794 - url = "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; 1795 - sha512 = "DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="; 1796 - }; 1797 - }; 1798 - "file-entry-cache-6.0.1" = { 1799 - name = "file-entry-cache"; 1800 - packageName = "file-entry-cache"; 1801 - version = "6.0.1"; 1802 - src = fetchurl { 1803 - url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz"; 1804 - sha512 = "7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg=="; 1805 - }; 1806 - }; 1807 - "file-set-4.0.2" = { 1808 - name = "file-set"; 1809 - packageName = "file-set"; 1810 - version = "4.0.2"; 1811 - src = fetchurl { 1812 - url = "https://registry.npmjs.org/file-set/-/file-set-4.0.2.tgz"; 1813 - sha512 = "fuxEgzk4L8waGXaAkd8cMr73Pm0FxOVkn8hztzUW7BAHhOGH90viQNXbiOsnecCWmfInqU6YmAMwxRMdKETceQ=="; 1814 - }; 1815 - }; 1816 - "file-type-3.9.0" = { 1817 - name = "file-type"; 1818 - packageName = "file-type"; 1819 - version = "3.9.0"; 1820 - src = fetchurl { 1821 - url = "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz"; 1822 - sha512 = "RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA=="; 1823 - }; 1824 - }; 1825 - "filesize-8.0.7" = { 1826 - name = "filesize"; 1827 - packageName = "filesize"; 1828 - version = "8.0.7"; 1829 - src = fetchurl { 1830 - url = "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz"; 1831 - sha512 = "pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ=="; 1832 - }; 1833 - }; 1834 - "fill-range-7.0.1" = { 1835 - name = "fill-range"; 1836 - packageName = "fill-range"; 1837 - version = "7.0.1"; 1838 - src = fetchurl { 1839 - url = "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"; 1840 - sha512 = "qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ=="; 1841 - }; 1842 - }; 1843 - "find-cache-dir-3.3.2" = { 1844 - name = "find-cache-dir"; 1845 - packageName = "find-cache-dir"; 1846 - version = "3.3.2"; 1847 - src = fetchurl { 1848 - url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz"; 1849 - sha512 = "wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig=="; 1850 - }; 1851 - }; 1852 - "find-replace-3.0.0" = { 1853 - name = "find-replace"; 1854 - packageName = "find-replace"; 1855 - version = "3.0.0"; 1856 - src = fetchurl { 1857 - url = "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz"; 1858 - sha512 = "6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ=="; 1859 - }; 1860 - }; 1861 - "find-up-4.1.0" = { 1862 - name = "find-up"; 1863 - packageName = "find-up"; 1864 - version = "4.1.0"; 1865 - src = fetchurl { 1866 - url = "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz"; 1867 - sha512 = "PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="; 1868 - }; 1869 - }; 1870 - "find-up-5.0.0" = { 1871 - name = "find-up"; 1872 - packageName = "find-up"; 1873 - version = "5.0.0"; 1874 - src = fetchurl { 1875 - url = "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz"; 1876 - sha512 = "78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="; 1877 - }; 1878 - }; 1879 - "flat-5.0.2" = { 1880 - name = "flat"; 1881 - packageName = "flat"; 1882 - version = "5.0.2"; 1883 - src = fetchurl { 1884 - url = "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz"; 1885 - sha512 = "b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ=="; 1886 - }; 1887 - }; 1888 - "flat-cache-3.0.4" = { 1889 - name = "flat-cache"; 1890 - packageName = "flat-cache"; 1891 - version = "3.0.4"; 1892 - src = fetchurl { 1893 - url = "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz"; 1894 - sha512 = "dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg=="; 1895 - }; 1896 - }; 1897 - "flatted-3.1.1" = { 1898 - name = "flatted"; 1899 - packageName = "flatted"; 1900 - version = "3.1.1"; 1901 - src = fetchurl { 1902 - url = "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz"; 1903 - sha512 = "zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA=="; 1904 - }; 1905 - }; 1906 - "foreground-child-2.0.0" = { 1907 - name = "foreground-child"; 1908 - packageName = "foreground-child"; 1909 - version = "2.0.0"; 1910 - src = fetchurl { 1911 - url = "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz"; 1912 - sha512 = "dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA=="; 1913 - }; 1914 - }; 1915 - "forever-agent-0.6.1" = { 1916 - name = "forever-agent"; 1917 - packageName = "forever-agent"; 1918 - version = "0.6.1"; 1919 - src = fetchurl { 1920 - url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"; 1921 - sha512 = "j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw=="; 1922 - }; 1923 - }; 1924 - "fromentries-1.3.2" = { 1925 - name = "fromentries"; 1926 - packageName = "fromentries"; 1927 - version = "1.3.2"; 1928 - src = fetchurl { 1929 - url = "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz"; 1930 - sha512 = "cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg=="; 1931 - }; 1932 - }; 1933 - "fs-constants-1.0.0" = { 1934 - name = "fs-constants"; 1935 - packageName = "fs-constants"; 1936 - version = "1.0.0"; 1937 - src = fetchurl { 1938 - url = "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz"; 1939 - sha512 = "y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="; 1940 - }; 1941 - }; 1942 - "fs-then-native-2.0.0" = { 1943 - name = "fs-then-native"; 1944 - packageName = "fs-then-native"; 1945 - version = "2.0.0"; 1946 - src = fetchurl { 1947 - url = "https://registry.npmjs.org/fs-then-native/-/fs-then-native-2.0.0.tgz"; 1948 - sha512 = "X712jAOaWXkemQCAmWeg5rOT2i+KOpWz1Z/txk/cW0qlOu2oQ9H61vc5w3X/iyuUEfq/OyaFJ78/cZAQD1/bgA=="; 1949 - }; 1950 - }; 1951 - "fs.realpath-1.0.0" = { 1952 - name = "fs.realpath"; 1953 - packageName = "fs.realpath"; 1954 - version = "1.0.0"; 1955 - src = fetchurl { 1956 - url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"; 1957 - sha512 = "OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="; 1958 - }; 1959 - }; 1960 - "fsevents-2.3.2" = { 1961 - name = "fsevents"; 1962 - packageName = "fsevents"; 1963 - version = "2.3.2"; 1964 - src = fetchurl { 1965 - url = "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"; 1966 - sha512 = "xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="; 1967 - }; 1968 - }; 1969 - "function-bind-1.1.1" = { 1970 - name = "function-bind"; 1971 - packageName = "function-bind"; 1972 - version = "1.1.1"; 1973 - src = fetchurl { 1974 - url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"; 1975 - sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="; 1976 - }; 1977 - }; 1978 - "functional-red-black-tree-1.0.1" = { 1979 - name = "functional-red-black-tree"; 1980 - packageName = "functional-red-black-tree"; 1981 - version = "1.0.1"; 1982 - src = fetchurl { 1983 - url = "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"; 1984 - sha512 = "dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g=="; 1985 - }; 1986 - }; 1987 - "gensync-1.0.0-beta.2" = { 1988 - name = "gensync"; 1989 - packageName = "gensync"; 1990 - version = "1.0.0-beta.2"; 1991 - src = fetchurl { 1992 - url = "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz"; 1993 - sha512 = "3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="; 1994 - }; 1995 - }; 1996 - "get-caller-file-2.0.5" = { 1997 - name = "get-caller-file"; 1998 - packageName = "get-caller-file"; 1999 - version = "2.0.5"; 2000 - src = fetchurl { 2001 - url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"; 2002 - sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; 2003 - }; 2004 - }; 2005 - "get-func-name-2.0.0" = { 2006 - name = "get-func-name"; 2007 - packageName = "get-func-name"; 2008 - version = "2.0.0"; 2009 - src = fetchurl { 2010 - url = "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz"; 2011 - sha512 = "Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig=="; 2012 - }; 2013 - }; 2014 - "get-package-type-0.1.0" = { 2015 - name = "get-package-type"; 2016 - packageName = "get-package-type"; 2017 - version = "0.1.0"; 2018 - src = fetchurl { 2019 - url = "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz"; 2020 - sha512 = "pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q=="; 2021 - }; 2022 - }; 2023 - "getpass-0.1.7" = { 2024 - name = "getpass"; 2025 - packageName = "getpass"; 2026 - version = "0.1.7"; 2027 - src = fetchurl { 2028 - url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz"; 2029 - sha512 = "0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng=="; 2030 - }; 2031 - }; 2032 - "glob-7.2.0" = { 2033 - name = "glob"; 2034 - packageName = "glob"; 2035 - version = "7.2.0"; 2036 - src = fetchurl { 2037 - url = "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz"; 2038 - sha512 = "lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q=="; 2039 - }; 2040 - }; 2041 - "glob-7.2.3" = { 2042 - name = "glob"; 2043 - packageName = "glob"; 2044 - version = "7.2.3"; 2045 - src = fetchurl { 2046 - url = "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"; 2047 - sha512 = "nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="; 2048 - }; 2049 - }; 2050 - "glob-parent-5.1.2" = { 2051 - name = "glob-parent"; 2052 - packageName = "glob-parent"; 2053 - version = "5.1.2"; 2054 - src = fetchurl { 2055 - url = "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"; 2056 - sha512 = "AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="; 2057 - }; 2058 - }; 2059 - "globals-11.12.0" = { 2060 - name = "globals"; 2061 - packageName = "globals"; 2062 - version = "11.12.0"; 2063 - src = fetchurl { 2064 - url = "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz"; 2065 - sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; 2066 - }; 2067 - }; 2068 - "globals-13.18.0" = { 2069 - name = "globals"; 2070 - packageName = "globals"; 2071 - version = "13.18.0"; 2072 - src = fetchurl { 2073 - url = "https://registry.npmjs.org/globals/-/globals-13.18.0.tgz"; 2074 - sha512 = "/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A=="; 2075 - }; 2076 - }; 2077 - "graceful-fs-4.2.10" = { 2078 - name = "graceful-fs"; 2079 - packageName = "graceful-fs"; 2080 - version = "4.2.10"; 2081 - src = fetchurl { 2082 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz"; 2083 - sha512 = "9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="; 2084 - }; 2085 - }; 2086 - "graceful-readlink-1.0.1" = { 2087 - name = "graceful-readlink"; 2088 - packageName = "graceful-readlink"; 2089 - version = "1.0.1"; 2090 - src = fetchurl { 2091 - url = "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz"; 2092 - sha512 = "8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w=="; 2093 - }; 2094 - }; 2095 - "growl-1.10.5" = { 2096 - name = "growl"; 2097 - packageName = "growl"; 2098 - version = "1.10.5"; 2099 - src = fetchurl { 2100 - url = "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz"; 2101 - sha512 = "qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA=="; 2102 - }; 2103 - }; 2104 - "handlebars-4.7.7" = { 2105 - name = "handlebars"; 2106 - packageName = "handlebars"; 2107 - version = "4.7.7"; 2108 - src = fetchurl { 2109 - url = "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz"; 2110 - sha512 = "aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA=="; 2111 - }; 2112 - }; 2113 - "har-schema-2.0.0" = { 2114 - name = "har-schema"; 2115 - packageName = "har-schema"; 2116 - version = "2.0.0"; 2117 - src = fetchurl { 2118 - url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"; 2119 - sha512 = "Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q=="; 2120 - }; 2121 - }; 2122 - "har-validator-5.1.5" = { 2123 - name = "har-validator"; 2124 - packageName = "har-validator"; 2125 - version = "5.1.5"; 2126 - src = fetchurl { 2127 - url = "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz"; 2128 - sha512 = "nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w=="; 2129 - }; 2130 - }; 2131 - "has-1.0.3" = { 2132 - name = "has"; 2133 - packageName = "has"; 2134 - version = "1.0.3"; 2135 - src = fetchurl { 2136 - url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz"; 2137 - sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="; 2138 - }; 2139 - }; 2140 - "has-flag-3.0.0" = { 2141 - name = "has-flag"; 2142 - packageName = "has-flag"; 2143 - version = "3.0.0"; 2144 - src = fetchurl { 2145 - url = "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"; 2146 - sha512 = "sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="; 2147 - }; 2148 - }; 2149 - "has-flag-4.0.0" = { 2150 - name = "has-flag"; 2151 - packageName = "has-flag"; 2152 - version = "4.0.0"; 2153 - src = fetchurl { 2154 - url = "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"; 2155 - sha512 = "EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="; 2156 - }; 2157 - }; 2158 - "hasha-5.2.2" = { 2159 - name = "hasha"; 2160 - packageName = "hasha"; 2161 - version = "5.2.2"; 2162 - src = fetchurl { 2163 - url = "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz"; 2164 - sha512 = "Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ=="; 2165 - }; 2166 - }; 2167 - "he-1.2.0" = { 2168 - name = "he"; 2169 - packageName = "he"; 2170 - version = "1.2.0"; 2171 - src = fetchurl { 2172 - url = "https://registry.npmjs.org/he/-/he-1.2.0.tgz"; 2173 - sha512 = "F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw=="; 2174 - }; 2175 - }; 2176 - "html-escaper-2.0.2" = { 2177 - name = "html-escaper"; 2178 - packageName = "html-escaper"; 2179 - version = "2.0.2"; 2180 - src = fetchurl { 2181 - url = "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz"; 2182 - sha512 = "H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg=="; 2183 - }; 2184 - }; 2185 - "http-reasons-0.1.0" = { 2186 - name = "http-reasons"; 2187 - packageName = "http-reasons"; 2188 - version = "0.1.0"; 2189 - src = fetchurl { 2190 - url = "https://registry.npmjs.org/http-reasons/-/http-reasons-0.1.0.tgz"; 2191 - sha512 = "P6kYh0lKZ+y29T2Gqz+RlC9WBLhKe8kDmcJ+A+611jFfxdPsbMRQ5aNmFRM3lENqFkK+HTTL+tlQviAiv0AbLQ=="; 2192 - }; 2193 - }; 2194 - "http-signature-1.3.6" = { 2195 - name = "http-signature"; 2196 - packageName = "http-signature"; 2197 - version = "1.3.6"; 2198 - src = fetchurl { 2199 - url = "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz"; 2200 - sha512 = "3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw=="; 2201 - }; 2202 - }; 2203 - "httpntlm-1.7.7" = { 2204 - name = "httpntlm"; 2205 - packageName = "httpntlm"; 2206 - version = "1.7.7"; 2207 - src = fetchurl { 2208 - url = "https://registry.npmjs.org/httpntlm/-/httpntlm-1.7.7.tgz"; 2209 - sha512 = "Pv2Rvrz8H0qv1Dne5mAdZ9JegG1uc6Vu5lwLflIY6s8RKHdZQbW39L4dYswSgqMDT0pkJILUTKjeyU0VPNRZjA=="; 2210 - }; 2211 - }; 2212 - "httpreq-0.5.2" = { 2213 - name = "httpreq"; 2214 - packageName = "httpreq"; 2215 - version = "0.5.2"; 2216 - src = fetchurl { 2217 - url = "https://registry.npmjs.org/httpreq/-/httpreq-0.5.2.tgz"; 2218 - sha512 = "2Jm+x9WkExDOeFRrdBCBSpLPT5SokTcRHkunV3pjKmX/cx6av8zQ0WtHUMDrYb6O4hBFzNU6sxJEypvRUVYKnw=="; 2219 - }; 2220 - }; 2221 - "iconv-lite-0.6.3" = { 2222 - name = "iconv-lite"; 2223 - packageName = "iconv-lite"; 2224 - version = "0.6.3"; 2225 - src = fetchurl { 2226 - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz"; 2227 - sha512 = "4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="; 2228 - }; 2229 - }; 2230 - "ignore-4.0.6" = { 2231 - name = "ignore"; 2232 - packageName = "ignore"; 2233 - version = "4.0.6"; 2234 - src = fetchurl { 2235 - url = "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz"; 2236 - sha512 = "cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg=="; 2237 - }; 2238 - }; 2239 - "import-fresh-3.3.0" = { 2240 - name = "import-fresh"; 2241 - packageName = "import-fresh"; 2242 - version = "3.3.0"; 2243 - src = fetchurl { 2244 - url = "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz"; 2245 - sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="; 2246 - }; 2247 - }; 2248 - "imurmurhash-0.1.4" = { 2249 - name = "imurmurhash"; 2250 - packageName = "imurmurhash"; 2251 - version = "0.1.4"; 2252 - src = fetchurl { 2253 - url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"; 2254 - sha512 = "JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="; 2255 - }; 2256 - }; 2257 - "indent-string-4.0.0" = { 2258 - name = "indent-string"; 2259 - packageName = "indent-string"; 2260 - version = "4.0.0"; 2261 - src = fetchurl { 2262 - url = "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz"; 2263 - sha512 = "EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="; 2264 - }; 2265 - }; 2266 - "inflight-1.0.6" = { 2267 - name = "inflight"; 2268 - packageName = "inflight"; 2269 - version = "1.0.6"; 2270 - src = fetchurl { 2271 - url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"; 2272 - sha512 = "k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA=="; 2273 - }; 2274 - }; 2275 - "inherits-2.0.4" = { 2276 - name = "inherits"; 2277 - packageName = "inherits"; 2278 - version = "2.0.4"; 2279 - src = fetchurl { 2280 - url = "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"; 2281 - sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; 2282 - }; 2283 - }; 2284 - "interpret-1.4.0" = { 2285 - name = "interpret"; 2286 - packageName = "interpret"; 2287 - version = "1.4.0"; 2288 - src = fetchurl { 2289 - url = "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz"; 2290 - sha512 = "agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA=="; 2291 - }; 2292 - }; 2293 - "ip-regex-2.1.0" = { 2294 - name = "ip-regex"; 2295 - packageName = "ip-regex"; 2296 - version = "2.1.0"; 2297 - src = fetchurl { 2298 - url = "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz"; 2299 - sha512 = "58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw=="; 2300 - }; 2301 - }; 2302 - "is-binary-path-2.1.0" = { 2303 - name = "is-binary-path"; 2304 - packageName = "is-binary-path"; 2305 - version = "2.1.0"; 2306 - src = fetchurl { 2307 - url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz"; 2308 - sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; 2309 - }; 2310 - }; 2311 - "is-core-module-2.11.0" = { 2312 - name = "is-core-module"; 2313 - packageName = "is-core-module"; 2314 - version = "2.11.0"; 2315 - src = fetchurl { 2316 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz"; 2317 - sha512 = "RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw=="; 2318 - }; 2319 - }; 2320 - "is-extglob-2.1.1" = { 2321 - name = "is-extglob"; 2322 - packageName = "is-extglob"; 2323 - version = "2.1.1"; 2324 - src = fetchurl { 2325 - url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"; 2326 - sha512 = "SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="; 2327 - }; 2328 - }; 2329 - "is-fullwidth-code-point-3.0.0" = { 2330 - name = "is-fullwidth-code-point"; 2331 - packageName = "is-fullwidth-code-point"; 2332 - version = "3.0.0"; 2333 - src = fetchurl { 2334 - url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"; 2335 - sha512 = "zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="; 2336 - }; 2337 - }; 2338 - "is-glob-4.0.3" = { 2339 - name = "is-glob"; 2340 - packageName = "is-glob"; 2341 - version = "4.0.3"; 2342 - src = fetchurl { 2343 - url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"; 2344 - sha512 = "xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="; 2345 - }; 2346 - }; 2347 - "is-number-7.0.0" = { 2348 - name = "is-number"; 2349 - packageName = "is-number"; 2350 - version = "7.0.0"; 2351 - src = fetchurl { 2352 - url = "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"; 2353 - sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="; 2354 - }; 2355 - }; 2356 - "is-plain-obj-2.1.0" = { 2357 - name = "is-plain-obj"; 2358 - packageName = "is-plain-obj"; 2359 - version = "2.1.0"; 2360 - src = fetchurl { 2361 - url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz"; 2362 - sha512 = "YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA=="; 2363 - }; 2364 - }; 2365 - "is-stream-2.0.1" = { 2366 - name = "is-stream"; 2367 - packageName = "is-stream"; 2368 - version = "2.0.1"; 2369 - src = fetchurl { 2370 - url = "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz"; 2371 - sha512 = "hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="; 2372 - }; 2373 - }; 2374 - "is-typedarray-1.0.0" = { 2375 - name = "is-typedarray"; 2376 - packageName = "is-typedarray"; 2377 - version = "1.0.0"; 2378 - src = fetchurl { 2379 - url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"; 2380 - sha512 = "cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA=="; 2381 - }; 2382 - }; 2383 - "is-unicode-supported-0.1.0" = { 2384 - name = "is-unicode-supported"; 2385 - packageName = "is-unicode-supported"; 2386 - version = "0.1.0"; 2387 - src = fetchurl { 2388 - url = "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz"; 2389 - sha512 = "knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw=="; 2390 - }; 2391 - }; 2392 - "is-windows-1.0.2" = { 2393 - name = "is-windows"; 2394 - packageName = "is-windows"; 2395 - version = "1.0.2"; 2396 - src = fetchurl { 2397 - url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz"; 2398 - sha512 = "eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA=="; 2399 - }; 2400 - }; 2401 - "isarray-0.0.1" = { 2402 - name = "isarray"; 2403 - packageName = "isarray"; 2404 - version = "0.0.1"; 2405 - src = fetchurl { 2406 - url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"; 2407 - sha512 = "D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ=="; 2408 - }; 2409 - }; 2410 - "isarray-1.0.0" = { 2411 - name = "isarray"; 2412 - packageName = "isarray"; 2413 - version = "1.0.0"; 2414 - src = fetchurl { 2415 - url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"; 2416 - sha512 = "VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="; 2417 - }; 2418 - }; 2419 - "isexe-2.0.0" = { 2420 - name = "isexe"; 2421 - packageName = "isexe"; 2422 - version = "2.0.0"; 2423 - src = fetchurl { 2424 - url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"; 2425 - sha512 = "RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="; 2426 - }; 2427 - }; 2428 - "isstream-0.1.2" = { 2429 - name = "isstream"; 2430 - packageName = "isstream"; 2431 - version = "0.1.2"; 2432 - src = fetchurl { 2433 - url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"; 2434 - sha512 = "Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g=="; 2435 - }; 2436 - }; 2437 - "istanbul-lib-coverage-3.2.0" = { 2438 - name = "istanbul-lib-coverage"; 2439 - packageName = "istanbul-lib-coverage"; 2440 - version = "3.2.0"; 2441 - src = fetchurl { 2442 - url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz"; 2443 - sha512 = "eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw=="; 2444 - }; 2445 - }; 2446 - "istanbul-lib-hook-3.0.0" = { 2447 - name = "istanbul-lib-hook"; 2448 - packageName = "istanbul-lib-hook"; 2449 - version = "3.0.0"; 2450 - src = fetchurl { 2451 - url = "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz"; 2452 - sha512 = "Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ=="; 2453 - }; 2454 - }; 2455 - "istanbul-lib-instrument-4.0.3" = { 2456 - name = "istanbul-lib-instrument"; 2457 - packageName = "istanbul-lib-instrument"; 2458 - version = "4.0.3"; 2459 - src = fetchurl { 2460 - url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz"; 2461 - sha512 = "BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ=="; 2462 - }; 2463 - }; 2464 - "istanbul-lib-processinfo-2.0.3" = { 2465 - name = "istanbul-lib-processinfo"; 2466 - packageName = "istanbul-lib-processinfo"; 2467 - version = "2.0.3"; 2468 - src = fetchurl { 2469 - url = "https://registry.npmjs.org/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.3.tgz"; 2470 - sha512 = "NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg=="; 2471 - }; 2472 - }; 2473 - "istanbul-lib-report-3.0.0" = { 2474 - name = "istanbul-lib-report"; 2475 - packageName = "istanbul-lib-report"; 2476 - version = "3.0.0"; 2477 - src = fetchurl { 2478 - url = "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz"; 2479 - sha512 = "wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw=="; 2480 - }; 2481 - }; 2482 - "istanbul-lib-source-maps-4.0.1" = { 2483 - name = "istanbul-lib-source-maps"; 2484 - packageName = "istanbul-lib-source-maps"; 2485 - version = "4.0.1"; 2486 - src = fetchurl { 2487 - url = "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz"; 2488 - sha512 = "n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw=="; 2489 - }; 2490 - }; 2491 - "istanbul-reports-3.1.5" = { 2492 - name = "istanbul-reports"; 2493 - packageName = "istanbul-reports"; 2494 - version = "3.1.5"; 2495 - src = fetchurl { 2496 - url = "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz"; 2497 - sha512 = "nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w=="; 2498 - }; 2499 - }; 2500 - "js-sha512-0.8.0" = { 2501 - name = "js-sha512"; 2502 - packageName = "js-sha512"; 2503 - version = "0.8.0"; 2504 - src = fetchurl { 2505 - url = "https://registry.npmjs.org/js-sha512/-/js-sha512-0.8.0.tgz"; 2506 - sha512 = "PWsmefG6Jkodqt+ePTvBZCSMFgN7Clckjd0O7su3I0+BW2QWUTJNzjktHsztGLhncP2h8mcF9V9Y2Ha59pAViQ=="; 2507 - }; 2508 - }; 2509 - "js-tokens-4.0.0" = { 2510 - name = "js-tokens"; 2511 - packageName = "js-tokens"; 2512 - version = "4.0.0"; 2513 - src = fetchurl { 2514 - url = "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"; 2515 - sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="; 2516 - }; 2517 - }; 2518 - "js-yaml-3.13.1" = { 2519 - name = "js-yaml"; 2520 - packageName = "js-yaml"; 2521 - version = "3.13.1"; 2522 - src = fetchurl { 2523 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz"; 2524 - sha512 = "YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw=="; 2525 - }; 2526 - }; 2527 - "js-yaml-3.14.1" = { 2528 - name = "js-yaml"; 2529 - packageName = "js-yaml"; 2530 - version = "3.14.1"; 2531 - src = fetchurl { 2532 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz"; 2533 - sha512 = "okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g=="; 2534 - }; 2535 - }; 2536 - "js-yaml-4.1.0" = { 2537 - name = "js-yaml"; 2538 - packageName = "js-yaml"; 2539 - version = "4.1.0"; 2540 - src = fetchurl { 2541 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz"; 2542 - sha512 = "wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="; 2543 - }; 2544 - }; 2545 - "js2xmlparser-4.0.2" = { 2546 - name = "js2xmlparser"; 2547 - packageName = "js2xmlparser"; 2548 - version = "4.0.2"; 2549 - src = fetchurl { 2550 - url = "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-4.0.2.tgz"; 2551 - sha512 = "6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA=="; 2552 - }; 2553 - }; 2554 - "jsbn-0.1.1" = { 2555 - name = "jsbn"; 2556 - packageName = "jsbn"; 2557 - version = "0.1.1"; 2558 - src = fetchurl { 2559 - url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz"; 2560 - sha512 = "UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg=="; 2561 - }; 2562 - }; 2563 - "jsdoc-3.6.11" = { 2564 - name = "jsdoc"; 2565 - packageName = "jsdoc"; 2566 - version = "3.6.11"; 2567 - src = fetchurl { 2568 - url = "https://registry.npmjs.org/jsdoc/-/jsdoc-3.6.11.tgz"; 2569 - sha512 = "8UCU0TYeIYD9KeLzEcAu2q8N/mx9O3phAGl32nmHlE0LpaJL71mMkP4d+QE5zWfNt50qheHtOZ0qoxVrsX5TUg=="; 2570 - }; 2571 - }; 2572 - "jsdoc-4.0.0" = { 2573 - name = "jsdoc"; 2574 - packageName = "jsdoc"; 2575 - version = "4.0.0"; 2576 - src = fetchurl { 2577 - url = "https://registry.npmjs.org/jsdoc/-/jsdoc-4.0.0.tgz"; 2578 - sha512 = "tzTgkklbWKrlaQL2+e3NNgLcZu3NaK2vsHRx7tyHQ+H5jcB9Gx0txSd2eJWlMC/xU1+7LQu4s58Ry0RkuaEQVg=="; 2579 - }; 2580 - }; 2581 - "jsdoc-api-7.2.0" = { 2582 - name = "jsdoc-api"; 2583 - packageName = "jsdoc-api"; 2584 - version = "7.2.0"; 2585 - src = fetchurl { 2586 - url = "https://registry.npmjs.org/jsdoc-api/-/jsdoc-api-7.2.0.tgz"; 2587 - sha512 = "93YDnlm/OYTlLOFeNs4qAv0RBCJ0kGj67xQaWy8wrbk97Rw1EySitoOTHsTHXPEs3uyx2IStPKGrbE7LTnZXbA=="; 2588 - }; 2589 - }; 2590 - "jsdoc-parse-6.2.0" = { 2591 - name = "jsdoc-parse"; 2592 - packageName = "jsdoc-parse"; 2593 - version = "6.2.0"; 2594 - src = fetchurl { 2595 - url = "https://registry.npmjs.org/jsdoc-parse/-/jsdoc-parse-6.2.0.tgz"; 2596 - sha512 = "Afu1fQBEb7QHt6QWX/6eUWvYHJofB90Fjx7FuJYF7mnG9z5BkAIpms1wsnvYLytfmqpEENHs/fax9p8gvMj7dw=="; 2597 - }; 2598 - }; 2599 - "jsdoc-to-markdown-7.1.1" = { 2600 - name = "jsdoc-to-markdown"; 2601 - packageName = "jsdoc-to-markdown"; 2602 - version = "7.1.1"; 2603 - src = fetchurl { 2604 - url = "https://registry.npmjs.org/jsdoc-to-markdown/-/jsdoc-to-markdown-7.1.1.tgz"; 2605 - sha512 = "CI86d63xAVNO+ENumWwmJ034lYe5iGU5GwjtTA11EuphP9tpnoi4hrKgR/J8uME0D+o4KUpVfwX1fjZhc8dEtg=="; 2606 - }; 2607 - }; 2608 - "jsdoc-type-pratt-parser-1.1.1" = { 2609 - name = "jsdoc-type-pratt-parser"; 2610 - packageName = "jsdoc-type-pratt-parser"; 2611 - version = "1.1.1"; 2612 - src = fetchurl { 2613 - url = "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-1.1.1.tgz"; 2614 - sha512 = "uelRmpghNwPBuZScwgBG/OzodaFk5RbO5xaivBdsAY70icWfShwZ7PCMO0x1zSkOa8T1FzHThmrdoyg/0AwV5g=="; 2615 - }; 2616 - }; 2617 - "jsdoc-type-pratt-parser-1.2.0" = { 2618 - name = "jsdoc-type-pratt-parser"; 2619 - packageName = "jsdoc-type-pratt-parser"; 2620 - version = "1.2.0"; 2621 - src = fetchurl { 2622 - url = "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-1.2.0.tgz"; 2623 - sha512 = "4STjeF14jp4bqha44nKMY1OUI6d2/g6uclHWUCZ7B4DoLzaB5bmpTkQrpqU+vSVzMD0LsKAOskcnI3I3VfIpmg=="; 2624 - }; 2625 - }; 2626 - "jsesc-2.5.2" = { 2627 - name = "jsesc"; 2628 - packageName = "jsesc"; 2629 - version = "2.5.2"; 2630 - src = fetchurl { 2631 - url = "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"; 2632 - sha512 = "OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="; 2633 - }; 2634 - }; 2635 - "json-schema-0.4.0" = { 2636 - name = "json-schema"; 2637 - packageName = "json-schema"; 2638 - version = "0.4.0"; 2639 - src = fetchurl { 2640 - url = "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz"; 2641 - sha512 = "es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA=="; 2642 - }; 2643 - }; 2644 - "json-schema-traverse-0.4.1" = { 2645 - name = "json-schema-traverse"; 2646 - packageName = "json-schema-traverse"; 2647 - version = "0.4.1"; 2648 - src = fetchurl { 2649 - url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; 2650 - sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; 2651 - }; 2652 - }; 2653 - "json-schema-traverse-1.0.0" = { 2654 - name = "json-schema-traverse"; 2655 - packageName = "json-schema-traverse"; 2656 - version = "1.0.0"; 2657 - src = fetchurl { 2658 - url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"; 2659 - sha512 = "NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="; 2660 - }; 2661 - }; 2662 - "json-stable-stringify-without-jsonify-1.0.1" = { 2663 - name = "json-stable-stringify-without-jsonify"; 2664 - packageName = "json-stable-stringify-without-jsonify"; 2665 - version = "1.0.1"; 2666 - src = fetchurl { 2667 - url = "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"; 2668 - sha512 = "Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="; 2669 - }; 2670 - }; 2671 - "json-stringify-safe-5.0.1" = { 2672 - name = "json-stringify-safe"; 2673 - packageName = "json-stringify-safe"; 2674 - version = "5.0.1"; 2675 - src = fetchurl { 2676 - url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; 2677 - sha512 = "ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA=="; 2678 - }; 2679 - }; 2680 - "json5-2.2.1" = { 2681 - name = "json5"; 2682 - packageName = "json5"; 2683 - version = "2.2.1"; 2684 - src = fetchurl { 2685 - url = "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz"; 2686 - sha512 = "1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA=="; 2687 - }; 2688 - }; 2689 - "jsonparse-1.3.1" = { 2690 - name = "jsonparse"; 2691 - packageName = "jsonparse"; 2692 - version = "1.3.1"; 2693 - src = fetchurl { 2694 - url = "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz"; 2695 - sha512 = "POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg=="; 2696 - }; 2697 - }; 2698 - "jsprim-2.0.2" = { 2699 - name = "jsprim"; 2700 - packageName = "jsprim"; 2701 - version = "2.0.2"; 2702 - src = fetchurl { 2703 - url = "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz"; 2704 - sha512 = "gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ=="; 2705 - }; 2706 - }; 2707 - "junit-report-builder-2.1.0" = { 2708 - name = "junit-report-builder"; 2709 - packageName = "junit-report-builder"; 2710 - version = "2.1.0"; 2711 - src = fetchurl { 2712 - url = "https://registry.npmjs.org/junit-report-builder/-/junit-report-builder-2.1.0.tgz"; 2713 - sha512 = "Ioj5I4w18ZcHFaaisqCKdh1z+ipzN7sA2JB+h+WOlGcOMWm0FFN1dfxkgc2I4EXfhSP/mOfM3W43uFzEdz4sTw=="; 2714 - }; 2715 - }; 2716 - "just-extend-4.2.1" = { 2717 - name = "just-extend"; 2718 - packageName = "just-extend"; 2719 - version = "4.2.1"; 2720 - src = fetchurl { 2721 - url = "https://registry.npmjs.org/just-extend/-/just-extend-4.2.1.tgz"; 2722 - sha512 = "g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg=="; 2723 - }; 2724 - }; 2725 - "klaw-3.0.0" = { 2726 - name = "klaw"; 2727 - packageName = "klaw"; 2728 - version = "3.0.0"; 2729 - src = fetchurl { 2730 - url = "https://registry.npmjs.org/klaw/-/klaw-3.0.0.tgz"; 2731 - sha512 = "0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g=="; 2732 - }; 2733 - }; 2734 - "levn-0.4.1" = { 2735 - name = "levn"; 2736 - packageName = "levn"; 2737 - version = "0.4.1"; 2738 - src = fetchurl { 2739 - url = "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz"; 2740 - sha512 = "+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="; 2741 - }; 2742 - }; 2743 - "linkify-it-3.0.3" = { 2744 - name = "linkify-it"; 2745 - packageName = "linkify-it"; 2746 - version = "3.0.3"; 2747 - src = fetchurl { 2748 - url = "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz"; 2749 - sha512 = "ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ=="; 2750 - }; 2751 - }; 2752 - "liquid-json-0.3.1" = { 2753 - name = "liquid-json"; 2754 - packageName = "liquid-json"; 2755 - version = "0.3.1"; 2756 - src = fetchurl { 2757 - url = "https://registry.npmjs.org/liquid-json/-/liquid-json-0.3.1.tgz"; 2758 - sha512 = "wUayTU8MS827Dam6MxgD72Ui+KOSF+u/eIqpatOtjnvgJ0+mnDq33uC2M7J0tPK+upe/DpUAuK4JUU89iBoNKQ=="; 2759 - }; 2760 - }; 2761 - "locate-path-5.0.0" = { 2762 - name = "locate-path"; 2763 - packageName = "locate-path"; 2764 - version = "5.0.0"; 2765 - src = fetchurl { 2766 - url = "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz"; 2767 - sha512 = "t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="; 2768 - }; 2769 - }; 2770 - "locate-path-6.0.0" = { 2771 - name = "locate-path"; 2772 - packageName = "locate-path"; 2773 - version = "6.0.0"; 2774 - src = fetchurl { 2775 - url = "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz"; 2776 - sha512 = "iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="; 2777 - }; 2778 - }; 2779 - "lodash-2.4.2" = { 2780 - name = "lodash"; 2781 - packageName = "lodash"; 2782 - version = "2.4.2"; 2783 - src = fetchurl { 2784 - url = "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz"; 2785 - sha512 = "Kak1hi6/hYHGVPmdyiZijoQyz5x2iGVzs6w9GYB/HiXEtylY7tIoYEROMjvM1d9nXJqPOrG2MNPMn01bJ+S0Rw=="; 2786 - }; 2787 - }; 2788 - "lodash-4.17.21" = { 2789 - name = "lodash"; 2790 - packageName = "lodash"; 2791 - version = "4.17.21"; 2792 - src = fetchurl { 2793 - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"; 2794 - sha512 = "v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="; 2795 - }; 2796 - }; 2797 - "lodash.camelcase-4.3.0" = { 2798 - name = "lodash.camelcase"; 2799 - packageName = "lodash.camelcase"; 2800 - version = "4.3.0"; 2801 - src = fetchurl { 2802 - url = "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz"; 2803 - sha512 = "TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA=="; 2804 - }; 2805 - }; 2806 - "lodash.flattendeep-4.4.0" = { 2807 - name = "lodash.flattendeep"; 2808 - packageName = "lodash.flattendeep"; 2809 - version = "4.4.0"; 2810 - src = fetchurl { 2811 - url = "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz"; 2812 - sha512 = "uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ=="; 2813 - }; 2814 - }; 2815 - "lodash.get-4.4.2" = { 2816 - name = "lodash.get"; 2817 - packageName = "lodash.get"; 2818 - version = "4.4.2"; 2819 - src = fetchurl { 2820 - url = "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz"; 2821 - sha512 = "z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ=="; 2822 - }; 2823 - }; 2824 - "lodash.merge-4.6.2" = { 2825 - name = "lodash.merge"; 2826 - packageName = "lodash.merge"; 2827 - version = "4.6.2"; 2828 - src = fetchurl { 2829 - url = "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz"; 2830 - sha512 = "0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="; 2831 - }; 2832 - }; 2833 - "lodash.omit-4.5.0" = { 2834 - name = "lodash.omit"; 2835 - packageName = "lodash.omit"; 2836 - version = "4.5.0"; 2837 - src = fetchurl { 2838 - url = "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz"; 2839 - sha512 = "XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg=="; 2840 - }; 2841 - }; 2842 - "lodash.padend-4.6.1" = { 2843 - name = "lodash.padend"; 2844 - packageName = "lodash.padend"; 2845 - version = "4.6.1"; 2846 - src = fetchurl { 2847 - url = "https://registry.npmjs.org/lodash.padend/-/lodash.padend-4.6.1.tgz"; 2848 - sha512 = "sOQs2aqGpbl27tmCS1QNZA09Uqp01ZzWfDUoD+xzTii0E7dSQfRKcRetFwa+uXaxaqL+TKm7CgD2JdKP7aZBSw=="; 2849 - }; 2850 - }; 2851 - "lodash.pick-4.4.0" = { 2852 - name = "lodash.pick"; 2853 - packageName = "lodash.pick"; 2854 - version = "4.4.0"; 2855 - src = fetchurl { 2856 - url = "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz"; 2857 - sha512 = "hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q=="; 2858 - }; 2859 - }; 2860 - "lodash.truncate-4.4.2" = { 2861 - name = "lodash.truncate"; 2862 - packageName = "lodash.truncate"; 2863 - version = "4.4.2"; 2864 - src = fetchurl { 2865 - url = "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz"; 2866 - sha512 = "jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw=="; 2867 - }; 2868 - }; 2869 - "log-symbols-4.1.0" = { 2870 - name = "log-symbols"; 2871 - packageName = "log-symbols"; 2872 - version = "4.1.0"; 2873 - src = fetchurl { 2874 - url = "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz"; 2875 - sha512 = "8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg=="; 2876 - }; 2877 - }; 2878 - "loupe-2.3.6" = { 2879 - name = "loupe"; 2880 - packageName = "loupe"; 2881 - version = "2.3.6"; 2882 - src = fetchurl { 2883 - url = "https://registry.npmjs.org/loupe/-/loupe-2.3.6.tgz"; 2884 - sha512 = "RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA=="; 2885 - }; 2886 - }; 2887 - "lru-cache-4.1.5" = { 2888 - name = "lru-cache"; 2889 - packageName = "lru-cache"; 2890 - version = "4.1.5"; 2891 - src = fetchurl { 2892 - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz"; 2893 - sha512 = "sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g=="; 2894 - }; 2895 - }; 2896 - "lru-cache-6.0.0" = { 2897 - name = "lru-cache"; 2898 - packageName = "lru-cache"; 2899 - version = "6.0.0"; 2900 - src = fetchurl { 2901 - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"; 2902 - sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 2903 - }; 2904 - }; 2905 - "make-dir-1.3.0" = { 2906 - name = "make-dir"; 2907 - packageName = "make-dir"; 2908 - version = "1.3.0"; 2909 - src = fetchurl { 2910 - url = "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz"; 2911 - sha512 = "2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ=="; 2912 - }; 2913 - }; 2914 - "make-dir-3.1.0" = { 2915 - name = "make-dir"; 2916 - packageName = "make-dir"; 2917 - version = "3.1.0"; 2918 - src = fetchurl { 2919 - url = "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz"; 2920 - sha512 = "g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="; 2921 - }; 2922 - }; 2923 - "markdown-it-12.3.2" = { 2924 - name = "markdown-it"; 2925 - packageName = "markdown-it"; 2926 - version = "12.3.2"; 2927 - src = fetchurl { 2928 - url = "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz"; 2929 - sha512 = "TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg=="; 2930 - }; 2931 - }; 2932 - "markdown-it-anchor-8.6.5" = { 2933 - name = "markdown-it-anchor"; 2934 - packageName = "markdown-it-anchor"; 2935 - version = "8.6.5"; 2936 - src = fetchurl { 2937 - url = "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-8.6.5.tgz"; 2938 - sha512 = "PI1qEHHkTNWT+X6Ip9w+paonfIQ+QZP9sCeMYi47oqhH+EsW8CrJ8J7CzV19QVOj6il8ATGbK2nTECj22ZHGvQ=="; 2939 - }; 2940 - }; 2941 - "marked-4.2.4" = { 2942 - name = "marked"; 2943 - packageName = "marked"; 2944 - version = "4.2.4"; 2945 - src = fetchurl { 2946 - url = "https://registry.npmjs.org/marked/-/marked-4.2.4.tgz"; 2947 - sha512 = "Wcc9ikX7Q5E4BYDPvh1C6QNSxrjC9tBgz+A/vAhp59KXUgachw++uMvMKiSW8oA85nopmPZcEvBoex/YLMsiyA=="; 2948 - }; 2949 - }; 2950 - "mdurl-1.0.1" = { 2951 - name = "mdurl"; 2952 - packageName = "mdurl"; 2953 - version = "1.0.1"; 2954 - src = fetchurl { 2955 - url = "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz"; 2956 - sha512 = "/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g=="; 2957 - }; 2958 - }; 2959 - "mime-db-1.51.0" = { 2960 - name = "mime-db"; 2961 - packageName = "mime-db"; 2962 - version = "1.51.0"; 2963 - src = fetchurl { 2964 - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz"; 2965 - sha512 = "5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g=="; 2966 - }; 2967 - }; 2968 - "mime-format-2.0.1" = { 2969 - name = "mime-format"; 2970 - packageName = "mime-format"; 2971 - version = "2.0.1"; 2972 - src = fetchurl { 2973 - url = "https://registry.npmjs.org/mime-format/-/mime-format-2.0.1.tgz"; 2974 - sha512 = "XxU3ngPbEnrYnNbIX+lYSaYg0M01v6p2ntd2YaFksTu0vayaw5OJvbdRyWs07EYRlLED5qadUZ+xo+XhOvFhwg=="; 2975 - }; 2976 - }; 2977 - "mime-types-2.1.34" = { 2978 - name = "mime-types"; 2979 - packageName = "mime-types"; 2980 - version = "2.1.34"; 2981 - src = fetchurl { 2982 - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz"; 2983 - sha512 = "6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A=="; 2984 - }; 2985 - }; 2986 - "minimatch-3.1.2" = { 2987 - name = "minimatch"; 2988 - packageName = "minimatch"; 2989 - version = "3.1.2"; 2990 - src = fetchurl { 2991 - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"; 2992 - sha512 = "J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="; 2993 - }; 2994 - }; 2995 - "minimatch-4.2.1" = { 2996 - name = "minimatch"; 2997 - packageName = "minimatch"; 2998 - version = "4.2.1"; 2999 - src = fetchurl { 3000 - url = "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz"; 3001 - sha512 = "9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g=="; 3002 - }; 3003 - }; 3004 - "minimist-1.2.7" = { 3005 - name = "minimist"; 3006 - packageName = "minimist"; 3007 - version = "1.2.7"; 3008 - src = fetchurl { 3009 - url = "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz"; 3010 - sha512 = "bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g=="; 3011 - }; 3012 - }; 3013 - "mkdirp-0.5.6" = { 3014 - name = "mkdirp"; 3015 - packageName = "mkdirp"; 3016 - version = "0.5.6"; 3017 - src = fetchurl { 3018 - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz"; 3019 - sha512 = "FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw=="; 3020 - }; 3021 - }; 3022 - "mkdirp-1.0.4" = { 3023 - name = "mkdirp"; 3024 - packageName = "mkdirp"; 3025 - version = "1.0.4"; 3026 - src = fetchurl { 3027 - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz"; 3028 - sha512 = "vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="; 3029 - }; 3030 - }; 3031 - "mkdirp2-1.0.5" = { 3032 - name = "mkdirp2"; 3033 - packageName = "mkdirp2"; 3034 - version = "1.0.5"; 3035 - src = fetchurl { 3036 - url = "https://registry.npmjs.org/mkdirp2/-/mkdirp2-1.0.5.tgz"; 3037 - sha512 = "xOE9xbICroUDmG1ye2h4bZ8WBie9EGmACaco8K8cx6RlkJJrxGIqjGqztAI+NMhexXBcdGbSEzI6N3EJPevxZw=="; 3038 - }; 3039 - }; 3040 - "mocha-9.2.2" = { 3041 - name = "mocha"; 3042 - packageName = "mocha"; 3043 - version = "9.2.2"; 3044 - src = fetchurl { 3045 - url = "https://registry.npmjs.org/mocha/-/mocha-9.2.2.tgz"; 3046 - sha512 = "L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g=="; 3047 - }; 3048 - }; 3049 - "ms-2.1.2" = { 3050 - name = "ms"; 3051 - packageName = "ms"; 3052 - version = "2.1.2"; 3053 - src = fetchurl { 3054 - url = "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"; 3055 - sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; 3056 - }; 3057 - }; 3058 - "ms-2.1.3" = { 3059 - name = "ms"; 3060 - packageName = "ms"; 3061 - version = "2.1.3"; 3062 - src = fetchurl { 3063 - url = "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"; 3064 - sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; 3065 - }; 3066 - }; 3067 - "nanoid-3.3.1" = { 3068 - name = "nanoid"; 3069 - packageName = "nanoid"; 3070 - version = "3.3.1"; 3071 - src = fetchurl { 3072 - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz"; 3073 - sha512 = "n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw=="; 3074 - }; 3075 - }; 3076 - "natural-compare-1.4.0" = { 3077 - name = "natural-compare"; 3078 - packageName = "natural-compare"; 3079 - version = "1.4.0"; 3080 - src = fetchurl { 3081 - url = "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"; 3082 - sha512 = "OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="; 3083 - }; 3084 - }; 3085 - "neo-async-2.6.2" = { 3086 - name = "neo-async"; 3087 - packageName = "neo-async"; 3088 - version = "2.6.2"; 3089 - src = fetchurl { 3090 - url = "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz"; 3091 - sha512 = "Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw=="; 3092 - }; 3093 - }; 3094 - "nise-5.1.3" = { 3095 - name = "nise"; 3096 - packageName = "nise"; 3097 - version = "5.1.3"; 3098 - src = fetchurl { 3099 - url = "https://registry.npmjs.org/nise/-/nise-5.1.3.tgz"; 3100 - sha512 = "U597iWTTBBYIV72986jyU382/MMZ70ApWcRmkoF1AZ75bpqOtI3Gugv/6+0jLgoDOabmcSwYBkSSAWIp1eA5cg=="; 3101 - }; 3102 - }; 3103 - "nock-13.2.9" = { 3104 - name = "nock"; 3105 - packageName = "nock"; 3106 - version = "13.2.9"; 3107 - src = fetchurl { 3108 - url = "https://registry.npmjs.org/nock/-/nock-13.2.9.tgz"; 3109 - sha512 = "1+XfJNYF1cjGB+TKMWi29eZ0b82QOvQs2YoLNzbpWGqFMtRQHTa57osqdGj4FrFPgkO4D4AZinzUJR9VvW3QUA=="; 3110 - }; 3111 - }; 3112 - "node-oauth1-1.3.0" = { 3113 - name = "node-oauth1"; 3114 - packageName = "node-oauth1"; 3115 - version = "1.3.0"; 3116 - src = fetchurl { 3117 - url = "https://registry.npmjs.org/node-oauth1/-/node-oauth1-1.3.0.tgz"; 3118 - sha512 = "0yggixNfrA1KcBwvh/Hy2xAS1Wfs9dcg6TdFf2zN7gilcAigMdrtZ4ybrBSXBgLvGDw9V1p2MRnGBMq7XjTWLg=="; 3119 - }; 3120 - }; 3121 - "node-preload-0.2.1" = { 3122 - name = "node-preload"; 3123 - packageName = "node-preload"; 3124 - version = "0.2.1"; 3125 - src = fetchurl { 3126 - url = "https://registry.npmjs.org/node-preload/-/node-preload-0.2.1.tgz"; 3127 - sha512 = "RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ=="; 3128 - }; 3129 - }; 3130 - "node-releases-2.0.6" = { 3131 - name = "node-releases"; 3132 - packageName = "node-releases"; 3133 - version = "2.0.6"; 3134 - src = fetchurl { 3135 - url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz"; 3136 - sha512 = "PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg=="; 3137 - }; 3138 - }; 3139 - "normalize-path-3.0.0" = { 3140 - name = "normalize-path"; 3141 - packageName = "normalize-path"; 3142 - version = "3.0.0"; 3143 - src = fetchurl { 3144 - url = "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"; 3145 - sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="; 3146 - }; 3147 - }; 3148 - "nyc-15.1.0" = { 3149 - name = "nyc"; 3150 - packageName = "nyc"; 3151 - version = "15.1.0"; 3152 - src = fetchurl { 3153 - url = "https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz"; 3154 - sha512 = "jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A=="; 3155 - }; 3156 - }; 3157 - "oauth-sign-0.9.0" = { 3158 - name = "oauth-sign"; 3159 - packageName = "oauth-sign"; 3160 - version = "0.9.0"; 3161 - src = fetchurl { 3162 - url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz"; 3163 - sha512 = "fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="; 3164 - }; 3165 - }; 3166 - "object-get-2.1.1" = { 3167 - name = "object-get"; 3168 - packageName = "object-get"; 3169 - version = "2.1.1"; 3170 - src = fetchurl { 3171 - url = "https://registry.npmjs.org/object-get/-/object-get-2.1.1.tgz"; 3172 - sha512 = "7n4IpLMzGGcLEMiQKsNR7vCe+N5E9LORFrtNUVy4sO3dj9a3HedZCxEL2T7QuLhcHN1NBuBsMOKaOsAYI9IIvg=="; 3173 - }; 3174 - }; 3175 - "object-hash-1.3.1" = { 3176 - name = "object-hash"; 3177 - packageName = "object-hash"; 3178 - version = "1.3.1"; 3179 - src = fetchurl { 3180 - url = "https://registry.npmjs.org/object-hash/-/object-hash-1.3.1.tgz"; 3181 - sha512 = "OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA=="; 3182 - }; 3183 - }; 3184 - "object-to-spawn-args-2.0.1" = { 3185 - name = "object-to-spawn-args"; 3186 - packageName = "object-to-spawn-args"; 3187 - version = "2.0.1"; 3188 - src = fetchurl { 3189 - url = "https://registry.npmjs.org/object-to-spawn-args/-/object-to-spawn-args-2.0.1.tgz"; 3190 - sha512 = "6FuKFQ39cOID+BMZ3QaphcC8Y4cw6LXBLyIgPU+OhIYwviJamPAn+4mITapnSBQrejB+NNp+FMskhD8Cq+Ys3w=="; 3191 - }; 3192 - }; 3193 - "once-1.4.0" = { 3194 - name = "once"; 3195 - packageName = "once"; 3196 - version = "1.4.0"; 3197 - src = fetchurl { 3198 - url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; 3199 - sha512 = "lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="; 3200 - }; 3201 - }; 3202 - "optionator-0.9.1" = { 3203 - name = "optionator"; 3204 - packageName = "optionator"; 3205 - version = "0.9.1"; 3206 - src = fetchurl { 3207 - url = "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz"; 3208 - sha512 = "74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw=="; 3209 - }; 3210 - }; 3211 - "p-limit-2.3.0" = { 3212 - name = "p-limit"; 3213 - packageName = "p-limit"; 3214 - version = "2.3.0"; 3215 - src = fetchurl { 3216 - url = "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"; 3217 - sha512 = "//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="; 3218 - }; 3219 - }; 3220 - "p-limit-3.1.0" = { 3221 - name = "p-limit"; 3222 - packageName = "p-limit"; 3223 - version = "3.1.0"; 3224 - src = fetchurl { 3225 - url = "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz"; 3226 - sha512 = "TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="; 3227 - }; 3228 - }; 3229 - "p-locate-4.1.0" = { 3230 - name = "p-locate"; 3231 - packageName = "p-locate"; 3232 - version = "4.1.0"; 3233 - src = fetchurl { 3234 - url = "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz"; 3235 - sha512 = "R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A=="; 3236 - }; 3237 - }; 3238 - "p-locate-5.0.0" = { 3239 - name = "p-locate"; 3240 - packageName = "p-locate"; 3241 - version = "5.0.0"; 3242 - src = fetchurl { 3243 - url = "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz"; 3244 - sha512 = "LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="; 3245 - }; 3246 - }; 3247 - "p-map-3.0.0" = { 3248 - name = "p-map"; 3249 - packageName = "p-map"; 3250 - version = "3.0.0"; 3251 - src = fetchurl { 3252 - url = "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz"; 3253 - sha512 = "d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ=="; 3254 - }; 3255 - }; 3256 - "p-try-2.2.0" = { 3257 - name = "p-try"; 3258 - packageName = "p-try"; 3259 - version = "2.2.0"; 3260 - src = fetchurl { 3261 - url = "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"; 3262 - sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="; 3263 - }; 3264 - }; 3265 - "package-hash-4.0.0" = { 3266 - name = "package-hash"; 3267 - packageName = "package-hash"; 3268 - version = "4.0.0"; 3269 - src = fetchurl { 3270 - url = "https://registry.npmjs.org/package-hash/-/package-hash-4.0.0.tgz"; 3271 - sha512 = "whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ=="; 3272 - }; 3273 - }; 3274 - "packity-0.3.4" = { 3275 - name = "packity"; 3276 - packageName = "packity"; 3277 - version = "0.3.4"; 3278 - src = fetchurl { 3279 - url = "https://registry.npmjs.org/packity/-/packity-0.3.4.tgz"; 3280 - sha512 = "DMl5Ny5yGtR2ZzsL8vDUSIdNL0L2kzOYV6y7T2l7ooMuIVCFqdBt8343AQhEeV7JBmvQsxvu8sXUmx1aFoOZQw=="; 3281 - }; 3282 - }; 3283 - "parent-module-1.0.1" = { 3284 - name = "parent-module"; 3285 - packageName = "parent-module"; 3286 - version = "1.0.1"; 3287 - src = fetchurl { 3288 - url = "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz"; 3289 - sha512 = "GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="; 3290 - }; 3291 - }; 3292 - "parse-gitignore-1.0.1" = { 3293 - name = "parse-gitignore"; 3294 - packageName = "parse-gitignore"; 3295 - version = "1.0.1"; 3296 - src = fetchurl { 3297 - url = "https://registry.npmjs.org/parse-gitignore/-/parse-gitignore-1.0.1.tgz"; 3298 - sha512 = "UGyowyjtx26n65kdAMWhm6/3uy5uSrpcuH7tt+QEVudiBoVS+eqHxD5kbi9oWVRwj7sCzXqwuM+rUGw7earl6A=="; 3299 - }; 3300 - }; 3301 - "parse-ms-2.1.0" = { 3302 - name = "parse-ms"; 3303 - packageName = "parse-ms"; 3304 - version = "2.1.0"; 3305 - src = fetchurl { 3306 - url = "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz"; 3307 - sha512 = "kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA=="; 3308 - }; 3309 - }; 3310 - "path-exists-4.0.0" = { 3311 - name = "path-exists"; 3312 - packageName = "path-exists"; 3313 - version = "4.0.0"; 3314 - src = fetchurl { 3315 - url = "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"; 3316 - sha512 = "ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="; 3317 - }; 3318 - }; 3319 - "path-is-absolute-1.0.1" = { 3320 - name = "path-is-absolute"; 3321 - packageName = "path-is-absolute"; 3322 - version = "1.0.1"; 3323 - src = fetchurl { 3324 - url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 3325 - sha512 = "AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="; 3326 - }; 3327 - }; 3328 - "path-key-3.1.1" = { 3329 - name = "path-key"; 3330 - packageName = "path-key"; 3331 - version = "3.1.1"; 3332 - src = fetchurl { 3333 - url = "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz"; 3334 - sha512 = "ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="; 3335 - }; 3336 - }; 3337 - "path-parse-1.0.7" = { 3338 - name = "path-parse"; 3339 - packageName = "path-parse"; 3340 - version = "1.0.7"; 3341 - src = fetchurl { 3342 - url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"; 3343 - sha512 = "LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="; 3344 - }; 3345 - }; 3346 - "path-to-regexp-1.8.0" = { 3347 - name = "path-to-regexp"; 3348 - packageName = "path-to-regexp"; 3349 - version = "1.8.0"; 3350 - src = fetchurl { 3351 - url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz"; 3352 - sha512 = "n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA=="; 3353 - }; 3354 - }; 3355 - "pathval-1.1.1" = { 3356 - name = "pathval"; 3357 - packageName = "pathval"; 3358 - version = "1.1.1"; 3359 - src = fetchurl { 3360 - url = "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz"; 3361 - sha512 = "Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ=="; 3362 - }; 3363 - }; 3364 - "performance-now-2.1.0" = { 3365 - name = "performance-now"; 3366 - packageName = "performance-now"; 3367 - version = "2.1.0"; 3368 - src = fetchurl { 3369 - url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"; 3370 - sha512 = "7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow=="; 3371 - }; 3372 - }; 3373 - "picocolors-1.0.0" = { 3374 - name = "picocolors"; 3375 - packageName = "picocolors"; 3376 - version = "1.0.0"; 3377 - src = fetchurl { 3378 - url = "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz"; 3379 - sha512 = "1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="; 3380 - }; 3381 - }; 3382 - "picomatch-2.3.1" = { 3383 - name = "picomatch"; 3384 - packageName = "picomatch"; 3385 - version = "2.3.1"; 3386 - src = fetchurl { 3387 - url = "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"; 3388 - sha512 = "JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="; 3389 - }; 3390 - }; 3391 - "pify-3.0.0" = { 3392 - name = "pify"; 3393 - packageName = "pify"; 3394 - version = "3.0.0"; 3395 - src = fetchurl { 3396 - url = "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz"; 3397 - sha512 = "C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg=="; 3398 - }; 3399 - }; 3400 - "pkg-dir-4.2.0" = { 3401 - name = "pkg-dir"; 3402 - packageName = "pkg-dir"; 3403 - version = "4.2.0"; 3404 - src = fetchurl { 3405 - url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz"; 3406 - sha512 = "HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ=="; 3407 - }; 3408 - }; 3409 - "postman-collection-4.1.1" = { 3410 - name = "postman-collection"; 3411 - packageName = "postman-collection"; 3412 - version = "4.1.1"; 3413 - src = fetchurl { 3414 - url = "https://registry.npmjs.org/postman-collection/-/postman-collection-4.1.1.tgz"; 3415 - sha512 = "ODpJtlf8r99DMcTU7gFmi/yvQYckFzcuE6zL/fWnyrFT34ugdCBFlX+DN7M+AnP6lmR822fv5s60H4DnL4+fAg=="; 3416 - }; 3417 - }; 3418 - "postman-collection-transformer-4.1.6" = { 3419 - name = "postman-collection-transformer"; 3420 - packageName = "postman-collection-transformer"; 3421 - version = "4.1.6"; 3422 - src = fetchurl { 3423 - url = "https://registry.npmjs.org/postman-collection-transformer/-/postman-collection-transformer-4.1.6.tgz"; 3424 - sha512 = "xvdQb6sZoWcG9xZXUPSuxocjcd6WCZlINlGGiuHdSfxhgiwQhj9qhF0JRFbagZ8xB0+pYUairD5MiCENc6DEVA=="; 3425 - }; 3426 - }; 3427 - "postman-jsdoc-theme-0.0.3" = { 3428 - name = "postman-jsdoc-theme"; 3429 - packageName = "postman-jsdoc-theme"; 3430 - version = "0.0.3"; 3431 - src = fetchurl { 3432 - url = "https://registry.npmjs.org/postman-jsdoc-theme/-/postman-jsdoc-theme-0.0.3.tgz"; 3433 - sha512 = "UBiDlVw56c++OYaisumfu6jwJY26ioUuiZtOowC763BiaVt+SazQIDdUr6TeBkaDG2HrvTfgypY43khweERwSg=="; 3434 - }; 3435 - }; 3436 - "postman-request-2.88.1-postman.31" = { 3437 - name = "postman-request"; 3438 - packageName = "postman-request"; 3439 - version = "2.88.1-postman.31"; 3440 - src = fetchurl { 3441 - url = "https://registry.npmjs.org/postman-request/-/postman-request-2.88.1-postman.31.tgz"; 3442 - sha512 = "OJbYqP7ItxQ84yHyuNpDywCZB0HYbpHJisMQ9lb1cSL3N5H3Td6a2+3l/a74UMd3u82BiGC5yQyYmdOIETP/nQ=="; 3443 - }; 3444 - }; 3445 - "postman-runtime-7.29.0" = { 3446 - name = "postman-runtime"; 3447 - packageName = "postman-runtime"; 3448 - version = "7.29.0"; 3449 - src = fetchurl { 3450 - url = "https://registry.npmjs.org/postman-runtime/-/postman-runtime-7.29.0.tgz"; 3451 - sha512 = "eXxHREE/fUpohkGPRgBY1YccSGx9cyW3mtGiPyIE4zD5fYzasgBHqW6kbEND3Xrd3yf/uht/YI1H8O7J1+A1+w=="; 3452 - }; 3453 - }; 3454 - "postman-sandbox-4.0.6" = { 3455 - name = "postman-sandbox"; 3456 - packageName = "postman-sandbox"; 3457 - version = "4.0.6"; 3458 - src = fetchurl { 3459 - url = "https://registry.npmjs.org/postman-sandbox/-/postman-sandbox-4.0.6.tgz"; 3460 - sha512 = "PPRanSNEE4zy3kO7CeSBHmAfJnGdD9ecHY/Mjh26CQuZZarGkNO8c0U/n+xX3+5M1BRNc82UYq6YCtdsSDqcng=="; 3461 - }; 3462 - }; 3463 - "postman-url-encoder-3.0.5" = { 3464 - name = "postman-url-encoder"; 3465 - packageName = "postman-url-encoder"; 3466 - version = "3.0.5"; 3467 - src = fetchurl { 3468 - url = "https://registry.npmjs.org/postman-url-encoder/-/postman-url-encoder-3.0.5.tgz"; 3469 - sha512 = "jOrdVvzUXBC7C+9gkIkpDJ3HIxOHTIqjpQ4C1EMt1ZGeMvSEpbFCKq23DEfgsj46vMnDgyQf+1ZLp2Wm+bKSsA=="; 3470 - }; 3471 - }; 3472 - "prelude-ls-1.2.1" = { 3473 - name = "prelude-ls"; 3474 - packageName = "prelude-ls"; 3475 - version = "1.2.1"; 3476 - src = fetchurl { 3477 - url = "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz"; 3478 - sha512 = "vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="; 3479 - }; 3480 - }; 3481 - "pretty-ms-7.0.1" = { 3482 - name = "pretty-ms"; 3483 - packageName = "pretty-ms"; 3484 - version = "7.0.1"; 3485 - src = fetchurl { 3486 - url = "https://registry.npmjs.org/pretty-ms/-/pretty-ms-7.0.1.tgz"; 3487 - sha512 = "973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q=="; 3488 - }; 3489 - }; 3490 - "process-nextick-args-2.0.1" = { 3491 - name = "process-nextick-args"; 3492 - packageName = "process-nextick-args"; 3493 - version = "2.0.1"; 3494 - src = fetchurl { 3495 - url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; 3496 - sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; 3497 - }; 3498 - }; 3499 - "process-on-spawn-1.0.0" = { 3500 - name = "process-on-spawn"; 3501 - packageName = "process-on-spawn"; 3502 - version = "1.0.0"; 3503 - src = fetchurl { 3504 - url = "https://registry.npmjs.org/process-on-spawn/-/process-on-spawn-1.0.0.tgz"; 3505 - sha512 = "1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg=="; 3506 - }; 3507 - }; 3508 - "progress-2.0.3" = { 3509 - name = "progress"; 3510 - packageName = "progress"; 3511 - version = "2.0.3"; 3512 - src = fetchurl { 3513 - url = "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz"; 3514 - sha512 = "7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="; 3515 - }; 3516 - }; 3517 - "propagate-2.0.1" = { 3518 - name = "propagate"; 3519 - packageName = "propagate"; 3520 - version = "2.0.1"; 3521 - src = fetchurl { 3522 - url = "https://registry.npmjs.org/propagate/-/propagate-2.0.1.tgz"; 3523 - sha512 = "vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag=="; 3524 - }; 3525 - }; 3526 - "pseudomap-1.0.2" = { 3527 - name = "pseudomap"; 3528 - packageName = "pseudomap"; 3529 - version = "1.0.2"; 3530 - src = fetchurl { 3531 - url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"; 3532 - sha512 = "b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ=="; 3533 - }; 3534 - }; 3535 - "psl-1.9.0" = { 3536 - name = "psl"; 3537 - packageName = "psl"; 3538 - version = "1.9.0"; 3539 - src = fetchurl { 3540 - url = "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz"; 3541 - sha512 = "E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag=="; 3542 - }; 3543 - }; 3544 - "pump-1.0.3" = { 3545 - name = "pump"; 3546 - packageName = "pump"; 3547 - version = "1.0.3"; 3548 - src = fetchurl { 3549 - url = "https://registry.npmjs.org/pump/-/pump-1.0.3.tgz"; 3550 - sha512 = "8k0JupWme55+9tCVE+FS5ULT3K6AbgqrGa58lTT49RpyfwwcGedHqaC5LlQNdEAumn/wFsu6aPwkuPMioy8kqw=="; 3551 - }; 3552 - }; 3553 - "punycode-2.1.1" = { 3554 - name = "punycode"; 3555 - packageName = "punycode"; 3556 - version = "2.1.1"; 3557 - src = fetchurl { 3558 - url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"; 3559 - sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; 3560 - }; 3561 - }; 3562 - "q-1.0.1" = { 3563 - name = "q"; 3564 - packageName = "q"; 3565 - version = "1.0.1"; 3566 - src = fetchurl { 3567 - url = "https://registry.npmjs.org/q/-/q-1.0.1.tgz"; 3568 - sha512 = "18MnBaCeBX9sLRUdtxz/6onlb7wLzFxCylklyO8n27y5JxJYaGLPu4ccyc5zih58SpEzY8QmfwaWqguqXU6Y+A=="; 3569 - }; 3570 - }; 3571 - "qs-6.5.3" = { 3572 - name = "qs"; 3573 - packageName = "qs"; 3574 - version = "6.5.3"; 3575 - src = fetchurl { 3576 - url = "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz"; 3577 - sha512 = "qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA=="; 3578 - }; 3579 - }; 3580 - "rambda-7.4.0" = { 3581 - name = "rambda"; 3582 - packageName = "rambda"; 3583 - version = "7.4.0"; 3584 - src = fetchurl { 3585 - url = "https://registry.npmjs.org/rambda/-/rambda-7.4.0.tgz"; 3586 - sha512 = "A9hihu7dUTLOUCM+I8E61V4kRXnN4DwYeK0DwCBydC1MqNI1PidyAtbtpsJlBBzK4icSctEcCQ1bGcLpBuETUQ=="; 3587 - }; 3588 - }; 3589 - "randombytes-2.1.0" = { 3590 - name = "randombytes"; 3591 - packageName = "randombytes"; 3592 - version = "2.1.0"; 3593 - src = fetchurl { 3594 - url = "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz"; 3595 - sha512 = "vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ=="; 3596 - }; 3597 - }; 3598 - "readable-stream-1.0.34" = { 3599 - name = "readable-stream"; 3600 - packageName = "readable-stream"; 3601 - version = "1.0.34"; 3602 - src = fetchurl { 3603 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz"; 3604 - sha512 = "ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg=="; 3605 - }; 3606 - }; 3607 - "readable-stream-2.3.7" = { 3608 - name = "readable-stream"; 3609 - packageName = "readable-stream"; 3610 - version = "2.3.7"; 3611 - src = fetchurl { 3612 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz"; 3613 - sha512 = "Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw=="; 3614 - }; 3615 - }; 3616 - "readdir-0.0.13" = { 3617 - name = "readdir"; 3618 - packageName = "readdir"; 3619 - version = "0.0.13"; 3620 - src = fetchurl { 3621 - url = "https://registry.npmjs.org/readdir/-/readdir-0.0.13.tgz"; 3622 - sha512 = "5bdsemn0z0E9u/ONNfnKBgjH4X6Y9HhW+0i46uVIwxE9YtUOZVrLAK4rXw/wlV+Epzewxy2jXcKmECwAcIRyBQ=="; 3623 - }; 3624 - }; 3625 - "readdirp-3.6.0" = { 3626 - name = "readdirp"; 3627 - packageName = "readdirp"; 3628 - version = "3.6.0"; 3629 - src = fetchurl { 3630 - url = "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz"; 3631 - sha512 = "hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="; 3632 - }; 3633 - }; 3634 - "rechoir-0.6.2" = { 3635 - name = "rechoir"; 3636 - packageName = "rechoir"; 3637 - version = "0.6.2"; 3638 - src = fetchurl { 3639 - url = "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz"; 3640 - sha512 = "HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw=="; 3641 - }; 3642 - }; 3643 - "recursive-readdir-2.2.3" = { 3644 - name = "recursive-readdir"; 3645 - packageName = "recursive-readdir"; 3646 - version = "2.2.3"; 3647 - src = fetchurl { 3648 - url = "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz"; 3649 - sha512 = "8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA=="; 3650 - }; 3651 - }; 3652 - "reduce-extract-1.0.0" = { 3653 - name = "reduce-extract"; 3654 - packageName = "reduce-extract"; 3655 - version = "1.0.0"; 3656 - src = fetchurl { 3657 - url = "https://registry.npmjs.org/reduce-extract/-/reduce-extract-1.0.0.tgz"; 3658 - sha512 = "QF8vjWx3wnRSL5uFMyCjDeDc5EBMiryoT9tz94VvgjKfzecHAVnqmXAwQDcr7X4JmLc2cjkjFGCVzhMqDjgR9g=="; 3659 - }; 3660 - }; 3661 - "reduce-flatten-1.0.1" = { 3662 - name = "reduce-flatten"; 3663 - packageName = "reduce-flatten"; 3664 - version = "1.0.1"; 3665 - src = fetchurl { 3666 - url = "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-1.0.1.tgz"; 3667 - sha512 = "j5WfFJfc9CoXv/WbwVLHq74i/hdTUpy+iNC534LxczMRP67vJeK3V9JOdnL0N1cIRbn9mYhE2yVjvvKXDxvNXQ=="; 3668 - }; 3669 - }; 3670 - "reduce-flatten-3.0.1" = { 3671 - name = "reduce-flatten"; 3672 - packageName = "reduce-flatten"; 3673 - version = "3.0.1"; 3674 - src = fetchurl { 3675 - url = "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-3.0.1.tgz"; 3676 - sha512 = "bYo+97BmUUOzg09XwfkwALt4PQH1M5L0wzKerBt6WLm3Fhdd43mMS89HiT1B9pJIqko/6lWx3OnV4J9f2Kqp5Q=="; 3677 - }; 3678 - }; 3679 - "reduce-unique-2.0.1" = { 3680 - name = "reduce-unique"; 3681 - packageName = "reduce-unique"; 3682 - version = "2.0.1"; 3683 - src = fetchurl { 3684 - url = "https://registry.npmjs.org/reduce-unique/-/reduce-unique-2.0.1.tgz"; 3685 - sha512 = "x4jH/8L1eyZGR785WY+ePtyMNhycl1N2XOLxhCbzZFaqF4AXjLzqSxa2UHgJ2ZVR/HHyPOvl1L7xRnW8ye5MdA=="; 3686 - }; 3687 - }; 3688 - "reduce-without-1.0.1" = { 3689 - name = "reduce-without"; 3690 - packageName = "reduce-without"; 3691 - version = "1.0.1"; 3692 - src = fetchurl { 3693 - url = "https://registry.npmjs.org/reduce-without/-/reduce-without-1.0.1.tgz"; 3694 - sha512 = "zQv5y/cf85sxvdrKPlfcRzlDn/OqKFThNimYmsS3flmkioKvkUGn2Qg9cJVoQiEvdxFGLE0MQER/9fZ9sUqdxg=="; 3695 - }; 3696 - }; 3697 - "regexp-tree-0.1.24" = { 3698 - name = "regexp-tree"; 3699 - packageName = "regexp-tree"; 3700 - version = "0.1.24"; 3701 - src = fetchurl { 3702 - url = "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.24.tgz"; 3703 - sha512 = "s2aEVuLhvnVJW6s/iPgEGK6R+/xngd2jNQ+xy4bXNDKxZKJH6jpPHY6kVeVv1IeLCHgswRj+Kl3ELaDjG6V1iw=="; 3704 - }; 3705 - }; 3706 - "regexpp-3.2.0" = { 3707 - name = "regexpp"; 3708 - packageName = "regexpp"; 3709 - version = "3.2.0"; 3710 - src = fetchurl { 3711 - url = "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz"; 3712 - sha512 = "pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg=="; 3713 - }; 3714 - }; 3715 - "regextras-0.8.0" = { 3716 - name = "regextras"; 3717 - packageName = "regextras"; 3718 - version = "0.8.0"; 3719 - src = fetchurl { 3720 - url = "https://registry.npmjs.org/regextras/-/regextras-0.8.0.tgz"; 3721 - sha512 = "k519uI04Z3SaY0fLX843MRXnDeG2+vHOFsyhiPZvNLe7r8rD2YNRjq4BQLZZ0oAr2NrtvZlICsXysGNFPGa3CQ=="; 3722 - }; 3723 - }; 3724 - "release-zalgo-1.0.0" = { 3725 - name = "release-zalgo"; 3726 - packageName = "release-zalgo"; 3727 - version = "1.0.0"; 3728 - src = fetchurl { 3729 - url = "https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz"; 3730 - sha512 = "gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA=="; 3731 - }; 3732 - }; 3733 - "require-directory-2.1.1" = { 3734 - name = "require-directory"; 3735 - packageName = "require-directory"; 3736 - version = "2.1.1"; 3737 - src = fetchurl { 3738 - url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"; 3739 - sha512 = "fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="; 3740 - }; 3741 - }; 3742 - "require-from-string-2.0.2" = { 3743 - name = "require-from-string"; 3744 - packageName = "require-from-string"; 3745 - version = "2.0.2"; 3746 - src = fetchurl { 3747 - url = "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz"; 3748 - sha512 = "Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="; 3749 - }; 3750 - }; 3751 - "require-main-filename-2.0.0" = { 3752 - name = "require-main-filename"; 3753 - packageName = "require-main-filename"; 3754 - version = "2.0.0"; 3755 - src = fetchurl { 3756 - url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz"; 3757 - sha512 = "NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="; 3758 - }; 3759 - }; 3760 - "requizzle-0.2.4" = { 3761 - name = "requizzle"; 3762 - packageName = "requizzle"; 3763 - version = "0.2.4"; 3764 - src = fetchurl { 3765 - url = "https://registry.npmjs.org/requizzle/-/requizzle-0.2.4.tgz"; 3766 - sha512 = "JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw=="; 3767 - }; 3768 - }; 3769 - "resolve-1.22.1" = { 3770 - name = "resolve"; 3771 - packageName = "resolve"; 3772 - version = "1.22.1"; 3773 - src = fetchurl { 3774 - url = "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz"; 3775 - sha512 = "nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw=="; 3776 - }; 3777 - }; 3778 - "resolve-from-4.0.0" = { 3779 - name = "resolve-from"; 3780 - packageName = "resolve-from"; 3781 - version = "4.0.0"; 3782 - src = fetchurl { 3783 - url = "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"; 3784 - sha512 = "pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="; 3785 - }; 3786 - }; 3787 - "resolve-from-5.0.0" = { 3788 - name = "resolve-from"; 3789 - packageName = "resolve-from"; 3790 - version = "5.0.0"; 3791 - src = fetchurl { 3792 - url = "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz"; 3793 - sha512 = "qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="; 3794 - }; 3795 - }; 3796 - "rimraf-3.0.2" = { 3797 - name = "rimraf"; 3798 - packageName = "rimraf"; 3799 - version = "3.0.2"; 3800 - src = fetchurl { 3801 - url = "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"; 3802 - sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; 3803 - }; 3804 - }; 3805 - "safe-buffer-5.1.2" = { 3806 - name = "safe-buffer"; 3807 - packageName = "safe-buffer"; 3808 - version = "5.1.2"; 3809 - src = fetchurl { 3810 - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"; 3811 - sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; 3812 - }; 3813 - }; 3814 - "safe-buffer-5.2.1" = { 3815 - name = "safe-buffer"; 3816 - packageName = "safe-buffer"; 3817 - version = "5.2.1"; 3818 - src = fetchurl { 3819 - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"; 3820 - sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="; 3821 - }; 3822 - }; 3823 - "safe-regex-2.1.1" = { 3824 - name = "safe-regex"; 3825 - packageName = "safe-regex"; 3826 - version = "2.1.1"; 3827 - src = fetchurl { 3828 - url = "https://registry.npmjs.org/safe-regex/-/safe-regex-2.1.1.tgz"; 3829 - sha512 = "rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A=="; 3830 - }; 3831 - }; 3832 - "safer-buffer-2.1.2" = { 3833 - name = "safer-buffer"; 3834 - packageName = "safer-buffer"; 3835 - version = "2.1.2"; 3836 - src = fetchurl { 3837 - url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"; 3838 - sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 3839 - }; 3840 - }; 3841 - "sax-1.2.4" = { 3842 - name = "sax"; 3843 - packageName = "sax"; 3844 - version = "1.2.4"; 3845 - src = fetchurl { 3846 - url = "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz"; 3847 - sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="; 3848 - }; 3849 - }; 3850 - "semver-5.7.1" = { 3851 - name = "semver"; 3852 - packageName = "semver"; 3853 - version = "5.7.1"; 3854 - src = fetchurl { 3855 - url = "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"; 3856 - sha512 = "sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="; 3857 - }; 3858 - }; 3859 - "semver-6.3.0" = { 3860 - name = "semver"; 3861 - packageName = "semver"; 3862 - version = "6.3.0"; 3863 - src = fetchurl { 3864 - url = "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"; 3865 - sha512 = "b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="; 3866 - }; 3867 - }; 3868 - "semver-7.3.5" = { 3869 - name = "semver"; 3870 - packageName = "semver"; 3871 - version = "7.3.5"; 3872 - src = fetchurl { 3873 - url = "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"; 3874 - sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="; 3875 - }; 3876 - }; 3877 - "serialised-error-1.1.3" = { 3878 - name = "serialised-error"; 3879 - packageName = "serialised-error"; 3880 - version = "1.1.3"; 3881 - src = fetchurl { 3882 - url = "https://registry.npmjs.org/serialised-error/-/serialised-error-1.1.3.tgz"; 3883 - sha512 = "vybp3GItaR1ZtO2nxZZo8eOo7fnVaNtP3XE2vJKgzkKR2bagCkdJ1EpYYhEMd3qu/80DwQk9KjsNSxE3fXWq0g=="; 3884 - }; 3885 - }; 3886 - "serialize-javascript-6.0.0" = { 3887 - name = "serialize-javascript"; 3888 - packageName = "serialize-javascript"; 3889 - version = "6.0.0"; 3890 - src = fetchurl { 3891 - url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz"; 3892 - sha512 = "Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag=="; 3893 - }; 3894 - }; 3895 - "server-destroy-1.0.1" = { 3896 - name = "server-destroy"; 3897 - packageName = "server-destroy"; 3898 - version = "1.0.1"; 3899 - src = fetchurl { 3900 - url = "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz"; 3901 - sha512 = "rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ=="; 3902 - }; 3903 - }; 3904 - "set-blocking-2.0.0" = { 3905 - name = "set-blocking"; 3906 - packageName = "set-blocking"; 3907 - version = "2.0.0"; 3908 - src = fetchurl { 3909 - url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"; 3910 - sha512 = "KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="; 3911 - }; 3912 - }; 3913 - "shebang-command-2.0.0" = { 3914 - name = "shebang-command"; 3915 - packageName = "shebang-command"; 3916 - version = "2.0.0"; 3917 - src = fetchurl { 3918 - url = "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz"; 3919 - sha512 = "kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="; 3920 - }; 3921 - }; 3922 - "shebang-regex-3.0.0" = { 3923 - name = "shebang-regex"; 3924 - packageName = "shebang-regex"; 3925 - version = "3.0.0"; 3926 - src = fetchurl { 3927 - url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz"; 3928 - sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; 3929 - }; 3930 - }; 3931 - "shelljs-0.8.5" = { 3932 - name = "shelljs"; 3933 - packageName = "shelljs"; 3934 - version = "0.8.5"; 3935 - src = fetchurl { 3936 - url = "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz"; 3937 - sha512 = "TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow=="; 3938 - }; 3939 - }; 3940 - "sigmund-1.0.1" = { 3941 - name = "sigmund"; 3942 - packageName = "sigmund"; 3943 - version = "1.0.1"; 3944 - src = fetchurl { 3945 - url = "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz"; 3946 - sha512 = "fCvEXfh6NWpm+YSuY2bpXb/VIihqWA6hLsgboC+0nl71Q7N7o2eaCW8mJa/NLvQhs6jpd3VZV4UiUQlV6+lc8g=="; 3947 - }; 3948 - }; 3949 - "signal-exit-3.0.7" = { 3950 - name = "signal-exit"; 3951 - packageName = "signal-exit"; 3952 - version = "3.0.7"; 3953 - src = fetchurl { 3954 - url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz"; 3955 - sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; 3956 - }; 3957 - }; 3958 - "sinon-13.0.2" = { 3959 - name = "sinon"; 3960 - packageName = "sinon"; 3961 - version = "13.0.2"; 3962 - src = fetchurl { 3963 - url = "https://registry.npmjs.org/sinon/-/sinon-13.0.2.tgz"; 3964 - sha512 = "KvOrztAVqzSJWMDoxM4vM+GPys1df2VBoXm+YciyB/OLMamfS3VXh3oGh5WtrAGSzrgczNWFFY22oKb7Fi5eeA=="; 3965 - }; 3966 - }; 3967 - "slice-ansi-4.0.0" = { 3968 - name = "slice-ansi"; 3969 - packageName = "slice-ansi"; 3970 - version = "4.0.0"; 3971 - src = fetchurl { 3972 - url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz"; 3973 - sha512 = "qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ=="; 3974 - }; 3975 - }; 3976 - "sort-array-4.1.5" = { 3977 - name = "sort-array"; 3978 - packageName = "sort-array"; 3979 - version = "4.1.5"; 3980 - src = fetchurl { 3981 - url = "https://registry.npmjs.org/sort-array/-/sort-array-4.1.5.tgz"; 3982 - sha512 = "Ya4peoS1fgFN42RN1REk2FgdNOeLIEMKFGJvs7VTP3OklF8+kl2SkpVliZ4tk/PurWsrWRsdNdU+tgyOBkB9sA=="; 3983 - }; 3984 - }; 3985 - "source-map-0.6.1" = { 3986 - name = "source-map"; 3987 - packageName = "source-map"; 3988 - version = "0.6.1"; 3989 - src = fetchurl { 3990 - url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"; 3991 - sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="; 3992 - }; 3993 - }; 3994 - "spawn-wrap-2.0.0" = { 3995 - name = "spawn-wrap"; 3996 - packageName = "spawn-wrap"; 3997 - version = "2.0.0"; 3998 - src = fetchurl { 3999 - url = "https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-2.0.0.tgz"; 4000 - sha512 = "EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg=="; 4001 - }; 4002 - }; 4003 - "spdx-exceptions-2.3.0" = { 4004 - name = "spdx-exceptions"; 4005 - packageName = "spdx-exceptions"; 4006 - version = "2.3.0"; 4007 - src = fetchurl { 4008 - url = "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz"; 4009 - sha512 = "/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A=="; 4010 - }; 4011 - }; 4012 - "spdx-expression-parse-3.0.1" = { 4013 - name = "spdx-expression-parse"; 4014 - packageName = "spdx-expression-parse"; 4015 - version = "3.0.1"; 4016 - src = fetchurl { 4017 - url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz"; 4018 - sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 4019 - }; 4020 - }; 4021 - "spdx-license-ids-3.0.12" = { 4022 - name = "spdx-license-ids"; 4023 - packageName = "spdx-license-ids"; 4024 - version = "3.0.12"; 4025 - src = fetchurl { 4026 - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz"; 4027 - sha512 = "rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA=="; 4028 - }; 4029 - }; 4030 - "split-ca-1.0.1" = { 4031 - name = "split-ca"; 4032 - packageName = "split-ca"; 4033 - version = "1.0.1"; 4034 - src = fetchurl { 4035 - url = "https://registry.npmjs.org/split-ca/-/split-ca-1.0.1.tgz"; 4036 - sha512 = "Q5thBSxp5t8WPTTJQS59LrGqOZqOsrhDGDVm8azCqIBjSBd7nd9o2PM+mDulQQkh8h//4U6hFZnc/mul8t5pWQ=="; 4037 - }; 4038 - }; 4039 - "sprintf-js-1.0.3" = { 4040 - name = "sprintf-js"; 4041 - packageName = "sprintf-js"; 4042 - version = "1.0.3"; 4043 - src = fetchurl { 4044 - url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"; 4045 - sha512 = "D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g=="; 4046 - }; 4047 - }; 4048 - "sshpk-1.17.0" = { 4049 - name = "sshpk"; 4050 - packageName = "sshpk"; 4051 - version = "1.17.0"; 4052 - src = fetchurl { 4053 - url = "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz"; 4054 - sha512 = "/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ=="; 4055 - }; 4056 - }; 4057 - "stack-trace-0.0.9" = { 4058 - name = "stack-trace"; 4059 - packageName = "stack-trace"; 4060 - version = "0.0.9"; 4061 - src = fetchurl { 4062 - url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.9.tgz"; 4063 - sha512 = "vjUc6sfgtgY0dxCdnc40mK6Oftjo9+2K8H/NG81TMhgL392FtiPA9tn9RLyTxXmTLPJPjF3VyzFp6bsWFLisMQ=="; 4064 - }; 4065 - }; 4066 - "stream-connect-1.0.2" = { 4067 - name = "stream-connect"; 4068 - packageName = "stream-connect"; 4069 - version = "1.0.2"; 4070 - src = fetchurl { 4071 - url = "https://registry.npmjs.org/stream-connect/-/stream-connect-1.0.2.tgz"; 4072 - sha512 = "68Kl+79cE0RGKemKkhxTSg8+6AGrqBt+cbZAXevg2iJ6Y3zX4JhA/sZeGzLpxW9cXhmqAcE7KnJCisUmIUfnFQ=="; 4073 - }; 4074 - }; 4075 - "stream-length-1.0.2" = { 4076 - name = "stream-length"; 4077 - packageName = "stream-length"; 4078 - version = "1.0.2"; 4079 - src = fetchurl { 4080 - url = "https://registry.npmjs.org/stream-length/-/stream-length-1.0.2.tgz"; 4081 - sha512 = "aI+qKFiwoDV4rsXiS7WRoCt+v2RX1nUj17+KJC5r2gfh5xoSJIfP6Y3Do/HtvesFcTSWthIuJ3l1cvKQY/+nZg=="; 4082 - }; 4083 - }; 4084 - "stream-via-1.0.4" = { 4085 - name = "stream-via"; 4086 - packageName = "stream-via"; 4087 - version = "1.0.4"; 4088 - src = fetchurl { 4089 - url = "https://registry.npmjs.org/stream-via/-/stream-via-1.0.4.tgz"; 4090 - sha512 = "DBp0lSvX5G9KGRDTkR/R+a29H+Wk2xItOF+MpZLLNDWbEV9tGPnqLPxHEYjmiz8xGtJHRIqmI+hCjmNzqoA4nQ=="; 4091 - }; 4092 - }; 4093 - "string-width-4.2.3" = { 4094 - name = "string-width"; 4095 - packageName = "string-width"; 4096 - version = "4.2.3"; 4097 - src = fetchurl { 4098 - url = "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"; 4099 - sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="; 4100 - }; 4101 - }; 4102 - "string_decoder-0.10.31" = { 4103 - name = "string_decoder"; 4104 - packageName = "string_decoder"; 4105 - version = "0.10.31"; 4106 - src = fetchurl { 4107 - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"; 4108 - sha512 = "ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ=="; 4109 - }; 4110 - }; 4111 - "string_decoder-1.1.1" = { 4112 - name = "string_decoder"; 4113 - packageName = "string_decoder"; 4114 - version = "1.1.1"; 4115 - src = fetchurl { 4116 - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"; 4117 - sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; 4118 - }; 4119 - }; 4120 - "strip-ansi-6.0.1" = { 4121 - name = "strip-ansi"; 4122 - packageName = "strip-ansi"; 4123 - version = "6.0.1"; 4124 - src = fetchurl { 4125 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"; 4126 - sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="; 4127 - }; 4128 - }; 4129 - "strip-bom-4.0.0" = { 4130 - name = "strip-bom"; 4131 - packageName = "strip-bom"; 4132 - version = "4.0.0"; 4133 - src = fetchurl { 4134 - url = "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz"; 4135 - sha512 = "3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w=="; 4136 - }; 4137 - }; 4138 - "strip-json-comments-3.1.1" = { 4139 - name = "strip-json-comments"; 4140 - packageName = "strip-json-comments"; 4141 - version = "3.1.1"; 4142 - src = fetchurl { 4143 - url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz"; 4144 - sha512 = "6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="; 4145 - }; 4146 - }; 4147 - "supports-color-5.5.0" = { 4148 - name = "supports-color"; 4149 - packageName = "supports-color"; 4150 - version = "5.5.0"; 4151 - src = fetchurl { 4152 - url = "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"; 4153 - sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; 4154 - }; 4155 - }; 4156 - "supports-color-7.2.0" = { 4157 - name = "supports-color"; 4158 - packageName = "supports-color"; 4159 - version = "7.2.0"; 4160 - src = fetchurl { 4161 - url = "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"; 4162 - sha512 = "qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="; 4163 - }; 4164 - }; 4165 - "supports-color-8.1.1" = { 4166 - name = "supports-color"; 4167 - packageName = "supports-color"; 4168 - version = "8.1.1"; 4169 - src = fetchurl { 4170 - url = "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz"; 4171 - sha512 = "MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="; 4172 - }; 4173 - }; 4174 - "supports-preserve-symlinks-flag-1.0.0" = { 4175 - name = "supports-preserve-symlinks-flag"; 4176 - packageName = "supports-preserve-symlinks-flag"; 4177 - version = "1.0.0"; 4178 - src = fetchurl { 4179 - url = "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"; 4180 - sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="; 4181 - }; 4182 - }; 4183 - "table-6.8.1" = { 4184 - name = "table"; 4185 - packageName = "table"; 4186 - version = "6.8.1"; 4187 - src = fetchurl { 4188 - url = "https://registry.npmjs.org/table/-/table-6.8.1.tgz"; 4189 - sha512 = "Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA=="; 4190 - }; 4191 - }; 4192 - "table-layout-0.4.5" = { 4193 - name = "table-layout"; 4194 - packageName = "table-layout"; 4195 - version = "0.4.5"; 4196 - src = fetchurl { 4197 - url = "https://registry.npmjs.org/table-layout/-/table-layout-0.4.5.tgz"; 4198 - sha512 = "zTvf0mcggrGeTe/2jJ6ECkJHAQPIYEwDoqsiqBjI24mvRmQbInK5jq33fyypaCBxX08hMkfmdOqj6haT33EqWw=="; 4199 - }; 4200 - }; 4201 - "taffydb-2.6.2" = { 4202 - name = "taffydb"; 4203 - packageName = "taffydb"; 4204 - version = "2.6.2"; 4205 - src = fetchurl { 4206 - url = "https://registry.npmjs.org/taffydb/-/taffydb-2.6.2.tgz"; 4207 - sha512 = "y3JaeRSplks6NYQuCOj3ZFMO3j60rTwbuKCvZxsAraGYH2epusatvZ0baZYA01WsGqJBq/Dl6vOrMUJqyMj8kA=="; 4208 - }; 4209 - }; 4210 - "tar-fs-1.16.3" = { 4211 - name = "tar-fs"; 4212 - packageName = "tar-fs"; 4213 - version = "1.16.3"; 4214 - src = fetchurl { 4215 - url = "https://registry.npmjs.org/tar-fs/-/tar-fs-1.16.3.tgz"; 4216 - sha512 = "NvCeXpYx7OsmOh8zIOP/ebG55zZmxLE0etfWRbWok+q2Qo8x/vOR/IJT1taADXPe+jsiu9axDb3X4B+iIgNlKw=="; 4217 - }; 4218 - }; 4219 - "tar-stream-1.6.2" = { 4220 - name = "tar-stream"; 4221 - packageName = "tar-stream"; 4222 - version = "1.6.2"; 4223 - src = fetchurl { 4224 - url = "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz"; 4225 - sha512 = "rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A=="; 4226 - }; 4227 - }; 4228 - "teleport-javascript-1.0.0" = { 4229 - name = "teleport-javascript"; 4230 - packageName = "teleport-javascript"; 4231 - version = "1.0.0"; 4232 - src = fetchurl { 4233 - url = "https://registry.npmjs.org/teleport-javascript/-/teleport-javascript-1.0.0.tgz"; 4234 - sha512 = "j1llvWVFyEn/6XIFDfX5LAU43DXe0GCt3NfXDwJ8XpRRMkS+i50SAkonAONBy+vxwPFBd50MFU8a2uj8R/ccLg=="; 4235 - }; 4236 - }; 4237 - "temp-path-1.0.0" = { 4238 - name = "temp-path"; 4239 - packageName = "temp-path"; 4240 - version = "1.0.0"; 4241 - src = fetchurl { 4242 - url = "https://registry.npmjs.org/temp-path/-/temp-path-1.0.0.tgz"; 4243 - sha512 = "TvmyH7kC6ZVTYkqCODjJIbgvu0FKiwQpZ4D1aknE7xpcDf/qEOB8KZEK5ef2pfbVoiBhNWs3yx4y+ESMtNYmlg=="; 4244 - }; 4245 - }; 4246 - "test-exclude-6.0.0" = { 4247 - name = "test-exclude"; 4248 - packageName = "test-exclude"; 4249 - version = "6.0.0"; 4250 - src = fetchurl { 4251 - url = "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz"; 4252 - sha512 = "cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w=="; 4253 - }; 4254 - }; 4255 - "test-value-1.1.0" = { 4256 - name = "test-value"; 4257 - packageName = "test-value"; 4258 - version = "1.1.0"; 4259 - src = fetchurl { 4260 - url = "https://registry.npmjs.org/test-value/-/test-value-1.1.0.tgz"; 4261 - sha512 = "wrsbRo7qP+2Je8x8DsK8ovCGyxe3sYfQwOraIY/09A2gFXU9DYKiTF14W4ki/01AEh56kMzAmlj9CaHGDDUBJA=="; 4262 - }; 4263 - }; 4264 - "test-value-2.1.0" = { 4265 - name = "test-value"; 4266 - packageName = "test-value"; 4267 - version = "2.1.0"; 4268 - src = fetchurl { 4269 - url = "https://registry.npmjs.org/test-value/-/test-value-2.1.0.tgz"; 4270 - sha512 = "+1epbAxtKeXttkGFMTX9H42oqzOTufR1ceCF+GYA5aOmvaPq9wd4PUS8329fn2RRLGNeUkgRLnVpycjx8DsO2w=="; 4271 - }; 4272 - }; 4273 - "test-value-3.0.0" = { 4274 - name = "test-value"; 4275 - packageName = "test-value"; 4276 - version = "3.0.0"; 4277 - src = fetchurl { 4278 - url = "https://registry.npmjs.org/test-value/-/test-value-3.0.0.tgz"; 4279 - sha512 = "sVACdAWcZkSU9x7AOmJo5TqE+GyNJknHaHsMrR6ZnhjVlVN9Yx6FjHrsKZ3BjIpPCT68zYesPWkakrNupwfOTQ=="; 4280 - }; 4281 - }; 4282 - "text-table-0.2.0" = { 4283 - name = "text-table"; 4284 - packageName = "text-table"; 4285 - version = "0.2.0"; 4286 - src = fetchurl { 4287 - url = "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"; 4288 - sha512 = "N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw=="; 4289 - }; 4290 - }; 4291 - "through-2.3.8" = { 4292 - name = "through"; 4293 - packageName = "through"; 4294 - version = "2.3.8"; 4295 - src = fetchurl { 4296 - url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz"; 4297 - sha512 = "w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="; 4298 - }; 4299 - }; 4300 - "to-buffer-1.1.1" = { 4301 - name = "to-buffer"; 4302 - packageName = "to-buffer"; 4303 - version = "1.1.1"; 4304 - src = fetchurl { 4305 - url = "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz"; 4306 - sha512 = "lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg=="; 4307 - }; 4308 - }; 4309 - "to-fast-properties-2.0.0" = { 4310 - name = "to-fast-properties"; 4311 - packageName = "to-fast-properties"; 4312 - version = "2.0.0"; 4313 - src = fetchurl { 4314 - url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; 4315 - sha512 = "/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog=="; 4316 - }; 4317 - }; 4318 - "to-regex-range-5.0.1" = { 4319 - name = "to-regex-range"; 4320 - packageName = "to-regex-range"; 4321 - version = "5.0.1"; 4322 - src = fetchurl { 4323 - url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"; 4324 - sha512 = "65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="; 4325 - }; 4326 - }; 4327 - "tough-cookie-2.5.0" = { 4328 - name = "tough-cookie"; 4329 - packageName = "tough-cookie"; 4330 - version = "2.5.0"; 4331 - src = fetchurl { 4332 - url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz"; 4333 - sha512 = "nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g=="; 4334 - }; 4335 - }; 4336 - "tough-cookie-3.0.1" = { 4337 - name = "tough-cookie"; 4338 - packageName = "tough-cookie"; 4339 - version = "3.0.1"; 4340 - src = fetchurl { 4341 - url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz"; 4342 - sha512 = "yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg=="; 4343 - }; 4344 - }; 4345 - "tweetnacl-0.14.5" = { 4346 - name = "tweetnacl"; 4347 - packageName = "tweetnacl"; 4348 - version = "0.14.5"; 4349 - src = fetchurl { 4350 - url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz"; 4351 - sha512 = "KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA=="; 4352 - }; 4353 - }; 4354 - "type-check-0.4.0" = { 4355 - name = "type-check"; 4356 - packageName = "type-check"; 4357 - version = "0.4.0"; 4358 - src = fetchurl { 4359 - url = "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz"; 4360 - sha512 = "XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="; 4361 - }; 4362 - }; 4363 - "type-detect-4.0.8" = { 4364 - name = "type-detect"; 4365 - packageName = "type-detect"; 4366 - version = "4.0.8"; 4367 - src = fetchurl { 4368 - url = "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz"; 4369 - sha512 = "0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g=="; 4370 - }; 4371 - }; 4372 - "type-fest-0.20.2" = { 4373 - name = "type-fest"; 4374 - packageName = "type-fest"; 4375 - version = "0.20.2"; 4376 - src = fetchurl { 4377 - url = "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"; 4378 - sha512 = "Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="; 4379 - }; 4380 - }; 4381 - "type-fest-0.8.1" = { 4382 - name = "type-fest"; 4383 - packageName = "type-fest"; 4384 - version = "0.8.1"; 4385 - src = fetchurl { 4386 - url = "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz"; 4387 - sha512 = "4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA=="; 4388 - }; 4389 - }; 4390 - "typedarray-0.0.6" = { 4391 - name = "typedarray"; 4392 - packageName = "typedarray"; 4393 - version = "0.0.6"; 4394 - src = fetchurl { 4395 - url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz"; 4396 - sha512 = "/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA=="; 4397 - }; 4398 - }; 4399 - "typedarray-to-buffer-3.1.5" = { 4400 - name = "typedarray-to-buffer"; 4401 - packageName = "typedarray-to-buffer"; 4402 - version = "3.1.5"; 4403 - src = fetchurl { 4404 - url = "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz"; 4405 - sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; 4406 - }; 4407 - }; 4408 - "typical-2.6.1" = { 4409 - name = "typical"; 4410 - packageName = "typical"; 4411 - version = "2.6.1"; 4412 - src = fetchurl { 4413 - url = "https://registry.npmjs.org/typical/-/typical-2.6.1.tgz"; 4414 - sha512 = "ofhi8kjIje6npGozTip9Fr8iecmYfEbS06i0JnIg+rh51KakryWF4+jX8lLKZVhy6N+ID45WYSFCxPOdTWCzNg=="; 4415 - }; 4416 - }; 4417 - "typical-4.0.0" = { 4418 - name = "typical"; 4419 - packageName = "typical"; 4420 - version = "4.0.0"; 4421 - src = fetchurl { 4422 - url = "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz"; 4423 - sha512 = "VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw=="; 4424 - }; 4425 - }; 4426 - "typical-6.0.1" = { 4427 - name = "typical"; 4428 - packageName = "typical"; 4429 - version = "6.0.1"; 4430 - src = fetchurl { 4431 - url = "https://registry.npmjs.org/typical/-/typical-6.0.1.tgz"; 4432 - sha512 = "+g3NEp7fJLe9DPa1TArHm9QAA7YciZmWnfAqEaFrBihQ7epOv9i99rjtgb6Iz0wh3WuQDjsCTDfgRoGnmHN81A=="; 4433 - }; 4434 - }; 4435 - "uc.micro-1.0.6" = { 4436 - name = "uc.micro"; 4437 - packageName = "uc.micro"; 4438 - version = "1.0.6"; 4439 - src = fetchurl { 4440 - url = "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz"; 4441 - sha512 = "8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA=="; 4442 - }; 4443 - }; 4444 - "uglify-js-3.17.4" = { 4445 - name = "uglify-js"; 4446 - packageName = "uglify-js"; 4447 - version = "3.17.4"; 4448 - src = fetchurl { 4449 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz"; 4450 - sha512 = "T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g=="; 4451 - }; 4452 - }; 4453 - "underscore-1.12.1" = { 4454 - name = "underscore"; 4455 - packageName = "underscore"; 4456 - version = "1.12.1"; 4457 - src = fetchurl { 4458 - url = "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz"; 4459 - sha512 = "hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw=="; 4460 - }; 4461 - }; 4462 - "underscore-1.13.6" = { 4463 - name = "underscore"; 4464 - packageName = "underscore"; 4465 - version = "1.13.6"; 4466 - src = fetchurl { 4467 - url = "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz"; 4468 - sha512 = "+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A=="; 4469 - }; 4470 - }; 4471 - "update-browserslist-db-1.0.10" = { 4472 - name = "update-browserslist-db"; 4473 - packageName = "update-browserslist-db"; 4474 - version = "1.0.10"; 4475 - src = fetchurl { 4476 - url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz"; 4477 - sha512 = "OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ=="; 4478 - }; 4479 - }; 4480 - "uri-js-4.4.1" = { 4481 - name = "uri-js"; 4482 - packageName = "uri-js"; 4483 - version = "4.4.1"; 4484 - src = fetchurl { 4485 - url = "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz"; 4486 - sha512 = "7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="; 4487 - }; 4488 - }; 4489 - "util-deprecate-1.0.2" = { 4490 - name = "util-deprecate"; 4491 - packageName = "util-deprecate"; 4492 - version = "1.0.2"; 4493 - src = fetchurl { 4494 - url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; 4495 - sha512 = "EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="; 4496 - }; 4497 - }; 4498 - "uuid-3.4.0" = { 4499 - name = "uuid"; 4500 - packageName = "uuid"; 4501 - version = "3.4.0"; 4502 - src = fetchurl { 4503 - url = "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz"; 4504 - sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="; 4505 - }; 4506 - }; 4507 - "uuid-8.3.2" = { 4508 - name = "uuid"; 4509 - packageName = "uuid"; 4510 - version = "8.3.2"; 4511 - src = fetchurl { 4512 - url = "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz"; 4513 - sha512 = "+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="; 4514 - }; 4515 - }; 4516 - "uvm-2.0.2" = { 4517 - name = "uvm"; 4518 - packageName = "uvm"; 4519 - version = "2.0.2"; 4520 - src = fetchurl { 4521 - url = "https://registry.npmjs.org/uvm/-/uvm-2.0.2.tgz"; 4522 - sha512 = "Ra+aPiS5GXAbwXmyNExqdS42sTqmmx4XWEDF8uJlsTfOkKf9Rd9xNgav1Yckv4HfVEZg4iOFODWHFYuJ+9Fzfg=="; 4523 - }; 4524 - }; 4525 - "v8-compile-cache-2.3.0" = { 4526 - name = "v8-compile-cache"; 4527 - packageName = "v8-compile-cache"; 4528 - version = "2.3.0"; 4529 - src = fetchurl { 4530 - url = "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz"; 4531 - sha512 = "l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA=="; 4532 - }; 4533 - }; 4534 - "verror-1.10.0" = { 4535 - name = "verror"; 4536 - packageName = "verror"; 4537 - version = "1.10.0"; 4538 - src = fetchurl { 4539 - url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; 4540 - sha512 = "ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw=="; 4541 - }; 4542 - }; 4543 - "walk-back-2.0.1" = { 4544 - name = "walk-back"; 4545 - packageName = "walk-back"; 4546 - version = "2.0.1"; 4547 - src = fetchurl { 4548 - url = "https://registry.npmjs.org/walk-back/-/walk-back-2.0.1.tgz"; 4549 - sha512 = "Nb6GvBR8UWX1D+Le+xUq0+Q1kFmRBIWVrfLnQAOmcpEzA9oAxwJ9gIr36t9TWYfzvWRvuMtjHiVsJYEkXWaTAQ=="; 4550 - }; 4551 - }; 4552 - "walk-back-5.1.0" = { 4553 - name = "walk-back"; 4554 - packageName = "walk-back"; 4555 - version = "5.1.0"; 4556 - src = fetchurl { 4557 - url = "https://registry.npmjs.org/walk-back/-/walk-back-5.1.0.tgz"; 4558 - sha512 = "Uhxps5yZcVNbLEAnb+xaEEMdgTXl9qAQDzKYejG2AZ7qPwRQ81lozY9ECDbjLPNWm7YsO1IK5rsP1KoQzXAcGA=="; 4559 - }; 4560 - }; 4561 - "which-2.0.2" = { 4562 - name = "which"; 4563 - packageName = "which"; 4564 - version = "2.0.2"; 4565 - src = fetchurl { 4566 - url = "https://registry.npmjs.org/which/-/which-2.0.2.tgz"; 4567 - sha512 = "BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="; 4568 - }; 4569 - }; 4570 - "which-module-2.0.0" = { 4571 - name = "which-module"; 4572 - packageName = "which-module"; 4573 - version = "2.0.0"; 4574 - src = fetchurl { 4575 - url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"; 4576 - sha512 = "B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q=="; 4577 - }; 4578 - }; 4579 - "winston-2.4.7" = { 4580 - name = "winston"; 4581 - packageName = "winston"; 4582 - version = "2.4.7"; 4583 - src = fetchurl { 4584 - url = "https://registry.npmjs.org/winston/-/winston-2.4.7.tgz"; 4585 - sha512 = "vLB4BqzCKDnnZH9PHGoS2ycawueX4HLqENXQitvFHczhgW2vFpSOn31LZtVr1KU8YTw7DS4tM+cqyovxo8taVg=="; 4586 - }; 4587 - }; 4588 - "word-wrap-1.2.3" = { 4589 - name = "word-wrap"; 4590 - packageName = "word-wrap"; 4591 - version = "1.2.3"; 4592 - src = fetchurl { 4593 - url = "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz"; 4594 - sha512 = "Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="; 4595 - }; 4596 - }; 4597 - "wordwrap-1.0.0" = { 4598 - name = "wordwrap"; 4599 - packageName = "wordwrap"; 4600 - version = "1.0.0"; 4601 - src = fetchurl { 4602 - url = "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz"; 4603 - sha512 = "gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q=="; 4604 - }; 4605 - }; 4606 - "wordwrapjs-3.0.0" = { 4607 - name = "wordwrapjs"; 4608 - packageName = "wordwrapjs"; 4609 - version = "3.0.0"; 4610 - src = fetchurl { 4611 - url = "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-3.0.0.tgz"; 4612 - sha512 = "mO8XtqyPvykVCsrwj5MlOVWvSnCdT+C+QVbm6blradR7JExAhbkZ7hZ9A+9NUtwzSqrlUo9a67ws0EiILrvRpw=="; 4613 - }; 4614 - }; 4615 - "workerpool-6.2.0" = { 4616 - name = "workerpool"; 4617 - packageName = "workerpool"; 4618 - version = "6.2.0"; 4619 - src = fetchurl { 4620 - url = "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz"; 4621 - sha512 = "Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A=="; 4622 - }; 4623 - }; 4624 - "wrap-ansi-6.2.0" = { 4625 - name = "wrap-ansi"; 4626 - packageName = "wrap-ansi"; 4627 - version = "6.2.0"; 4628 - src = fetchurl { 4629 - url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz"; 4630 - sha512 = "r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA=="; 4631 - }; 4632 - }; 4633 - "wrap-ansi-7.0.0" = { 4634 - name = "wrap-ansi"; 4635 - packageName = "wrap-ansi"; 4636 - version = "7.0.0"; 4637 - src = fetchurl { 4638 - url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"; 4639 - sha512 = "YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="; 4640 - }; 4641 - }; 4642 - "wrappy-1.0.2" = { 4643 - name = "wrappy"; 4644 - packageName = "wrappy"; 4645 - version = "1.0.2"; 4646 - src = fetchurl { 4647 - url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"; 4648 - sha512 = "l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="; 4649 - }; 4650 - }; 4651 - "write-file-atomic-3.0.3" = { 4652 - name = "write-file-atomic"; 4653 - packageName = "write-file-atomic"; 4654 - version = "3.0.3"; 4655 - src = fetchurl { 4656 - url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz"; 4657 - sha512 = "AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q=="; 4658 - }; 4659 - }; 4660 - "xml2js-0.4.23" = { 4661 - name = "xml2js"; 4662 - packageName = "xml2js"; 4663 - version = "0.4.23"; 4664 - src = fetchurl { 4665 - url = "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz"; 4666 - sha512 = "ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug=="; 4667 - }; 4668 - }; 4669 - "xmlbuilder-10.1.1" = { 4670 - name = "xmlbuilder"; 4671 - packageName = "xmlbuilder"; 4672 - version = "10.1.1"; 4673 - src = fetchurl { 4674 - url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-10.1.1.tgz"; 4675 - sha512 = "OyzrcFLL/nb6fMGHbiRDuPup9ljBycsdCypwuyg5AAHvyWzGfChJpCXMG88AGTIMFhGZ9RccFN1e6lhg3hkwKg=="; 4676 - }; 4677 - }; 4678 - "xmlbuilder-11.0.1" = { 4679 - name = "xmlbuilder"; 4680 - packageName = "xmlbuilder"; 4681 - version = "11.0.1"; 4682 - src = fetchurl { 4683 - url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz"; 4684 - sha512 = "fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA=="; 4685 - }; 4686 - }; 4687 - "xmlbuilder-15.1.1" = { 4688 - name = "xmlbuilder"; 4689 - packageName = "xmlbuilder"; 4690 - version = "15.1.1"; 4691 - src = fetchurl { 4692 - url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz"; 4693 - sha512 = "yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg=="; 4694 - }; 4695 - }; 4696 - "xmlcreate-2.0.4" = { 4697 - name = "xmlcreate"; 4698 - packageName = "xmlcreate"; 4699 - version = "2.0.4"; 4700 - src = fetchurl { 4701 - url = "https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.4.tgz"; 4702 - sha512 = "nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg=="; 4703 - }; 4704 - }; 4705 - "xtend-4.0.2" = { 4706 - name = "xtend"; 4707 - packageName = "xtend"; 4708 - version = "4.0.2"; 4709 - src = fetchurl { 4710 - url = "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"; 4711 - sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="; 4712 - }; 4713 - }; 4714 - "y18n-4.0.3" = { 4715 - name = "y18n"; 4716 - packageName = "y18n"; 4717 - version = "4.0.3"; 4718 - src = fetchurl { 4719 - url = "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz"; 4720 - sha512 = "JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ=="; 4721 - }; 4722 - }; 4723 - "y18n-5.0.8" = { 4724 - name = "y18n"; 4725 - packageName = "y18n"; 4726 - version = "5.0.8"; 4727 - src = fetchurl { 4728 - url = "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz"; 4729 - sha512 = "0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="; 4730 - }; 4731 - }; 4732 - "yallist-2.1.2" = { 4733 - name = "yallist"; 4734 - packageName = "yallist"; 4735 - version = "2.1.2"; 4736 - src = fetchurl { 4737 - url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz"; 4738 - sha512 = "ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A=="; 4739 - }; 4740 - }; 4741 - "yallist-4.0.0" = { 4742 - name = "yallist"; 4743 - packageName = "yallist"; 4744 - version = "4.0.0"; 4745 - src = fetchurl { 4746 - url = "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"; 4747 - sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="; 4748 - }; 4749 - }; 4750 - "yargs-15.4.1" = { 4751 - name = "yargs"; 4752 - packageName = "yargs"; 4753 - version = "15.4.1"; 4754 - src = fetchurl { 4755 - url = "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz"; 4756 - sha512 = "aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A=="; 4757 - }; 4758 - }; 4759 - "yargs-16.2.0" = { 4760 - name = "yargs"; 4761 - packageName = "yargs"; 4762 - version = "16.2.0"; 4763 - src = fetchurl { 4764 - url = "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz"; 4765 - sha512 = "D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw=="; 4766 - }; 4767 - }; 4768 - "yargs-parser-18.1.3" = { 4769 - name = "yargs-parser"; 4770 - packageName = "yargs-parser"; 4771 - version = "18.1.3"; 4772 - src = fetchurl { 4773 - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz"; 4774 - sha512 = "o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ=="; 4775 - }; 4776 - }; 4777 - "yargs-parser-20.2.4" = { 4778 - name = "yargs-parser"; 4779 - packageName = "yargs-parser"; 4780 - version = "20.2.4"; 4781 - src = fetchurl { 4782 - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz"; 4783 - sha512 = "WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA=="; 4784 - }; 4785 - }; 4786 - "yargs-unparser-2.0.0" = { 4787 - name = "yargs-unparser"; 4788 - packageName = "yargs-unparser"; 4789 - version = "2.0.0"; 4790 - src = fetchurl { 4791 - url = "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz"; 4792 - sha512 = "7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA=="; 4793 - }; 4794 - }; 4795 - "yocto-queue-0.1.0" = { 4796 - name = "yocto-queue"; 4797 - packageName = "yocto-queue"; 4798 - version = "0.1.0"; 4799 - src = fetchurl { 4800 - url = "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz"; 4801 - sha512 = "rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="; 4802 - }; 4803 - }; 4804 - }; 4805 - in 4806 - { 4807 - newman = nodeEnv.buildNodePackage { 4808 - name = "newman"; 4809 - packageName = "newman"; 4810 - version = "5.3.2"; 4811 - src = fetchurl { 4812 - url = "https://registry.npmjs.org/newman/-/newman-5.3.2.tgz"; 4813 - sha512 = "cWy8pV0iwvMOZLTw3hkAHcwo2ZA0GKkXm8oUMn1Ltii3ZI2nKpnrg9QGdIT0hGHChRkX6prY5e3Aar7uykMGNg=="; 4814 - }; 4815 - dependencies = [ 4816 - sources."@ampproject/remapping-2.2.0" 4817 - sources."@babel/code-frame-7.12.11" 4818 - sources."@babel/compat-data-7.20.5" 4819 - (sources."@babel/core-7.20.5" // { 4820 - dependencies = [ 4821 - sources."@babel/code-frame-7.18.6" 4822 - sources."debug-4.3.4" 4823 - sources."ms-2.1.2" 4824 - sources."semver-6.3.0" 4825 - ]; 4826 - }) 4827 - (sources."@babel/generator-7.20.5" // { 4828 - dependencies = [ 4829 - sources."@jridgewell/gen-mapping-0.3.2" 4830 - ]; 4831 - }) 4832 - (sources."@babel/helper-compilation-targets-7.20.0" // { 4833 - dependencies = [ 4834 - sources."semver-6.3.0" 4835 - ]; 4836 - }) 4837 - sources."@babel/helper-environment-visitor-7.18.9" 4838 - sources."@babel/helper-function-name-7.19.0" 4839 - sources."@babel/helper-hoist-variables-7.18.6" 4840 - sources."@babel/helper-module-imports-7.18.6" 4841 - sources."@babel/helper-module-transforms-7.20.2" 4842 - sources."@babel/helper-simple-access-7.20.2" 4843 - sources."@babel/helper-split-export-declaration-7.18.6" 4844 - sources."@babel/helper-string-parser-7.19.4" 4845 - sources."@babel/helper-validator-identifier-7.19.1" 4846 - sources."@babel/helper-validator-option-7.18.6" 4847 - sources."@babel/helpers-7.20.6" 4848 - (sources."@babel/highlight-7.18.6" // { 4849 - dependencies = [ 4850 - sources."chalk-2.4.2" 4851 - sources."escape-string-regexp-1.0.5" 4852 - ]; 4853 - }) 4854 - sources."@babel/parser-7.20.5" 4855 - (sources."@babel/template-7.18.10" // { 4856 - dependencies = [ 4857 - sources."@babel/code-frame-7.18.6" 4858 - ]; 4859 - }) 4860 - (sources."@babel/traverse-7.20.5" // { 4861 - dependencies = [ 4862 - sources."@babel/code-frame-7.18.6" 4863 - sources."debug-4.3.4" 4864 - sources."globals-11.12.0" 4865 - sources."ms-2.1.2" 4866 - ]; 4867 - }) 4868 - sources."@babel/types-7.20.5" 4869 - (sources."@es-joy/jsdoccomment-0.10.8" // { 4870 - dependencies = [ 4871 - sources."jsdoc-type-pratt-parser-1.1.1" 4872 - ]; 4873 - }) 4874 - (sources."@eslint/eslintrc-0.4.3" // { 4875 - dependencies = [ 4876 - sources."debug-4.3.4" 4877 - sources."js-yaml-3.14.1" 4878 - sources."ms-2.1.2" 4879 - ]; 4880 - }) 4881 - (sources."@humanwhocodes/config-array-0.5.0" // { 4882 - dependencies = [ 4883 - sources."debug-4.3.4" 4884 - sources."ms-2.1.2" 4885 - ]; 4886 - }) 4887 - sources."@humanwhocodes/object-schema-1.2.1" 4888 - (sources."@istanbuljs/load-nyc-config-1.1.0" // { 4889 - dependencies = [ 4890 - sources."camelcase-5.3.1" 4891 - sources."find-up-4.1.0" 4892 - sources."js-yaml-3.14.1" 4893 - sources."locate-path-5.0.0" 4894 - sources."p-limit-2.3.0" 4895 - sources."p-locate-4.1.0" 4896 - sources."resolve-from-5.0.0" 4897 - ]; 4898 - }) 4899 - sources."@istanbuljs/schema-0.1.3" 4900 - sources."@jridgewell/gen-mapping-0.1.1" 4901 - sources."@jridgewell/resolve-uri-3.1.0" 4902 - sources."@jridgewell/set-array-1.1.2" 4903 - sources."@jridgewell/sourcemap-codec-1.4.14" 4904 - sources."@jridgewell/trace-mapping-0.3.17" 4905 - sources."@jsdoc/salty-0.2.1" 4906 - sources."@postman/form-data-3.1.1" 4907 - sources."@postman/tunnel-agent-0.6.3" 4908 - sources."@sinonjs/commons-1.8.6" 4909 - sources."@sinonjs/fake-timers-9.1.2" 4910 - sources."@sinonjs/samsam-6.1.3" 4911 - sources."@sinonjs/text-encoding-0.7.2" 4912 - sources."@types/linkify-it-3.0.2" 4913 - sources."@types/markdown-it-12.2.3" 4914 - sources."@types/mdurl-1.0.2" 4915 - sources."@ungap/promise-all-settled-1.1.2" 4916 - sources."JSONStream-1.3.2" 4917 - sources."acorn-7.4.1" 4918 - sources."acorn-jsx-5.3.2" 4919 - sources."aggregate-error-3.1.0" 4920 - sources."ajv-6.12.6" 4921 - sources."ansi-colors-4.1.3" 4922 - (sources."ansi-escape-sequences-4.1.0" // { 4923 - dependencies = [ 4924 - sources."array-back-3.1.0" 4925 - ]; 4926 - }) 4927 - sources."ansi-regex-5.0.1" 4928 - sources."ansi-styles-3.2.1" 4929 - sources."anymatch-3.1.3" 4930 - sources."append-transform-2.0.0" 4931 - sources."archy-1.0.0" 4932 - sources."argparse-1.0.10" 4933 - sources."array-back-6.2.2" 4934 - sources."asn1-0.2.6" 4935 - sources."assert-plus-1.0.0" 4936 - sources."assertion-error-1.1.0" 4937 - sources."astral-regex-2.0.0" 4938 - sources."async-3.2.3" 4939 - sources."asynckit-0.4.0" 4940 - sources."aws-sign2-0.7.0" 4941 - sources."aws4-1.11.0" 4942 - sources."balanced-match-1.0.2" 4943 - sources."base64-js-1.5.1" 4944 - sources."bcrypt-pbkdf-1.0.2" 4945 - sources."binary-extensions-2.2.0" 4946 - sources."bl-1.2.3" 4947 - sources."bluebird-2.11.0" 4948 - sources."brace-expansion-1.1.11" 4949 - sources."braces-3.0.2" 4950 - sources."brotli-1.3.3" 4951 - sources."browser-stdout-1.3.1" 4952 - sources."browserslist-4.21.4" 4953 - sources."buffer-alloc-1.2.0" 4954 - sources."buffer-alloc-unsafe-1.1.0" 4955 - sources."buffer-fill-1.0.0" 4956 - sources."buffer-from-1.1.2" 4957 - (sources."cache-point-2.0.0" // { 4958 - dependencies = [ 4959 - sources."array-back-4.0.2" 4960 - ]; 4961 - }) 4962 - (sources."caching-transform-4.0.0" // { 4963 - dependencies = [ 4964 - sources."make-dir-3.1.0" 4965 - sources."semver-6.3.0" 4966 - ]; 4967 - }) 4968 - sources."callsites-3.1.0" 4969 - sources."camelcase-6.3.0" 4970 - sources."caniuse-lite-1.0.30001436" 4971 - sources."caseless-0.12.0" 4972 - sources."catharsis-0.9.0" 4973 - sources."chai-4.3.7" 4974 - (sources."chalk-4.1.2" // { 4975 - dependencies = [ 4976 - sources."ansi-styles-4.3.0" 4977 - sources."color-convert-2.0.1" 4978 - sources."color-name-1.1.4" 4979 - sources."has-flag-4.0.0" 4980 - sources."supports-color-7.2.0" 4981 - ]; 4982 - }) 4983 - sources."chardet-1.4.0" 4984 - sources."charset-1.0.1" 4985 - sources."check-error-1.0.2" 4986 - sources."chokidar-3.5.3" 4987 - sources."chownr-1.1.4" 4988 - sources."clean-stack-2.2.0" 4989 - sources."cli-progress-3.10.0" 4990 - sources."cli-table3-0.6.1" 4991 - sources."cliui-7.0.4" 4992 - sources."collect-all-1.0.4" 4993 - sources."color-convert-1.9.3" 4994 - sources."color-name-1.1.3" 4995 - sources."colors-1.4.0" 4996 - sources."combined-stream-1.0.8" 4997 - (sources."command-line-args-5.2.1" // { 4998 - dependencies = [ 4999 - sources."array-back-3.1.0" 5000 - sources."typical-4.0.0" 5001 - ]; 5002 - }) 5003 - (sources."command-line-tool-0.8.0" // { 5004 - dependencies = [ 5005 - sources."array-back-2.0.0" 5006 - ]; 5007 - }) 5008 - (sources."command-line-usage-4.1.0" // { 5009 - dependencies = [ 5010 - sources."array-back-2.0.0" 5011 - ]; 5012 - }) 5013 - sources."commander-7.2.0" 5014 - sources."comment-parser-1.2.4" 5015 - sources."common-sequence-2.0.2" 5016 - sources."commondir-1.0.1" 5017 - sources."concat-map-0.0.1" 5018 - sources."concat-stream-1.6.2" 5019 - (sources."config-master-3.1.0" // { 5020 - dependencies = [ 5021 - sources."walk-back-2.0.1" 5022 - ]; 5023 - }) 5024 - sources."convert-source-map-1.9.0" 5025 - sources."core-util-is-1.0.2" 5026 - sources."cross-spawn-7.0.3" 5027 - sources."csv-parse-4.16.3" 5028 - sources."cycle-1.0.3" 5029 - sources."dashdash-1.14.1" 5030 - sources."date-format-0.0.2" 5031 - sources."debug-3.2.7" 5032 - sources."decamelize-4.0.0" 5033 - sources."deep-eql-4.1.3" 5034 - sources."deep-extend-0.6.0" 5035 - sources."deep-is-0.1.4" 5036 - sources."default-require-extensions-3.0.1" 5037 - sources."delayed-stream-1.0.0" 5038 - sources."diff-5.0.0" 5039 - (sources."dmd-6.2.0" // { 5040 - dependencies = [ 5041 - sources."reduce-flatten-3.0.1" 5042 - ]; 5043 - }) 5044 - (sources."docker-modem-1.0.9" // { 5045 - dependencies = [ 5046 - sources."isarray-0.0.1" 5047 - sources."readable-stream-1.0.34" 5048 - sources."string_decoder-0.10.31" 5049 - ]; 5050 - }) 5051 - (sources."dockerfile_lint-0.3.4" // { 5052 - dependencies = [ 5053 - sources."commander-2.9.0" 5054 - sources."js-yaml-3.13.1" 5055 - sources."lodash-2.4.2" 5056 - ]; 5057 - }) 5058 - sources."dockerode-2.5.8" 5059 - sources."doctrine-3.0.0" 5060 - sources."ecc-jsbn-0.1.2" 5061 - (sources."editorconfig-0.15.3" // { 5062 - dependencies = [ 5063 - sources."commander-2.20.3" 5064 - sources."lru-cache-4.1.5" 5065 - sources."semver-5.7.1" 5066 - sources."yallist-2.1.2" 5067 - ]; 5068 - }) 5069 - sources."electron-to-chromium-1.4.284" 5070 - sources."emoji-regex-8.0.0" 5071 - sources."end-of-stream-1.4.4" 5072 - sources."enquirer-2.3.6" 5073 - sources."entities-2.1.0" 5074 - sources."es6-error-4.1.1" 5075 - sources."escalade-3.1.1" 5076 - sources."escape-string-regexp-4.0.0" 5077 - (sources."eslint-7.32.0" // { 5078 - dependencies = [ 5079 - sources."debug-4.3.4" 5080 - sources."js-yaml-3.14.1" 5081 - sources."ms-2.1.2" 5082 - ]; 5083 - }) 5084 - (sources."eslint-plugin-jsdoc-36.1.1" // { 5085 - dependencies = [ 5086 - sources."debug-4.3.4" 5087 - sources."ms-2.1.2" 5088 - ]; 5089 - }) 5090 - sources."eslint-plugin-lodash-7.4.0" 5091 - (sources."eslint-plugin-mocha-10.1.0" // { 5092 - dependencies = [ 5093 - sources."eslint-utils-3.0.0" 5094 - ]; 5095 - }) 5096 - sources."eslint-plugin-security-1.5.0" 5097 - sources."eslint-scope-5.1.1" 5098 - (sources."eslint-utils-2.1.0" // { 5099 - dependencies = [ 5100 - sources."eslint-visitor-keys-1.3.0" 5101 - ]; 5102 - }) 5103 - sources."eslint-visitor-keys-2.1.0" 5104 - (sources."espree-7.3.1" // { 5105 - dependencies = [ 5106 - sources."eslint-visitor-keys-1.3.0" 5107 - ]; 5108 - }) 5109 - sources."esprima-4.0.1" 5110 - (sources."esquery-1.4.0" // { 5111 - dependencies = [ 5112 - sources."estraverse-5.3.0" 5113 - ]; 5114 - }) 5115 - (sources."esrecurse-4.3.0" // { 5116 - dependencies = [ 5117 - sources."estraverse-5.3.0" 5118 - ]; 5119 - }) 5120 - sources."estraverse-4.3.0" 5121 - sources."esutils-2.0.3" 5122 - sources."eventemitter3-4.0.7" 5123 - sources."extend-3.0.2" 5124 - sources."extsprintf-1.3.0" 5125 - sources."eyes-0.1.8" 5126 - sources."faker-5.5.3" 5127 - sources."fast-deep-equal-3.1.3" 5128 - sources."fast-json-stable-stringify-2.1.0" 5129 - sources."fast-levenshtein-2.0.6" 5130 - sources."file-entry-cache-6.0.1" 5131 - (sources."file-set-4.0.2" // { 5132 - dependencies = [ 5133 - sources."array-back-5.0.0" 5134 - ]; 5135 - }) 5136 - sources."file-type-3.9.0" 5137 - sources."filesize-8.0.7" 5138 - sources."fill-range-7.0.1" 5139 - (sources."find-cache-dir-3.3.2" // { 5140 - dependencies = [ 5141 - sources."make-dir-3.1.0" 5142 - sources."semver-6.3.0" 5143 - ]; 5144 - }) 5145 - (sources."find-replace-3.0.0" // { 5146 - dependencies = [ 5147 - sources."array-back-3.1.0" 5148 - ]; 5149 - }) 5150 - sources."find-up-5.0.0" 5151 - sources."flat-5.0.2" 5152 - sources."flat-cache-3.0.4" 5153 - sources."flatted-3.1.1" 5154 - sources."foreground-child-2.0.0" 5155 - sources."forever-agent-0.6.1" 5156 - sources."fromentries-1.3.2" 5157 - sources."fs-constants-1.0.0" 5158 - sources."fs-then-native-2.0.0" 5159 - sources."fs.realpath-1.0.0" 5160 - sources."fsevents-2.3.2" 5161 - sources."function-bind-1.1.1" 5162 - sources."functional-red-black-tree-1.0.1" 5163 - sources."gensync-1.0.0-beta.2" 5164 - sources."get-caller-file-2.0.5" 5165 - sources."get-func-name-2.0.0" 5166 - sources."get-package-type-0.1.0" 5167 - sources."getpass-0.1.7" 5168 - sources."glob-7.2.3" 5169 - sources."glob-parent-5.1.2" 5170 - sources."globals-13.18.0" 5171 - sources."graceful-fs-4.2.10" 5172 - sources."graceful-readlink-1.0.1" 5173 - sources."growl-1.10.5" 5174 - sources."handlebars-4.7.7" 5175 - sources."har-schema-2.0.0" 5176 - sources."har-validator-5.1.5" 5177 - sources."has-1.0.3" 5178 - sources."has-flag-3.0.0" 5179 - (sources."hasha-5.2.2" // { 5180 - dependencies = [ 5181 - sources."type-fest-0.8.1" 5182 - ]; 5183 - }) 5184 - sources."he-1.2.0" 5185 - sources."html-escaper-2.0.2" 5186 - sources."http-reasons-0.1.0" 5187 - sources."http-signature-1.3.6" 5188 - sources."httpntlm-1.7.7" 5189 - sources."httpreq-0.5.2" 5190 - sources."iconv-lite-0.6.3" 5191 - sources."ignore-4.0.6" 5192 - sources."import-fresh-3.3.0" 5193 - sources."imurmurhash-0.1.4" 5194 - sources."indent-string-4.0.0" 5195 - sources."inflight-1.0.6" 5196 - sources."inherits-2.0.4" 5197 - sources."interpret-1.4.0" 5198 - sources."ip-regex-2.1.0" 5199 - sources."is-binary-path-2.1.0" 5200 - sources."is-core-module-2.11.0" 5201 - sources."is-extglob-2.1.1" 5202 - sources."is-fullwidth-code-point-3.0.0" 5203 - sources."is-glob-4.0.3" 5204 - sources."is-number-7.0.0" 5205 - sources."is-plain-obj-2.1.0" 5206 - sources."is-stream-2.0.1" 5207 - sources."is-typedarray-1.0.0" 5208 - sources."is-unicode-supported-0.1.0" 5209 - sources."is-windows-1.0.2" 5210 - sources."isarray-1.0.0" 5211 - sources."isexe-2.0.0" 5212 - sources."isstream-0.1.2" 5213 - sources."istanbul-lib-coverage-3.2.0" 5214 - sources."istanbul-lib-hook-3.0.0" 5215 - (sources."istanbul-lib-instrument-4.0.3" // { 5216 - dependencies = [ 5217 - sources."semver-6.3.0" 5218 - ]; 5219 - }) 5220 - sources."istanbul-lib-processinfo-2.0.3" 5221 - (sources."istanbul-lib-report-3.0.0" // { 5222 - dependencies = [ 5223 - sources."has-flag-4.0.0" 5224 - sources."make-dir-3.1.0" 5225 - sources."semver-6.3.0" 5226 - sources."supports-color-7.2.0" 5227 - ]; 5228 - }) 5229 - (sources."istanbul-lib-source-maps-4.0.1" // { 5230 - dependencies = [ 5231 - sources."debug-4.3.4" 5232 - sources."ms-2.1.2" 5233 - ]; 5234 - }) 5235 - sources."istanbul-reports-3.1.5" 5236 - sources."js-sha512-0.8.0" 5237 - sources."js-tokens-4.0.0" 5238 - (sources."js-yaml-4.1.0" // { 5239 - dependencies = [ 5240 - sources."argparse-2.0.1" 5241 - ]; 5242 - }) 5243 - sources."js2xmlparser-4.0.2" 5244 - sources."jsbn-0.1.1" 5245 - (sources."jsdoc-3.6.11" // { 5246 - dependencies = [ 5247 - sources."bluebird-3.7.2" 5248 - sources."escape-string-regexp-2.0.0" 5249 - sources."underscore-1.13.6" 5250 - ]; 5251 - }) 5252 - (sources."jsdoc-api-7.2.0" // { 5253 - dependencies = [ 5254 - sources."bluebird-3.7.2" 5255 - sources."escape-string-regexp-2.0.0" 5256 - sources."jsdoc-4.0.0" 5257 - sources."underscore-1.13.6" 5258 - ]; 5259 - }) 5260 - sources."jsdoc-parse-6.2.0" 5261 - sources."jsdoc-to-markdown-7.1.1" 5262 - sources."jsdoc-type-pratt-parser-1.2.0" 5263 - sources."jsesc-2.5.2" 5264 - sources."json-schema-0.4.0" 5265 - sources."json-schema-traverse-0.4.1" 5266 - sources."json-stable-stringify-without-jsonify-1.0.1" 5267 - sources."json-stringify-safe-5.0.1" 5268 - sources."json5-2.2.1" 5269 - sources."jsonparse-1.3.1" 5270 - sources."jsprim-2.0.2" 5271 - (sources."junit-report-builder-2.1.0" // { 5272 - dependencies = [ 5273 - sources."xmlbuilder-10.1.1" 5274 - ]; 5275 - }) 5276 - sources."just-extend-4.2.1" 5277 - sources."klaw-3.0.0" 5278 - sources."levn-0.4.1" 5279 - sources."linkify-it-3.0.3" 5280 - sources."liquid-json-0.3.1" 5281 - sources."locate-path-6.0.0" 5282 - sources."lodash-4.17.21" 5283 - sources."lodash.camelcase-4.3.0" 5284 - sources."lodash.flattendeep-4.4.0" 5285 - sources."lodash.get-4.4.2" 5286 - sources."lodash.merge-4.6.2" 5287 - sources."lodash.omit-4.5.0" 5288 - sources."lodash.padend-4.6.1" 5289 - sources."lodash.pick-4.4.0" 5290 - sources."lodash.truncate-4.4.2" 5291 - sources."log-symbols-4.1.0" 5292 - sources."loupe-2.3.6" 5293 - sources."lru-cache-6.0.0" 5294 - sources."make-dir-1.3.0" 5295 - (sources."markdown-it-12.3.2" // { 5296 - dependencies = [ 5297 - sources."argparse-2.0.1" 5298 - ]; 5299 - }) 5300 - sources."markdown-it-anchor-8.6.5" 5301 - sources."marked-4.2.4" 5302 - sources."mdurl-1.0.1" 5303 - sources."mime-db-1.51.0" 5304 - sources."mime-format-2.0.1" 5305 - sources."mime-types-2.1.34" 5306 - sources."minimatch-3.1.2" 5307 - sources."minimist-1.2.7" 5308 - sources."mkdirp-1.0.4" 5309 - sources."mkdirp2-1.0.5" 5310 - (sources."mocha-9.2.2" // { 5311 - dependencies = [ 5312 - sources."ansi-colors-4.1.1" 5313 - (sources."debug-4.3.3" // { 5314 - dependencies = [ 5315 - sources."ms-2.1.2" 5316 - ]; 5317 - }) 5318 - (sources."glob-7.2.0" // { 5319 - dependencies = [ 5320 - sources."minimatch-3.1.2" 5321 - ]; 5322 - }) 5323 - sources."has-flag-4.0.0" 5324 - sources."minimatch-4.2.1" 5325 - sources."supports-color-8.1.1" 5326 - ]; 5327 - }) 5328 - sources."ms-2.1.3" 5329 - sources."nanoid-3.3.1" 5330 - sources."natural-compare-1.4.0" 5331 - sources."neo-async-2.6.2" 5332 - (sources."nise-5.1.3" // { 5333 - dependencies = [ 5334 - sources."@sinonjs/commons-2.0.0" 5335 - (sources."@sinonjs/fake-timers-7.1.2" // { 5336 - dependencies = [ 5337 - sources."@sinonjs/commons-1.8.6" 5338 - ]; 5339 - }) 5340 - ]; 5341 - }) 5342 - (sources."nock-13.2.9" // { 5343 - dependencies = [ 5344 - sources."debug-4.3.4" 5345 - sources."ms-2.1.2" 5346 - ]; 5347 - }) 5348 - sources."node-oauth1-1.3.0" 5349 - sources."node-preload-0.2.1" 5350 - sources."node-releases-2.0.6" 5351 - sources."normalize-path-3.0.0" 5352 - (sources."nyc-15.1.0" // { 5353 - dependencies = [ 5354 - sources."ansi-styles-4.3.0" 5355 - sources."camelcase-5.3.1" 5356 - sources."cliui-6.0.0" 5357 - sources."color-convert-2.0.1" 5358 - sources."color-name-1.1.4" 5359 - sources."decamelize-1.2.0" 5360 - sources."find-up-4.1.0" 5361 - sources."locate-path-5.0.0" 5362 - sources."make-dir-3.1.0" 5363 - sources."p-limit-2.3.0" 5364 - sources."p-locate-4.1.0" 5365 - sources."resolve-from-5.0.0" 5366 - sources."semver-6.3.0" 5367 - sources."wrap-ansi-6.2.0" 5368 - sources."y18n-4.0.3" 5369 - sources."yargs-15.4.1" 5370 - sources."yargs-parser-18.1.3" 5371 - ]; 5372 - }) 5373 - sources."oauth-sign-0.9.0" 5374 - sources."object-get-2.1.1" 5375 - sources."object-hash-1.3.1" 5376 - sources."object-to-spawn-args-2.0.1" 5377 - sources."once-1.4.0" 5378 - sources."optionator-0.9.1" 5379 - sources."p-limit-3.1.0" 5380 - sources."p-locate-5.0.0" 5381 - sources."p-map-3.0.0" 5382 - sources."p-try-2.2.0" 5383 - sources."package-hash-4.0.0" 5384 - (sources."packity-0.3.4" // { 5385 - dependencies = [ 5386 - sources."async-1.4.2" 5387 - sources."commander-2.20.3" 5388 - sources."semver-5.7.1" 5389 - ]; 5390 - }) 5391 - sources."parent-module-1.0.1" 5392 - sources."parse-gitignore-1.0.1" 5393 - sources."parse-ms-2.1.0" 5394 - sources."path-exists-4.0.0" 5395 - sources."path-is-absolute-1.0.1" 5396 - sources."path-key-3.1.1" 5397 - sources."path-parse-1.0.7" 5398 - (sources."path-to-regexp-1.8.0" // { 5399 - dependencies = [ 5400 - sources."isarray-0.0.1" 5401 - ]; 5402 - }) 5403 - sources."pathval-1.1.1" 5404 - sources."performance-now-2.1.0" 5405 - sources."picocolors-1.0.0" 5406 - sources."picomatch-2.3.1" 5407 - sources."pify-3.0.0" 5408 - (sources."pkg-dir-4.2.0" // { 5409 - dependencies = [ 5410 - sources."find-up-4.1.0" 5411 - sources."locate-path-5.0.0" 5412 - sources."p-limit-2.3.0" 5413 - sources."p-locate-4.1.0" 5414 - ]; 5415 - }) 5416 - sources."postman-collection-4.1.1" 5417 - (sources."postman-collection-transformer-4.1.6" // { 5418 - dependencies = [ 5419 - sources."commander-8.3.0" 5420 - ]; 5421 - }) 5422 - sources."postman-jsdoc-theme-0.0.3" 5423 - (sources."postman-request-2.88.1-postman.31" // { 5424 - dependencies = [ 5425 - sources."tough-cookie-2.5.0" 5426 - sources."uuid-3.4.0" 5427 - ]; 5428 - }) 5429 - sources."postman-runtime-7.29.0" 5430 - sources."postman-sandbox-4.0.6" 5431 - sources."postman-url-encoder-3.0.5" 5432 - sources."prelude-ls-1.2.1" 5433 - sources."pretty-ms-7.0.1" 5434 - sources."process-nextick-args-2.0.1" 5435 - sources."process-on-spawn-1.0.0" 5436 - sources."progress-2.0.3" 5437 - sources."propagate-2.0.1" 5438 - sources."pseudomap-1.0.2" 5439 - sources."psl-1.9.0" 5440 - sources."pump-1.0.3" 5441 - sources."punycode-2.1.1" 5442 - sources."q-1.0.1" 5443 - sources."qs-6.5.3" 5444 - sources."rambda-7.4.0" 5445 - sources."randombytes-2.1.0" 5446 - (sources."readable-stream-2.3.7" // { 5447 - dependencies = [ 5448 - sources."safe-buffer-5.1.2" 5449 - ]; 5450 - }) 5451 - sources."readdir-0.0.13" 5452 - sources."readdirp-3.6.0" 5453 - sources."rechoir-0.6.2" 5454 - sources."recursive-readdir-2.2.3" 5455 - (sources."reduce-extract-1.0.0" // { 5456 - dependencies = [ 5457 - sources."array-back-1.0.4" 5458 - sources."test-value-1.1.0" 5459 - ]; 5460 - }) 5461 - sources."reduce-flatten-1.0.1" 5462 - sources."reduce-unique-2.0.1" 5463 - (sources."reduce-without-1.0.1" // { 5464 - dependencies = [ 5465 - sources."array-back-1.0.4" 5466 - sources."test-value-2.1.0" 5467 - ]; 5468 - }) 5469 - sources."regexp-tree-0.1.24" 5470 - sources."regexpp-3.2.0" 5471 - sources."regextras-0.8.0" 5472 - sources."release-zalgo-1.0.0" 5473 - sources."require-directory-2.1.1" 5474 - sources."require-from-string-2.0.2" 5475 - sources."require-main-filename-2.0.0" 5476 - sources."requizzle-0.2.4" 5477 - sources."resolve-1.22.1" 5478 - sources."resolve-from-4.0.0" 5479 - sources."rimraf-3.0.2" 5480 - sources."safe-buffer-5.2.1" 5481 - sources."safe-regex-2.1.1" 5482 - sources."safer-buffer-2.1.2" 5483 - sources."sax-1.2.4" 5484 - sources."semver-7.3.5" 5485 - (sources."serialised-error-1.1.3" // { 5486 - dependencies = [ 5487 - sources."uuid-3.4.0" 5488 - ]; 5489 - }) 5490 - sources."serialize-javascript-6.0.0" 5491 - sources."server-destroy-1.0.1" 5492 - sources."set-blocking-2.0.0" 5493 - sources."shebang-command-2.0.0" 5494 - sources."shebang-regex-3.0.0" 5495 - sources."shelljs-0.8.5" 5496 - sources."sigmund-1.0.1" 5497 - sources."signal-exit-3.0.7" 5498 - (sources."sinon-13.0.2" // { 5499 - dependencies = [ 5500 - sources."has-flag-4.0.0" 5501 - sources."supports-color-7.2.0" 5502 - ]; 5503 - }) 5504 - (sources."slice-ansi-4.0.0" // { 5505 - dependencies = [ 5506 - sources."ansi-styles-4.3.0" 5507 - sources."color-convert-2.0.1" 5508 - sources."color-name-1.1.4" 5509 - ]; 5510 - }) 5511 - (sources."sort-array-4.1.5" // { 5512 - dependencies = [ 5513 - sources."array-back-5.0.0" 5514 - sources."typical-6.0.1" 5515 - ]; 5516 - }) 5517 - sources."source-map-0.6.1" 5518 - (sources."spawn-wrap-2.0.0" // { 5519 - dependencies = [ 5520 - sources."make-dir-3.1.0" 5521 - sources."semver-6.3.0" 5522 - ]; 5523 - }) 5524 - sources."spdx-exceptions-2.3.0" 5525 - sources."spdx-expression-parse-3.0.1" 5526 - sources."spdx-license-ids-3.0.12" 5527 - sources."split-ca-1.0.1" 5528 - sources."sprintf-js-1.0.3" 5529 - sources."sshpk-1.17.0" 5530 - sources."stack-trace-0.0.9" 5531 - (sources."stream-connect-1.0.2" // { 5532 - dependencies = [ 5533 - sources."array-back-1.0.4" 5534 - ]; 5535 - }) 5536 - sources."stream-length-1.0.2" 5537 - sources."stream-via-1.0.4" 5538 - sources."string-width-4.2.3" 5539 - (sources."string_decoder-1.1.1" // { 5540 - dependencies = [ 5541 - sources."safe-buffer-5.1.2" 5542 - ]; 5543 - }) 5544 - sources."strip-ansi-6.0.1" 5545 - sources."strip-bom-4.0.0" 5546 - sources."strip-json-comments-3.1.1" 5547 - sources."supports-color-5.5.0" 5548 - sources."supports-preserve-symlinks-flag-1.0.0" 5549 - (sources."table-6.8.1" // { 5550 - dependencies = [ 5551 - sources."ajv-8.11.2" 5552 - sources."json-schema-traverse-1.0.0" 5553 - ]; 5554 - }) 5555 - (sources."table-layout-0.4.5" // { 5556 - dependencies = [ 5557 - sources."array-back-2.0.0" 5558 - ]; 5559 - }) 5560 - sources."taffydb-2.6.2" 5561 - (sources."tar-fs-1.16.3" // { 5562 - dependencies = [ 5563 - sources."mkdirp-0.5.6" 5564 - ]; 5565 - }) 5566 - sources."tar-stream-1.6.2" 5567 - sources."teleport-javascript-1.0.0" 5568 - sources."temp-path-1.0.0" 5569 - sources."test-exclude-6.0.0" 5570 - (sources."test-value-3.0.0" // { 5571 - dependencies = [ 5572 - sources."array-back-2.0.0" 5573 - ]; 5574 - }) 5575 - sources."text-table-0.2.0" 5576 - sources."through-2.3.8" 5577 - sources."to-buffer-1.1.1" 5578 - sources."to-fast-properties-2.0.0" 5579 - sources."to-regex-range-5.0.1" 5580 - sources."tough-cookie-3.0.1" 5581 - sources."tweetnacl-0.14.5" 5582 - sources."type-check-0.4.0" 5583 - sources."type-detect-4.0.8" 5584 - sources."type-fest-0.20.2" 5585 - sources."typedarray-0.0.6" 5586 - sources."typedarray-to-buffer-3.1.5" 5587 - sources."typical-2.6.1" 5588 - sources."uc.micro-1.0.6" 5589 - sources."uglify-js-3.17.4" 5590 - sources."underscore-1.12.1" 5591 - sources."update-browserslist-db-1.0.10" 5592 - sources."uri-js-4.4.1" 5593 - sources."util-deprecate-1.0.2" 5594 - sources."uuid-8.3.2" 5595 - sources."uvm-2.0.2" 5596 - sources."v8-compile-cache-2.3.0" 5597 - sources."verror-1.10.0" 5598 - sources."walk-back-5.1.0" 5599 - sources."which-2.0.2" 5600 - sources."which-module-2.0.0" 5601 - (sources."winston-2.4.7" // { 5602 - dependencies = [ 5603 - sources."async-2.6.4" 5604 - sources."colors-1.0.3" 5605 - ]; 5606 - }) 5607 - sources."word-wrap-1.2.3" 5608 - sources."wordwrap-1.0.0" 5609 - sources."wordwrapjs-3.0.0" 5610 - sources."workerpool-6.2.0" 5611 - (sources."wrap-ansi-7.0.0" // { 5612 - dependencies = [ 5613 - sources."ansi-styles-4.3.0" 5614 - sources."color-convert-2.0.1" 5615 - sources."color-name-1.1.4" 5616 - ]; 5617 - }) 5618 - sources."wrappy-1.0.2" 5619 - sources."write-file-atomic-3.0.3" 5620 - (sources."xml2js-0.4.23" // { 5621 - dependencies = [ 5622 - sources."xmlbuilder-11.0.1" 5623 - ]; 5624 - }) 5625 - sources."xmlbuilder-15.1.1" 5626 - sources."xmlcreate-2.0.4" 5627 - sources."xtend-4.0.2" 5628 - sources."y18n-5.0.8" 5629 - sources."yallist-4.0.0" 5630 - sources."yargs-16.2.0" 5631 - sources."yargs-parser-20.2.4" 5632 - sources."yargs-unparser-2.0.0" 5633 - sources."yocto-queue-0.1.0" 5634 - ]; 5635 - buildInputs = globalBuildInputs; 5636 - meta = { 5637 - description = "Command-line companion utility for Postman"; 5638 - homepage = "https://github.com/postmanlabs/newman"; 5639 - license = "Apache-2.0"; 5640 - }; 5641 - production = false; 5642 - bypassCache = true; 5643 - reconstructLock = true; 5644 - }; 5645 - }
-3
pkgs/development/web/newman/package.json
··· 1 - [ 2 - "newman" 3 - ]
+7
pkgs/development/web/nodejs/fix-npm-patch-paths.sh
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell -i bash -p gnused 3 + 4 + sed -i "s| a/node_modules| a/deps/npm/node_modules|" node-npm-build-npm-package-logic.patch 5 + sed -i "s| b/node_modules| b/deps/npm/node_modules|" node-npm-build-npm-package-logic.patch 6 + sed -i "s| a/workspaces| a/deps/npm/node_modules/@npmcli|" node-npm-build-npm-package-logic.patch 7 + sed -i "s| b/workspaces| b/deps/npm/node_modules/@npmcli|" node-npm-build-npm-package-logic.patch
+95
pkgs/development/web/nodejs/node-npm-build-npm-package-logic-node16.patch
··· 1 + This patch is based off of npm tag v8.19.4. 2 + 3 + This introduces fixes for 4 issues: 4 + 5 + 1. When node-gyp is included as a dependency in a project, any scripts that run it will not use the copy included in Node. This is problematic because we patch node-gyp to work without xcbuild on Darwin, leading to these packages failing to build with a sandbox on Darwin. 6 + 2. When a Git dependency contains install scripts, it has to be built just like any other package. Thus, we need to patch shebangs appropriately, just like in npmConfigHook. 7 + 3. We get useless warnings that clog up logs when using a v1 lockfile, so we silence them. 8 + 4. npm looks at a hidden lockfile to determine if files have binaries to link into `node_modules/.bin`. When using a v1 lockfile offline, this lockfile does not contain enough info, leading to binaries for packages such as Webpack not being available to scripts. We used to work around this by making npm ignore the hidden lockfile by creating a file, but now we just disable the code path entirely. 9 + 10 + To update: 11 + 1. Run `git diff` from an npm checkout 12 + 2. Run `fix-npm-patch-paths.sh` 13 + 3. Include/update this frontmatter, please! 14 + 15 + diff --git a/deps/npm/node_modules/@npmcli/run-script/lib/set-path.js b/deps/npm/node_modules/@npmcli/run-script/lib/set-path.js 16 + index c59c270d9..98785192f 100644 17 + --- a/deps/npm/node_modules/@npmcli/run-script/lib/set-path.js 18 + +++ b/deps/npm/node_modules/@npmcli/run-script/lib/set-path.js 19 + @@ -12,7 +12,10 @@ const setPATH = (projectPath, binPaths, env) => { 20 + .reduce((set, p) => set.concat(p.filter(concatted => !set.includes(concatted))), []) 21 + .join(delimiter) 22 + 23 + - const pathArr = [] 24 + + // Ensure when using buildNpmPackage hooks that Node.js' 25 + + // bundled copy of node-gyp is used, instead of any copy 26 + + // pulled in as a dependency. 27 + + const pathArr = process.env['NIX_NODEJS_BUILDNPMPACKAGE'] ? [nodeGypPath, PATH] : []; 28 + if (binPaths) { 29 + pathArr.push(...binPaths) 30 + } 31 + @@ -26,7 +29,8 @@ const setPATH = (projectPath, binPaths, env) => { 32 + pp = p 33 + p = dirname(p) 34 + } while (p !== pp) 35 + - pathArr.push(nodeGypPath, PATH) 36 + + if (!process.env['NIX_NODEJS_BUILDNPMPACKAGE']) { pathArr.push(nodeGypPath, PATH) } 37 + + 38 + 39 + const pathVal = pathArr.join(delimiter) 40 + 41 + diff --git a/deps/npm/node_modules/pacote/lib/git.js b/deps/npm/node_modules/pacote/lib/git.js 42 + index c4819b4fd..7efbeef05 100644 43 + --- a/deps/npm/node_modules/pacote/lib/git.js 44 + +++ b/deps/npm/node_modules/pacote/lib/git.js 45 + @@ -186,6 +186,24 @@ class GitFetcher extends Fetcher { 46 + } 47 + noPrepare.push(this.resolved) 48 + 49 + + if (process.env['NIX_NODEJS_BUILDNPMPACKAGE']) { 50 + + const spawn = require('@npmcli/promise-spawn') 51 + + 52 + + const npmWithNixFlags = (args, cmd) => spawn('bash', ['-c', 'npm ' + args + ` $npm${cmd}Flags "$\{npm${cmd}FlagsArray[@]}" $npmFlags "$\{npmFlagsArray[@]}"`], { cwd: dir, env: { ...process.env, _PACOTE_NO_PREPARE_: noPrepare.join('\n') } }, { message: `\`npm ${args}\` failed` }) 53 + + const patchShebangs = () => spawn('bash', ['-c', 'source $stdenv/setup; patchShebangs node_modules'], { cwd: dir }) 54 + + 55 + + // the DirFetcher will do its own preparation to run the prepare scripts 56 + + // All we have to do is put the deps in place so that it can succeed. 57 + + // 58 + + // We ignore this.npmConfig to maintain an environment that's as close 59 + + // to the rest of the build as possible. 60 + + return spawn('bash', ['-c', '$prefetchNpmDeps --fixup-lockfile package-lock.json'], { cwd: dir }) 61 + + .then(() => npmWithNixFlags('ci --ignore-scripts', 'Install')) 62 + + .then(patchShebangs) 63 + + .then(() => npmWithNixFlags('rebuild', 'Rebuild')) 64 + + .then(patchShebangs) 65 + + } 66 + + 67 + // the DirFetcher will do its own preparation to run the prepare scripts 68 + // All we have to do is put the deps in place so that it can succeed. 69 + return npm( 70 + diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js 71 + index e9a8720d7..b29ad0185 100644 72 + --- a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js 73 + +++ b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js 74 + @@ -744,7 +744,7 @@ This is a one-time fix-up, please be patient... 75 + node.package = { ...mani, _id: `${mani.name}@${mani.version}` } 76 + } catch (er) { 77 + const warning = `Could not fetch metadata for ${name}@${id}` 78 + - log.warn(heading, warning, er) 79 + + if (!process.env['NIX_NODEJS_BUILDNPMPACKAGE']) { log.warn(heading, warning, er) } 80 + } 81 + this.finishTracker(t) 82 + }) 83 + diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js 84 + index 7ab65f5b0..12f563a50 100644 85 + --- a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js 86 + +++ b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js 87 + @@ -143,7 +143,7 @@ module.exports = cls => class ActualLoader extends cls { 88 + this[_actualTree].assertRootOverrides() 89 + 90 + // if forceActual is set, don't even try the hidden lockfile 91 + - if (!forceActual) { 92 + + if (!forceActual && !process.env['NIX_NODEJS_BUILDNPMPACKAGE']) { 93 + // Note: hidden lockfile will be rejected if it's not the latest thing 94 + // in the folder, or if any of the entries in the hidden lockfile are 95 + // missing.
+95
pkgs/development/web/nodejs/node-npm-build-npm-package-logic.patch
··· 1 + This patch is based off of npm tag v9.1.5. 2 + 3 + This introduces fixes for 4 issues: 4 + 5 + 1. When node-gyp is included as a dependency in a project, any scripts that run it will not use the copy included in Node. This is problematic because we patch node-gyp to work without xcbuild on Darwin, leading to these packages failing to build with a sandbox on Darwin. 6 + 2. When a Git dependency contains install scripts, it has to be built just like any other package. Thus, we need to patch shebangs appropriately, just like in npmConfigHook. 7 + 3. We get useless warnings that clog up logs when using a v1 lockfile, so we silence them. 8 + 4. npm looks at a hidden lockfile to determine if files have binaries to link into `node_modules/.bin`. When using a v1 lockfile offline, this lockfile does not contain enough info, leading to binaries for packages such as Webpack not being available to scripts. We used to work around this by making npm ignore the hidden lockfile by creating a file, but now we just disable the code path entirely. 9 + 10 + To update: 11 + 1. Run `git diff` from an npm checkout 12 + 2. Run `fix-npm-patch-paths.sh` 13 + 3. Include/update this frontmatter, please! 14 + 15 + diff --git a/deps/npm/node_modules/@npmcli/run-script/lib/set-path.js b/deps/npm/node_modules/@npmcli/run-script/lib/set-path.js 16 + index c59c270d9..98785192f 100644 17 + --- a/deps/npm/node_modules/@npmcli/run-script/lib/set-path.js 18 + +++ b/deps/npm/node_modules/@npmcli/run-script/lib/set-path.js 19 + @@ -12,7 +12,10 @@ const setPATH = (projectPath, binPaths, env) => { 20 + .reduce((set, p) => set.concat(p.filter(concatted => !set.includes(concatted))), []) 21 + .join(delimiter) 22 + 23 + - const pathArr = [] 24 + + // Ensure when using buildNpmPackage hooks that Node.js' 25 + + // bundled copy of node-gyp is used, instead of any copy 26 + + // pulled in as a dependency. 27 + + const pathArr = process.env['NIX_NODEJS_BUILDNPMPACKAGE'] ? [nodeGypPath, PATH] : []; 28 + if (binPaths) { 29 + pathArr.push(...binPaths) 30 + } 31 + @@ -26,7 +29,8 @@ const setPATH = (projectPath, binPaths, env) => { 32 + pp = p 33 + p = dirname(p) 34 + } while (p !== pp) 35 + - pathArr.push(nodeGypPath, PATH) 36 + + if (!process.env['NIX_NODEJS_BUILDNPMPACKAGE']) { pathArr.push(nodeGypPath, PATH) } 37 + + 38 + 39 + const pathVal = pathArr.join(delimiter) 40 + 41 + diff --git a/deps/npm/node_modules/pacote/lib/git.js b/deps/npm/node_modules/pacote/lib/git.js 42 + index 1fa8b1f96..a026bb50d 100644 43 + --- a/deps/npm/node_modules/pacote/lib/git.js 44 + +++ b/deps/npm/node_modules/pacote/lib/git.js 45 + @@ -188,6 +188,24 @@ class GitFetcher extends Fetcher { 46 + } 47 + noPrepare.push(this.resolved) 48 + 49 + + if (process.env['NIX_NODEJS_BUILDNPMPACKAGE']) { 50 + + const spawn = require('@npmcli/promise-spawn') 51 + + 52 + + const npmWithNixFlags = (args, cmd) => spawn('bash', ['-c', 'npm ' + args + ` $npm${cmd}Flags "$\{npm${cmd}FlagsArray[@]}" $npmFlags "$\{npmFlagsArray[@]}"`], { cwd: dir, env: { ...process.env, _PACOTE_NO_PREPARE_: noPrepare.join('\n') } }, { message: `\`npm ${args}\` failed` }) 53 + + const patchShebangs = () => spawn('bash', ['-c', 'source $stdenv/setup; patchShebangs node_modules'], { cwd: dir }) 54 + + 55 + + // the DirFetcher will do its own preparation to run the prepare scripts 56 + + // All we have to do is put the deps in place so that it can succeed. 57 + + // 58 + + // We ignore this.npmConfig to maintain an environment that's as close 59 + + // to the rest of the build as possible. 60 + + return spawn('bash', ['-c', '$prefetchNpmDeps --fixup-lockfile package-lock.json'], { cwd: dir }) 61 + + .then(() => npmWithNixFlags('ci --ignore-scripts', 'Install')) 62 + + .then(patchShebangs) 63 + + .then(() => npmWithNixFlags('rebuild', 'Rebuild')) 64 + + .then(patchShebangs) 65 + + } 66 + + 67 + // the DirFetcher will do its own preparation to run the prepare scripts 68 + // All we have to do is put the deps in place so that it can succeed. 69 + return npm( 70 + diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js 71 + index 2ea66ac33..25e671318 100644 72 + --- a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js 73 + +++ b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js 74 + @@ -740,7 +740,7 @@ This is a one-time fix-up, please be patient... 75 + node.package = { ...mani, _id: `${mani.name}@${mani.version}` } 76 + } catch (er) { 77 + const warning = `Could not fetch metadata for ${name}@${id}` 78 + - log.warn(heading, warning, er) 79 + + if (!process.env['NIX_NODEJS_BUILDNPMPACKAGE']) { log.warn(heading, warning, er) } 80 + } 81 + this.finishTracker(t) 82 + }) 83 + diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js 84 + index 6c3f917c6..ec21d2cc4 100644 85 + --- a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js 86 + +++ b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js 87 + @@ -147,7 +147,7 @@ module.exports = cls => class ActualLoader extends cls { 88 + this[_actualTree].assertRootOverrides() 89 + 90 + // if forceActual is set, don't even try the hidden lockfile 91 + - if (!forceActual) { 92 + + if (!forceActual && !process.env['NIX_NODEJS_BUILDNPMPACKAGE']) { 93 + // Note: hidden lockfile will be rejected if it's not the latest thing 94 + // in the folder, or if any of the entries in the hidden lockfile are 95 + // missing.
+1
pkgs/development/web/nodejs/v16.nix
··· 15 15 patches = [ 16 16 ./disable-darwin-v8-system-instrumentation.patch 17 17 ./bypass-darwin-xcrun-node16.patch 18 + ./node-npm-build-npm-package-logic-node16.patch 18 19 ] ++ npmPatches; 19 20 }
+2 -1
pkgs/development/web/nodejs/v18.nix
··· 1 - { callPackage, fetchpatch, openssl, python3, enableNpm ? true }: 1 + { callPackage, openssl, python3, enableNpm ? true }: 2 2 3 3 let 4 4 buildNodejs = callPackage ./nodejs.nix { ··· 15 15 ./disable-darwin-v8-system-instrumentation.patch 16 16 ./bypass-darwin-xcrun-node16.patch 17 17 ./revert-arm64-pointer-auth.patch 18 + ./node-npm-build-npm-package-logic.patch 18 19 ]; 19 20 }
+2 -1
pkgs/development/web/nodejs/v20.nix
··· 1 - { callPackage, openssl, fetchpatch, python3, enableNpm ? true }: 1 + { callPackage, openssl, python3, enableNpm ? true }: 2 2 3 3 let 4 4 buildNodejs = callPackage ./nodejs.nix { ··· 15 15 ./revert-arm64-pointer-auth.patch 16 16 ./disable-darwin-v8-system-instrumentation-node19.patch 17 17 ./bypass-darwin-xcrun-node16.patch 18 + ./node-npm-build-npm-package-logic.patch 18 19 ]; 19 20 }
+32
pkgs/os-specific/darwin/asitop/default.nix
··· 1 + { lib 2 + , python3 3 + }: 4 + 5 + python3.pkgs.buildPythonApplication rec { 6 + pname = "asitop"; 7 + version = "0.0.23"; 8 + format = "setuptools"; 9 + 10 + disabled = python3.pythonOlder "3.7"; 11 + 12 + src = python3.pkgs.fetchPypi { 13 + inherit pname version; 14 + hash = "sha256-BNncgQRNAd6Pgur5D1xVQi3LSsijSAYIYvhsuiVyi9Q="; 15 + }; 16 + 17 + # has no tests 18 + doCheck = false; 19 + 20 + propagatedBuildInputs = with python3.pkgs; [ 21 + dashing 22 + psutil 23 + ]; 24 + 25 + meta = with lib; { 26 + homepage = "https://github.com/tlkh/asitop"; 27 + description = "Perf monitoring CLI tool for Apple Silicon"; 28 + platforms = platforms.darwin; 29 + license = licenses.mit; 30 + maintainers = with maintainers; [ juliusrickert ]; 31 + }; 32 + }
+9
pkgs/os-specific/linux/ddcci/default.nix
··· 12 12 hash = "sha256-1Z6V/AorD4aslLKaaCZpmkD2OiQnmpu3iroOPlNPtLE="; 13 13 }; 14 14 15 + patches = [ 16 + # https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux/-/merge_requests/12 17 + (fetchpatch { 18 + name = "kernel-6.2-6.3.patch"; 19 + url = "https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux/-/commit/1ef6079679acc455f75057dd7097b5b494a241dc.patch"; 20 + hash = "sha256-2C2leS20egGY3J2tq96gsUQXYw13wBJ3ZWrdIXxmEYs="; 21 + }) 22 + ]; 23 + 15 24 hardeningDisable = [ "pic" ]; 16 25 17 26 nativeBuildInputs = kernel.moduleBuildDependencies;
+8 -2
pkgs/os-specific/linux/minimal-bootstrap/default.nix
··· 15 15 16 16 coreutils = callPackage ./coreutils { tinycc = tinycc-mes; }; 17 17 18 + gnumake = callPackage ./gnumake { tinycc = tinycc-mes; }; 19 + 18 20 gnupatch = callPackage ./gnupatch { tinycc = tinycc-mes; }; 19 21 20 - gnumake = callPackage ./gnumake { tinycc = tinycc-mes; }; 22 + gnused = callPackage ./gnused { 23 + bash = bash_2_05; 24 + tinycc = tinycc-mes; 25 + }; 21 26 22 27 ln-boot = callPackage ./ln-boot { }; 23 28 ··· 39 34 inherit (callPackage ./utils.nix { }) fetchurl derivationWithMeta writeTextFile writeText; 40 35 41 36 test = kaem.runCommand "minimal-bootstrap-test" {} '' 37 + echo ${bash_2_05.tests.get-version} 38 + echo ${gnused.tests.get-version} 42 39 echo ${mes.compiler.tests.get-version} 43 40 echo ${tinycc-mes.compiler.tests.chain} 44 - echo ${bash_2_05.tests.get-version} 45 41 mkdir ''${out} 46 42 ''; 47 43 })
+64
pkgs/os-specific/linux/minimal-bootstrap/gnused/default.nix
··· 1 + { lib 2 + , fetchurl 3 + , bash 4 + , tinycc 5 + , gnumake 6 + }: 7 + let 8 + pname = "gnused"; 9 + # last version that can be compiled with mes-libc 10 + version = "4.0.9"; 11 + 12 + src = fetchurl { 13 + url = "mirror://gnu/sed/sed-${version}.tar.gz"; 14 + sha256 = "0006gk1dw2582xsvgx6y6rzs9zw8b36rhafjwm288zqqji3qfrf3"; 15 + }; 16 + 17 + # Thanks to the live-bootstrap project! 18 + # See https://github.com/fosslinux/live-bootstrap/blob/1bc4296091c51f53a5598050c8956d16e945b0f5/sysa/sed-4.0.9/sed-4.0.9.kaem 19 + makefile = fetchurl { 20 + url = "https://github.com/fosslinux/live-bootstrap/raw/1bc4296091c51f53a5598050c8956d16e945b0f5/sysa/sed-4.0.9/mk/main.mk"; 21 + sha256 = "0w1f5ri0g5zla31m6l6xyzbqwdvandqfnzrsw90dd6ak126w3mya"; 22 + }; 23 + in 24 + bash.runCommand "${pname}-${version}" { 25 + inherit pname version; 26 + 27 + nativeBuildInputs = [ 28 + tinycc.compiler 29 + gnumake 30 + ]; 31 + 32 + passthru.tests.get-version = result: 33 + bash.runCommand "${pname}-get-version-${version}" {} '' 34 + ${result}/bin/sed --version 35 + mkdir ''${out} 36 + ''; 37 + 38 + meta = with lib; { 39 + description = "GNU sed, a batch stream editor"; 40 + homepage = "https://www.gnu.org/software/sed"; 41 + license = licenses.gpl3Plus; 42 + maintainers = teams.minimal-bootstrap.members; 43 + mainProgram = "sed"; 44 + platforms = platforms.unix; 45 + }; 46 + } '' 47 + # Unpack 48 + ungz --file ${src} --output sed.tar 49 + untar --file sed.tar 50 + rm sed.tar 51 + cd sed-${version} 52 + 53 + # Configure 54 + cp ${makefile} Makefile 55 + catm config.h 56 + 57 + # Build 58 + make \ 59 + CC="tcc -B ${tinycc.libs}/lib" \ 60 + LIBC=mes 61 + 62 + # Install 63 + make install PREFIX=$out 64 + ''
+3 -3
pkgs/os-specific/linux/rtl8814au/default.nix
··· 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "rtl8814au"; 5 - version = "${kernel.version}-unstable-2022-11-09"; 5 + version = "${kernel.version}-unstable-2023-03-21"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "morrownr"; 9 9 repo = "8814au"; 10 - rev = "932df6f7da6c3a384cf91f33eb195097eb0cb6c5"; 11 - hash = "sha256-nMQiT59IIhzpePWWDiyCQFmYLWM42L/mG0BKsbEwreo="; 10 + rev = "6f80699e68fd2a9f2bba3f1a56ca06d1b7992bd8"; 11 + hash = "sha256-7dv+8vNI1OLLA4SdZQPL87pTS9HR6mGijzWo9WL7vc0="; 12 12 }; 13 13 14 14 nativeBuildInputs = kernel.moduleBuildDependencies;
+3 -3
pkgs/os-specific/linux/rtl8821au/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "rtl8821au"; 5 - version = "${kernel.version}-unstable-2022-12-22"; 5 + version = "${kernel.version}-unstable-2023-03-22"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "morrownr"; 9 9 repo = "8821au-20210708"; 10 - rev = "73f2036bc6c8666555fa453d267d3732392c1e00"; 11 - sha256 = "sha256-wx7xQBCfLu3UWB7ghp8dZ7OB2MFd5i8X0/ygyvW2K50="; 10 + rev = "a133274b0532c17318e8790b771566f4a6b12b7c"; 11 + hash = "sha256-xn2cmbtqQhLM9qLCEvVhCuoCa7y8LM4sevPqv3a6pBw="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ bc nukeReferences ] ++ kernel.moduleBuildDependencies;
+3 -6
pkgs/os-specific/linux/rtl88xxau-aircrack/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, kernel }: 2 2 3 - let 4 - rev = "ee299797bcd54d5b8c58d2da8576c54cea1a03a2"; 5 - in 6 3 stdenv.mkDerivation rec { 7 4 pname = "rtl88xxau-aircrack"; 8 - version = "${kernel.version}-${builtins.substring 0 6 rev}"; 5 + version = "${kernel.version}-unstable-02-05-2023"; 9 6 10 7 src = fetchFromGitHub { 11 8 owner = "aircrack-ng"; 12 9 repo = "rtl8812au"; 13 - inherit rev; 14 - sha256 = "sha256-JUyUOqLMD9nSo6i87K/6Ljp+pWSqSBz/IZiFWu03rQw="; 10 + rev = "35308f4dd73e77fa572c48867cce737449dd8548"; 11 + hash = "sha256-0kHrNsTKRl/xTQpDkIOYqTtcHlytXhXX8h+6guvLmLI="; 15 12 }; 16 13 17 14 nativeBuildInputs = kernel.moduleBuildDependencies;
+10 -1
pkgs/os-specific/linux/xone/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, kernel, fetchurl }: 1 + { stdenv, lib, fetchFromGitHub, kernel, fetchurl, fetchpatch }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "xone"; ··· 10 10 rev = "refs/tags/v${version}"; 11 11 sha256 = "sha256-h+j4xCV9R6hp9trsv1NByh9m0UBafOz42ZuYUjclILE="; 12 12 }; 13 + 14 + patches = [ 15 + # Fix build on kernel 6.3 16 + (fetchpatch { 17 + name = "kernel-6.3.patch"; 18 + url = "https://github.com/medusalix/xone/commit/bbf0dcc484c3f5611f4e375da43e0e0ef08f3d18.patch"; 19 + hash = "sha256-A2OzRRk4XT++rS6k6EIyiPy/LJptvVRUxoP7CIGrPWU="; 20 + }) 21 + ]; 13 22 14 23 setSourceRoot = '' 15 24 export sourceRoot=$(pwd)/source
+1 -1
pkgs/servers/caddy/default.nix
··· 64 64 homepage = "https://caddyserver.com"; 65 65 description = "Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS"; 66 66 license = licenses.asl20; 67 - maintainers = with maintainers; [ Br1ght0ne indeednotjames techknowlogick ]; 67 + maintainers = with maintainers; [ Br1ght0ne emilylange techknowlogick ]; 68 68 }; 69 69 }
+1 -1
pkgs/servers/caddy/xcaddy/default.nix
··· 30 30 homepage = "https://github.com/caddyserver/xcaddy"; 31 31 description = "Build Caddy with plugins"; 32 32 license = licenses.asl20; 33 - maintainers = with maintainers; [ tjni indeednotjames ]; 33 + maintainers = with maintainers; [ tjni emilylange ]; 34 34 }; 35 35 }
+4 -1
pkgs/servers/gemini/stargazer/default.nix
··· 1 1 { lib 2 + , stdenv 2 3 , fetchFromSourcehut 3 4 , rustPlatform 4 5 , installShellFiles 5 6 , scdoc 7 + , Security 6 8 }: 7 9 8 10 rustPlatform.buildRustPackage rec { ··· 24 22 25 23 nativeBuildInputs = [ installShellFiles scdoc ]; 26 24 25 + buildInputs = lib.optional stdenv.isDarwin Security; 26 + 27 27 postInstall = '' 28 28 scdoc < doc/stargazer.scd > stargazer.1 29 29 scdoc < doc/stargazer-ini.scd > stargazer.ini.5 ··· 40 36 license = licenses.agpl3Plus; 41 37 changelog = "https://git.sr.ht/~zethra/stargazer/refs/${version}"; 42 38 maintainers = with maintainers; [ gaykitty ]; 43 - platforms = platforms.linux; 44 39 }; 45 40 }
+1 -1
pkgs/servers/ldap/lldap/default.nix
··· 109 109 changelog = "https://github.com/lldap/lldap/blob/v${lldap.version}/CHANGELOG.md"; 110 110 license = licenses.gpl3Only; 111 111 platforms = platforms.linux; 112 - maintainers = with maintainers; [ indeednotjames bendlas ]; 112 + maintainers = with maintainers; [ emilylange bendlas ]; 113 113 }; 114 114 })
+1 -1
pkgs/servers/monitoring/grafana-agent/default.nix
··· 71 71 description = "A lightweight subset of Prometheus and more, optimized for Grafana Cloud"; 72 72 license = licenses.asl20; 73 73 homepage = "https://grafana.com/products/cloud"; 74 - maintainers = with maintainers; [ flokli indeednotjames ]; 74 + maintainers = with maintainers; [ flokli emilylange ]; 75 75 }; 76 76 }
+1 -1
pkgs/servers/monitoring/laurel/default.nix
··· 25 25 homepage = "https://github.com/threathunters-io/laurel"; 26 26 changelog = "https://github.com/threathunters-io/laurel/releases/tag/v${version}"; 27 27 license = licenses.gpl3Plus; 28 - maintainers = with maintainers; [ indeednotjames ]; 28 + maintainers = with maintainers; [ emilylange ]; 29 29 platforms = platforms.linux; 30 30 }; 31 31 }
+1 -1
pkgs/servers/monitoring/loki/default.nix
··· 55 55 license = with licenses; [ agpl3Only asl20 ]; 56 56 homepage = "https://grafana.com/oss/loki/"; 57 57 changelog = "https://github.com/grafana/loki/releases/tag/v${version}"; 58 - maintainers = with maintainers; [ willibutz globin mmahut indeednotjames ]; 58 + maintainers = with maintainers; [ willibutz globin mmahut emilylange ]; 59 59 }; 60 60 }
+3 -3
pkgs/servers/web-apps/searxng/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "searxng"; 8 - version = "unstable-2023-03-13"; 8 + version = "unstable-2023-05-19"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = pname; 12 12 repo = pname; 13 - rev = "295c87a926c3deb1e438234550a9d8fbbaad17fa"; 14 - sha256 = "sha256-ItPFUyyuctx/yyMVUn5Ez9f+taNiV6FR0q9wz1jwk8M="; 13 + rev = "d867bf17e6d2f9a7c83c9a1ffafda5184a24c0e3"; 14 + sha256 = "sha256-W7/8/3FzwErPkRlfuyqajova6LRKarANPtc6L/z20CI="; 15 15 }; 16 16 17 17 postPatch = ''
+58 -45
pkgs/tools/admin/elasticsearch-curator/default.nix
··· 1 - { lib, fetchFromGitHub, python3 }: 1 + { lib 2 + , fetchFromGitHub 3 + , python3 4 + }: 2 5 3 - let 4 - python = python3.override { 5 - packageOverrides = self: super: { 6 - click = super.click.overridePythonAttrs (old: rec { 7 - version = "7.1.2"; 8 - src = old.src.override { 9 - inherit version; 10 - hash = "sha256-0rUlXHxjSbwb0eWeCM0SrLvWPOZJ8liHVXg6qU37axo="; 11 - }; 12 - }); 13 - requests-aws4auth = super.requests-aws4auth.overridePythonAttrs (old: { 14 - doCheck = false; # requires click>=8.0 15 - }); 16 - }; 17 - }; 18 - in python.pkgs.buildPythonApplication rec { 19 - pname = "elasticsearch-curator"; 20 - version = "5.8.4"; 21 - 22 - format = "setuptools"; 6 + python3.pkgs.buildPythonApplication rec { 7 + pname = "elasticsearch-curator"; 8 + version = "8.0.4"; 9 + format = "pyproject"; 23 10 24 11 src = fetchFromGitHub { 25 12 owner = "elastic"; 26 13 repo = "curator"; 27 - rev = "v${version}"; 28 - hash = "sha256-wSfd52jebUkgF5xhjcoUjI7j46eJF33pVb4Wrybq44g="; 14 + rev = "refs/tags/v${version}"; 15 + hash = "sha256-FPp2BpfYsmNwwevYQ6EH3N1q0TjyeEsBeDM9EUbLl+Q="; 29 16 }; 30 17 31 - postPatch = '' 32 - substituteInPlace setup.cfg \ 33 - --replace "urllib3==1.26.4" "urllib3" 34 - substituteInPlace setup.py \ 35 - --replace "urllib3==1.26.4" "urllib3" \ 36 - --replace "pyyaml==5.4.1" "pyyaml" 37 - ''; 38 - 39 - propagatedBuildInputs = with python.pkgs; [ 40 - elasticsearch 41 - urllib3 42 - requests 43 - boto3 44 - requests-aws4auth 45 - click 46 - pyyaml 47 - voluptuous 48 - certifi 49 - six 18 + pythonRelaxDeps = [ 19 + "click" 20 + "ecs-logging" 21 + "elasticsearch8" 22 + "es_client" 23 + "pyyaml" 50 24 ]; 51 25 52 - nativeCheckInputs = with python.pkgs; [ 26 + nativeBuildInputs = with python3.pkgs; [ 27 + hatchling 28 + pythonRelaxDepsHook 29 + ]; 30 + 31 + propagatedBuildInputs = with python3.pkgs; [ 32 + certifi 33 + click 34 + ecs-logging 35 + elasticsearch8 36 + es-client 37 + pyyaml 38 + six 39 + voluptuous 40 + ]; 41 + 42 + nativeCheckInputs = with python3.pkgs; [ 53 43 mock 44 + requests 54 45 pytestCheckHook 55 46 ]; 56 47 57 48 disabledTestPaths = [ 58 - "test/integration" # requires running elasticsearch 49 + # Test requires running elasticsearch 50 + "tests/integration/test_alias.py" 51 + "tests/integration/test_allocation.py" 52 + "tests/integration/test_cli.py" 53 + "tests/integration/test_close.py" 54 + "tests/integration/test_clusterrouting.py" 55 + "tests/integration/test_count_pattern.py" 56 + "tests/integration/test_create_index.py" 57 + "tests/integration/test_datemath.py" 58 + "tests/integration/test_delete_indices.py" 59 + "tests/integration/test_delete_snapshots.py" 60 + "tests/integration/test_delete_snapshots.py" 61 + "tests/integration/test_es_repo_mgr.py" 62 + "tests/integration/test_forcemerge.py" 63 + "tests/integration/test_integrations.py" 64 + "tests/integration/test_open.py" 65 + "tests/integration/test_reindex.py" 66 + "tests/integration/test_replicas.py" 67 + "tests/integration/test_restore.py" 68 + "tests/integration/test_rollover.py" 69 + "tests/integration/test_shrink.py" 70 + "tests/integration/test_snapshot.py" 59 71 ]; 60 72 61 73 disabledTests = [ 62 - # access network 74 + # Test require access network 63 75 "test_api_key_not_set" 64 76 "test_api_key_set" 65 77 ]; ··· 92 80 93 81 * Perform various actions on the items which remain in the actionable list. 94 82 ''; 83 + changelog = "https://github.com/elastic/curator/releases/tag/v${version}"; 95 84 maintainers = with maintainers; [ basvandijk ]; 96 85 }; 97 86 }
+2 -2
pkgs/tools/audio/volctl/default.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "volctl"; 5 - version = "0.9.2"; 5 + version = "0.9.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "buzz"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ill0rwqrgAH7lbzh86DQc1Q71lkYh8PCKZvi4XadsW8="; 11 + sha256 = "sha256-jzS97KV17wKeBI6deKE4rEj5lvqC38fq1JGundHn2So="; 12 12 }; 13 13 14 14 postPatch = ''
+3 -3
pkgs/tools/misc/chezmoi/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "chezmoi"; 9 - version = "2.33.5"; 9 + version = "2.33.6"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "twpayne"; 13 13 repo = "chezmoi"; 14 14 rev = "v${version}"; 15 - hash = "sha256-/Dh410wloqwo6dC9YP4Ufr6E56dnHoi48QSiYMSqml0="; 15 + hash = "sha256-tBEhhYfwbipOmGl9lkzhOdXRf3CPNhaIYi4wppAW4Ps="; 16 16 }; 17 17 18 - vendorHash = "sha256-P6PbriempswIH2h1RBTuhtxcmPI5T5lKS9nXRotARa8="; 18 + vendorHash = "sha256-NDqwA6JHpq8ItT7ctv3KKkUwDZNgAjfgigqX9mGEYVY="; 19 19 20 20 doCheck = false; 21 21
+3 -3
pkgs/tools/misc/pgmetrics/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "pgmetrics"; 5 - version = "1.14.1"; 5 + version = "1.15.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "rapidloop"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-Uwi21dNhpDhrcLS2Ra0vaRsvdqEz7FX7SPILeq12ZnE="; 11 + sha256 = "sha256-tEPn+/xTDBFWf3SH/+5R38zWGAmMCHcFw/JvuvG2Jvs="; 12 12 }; 13 13 14 - vendorHash = "sha256-BGm3LvKOtlba/BtZ4Ue3Tzphlj5ZSqSzXTF8gSgRYEU="; 14 + vendorHash = "sha256-jRgOIhRB5F/rbfNniXoOllvDqoHP8nkVwmEPSreHYXg="; 15 15 16 16 doCheck = false; 17 17
+2 -2
pkgs/tools/misc/plantuml/default.nix
··· 1 1 { lib, stdenv, fetchurl, makeWrapper, jre, graphviz }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "1.2023.6"; 4 + version = "1.2023.7"; 5 5 pname = "plantuml"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/plantuml/plantuml/releases/download/v${version}/plantuml-pdf-${version}.jar"; 9 - sha256 = "sha256-Ce9e0B+Sb8o7a5rO5RC7f1TzeEjXSC25FdZ3aPLKlu4="; 9 + sha256 = "sha256-EWM3wL2TTr1r8Gb9m4PK+KnRD6YtMDGHWrXAzSkGbd0="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
-71
pkgs/tools/networking/airfield/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub 2 - , pkgs, makeWrapper, buildEnv 3 - , nodejs, runtimeShell 4 - }: 5 - 6 - let 7 - nodePackages = import ./node.nix { 8 - inherit pkgs; 9 - system = stdenv.hostPlatform.system; 10 - }; 11 - 12 - runtimeEnv = buildEnv { 13 - name = "airfield-runtime"; 14 - paths = with nodePackages; [ 15 - nodePackages."express-3.0.5" nodePackages."swig-0.14.0" 16 - nodePackages."consolidate-0.10.0" redis connect-redis 17 - async request 18 - ]; 19 - }; 20 - 21 - name = "airfield-${version}"; 22 - version = "2015-01-04"; 23 - 24 - src = stdenv.mkDerivation { 25 - name = "${name}-src"; 26 - inherit version; 27 - 28 - src = fetchFromGitHub { 29 - owner = "emblica"; 30 - repo = "airfield"; 31 - rev = "f021b19a35be3db9be7780318860f3b528c48641"; 32 - sha256 = "1xk69x89kgg98hm7c2ysyfmg7pkvgkpg4wym6v5cmdkdid08fsgs"; 33 - }; 34 - 35 - dontBuild = true; 36 - 37 - installPhase = '' 38 - mkdir $out 39 - cp -R . $out 40 - ''; 41 - }; 42 - in stdenv.mkDerivation { 43 - inherit name version src; 44 - 45 - nativeBuildInputs = [ makeWrapper ]; 46 - buildInputs = [ nodejs ]; 47 - 48 - dontBuild = true; 49 - 50 - installPhase = '' 51 - mkdir -p $out/bin 52 - cat >$out/bin/airfield <<EOF 53 - #!${runtimeShell} 54 - ${nodejs}/bin/node ${src}/airfield.js 55 - EOF 56 - ''; 57 - 58 - postFixup = '' 59 - chmod +x $out/bin/airfield 60 - wrapProgram $out/bin/airfield \ 61 - --set NODE_PATH "${runtimeEnv}/lib/node_modules" 62 - ''; 63 - 64 - meta = with lib; { 65 - description = "A web-interface for hipache-proxy"; 66 - license = licenses.mit; 67 - homepage = "https://github.com/emblica/airfield"; 68 - maintainers = with maintainers; [ offline ]; 69 - platforms = platforms.linux; 70 - }; 71 - }
-8
pkgs/tools/networking/airfield/deps.json
··· 1 - [ { "express": "3.0.5" } 2 - , { "swig": "0.14.0" } 3 - , { "consolidate": "0.10.0" } 4 - , "redis" 5 - , "connect-redis" 6 - , "async" 7 - , "request" 8 - ]
-6
pkgs/tools/networking/airfield/deps.sh
··· 1 - #!/usr/bin/env nix-shell 2 - #! nix-shell -i bash -p nodePackages.node2nix 3 - 4 - node2nix --nodejs-16 -i deps.json \ 5 - --no-copy-node-env \ 6 - -e ../../../development/node-packages/node-env.nix -c node.nix
-829
pkgs/tools/networking/airfield/node-packages.nix
··· 1 - # This file has been generated by node2nix 1.9.0. Do not edit! 2 - 3 - {nodeEnv, fetchurl, fetchgit, nix-gitignore, stdenv, lib, globalBuildInputs ? []}: 4 - 5 - let 6 - sources = { 7 - "ajv-6.12.6" = { 8 - name = "ajv"; 9 - packageName = "ajv"; 10 - version = "6.12.6"; 11 - src = fetchurl { 12 - url = "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"; 13 - sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 14 - }; 15 - }; 16 - "asn1-0.2.4" = { 17 - name = "asn1"; 18 - packageName = "asn1"; 19 - version = "0.2.4"; 20 - src = fetchurl { 21 - url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz"; 22 - sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg=="; 23 - }; 24 - }; 25 - "assert-plus-1.0.0" = { 26 - name = "assert-plus"; 27 - packageName = "assert-plus"; 28 - version = "1.0.0"; 29 - src = fetchurl { 30 - url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; 31 - sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; 32 - }; 33 - }; 34 - "asynckit-0.4.0" = { 35 - name = "asynckit"; 36 - packageName = "asynckit"; 37 - version = "0.4.0"; 38 - src = fetchurl { 39 - url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"; 40 - sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; 41 - }; 42 - }; 43 - "aws-sign2-0.7.0" = { 44 - name = "aws-sign2"; 45 - packageName = "aws-sign2"; 46 - version = "0.7.0"; 47 - src = fetchurl { 48 - url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"; 49 - sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; 50 - }; 51 - }; 52 - "aws4-1.11.0" = { 53 - name = "aws4"; 54 - packageName = "aws4"; 55 - version = "1.11.0"; 56 - src = fetchurl { 57 - url = "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz"; 58 - sha512 = "xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="; 59 - }; 60 - }; 61 - "bcrypt-pbkdf-1.0.2" = { 62 - name = "bcrypt-pbkdf"; 63 - packageName = "bcrypt-pbkdf"; 64 - version = "1.0.2"; 65 - src = fetchurl { 66 - url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"; 67 - sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"; 68 - }; 69 - }; 70 - "buffer-crc32-0.1.1" = { 71 - name = "buffer-crc32"; 72 - packageName = "buffer-crc32"; 73 - version = "0.1.1"; 74 - src = fetchurl { 75 - url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.1.1.tgz"; 76 - sha1 = "7e110dc9953908ab7c32acdc70c9f945b1cbc526"; 77 - }; 78 - }; 79 - "bytes-0.1.0" = { 80 - name = "bytes"; 81 - packageName = "bytes"; 82 - version = "0.1.0"; 83 - src = fetchurl { 84 - url = "https://registry.npmjs.org/bytes/-/bytes-0.1.0.tgz"; 85 - sha1 = "c574812228126d6369d1576925a8579db3f8e5a2"; 86 - }; 87 - }; 88 - "caseless-0.12.0" = { 89 - name = "caseless"; 90 - packageName = "caseless"; 91 - version = "0.12.0"; 92 - src = fetchurl { 93 - url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz"; 94 - sha1 = "1b681c21ff84033c826543090689420d187151dc"; 95 - }; 96 - }; 97 - "combined-stream-1.0.8" = { 98 - name = "combined-stream"; 99 - packageName = "combined-stream"; 100 - version = "1.0.8"; 101 - src = fetchurl { 102 - url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"; 103 - sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; 104 - }; 105 - }; 106 - "commander-0.6.1" = { 107 - name = "commander"; 108 - packageName = "commander"; 109 - version = "0.6.1"; 110 - src = fetchurl { 111 - url = "https://registry.npmjs.org/commander/-/commander-0.6.1.tgz"; 112 - sha1 = "fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06"; 113 - }; 114 - }; 115 - "connect-2.7.1" = { 116 - name = "connect"; 117 - packageName = "connect"; 118 - version = "2.7.1"; 119 - src = fetchurl { 120 - url = "https://registry.npmjs.org/connect/-/connect-2.7.1.tgz"; 121 - sha1 = "b869df9acf3dd8a0af7523c7c6f1aa8b4b761daa"; 122 - }; 123 - }; 124 - "cookie-0.0.5" = { 125 - name = "cookie"; 126 - packageName = "cookie"; 127 - version = "0.0.5"; 128 - src = fetchurl { 129 - url = "https://registry.npmjs.org/cookie/-/cookie-0.0.5.tgz"; 130 - sha1 = "f9acf9db57eb7568c9fcc596256b7bb22e307c81"; 131 - }; 132 - }; 133 - "cookie-signature-0.0.1" = { 134 - name = "cookie-signature"; 135 - packageName = "cookie-signature"; 136 - version = "0.0.1"; 137 - src = fetchurl { 138 - url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-0.0.1.tgz"; 139 - sha1 = "13d3603b5cf63befbf85a8801e37aa900db46985"; 140 - }; 141 - }; 142 - "core-util-is-1.0.2" = { 143 - name = "core-util-is"; 144 - packageName = "core-util-is"; 145 - version = "1.0.2"; 146 - src = fetchurl { 147 - url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; 148 - sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; 149 - }; 150 - }; 151 - "crc-0.2.0" = { 152 - name = "crc"; 153 - packageName = "crc"; 154 - version = "0.2.0"; 155 - src = fetchurl { 156 - url = "https://registry.npmjs.org/crc/-/crc-0.2.0.tgz"; 157 - sha1 = "f4486b9bf0a12df83c3fca14e31e030fdabd9454"; 158 - }; 159 - }; 160 - "dashdash-1.14.1" = { 161 - name = "dashdash"; 162 - packageName = "dashdash"; 163 - version = "1.14.1"; 164 - src = fetchurl { 165 - url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz"; 166 - sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"; 167 - }; 168 - }; 169 - "debug-4.3.2" = { 170 - name = "debug"; 171 - packageName = "debug"; 172 - version = "4.3.2"; 173 - src = fetchurl { 174 - url = "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz"; 175 - sha512 = "mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw=="; 176 - }; 177 - }; 178 - "delayed-stream-1.0.0" = { 179 - name = "delayed-stream"; 180 - packageName = "delayed-stream"; 181 - version = "1.0.0"; 182 - src = fetchurl { 183 - url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"; 184 - sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; 185 - }; 186 - }; 187 - "denque-1.5.0" = { 188 - name = "denque"; 189 - packageName = "denque"; 190 - version = "1.5.0"; 191 - src = fetchurl { 192 - url = "https://registry.npmjs.org/denque/-/denque-1.5.0.tgz"; 193 - sha512 = "CYiCSgIF1p6EUByQPlGkKnP1M9g0ZV3qMIrqMqZqdwazygIA/YP2vrbcyl1h/WppKJTdl1F85cXIle+394iDAQ=="; 194 - }; 195 - }; 196 - "ecc-jsbn-0.1.2" = { 197 - name = "ecc-jsbn"; 198 - packageName = "ecc-jsbn"; 199 - version = "0.1.2"; 200 - src = fetchurl { 201 - url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"; 202 - sha1 = "3a83a904e54353287874c564b7549386849a98c9"; 203 - }; 204 - }; 205 - "extend-3.0.2" = { 206 - name = "extend"; 207 - packageName = "extend"; 208 - version = "3.0.2"; 209 - src = fetchurl { 210 - url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"; 211 - sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="; 212 - }; 213 - }; 214 - "extsprintf-1.3.0" = { 215 - name = "extsprintf"; 216 - packageName = "extsprintf"; 217 - version = "1.3.0"; 218 - src = fetchurl { 219 - url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"; 220 - sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; 221 - }; 222 - }; 223 - "fast-deep-equal-3.1.3" = { 224 - name = "fast-deep-equal"; 225 - packageName = "fast-deep-equal"; 226 - version = "3.1.3"; 227 - src = fetchurl { 228 - url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"; 229 - sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="; 230 - }; 231 - }; 232 - "fast-json-stable-stringify-2.1.0" = { 233 - name = "fast-json-stable-stringify"; 234 - packageName = "fast-json-stable-stringify"; 235 - version = "2.1.0"; 236 - src = fetchurl { 237 - url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; 238 - sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="; 239 - }; 240 - }; 241 - "forever-agent-0.6.1" = { 242 - name = "forever-agent"; 243 - packageName = "forever-agent"; 244 - version = "0.6.1"; 245 - src = fetchurl { 246 - url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"; 247 - sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; 248 - }; 249 - }; 250 - "form-data-2.3.3" = { 251 - name = "form-data"; 252 - packageName = "form-data"; 253 - version = "2.3.3"; 254 - src = fetchurl { 255 - url = "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz"; 256 - sha512 = "1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ=="; 257 - }; 258 - }; 259 - "formidable-1.0.11" = { 260 - name = "formidable"; 261 - packageName = "formidable"; 262 - version = "1.0.11"; 263 - src = fetchurl { 264 - url = "https://registry.npmjs.org/formidable/-/formidable-1.0.11.tgz"; 265 - sha1 = "68f63325a035e644b6f7bb3d11243b9761de1b30"; 266 - }; 267 - }; 268 - "fresh-0.1.0" = { 269 - name = "fresh"; 270 - packageName = "fresh"; 271 - version = "0.1.0"; 272 - src = fetchurl { 273 - url = "https://registry.npmjs.org/fresh/-/fresh-0.1.0.tgz"; 274 - sha1 = "03e4b0178424e4c2d5d19a54d8814cdc97934850"; 275 - }; 276 - }; 277 - "getpass-0.1.7" = { 278 - name = "getpass"; 279 - packageName = "getpass"; 280 - version = "0.1.7"; 281 - src = fetchurl { 282 - url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz"; 283 - sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; 284 - }; 285 - }; 286 - "har-schema-2.0.0" = { 287 - name = "har-schema"; 288 - packageName = "har-schema"; 289 - version = "2.0.0"; 290 - src = fetchurl { 291 - url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"; 292 - sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; 293 - }; 294 - }; 295 - "har-validator-5.1.5" = { 296 - name = "har-validator"; 297 - packageName = "har-validator"; 298 - version = "5.1.5"; 299 - src = fetchurl { 300 - url = "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz"; 301 - sha512 = "nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w=="; 302 - }; 303 - }; 304 - "http-signature-1.2.0" = { 305 - name = "http-signature"; 306 - packageName = "http-signature"; 307 - version = "1.2.0"; 308 - src = fetchurl { 309 - url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"; 310 - sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; 311 - }; 312 - }; 313 - "is-typedarray-1.0.0" = { 314 - name = "is-typedarray"; 315 - packageName = "is-typedarray"; 316 - version = "1.0.0"; 317 - src = fetchurl { 318 - url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"; 319 - sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; 320 - }; 321 - }; 322 - "isstream-0.1.2" = { 323 - name = "isstream"; 324 - packageName = "isstream"; 325 - version = "0.1.2"; 326 - src = fetchurl { 327 - url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"; 328 - sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; 329 - }; 330 - }; 331 - "jsbn-0.1.1" = { 332 - name = "jsbn"; 333 - packageName = "jsbn"; 334 - version = "0.1.1"; 335 - src = fetchurl { 336 - url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz"; 337 - sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; 338 - }; 339 - }; 340 - "json-schema-0.2.3" = { 341 - name = "json-schema"; 342 - packageName = "json-schema"; 343 - version = "0.2.3"; 344 - src = fetchurl { 345 - url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz"; 346 - sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; 347 - }; 348 - }; 349 - "json-schema-traverse-0.4.1" = { 350 - name = "json-schema-traverse"; 351 - packageName = "json-schema-traverse"; 352 - version = "0.4.1"; 353 - src = fetchurl { 354 - url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; 355 - sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; 356 - }; 357 - }; 358 - "json-stringify-safe-5.0.1" = { 359 - name = "json-stringify-safe"; 360 - packageName = "json-stringify-safe"; 361 - version = "5.0.1"; 362 - src = fetchurl { 363 - url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; 364 - sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; 365 - }; 366 - }; 367 - "jsprim-1.4.1" = { 368 - name = "jsprim"; 369 - packageName = "jsprim"; 370 - version = "1.4.1"; 371 - src = fetchurl { 372 - url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz"; 373 - sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; 374 - }; 375 - }; 376 - "methods-0.0.1" = { 377 - name = "methods"; 378 - packageName = "methods"; 379 - version = "0.0.1"; 380 - src = fetchurl { 381 - url = "https://registry.npmjs.org/methods/-/methods-0.0.1.tgz"; 382 - sha1 = "277c90f8bef39709645a8371c51c3b6c648e068c"; 383 - }; 384 - }; 385 - "mime-1.2.6" = { 386 - name = "mime"; 387 - packageName = "mime"; 388 - version = "1.2.6"; 389 - src = fetchurl { 390 - url = "https://registry.npmjs.org/mime/-/mime-1.2.6.tgz"; 391 - sha1 = "b1f86c768c025fa87b48075f1709f28aeaf20365"; 392 - }; 393 - }; 394 - "mime-db-1.45.0" = { 395 - name = "mime-db"; 396 - packageName = "mime-db"; 397 - version = "1.45.0"; 398 - src = fetchurl { 399 - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.45.0.tgz"; 400 - sha512 = "CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w=="; 401 - }; 402 - }; 403 - "mime-types-2.1.28" = { 404 - name = "mime-types"; 405 - packageName = "mime-types"; 406 - version = "2.1.28"; 407 - src = fetchurl { 408 - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.28.tgz"; 409 - sha512 = "0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ=="; 410 - }; 411 - }; 412 - "mkdirp-0.3.3" = { 413 - name = "mkdirp"; 414 - packageName = "mkdirp"; 415 - version = "0.3.3"; 416 - src = fetchurl { 417 - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.3.tgz"; 418 - sha1 = "595e251c1370c3a68bab2136d0e348b8105adf13"; 419 - }; 420 - }; 421 - "ms-2.1.2" = { 422 - name = "ms"; 423 - packageName = "ms"; 424 - version = "2.1.2"; 425 - src = fetchurl { 426 - url = "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"; 427 - sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; 428 - }; 429 - }; 430 - "oauth-sign-0.9.0" = { 431 - name = "oauth-sign"; 432 - packageName = "oauth-sign"; 433 - version = "0.9.0"; 434 - src = fetchurl { 435 - url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz"; 436 - sha512 = "fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="; 437 - }; 438 - }; 439 - "pause-0.0.1" = { 440 - name = "pause"; 441 - packageName = "pause"; 442 - version = "0.0.1"; 443 - src = fetchurl { 444 - url = "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz"; 445 - sha1 = "1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d"; 446 - }; 447 - }; 448 - "performance-now-2.1.0" = { 449 - name = "performance-now"; 450 - packageName = "performance-now"; 451 - version = "2.1.0"; 452 - src = fetchurl { 453 - url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"; 454 - sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; 455 - }; 456 - }; 457 - "psl-1.8.0" = { 458 - name = "psl"; 459 - packageName = "psl"; 460 - version = "1.8.0"; 461 - src = fetchurl { 462 - url = "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz"; 463 - sha512 = "RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ=="; 464 - }; 465 - }; 466 - "punycode-2.1.1" = { 467 - name = "punycode"; 468 - packageName = "punycode"; 469 - version = "2.1.1"; 470 - src = fetchurl { 471 - url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"; 472 - sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; 473 - }; 474 - }; 475 - "qs-0.5.1" = { 476 - name = "qs"; 477 - packageName = "qs"; 478 - version = "0.5.1"; 479 - src = fetchurl { 480 - url = "https://registry.npmjs.org/qs/-/qs-0.5.1.tgz"; 481 - sha1 = "9f6bf5d9ac6c76384e95d36d15b48980e5e4add0"; 482 - }; 483 - }; 484 - "qs-6.5.2" = { 485 - name = "qs"; 486 - packageName = "qs"; 487 - version = "6.5.2"; 488 - src = fetchurl { 489 - url = "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz"; 490 - sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="; 491 - }; 492 - }; 493 - "range-parser-0.0.4" = { 494 - name = "range-parser"; 495 - packageName = "range-parser"; 496 - version = "0.0.4"; 497 - src = fetchurl { 498 - url = "https://registry.npmjs.org/range-parser/-/range-parser-0.0.4.tgz"; 499 - sha1 = "c0427ffef51c10acba0782a46c9602e744ff620b"; 500 - }; 501 - }; 502 - "redis-commands-1.6.0" = { 503 - name = "redis-commands"; 504 - packageName = "redis-commands"; 505 - version = "1.6.0"; 506 - src = fetchurl { 507 - url = "https://registry.npmjs.org/redis-commands/-/redis-commands-1.6.0.tgz"; 508 - sha512 = "2jnZ0IkjZxvguITjFTrGiLyzQZcTvaw8DAaCXxZq/dsHXz7KfMQ3OUJy7Tz9vnRtZRVz6VRCPDvruvU8Ts44wQ=="; 509 - }; 510 - }; 511 - "redis-errors-1.2.0" = { 512 - name = "redis-errors"; 513 - packageName = "redis-errors"; 514 - version = "1.2.0"; 515 - src = fetchurl { 516 - url = "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz"; 517 - sha1 = "eb62d2adb15e4eaf4610c04afe1529384250abad"; 518 - }; 519 - }; 520 - "redis-parser-3.0.0" = { 521 - name = "redis-parser"; 522 - packageName = "redis-parser"; 523 - version = "3.0.0"; 524 - src = fetchurl { 525 - url = "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz"; 526 - sha1 = "b66d828cdcafe6b4b8a428a7def4c6bcac31c8b4"; 527 - }; 528 - }; 529 - "safe-buffer-5.2.1" = { 530 - name = "safe-buffer"; 531 - packageName = "safe-buffer"; 532 - version = "5.2.1"; 533 - src = fetchurl { 534 - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"; 535 - sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="; 536 - }; 537 - }; 538 - "safer-buffer-2.1.2" = { 539 - name = "safer-buffer"; 540 - packageName = "safer-buffer"; 541 - version = "2.1.2"; 542 - src = fetchurl { 543 - url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"; 544 - sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 545 - }; 546 - }; 547 - "send-0.1.0" = { 548 - name = "send"; 549 - packageName = "send"; 550 - version = "0.1.0"; 551 - src = fetchurl { 552 - url = "https://registry.npmjs.org/send/-/send-0.1.0.tgz"; 553 - sha1 = "cfb08ebd3cec9b7fc1a37d9ff9e875a971cf4640"; 554 - }; 555 - }; 556 - "sshpk-1.16.1" = { 557 - name = "sshpk"; 558 - packageName = "sshpk"; 559 - version = "1.16.1"; 560 - src = fetchurl { 561 - url = "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz"; 562 - sha512 = "HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg=="; 563 - }; 564 - }; 565 - "tough-cookie-2.5.0" = { 566 - name = "tough-cookie"; 567 - packageName = "tough-cookie"; 568 - version = "2.5.0"; 569 - src = fetchurl { 570 - url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz"; 571 - sha512 = "nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g=="; 572 - }; 573 - }; 574 - "tunnel-agent-0.6.0" = { 575 - name = "tunnel-agent"; 576 - packageName = "tunnel-agent"; 577 - version = "0.6.0"; 578 - src = fetchurl { 579 - url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; 580 - sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd"; 581 - }; 582 - }; 583 - "tweetnacl-0.14.5" = { 584 - name = "tweetnacl"; 585 - packageName = "tweetnacl"; 586 - version = "0.14.5"; 587 - src = fetchurl { 588 - url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz"; 589 - sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64"; 590 - }; 591 - }; 592 - "underscore-1.12.0" = { 593 - name = "underscore"; 594 - packageName = "underscore"; 595 - version = "1.12.0"; 596 - src = fetchurl { 597 - url = "https://registry.npmjs.org/underscore/-/underscore-1.12.0.tgz"; 598 - sha512 = "21rQzss/XPMjolTiIezSu3JAjgagXKROtNrYFEOWK109qY1Uv2tVjPTZ1ci2HgvQDA16gHYSthQIJfB+XId/rQ=="; 599 - }; 600 - }; 601 - "uri-js-4.4.1" = { 602 - name = "uri-js"; 603 - packageName = "uri-js"; 604 - version = "4.4.1"; 605 - src = fetchurl { 606 - url = "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz"; 607 - sha512 = "7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="; 608 - }; 609 - }; 610 - "uuid-3.4.0" = { 611 - name = "uuid"; 612 - packageName = "uuid"; 613 - version = "3.4.0"; 614 - src = fetchurl { 615 - url = "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz"; 616 - sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="; 617 - }; 618 - }; 619 - "verror-1.10.0" = { 620 - name = "verror"; 621 - packageName = "verror"; 622 - version = "1.10.0"; 623 - src = fetchurl { 624 - url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; 625 - sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; 626 - }; 627 - }; 628 - }; 629 - in 630 - { 631 - "express-3.0.5" = nodeEnv.buildNodePackage { 632 - name = "express"; 633 - packageName = "express"; 634 - version = "3.0.5"; 635 - src = fetchurl { 636 - url = "https://registry.npmjs.org/express/-/express-3.0.5.tgz"; 637 - sha1 = "4c6e5850e6b5e8ca2af57f21ed7097de50948b73"; 638 - }; 639 - dependencies = [ 640 - sources."buffer-crc32-0.1.1" 641 - sources."bytes-0.1.0" 642 - sources."commander-0.6.1" 643 - sources."connect-2.7.1" 644 - sources."cookie-0.0.5" 645 - sources."cookie-signature-0.0.1" 646 - sources."crc-0.2.0" 647 - sources."debug-4.3.2" 648 - sources."formidable-1.0.11" 649 - sources."fresh-0.1.0" 650 - sources."methods-0.0.1" 651 - sources."mime-1.2.6" 652 - sources."mkdirp-0.3.3" 653 - sources."ms-2.1.2" 654 - sources."pause-0.0.1" 655 - sources."qs-0.5.1" 656 - sources."range-parser-0.0.4" 657 - sources."send-0.1.0" 658 - ]; 659 - buildInputs = globalBuildInputs; 660 - meta = { 661 - description = "Sinatra inspired web development framework"; 662 - }; 663 - production = true; 664 - bypassCache = true; 665 - reconstructLock = true; 666 - }; 667 - "swig-0.14.0" = nodeEnv.buildNodePackage { 668 - name = "swig"; 669 - packageName = "swig"; 670 - version = "0.14.0"; 671 - src = fetchurl { 672 - url = "https://registry.npmjs.org/swig/-/swig-0.14.0.tgz"; 673 - sha1 = "544bfb3bd837608873eed6a72c672a28cb1f1b3f"; 674 - }; 675 - dependencies = [ 676 - sources."underscore-1.12.0" 677 - ]; 678 - buildInputs = globalBuildInputs; 679 - meta = { 680 - description = "A fast django-like templating engine for node.js and browsers."; 681 - }; 682 - production = true; 683 - bypassCache = true; 684 - reconstructLock = true; 685 - }; 686 - "consolidate-0.10.0" = nodeEnv.buildNodePackage { 687 - name = "consolidate"; 688 - packageName = "consolidate"; 689 - version = "0.10.0"; 690 - src = fetchurl { 691 - url = "https://registry.npmjs.org/consolidate/-/consolidate-0.10.0.tgz"; 692 - sha1 = "81f1a6ceba1247df9cef7a261ce527c2ce538f7a"; 693 - }; 694 - buildInputs = globalBuildInputs; 695 - meta = { 696 - description = "Template engine consolidation library"; 697 - homepage = "https://github.com/visionmedia/consolidate.js"; 698 - }; 699 - production = true; 700 - bypassCache = true; 701 - reconstructLock = true; 702 - }; 703 - redis = nodeEnv.buildNodePackage { 704 - name = "redis"; 705 - packageName = "redis"; 706 - version = "3.0.2"; 707 - src = fetchurl { 708 - url = "https://registry.npmjs.org/redis/-/redis-3.0.2.tgz"; 709 - sha512 = "PNhLCrjU6vKVuMOyFu7oSP296mwBkcE6lrAjruBYG5LgdSqtRBoVQIylrMyVZD/lkF24RSNNatzvYag6HRBHjQ=="; 710 - }; 711 - dependencies = [ 712 - sources."denque-1.5.0" 713 - sources."redis-commands-1.6.0" 714 - sources."redis-errors-1.2.0" 715 - sources."redis-parser-3.0.0" 716 - ]; 717 - buildInputs = globalBuildInputs; 718 - meta = { 719 - description = "A high performance Redis client."; 720 - homepage = "https://github.com/NodeRedis/node-redis"; 721 - license = "MIT"; 722 - }; 723 - production = true; 724 - bypassCache = true; 725 - reconstructLock = true; 726 - }; 727 - connect-redis = nodeEnv.buildNodePackage { 728 - name = "connect-redis"; 729 - packageName = "connect-redis"; 730 - version = "5.0.0"; 731 - src = fetchurl { 732 - url = "https://registry.npmjs.org/connect-redis/-/connect-redis-5.0.0.tgz"; 733 - sha512 = "R4nTW5uXeG5s6zr/q4abmtcdloglZrL/A3cpa0JU0RLFJU4mTR553HUY8OZ0ngeySkGDclwQ5xmCcjjKkxdOSg=="; 734 - }; 735 - buildInputs = globalBuildInputs; 736 - meta = { 737 - description = "Redis session store for Connect"; 738 - homepage = "https://github.com/visionmedia/connect-redis#readme"; 739 - license = "MIT"; 740 - }; 741 - production = true; 742 - bypassCache = true; 743 - reconstructLock = true; 744 - }; 745 - async = nodeEnv.buildNodePackage { 746 - name = "async"; 747 - packageName = "async"; 748 - version = "3.2.0"; 749 - src = fetchurl { 750 - url = "https://registry.npmjs.org/async/-/async-3.2.0.tgz"; 751 - sha512 = "TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw=="; 752 - }; 753 - buildInputs = globalBuildInputs; 754 - meta = { 755 - description = "Higher-order functions and common patterns for asynchronous code"; 756 - homepage = "https://caolan.github.io/async/"; 757 - license = "MIT"; 758 - }; 759 - production = true; 760 - bypassCache = true; 761 - reconstructLock = true; 762 - }; 763 - request = nodeEnv.buildNodePackage { 764 - name = "request"; 765 - packageName = "request"; 766 - version = "2.88.2"; 767 - src = fetchurl { 768 - url = "https://registry.npmjs.org/request/-/request-2.88.2.tgz"; 769 - sha512 = "MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw=="; 770 - }; 771 - dependencies = [ 772 - sources."ajv-6.12.6" 773 - sources."asn1-0.2.4" 774 - sources."assert-plus-1.0.0" 775 - sources."asynckit-0.4.0" 776 - sources."aws-sign2-0.7.0" 777 - sources."aws4-1.11.0" 778 - sources."bcrypt-pbkdf-1.0.2" 779 - sources."caseless-0.12.0" 780 - sources."combined-stream-1.0.8" 781 - sources."core-util-is-1.0.2" 782 - sources."dashdash-1.14.1" 783 - sources."delayed-stream-1.0.0" 784 - sources."ecc-jsbn-0.1.2" 785 - sources."extend-3.0.2" 786 - sources."extsprintf-1.3.0" 787 - sources."fast-deep-equal-3.1.3" 788 - sources."fast-json-stable-stringify-2.1.0" 789 - sources."forever-agent-0.6.1" 790 - sources."form-data-2.3.3" 791 - sources."getpass-0.1.7" 792 - sources."har-schema-2.0.0" 793 - sources."har-validator-5.1.5" 794 - sources."http-signature-1.2.0" 795 - sources."is-typedarray-1.0.0" 796 - sources."isstream-0.1.2" 797 - sources."jsbn-0.1.1" 798 - sources."json-schema-0.2.3" 799 - sources."json-schema-traverse-0.4.1" 800 - sources."json-stringify-safe-5.0.1" 801 - sources."jsprim-1.4.1" 802 - sources."mime-db-1.45.0" 803 - sources."mime-types-2.1.28" 804 - sources."oauth-sign-0.9.0" 805 - sources."performance-now-2.1.0" 806 - sources."psl-1.8.0" 807 - sources."punycode-2.1.1" 808 - sources."qs-6.5.2" 809 - sources."safe-buffer-5.2.1" 810 - sources."safer-buffer-2.1.2" 811 - sources."sshpk-1.16.1" 812 - sources."tough-cookie-2.5.0" 813 - sources."tunnel-agent-0.6.0" 814 - sources."tweetnacl-0.14.5" 815 - sources."uri-js-4.4.1" 816 - sources."uuid-3.4.0" 817 - sources."verror-1.10.0" 818 - ]; 819 - buildInputs = globalBuildInputs; 820 - meta = { 821 - description = "Simplified HTTP request client."; 822 - homepage = "https://github.com/request/request#readme"; 823 - license = "Apache-2.0"; 824 - }; 825 - production = true; 826 - bypassCache = true; 827 - reconstructLock = true; 828 - }; 829 - }
-17
pkgs/tools/networking/airfield/node.nix
··· 1 - # This file has been generated by node2nix 1.9.0. Do not edit! 2 - 3 - {pkgs ? import <nixpkgs> { 4 - inherit system; 5 - }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs_14"}: 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-packages.nix { 15 - inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit; 16 - inherit nodeEnv; 17 - }
+9 -3
pkgs/tools/networking/clash/default.nix
··· 1 - { lib, fetchFromGitHub, buildGoModule, testers, clash }: 1 + { lib 2 + , fetchFromGitHub 3 + , buildGoModule 4 + , testers 5 + , clash 6 + }: 2 7 3 8 buildGoModule rec { 4 9 pname = "clash"; ··· 12 7 src = fetchFromGitHub { 13 8 owner = "Dreamacro"; 14 9 repo = pname; 15 - rev = "v${version}"; 10 + rev = "refs/tags/v${version}"; 16 11 hash = "sha256-y2Z4YaVKKFxZzLUOUs1PeMkWhFimAhu9nAahhX/4Xn8="; 17 12 }; 18 13 ··· 36 31 37 32 meta = with lib; { 38 33 description = "A rule-based tunnel in Go"; 39 - homepage = "https://github.com/Dreamacro/clash"; 34 + homepage = "https://dreamacro.github.io/clash/"; 35 + changelog = "https://github.com/Dreamacro/clash/releases/tag/v${version}"; 40 36 license = licenses.gpl3Only; 41 37 maintainers = with maintainers; [ contrun Br1ght0ne ]; 42 38 };
+35
pkgs/tools/networking/girsh/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "girsh"; 8 + version = "0.41"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "nodauf"; 12 + repo = "Girsh"; 13 + rev = "refs/tags/v${version}"; 14 + hash = "sha256-MgzIBag0Exoh0TXW/AD0lbSOj7PVkMeVYQ8v5jdCgAs="; 15 + }; 16 + 17 + vendorHash = "sha256-8NPFohguMX/X1khEPF+noLBNe/MUoPpXS2PN6SiotL8="; 18 + 19 + ldflags = [ 20 + "-s" 21 + "-w" 22 + ]; 23 + 24 + postInstall = '' 25 + mv $out/bin/src $out/bin/$pname 26 + ''; 27 + 28 + meta = with lib; { 29 + description = "Automatically spawn a reverse shell fully interactive for Linux or Windows victim"; 30 + homepage = "https://github.com/nodauf/Girsh"; 31 + changelog = "https://github.com/nodauf/Girsh/releases/tag/v${version}"; 32 + license = licenses.gpl2Only; 33 + maintainers = with maintainers; [ fab ]; 34 + }; 35 + }
+31 -15
pkgs/tools/security/bitwarden/default.nix
··· 1 1 { lib 2 + , applyPatches 2 3 , buildNpmPackage 3 4 , dbus 4 - , electron 5 + , electron_24 5 6 , fetchFromGitHub 7 + , fetchpatch 6 8 , glib 7 9 , gnome 8 10 , gtk3 ··· 13 11 , makeDesktopItem 14 12 , makeWrapper 15 13 , moreutils 16 - , nodejs_16 14 + , nodejs_18 17 15 , pkg-config 18 16 , python3 19 17 , rustPlatform ··· 24 22 description = "A secure and free password manager for all of your devices"; 25 23 icon = "bitwarden"; 26 24 27 - buildNpmPackage' = buildNpmPackage.override { nodejs = nodejs_16; }; 25 + buildNpmPackage' = buildNpmPackage.override { nodejs = nodejs_18; }; 26 + electron = electron_24; 28 27 29 - version = "2023.3.2"; 30 - src = fetchFromGitHub { 31 - owner = "bitwarden"; 32 - repo = "clients"; 33 - rev = "desktop-v${version}"; 34 - sha256 = "sha256-KQDM7XDUA+yRv8y1K//rMCs4J36df42RVsiAXazJeYQ="; 28 + version = "2023.4.0"; 29 + src = applyPatches { 30 + src = fetchFromGitHub { 31 + owner = "bitwarden"; 32 + repo = "clients"; 33 + rev = "desktop-v${version}"; 34 + sha256 = "sha256-TTKDl6Py3k+fAy/kcyiMbAAKQdhVnZTyRXV8D/VpKBE="; 35 + }; 36 + 37 + patches = [ 38 + # Bump electron to 24 and node to 18 39 + (fetchpatch { 40 + url = "https://github.com/bitwarden/clients/pull/5205.patch"; 41 + hash = "sha256-sKSrh8RHXtxGczyZScjTeiGZgTZCQ7f45ULj/j9cp6M="; 42 + }) 43 + ]; 35 44 }; 36 45 37 46 desktop-native = rustPlatform.buildRustPackage { 38 47 pname = "bitwarden-desktop-native"; 39 48 inherit src version; 40 - sourceRoot = "source/apps/desktop/desktop_native"; 41 - cargoSha256 = "sha256-XsAmVYWPPnY0cgBzpO2aWx/fh85fKr8kMO98cDMzOKk="; 42 - 43 - patchFlags = [ "-p4" ]; 49 + sourceRoot = "source-patched/apps/desktop/desktop_native"; 50 + cargoSha256 = "sha256-VW9DmSh9jvqFCZjH1SAYkydSGjXSVEbv4CmtoJBiw5Y="; 44 51 45 52 nativeBuildInputs = [ 46 53 pkg-config ··· 102 91 npmBuildFlags = [ 103 92 "--workspace apps/desktop" 104 93 ]; 105 - npmDepsHash = "sha256-RmkTWhakZstCCMLQ3iJ8KD5Yt5ZafXc8NDgncJMLaxs="; 94 + npmDepsHash = "sha256-UXDn09qyM8GwfUiWLDhhyrGFZeKtTRmQArstw+tm5iE="; 106 95 107 96 ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; 108 97 ··· 114 103 ]; 115 104 116 105 preBuild = '' 106 + if [[ $(jq --raw-output '.devDependencies.electron' < package.json | grep -E --only-matching '^[0-9]+') != ${lib.escapeShellArg (lib.versions.major electron.version)} ]]; then 107 + echo 'ERROR: electron version mismatch' 108 + exit 1 109 + fi 110 + 117 111 jq 'del(.scripts.postinstall)' apps/desktop/package.json | sponge apps/desktop/package.json 118 112 jq '.scripts.build = ""' apps/desktop/desktop_native/package.json | sponge apps/desktop/desktop_native/package.json 119 113 cp ${desktop-native}/lib/libdesktop_native.so apps/desktop/desktop_native/desktop_native.linux-x64-musl.node ··· 127 111 postBuild = '' 128 112 pushd apps/desktop 129 113 130 - "$(npm bin)"/electron-builder \ 114 + npm exec electron-builder -- \ 131 115 --dir \ 132 116 -c.electronDist=${electron}/lib/electron \ 133 117 -c.electronVersion=${electron.version}
+31
pkgs/tools/security/kubestroyer/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "kubestroyer"; 8 + version = "0.2"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "Rolix44"; 12 + repo = "Kubestroyer"; 13 + rev = "refs/tags/v${version}"; 14 + hash = "sha256-M/abb2IT0mXwj8lAitr18VtIgC4NvapPywBwcUWr9i8="; 15 + }; 16 + 17 + vendorHash = "sha256-x0lIi4QUuYn0kv0HV4h8k61kRu10LCyELudisqUdTAg="; 18 + 19 + ldflags = [ 20 + "-s" 21 + "-w" 22 + ]; 23 + 24 + meta = with lib; { 25 + description = "Kubernetes exploitation tool"; 26 + homepage = "https://github.com/Rolix44/Kubestroyer"; 27 + changelog = "https://github.com/Rolix44/Kubestroyer/releases/tag/v${version}"; 28 + license = licenses.mit; 29 + maintainers = with maintainers; [ fab ]; 30 + }; 31 + }
+34
pkgs/tools/security/oauth2c/default.nix
··· 1 + { buildGoModule 2 + , fetchFromGitHub 3 + , lib 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "oauth2c"; 8 + version = "1.7.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "cloudentity"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + hash = "sha256-IOfY0lKOeuArO3bI1JjTOXHhCqr3GTfsOHCOI0Qh4xk="; 15 + }; 16 + 17 + vendorHash = "sha256-euEmslrSbXPVDNZkIguq+ukt74Um4H0+lIXEyCBorjE="; 18 + 19 + doCheck = false; # tests want to talk to oauth2c.us.authz.cloudentity.io 20 + 21 + meta = with lib; { 22 + homepage = "https://github.com/cloudentity/oauth2c"; 23 + description = "User-friendly OAuth2 CLI"; 24 + longDescription = '' 25 + oauth2c is a command-line tool for interacting with OAuth 2.0 26 + authorization servers. Its goal is to make it easy to fetch access tokens 27 + using any grant type or client authentication method. It is compliant with 28 + almost all basic and advanced OAuth 2.0, OIDC, OIDF FAPI and JWT profiles. 29 + ''; 30 + license = licenses.asl20; 31 + maintainers = [ maintainers.flokli ]; 32 + platforms = platforms.darwin ++ platforms.linux; 33 + }; 34 + }
+5 -3
pkgs/tools/security/theharvester/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "theharvester"; 8 - version = "4.2.0"; 8 + version = "4.3.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "laramies"; 12 12 repo = pname; 13 - rev = version; 14 - sha256 = "sha256-P3yp6COwyQnVDfZM198ygu+HLdisRw068aZOVSLl7r4="; 13 + rev = "refs/tags/${version}"; 14 + hash = "sha256-9W4xN+ZSNdR5NOnwohNrQVW8JSEKFyKxWTz012uiUm8="; 15 15 }; 16 16 17 17 propagatedBuildInputs = with python3.pkgs; [ ··· 30 30 orjson 31 31 plotly 32 32 pyppeteer 33 + python-dateutil 33 34 pyyaml 34 35 requests 35 36 retrying ··· 62 61 gathers emails, names, subdomains, IPs, and URLs using multiple public data sources. 63 62 ''; 64 63 homepage = "https://github.com/laramies/theHarvester"; 64 + changelog = "https://github.com/laramies/theHarvester/releases/tag/${version}"; 65 65 maintainers = with maintainers; [ c0bw3b treemo ]; 66 66 license = licenses.gpl2Only; 67 67 };
+1
pkgs/top-level/aliases.nix
··· 65 65 aesop = throw "aesop has been removed from nixpkgs, as it was unmaintained"; # Added 2021-08-05 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 + airfield = throw "airfield has been removed due to being unmaintained"; # Added 2023-05-19 68 69 airtame = throw "airtame has been removed due to being unmaintained"; # Added 2022-01-19 69 70 aleth = throw "aleth (previously packaged as cpp_ethereum) has been removed; abandoned upstream"; # Added 2020-11-30 70 71 alsaLib = alsa-lib; # Added 2021-06-09
+14 -8
pkgs/top-level/all-packages.nix
··· 262 262 263 263 alterx = callPackage ../tools/security/alterx { }; 264 264 265 + asitop = pkgs.python3Packages.callPackage ../os-specific/darwin/asitop { }; 266 + 265 267 asn = callPackage ../applications/networking/asn { }; 266 268 267 269 asnmap = callPackage ../tools/security/asnmap { }; ··· 670 668 enumerepo = callPackage ../tools/security/enumerepo {}; 671 669 672 670 erosmb = callPackage ../tools/security/erosmb { }; 671 + 672 + oauth2c = callPackage ../tools/security/oauth2c { }; 673 673 674 674 octosuite = callPackage ../tools/security/octosuite { }; 675 675 ··· 1430 1426 1431 1427 aircrack-ng = callPackage ../tools/networking/aircrack-ng { }; 1432 1428 1433 - airfield = callPackage ../tools/networking/airfield { }; 1434 - 1435 1429 airgeddon = callPackage ../tools/networking/airgeddon { }; 1436 1430 1437 1431 apache-airflow = with python3.pkgs; toPythonApplication apache-airflow; ··· 1701 1699 1702 1700 speedtest-rs = callPackage ../tools/networking/speedtest-rs { }; 1703 1701 1704 - stargazer = callPackage ../servers/gemini/stargazer { }; 1702 + stargazer = callPackage ../servers/gemini/stargazer { 1703 + inherit (darwin.apple_sdk.frameworks) Security; 1704 + }; 1705 1705 1706 1706 steamtinkerlaunch = callPackage ../tools/games/steamtinkerlaunch { }; 1707 1707 ··· 2716 2712 wayst = callPackage ../applications/terminal-emulators/wayst { }; 2717 2713 2718 2714 wezterm = darwin.apple_sdk_11_0.callPackage ../applications/terminal-emulators/wezterm { 2719 - inherit (darwin.apple_sdk_11_0.frameworks) Cocoa CoreGraphics Foundation UserNotifications; 2715 + inherit (darwin.apple_sdk_11_0.frameworks) Cocoa CoreGraphics Foundation UserNotifications System; 2720 2716 }; 2721 2717 2722 2718 x3270 = callPackage ../applications/terminal-emulators/x3270 { }; ··· 5026 5022 giph = callPackage ../applications/video/giph { }; 5027 5023 5028 5024 gir-rs = callPackage ../development/tools/gir { }; 5025 + 5026 + girsh = callPackage ../tools/networking/girsh { }; 5029 5027 5030 5028 gist = callPackage ../tools/text/gist { }; 5031 5029 ··· 16765 16759 mbqn-source = buildPackages.mbqn.src; 16766 16760 16767 16761 phase0 = callPackage ../development/interpreters/bqn/cbqn { 16768 - inherit (cbqn-bootstrap) stdenv; 16762 + inherit (cbqn-bootstrap) mbqn-source stdenv; 16769 16763 genBytecode = false; 16770 16764 bqn-path = null; 16771 - mbqn-source = null; 16772 16765 }; 16773 16766 16774 16767 phase0-replxx = callPackage ../development/interpreters/bqn/cbqn { 16775 - inherit (cbqn-bootstrap) stdenv; 16768 + inherit (cbqn-bootstrap) mbqn-source stdenv; 16776 16769 genBytecode = false; 16777 16770 bqn-path = null; 16778 - mbqn-source = null; 16779 16771 enableReplxx = true; 16780 16772 }; 16781 16773 ··· 31835 31831 kubent = callPackage ../applications/networking/cluster/kubent { }; 31836 31832 31837 31833 kubeseal = callPackage ../applications/networking/cluster/kubeseal { }; 31834 + 31835 + kubestroyer = callPackage ../tools/security/kubestroyer { }; 31838 31836 31839 31837 kubernix = callPackage ../applications/networking/cluster/kubernix { }; 31840 31838
+1
pkgs/top-level/python-aliases.nix
··· 164 164 mailman-hyperkitty = throw "Please use pkgs.mailmanPackages.mailman-hyperkitty"; # added 2022-04-29 165 165 mailman-web = throw "Please use pkgs.mailman-web"; # added 2022-04-29 166 166 manticore = throw "manticore has been removed because its dependency wasm no longer builds and is unmaintained"; # added 2023-05-20 167 + markerlib = throw "markerlib has been removed because it's abandoned since 2013"; # added 2023-05-19 167 168 mistune_0_8 = throw "mistune_0_8 was removed because it was outdated and insecure"; # added 2022-08-12 168 169 mistune_2_0 = mistune; # added 2022-08-12 169 170 mox = throw "mox was removed because it is unmaintained"; # added 2023-02-21
+2 -2
pkgs/top-level/python-packages.nix
··· 2277 2277 2278 2278 dash-table = callPackage ../development/python-modules/dash-table { }; 2279 2279 2280 + dashing = callPackage ../development/python-modules/dashing { }; 2281 + 2280 2282 dask = callPackage ../development/python-modules/dask { }; 2281 2283 2282 2284 dask-awkward = callPackage ../development/python-modules/dask-awkward { }; ··· 5998 5996 markdownify = callPackage ../development/python-modules/markdownify { }; 5999 5997 6000 5998 markdownsuperscript = callPackage ../development/python-modules/markdownsuperscript { }; 6001 - 6002 - markerlib = callPackage ../development/python-modules/markerlib { }; 6003 5999 6004 6000 markupsafe = callPackage ../development/python-modules/markupsafe { }; 6005 6001
+13 -1
pkgs/top-level/release.nix
··· 16 16 # Strip most of attributes when evaluating to spare memory usage 17 17 , scrubJobs ? true 18 18 # Attributes passed to nixpkgs. Don't build packages marked as unfree. 19 - , nixpkgsArgs ? { config = { allowUnfree = false; inHydra = true; }; } 19 + , nixpkgsArgs ? { config = { 20 + allowUnfree = false; 21 + inHydra = true; 22 + permittedInsecurePackages = [ 23 + # *Exceptionally*, those packages will be cached with their *secure* dependents 24 + # because they will reach EOL in the middle of the 23.05 release 25 + # and it will be too much painful for our users to recompile them 26 + # for no real reason. 27 + # Remove them for 23.11. 28 + "nodejs-16.20.0" 29 + "openssl-1.1.1t" 30 + ]; 31 + }; } 20 32 }: 21 33 22 34 with import ./release-lib.nix { inherit supportedSystems scrubJobs nixpkgsArgs; };