Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
b3a0328b 60739e07

+2587 -1366
-4
.github/CODEOWNERS
··· 94 /pkgs/applications/science/math/R @peti 95 /pkgs/development/r-modules @peti 96 97 - # Ruby 98 - /pkgs/development/interpreters/ruby @alyssais 99 - /pkgs/development/ruby-modules @alyssais 100 - 101 # Rust 102 /pkgs/development/compilers/rust @Mic92 @LnL7 @zowoq 103 /pkgs/build-support/rust @andir @danieldk @zowoq
··· 94 /pkgs/applications/science/math/R @peti 95 /pkgs/development/r-modules @peti 96 97 # Rust 98 /pkgs/development/compilers/rust @Mic92 @LnL7 @zowoq 99 /pkgs/build-support/rust @andir @danieldk @zowoq
+18
maintainers/maintainer-list.nix
··· 1106 githubId = 14111; 1107 name = "Brandon Dimcheff"; 1108 }; 1109 bendlas = { 1110 email = "herwig@bendlas.net"; 1111 github = "bendlas"; ··· 3614 github = "grahamc"; 3615 githubId = 76716; 3616 name = "Graham Christensen"; 3617 }; 3618 grburst = { 3619 email = "GRBurst@protonmail.com"; ··· 10469 github = "xbreak"; 10470 githubId = 13489144; 10471 name = "Calle Rosenquist"; 10472 }; 10473 xe = { 10474 email = "me@christine.website";
··· 1106 githubId = 14111; 1107 name = "Brandon Dimcheff"; 1108 }; 1109 + beardhatcode = { 1110 + name = "Robbert Gurdeep Singh"; 1111 + email = "nixpkgs@beardhatcode.be"; 1112 + github = "beardhatcode"; 1113 + githubId = 662538; 1114 + }; 1115 bendlas = { 1116 email = "herwig@bendlas.net"; 1117 github = "bendlas"; ··· 3620 github = "grahamc"; 3621 githubId = 76716; 3622 name = "Graham Christensen"; 3623 + }; 3624 + gravndal = { 3625 + email = "gaute.ravndal+nixos@gmail.com"; 3626 + github = "gravndal"; 3627 + githubId = 4656860; 3628 + name = "Gaute Ravndal"; 3629 }; 3630 grburst = { 3631 email = "GRBurst@protonmail.com"; ··· 10481 github = "xbreak"; 10482 githubId = 13489144; 10483 name = "Calle Rosenquist"; 10484 + }; 10485 + xdhampus = { 10486 + name = "Hampus"; 10487 + email = "16954508+xdHampus@users.noreply.github.com"; 10488 + github = "xdHampus"; 10489 + githubId = 16954508; 10490 }; 10491 xe = { 10492 email = "me@christine.website";
+8
nixos/doc/manual/release-notes/rl-2009.xml
··· 1019 </listitem> 1020 <listitem> 1021 <para> 1022 The rkt module has been removed, it was archived by upstream. 1023 </para> 1024 </listitem>
··· 1019 </listitem> 1020 <listitem> 1021 <para> 1022 + The syntax of the PostgreSQL configuration file is now checked at build 1023 + time. If your configuration includes a file inaccessible inside the build 1024 + sandbox, set <varname>services.postgresql.checkConfig</varname> to 1025 + <literal>false</literal>. 1026 + </para> 1027 + </listitem> 1028 + <listitem> 1029 + <para> 1030 The rkt module has been removed, it was archived by upstream. 1031 </para> 1032 </listitem>
+29
nixos/modules/hardware/ubertooth.nix
···
··· 1 + { config, lib, pkgs, ... }: 2 + 3 + with lib; 4 + 5 + let 6 + cfg = config.hardware.ubertooth; 7 + 8 + ubertoothPkg = pkgs.ubertooth.override { 9 + udevGroup = cfg.group; 10 + }; 11 + in { 12 + options.hardware.ubertooth = { 13 + enable = mkEnableOption "Enable the Ubertooth software and its udev rules."; 14 + 15 + group = mkOption { 16 + type = types.str; 17 + default = "ubertooth"; 18 + example = "wheel"; 19 + description = "Group for Ubertooth's udev rules."; 20 + }; 21 + }; 22 + 23 + config = mkIf cfg.enable { 24 + environment.systemPackages = [ ubertoothPkg ]; 25 + 26 + services.udev.packages = [ ubertoothPkg ]; 27 + users.groups.${cfg.group} = {}; 28 + }; 29 + }
+1
nixos/modules/module-list.nix
··· 67 ./hardware/steam-hardware.nix 68 ./hardware/system-76.nix 69 ./hardware/tuxedo-keyboard.nix 70 ./hardware/usb-wwan.nix 71 ./hardware/onlykey.nix 72 ./hardware/opentabletdriver.nix
··· 67 ./hardware/steam-hardware.nix 68 ./hardware/system-76.nix 69 ./hardware/tuxedo-keyboard.nix 70 + ./hardware/ubertooth.nix 71 ./hardware/usb-wwan.nix 72 ./hardware/onlykey.nix 73 ./hardware/opentabletdriver.nix
+15 -2
nixos/modules/services/databases/postgresql.nix
··· 18 else toString value; 19 20 # The main PostgreSQL configuration file. 21 - configFile = pkgs.writeText "postgresql.conf" (concatStringsSep "\n" (mapAttrsToList (n: v: "${n} = ${toStr v}") cfg.settings)); 22 23 groupAccessAvailable = versionAtLeast postgresql.version "11.0"; 24 ··· 51 description = '' 52 The port on which PostgreSQL listens. 53 ''; 54 }; 55 56 dataDir = mkOption { ··· 314 "/share/postgresql" 315 ]; 316 317 systemd.services.postgresql = 318 { description = "PostgreSQL Server"; 319 ··· 337 touch "${cfg.dataDir}/.first_startup" 338 fi 339 340 - ln -sfn "${configFile}" "${cfg.dataDir}/postgresql.conf" 341 ${optionalString (cfg.recoveryConfig != null) '' 342 ln -sfn "${pkgs.writeText "recovery.conf" cfg.recoveryConfig}" \ 343 "${cfg.dataDir}/recovery.conf"
··· 18 else toString value; 19 20 # The main PostgreSQL configuration file. 21 + configFile = pkgs.writeTextDir "postgresql.conf" (concatStringsSep "\n" (mapAttrsToList (n: v: "${n} = ${toStr v}") cfg.settings)); 22 + 23 + configFileCheck = pkgs.runCommand "postgresql-configfile-check" {} '' 24 + ${cfg.package}/bin/postgres -D${configFile} -C config_file >/dev/null 25 + touch $out 26 + ''; 27 28 groupAccessAvailable = versionAtLeast postgresql.version "11.0"; 29 ··· 56 description = '' 57 The port on which PostgreSQL listens. 58 ''; 59 + }; 60 + 61 + checkConfig = mkOption { 62 + type = types.bool; 63 + default = true; 64 + description = "Check the syntax of the configuration file at compile time"; 65 }; 66 67 dataDir = mkOption { ··· 325 "/share/postgresql" 326 ]; 327 328 + system.extraDependencies = lib.optional (cfg.checkConfig && pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform) configFileCheck; 329 + 330 systemd.services.postgresql = 331 { description = "PostgreSQL Server"; 332 ··· 350 touch "${cfg.dataDir}/.first_startup" 351 fi 352 353 + ln -sfn "${configFile}/postgresql.conf" "${cfg.dataDir}/postgresql.conf" 354 ${optionalString (cfg.recoveryConfig != null) '' 355 ln -sfn "${pkgs.writeText "recovery.conf" cfg.recoveryConfig}" \ 356 "${cfg.dataDir}/recovery.conf"
+2 -2
pkgs/applications/blockchains/btcpayserver/default.nix
··· 15 16 stdenv.mkDerivation rec { 17 pname = "btcpayserver"; 18 - version = "1.0.7.0"; 19 20 src = fetchFromGitHub { 21 owner = pname; 22 repo = pname; 23 rev = "v${version}"; 24 - sha256 = "1pbq0kik29sx1lwlic7fvhnjhrpnlk94w53wmywqnlpgjscx8x8a"; 25 }; 26 27 nativeBuildInputs = [ dotnetSdk dotnetPackages.Nuget makeWrapper ];
··· 15 16 stdenv.mkDerivation rec { 17 pname = "btcpayserver"; 18 + version = "1.0.7.2"; 19 20 src = fetchFromGitHub { 21 owner = pname; 22 repo = pname; 23 rev = "v${version}"; 24 + sha256 = "1hxpbzc4l1zxrcvmdm93vvphhksfwd0mw2dv6h8vi4451p77dhd9"; 25 }; 26 27 nativeBuildInputs = [ dotnetSdk dotnetPackages.Nuget makeWrapper ];
+4 -4
pkgs/applications/misc/josm/default.nix
··· 1 { lib, stdenv, fetchurl, fetchsvn, makeWrapper, unzip, jre, libXxf86vm }: 2 let 3 pname = "josm"; 4 - version = "17580"; 5 srcs = { 6 jar = fetchurl { 7 url = "https://josm.openstreetmap.de/download/josm-snapshot-${version}.jar"; 8 - sha256 = "05y1g48llnpbyv0r8dn3kyhcfqylsg4fbp540xn1n7sk3h17gwsw"; 9 }; 10 macosx = fetchurl { 11 url = "https://josm.openstreetmap.de/download/macosx/josm-macos-${version}-java16.zip"; 12 - sha256 = "0aqkr6951zbi7a6zawvpsh51i0c4nyz2xkj52gg8n4vxli5pp3y1"; 13 }; 14 pkg = fetchsvn { 15 url = "https://josm.openstreetmap.de/svn/trunk/native/linux/tested"; 16 rev = version; 17 - sha256 = "04mxrirlyjy8i5s6y8w84kxv3wjlhhdfmlaxxlxd25viim73g3zv"; 18 }; 19 }; 20 in
··· 1 { lib, stdenv, fetchurl, fetchsvn, makeWrapper, unzip, jre, libXxf86vm }: 2 let 3 pname = "josm"; 4 + version = "17702"; 5 srcs = { 6 jar = fetchurl { 7 url = "https://josm.openstreetmap.de/download/josm-snapshot-${version}.jar"; 8 + sha256 = "1p7p0jd87sxrs5n0r82apkilx0phgmjw7vpdg8qrr5msda4rsmpk"; 9 }; 10 macosx = fetchurl { 11 url = "https://josm.openstreetmap.de/download/macosx/josm-macos-${version}-java16.zip"; 12 + sha256 = "0r17cphxm852ykb8mkil29rr7sb0bj5w69qd5wz8zf2f9djk9npk"; 13 }; 14 pkg = fetchsvn { 15 url = "https://josm.openstreetmap.de/svn/trunk/native/linux/tested"; 16 rev = version; 17 + sha256 = "1b7dryvakph8znh2ahgywch66l4bl5rmgsr79axnz1xi12g8ac12"; 18 }; 19 }; 20 in
+2
pkgs/applications/misc/orpie/default.nix
··· 4 pname = "orpie"; 5 version = "1.6.1"; 6 7 src = fetchFromGitHub { 8 owner = "pelzlpj"; 9 repo = pname;
··· 4 pname = "orpie"; 5 version = "1.6.1"; 6 7 + useDune2 = true; 8 + 9 src = fetchFromGitHub { 10 owner = "pelzlpj"; 11 repo = pname;
+9 -1
pkgs/applications/misc/qlcplus/default.nix
··· 1 - { lib, mkDerivation, fetchFromGitHub, qmake, pkg-config, udev 2 , qtmultimedia, qtscript, alsaLib, ola, libftdi1, libusb-compat-0_1 3 , libsndfile, libmad 4 }: ··· 13 rev = "QLC+_${version}"; 14 sha256 = "PB1Y8N1TrJMcS7A2e1nKjsUlAxOYjdJqBhbyuDCAbGs="; 15 }; 16 17 nativeBuildInputs = [ qmake pkg-config ]; 18 buildInputs = [
··· 1 + { lib, mkDerivation, fetchFromGitHub, fetchpatch, qmake, pkg-config, udev 2 , qtmultimedia, qtscript, alsaLib, ola, libftdi1, libusb-compat-0_1 3 , libsndfile, libmad 4 }: ··· 13 rev = "QLC+_${version}"; 14 sha256 = "PB1Y8N1TrJMcS7A2e1nKjsUlAxOYjdJqBhbyuDCAbGs="; 15 }; 16 + 17 + patches = [ 18 + (fetchpatch { 19 + name = "qt5.15-deprecation-fixes.patch"; 20 + url = "https://github.com/mcallegari/qlcplus/commit/e4ce4b0226715876e8e9e3b23785d43689b2bb64.patch"; 21 + sha256 = "1zhrg6ava1nyc97xcx75r02zzkxmar0973w4jwkm5ch3iqa8bqnh"; 22 + }) 23 + ]; 24 25 nativeBuildInputs = [ qmake pkg-config ]; 26 buildInputs = [
+9 -5
pkgs/applications/networking/charles/default.nix
··· 3 , makeWrapper 4 , makeDesktopItem 5 , fetchurl 6 , jdk8 7 }: 8 9 let 10 - generic = { version, sha256, ... }@attrs: 11 let 12 desktopItem = makeDesktopItem { 13 categories = "Network;Development;WebDevelopment;Java;"; ··· 25 inherit version; 26 27 src = fetchurl { 28 - url = "https://www.charlesproxy.com/assets/release/${version}/charles-proxy-${version}.tar.gz"; 29 inherit sha256; 30 }; 31 nativeBuildInputs = [ makeWrapper ]; 32 33 installPhase = '' 34 - makeWrapper ${jdk8.jre}/bin/java $out/bin/charles \ 35 --add-flags "-Xmx1024M -Dcharles.config='~/.charles.config' -jar $out/share/java/charles.jar" 36 37 for fn in lib/*.jar; do ··· 56 57 in { 58 charles4 = (generic { 59 - version = "4.2.8"; 60 - sha256 = "1jzjdhzxgrq7pdfryfkg0hsjpyni14ma4x8jbdk1rqll78ccr080"; 61 }); 62 charles3 = (generic { 63 version = "3.12.3"; 64 sha256 = "13zk82ny1w5zd9qcs9qkq0kdb22ni5byzajyshpxdfm4zv6p32ss"; 65 }); 66 } 67
··· 3 , makeWrapper 4 , makeDesktopItem 5 , fetchurl 6 + , jdk11 7 , jdk8 8 }: 9 10 let 11 + generic = { version, sha256, platform ? "", jdk, ... }@attrs: 12 let 13 desktopItem = makeDesktopItem { 14 categories = "Network;Development;WebDevelopment;Java;"; ··· 26 inherit version; 27 28 src = fetchurl { 29 + url = "https://www.charlesproxy.com/assets/release/${version}/charles-proxy-${version}${platform}.tar.gz"; 30 inherit sha256; 31 }; 32 nativeBuildInputs = [ makeWrapper ]; 33 34 installPhase = '' 35 + makeWrapper ${jdk}/bin/java $out/bin/charles \ 36 --add-flags "-Xmx1024M -Dcharles.config='~/.charles.config' -jar $out/share/java/charles.jar" 37 38 for fn in lib/*.jar; do ··· 57 58 in { 59 charles4 = (generic { 60 + version = "4.6.1"; 61 + sha256 = "1kl83jjj5wjhdpj34gcj04vf1asxlqlfx9zi91ln4v90swlaaclv"; 62 + platform = "_amd64"; 63 + jdk = jdk11; 64 }); 65 charles3 = (generic { 66 version = "3.12.3"; 67 sha256 = "13zk82ny1w5zd9qcs9qkq0kdb22ni5byzajyshpxdfm4zv6p32ss"; 68 + jdk = jdk8.jre; 69 }); 70 } 71
+4 -4
pkgs/applications/networking/cluster/fluxcd/default.nix
··· 1 { lib, buildGoModule, fetchFromGitHub, fetchzip, installShellFiles }: 2 3 let 4 - version = "0.10.0"; 5 6 manifests = fetchzip { 7 url = "https://github.com/fluxcd/flux2/releases/download/v${version}/manifests.tar.gz"; 8 - sha256 = "Der1Ud27eIV450KkxDTF2frmeKEHKsg6vJgdXE+3548="; 9 stripRoot = false; 10 }; 11 in ··· 19 owner = "fluxcd"; 20 repo = "flux2"; 21 rev = "v${version}"; 22 - sha256 = "iJ6UyHbF4+RvfNoOuHt6X2R6XhpBe+t76deldwY5P2c="; 23 }; 24 25 - vendorSha256 = "Z0keCr+KZ593c6a/56lYJwOgXu5hrUSn6N3NFf2LDUM="; 26 27 nativeBuildInputs = [ installShellFiles ]; 28
··· 1 { lib, buildGoModule, fetchFromGitHub, fetchzip, installShellFiles }: 2 3 let 4 + version = "0.11.0"; 5 6 manifests = fetchzip { 7 url = "https://github.com/fluxcd/flux2/releases/download/v${version}/manifests.tar.gz"; 8 + sha256 = "sha256-nqvFJriNMK3SvAsNzhE8MCzVNR8j/TjYU+f1PbuxkuI="; 9 stripRoot = false; 10 }; 11 in ··· 19 owner = "fluxcd"; 20 repo = "flux2"; 21 rev = "v${version}"; 22 + sha256 = "sha256-V4cZuRlC1Hu4gBG5/8ZNBKlSBFLgOtSJ3GbpjW5/8xM="; 23 }; 24 25 + vendorSha256 = "sha256-aVVvrOjCKxzFer5uZRSu1LCQKkGkPcBdKdebN5uHUUg="; 26 27 nativeBuildInputs = [ installShellFiles ]; 28
+6 -4
pkgs/applications/networking/cluster/tanka/default.nix
··· 2 3 buildGoModule rec { 4 pname = "tanka"; 5 - version = "0.14.0"; 6 7 src = fetchFromGitHub { 8 owner = "grafana"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-y2HhtYKgC9Y397dZ14eQoPZxqS1fTOXVD8B4wdLIHzM="; 12 }; 13 14 vendorSha256 = "sha256-vpm2y/CxRNWkz6+AOMmmZH5AjRQWAa6WD5Fnx5lqJYw="; 15 16 doCheck = false; 17 18 - buildFlagsArray = [ "-ldflags=-s -w -X main.Version=${version}" ]; 19 20 nativeBuildInputs = [ installShellFiles ]; 21 ··· 26 27 meta = with lib; { 28 description = "Flexible, reusable and concise configuration for Kubernetes"; 29 - homepage = "https://github.com/grafana/tanka/"; 30 license = licenses.asl20; 31 maintainers = with maintainers; [ mikefaille ]; 32 platforms = platforms.unix;
··· 2 3 buildGoModule rec { 4 pname = "tanka"; 5 + version = "0.15.0"; 6 7 src = fetchFromGitHub { 8 owner = "grafana"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-ckXvDB3TU9HAXowAAr/fRmX3mylVvPKW8I74R/vUaRY="; 12 }; 13 14 vendorSha256 = "sha256-vpm2y/CxRNWkz6+AOMmmZH5AjRQWAa6WD5Fnx5lqJYw="; 15 16 doCheck = false; 17 18 + subPackages = [ "cmd/tk" ]; 19 + 20 + buildFlagsArray = [ "-ldflags=-s -w -extldflags \"-static\" -X github.com/grafana/tanka/pkg/tanka.CURRENT_VERSION=v${version}" ]; 21 22 nativeBuildInputs = [ installShellFiles ]; 23 ··· 28 29 meta = with lib; { 30 description = "Flexible, reusable and concise configuration for Kubernetes"; 31 + homepage = "https://tanka.dev"; 32 license = licenses.asl20; 33 maintainers = with maintainers; [ mikefaille ]; 34 platforms = platforms.unix;
+15 -6
pkgs/applications/networking/protonmail-bridge/default.nix
··· 2 3 buildGoModule rec { 4 pname = "protonmail-bridge"; 5 - version = "1.5.0"; 6 7 src = fetchFromGitHub { 8 owner = "ProtonMail"; 9 repo = "proton-bridge"; 10 rev = "br-${version}"; 11 - sha256 = "lHqwKlFwz9iO7LJMGFTGCauw12z/BKnQte2sVoVkOaY="; 12 }; 13 14 - vendorSha256 = "eP+7fqBctX9XLCoHVJDI/qaa5tocgg3F5nfUM6dzNRg="; 15 16 nativeBuildInputs = [ pkg-config ]; 17 18 buildInputs = [ libsecret ]; 19 20 buildPhase = '' 21 - make BUILD_TIME= build-nogui 22 ''; 23 24 installPhase = '' 25 - install -Dm555 Desktop-Bridge $out/bin/protonmail-bridge 26 ''; 27 28 meta = with lib; { 29 homepage = "https://github.com/ProtonMail/proton-bridge"; 30 changelog = "https://github.com/ProtonMail/proton-bridge/blob/master/Changelog.md"; 31 downloadPage = "https://github.com/ProtonMail/proton-bridge/releases"; 32 - license = licenses.gpl3; 33 maintainers = with maintainers; [ lightdiscord ]; 34 description = "Use your ProtonMail account with your local e-mail client"; 35 longDescription = ''
··· 2 3 buildGoModule rec { 4 pname = "protonmail-bridge"; 5 + version = "1.6.9"; 6 7 src = fetchFromGitHub { 8 owner = "ProtonMail"; 9 repo = "proton-bridge"; 10 rev = "br-${version}"; 11 + sha256 = "0p2315smxc5knxzr9413w62z65647znh9j9vyb6w5x4dqfp7vhz9"; 12 }; 13 14 + vendorSha256 = "04aa7syp5hhpqxdpqlsmmbwywnbrh4ia0diym2935jbrqccnvm1k"; 15 16 nativeBuildInputs = [ pkg-config ]; 17 18 buildInputs = [ libsecret ]; 19 20 buildPhase = '' 21 + runHook preBuild 22 + 23 + patchShebangs ./utils/ 24 + make BUILD_TIME= -j$NIX_BUILD_CORES build-nogui 25 + 26 + runHook postBuild 27 ''; 28 29 installPhase = '' 30 + runHook preInstall 31 + 32 + install -Dm555 proton-bridge $out/bin/protonmail-bridge 33 + 34 + runHook postInstall 35 ''; 36 37 meta = with lib; { 38 homepage = "https://github.com/ProtonMail/proton-bridge"; 39 changelog = "https://github.com/ProtonMail/proton-bridge/blob/master/Changelog.md"; 40 downloadPage = "https://github.com/ProtonMail/proton-bridge/releases"; 41 + license = licenses.gpl3Plus; 42 maintainers = with maintainers; [ lightdiscord ]; 43 description = "Use your ProtonMail account with your local e-mail client"; 44 longDescription = ''
+8
pkgs/applications/networking/shellhub-agent/default.nix
··· 3 , fetchFromGitHub 4 , genericUpdater 5 , common-updater-scripts 6 }: 7 8 buildGoModule rec { ··· 30 ignoredVersions = ".(rc|beta).*"; 31 }; 32 }; 33 34 meta = with lib; { 35 description =
··· 3 , fetchFromGitHub 4 , genericUpdater 5 , common-updater-scripts 6 + , makeWrapper 7 + , openssh 8 }: 9 10 buildGoModule rec { ··· 32 ignoredVersions = ".(rc|beta).*"; 33 }; 34 }; 35 + 36 + nativeBuildInputs = [ makeWrapper ]; 37 + 38 + postInstall = '' 39 + wrapProgram $out/bin/agent --prefix PATH : ${lib.makeBinPath [ openssh ]} 40 + ''; 41 42 meta = with lib; { 43 description =
+4 -4
pkgs/applications/office/libreoffice/src-fresh/download.nix
··· 742 md5name = "12345c83b89aa29808568977f5200d6da00f88a035517f925293355432ffe61f-postgresql-13.1.tar.bz2"; 743 } 744 { 745 - name = "Python-3.8.4.tar.xz"; 746 - url = "https://dev-www.libreoffice.org/src/Python-3.8.4.tar.xz"; 747 - sha256 = "5f41968a95afe9bc12192d7e6861aab31e80a46c46fa59d3d837def6a4cd4d37"; 748 md5 = ""; 749 - md5name = "5f41968a95afe9bc12192d7e6861aab31e80a46c46fa59d3d837def6a4cd4d37-Python-3.8.4.tar.xz"; 750 } 751 { 752 name = "QR-Code-generator-1.4.0.tar.gz";
··· 742 md5name = "12345c83b89aa29808568977f5200d6da00f88a035517f925293355432ffe61f-postgresql-13.1.tar.bz2"; 743 } 744 { 745 + name = "Python-3.8.8rc1.tar.xz"; 746 + url = "https://dev-www.libreoffice.org/src/Python-3.8.8rc1.tar.xz"; 747 + sha256 = "bd746ed1ad9ccfa9b2a8d13736a5c452025c3600913d000078e6ed1df3d767b6"; 748 md5 = ""; 749 + md5name = "bd746ed1ad9ccfa9b2a8d13736a5c452025c3600913d000078e6ed1df3d767b6-Python-3.8.8rc1.tar.xz"; 750 } 751 { 752 name = "QR-Code-generator-1.4.0.tar.gz";
+4 -4
pkgs/applications/office/libreoffice/src-fresh/primary.nix
··· 8 9 major = "7"; 10 minor = "1"; 11 - patch = "1"; 12 tweak = "2"; 13 14 subdir = "${major}.${minor}.${patch}"; ··· 17 18 src = fetchurl { 19 url = "https://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${version}.tar.xz"; 20 - sha256 = "1vz028hzbc4n8jznigs419ygylz1vp426dprrkm62bzckv2p1rfn"; 21 }; 22 23 # FIXME rename 24 translations = fetchSrc { 25 name = "translations"; 26 - sha256 = "1vidv8077f394zn87b2ng1hsld0hgr1zb1p9lmjx0n9k7s7clavh"; 27 }; 28 29 # the "dictionaries" archive is not used for LO build because we already build hunspellDicts packages from ··· 31 32 help = fetchSrc { 33 name = "help"; 34 - sha256 = "14wn0lvvplsj194jdqqv184xx0adb4mm8bjflddvcqsl7xsfqx27"; 35 }; 36 }
··· 8 9 major = "7"; 10 minor = "1"; 11 + patch = "2"; 12 tweak = "2"; 13 14 subdir = "${major}.${minor}.${patch}"; ··· 17 18 src = fetchurl { 19 url = "https://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${version}.tar.xz"; 20 + sha256 = "1y19p9701msf6jjzp9d5ighvmyjzj68qzhm2bk3l5p16ys8qk9bb"; 21 }; 22 23 # FIXME rename 24 translations = fetchSrc { 25 name = "translations"; 26 + sha256 = "1j5251lbc35d521d92w52lgps0v5pg8mhr8y3r6x2nl9p0gvw957"; 27 }; 28 29 # the "dictionaries" archive is not used for LO build because we already build hunspellDicts packages from ··· 31 32 help = fetchSrc { 33 name = "help"; 34 + sha256 = "1bsrkmzhhpyrmi7akmdfvz4zb543fc093az9965k14rp8l6rhnvf"; 35 }; 36 }
+34
pkgs/applications/radio/ubertooth/default.nix
···
··· 1 + { stdenv, lib, fetchFromGitHub, cmake, pkg-config, libbtbb, libpcap , libusb1, bluez 2 + , udevGroup ? "ubertooth" 3 + }: 4 + 5 + stdenv.mkDerivation rec { 6 + pname = "ubertooth"; 7 + version = "2020-12-R1"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "greatscottgadgets"; 11 + repo = pname; 12 + rev = version; 13 + sha256 = "11r5ag2l5xn4pr7ycicm30w9c3ldn9yiqj1sqnjc79csxl2vrcfw"; 14 + }; 15 + 16 + sourceRoot = "source/host"; 17 + 18 + nativeBuildInputs = [ cmake pkg-config ]; 19 + buildInputs = [ libbtbb libpcap libusb1 bluez ]; 20 + 21 + cmakeFlags = lib.optionals stdenv.isLinux [ 22 + "-DINSTALL_UDEV_RULES=TRUE" 23 + "-DUDEV_RULES_PATH=etc/udev/rules.d" 24 + "-DUDEV_RULES_GROUP=${udevGroup}" 25 + ]; 26 + 27 + meta = with lib; { 28 + description = "Open source wireless development platform suitable for Bluetooth experimentation"; 29 + homepage = "https://github.com/greatscottgadgets/ubertooth"; 30 + license = licenses.gpl2; 31 + maintainers = with maintainers; [ oxzi ]; 32 + platforms = platforms.linux; 33 + }; 34 + }
+34
pkgs/applications/version-management/git-and-tools/git-annex-remote-googledrive/default.nix
···
··· 1 + { lib 2 + , buildPythonApplication 3 + , fetchPypi 4 + , annexremote 5 + , drivelib 6 + , GitPython 7 + , tenacity 8 + , humanfriendly 9 + }: 10 + 11 + buildPythonApplication rec { 12 + pname = "git-annex-remote-googledrive"; 13 + version = "1.3.0"; 14 + 15 + src = fetchPypi { 16 + inherit pname version; 17 + sha256 = "118w0fyy6pck8hyj925ym6ak0xxqhkaq2vharnpl9b97nab4mqg8"; 18 + }; 19 + 20 + propagatedBuildInputs = [ annexremote drivelib GitPython tenacity humanfriendly ]; 21 + 22 + # while git-annex does come with a testremote command that *could* be used, 23 + # testing this special remote obviously depends on authenticating with google 24 + doCheck = false; 25 + 26 + pythonImportsCheck = [ "git_annex_remote_googledrive" ]; 27 + 28 + meta = with lib; { 29 + description = "A git-annex special remote for Google Drive"; 30 + homepage = "https://pypi.org/project/git-annex-remote-googledrive/"; 31 + license = licenses.gpl3Only; 32 + maintainers = with maintainers; [ gravndal ]; 33 + }; 34 + }
+24
pkgs/applications/video/kodi-packages/inputstream-ffmpegdirect/default.nix
···
··· 1 + { lib, rel, buildKodiBinaryAddon, fetchFromGitHub, kodi, bzip2, zlib }: 2 + 3 + buildKodiBinaryAddon rec { 4 + pname = "inputstream-ffmpegdirect"; 5 + namespace = "inputstream.ffmpegdirect"; 6 + version = "1.19.4"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "xbmc"; 10 + repo = "inputstream.ffmpegdirect"; 11 + rev = "${version}-${rel}"; 12 + sha256 = "1ppvs6zybbi73zq1qh8klyhj99byh61c6nijmb1gd5yhg7cywf72"; 13 + }; 14 + 15 + extraBuildInputs = [ bzip2 zlib kodi.ffmpeg ]; 16 + 17 + meta = with lib; { 18 + homepage = "https://github.com/xbmc/inputstream.ffmpegdirect/"; 19 + description = "InputStream Client for streams that can be opened by either FFmpeg's libavformat or Kodi's cURL"; 20 + platforms = platforms.all; 21 + license = licenses.gpl2Plus; 22 + maintainers = teams.kodi.members; 23 + }; 24 + }
+24
pkgs/applications/video/kodi-packages/inputstream-rtmp/default.nix
···
··· 1 + { lib, rel, buildKodiBinaryAddon, fetchFromGitHub, openssl, rtmpdump, zlib }: 2 + 3 + buildKodiBinaryAddon rec { 4 + pname = "inputstream-rtmp"; 5 + namespace = "inputstream.rtmp"; 6 + version = "3.4.0"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "xbmc"; 10 + repo = "inputstream.rtmp"; 11 + rev = "${version}-${rel}"; 12 + sha256 = "1q4k6plkjasnjs7gnbcc1x2mwr562ach7bkqk1z1y343s0dp9qnq"; 13 + }; 14 + 15 + extraBuildInputs = [ openssl rtmpdump zlib ]; 16 + 17 + meta = with lib; { 18 + homepage = "https://github.com/xbmc/inputstream.rtmp/"; 19 + description = "Client for RTMP streams"; 20 + platforms = platforms.all; 21 + license = licenses.gpl2Plus; 22 + maintainers = teams.kodi.members; 23 + }; 24 + }
+16 -4
pkgs/applications/video/kodi-packages/pvr-iptvsimple/default.nix
··· 1 - { lib, rel, buildKodiBinaryAddon, fetchFromGitHub, zlib, pugixml }: 2 buildKodiBinaryAddon rec { 3 pname = "pvr-iptvsimple"; 4 namespace = "pvr.iptvsimple"; 5 - version = "7.4.2"; 6 7 src = fetchFromGitHub { 8 owner = "kodi-pvr"; 9 repo = "pvr.iptvsimple"; 10 rev = "${version}-${rel}"; 11 - sha256 = "062i922qi0izkvn7v47yhyy2cf3fa7xc3k95b1gm9abfdwkk8ywr"; 12 }; 13 14 - extraBuildInputs = [ zlib pugixml ]; 15 16 meta = with lib; { 17 homepage = "https://github.com/kodi-pvr/pvr.iptvsimple";
··· 1 + { lib, rel, buildKodiBinaryAddon, fetchFromGitHub 2 + , pugixml, zlib 3 + , inputstream-adaptive, inputstream-ffmpegdirect, inputstream-rtmp 4 + }: 5 + 6 buildKodiBinaryAddon rec { 7 pname = "pvr-iptvsimple"; 8 namespace = "pvr.iptvsimple"; 9 + version = "7.5.1"; 10 11 src = fetchFromGitHub { 12 owner = "kodi-pvr"; 13 repo = "pvr.iptvsimple"; 14 rev = "${version}-${rel}"; 15 + sha256 = "1q470v9nipnrca0rbwvqlbxw9ccbl9s1k46hwwrh94vhyp5rjlib"; 16 }; 17 18 + extraBuildInputs = [ 19 + pugixml 20 + zlib 21 + ]; 22 + propagatedBuildInputs = [ 23 + inputstream-adaptive 24 + inputstream-ffmpegdirect 25 + inputstream-rtmp 26 + ]; 27 28 meta = with lib; { 29 homepage = "https://github.com/kodi-pvr/pvr.iptvsimple";
+1
pkgs/applications/video/kodi/unwrapped.nix
··· 230 231 passthru = { 232 pythonPackages = python3Packages; 233 }; 234 235 meta = with lib; {
··· 230 231 passthru = { 232 pythonPackages = python3Packages; 233 + ffmpeg = ffmpeg; 234 }; 235 236 meta = with lib; {
+29
pkgs/data/fonts/curie/default.nix
···
··· 1 + { lib, fetchurl }: 2 + 3 + let 4 + version = "1.0"; 5 + in fetchurl rec { 6 + name = "curie-${version}"; 7 + 8 + url = "https://github.com/NerdyPepper/curie/releases/download/v${version}/curie-v${version}.tar.gz"; 9 + 10 + downloadToTemp = true; 11 + 12 + recursiveHash = true; 13 + 14 + sha256 = "sha256-twPAzsbTveYW0rQd7FYZz5AMZgvPbNmn5c7Nfzn7B0A="; 15 + 16 + postFetch = '' 17 + tar xzf $downloadedFile 18 + mkdir -p $out/share/fonts/misc 19 + install *.otb $out/share/fonts/misc 20 + ''; 21 + 22 + meta = with lib; { 23 + description = "An upscaled version of scientifica"; 24 + homepage = "https://github.com/NerdyPepper/curie"; 25 + license = licenses.ofl; 26 + platforms = platforms.all; 27 + maintainers = with maintainers; [ fortuneteller2k ]; 28 + }; 29 + }
+31
pkgs/desktops/gnome-3/extensions/disable-unredirect/default.nix
···
··· 1 + { lib, stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "gnome-shell-extension-disable-unredirect"; 5 + version = "unstable-2021-01-17"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "kazysmaster"; 9 + repo = "gnome-shell-extension-disable-unredirect"; 10 + rev = "2ecb2f489ea3316b77d04f03a0c885f322c67e79"; 11 + sha256 = "1rjyrg8qya0asndxr7189a9npww0rcxk02wkxrxjy7fdp5m89p7y"; 12 + }; 13 + 14 + uuid = "unredirect@vaina.lt"; 15 + 16 + installPhase = '' 17 + runHook preInstall 18 + 19 + mkdir -p $out/share/gnome-shell/extensions 20 + cp -R ${uuid} $out/share/gnome-shell/extensions/${uuid} 21 + 22 + runHook postInstall 23 + ''; 24 + 25 + meta = with lib; { 26 + description = "Disables unredirect fullscreen windows in gnome-shell to avoid tearing"; 27 + license = licenses.gpl3Only; 28 + homepage = "https://github.com/kazysmaster/gnome-shell-extension-disable-unredirect"; 29 + maintainers = with maintainers; [ eduardosm ]; 30 + }; 31 + }
+4
pkgs/desktops/gnome-3/misc/geary/default.nix
··· 118 patchShebangs build-aux/yaml_to_json.py 119 120 chmod +x desktop/geary-attach 121 ''; 122 123 doCheck = true;
··· 118 patchShebangs build-aux/yaml_to_json.py 119 120 chmod +x desktop/geary-attach 121 + 122 + # Drop test that breaks after webkitgtk 2.32.0 update 123 + # https://gitlab.gnome.org/GNOME/geary/-/issues/1180 124 + sed -i '/add_test("edit_context_font", edit_context_font);/d' test/js/composer-page-state-test.vala 125 ''; 126 127 doCheck = true;
+1 -1
pkgs/development/compilers/llvm/12/clang/default.nix
··· 8 pname = "clang"; 9 inherit version; 10 11 - src = fetch "clang" "1xg2wy86zdj1d4h33n9mmb4j0x8bp9a5pk4qnnx3imlh8n6vhrqj"; 12 inherit clang-tools-extra_src; 13 14 unpackPhase = ''
··· 8 pname = "clang"; 9 inherit version; 10 11 + src = fetch "clang" "11ay72f81ffygil5ficq7mzplck4gffm77p0yj4ib3dgiqbb1qbw"; 12 inherit clang-tools-extra_src; 13 14 unpackPhase = ''
+1 -1
pkgs/development/compilers/llvm/12/compiler-rt.nix
··· 11 stdenv.mkDerivation rec { 12 pname = "compiler-rt"; 13 inherit version; 14 - src = fetch pname "1n4jf0clwj3q0vfc7xjl0k4dqj69fvgsmib8qdqh45imgamnypvb"; 15 16 nativeBuildInputs = [ cmake python3 llvm ]; 17 buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
··· 11 stdenv.mkDerivation rec { 12 pname = "compiler-rt"; 13 inherit version; 14 + src = fetch pname "01dvir3858qkjmqhw2h6jjagq0la0kasnwzqbyv91yixnwx8369z"; 15 16 nativeBuildInputs = [ cmake python3 llvm ]; 17 buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
+2 -2
pkgs/development/compilers/llvm/12/default.nix
··· 8 9 let 10 release_version = "12.0.0"; 11 - candidate = "rc3"; # empty or "rcN" 12 dash-candidate = lib.optionalString (candidate != "") "-${candidate}"; 13 version = "${release_version}${dash-candidate}"; # differentiating these (variables) is important for RCs 14 targetConfig = stdenv.targetPlatform.config; ··· 18 inherit sha256; 19 }; 20 21 - clang-tools-extra_src = fetch "clang-tools-extra" "1p6ln69iciwwpng226mfvxf3vylfvbz73y0a4y4v2rg7pn7hk671"; 22 23 tools = lib.makeExtensible (tools: let 24 callPackage = newScope (tools // { inherit stdenv cmake libxml2 python3 isl release_version version fetch; });
··· 8 9 let 10 release_version = "12.0.0"; 11 + candidate = "rc4"; # empty or "rcN" 12 dash-candidate = lib.optionalString (candidate != "") "-${candidate}"; 13 version = "${release_version}${dash-candidate}"; # differentiating these (variables) is important for RCs 14 targetConfig = stdenv.targetPlatform.config; ··· 18 inherit sha256; 19 }; 20 21 + clang-tools-extra_src = fetch "clang-tools-extra" "1m1qga8m967bzqkxwx9xqkw1lkxi9dhlrn6km2k7g2yqyb6k14ag"; 22 23 tools = lib.makeExtensible (tools: let 24 callPackage = newScope (tools // { inherit stdenv cmake libxml2 python3 isl release_version version fetch; });
+1 -1
pkgs/development/compilers/llvm/12/libc++/default.nix
··· 6 pname = "libc++"; 7 inherit version; 8 9 - src = fetch "libcxx" "1114yvbipwdk1qk1xrb7s05hf7cycyknpf4ph0wbqpjzzzxk0hgk"; 10 11 postUnpack = '' 12 unpackFile ${libcxxabi.src}
··· 6 pname = "libc++"; 7 inherit version; 8 9 + src = fetch "libcxx" "0ai91zls1738502c3b2frhawmjpi73rm3m677hh540wrjp3xv0ql"; 10 11 postUnpack = '' 12 unpackFile ${libcxxabi.src}
+1 -1
pkgs/development/compilers/llvm/12/libc++abi.nix
··· 6 pname = "libc++abi"; 7 inherit version; 8 9 - src = fetch "libcxxabi" "1vdc6zld5rlbrbpxf0fxs0m6k1cabpi82ksiwgj1pmhx8l140n0q"; 10 11 nativeBuildInputs = [ cmake python3 ]; 12 buildInputs = lib.optional (!stdenv.isDarwin && !stdenv.isFreeBSD && !stdenv.hostPlatform.isWasm) libunwind;
··· 6 pname = "libc++abi"; 7 inherit version; 8 9 + src = fetch "libcxxabi" "02qp6ndagq7n48p53z93d1rrx0v0v4rsahd4vkv5frid0vm4ah9h"; 10 11 nativeBuildInputs = [ cmake python3 ]; 12 buildInputs = lib.optional (!stdenv.isDarwin && !stdenv.isFreeBSD && !stdenv.hostPlatform.isWasm) libunwind;
+1 -1
pkgs/development/compilers/llvm/12/libunwind.nix
··· 6 pname = "libunwind"; 7 inherit version; 8 9 - src = fetch pname "18n3k2kf6pyvzspnz1i22czbgi14kmch76fxml8kvhky7mw7v1yz"; 10 11 postUnpack = '' 12 unpackFile ${libcxx.src}
··· 6 pname = "libunwind"; 7 inherit version; 8 9 + src = fetch pname "1a5db1lxw98a430b8mnaclc0w98y6cc8k587kgjhn0nghl40l40i"; 10 11 postUnpack = '' 12 unpackFile ${libcxx.src}
+1 -1
pkgs/development/compilers/llvm/12/lld.nix
··· 11 pname = "lld"; 12 inherit version; 13 14 - src = fetch pname "097pxd7hgipr538vi48q8fi5svbd03bx3d078a06wigmvb7kzvw1"; 15 16 nativeBuildInputs = [ cmake ]; 17 buildInputs = [ llvm libxml2 ];
··· 11 pname = "lld"; 12 inherit version; 13 14 + src = fetch pname "0r9pxhvinipirv9s5k8fnsnqd30zfniwqjkvw5sac3lq29rn2lp1"; 15 16 nativeBuildInputs = [ cmake ]; 17 buildInputs = [ llvm libxml2 ];
+1 -1
pkgs/development/compilers/llvm/12/lldb.nix
··· 25 pname = "lldb"; 26 inherit version; 27 28 - src = fetch pname "077fli9l0fg4kpa5l9vrj810s13ajs15d745lg4l8kmjkbw7p3yh"; 29 30 patches = [ ./lldb-procfs.patch ]; 31
··· 25 pname = "lldb"; 26 inherit version; 27 28 + src = fetch pname "0943gan83mldizwbhksd07w4h90z4djjpv5f8v49caz8y9113svg"; 29 30 patches = [ ./lldb-procfs.patch ]; 31
+2 -2
pkgs/development/compilers/llvm/12/llvm.nix
··· 32 pname = "llvm"; 33 inherit version; 34 35 - src = fetch pname "1lpdkndjb8cxpcyjv9glqp58687j8y8cvd7r72pw6sbqkkzq86g5"; 36 - polly_src = fetch "polly" "002a8q3lgspvqdb8fi09cl11x438x6a2d2sb026jargrx92i5vas"; 37 38 unpackPhase = '' 39 unpackFile $src
··· 32 pname = "llvm"; 33 inherit version; 34 35 + src = fetch pname "1jif65i165h41cfcsfvfjy5k1yrnikg61assj5vs0f25pv1vbyvf"; 36 + polly_src = fetch "polly" "0hk6j6rsal3zsp1f9fla71yzbwmzz9007m63x22hy7qfiwyplvf2"; 37 38 unpackPhase = '' 39 unpackFile $src
+1 -1
pkgs/development/compilers/llvm/12/openmp.nix
··· 11 pname = "openmp"; 12 inherit version; 13 14 - src = fetch pname "0kw1g7ndvwi0g7lx5d55mp81h9vffxz820l9r2wjdvvfs3dsyq05"; 15 16 nativeBuildInputs = [ cmake perl ]; 17 buildInputs = [ llvm ];
··· 11 pname = "openmp"; 12 inherit version; 13 14 + src = fetch pname "07g2rsfhli3szv3chzy6y37p2176ywdb6w3k2fv9g2r416cpxjdz"; 15 16 nativeBuildInputs = [ cmake perl ]; 17 buildInputs = [ llvm ];
+11
pkgs/development/haskell-modules/configuration-hackage2nix.yaml
··· 5360 - forest 5361 - forest-fire 5362 - Forestry 5363 - forger 5364 - ForkableT 5365 - formal ··· 5377 - forth-hll 5378 - Fortnite-Hack-Cheats-Free-V-Bucks-Generator 5379 - fortran-src 5380 - fortytwo 5381 - foscam-directory 5382 - foscam-filename ··· 7301 - json-pointer-hasql 7302 - json-pointy 7303 - json-python 7304 - json-rpc-client 7305 - json-schema 7306 - json-sop ··· 8592 - OpenAFP 8593 - OpenAFP-Utils 8594 - openai-hs 8595 - openapi-petstore 8596 - openapi-typed 8597 - openapi3 ··· 8999 - polydata-core 9000 - polynomial 9001 - polysemy-chronos 9002 - polysemy-http 9003 - polysemy-methodology 9004 - polysemy-methodology-composite 9005 - polysemy-optics ··· 10066 - signable 10067 - signals 10068 - signed-multiset 10069 - silkscreen 10070 - silvi 10071 - simd ··· 10563 - swf 10564 - swift-lda 10565 - swiss-ephemeris 10566 - sws 10567 - syb-extras 10568 - syb-with-class-instances-text ··· 11826 - zoom-cache-pcm 11827 - zoom-cache-sndfile 11828 - zoom-refs 11829 - zsdd 11830 - zsh-battery 11831 - zsyntax
··· 5360 - forest 5361 - forest-fire 5362 - Forestry 5363 + - forex2ledger 5364 - forger 5365 - ForkableT 5366 - formal ··· 5378 - forth-hll 5379 - Fortnite-Hack-Cheats-Free-V-Bucks-Generator 5380 - fortran-src 5381 + - fortran-src-extras 5382 - fortytwo 5383 - foscam-directory 5384 - foscam-filename ··· 7303 - json-pointer-hasql 7304 - json-pointy 7305 - json-python 7306 + - json-query 7307 - json-rpc-client 7308 - json-schema 7309 - json-sop ··· 8595 - OpenAFP 8596 - OpenAFP-Utils 8597 - openai-hs 8598 + - openai-servant 8599 - openapi-petstore 8600 - openapi-typed 8601 - openapi3 ··· 9003 - polydata-core 9004 - polynomial 9005 - polysemy-chronos 9006 + - polysemy-conc 9007 - polysemy-http 9008 + - polysemy-log 9009 + - polysemy-log-co 9010 + - polysemy-log-di 9011 - polysemy-methodology 9012 - polysemy-methodology-composite 9013 - polysemy-optics ··· 10074 - signable 10075 - signals 10076 - signed-multiset 10077 + - signify-hs 10078 - silkscreen 10079 - silvi 10080 - simd ··· 10572 - swf 10573 - swift-lda 10574 - swiss-ephemeris 10575 + - switch 10576 - sws 10577 - syb-extras 10578 - syb-with-class-instances-text ··· 11836 - zoom-cache-pcm 11837 - zoom-cache-sndfile 11838 - zoom-refs 11839 + - zoovisitor 11840 - zsdd 11841 - zsh-battery 11842 - zsyntax
+3 -3
pkgs/development/interpreters/clojure/babashka.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "babashka"; 5 - version = "0.2.10"; 6 7 reflectionJson = fetchurl { 8 name = "reflection.json"; 9 url = "https://github.com/borkdude/${pname}/releases/download/v${version}/${pname}-${version}-reflection.json"; 10 - sha256 = "1c7f0z1hi0vcfz532r3fhr4c64jjqppf94idpa1jziz1dljkwk85"; 11 }; 12 13 src = fetchurl { 14 url = "https://github.com/borkdude/${pname}/releases/download/v${version}/${pname}-${version}-standalone.jar"; 15 - sha256 = "0j6k3vmdljf3bjmj5dywhxjmxcs1axscc8dlnw94g5rwf9bin0dn"; 16 }; 17 18 dontUnpack = true;
··· 2 3 stdenv.mkDerivation rec { 4 pname = "babashka"; 5 + version = "0.3.1"; 6 7 reflectionJson = fetchurl { 8 name = "reflection.json"; 9 url = "https://github.com/borkdude/${pname}/releases/download/v${version}/${pname}-${version}-reflection.json"; 10 + sha256 = "0ar2ry07axgrmdb6nsc0786v1a1nwlyvapgxncaaympvn38qk8qf"; 11 }; 12 13 src = fetchurl { 14 url = "https://github.com/borkdude/${pname}/releases/download/v${version}/${pname}-${version}-standalone.jar"; 15 + sha256 = "1fapkyq7fcgydy8sls6jzxagfkhgxhwp1rdvjqxdmqk4d82jwrh2"; 16 }; 17 18 dontUnpack = true;
+1 -1
pkgs/development/interpreters/ruby/rubygems/default.nix
··· 30 description = "Package management framework for Ruby"; 31 homepage = "https://rubygems.org/"; 32 license = with licenses; [ mit /* or */ ruby ]; 33 - maintainers = with maintainers; [ qyliss zimbatm ]; 34 }; 35 }
··· 30 description = "Package management framework for Ruby"; 31 homepage = "https://rubygems.org/"; 32 license = with licenses; [ mit /* or */ ruby ]; 33 + maintainers = with maintainers; [ zimbatm ]; 34 }; 35 }
+2 -2
pkgs/development/libraries/bctoolbox/default.nix
··· 7 8 stdenv.mkDerivation rec { 9 pname = "bctoolbox"; 10 - version = "4.4.34"; 11 12 nativeBuildInputs = [ cmake bcunit ]; 13 buildInputs = [ mbedtls ]; ··· 18 group = "BC"; 19 repo = pname; 20 rev = version; 21 - sha256 = "0bfswwvvdshaahg4jd2j10f0sci8809s4khajd0m6b059zwc7y25"; 22 }; 23 24 # Do not build static libraries
··· 7 8 stdenv.mkDerivation rec { 9 pname = "bctoolbox"; 10 + version = "4.5.1"; 11 12 nativeBuildInputs = [ cmake bcunit ]; 13 buildInputs = [ mbedtls ]; ··· 18 group = "BC"; 19 repo = pname; 20 rev = version; 21 + sha256 = "1mm3v01jz2mp8vajsl45s23gw90zafbgg3br5n5yz03aan08f395"; 22 }; 23 24 # Do not build static libraries
+2 -2
pkgs/development/libraries/belcard/default.nix
··· 7 8 stdenv.mkDerivation rec { 9 pname = "belcard"; 10 - version = "4.4.34"; 11 12 src = fetchFromGitLab { 13 domain = "gitlab.linphone.org"; ··· 15 group = "BC"; 16 repo = pname; 17 rev = version; 18 - sha256 = "16x2xp8d0a115132zhy1kpxkyj86ia7vrsnpjdg78fnbvmvysc8m"; 19 }; 20 21 buildInputs = [ bctoolbox belr ];
··· 7 8 stdenv.mkDerivation rec { 9 pname = "belcard"; 10 + version = "4.5.1"; 11 12 src = fetchFromGitLab { 13 domain = "gitlab.linphone.org"; ··· 15 group = "BC"; 16 repo = pname; 17 rev = version; 18 + sha256 = "14hkgwr2a9zw44v1s8xscqxa2mwin06jsxpwb3hflh9mp16ymfzv"; 19 }; 20 21 buildInputs = [ bctoolbox belr ];
+2 -2
pkgs/development/libraries/belle-sip/default.nix
··· 11 12 stdenv.mkDerivation rec { 13 pname = "belle-sip"; 14 - version = "4.4.34"; 15 16 src = fetchFromGitLab { 17 domain = "gitlab.linphone.org"; ··· 19 group = "BC"; 20 repo = pname; 21 rev = version; 22 - sha256 = "1kknnlczq7dpqaj1dwxvy092dzrqjy11ndkv90rqwmdryigkjk6z"; 23 }; 24 25 nativeBuildInputs = [ antlr3_4 cmake ];
··· 11 12 stdenv.mkDerivation rec { 13 pname = "belle-sip"; 14 + version = "4.5.1"; 15 16 src = fetchFromGitLab { 17 domain = "gitlab.linphone.org"; ··· 19 group = "BC"; 20 repo = pname; 21 rev = version; 22 + sha256 = "0d1wf0jv9lb0s6r49i9gz5nrx8jzpkx558hywll7idma9d0mr61p"; 23 }; 24 25 nativeBuildInputs = [ antlr3_4 cmake ];
+2 -2
pkgs/development/libraries/belr/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "belr"; 9 - version = "4.4.34"; 10 11 src = fetchFromGitLab { 12 domain = "gitlab.linphone.org"; ··· 14 group = "BC"; 15 repo = pname; 16 rev = version; 17 - sha256 = "0w2canwwm0qb99whnangvaybvjzq8xg6vksqxykgr8fbx7clw03h"; 18 }; 19 20 buildInputs = [ bctoolbox ];
··· 6 7 stdenv.mkDerivation rec { 8 pname = "belr"; 9 + version = "4.5.1"; 10 11 src = fetchFromGitLab { 12 domain = "gitlab.linphone.org"; ··· 14 group = "BC"; 15 repo = pname; 16 rev = version; 17 + sha256 = "0m0s7g8d25nbnafbl76w9v3x7q4jhsypxmz1gg80pj7j34xc2dsd"; 18 }; 19 20 buildInputs = [ bctoolbox ];
+2 -2
pkgs/development/libraries/bzrtp/default.nix
··· 7 8 stdenv.mkDerivation rec { 9 pname = "bzrtp"; 10 - version = "4.4.34"; 11 12 src = fetchFromGitLab { 13 domain = "gitlab.linphone.org"; ··· 15 group = "BC"; 16 repo = pname; 17 rev = version; 18 - sha256 = "1yjmsbqmymzl4r7sba6w4a2yld8m6hzafr6jf7sj0syhwpnc3zv6"; 19 }; 20 21 buildInputs = [ bctoolbox sqlite ];
··· 7 8 stdenv.mkDerivation rec { 9 pname = "bzrtp"; 10 + version = "4.5.1"; 11 12 src = fetchFromGitLab { 13 domain = "gitlab.linphone.org"; ··· 15 group = "BC"; 16 repo = pname; 17 rev = version; 18 + sha256 = "1a500ncgznwha0j3c27ak3p4jh5jm6fnnb531k7c0a4i91745agj"; 19 }; 20 21 buildInputs = [ bctoolbox sqlite ];
+2 -2
pkgs/development/libraries/ldb/default.nix
··· 16 17 stdenv.mkDerivation rec { 18 pname = "ldb"; 19 - version = "2.2.0"; 20 21 src = fetchurl { 22 url = "mirror://samba/ldb/${pname}-${version}.tar.gz"; 23 - sha256 = "0pxxb3sn9lignkf80kndd84shxqk9m2qwimz62gzb6khd4bvajqk"; 24 }; 25 26 outputs = [ "out" "dev" ];
··· 16 17 stdenv.mkDerivation rec { 18 pname = "ldb"; 19 + version = "2.3.0"; 20 21 src = fetchurl { 22 url = "mirror://samba/ldb/${pname}-${version}.tar.gz"; 23 + sha256 = "0bcjj4gv48ddg44wyxpsvrs26xry6yy9x9k16qgz0bljs2rhilx4"; 24 }; 25 26 outputs = [ "out" "dev" ];
+22
pkgs/development/libraries/libbtbb/default.nix
···
··· 1 + { stdenv, lib, fetchFromGitHub, cmake }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "libbtbb"; 5 + version = "2020-12-R1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "greatscottgadgets"; 9 + repo = pname; 10 + rev = version; 11 + sha256 = "1byv8174xam7siakr1p0523x97wkh0fmwmq341sd3g70qr2g767d"; 12 + }; 13 + 14 + nativeBuildInputs = [ cmake ]; 15 + 16 + meta = with lib; { 17 + description = "Bluetooth baseband decoding library"; 18 + homepage = "https://github.com/greatscottgadgets/libbtbb"; 19 + license = licenses.gpl2; 20 + maintainers = with maintainers; [ oxzi ]; 21 + }; 22 + }
+4 -7
pkgs/development/libraries/liblinphone/default.nix
··· 10 , cyrus_sasl 11 , doxygen 12 , fetchFromGitLab 13 - , fetchurl 14 , ffmpeg_3 15 , gdk-pixbuf 16 - , git 17 , glib 18 , graphviz 19 , gtk2 ··· 30 , makeWrapper 31 , mbedtls 32 , mediastreamer 33 - , mediastreamer-openh264 34 , openldap 35 , ortp 36 , pango 37 , pkg-config 38 - , python 39 , readline 40 , soci 41 , speex ··· 49 50 stdenv.mkDerivation rec { 51 pname = "liblinphone"; 52 - version = "4.4.35"; 53 54 src = fetchFromGitLab { 55 domain = "gitlab.linphone.org"; ··· 57 group = "BC"; 58 repo = pname; 59 rev = version; 60 - sha256 = "1sysr8wnf1kvq87h2ymr5qk9qcjapayvlmcmzcx3zxk8vhqp83d8"; 61 }; 62 63 # Do not build static libraries ··· 67 # defined when liblinphone and linphone-desktop weren't separated yet, so some 68 # of them might not be needed for liblinphone alone. 69 buildInputs = [ 70 - (python.withPackages (ps: [ ps.pystache ps.six ])) 71 bcg729 72 bctoolbox 73 belcard
··· 10 , cyrus_sasl 11 , doxygen 12 , fetchFromGitLab 13 , ffmpeg_3 14 , gdk-pixbuf 15 , glib 16 , graphviz 17 , gtk2 ··· 28 , makeWrapper 29 , mbedtls 30 , mediastreamer 31 , openldap 32 , ortp 33 , pango 34 , pkg-config 35 + , python3 36 , readline 37 , soci 38 , speex ··· 46 47 stdenv.mkDerivation rec { 48 pname = "liblinphone"; 49 + version = "4.5.1"; 50 51 src = fetchFromGitLab { 52 domain = "gitlab.linphone.org"; ··· 54 group = "BC"; 55 repo = pname; 56 rev = version; 57 + sha256 = "05ybbxq2yqzy3f3vzq8c3szs3qr0zl64la53icpqnmfakwnps5gs"; 58 }; 59 60 # Do not build static libraries ··· 64 # defined when liblinphone and linphone-desktop weren't separated yet, so some 65 # of them might not be needed for liblinphone alone. 66 buildInputs = [ 67 + (python3.withPackages (ps: [ ps.pystache ps.six ])) 68 bcg729 69 bctoolbox 70 belcard
+3 -3
pkgs/development/libraries/lime/default.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "lime"; 13 - version = "4.4.34"; 14 15 src = fetchFromGitLab { 16 domain = "gitlab.linphone.org"; ··· 18 group = "BC"; 19 repo = pname; 20 rev = version; 21 - sha256 = "14jg1zisjbzflw3scfqdbwy48wq3cp93l867vigb8l40lkc6n26z"; 22 }; 23 24 buildInputs = [ bctoolbox soci belle-sip sqlite ]; ··· 30 meta = with lib; { 31 description = "End-to-end encryption library for instant messaging"; 32 homepage = "http://www.linphone.org/technical-corner/lime"; 33 - license = licenses.gpl3; 34 platforms = platforms.all; 35 maintainers = with maintainers; [ jluttine ]; 36 };
··· 10 11 stdenv.mkDerivation rec { 12 pname = "lime"; 13 + version = "4.5.1"; 14 15 src = fetchFromGitLab { 16 domain = "gitlab.linphone.org"; ··· 18 group = "BC"; 19 repo = pname; 20 rev = version; 21 + sha256 = "1fsldk7gxagxkbkzksz6dz8a8dmix1lxfy8nvvp0m355pzgqj6lb"; 22 }; 23 24 buildInputs = [ bctoolbox soci belle-sip sqlite ]; ··· 30 meta = with lib; { 31 description = "End-to-end encryption library for instant messaging"; 32 homepage = "http://www.linphone.org/technical-corner/lime"; 33 + license = licenses.gpl3Only; 34 platforms = platforms.all; 35 maintainers = with maintainers; [ jluttine ]; 36 };
+7 -7
pkgs/development/libraries/mediastreamer/default.nix
··· 4 , cmake 5 , doxygen 6 , fetchFromGitLab 7 - , fetchpatch 8 , ffmpeg_3 9 , glew 10 , gsm 11 , intltool 12 , libGL 13 , libGLU 14 , libX11 ··· 24 , libvpx 25 , ortp 26 , pkg-config 27 - , python 28 , SDL 29 , speex 30 , srtp 31 - , lib, stdenv 32 }: 33 34 stdenv.mkDerivation rec { 35 pname = "mediastreamer2"; 36 - version = "4.4.35"; 37 38 src = fetchFromGitLab { 39 domain = "gitlab.linphone.org"; ··· 41 group = "BC"; 42 repo = pname; 43 rev = version; 44 - sha256 = "18qmg678m087k7qsaxwfcv2p875z2kpy91pqryiv955km40drl0g"; 45 }; 46 47 patches = [ ··· 58 doxygen 59 intltool 60 pkg-config 61 - python 62 ]; 63 64 propagatedBuildInputs = [ ··· 102 meta = with lib; { 103 description = "A powerful and lightweight streaming engine specialized for voice/video telephony applications"; 104 homepage = "http://www.linphone.org/technical-corner/mediastreamer2"; 105 - license = licenses.gpl3; 106 platforms = platforms.linux; 107 maintainers = with maintainers; [ jluttine ]; 108 };
··· 4 , cmake 5 , doxygen 6 , fetchFromGitLab 7 , ffmpeg_3 8 , glew 9 , gsm 10 , intltool 11 + , lib 12 , libGL 13 , libGLU 14 , libX11 ··· 24 , libvpx 25 , ortp 26 , pkg-config 27 + , python3 28 , SDL 29 , speex 30 , srtp 31 + , stdenv 32 }: 33 34 stdenv.mkDerivation rec { 35 pname = "mediastreamer2"; 36 + version = "4.5.1"; 37 38 src = fetchFromGitLab { 39 domain = "gitlab.linphone.org"; ··· 41 group = "BC"; 42 repo = pname; 43 rev = version; 44 + sha256 = "0aqma9834lzy1593qb9qwmzvzn50y6fzhmmg493jznf8977b0gsw"; 45 }; 46 47 patches = [ ··· 58 doxygen 59 intltool 60 pkg-config 61 + python3 62 ]; 63 64 propagatedBuildInputs = [ ··· 102 meta = with lib; { 103 description = "A powerful and lightweight streaming engine specialized for voice/video telephony applications"; 104 homepage = "http://www.linphone.org/technical-corner/mediastreamer2"; 105 + license = licenses.gpl3Only; 106 platforms = platforms.linux; 107 maintainers = with maintainers; [ jluttine ]; 108 };
+2 -2
pkgs/development/libraries/ortp/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "ortp"; 9 - version = "4.4.34"; 10 11 src = fetchFromGitLab { 12 domain = "gitlab.linphone.org"; ··· 14 group = "BC"; 15 repo = pname; 16 rev = version; 17 - sha256 = "1r1kvjzyfvkf66in4p51wi87balzg3sw3aq6r4xr609mz86spi5m"; 18 }; 19 20 # Do not build static libraries
··· 6 7 stdenv.mkDerivation rec { 8 pname = "ortp"; 9 + version = "4.5.1"; 10 11 src = fetchFromGitLab { 12 domain = "gitlab.linphone.org"; ··· 14 group = "BC"; 15 repo = pname; 16 rev = version; 17 + sha256 = "1lc1j7wvkyp5lhcflq3h5y7n8aiwgwj84ffm81ggbsmavamgwkk7"; 18 }; 19 20 # Do not build static libraries
+2 -2
pkgs/development/libraries/qpdf/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "qpdf"; 5 - version = "10.2.0"; 6 7 src = fetchFromGitHub { 8 owner = "qpdf"; 9 repo = "qpdf"; 10 rev = "release-qpdf-${version}"; 11 - sha256 = "sha256-KiO2iIrLLjPhHTiR/FKEGRJOhdVV2kcZK9sdyCqONC8="; 12 }; 13 14 nativeBuildInputs = [ perl ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "qpdf"; 5 + version = "10.3.1"; 6 7 src = fetchFromGitHub { 8 owner = "qpdf"; 9 repo = "qpdf"; 10 rev = "release-qpdf-${version}"; 11 + sha256 = "sha256-iZUJjr9e+d90XA8YEFFwyRR0HjgPgBi6V5gIpVQMcV8="; 12 }; 13 14 nativeBuildInputs = [ perl ];
-28
pkgs/development/ocaml-modules/decompress/1.2.nix
··· 1 - { lib, fetchurl, buildDunePackage 2 - , checkseum, bigarray-compat, optint 3 - }: 4 - 5 - buildDunePackage rec { 6 - version = "1.2.0"; 7 - pname = "decompress"; 8 - 9 - minimumOCamlVersion = "4.07"; 10 - 11 - useDune2 = true; 12 - 13 - src = fetchurl { 14 - url = "https://github.com/mirage/decompress/releases/download/v${version}/decompress-v${version}.tbz"; 15 - sha256 = "1c3sq9a6kpzl0pj3gmg7w18ssjjl70yv0r3l7qjprcncjx23v62i"; 16 - }; 17 - 18 - propagatedBuildInputs = [ optint bigarray-compat checkseum ]; 19 - # required hxd version is not available in nixpkgs 20 - doCheck = false; 21 - 22 - meta = { 23 - description = "Pure OCaml implementation of Zlib"; 24 - license = lib.licenses.mit; 25 - maintainers = [ lib.maintainers.vbgl ]; 26 - homepage = "https://github.com/mirage/decompress"; 27 - }; 28 - }
···
+2
pkgs/development/ocaml-modules/gsl/default.nix
··· 4 pname = "gsl"; 5 version = "1.24.3"; 6 7 minimumOCamlVersion = "4.08"; 8 9 src = fetchurl {
··· 4 pname = "gsl"; 5 version = "1.24.3"; 6 7 + useDune2 = true; 8 + 9 minimumOCamlVersion = "4.08"; 10 11 src = fetchurl {
+3 -3
pkgs/development/ocaml-modules/imagelib/default.nix
··· 4 5 buildDunePackage rec { 6 minimumOCamlVersion = "4.07"; 7 - version = "20200929"; 8 pname = "imagelib"; 9 10 useDune2 = true; 11 12 src = fetchurl { 13 - url = "https://github.com/rlepigre/ocaml-imagelib/releases/download/ocaml-imagelib_${version}/imagelib-ocaml-imagelib_${version}.tbz"; 14 - sha256 = "1wyq4xxj0dxwafbcmd7jylsd8w1gbyl7j4ak6jbq1n0ardwmpwca"; 15 }; 16 17 propagatedBuildInputs = [ decompress stdlib-shims ];
··· 4 5 buildDunePackage rec { 6 minimumOCamlVersion = "4.07"; 7 + version = "20210402"; 8 pname = "imagelib"; 9 10 useDune2 = true; 11 12 src = fetchurl { 13 + url = "https://github.com/rlepigre/ocaml-imagelib/releases/download/${version}/imagelib-${version}.tbz"; 14 + sha256 = "b3c8ace02b10b36b6c60b3ce3ae0b9109d4a861916ec320c59cc1194f4cc86e3"; 15 }; 16 17 propagatedBuildInputs = [ decompress stdlib-shims ];
+4 -11
pkgs/development/python-modules/aioasuswrt/default.nix
··· 2 , asyncssh 3 , buildPythonPackage 4 , fetchFromGitHub 5 - , fetchpatch 6 , pytest-asyncio 7 , pytest-mock 8 , pytestCheckHook ··· 10 11 buildPythonPackage rec { 12 pname = "aioasuswrt"; 13 - version = "1.3.2"; 14 15 src = fetchFromGitHub { 16 owner = "kennedyshead"; 17 repo = pname; 18 rev = "V${version}"; 19 - sha256 = "0bzl11224vny4p9vhi1n5s9p04kfavdzs9xkq5qimbisz9sg4ysj"; 20 }; 21 22 - patches = [ 23 - (fetchpatch { 24 - # Remove pytest-runner, https://github.com/kennedyshead/aioasuswrt/pull/63 25 - url = "https://github.com/kennedyshead/aioasuswrt/pull/63/commits/e7923927648d5d8daccac1716db86db2a45fcb34.patch"; 26 - sha256 = "09xzs3hjr3133li6b7lr58n090r00kaxi9hx1fms2zn0ai4xwp9d"; 27 - }) 28 - ]; 29 - 30 postPatch = '' 31 substituteInPlace setup.cfg \ 32 --replace "--cov-report html" "" \ 33 --replace "--cov-report term-missing" ""
··· 2 , asyncssh 3 , buildPythonPackage 4 , fetchFromGitHub 5 , pytest-asyncio 6 , pytest-mock 7 , pytestCheckHook ··· 9 10 buildPythonPackage rec { 11 pname = "aioasuswrt"; 12 + version = "1.3.3"; 13 14 src = fetchFromGitHub { 15 owner = "kennedyshead"; 16 repo = pname; 17 rev = "V${version}"; 18 + sha256 = "1h1qwc7szgrcwiz4q6x4mlf26is20lj1ds5rcb9i611j26656v6d"; 19 }; 20 21 postPatch = '' 22 + substituteInPlace setup.py \ 23 + --replace "cryptography==3.3.2" "cryptography" 24 substituteInPlace setup.cfg \ 25 --replace "--cov-report html" "" \ 26 --replace "--cov-report term-missing" ""
+37
pkgs/development/python-modules/drivelib/default.nix
···
··· 1 + { lib 2 + , buildPythonApplication 3 + , fetchPypi 4 + , expiringdict 5 + , google-auth-httplib2 6 + , google-auth-oauthlib 7 + , google-api-python-client 8 + }: 9 + 10 + buildPythonApplication rec { 11 + pname = "drivelib"; 12 + version = "0.3.0"; 13 + 14 + src = fetchPypi { 15 + inherit pname version; 16 + sha256 = "1bz3dn6wm9mlm2w8czwjmhvf3ws3iggr57hvd8z8acl1qafr2g4m"; 17 + }; 18 + 19 + propagatedBuildInputs = [ 20 + google-api-python-client 21 + google-auth-oauthlib 22 + google-auth-httplib2 23 + expiringdict 24 + ]; 25 + 26 + # tests depend on a google auth token 27 + doCheck = false; 28 + 29 + pythonImportsCheck = [ "drivelib" ]; 30 + 31 + meta = with lib; { 32 + description = "Easy access to the most common Google Drive API calls"; 33 + homepage = "https://pypi.org/project/drivelib/"; 34 + license = licenses.gpl3Only; 35 + maintainers = with maintainers; [ gravndal ]; 36 + }; 37 + }
+44
pkgs/development/python-modules/expiringdict/default.nix
···
··· 1 + { lib 2 + , buildPythonApplication 3 + , fetchFromGitHub 4 + , dill 5 + , coverage 6 + , coveralls 7 + , mock 8 + , nose 9 + }: 10 + 11 + buildPythonApplication rec { 12 + pname = "expiringdict"; 13 + version = "1.2.1"; 14 + 15 + # use fetchFromGitHub instead of fetchPypi because the test suite of 16 + # the package is not included into the PyPI tarball 17 + src = fetchFromGitHub { 18 + owner = "mailgun"; 19 + repo = pname; 20 + rev = "v${version}"; 21 + sha256 = "07g1vxznmim78bankfl9brr01s31sksdcpwynq1yryh6xw9ri5xs"; 22 + }; 23 + 24 + checkInputs = [ 25 + dill 26 + coverage 27 + coveralls 28 + mock 29 + nose 30 + ]; 31 + 32 + checkPhase = '' 33 + nosetests -v --with-coverage --cover-package=expiringdict 34 + ''; 35 + 36 + pythonImportsCheck = [ "expiringdict" ]; 37 + 38 + meta = with lib; { 39 + description = "Dictionary with auto-expiring values for caching purposes"; 40 + homepage = "https://pypi.org/project/expiringdict/"; 41 + license = licenses.asl20; 42 + maintainers = with maintainers; [ gravndal ]; 43 + }; 44 + }
+2 -2
pkgs/development/python-modules/knack/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "knack"; 18 - version = "0.7.2"; 19 20 src = fetchPypi { 21 inherit pname version; 22 - sha256 = "dfc6aef6760ea9a9620577e01540617678d78cab3111a0f03e8b9f987d0f08ca"; 23 }; 24 25 propagatedBuildInputs = [
··· 15 16 buildPythonPackage rec { 17 pname = "knack"; 18 + version = "0.8.0"; 19 20 src = fetchPypi { 21 inherit pname version; 22 + sha256 = "16aa47240add6badd933a0b27576f3c090d7469177dc941e3ece05ca88123199"; 23 }; 24 25 propagatedBuildInputs = [
+9 -2
pkgs/development/python-modules/privacyidea/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "privacyIDEA"; 14 - version = "3.5.1"; 15 16 src = fetchFromGitHub { 17 owner = pname; 18 repo = pname; 19 rev = "v${version}"; 20 - sha256 = "sha256-XJnrrpU0x2Axu7W4G3oDTjSJuqEyh3C/0Aga5D0gw9k="; 21 fetchSubmodules = true; 22 }; 23 24 propagatedBuildInputs = [ 25 cryptography pyrad pymysql python-dateutil flask-versioned flask_script ··· 36 "AESHardwareSecurityModuleTestCase" 37 "test_01_cert_request" 38 "test_01_loading_scripts" 39 "test_02_cert_enrolled" 40 "test_02_enroll_rights" 41 "test_02_get_resolvers"
··· 11 12 buildPythonPackage rec { 13 pname = "privacyIDEA"; 14 + version = "3.5.2"; 15 16 src = fetchFromGitHub { 17 owner = pname; 18 repo = pname; 19 rev = "v${version}"; 20 + sha256 = "sha256-k2om2LjkFRCT53ECPAJEztCiMdz4fF5eoipVUvSoyGo="; 21 fetchSubmodules = true; 22 }; 23 + 24 + patches = [ 25 + # Subset of https://github.com/privacyidea/privacyidea/commit/359db6dd10212b8a210e0a83536e92e9e796a1f8, 26 + # fixes app context errors in tests. Can be removed on the next bump. 27 + ./fix-tests.patch 28 + ]; 29 30 propagatedBuildInputs = [ 31 cryptography pyrad pymysql python-dateutil flask-versioned flask_script ··· 42 "AESHardwareSecurityModuleTestCase" 43 "test_01_cert_request" 44 "test_01_loading_scripts" 45 + "test_02_api_push_poll" 46 "test_02_cert_enrolled" 47 "test_02_enroll_rights" 48 "test_02_get_resolvers"
+28
pkgs/development/python-modules/privacyidea/fix-tests.patch
···
··· 1 + diff --git a/privacyidea/lib/resolvers/LDAPIdResolver.py b/privacyidea/lib/resolvers/LDAPIdResolver.py 2 + index ae9d87764..cfc609931 100644 3 + --- a/privacyidea/lib/resolvers/LDAPIdResolver.py 4 + +++ b/privacyidea/lib/resolvers/LDAPIdResolver.py 5 + @@ -97,11 +97,6 @@ 6 + SERVERPOOL_ROUNDS = 2 7 + # The number of seconds a non-responding server is removed from the server pool 8 + SERVERPOOL_SKIP = 30 9 + -# The number of seconds that ldap3 waits if no server is left in the pool, before 10 + -# starting the next round 11 + -pooling_loop_timeout = get_app_config_value("PI_LDAP_POOLING_LOOP_TIMEOUT", 10) 12 + -log.info("Setting system wide POOLING_LOOP_TIMEOUT to {0!s}.".format(pooling_loop_timeout)) 13 + -ldap3.set_config_parameter("POOLING_LOOP_TIMEOUT", pooling_loop_timeout) 14 + 15 + # 1 sec == 10^9 nano secs == 10^7 * (100 nano secs) 16 + MS_AD_MULTIPLYER = 10 ** 7 17 + @@ -314,6 +309,11 @@ def __init__(self): 18 + self.serverpool_rounds = SERVERPOOL_ROUNDS 19 + self.serverpool_skip = SERVERPOOL_SKIP 20 + self.serverpool = None 21 + + # The number of seconds that ldap3 waits if no server is left in the pool, before 22 + + # starting the next round 23 + + pooling_loop_timeout = get_app_config_value("PI_LDAP_POOLING_LOOP_TIMEOUT", 10) 24 + + log.info("Setting system wide POOLING_LOOP_TIMEOUT to {0!s}.".format(pooling_loop_timeout)) 25 + + ldap3.set_config_parameter("POOLING_LOOP_TIMEOUT", pooling_loop_timeout) 26 + 27 + def checkPass(self, uid, password): 28 + """
+9 -3
pkgs/development/python-modules/yamllint/default.nix
··· 5 , pytestCheckHook 6 , pythonOlder 7 , pyyaml 8 }: 9 10 buildPythonPackage rec { 11 pname = "yamllint"; 12 - version = "1.25.0"; 13 disabled = pythonOlder "3.5"; 14 15 src = fetchPypi { 16 inherit pname version; 17 - sha256 = "b1549cbe5b47b6ba67bdeea31720f5c51431a4d0c076c1557952d841f7223519"; 18 }; 19 20 propagatedBuildInputs = [ ··· 27 ]; 28 29 disabledTests = [ 30 - # Test failure could be related to https://github.com/adrienverge/yamllint/issues/334 31 "test_find_files_recursively" 32 ]; 33 34 pythonImportsCheck = [ "yamllint" ];
··· 5 , pytestCheckHook 6 , pythonOlder 7 , pyyaml 8 + , stdenv 9 }: 10 11 buildPythonPackage rec { 12 pname = "yamllint"; 13 + version = "1.26.0"; 14 disabled = pythonOlder "3.5"; 15 16 src = fetchPypi { 17 inherit pname version; 18 + sha256 = "11qhs1jk9pwvyk5k3q5blh9sq42dh1ywdf1f3i2zixf7hncwir5h"; 19 }; 20 21 propagatedBuildInputs = [ ··· 28 ]; 29 30 disabledTests = [ 31 + # test failure reported upstream: https://github.com/adrienverge/yamllint/issues/373 32 "test_find_files_recursively" 33 + ] ++ lib.optional stdenv.isDarwin [ 34 + # locale tests are broken on BSDs; see https://github.com/adrienverge/yamllint/issues/307 35 + "test_locale_accents" 36 + "test_locale_case" 37 + "test_run_with_locale" 38 ]; 39 40 pythonImportsCheck = [ "yamllint" ];
+1 -1
pkgs/development/ruby-modules/bundix/default.nix
··· 38 ''; 39 homepage = "https://github.com/manveru/bundix"; 40 license = "MIT"; 41 - maintainers = with lib.maintainers; [ manveru qyliss zimbatm ]; 42 platforms = lib.platforms.all; 43 }; 44 }
··· 38 ''; 39 homepage = "https://github.com/manveru/bundix"; 40 license = "MIT"; 41 + maintainers = with lib.maintainers; [ manveru zimbatm ]; 42 platforms = lib.platforms.all; 43 }; 44 }
+40
pkgs/development/tools/async-profiler/default.nix
···
··· 1 + { lib, stdenv, fetchFromGitHub, jdk8 }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "async-profiler"; 5 + version = "1.8.4"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "jvm-profiling-tools"; 9 + repo = "async-profiler"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-R/TFElytq3mBG+jKjb7XlFUqpXBpSZGfbscUdg2vevE="; 12 + }; 13 + 14 + buildInputs = [ jdk8 ]; 15 + 16 + installPhase = '' 17 + runHook preInstall 18 + install -D "$src/profiler.sh" "$out/bin/async-profiler" 19 + install -D build/jattach "$out/bin/jattach" 20 + install -D build/libasyncProfiler.so "$out/lib/libasyncProfiler.so" 21 + install -D -t "$out/share/java/" build/*.jar 22 + runHook postInstall 23 + ''; 24 + 25 + fixupPhase = '' 26 + substituteInPlace $out/bin/async-profiler \ 27 + --replace 'JATTACH=$SCRIPT_DIR/build/jattach' \ 28 + 'JATTACH=${placeholder "out"}/bin/jattach' \ 29 + --replace 'PROFILER=$SCRIPT_DIR/build/libasyncProfiler.so' \ 30 + 'PROFILER=${placeholder "out"}/lib/libasyncProfiler.so' 31 + ''; 32 + 33 + meta = with lib; { 34 + description = "A low overhead sampling profiler for Java that does not suffer from Safepoint bias problem"; 35 + homepage = "https://github.com/jvm-profiling-tools/async-profiler"; 36 + license = licenses.asl20; 37 + maintainers = with maintainers; [ mschuwalow ]; 38 + platforms = platforms.all; 39 + }; 40 + }
+17 -12
pkgs/development/tools/boost-build/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub }: 2 3 stdenv.mkDerivation rec { 4 pname = "boost-build"; 5 - version = "2016.03"; 6 7 src = fetchFromGitHub { 8 owner = "boostorg"; 9 repo = "build"; 10 rev = version; 11 - sha256 = "1qw5marmp7z09nwcjlqrmqdg9b6myfqj3zvfz888x9mbidrmhn6p"; 12 }; 13 14 - hardeningDisable = [ "format" ]; 15 - 16 - patchPhase = '' 17 - grep -r '/usr/share/boost-build' \ 18 - | awk '{split($0,a,":"); print a[1];}' \ 19 - | xargs sed -i "s,/usr/share/boost-build,$out/share/boost-build," 20 - ''; 21 22 buildPhase = '' 23 ./bootstrap.sh 24 ''; 25 26 installPhase = '' 27 - ./b2 install --prefix=$out 28 ''; 29 30 meta = with lib; { 31 - homepage = "http://www.boost.org/boost-build2/"; 32 license = lib.licenses.boost; 33 platforms = platforms.unix; 34 maintainers = with maintainers; [ ivan-tkatchev ];
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , bison 5 + }: 6 7 stdenv.mkDerivation rec { 8 pname = "boost-build"; 9 + version = "4.4.1"; 10 11 src = fetchFromGitHub { 12 owner = "boostorg"; 13 repo = "build"; 14 rev = version; 15 + sha256 = "1r4rwlq87ydmsdqrik4ly5iai796qalvw7603mridg2nwcbbnf54"; 16 }; 17 18 + nativeBuildInputs = [ 19 + bison 20 + ]; 21 22 buildPhase = '' 23 + runHook preBuild 24 ./bootstrap.sh 25 + runHook postBuild 26 ''; 27 28 installPhase = '' 29 + runHook preInstall 30 + ./b2 install --prefix="$out" 31 + ln -s b2 "$out/bin/bjam" 32 + runHook postInstall 33 ''; 34 35 meta = with lib; { 36 + homepage = "https://www.boost.org/build/"; 37 license = lib.licenses.boost; 38 platforms = platforms.unix; 39 maintainers = with maintainers; [ ivan-tkatchev ];
+4
pkgs/development/tools/misc/strace/default.nix
··· 1 { lib, stdenv, fetchurl, perl, libunwind, buildPackages }: 2 3 stdenv.mkDerivation rec { 4 pname = "strace"; 5 version = "5.11";
··· 1 { lib, stdenv, fetchurl, perl, libunwind, buildPackages }: 2 3 + # libunwind does not have the supportsHost attribute on darwin, thus 4 + # when this package is evaluated it causes an evaluation error 5 + assert stdenv.isLinux; 6 + 7 stdenv.mkDerivation rec { 8 pname = "strace"; 9 version = "5.11";
+8 -7
pkgs/development/tools/packer/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub, installShellFiles }: 2 - buildGoPackage rec { 3 pname = "packer"; 4 version = "1.7.1"; 5 6 - goPackagePath = "github.com/hashicorp/packer"; 7 - 8 - subPackages = [ "." ]; 9 - 10 src = fetchFromGitHub { 11 owner = "hashicorp"; 12 repo = "packer"; ··· 14 sha256 = "sha256-PZwKvb43Xf8HaC148Xo076u3sP53nwC4fJ2X7HU0gDo="; 15 }; 16 17 buildFlagsArray = [ "-ldflags=-s -w" ]; 18 19 nativeBuildInputs = [ installShellFiles ]; 20 21 postInstall = '' 22 - installShellCompletion --zsh go/src/${goPackagePath}/contrib/zsh-completion/_packer 23 ''; 24 25 meta = with lib; {
··· 1 + { lib, buildGoModule, fetchFromGitHub, installShellFiles }: 2 + 3 + buildGoModule rec { 4 pname = "packer"; 5 version = "1.7.1"; 6 7 src = fetchFromGitHub { 8 owner = "hashicorp"; 9 repo = "packer"; ··· 11 sha256 = "sha256-PZwKvb43Xf8HaC148Xo076u3sP53nwC4fJ2X7HU0gDo="; 12 }; 13 14 + vendorSha256 = null; 15 + 16 + subPackages = [ "." ]; 17 + 18 buildFlagsArray = [ "-ldflags=-s -w" ]; 19 20 nativeBuildInputs = [ installShellFiles ]; 21 22 postInstall = '' 23 + installShellCompletion --zsh contrib/zsh-completion/_packer 24 ''; 25 26 meta = with lib; {
+13 -17
pkgs/games/openttd/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchzip, pkg-config, which, SDL2, libpng, zlib, xz, freetype, fontconfig, libxdg_basedir 2 , withOpenGFX ? true, withOpenSFX ? true, withOpenMSX ? true 3 , withFluidSynth ? true, audioDriver ? "alsa", fluidsynth, soundfont-fluid, procps 4 , writeScriptBin, makeWrapper, runtimeShell ··· 6 7 let 8 opengfx = fetchzip { 9 - url = "https://cdn.openttd.org/opengfx-releases/0.6.0/opengfx-0.6.0-all.zip"; 10 - sha256 = "1zg871j6kv7r0aqwca68d9kdf3smclgzan8hj76vj4fyfkykh173"; 11 }; 12 13 opensfx = fetchzip { 14 - url = "https://cdn.openttd.org/opensfx-releases/0.2.3/opensfx-0.2.3-all.zip"; 15 - sha256 = "1bb167kszdd6dqbcdjrxxwab6b7y7jilhzi3qijdhprpm5gf1lp3"; 16 }; 17 18 openmsx = fetchzip { 19 - url = "https://cdn.openttd.org/openmsx-releases/0.3.1/openmsx-0.3.1-all.zip"; 20 - sha256 = "0qnmfzz0v8vxrrvxnm7szphrlrlvhkwn3y92b4iy0b4b6yam0yd4"; 21 }; 22 23 playmidi = writeScriptBin "playmidi" '' ··· 29 in 30 stdenv.mkDerivation rec { 31 pname = "openttd"; 32 - version = "1.10.3"; 33 34 src = fetchurl { 35 url = "https://cdn.openttd.org/openttd-releases/${version}/${pname}-${version}-source.tar.xz"; 36 - sha256 = "0fxmfz1mm95a2x0rnzfff9wb8q57w0cvsdd0z7agdcbyakph25n1"; 37 }; 38 39 - nativeBuildInputs = [ pkg-config which makeWrapper ]; 40 buildInputs = [ SDL2 libpng xz zlib freetype fontconfig libxdg_basedir ] 41 ++ lib.optionals withFluidSynth [ fluidsynth soundfont-fluid ]; 42 ··· 46 "--without-liblzo2" 47 ]; 48 49 - makeFlags = [ "INSTALL_PERSONAL_DIR=" ]; 50 - 51 postInstall = '' 52 - mv $out/games/ $out/bin 53 - 54 ${lib.optionalString withOpenGFX '' 55 - cp ${opengfx}/* $out/share/games/openttd/baseset 56 ''} 57 58 mkdir -p $out/share/games/openttd/data 59 60 ${lib.optionalString withOpenSFX '' 61 - cp ${opensfx}/*.{obs,cat} $out/share/games/openttd/data 62 ''} 63 64 mkdir $out/share/games/openttd/baseset/openmsx 65 66 ${lib.optionalString withOpenMSX '' 67 - cp ${openmsx}/*.{obm,mid} $out/share/games/openttd/baseset/openmsx 68 ''} 69 70 ${lib.optionalString withFluidSynth ''
··· 1 + { lib, stdenv, fetchurl, fetchzip, cmake, SDL2, libpng, zlib, xz, freetype, fontconfig, libxdg_basedir 2 , withOpenGFX ? true, withOpenSFX ? true, withOpenMSX ? true 3 , withFluidSynth ? true, audioDriver ? "alsa", fluidsynth, soundfont-fluid, procps 4 , writeScriptBin, makeWrapper, runtimeShell ··· 6 7 let 8 opengfx = fetchzip { 9 + url = "https://cdn.openttd.org/opengfx-releases/0.6.1/opengfx-0.6.1-all.zip"; 10 + sha256 = "sha256-DeeIlLcmPeMZ0ju9DwXUInnQp2rWu60besDVto4+lDQ="; 11 }; 12 13 opensfx = fetchzip { 14 + url = "https://cdn.openttd.org/opensfx-releases/1.0.1/opensfx-1.0.1-all.zip"; 15 + sha256 = "sha256-U1PIKbMZHRJ0Z9Cp2RqqCMhD1xRyudoNHAYIZyotxVk="; 16 }; 17 18 openmsx = fetchzip { 19 + url = "https://cdn.openttd.org/openmsx-releases/0.4.0/openmsx-0.4.0-all.zip"; 20 + sha256 = "sha256-Ok6W+iqi4SP7cD4HUQERrAysvVibnN7Q4/tkugffDgQ="; 21 }; 22 23 playmidi = writeScriptBin "playmidi" '' ··· 29 in 30 stdenv.mkDerivation rec { 31 pname = "openttd"; 32 + version = "1.11.0"; 33 34 src = fetchurl { 35 url = "https://cdn.openttd.org/openttd-releases/${version}/${pname}-${version}-source.tar.xz"; 36 + sha256 = "sha256-XmUYTgc2i6Gvpi27PjWrrubE2mcw/0vJ60RH1TNjx6g="; 37 }; 38 39 + nativeBuildInputs = [ cmake makeWrapper ]; 40 buildInputs = [ SDL2 libpng xz zlib freetype fontconfig libxdg_basedir ] 41 ++ lib.optionals withFluidSynth [ fluidsynth soundfont-fluid ]; 42 ··· 46 "--without-liblzo2" 47 ]; 48 49 postInstall = '' 50 ${lib.optionalString withOpenGFX '' 51 + cp ${opengfx}/*.tar $out/share/games/openttd/baseset 52 ''} 53 54 mkdir -p $out/share/games/openttd/data 55 56 ${lib.optionalString withOpenSFX '' 57 + cp ${opensfx}/*.tar $out/share/games/openttd/data 58 ''} 59 60 mkdir $out/share/games/openttd/baseset/openmsx 61 62 ${lib.optionalString withOpenMSX '' 63 + cp ${openmsx}/*.tar $out/share/games/openttd/baseset/openmsx 64 ''} 65 66 ${lib.optionalString withFluidSynth ''
+2 -2
pkgs/games/openttd/jgrpp.nix
··· 2 3 openttd.overrideAttrs (oldAttrs: rec { 4 pname = "openttd-jgrpp"; 5 - version = "0.34.4"; 6 7 src = fetchFromGitHub rec { 8 owner = "JGRennison"; 9 repo = "OpenTTD-patches"; 10 rev = "jgrpp-${version}"; 11 - sha256 = "125mgia5hgcsn8314xyiip3z8y23rc3kdv7jczbncqlzsc75624v"; 12 }; 13 })
··· 2 3 openttd.overrideAttrs (oldAttrs: rec { 4 pname = "openttd-jgrpp"; 5 + version = "0.40.5"; 6 7 src = fetchFromGitHub rec { 8 owner = "JGRennison"; 9 repo = "OpenTTD-patches"; 10 rev = "jgrpp-${version}"; 11 + sha256 = "sha256-g1RmgVjefOrOVLTvFBiPEd19aLoFvB9yX/hMiKgGcGw="; 12 }; 13 })
+1
pkgs/os-specific/linux/hostapd/default.nix
··· 75 CONFIG_HS20=y 76 CONFIG_ACS=y 77 CONFIG_GETRANDOM=y 78 '' + lib.optionalString (sqlite != null) '' 79 CONFIG_SQLITE=y 80 '';
··· 75 CONFIG_HS20=y 76 CONFIG_ACS=y 77 CONFIG_GETRANDOM=y 78 + CONFIG_SAE=y 79 '' + lib.optionalString (sqlite != null) '' 80 CONFIG_SQLITE=y 81 '';
+3 -4
pkgs/servers/matrix-synapse/matrix-appservice-slack/default.nix
··· 1 { pkgs, nodejs, stdenv, fetchFromGitHub, lib, ... }: 2 - 3 let 4 src = fetchFromGitHub { 5 owner = "matrix-org"; 6 repo = "matrix-appservice-slack"; 7 - rev = "1.4.0"; 8 - sha256 = "1xm75rgg7yrz40y2w1njiwfwz17a8wwlvr7a6zyxvkl8cqrgzp6d"; 9 }; 10 11 nodePackages = import ./node-composition.nix { ··· 25 26 meta = with lib; { 27 description = "A Matrix <--> Slack bridge"; 28 - maintainers = with maintainers; [ ]; 29 license = licenses.asl20; 30 }; 31 }
··· 1 { pkgs, nodejs, stdenv, fetchFromGitHub, lib, ... }: 2 let 3 src = fetchFromGitHub { 4 owner = "matrix-org"; 5 repo = "matrix-appservice-slack"; 6 + rev = "1.7.0"; 7 + sha256 = "sha256-0BcnG/DGvc3uh/eP0KIB5gPSpXNPlaAl78D4bVCnLHg="; 8 }; 9 10 nodePackages = import ./node-composition.nix { ··· 24 25 meta = with lib; { 26 description = "A Matrix <--> Slack bridge"; 27 + maintainers = with maintainers; [ beardhatcode ]; 28 license = licenses.asl20; 29 }; 30 }
+3 -3
pkgs/servers/matrix-synapse/matrix-appservice-slack/generate-dependencies.sh
··· 1 #!/usr/bin/env nix-shell 2 #! nix-shell -i bash -p nodePackages.node2nix 3 4 - # Download package.json and package-lock.json from the v1.4.0 release 5 - curl https://raw.githubusercontent.com/matrix-org/matrix-appservice-slack/9462a75715ea9afba23b757ec90554f10f457a96/package.json -o package.json 6 - curl https://raw.githubusercontent.com/matrix-org/matrix-appservice-slack/9462a75715ea9afba23b757ec90554f10f457a96/package-lock.json -o package-lock.json 7 8 node2nix \ 9 --nodejs-12 \
··· 1 #!/usr/bin/env nix-shell 2 #! nix-shell -i bash -p nodePackages.node2nix 3 4 + # Download package.json and package-lock.json from the v1.7.0 release 5 + curl https://raw.githubusercontent.com/matrix-org/matrix-appservice-slack/1.7.0/package.json -o package.json 6 + curl https://raw.githubusercontent.com/matrix-org/matrix-appservice-slack/1.7.0/package-lock.json -o package-lock.json 7 8 node2nix \ 9 --nodejs-12 \
+1851 -1152
pkgs/servers/matrix-synapse/matrix-appservice-slack/node-packages.nix
··· 4 5 let 6 sources = { 7 - "@babel/code-frame-7.8.3" = { 8 name = "_at_babel_slash_code-frame"; 9 packageName = "@babel/code-frame"; 10 - version = "7.8.3"; 11 src = fetchurl { 12 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz"; 13 - sha512 = "a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g=="; 14 }; 15 }; 16 - "@babel/helper-validator-identifier-7.9.0" = { 17 name = "_at_babel_slash_helper-validator-identifier"; 18 packageName = "@babel/helper-validator-identifier"; 19 - version = "7.9.0"; 20 src = fetchurl { 21 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.0.tgz"; 22 - sha512 = "6G8bQKjOh+of4PV/ThDm/rRqlU7+IGoJuofpagU5GlEl29Vv0RGqqt86ZGRV8ZuSOY3o+8yXl5y782SMcG7SHw=="; 23 }; 24 }; 25 - "@babel/highlight-7.9.0" = { 26 name = "_at_babel_slash_highlight"; 27 packageName = "@babel/highlight"; 28 - version = "7.9.0"; 29 src = fetchurl { 30 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.9.0.tgz"; 31 - sha512 = "lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ=="; 32 }; 33 }; 34 - "@slack/logger-1.1.0" = { 35 name = "_at_slack_slash_logger"; 36 packageName = "@slack/logger"; 37 - version = "1.1.0"; 38 src = fetchurl { 39 - url = "https://registry.npmjs.org/@slack/logger/-/logger-1.1.0.tgz"; 40 - sha512 = "D3tabyLoUrsFy0w3koxaCVv+5ZJfIy+j0QW3PUq0XO3UiVuF5rtpAbqngAYVpeKnxPpqBjeth4XJ3tllKoW3aA=="; 41 }; 42 }; 43 - "@slack/rtm-api-5.0.3" = { 44 name = "_at_slack_slash_rtm-api"; 45 packageName = "@slack/rtm-api"; 46 - version = "5.0.3"; 47 src = fetchurl { 48 - url = "https://registry.npmjs.org/@slack/rtm-api/-/rtm-api-5.0.3.tgz"; 49 - sha512 = "rzNIFst8iuVYyHdE7e3KSrbAtIA7sfS4Pth9ObKUm5KDemX0zyI7YfAijO1kgr1EMriQkjlpKBhlNq9Y+aQr6g=="; 50 }; 51 }; 52 - "@slack/types-1.5.0" = { 53 name = "_at_slack_slash_types"; 54 packageName = "@slack/types"; 55 - version = "1.5.0"; 56 src = fetchurl { 57 - url = "https://registry.npmjs.org/@slack/types/-/types-1.5.0.tgz"; 58 - sha512 = "oCYgatJYxHf9wE3tKXzOLeeTsF0ghX1TIcguNfVmO2V6NDe+cHAzZRglEOmJLdRINDS5gscAgSkeZpDhpKBeUA=="; 59 }; 60 }; 61 - "@slack/web-api-5.8.0" = { 62 name = "_at_slack_slash_web-api"; 63 packageName = "@slack/web-api"; 64 - version = "5.8.0"; 65 src = fetchurl { 66 - url = "https://registry.npmjs.org/@slack/web-api/-/web-api-5.8.0.tgz"; 67 - sha512 = "lUMFM9jtdn+9Q0kHLegf5RjIgQlmb1PGWwWdTsc9mQ8PJu2BogI5ZttG8/tA6r2bX/C4bgXhd0JJ4syUR0AAhQ=="; 68 }; 69 }; 70 "@types/body-parser-1.19.0" = { ··· 76 sha512 = "W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ=="; 77 }; 78 }; 79 - "@types/caseless-0.12.2" = { 80 - name = "_at_types_slash_caseless"; 81 - packageName = "@types/caseless"; 82 - version = "0.12.2"; 83 - src = fetchurl { 84 - url = "https://registry.npmjs.org/@types/caseless/-/caseless-0.12.2.tgz"; 85 - sha512 = "6ckxMjBBD8URvjB6J3NcnuAn5Pkl7t3TizAg+xdlzzQGSPSmBcXf8KoIH0ua/i+tio+ZRUHEXp0HEmvaR4kt0w=="; 86 - }; 87 - }; 88 - "@types/chai-4.2.11" = { 89 name = "_at_types_slash_chai"; 90 packageName = "@types/chai"; 91 - version = "4.2.11"; 92 src = fetchurl { 93 - url = "https://registry.npmjs.org/@types/chai/-/chai-4.2.11.tgz"; 94 - sha512 = "t7uW6eFafjO+qJ3BIV2gGUyZs27egcNRkUdalkud+Qa3+kg//f129iuOFivHDXQ+vnU3fDXuwgv0cqMCbcE8sw=="; 95 }; 96 }; 97 - "@types/connect-3.4.33" = { 98 name = "_at_types_slash_connect"; 99 packageName = "@types/connect"; 100 - version = "3.4.33"; 101 src = fetchurl { 102 - url = "https://registry.npmjs.org/@types/connect/-/connect-3.4.33.tgz"; 103 - sha512 = "2+FrkXY4zllzTNfJth7jOqEHC+enpLeGslEhpnTAkg21GkRrWV4SsAtqchtT4YS9/nODBU2/ZfsBY2X4J/dX7A=="; 104 - }; 105 - }; 106 - "@types/events-3.0.0" = { 107 - name = "_at_types_slash_events"; 108 - packageName = "@types/events"; 109 - version = "3.0.0"; 110 - src = fetchurl { 111 - url = "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz"; 112 - sha512 = "EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g=="; 113 }; 114 }; 115 - "@types/express-4.17.3" = { 116 name = "_at_types_slash_express"; 117 packageName = "@types/express"; 118 - version = "4.17.3"; 119 src = fetchurl { 120 - url = "https://registry.npmjs.org/@types/express/-/express-4.17.3.tgz"; 121 - sha512 = "I8cGRJj3pyOLs/HndoP+25vOqhqWkAZsWMEmq1qXy/b/M3ppufecUwaK2/TVDVxcV61/iSdhykUjQQ2DLSrTdg=="; 122 }; 123 }; 124 - "@types/express-serve-static-core-4.17.3" = { 125 name = "_at_types_slash_express-serve-static-core"; 126 packageName = "@types/express-serve-static-core"; 127 - version = "4.17.3"; 128 src = fetchurl { 129 - url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.3.tgz"; 130 - sha512 = "sHEsvEzjqN+zLbqP+8OXTipc10yH1QLR+hnr5uw29gi9AhCAAAdri8ClNV7iMdrJrIzXIQtlkPvq8tJGhj3QJQ=="; 131 }; 132 }; 133 "@types/is-stream-1.1.0" = { ··· 139 sha512 = "jkZatu4QVbR60mpIzjINmtS1ZF4a/FqdTUTBeQDVOQ2PYyidtwFKr0B5G6ERukKwliq+7mIXvxyppwzG5EgRYg=="; 140 }; 141 }; 142 - "@types/mime-2.0.1" = { 143 name = "_at_types_slash_mime"; 144 packageName = "@types/mime"; 145 - version = "2.0.1"; 146 src = fetchurl { 147 - url = "https://registry.npmjs.org/@types/mime/-/mime-2.0.1.tgz"; 148 - sha512 = "FwI9gX75FgVBJ7ywgnq/P7tw+/o1GUbtP0KzbtusLigAOgIgNISRK0ZPl4qertvXSIE8YbsVJueQ90cDt9YYyw=="; 149 }; 150 }; 151 - "@types/mocha-7.0.2" = { 152 name = "_at_types_slash_mocha"; 153 packageName = "@types/mocha"; 154 - version = "7.0.2"; 155 src = fetchurl { 156 - url = "https://registry.npmjs.org/@types/mocha/-/mocha-7.0.2.tgz"; 157 - sha512 = "ZvO2tAcjmMi8V/5Z3JsyofMe3hasRcaw88cto5etSVMwVQfeivGAlEYmaQgceUSVYFofVjT+ioHsATjdWcFt1w=="; 158 }; 159 }; 160 - "@types/nedb-1.8.9" = { 161 name = "_at_types_slash_nedb"; 162 packageName = "@types/nedb"; 163 - version = "1.8.9"; 164 src = fetchurl { 165 - url = "https://registry.npmjs.org/@types/nedb/-/nedb-1.8.9.tgz"; 166 - sha512 = "w9Tl3DQCkdT0Ghes+PKhe+3/pZppBXuFFpSCjPJbb2KE3DjYmUpEyCYzjrAYlT9Y1TndnbbnChzkax2h/JorVQ=="; 167 }; 168 }; 169 - "@types/node-13.9.3" = { 170 name = "_at_types_slash_node"; 171 packageName = "@types/node"; 172 - version = "13.9.3"; 173 src = fetchurl { 174 - url = "https://registry.npmjs.org/@types/node/-/node-13.9.3.tgz"; 175 - sha512 = "01s+ac4qerwd6RHD+mVbOEsraDHSgUaefQlEdBbUolnQFjKwCr7luvAlEwW1RFojh67u0z4OUTjPn9LEl4zIkA=="; 176 }; 177 }; 178 "@types/node-emoji-1.8.1" = { ··· 202 sha512 = "eKAv5Ql6k78dh3ULCsSBxX6bFNuGjTmof5Q/T6PiECDq0Yf8IIn46jCyp3RJvCi8owaEmm3DZH1PEImjBMd/vQ=="; 203 }; 204 }; 205 "@types/randomstring-1.1.6" = { 206 name = "_at_types_slash_randomstring"; 207 packageName = "@types/randomstring"; ··· 220 sha512 = "ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA=="; 221 }; 222 }; 223 - "@types/request-2.48.4" = { 224 - name = "_at_types_slash_request"; 225 - packageName = "@types/request"; 226 - version = "2.48.4"; 227 - src = fetchurl { 228 - url = "https://registry.npmjs.org/@types/request/-/request-2.48.4.tgz"; 229 - sha512 = "W1t1MTKYR8PxICH+A4HgEIPuAC3sbljoEVfyZbeFJJDbr30guDspJri2XOaM2E+Un7ZjrihaDi7cf6fPa2tbgw=="; 230 - }; 231 - }; 232 - "@types/request-promise-native-1.0.17" = { 233 - name = "_at_types_slash_request-promise-native"; 234 - packageName = "@types/request-promise-native"; 235 - version = "1.0.17"; 236 - src = fetchurl { 237 - url = "https://registry.npmjs.org/@types/request-promise-native/-/request-promise-native-1.0.17.tgz"; 238 - sha512 = "05/d0WbmuwjtGMYEdHIBZ0tqMJJQ2AD9LG2F6rKNBGX1SSFR27XveajH//2N/XYtual8T9Axwl+4v7oBtPUZqg=="; 239 - }; 240 - }; 241 "@types/retry-0.12.0" = { 242 name = "_at_types_slash_retry"; 243 packageName = "@types/retry"; ··· 247 sha512 = "wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA=="; 248 }; 249 }; 250 - "@types/serve-static-1.13.3" = { 251 name = "_at_types_slash_serve-static"; 252 packageName = "@types/serve-static"; 253 - version = "1.13.3"; 254 - src = fetchurl { 255 - url = "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.3.tgz"; 256 - sha512 = "oprSwp094zOglVrXdlo/4bAHtKTAxX6VT8FOZlBKrmyLbNvE1zxZyJ6yikMVtHIvwP45+ZQGJn+FdXGKTozq0g=="; 257 - }; 258 - }; 259 - "@types/tough-cookie-2.3.6" = { 260 - name = "_at_types_slash_tough-cookie"; 261 - packageName = "@types/tough-cookie"; 262 - version = "2.3.6"; 263 src = fetchurl { 264 - url = "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-2.3.6.tgz"; 265 - sha512 = "wHNBMnkoEBiRAd3s8KTKwIuO9biFtTf0LehITzBhSco+HQI0xkXZbLOD55SW3Aqw3oUkHstkm5SPv58yaAdFPQ=="; 266 }; 267 }; 268 - "@types/uuid-7.0.2" = { 269 name = "_at_types_slash_uuid"; 270 packageName = "@types/uuid"; 271 - version = "7.0.2"; 272 src = fetchurl { 273 - url = "https://registry.npmjs.org/@types/uuid/-/uuid-7.0.2.tgz"; 274 - sha512 = "8Ly3zIPTnT0/8RCU6Kg/G3uTICf9sRwYOpUzSIM3503tLIKcnJPRuinHhXngJUy2MntrEf6dlpOHXJju90Qh5w=="; 275 }; 276 }; 277 - "@types/ws-5.1.2" = { 278 name = "_at_types_slash_ws"; 279 packageName = "@types/ws"; 280 - version = "5.1.2"; 281 src = fetchurl { 282 - url = "https://registry.npmjs.org/@types/ws/-/ws-5.1.2.tgz"; 283 - sha512 = "NkTXUKTYdXdnPE2aUUbGOXE1XfMK527SCvU/9bj86kyFF6kZ9ZnOQ3mK5jADn98Y2vEUD/7wKDgZa7Qst2wYOg=="; 284 }; 285 }; 286 - "@types/yargs-13.0.0" = { 287 name = "_at_types_slash_yargs"; 288 packageName = "@types/yargs"; 289 - version = "13.0.0"; 290 src = fetchurl { 291 - url = "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.0.tgz"; 292 - sha512 = "hY0o+kcz9M6kH32NUeb6VURghqMuCVkiUx+8Btsqhj4Hhov/hVGUx9DmBJeIkzlp1uAQK4wngQBCjqWdUUkFyA=="; 293 }; 294 }; 295 - "@types/yargs-parser-13.0.0" = { 296 name = "_at_types_slash_yargs-parser"; 297 packageName = "@types/yargs-parser"; 298 - version = "13.0.0"; 299 src = fetchurl { 300 - url = "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-13.0.0.tgz"; 301 - sha512 = "wBlsw+8n21e6eTd4yVv8YD/E3xq0O6nNnJIquutAsFGE7EyMKz7W6RNT6BRu1SmdgmlCZ9tb0X+j+D6HGr8pZw=="; 302 }; 303 }; 304 "Slackdown-git://github.com/half-shot/slackdown#efd8934a3d9c3bf0064c0b217c5cf6b62ee697e4" = { ··· 338 sha512 = "Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA=="; 339 }; 340 }; 341 - "ajv-6.10.2" = { 342 name = "ajv"; 343 packageName = "ajv"; 344 - version = "6.10.2"; 345 src = fetchurl { 346 - url = "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz"; 347 - sha512 = "TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw=="; 348 }; 349 }; 350 "another-json-0.2.0" = { ··· 356 sha1 = "b5f4019c973b6dd5c6506a2d93469cb6d32aeedc"; 357 }; 358 }; 359 - "ansi-colors-3.2.3" = { 360 name = "ansi-colors"; 361 packageName = "ansi-colors"; 362 - version = "3.2.3"; 363 src = fetchurl { 364 - url = "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz"; 365 - sha512 = "LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw=="; 366 }; 367 }; 368 "ansi-regex-3.0.0" = { ··· 383 sha512 = "1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="; 384 }; 385 }; 386 "ansi-styles-3.2.1" = { 387 name = "ansi-styles"; 388 packageName = "ansi-styles"; ··· 392 sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; 393 }; 394 }; 395 "anymatch-3.1.1" = { 396 name = "anymatch"; 397 packageName = "anymatch"; ··· 419 sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="; 420 }; 421 }; 422 "array-flatten-1.1.1" = { 423 name = "array-flatten"; 424 packageName = "array-flatten"; ··· 428 sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2"; 429 }; 430 }; 431 "array-uniq-1.0.2" = { 432 name = "array-uniq"; 433 packageName = "array-uniq"; ··· 455 sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg=="; 456 }; 457 }; 458 - "assert-options-0.6.2" = { 459 name = "assert-options"; 460 packageName = "assert-options"; 461 - version = "0.6.2"; 462 src = fetchurl { 463 - url = "https://registry.npmjs.org/assert-options/-/assert-options-0.6.2.tgz"; 464 - sha512 = "KP9S549XptFAPGYmLRnIjQBL4/Ry8Jx5YNLQZ/l+eejqbTidBMnw4uZSAsUrzBq/lgyqDYqxcTF7cOxZb9gyEw=="; 465 }; 466 }; 467 "assert-plus-1.0.0" = { ··· 482 sha512 = "jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw=="; 483 }; 484 }; 485 "async-0.2.10" = { 486 name = "async"; 487 packageName = "async"; ··· 491 sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1"; 492 }; 493 }; 494 - "async-2.6.2" = { 495 name = "async"; 496 packageName = "async"; 497 - version = "2.6.2"; 498 src = fetchurl { 499 - url = "https://registry.npmjs.org/async/-/async-2.6.2.tgz"; 500 - sha512 = "H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg=="; 501 }; 502 }; 503 "async-limiter-1.0.1" = { ··· 527 sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; 528 }; 529 }; 530 - "aws4-1.9.0" = { 531 name = "aws4"; 532 packageName = "aws4"; 533 - version = "1.9.0"; 534 src = fetchurl { 535 - url = "https://registry.npmjs.org/aws4/-/aws4-1.9.0.tgz"; 536 - sha512 = "Uvq6hVe90D0B2WEnUqtdgY1bATGz3mw33nH9Y+dmA+w5DHvUmBgkr5rM/KCHpCsiFNRUfokW/szpPPgMK2hm4A=="; 537 }; 538 }; 539 - "axios-0.19.2" = { 540 name = "axios"; 541 packageName = "axios"; 542 - version = "0.19.2"; 543 src = fetchurl { 544 - url = "https://registry.npmjs.org/axios/-/axios-0.19.2.tgz"; 545 - sha512 = "fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA=="; 546 - }; 547 - }; 548 - "babel-runtime-6.26.0" = { 549 - name = "babel-runtime"; 550 - packageName = "babel-runtime"; 551 - version = "6.26.0"; 552 - src = fetchurl { 553 - url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz"; 554 - sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; 555 }; 556 }; 557 "balanced-match-1.0.0" = { ··· 590 sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"; 591 }; 592 }; 593 - "binary-extensions-2.0.0" = { 594 name = "binary-extensions"; 595 packageName = "binary-extensions"; 596 - version = "2.0.0"; 597 src = fetchurl { 598 - url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.0.0.tgz"; 599 - sha512 = "Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow=="; 600 }; 601 }; 602 "binary-search-tree-0.2.5" = { ··· 615 src = fetchurl { 616 url = "https://registry.npmjs.org/bintrees/-/bintrees-1.0.1.tgz"; 617 sha1 = "0e655c9b9c2435eaab68bf4027226d2b55a34524"; 618 - }; 619 - }; 620 - "bluebird-2.11.0" = { 621 - name = "bluebird"; 622 - packageName = "bluebird"; 623 - version = "2.11.0"; 624 - src = fetchurl { 625 - url = "https://registry.npmjs.org/bluebird/-/bluebird-2.11.0.tgz"; 626 - sha1 = "534b9033c022c9579c56ba3b3e5a5caafbb650e1"; 627 - }; 628 - }; 629 - "bluebird-3.5.5" = { 630 - name = "bluebird"; 631 - packageName = "bluebird"; 632 - version = "3.5.5"; 633 - src = fetchurl { 634 - url = "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz"; 635 - sha512 = "5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w=="; 636 }; 637 }; 638 "body-parser-1.19.0" = { ··· 707 sha512 = "a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw=="; 708 }; 709 }; 710 - "builtin-modules-1.1.1" = { 711 - name = "builtin-modules"; 712 - packageName = "builtin-modules"; 713 - version = "1.1.1"; 714 - src = fetchurl { 715 - url = "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz"; 716 - sha1 = "270f076c5a72c02f5b65a47df94c5fe3a278892f"; 717 - }; 718 - }; 719 "bytes-3.1.0" = { 720 name = "bytes"; 721 packageName = "bytes"; ··· 725 sha512 = "zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="; 726 }; 727 }; 728 "camelcase-5.3.1" = { 729 name = "camelcase"; 730 packageName = "camelcase"; ··· 732 src = fetchurl { 733 url = "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"; 734 sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; 735 }; 736 }; 737 "caseless-0.12.0" = { ··· 761 sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; 762 }; 763 }; 764 "check-error-1.0.2" = { 765 name = "check-error"; 766 packageName = "check-error"; ··· 770 sha1 = "574d312edd88bb5dd8912e9286dd6c0aed4aac82"; 771 }; 772 }; 773 - "chokidar-3.3.0" = { 774 name = "chokidar"; 775 packageName = "chokidar"; 776 - version = "3.3.0"; 777 src = fetchurl { 778 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.3.0.tgz"; 779 - sha512 = "dGmKLDdT3Gdl7fBUe8XK+gAtGmzy5Fn0XkkWQuYxGIgWVPPse2CxFA5mtrlD0TOHaHjEUqkWNyP1XdHoJES/4A=="; 780 }; 781 }; 782 "cliui-5.0.0" = { ··· 786 src = fetchurl { 787 url = "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz"; 788 sha512 = "PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA=="; 789 }; 790 }; 791 "color-3.0.0" = { ··· 806 sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="; 807 }; 808 }; 809 "color-name-1.1.3" = { 810 name = "color-name"; 811 packageName = "color-name"; ··· 815 sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; 816 }; 817 }; 818 "color-string-1.5.3" = { 819 name = "color-string"; 820 packageName = "color-string"; ··· 822 src = fetchurl { 823 url = "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz"; 824 sha512 = "dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw=="; 825 - }; 826 - }; 827 - "colornames-1.1.1" = { 828 - name = "colornames"; 829 - packageName = "colornames"; 830 - version = "1.1.1"; 831 - src = fetchurl { 832 - url = "https://registry.npmjs.org/colornames/-/colornames-1.1.1.tgz"; 833 - sha1 = "f8889030685c7c4ff9e2a559f5077eb76a816f96"; 834 }; 835 }; 836 "colors-1.3.3" = { ··· 860 sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; 861 }; 862 }; 863 - "commander-2.20.3" = { 864 name = "commander"; 865 packageName = "commander"; 866 - version = "2.20.3"; 867 src = fetchurl { 868 - url = "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz"; 869 - sha512 = "GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="; 870 }; 871 }; 872 - "commander-3.0.2" = { 873 - name = "commander"; 874 - packageName = "commander"; 875 - version = "3.0.2"; 876 src = fetchurl { 877 - url = "https://registry.npmjs.org/commander/-/commander-3.0.2.tgz"; 878 - sha512 = "Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow=="; 879 }; 880 }; 881 "concat-map-0.0.1" = { ··· 923 sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; 924 }; 925 }; 926 - "core-js-2.6.11" = { 927 - name = "core-js"; 928 - packageName = "core-js"; 929 - version = "2.6.11"; 930 - src = fetchurl { 931 - url = "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz"; 932 - sha512 = "5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg=="; 933 - }; 934 - }; 935 "core-util-is-1.0.2" = { 936 name = "core-util-is"; 937 packageName = "core-util-is"; ··· 941 sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; 942 }; 943 }; 944 - "cross-spawn-6.0.5" = { 945 - name = "cross-spawn"; 946 - packageName = "cross-spawn"; 947 - version = "6.0.5"; 948 src = fetchurl { 949 - url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz"; 950 - sha512 = "eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ=="; 951 }; 952 }; 953 - "cycle-1.0.3" = { 954 - name = "cycle"; 955 - packageName = "cycle"; 956 - version = "1.0.3"; 957 src = fetchurl { 958 - url = "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz"; 959 - sha1 = "21e80b2be8580f98b468f379430662b046c34ad2"; 960 }; 961 }; 962 "dashdash-1.14.1" = { ··· 977 sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; 978 }; 979 }; 980 - "debug-3.1.0" = { 981 name = "debug"; 982 packageName = "debug"; 983 - version = "3.1.0"; 984 src = fetchurl { 985 - url = "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz"; 986 - sha512 = "OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g=="; 987 }; 988 }; 989 - "debug-3.2.6" = { 990 name = "debug"; 991 packageName = "debug"; 992 - version = "3.2.6"; 993 src = fetchurl { 994 - url = "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz"; 995 - sha512 = "mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ=="; 996 }; 997 }; 998 "decamelize-1.2.0" = { ··· 1004 sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 1005 }; 1006 }; 1007 "deep-eql-3.0.1" = { 1008 name = "deep-eql"; 1009 packageName = "deep-eql"; ··· 1013 sha512 = "+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw=="; 1014 }; 1015 }; 1016 - "define-properties-1.1.3" = { 1017 - name = "define-properties"; 1018 - packageName = "define-properties"; 1019 - version = "1.1.3"; 1020 src = fetchurl { 1021 - url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz"; 1022 - sha512 = "3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ=="; 1023 }; 1024 }; 1025 "delayed-stream-1.0.0" = { ··· 1040 sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9"; 1041 }; 1042 }; 1043 "destroy-1.0.4" = { 1044 name = "destroy"; 1045 packageName = "destroy"; ··· 1049 sha1 = "978857442c44749e4206613e37946205826abd80"; 1050 }; 1051 }; 1052 - "diagnostics-1.1.1" = { 1053 - name = "diagnostics"; 1054 - packageName = "diagnostics"; 1055 - version = "1.1.1"; 1056 src = fetchurl { 1057 - url = "https://registry.npmjs.org/diagnostics/-/diagnostics-1.1.1.tgz"; 1058 - sha512 = "8wn1PmdunLJ9Tqbx+Fx/ZEuHfJf4NKSN2ZBj7SJC/OWRWha843+WsTjqMe1B5E3p28jqBlp+mJ2fPVxPyNgYKQ=="; 1059 }; 1060 }; 1061 - "diff-3.5.0" = { 1062 - name = "diff"; 1063 - packageName = "diff"; 1064 - version = "3.5.0"; 1065 src = fetchurl { 1066 - url = "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz"; 1067 - sha512 = "A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA=="; 1068 }; 1069 }; 1070 - "diff-4.0.2" = { 1071 - name = "diff"; 1072 - packageName = "diff"; 1073 - version = "4.0.2"; 1074 src = fetchurl { 1075 - url = "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz"; 1076 - sha512 = "58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="; 1077 }; 1078 }; 1079 "ecc-jsbn-0.1.2" = { ··· 1103 sha512 = "CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="; 1104 }; 1105 }; 1106 - "enabled-1.0.2" = { 1107 name = "enabled"; 1108 packageName = "enabled"; 1109 - version = "1.0.2"; 1110 src = fetchurl { 1111 - url = "https://registry.npmjs.org/enabled/-/enabled-1.0.2.tgz"; 1112 - sha1 = "965f6513d2c2d1c5f4652b64a2e3396467fc2f93"; 1113 }; 1114 }; 1115 "encodeurl-1.0.2" = { ··· 1121 sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"; 1122 }; 1123 }; 1124 - "end-of-stream-1.4.1" = { 1125 - name = "end-of-stream"; 1126 - packageName = "end-of-stream"; 1127 - version = "1.4.1"; 1128 src = fetchurl { 1129 - url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz"; 1130 - sha512 = "1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q=="; 1131 }; 1132 }; 1133 - "env-variable-0.0.5" = { 1134 - name = "env-variable"; 1135 - packageName = "env-variable"; 1136 - version = "0.0.5"; 1137 src = fetchurl { 1138 - url = "https://registry.npmjs.org/env-variable/-/env-variable-0.0.5.tgz"; 1139 - sha512 = "zoB603vQReOFvTg5xMl9I1P2PnHsHQQKTEowsKKD7nseUfJq6UWzK+4YtlWUO1nhiQUxe6XMkk+JleSZD1NZFA=="; 1140 - }; 1141 - }; 1142 - "es-abstract-1.17.5" = { 1143 - name = "es-abstract"; 1144 - packageName = "es-abstract"; 1145 - version = "1.17.5"; 1146 - src = fetchurl { 1147 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.5.tgz"; 1148 - sha512 = "BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg=="; 1149 - }; 1150 - }; 1151 - "es-to-primitive-1.2.1" = { 1152 - name = "es-to-primitive"; 1153 - packageName = "es-to-primitive"; 1154 - version = "1.2.1"; 1155 - src = fetchurl { 1156 - url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz"; 1157 - sha512 = "QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA=="; 1158 }; 1159 }; 1160 "escape-html-1.0.3" = { ··· 1175 sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 1176 }; 1177 }; 1178 - "escape-string-regexp-2.0.0" = { 1179 name = "escape-string-regexp"; 1180 packageName = "escape-string-regexp"; 1181 version = "2.0.0"; 1182 src = fetchurl { 1183 - url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz"; 1184 - sha512 = "UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w=="; 1185 }; 1186 }; 1187 "esprima-4.0.1" = { ··· 1193 sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; 1194 }; 1195 }; 1196 "etag-1.8.1" = { 1197 name = "etag"; 1198 packageName = "etag"; ··· 1211 sha512 = "tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q=="; 1212 }; 1213 }; 1214 - "eventemitter3-4.0.0" = { 1215 name = "eventemitter3"; 1216 packageName = "eventemitter3"; 1217 - version = "4.0.0"; 1218 src = fetchurl { 1219 - url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.0.tgz"; 1220 - sha512 = "qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg=="; 1221 - }; 1222 - }; 1223 - "execa-1.0.0" = { 1224 - name = "execa"; 1225 - packageName = "execa"; 1226 - version = "1.0.0"; 1227 - src = fetchurl { 1228 - url = "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz"; 1229 - sha512 = "adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA=="; 1230 }; 1231 }; 1232 "express-4.17.1" = { ··· 1256 sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; 1257 }; 1258 }; 1259 - "fast-deep-equal-2.0.1" = { 1260 name = "fast-deep-equal"; 1261 packageName = "fast-deep-equal"; 1262 - version = "2.0.1"; 1263 src = fetchurl { 1264 - url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz"; 1265 - sha1 = "7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"; 1266 }; 1267 }; 1268 - "fast-json-stable-stringify-2.0.0" = { 1269 name = "fast-json-stable-stringify"; 1270 packageName = "fast-json-stable-stringify"; 1271 - version = "2.0.0"; 1272 src = fetchurl { 1273 - url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz"; 1274 - sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2"; 1275 }; 1276 }; 1277 "fast-safe-stringify-2.0.6" = { ··· 1283 sha512 = "q8BZ89jjc+mz08rSxROs8VsrBBcn1SIw1kq9NjolL509tkABRk9io01RAjSaEv1Xb2uFLt8VtRiZbGp5H8iDtg=="; 1284 }; 1285 }; 1286 - "fecha-2.3.3" = { 1287 name = "fecha"; 1288 packageName = "fecha"; 1289 - version = "2.3.3"; 1290 src = fetchurl { 1291 - url = "https://registry.npmjs.org/fecha/-/fecha-2.3.3.tgz"; 1292 - sha512 = "lUGBnIamTAwk4znq5BcqsDaxSmZ9nDVJaij6NvRt/Tg4R69gERA+otPKbS86ROw9nxVMw2/mp1fnaiWqbs6Sdg=="; 1293 }; 1294 }; 1295 - "file-stream-rotator-0.4.1" = { 1296 name = "file-stream-rotator"; 1297 packageName = "file-stream-rotator"; 1298 - version = "0.4.1"; 1299 src = fetchurl { 1300 - url = "https://registry.npmjs.org/file-stream-rotator/-/file-stream-rotator-0.4.1.tgz"; 1301 - sha512 = "W3aa3QJEc8BS2MmdVpQiYLKHj3ijpto1gMDlsgCRSKfIUe6MwkcpODGPQ3vZfb0XvCeCqlu9CBQTN7oQri2TZQ=="; 1302 }; 1303 }; 1304 "fill-range-7.0.1" = { ··· 1328 sha512 = "1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg=="; 1329 }; 1330 }; 1331 "finity-0.5.4" = { 1332 name = "finity"; 1333 packageName = "finity"; ··· 1337 sha512 = "3l+5/1tuw616Lgb0QBimxfdd2TqaDGpfCBpfX6EqtFmqUV3FtQnVEX4Aa62DagYEqnsTIjZcTfbq9msDbXYgyA=="; 1338 }; 1339 }; 1340 - "flat-4.1.0" = { 1341 name = "flat"; 1342 packageName = "flat"; 1343 - version = "4.1.0"; 1344 src = fetchurl { 1345 - url = "https://registry.npmjs.org/flat/-/flat-4.1.0.tgz"; 1346 - sha512 = "Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw=="; 1347 }; 1348 }; 1349 - "follow-redirects-1.5.10" = { 1350 name = "follow-redirects"; 1351 packageName = "follow-redirects"; 1352 - version = "1.5.10"; 1353 src = fetchurl { 1354 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz"; 1355 - sha512 = "0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ=="; 1356 }; 1357 }; 1358 "forever-agent-0.6.1" = { ··· 1409 sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 1410 }; 1411 }; 1412 - "fsevents-2.1.2" = { 1413 name = "fsevents"; 1414 packageName = "fsevents"; 1415 - version = "2.1.2"; 1416 src = fetchurl { 1417 - url = "https://registry.npmjs.org/fsevents/-/fsevents-2.1.2.tgz"; 1418 - sha512 = "R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA=="; 1419 }; 1420 }; 1421 - "function-bind-1.1.1" = { 1422 - name = "function-bind"; 1423 - packageName = "function-bind"; 1424 - version = "1.1.1"; 1425 src = fetchurl { 1426 - url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"; 1427 - sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="; 1428 }; 1429 }; 1430 "generate-function-2.3.1" = { ··· 1463 sha1 = "ead774abee72e20409433a066366023dd6887a41"; 1464 }; 1465 }; 1466 - "get-stream-4.1.0" = { 1467 - name = "get-stream"; 1468 - packageName = "get-stream"; 1469 - version = "4.1.0"; 1470 - src = fetchurl { 1471 - url = "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz"; 1472 - sha512 = "GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w=="; 1473 - }; 1474 - }; 1475 "getpass-0.1.7" = { 1476 name = "getpass"; 1477 packageName = "getpass"; ··· 1481 sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; 1482 }; 1483 }; 1484 - "glob-7.1.3" = { 1485 name = "glob"; 1486 packageName = "glob"; 1487 - version = "7.1.3"; 1488 src = fetchurl { 1489 - url = "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz"; 1490 - sha512 = "vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ=="; 1491 }; 1492 }; 1493 "glob-parent-5.1.1" = { ··· 1499 sha512 = "FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ=="; 1500 }; 1501 }; 1502 "growl-1.10.5" = { 1503 name = "growl"; 1504 packageName = "growl"; ··· 1517 sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; 1518 }; 1519 }; 1520 - "har-validator-5.1.3" = { 1521 name = "har-validator"; 1522 packageName = "har-validator"; 1523 - version = "5.1.3"; 1524 src = fetchurl { 1525 - url = "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz"; 1526 - sha512 = "sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g=="; 1527 - }; 1528 - }; 1529 - "has-1.0.3" = { 1530 - name = "has"; 1531 - packageName = "has"; 1532 - version = "1.0.3"; 1533 - src = fetchurl { 1534 - url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz"; 1535 - sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="; 1536 }; 1537 }; 1538 "has-flag-3.0.0" = { ··· 1544 sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd"; 1545 }; 1546 }; 1547 - "has-symbols-1.0.1" = { 1548 - name = "has-symbols"; 1549 - packageName = "has-symbols"; 1550 - version = "1.0.1"; 1551 src = fetchurl { 1552 - url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz"; 1553 - sha512 = "PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg=="; 1554 }; 1555 }; 1556 "he-1.2.0" = { ··· 1589 sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 1590 }; 1591 }; 1592 "immediate-3.0.6" = { 1593 name = "immediate"; 1594 packageName = "immediate"; ··· 1598 sha1 = "9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b"; 1599 }; 1600 }; 1601 "inflight-1.0.6" = { 1602 name = "inflight"; 1603 packageName = "inflight"; ··· 1616 sha1 = "633c2c83e3da42a502f52466022480f4208261de"; 1617 }; 1618 }; 1619 - "invert-kv-2.0.0" = { 1620 - name = "invert-kv"; 1621 - packageName = "invert-kv"; 1622 - version = "2.0.0"; 1623 - src = fetchurl { 1624 - url = "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz"; 1625 - sha512 = "wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA=="; 1626 - }; 1627 - }; 1628 - "ipaddr.js-1.9.0" = { 1629 name = "ipaddr.js"; 1630 packageName = "ipaddr.js"; 1631 - version = "1.9.0"; 1632 src = fetchurl { 1633 - url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz"; 1634 - sha512 = "M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA=="; 1635 }; 1636 }; 1637 "is-arrayish-0.3.2" = { ··· 1652 sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; 1653 }; 1654 }; 1655 - "is-buffer-2.0.4" = { 1656 - name = "is-buffer"; 1657 - packageName = "is-buffer"; 1658 - version = "2.0.4"; 1659 - src = fetchurl { 1660 - url = "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz"; 1661 - sha512 = "Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A=="; 1662 - }; 1663 - }; 1664 - "is-callable-1.1.5" = { 1665 - name = "is-callable"; 1666 - packageName = "is-callable"; 1667 - version = "1.1.5"; 1668 - src = fetchurl { 1669 - url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.5.tgz"; 1670 - sha512 = "ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q=="; 1671 - }; 1672 - }; 1673 - "is-date-object-1.0.2" = { 1674 - name = "is-date-object"; 1675 - packageName = "is-date-object"; 1676 - version = "1.0.2"; 1677 - src = fetchurl { 1678 - url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz"; 1679 - sha512 = "USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g=="; 1680 - }; 1681 - }; 1682 "is-extglob-2.1.1" = { 1683 name = "is-extglob"; 1684 packageName = "is-extglob"; ··· 1697 sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; 1698 }; 1699 }; 1700 "is-glob-4.0.1" = { 1701 name = "is-glob"; 1702 packageName = "is-glob"; ··· 1715 sha512 = "gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ=="; 1716 }; 1717 }; 1718 - "is-my-json-valid-2.20.0" = { 1719 name = "is-my-json-valid"; 1720 packageName = "is-my-json-valid"; 1721 - version = "2.20.0"; 1722 src = fetchurl { 1723 - url = "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.20.0.tgz"; 1724 - sha512 = "XTHBZSIIxNsIsZXg7XB5l8z/OBFosl1Wao4tXLpeC7eKU4Vm/kdop2azkPqULwnfGQjmeDIyey9g7afMMtdWAA=="; 1725 }; 1726 }; 1727 "is-number-7.0.0" = { ··· 1733 sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="; 1734 }; 1735 }; 1736 "is-property-1.0.2" = { 1737 name = "is-property"; 1738 packageName = "is-property"; ··· 1742 sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84"; 1743 }; 1744 }; 1745 - "is-regex-1.0.5" = { 1746 - name = "is-regex"; 1747 - packageName = "is-regex"; 1748 - version = "1.0.5"; 1749 - src = fetchurl { 1750 - url = "https://registry.npmjs.org/is-regex/-/is-regex-1.0.5.tgz"; 1751 - sha512 = "vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ=="; 1752 - }; 1753 - }; 1754 "is-stream-1.1.0" = { 1755 name = "is-stream"; 1756 packageName = "is-stream"; ··· 1760 sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"; 1761 }; 1762 }; 1763 - "is-symbol-1.0.3" = { 1764 - name = "is-symbol"; 1765 - packageName = "is-symbol"; 1766 - version = "1.0.3"; 1767 src = fetchurl { 1768 - url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz"; 1769 - sha512 = "OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ=="; 1770 }; 1771 }; 1772 "is-typedarray-1.0.0" = { ··· 1814 sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="; 1815 }; 1816 }; 1817 - "js-yaml-3.13.1" = { 1818 name = "js-yaml"; 1819 packageName = "js-yaml"; 1820 - version = "3.13.1"; 1821 src = fetchurl { 1822 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz"; 1823 - sha512 = "YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw=="; 1824 }; 1825 }; 1826 "jsbn-0.1.1" = { ··· 1832 sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; 1833 }; 1834 }; 1835 "json-schema-0.2.3" = { 1836 name = "json-schema"; 1837 packageName = "json-schema"; ··· 1850 sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; 1851 }; 1852 }; 1853 "json-stringify-safe-5.0.1" = { 1854 name = "json-stringify-safe"; 1855 packageName = "json-stringify-safe"; ··· 1859 sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; 1860 }; 1861 }; 1862 - "jsonpointer-4.0.1" = { 1863 name = "jsonpointer"; 1864 packageName = "jsonpointer"; 1865 - version = "4.0.1"; 1866 src = fetchurl { 1867 - url = "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz"; 1868 - sha1 = "4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"; 1869 }; 1870 }; 1871 "jsprim-1.4.1" = { ··· 1877 sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; 1878 }; 1879 }; 1880 - "kuler-1.0.1" = { 1881 name = "kuler"; 1882 packageName = "kuler"; 1883 - version = "1.0.1"; 1884 src = fetchurl { 1885 - url = "https://registry.npmjs.org/kuler/-/kuler-1.0.1.tgz"; 1886 - sha512 = "J9nVUucG1p/skKul6DU3PUZrhs0LPulNaeUOox0IyXDi8S4CztTHs1gQphhuZmzXG7VOQSf6NJfKuzteQLv9gQ=="; 1887 }; 1888 }; 1889 - "lcid-2.0.0" = { 1890 - name = "lcid"; 1891 - packageName = "lcid"; 1892 - version = "2.0.0"; 1893 src = fetchurl { 1894 - url = "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz"; 1895 - sha512 = "avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA=="; 1896 }; 1897 }; 1898 "lie-3.1.1" = { ··· 1922 sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A=="; 1923 }; 1924 }; 1925 - "lodash-4.17.15" = { 1926 name = "lodash"; 1927 packageName = "lodash"; 1928 - version = "4.17.15"; 1929 src = fetchurl { 1930 - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz"; 1931 - sha512 = "8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A=="; 1932 }; 1933 }; 1934 "lodash.toarray-4.4.0" = { ··· 1940 sha1 = "24c4bfcd6b2fba38bfd0594db1179d8e9b656561"; 1941 }; 1942 }; 1943 - "log-symbols-3.0.0" = { 1944 name = "log-symbols"; 1945 packageName = "log-symbols"; 1946 - version = "3.0.0"; 1947 src = fetchurl { 1948 - url = "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz"; 1949 - sha512 = "dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ=="; 1950 }; 1951 }; 1952 - "logform-1.10.0" = { 1953 name = "logform"; 1954 packageName = "logform"; 1955 - version = "1.10.0"; 1956 src = fetchurl { 1957 - url = "https://registry.npmjs.org/logform/-/logform-1.10.0.tgz"; 1958 - sha512 = "em5ojIhU18fIMOw/333mD+ZLE2fis0EzXl1ZwHx4iQzmpQi6odNiY/t+ITNr33JZhT9/KEaH+UPIipr6a9EjWg=="; 1959 }; 1960 }; 1961 - "logform-2.1.2" = { 1962 - name = "logform"; 1963 - packageName = "logform"; 1964 - version = "2.1.2"; 1965 src = fetchurl { 1966 - url = "https://registry.npmjs.org/logform/-/logform-2.1.2.tgz"; 1967 - sha512 = "+lZh4OpERDBLqjiwDLpAWNQu6KMjnlXH2ByZwCuSqVPJletw0kTWJf5CgSNAUKn1KUkv3m2cUz/LK8zyEy7wzQ=="; 1968 }; 1969 }; 1970 - "loglevel-1.6.8" = { 1971 - name = "loglevel"; 1972 - packageName = "loglevel"; 1973 - version = "1.6.8"; 1974 src = fetchurl { 1975 - url = "https://registry.npmjs.org/loglevel/-/loglevel-1.6.8.tgz"; 1976 - sha512 = "bsU7+gc9AJ2SqpzxwU3+1fedl8zAntbtC5XYlt3s2j1hJcn2PsXSmgN8TaLG/J1/2mod4+cE/3vNL70/c1RNCA=="; 1977 }; 1978 }; 1979 "make-error-1.3.6" = { ··· 1985 sha512 = "s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="; 1986 }; 1987 }; 1988 - "map-age-cleaner-0.1.3" = { 1989 - name = "map-age-cleaner"; 1990 - packageName = "map-age-cleaner"; 1991 - version = "0.1.3"; 1992 - src = fetchurl { 1993 - url = "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz"; 1994 - sha512 = "bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w=="; 1995 - }; 1996 - }; 1997 - "matrix-appservice-0.4.1" = { 1998 name = "matrix-appservice"; 1999 packageName = "matrix-appservice"; 2000 - version = "0.4.1"; 2001 src = fetchurl { 2002 - url = "https://registry.npmjs.org/matrix-appservice/-/matrix-appservice-0.4.1.tgz"; 2003 - sha512 = "mxHr9XDOvN/p6OFrfb4kkcEjCPftnXNzMS8Lg9Cz/pDy1arfRWq11vl9pL9bjzBaAouBGLpW1JzmCR2MsW+VKA=="; 2004 }; 2005 }; 2006 - "matrix-appservice-bridge-1.12.2" = { 2007 name = "matrix-appservice-bridge"; 2008 packageName = "matrix-appservice-bridge"; 2009 - version = "1.12.2"; 2010 src = fetchurl { 2011 - url = "https://registry.npmjs.org/matrix-appservice-bridge/-/matrix-appservice-bridge-1.12.2.tgz"; 2012 - sha512 = "cGD31MLi4ARnx4DIyJndIhHIsNjaWUoBMXeAbnHhvkwkdVgZ9pgA6IKKmcBCFfsNX1r/I04KjcjlKpVdmZu4VQ=="; 2013 }; 2014 }; 2015 - "matrix-js-sdk-2.4.6" = { 2016 name = "matrix-js-sdk"; 2017 packageName = "matrix-js-sdk"; 2018 - version = "2.4.6"; 2019 src = fetchurl { 2020 - url = "https://registry.npmjs.org/matrix-js-sdk/-/matrix-js-sdk-2.4.6.tgz"; 2021 - sha512 = "ydU64WwAYFjaTJ7JTv/JM3HmSY7leHWm3x3j0J4KWVhDDxsLoQ/v8Tc6FwlVom9/B9VvGTk+AG3aY0zgNk8LQg=="; 2022 }; 2023 }; 2024 "media-typer-0.3.0" = { ··· 2030 sha1 = "8710d7af0aa626f8fffa1ce00168545263255748"; 2031 }; 2032 }; 2033 - "mem-4.3.0" = { 2034 - name = "mem"; 2035 - packageName = "mem"; 2036 - version = "4.3.0"; 2037 - src = fetchurl { 2038 - url = "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz"; 2039 - sha512 = "qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w=="; 2040 - }; 2041 - }; 2042 "merge-descriptors-1.0.1" = { 2043 name = "merge-descriptors"; 2044 packageName = "merge-descriptors"; ··· 2048 sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61"; 2049 }; 2050 }; 2051 "methods-1.1.2" = { 2052 name = "methods"; 2053 packageName = "methods"; ··· 2055 src = fetchurl { 2056 url = "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz"; 2057 sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; 2058 }; 2059 }; 2060 "mime-1.6.0" = { ··· 2084 sha512 = "WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ=="; 2085 }; 2086 }; 2087 - "mimic-fn-2.1.0" = { 2088 - name = "mimic-fn"; 2089 - packageName = "mimic-fn"; 2090 - version = "2.1.0"; 2091 - src = fetchurl { 2092 - url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz"; 2093 - sha512 = "OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="; 2094 - }; 2095 - }; 2096 "minimatch-3.0.4" = { 2097 name = "minimatch"; 2098 packageName = "minimatch"; ··· 2111 sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="; 2112 }; 2113 }; 2114 - "mkdirp-0.5.3" = { 2115 - name = "mkdirp"; 2116 - packageName = "mkdirp"; 2117 - version = "0.5.3"; 2118 - src = fetchurl { 2119 - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.3.tgz"; 2120 - sha512 = "P+2gwrFqx8lhew375MQHHeTlY8AuOJSrGf0R5ddkEndUkmwpgUob/vQuBD1V22/Cw1/lJr4x+EjllSezBThzBg=="; 2121 - }; 2122 - }; 2123 "mkdirp-0.5.5" = { 2124 name = "mkdirp"; 2125 packageName = "mkdirp"; ··· 2129 sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ=="; 2130 }; 2131 }; 2132 - "mocha-7.1.1" = { 2133 name = "mocha"; 2134 packageName = "mocha"; 2135 - version = "7.1.1"; 2136 src = fetchurl { 2137 - url = "https://registry.npmjs.org/mocha/-/mocha-7.1.1.tgz"; 2138 - sha512 = "3qQsu3ijNS3GkWcccT5Zw0hf/rWvu1fTN9sPvEd81hlwsr30GX2GcDSSoBxo24IR8FelmrAydGC6/1J5QQP4WA=="; 2139 }; 2140 }; 2141 "moment-2.24.0" = { ··· 2147 sha512 = "bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg=="; 2148 }; 2149 }; 2150 - "morgan-1.9.1" = { 2151 name = "morgan"; 2152 packageName = "morgan"; 2153 - version = "1.9.1"; 2154 src = fetchurl { 2155 - url = "https://registry.npmjs.org/morgan/-/morgan-1.9.1.tgz"; 2156 - sha512 = "HQStPIV4y3afTiCYVxirakhlCfGkI161c76kKFca7Fk1JusM//Qeo1ej2XaMniiNeaZklMVrh3vTtIzpzwbpmA=="; 2157 }; 2158 }; 2159 "ms-2.0.0" = { ··· 2183 sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; 2184 }; 2185 }; 2186 "nedb-1.8.0" = { 2187 name = "nedb"; 2188 packageName = "nedb"; ··· 2201 sha512 = "hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw=="; 2202 }; 2203 }; 2204 - "nice-try-1.0.5" = { 2205 - name = "nice-try"; 2206 - packageName = "nice-try"; 2207 - version = "1.0.5"; 2208 - src = fetchurl { 2209 - url = "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz"; 2210 - sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ=="; 2211 - }; 2212 - }; 2213 "node-emoji-1.10.0" = { 2214 name = "node-emoji"; 2215 packageName = "node-emoji"; ··· 2219 sha512 = "Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw=="; 2220 }; 2221 }; 2222 - "node-environment-flags-1.0.6" = { 2223 - name = "node-environment-flags"; 2224 - packageName = "node-environment-flags"; 2225 - version = "1.0.6"; 2226 - src = fetchurl { 2227 - url = "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.6.tgz"; 2228 - sha512 = "5Evy2epuL+6TM0lCQGpFIj6KwiEsGh1SrHUhTbNX+sLbBtjidPZFAnVK9y5yU1+h//RitLbRHTIMyxQPtxMdHw=="; 2229 - }; 2230 - }; 2231 - "nopt-3.0.6" = { 2232 name = "nopt"; 2233 packageName = "nopt"; 2234 - version = "3.0.6"; 2235 src = fetchurl { 2236 - url = "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz"; 2237 - sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9"; 2238 }; 2239 }; 2240 "normalize-path-3.0.0" = { ··· 2246 sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="; 2247 }; 2248 }; 2249 - "npm-run-path-2.0.2" = { 2250 - name = "npm-run-path"; 2251 - packageName = "npm-run-path"; 2252 - version = "2.0.2"; 2253 - src = fetchurl { 2254 - url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz"; 2255 - sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f"; 2256 - }; 2257 - }; 2258 - "nunjucks-3.2.1" = { 2259 name = "nunjucks"; 2260 packageName = "nunjucks"; 2261 - version = "3.2.1"; 2262 src = fetchurl { 2263 - url = "https://registry.npmjs.org/nunjucks/-/nunjucks-3.2.1.tgz"; 2264 - sha512 = "LYlVuC1ZNSalQQkLNNPvcgPt2M9FTY9bs39mTCuFXtqh7jWbYzhDlmz2M6onPiXEhdZo+b9anRhc+uBGuJZ2bQ=="; 2265 }; 2266 }; 2267 "oauth-sign-0.9.0" = { ··· 2273 sha512 = "fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="; 2274 }; 2275 }; 2276 - "object-hash-1.3.1" = { 2277 name = "object-hash"; 2278 packageName = "object-hash"; 2279 - version = "1.3.1"; 2280 - src = fetchurl { 2281 - url = "https://registry.npmjs.org/object-hash/-/object-hash-1.3.1.tgz"; 2282 - sha512 = "OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA=="; 2283 - }; 2284 - }; 2285 - "object-inspect-1.7.0" = { 2286 - name = "object-inspect"; 2287 - packageName = "object-inspect"; 2288 - version = "1.7.0"; 2289 src = fetchurl { 2290 - url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz"; 2291 - sha512 = "a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw=="; 2292 - }; 2293 - }; 2294 - "object-keys-1.1.1" = { 2295 - name = "object-keys"; 2296 - packageName = "object-keys"; 2297 - version = "1.1.1"; 2298 - src = fetchurl { 2299 - url = "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"; 2300 - sha512 = "NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="; 2301 - }; 2302 - }; 2303 - "object.assign-4.1.0" = { 2304 - name = "object.assign"; 2305 - packageName = "object.assign"; 2306 - version = "4.1.0"; 2307 - src = fetchurl { 2308 - url = "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz"; 2309 - sha512 = "exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w=="; 2310 - }; 2311 - }; 2312 - "object.getownpropertydescriptors-2.1.0" = { 2313 - name = "object.getownpropertydescriptors"; 2314 - packageName = "object.getownpropertydescriptors"; 2315 - version = "2.1.0"; 2316 - src = fetchurl { 2317 - url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz"; 2318 - sha512 = "Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg=="; 2319 }; 2320 }; 2321 "on-finished-2.3.0" = { ··· 2345 sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; 2346 }; 2347 }; 2348 - "one-time-0.0.4" = { 2349 name = "one-time"; 2350 packageName = "one-time"; 2351 - version = "0.0.4"; 2352 src = fetchurl { 2353 - url = "https://registry.npmjs.org/one-time/-/one-time-0.0.4.tgz"; 2354 - sha1 = "f8cdf77884826fe4dff93e3a9cc37b1e4480742e"; 2355 }; 2356 }; 2357 - "os-locale-3.1.0" = { 2358 - name = "os-locale"; 2359 - packageName = "os-locale"; 2360 - version = "3.1.0"; 2361 src = fetchurl { 2362 - url = "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz"; 2363 - sha512 = "Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q=="; 2364 }; 2365 }; 2366 "p-cancelable-1.1.0" = { ··· 2372 sha512 = "s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw=="; 2373 }; 2374 }; 2375 - "p-defer-1.0.0" = { 2376 - name = "p-defer"; 2377 - packageName = "p-defer"; 2378 - version = "1.0.0"; 2379 - src = fetchurl { 2380 - url = "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz"; 2381 - sha1 = "9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"; 2382 - }; 2383 - }; 2384 "p-finally-1.0.0" = { 2385 name = "p-finally"; 2386 packageName = "p-finally"; ··· 2390 sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae"; 2391 }; 2392 }; 2393 - "p-is-promise-2.1.0" = { 2394 - name = "p-is-promise"; 2395 - packageName = "p-is-promise"; 2396 - version = "2.1.0"; 2397 src = fetchurl { 2398 - url = "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz"; 2399 - sha512 = "Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg=="; 2400 }; 2401 }; 2402 - "p-limit-2.2.0" = { 2403 name = "p-limit"; 2404 packageName = "p-limit"; 2405 - version = "2.2.0"; 2406 src = fetchurl { 2407 - url = "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz"; 2408 - sha512 = "pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ=="; 2409 }; 2410 }; 2411 "p-locate-3.0.0" = { ··· 2417 sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ=="; 2418 }; 2419 }; 2420 "p-queue-2.4.2" = { 2421 name = "p-queue"; 2422 packageName = "p-queue"; ··· 2426 sha512 = "n8/y+yDJwBjoLQe1GSJbbaYQLTI7QHNZI2+rpmCDbe++WLf9HC3gf6iqj5yfPAV71W4UF3ql5W1+UBPXoXTxng=="; 2427 }; 2428 }; 2429 - "p-queue-6.3.0" = { 2430 name = "p-queue"; 2431 packageName = "p-queue"; 2432 - version = "6.3.0"; 2433 src = fetchurl { 2434 - url = "https://registry.npmjs.org/p-queue/-/p-queue-6.3.0.tgz"; 2435 - sha512 = "fg5dJlFpd5+3CgG3/0ogpVZUeJbjiyXFg0nu53hrOYsybqSiDyxyOpad0Rm6tAiGjgztAwkyvhlYHC53OiAJOA=="; 2436 }; 2437 }; 2438 "p-retry-4.2.0" = { ··· 2471 sha512 = "HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ=="; 2472 }; 2473 }; 2474 "parseurl-1.3.3" = { 2475 name = "parseurl"; 2476 packageName = "parseurl"; ··· 2487 src = fetchurl { 2488 url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"; 2489 sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"; 2490 }; 2491 }; 2492 "path-is-absolute-1.0.1" = { ··· 2498 sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; 2499 }; 2500 }; 2501 - "path-key-2.0.1" = { 2502 name = "path-key"; 2503 packageName = "path-key"; 2504 - version = "2.0.1"; 2505 - src = fetchurl { 2506 - url = "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz"; 2507 - sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40"; 2508 - }; 2509 - }; 2510 - "path-parse-1.0.6" = { 2511 - name = "path-parse"; 2512 - packageName = "path-parse"; 2513 - version = "1.0.6"; 2514 src = fetchurl { 2515 - url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz"; 2516 - sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw=="; 2517 }; 2518 }; 2519 "path-to-regexp-0.1.7" = { ··· 2525 sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c"; 2526 }; 2527 }; 2528 "pathval-1.1.0" = { 2529 name = "pathval"; 2530 packageName = "pathval"; ··· 2543 sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; 2544 }; 2545 }; 2546 - "pg-8.1.0" = { 2547 name = "pg"; 2548 packageName = "pg"; 2549 - version = "8.1.0"; 2550 src = fetchurl { 2551 - url = "https://registry.npmjs.org/pg/-/pg-8.1.0.tgz"; 2552 - sha512 = "Jp+XSNTGYDztc2FgIbmBXeeYMR7kKjfgnl3R+ioO6rkcxDmaea+YPp/gaxe13PBnJAFYyEGl0ixpwPm2gb6eUw=="; 2553 }; 2554 }; 2555 - "pg-connection-string-2.2.2" = { 2556 name = "pg-connection-string"; 2557 packageName = "pg-connection-string"; 2558 - version = "2.2.2"; 2559 src = fetchurl { 2560 - url = "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.2.2.tgz"; 2561 - sha512 = "+hel4DGuSZCjCZwglAuyi+XlodHnKmrbyTw0hVWlmGN2o4AfJDkDo5obAFzblS5M5PFBMx0uDt5Y1QjlNC+tqg=="; 2562 }; 2563 }; 2564 "pg-int8-1.0.1" = { ··· 2570 sha512 = "WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw=="; 2571 }; 2572 }; 2573 - "pg-minify-1.6.0" = { 2574 name = "pg-minify"; 2575 packageName = "pg-minify"; 2576 - version = "1.6.0"; 2577 src = fetchurl { 2578 - url = "https://registry.npmjs.org/pg-minify/-/pg-minify-1.6.0.tgz"; 2579 - sha512 = "5Yxduh9Hul9Xev6uI3rSCypPk1kI7vI03ZPu5lgerrhiZ7QLj1Zd92SU2ZyalHVztlWnnPMnTZ+SeXJwh3eY9g=="; 2580 }; 2581 }; 2582 - "pg-pool-3.2.0" = { 2583 name = "pg-pool"; 2584 packageName = "pg-pool"; 2585 - version = "3.2.0"; 2586 src = fetchurl { 2587 - url = "https://registry.npmjs.org/pg-pool/-/pg-pool-3.2.0.tgz"; 2588 - sha512 = "7BLwDNDEfPFjE9vmZLcJPLFwuDAVGZ5lIZo2MeQfwYG7EPGfdNVis/dz6obI/yKqvQIx2sf6QBKXMLB+y/ftgA=="; 2589 }; 2590 }; 2591 - "pg-promise-10.5.5" = { 2592 name = "pg-promise"; 2593 packageName = "pg-promise"; 2594 - version = "10.5.5"; 2595 src = fetchurl { 2596 - url = "https://registry.npmjs.org/pg-promise/-/pg-promise-10.5.5.tgz"; 2597 - sha512 = "Ec2g5bN3uMD0wk65kNEgJbZOcyhQ0S37Gn9gAa78U9V7HcdTfMdpTRSRIFT0LHXpL1EcT00CW62+2Z4wAXs29A=="; 2598 }; 2599 }; 2600 - "pg-protocol-1.2.3" = { 2601 name = "pg-protocol"; 2602 packageName = "pg-protocol"; 2603 - version = "1.2.3"; 2604 src = fetchurl { 2605 - url = "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.2.3.tgz"; 2606 - sha512 = "erHFURS0mPmTbq18cn/zNL3Y4IzNCrU4sgCim0qy7zAPe3Vc0rvK5cImJR6lDvIaz3fJU2R1R9FNOlnUtyF10Q=="; 2607 }; 2608 }; 2609 "pg-types-2.2.0" = { ··· 2615 sha512 = "qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA=="; 2616 }; 2617 }; 2618 - "pgpass-1.0.2" = { 2619 name = "pgpass"; 2620 packageName = "pgpass"; 2621 - version = "1.0.2"; 2622 src = fetchurl { 2623 - url = "https://registry.npmjs.org/pgpass/-/pgpass-1.0.2.tgz"; 2624 - sha1 = "2a7bb41b6065b67907e91da1b07c1847c877b306"; 2625 }; 2626 }; 2627 "picomatch-2.2.2" = { ··· 2651 sha1 = "027b533c0aa890e26d172d47cf9ccecc521acd35"; 2652 }; 2653 }; 2654 - "postgres-date-1.0.5" = { 2655 name = "postgres-date"; 2656 packageName = "postgres-date"; 2657 - version = "1.0.5"; 2658 src = fetchurl { 2659 - url = "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.5.tgz"; 2660 - sha512 = "pdau6GRPERdAYUQwkBnGKxEfPyhVZXG/JiS44iZWiNdSOWE09N2lUgN6yshuq6fVSon4Pm0VMXd1srUUkLe9iA=="; 2661 }; 2662 }; 2663 "postgres-interval-1.2.0" = { ··· 2669 sha512 = "9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ=="; 2670 }; 2671 }; 2672 "process-nextick-args-2.0.1" = { 2673 name = "process-nextick-args"; 2674 packageName = "process-nextick-args"; ··· 2678 sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; 2679 }; 2680 }; 2681 - "prom-client-11.5.3" = { 2682 name = "prom-client"; 2683 packageName = "prom-client"; 2684 - version = "11.5.3"; 2685 src = fetchurl { 2686 - url = "https://registry.npmjs.org/prom-client/-/prom-client-11.5.3.tgz"; 2687 - sha512 = "iz22FmTbtkyL2vt0MdDFY+kWof+S9UB/NACxSn2aJcewtw+EERsen0urSkZ2WrHseNdydsvcxCTAnPcSMZZv4Q=="; 2688 }; 2689 }; 2690 - "proxy-addr-2.0.5" = { 2691 name = "proxy-addr"; 2692 packageName = "proxy-addr"; 2693 - version = "2.0.5"; 2694 src = fetchurl { 2695 - url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.5.tgz"; 2696 - sha512 = "t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ=="; 2697 }; 2698 }; 2699 - "psl-1.1.33" = { 2700 name = "psl"; 2701 packageName = "psl"; 2702 - version = "1.1.33"; 2703 src = fetchurl { 2704 - url = "https://registry.npmjs.org/psl/-/psl-1.1.33.tgz"; 2705 - sha512 = "LTDP2uSrsc7XCb5lO7A8BI1qYxRe/8EqlRvMeEl6rsnYAqDOl8xHR+8lSAIVfrNaSAlTPTNOCgNjWcoUL3AZsw=="; 2706 - }; 2707 - }; 2708 - "pump-3.0.0" = { 2709 - name = "pump"; 2710 - packageName = "pump"; 2711 - version = "3.0.0"; 2712 - src = fetchurl { 2713 - url = "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz"; 2714 - sha512 = "LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww=="; 2715 - }; 2716 - }; 2717 - "punycode-1.4.1" = { 2718 - name = "punycode"; 2719 - packageName = "punycode"; 2720 - version = "1.4.1"; 2721 - src = fetchurl { 2722 - url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz"; 2723 - sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"; 2724 }; 2725 }; 2726 "punycode-2.1.1" = { ··· 2750 sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="; 2751 }; 2752 }; 2753 - "quick-lru-5.0.0" = { 2754 name = "quick-lru"; 2755 packageName = "quick-lru"; 2756 - version = "5.0.0"; 2757 src = fetchurl { 2758 - url = "https://registry.npmjs.org/quick-lru/-/quick-lru-5.0.0.tgz"; 2759 - sha512 = "iNjBLSxM3byM7z8a1MB/Oa+AAeopX4NqKEj/ykgKRi1R4AFXNINR4DSjyjDzXzjqjN9+OBQGfK5w5CAnCtV7jg=="; 2760 }; 2761 }; 2762 "randomstring-1.1.5" = { ··· 2795 sha512 = "tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw=="; 2796 }; 2797 }; 2798 - "readable-stream-3.4.0" = { 2799 name = "readable-stream"; 2800 packageName = "readable-stream"; 2801 version = "3.4.0"; 2802 src = fetchurl { 2803 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.4.0.tgz"; 2804 - sha512 = "jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ=="; 2805 }; 2806 }; 2807 - "readdirp-3.2.0" = { 2808 name = "readdirp"; 2809 packageName = "readdirp"; 2810 - version = "3.2.0"; 2811 src = fetchurl { 2812 - url = "https://registry.npmjs.org/readdirp/-/readdirp-3.2.0.tgz"; 2813 - sha512 = "crk4Qu3pmXwgxdSgGhgA/eXiJAPQiX4GMOZZMXnqKxHX7TaoL+3gQVo/WeuAiogr07DpnfjIMpXXa+PAIvwPGQ=="; 2814 }; 2815 }; 2816 - "regenerator-runtime-0.11.1" = { 2817 name = "regenerator-runtime"; 2818 packageName = "regenerator-runtime"; 2819 - version = "0.11.1"; 2820 src = fetchurl { 2821 - url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz"; 2822 - sha512 = "MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="; 2823 }; 2824 }; 2825 - "request-2.88.0" = { 2826 - name = "request"; 2827 - packageName = "request"; 2828 - version = "2.88.0"; 2829 src = fetchurl { 2830 - url = "https://registry.npmjs.org/request/-/request-2.88.0.tgz"; 2831 - sha512 = "NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg=="; 2832 }; 2833 }; 2834 - "request-promise-core-1.1.3" = { 2835 - name = "request-promise-core"; 2836 - packageName = "request-promise-core"; 2837 - version = "1.1.3"; 2838 src = fetchurl { 2839 - url = "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.3.tgz"; 2840 - sha512 = "QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ=="; 2841 }; 2842 }; 2843 - "request-promise-native-1.0.8" = { 2844 - name = "request-promise-native"; 2845 - packageName = "request-promise-native"; 2846 - version = "1.0.8"; 2847 src = fetchurl { 2848 - url = "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.8.tgz"; 2849 - sha512 = "dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ=="; 2850 }; 2851 }; 2852 "require-directory-2.1.1" = { ··· 2858 sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; 2859 }; 2860 }; 2861 "require-main-filename-2.0.0" = { 2862 name = "require-main-filename"; 2863 packageName = "require-main-filename"; ··· 2867 sha512 = "NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="; 2868 }; 2869 }; 2870 - "resolve-1.15.1" = { 2871 - name = "resolve"; 2872 - packageName = "resolve"; 2873 - version = "1.15.1"; 2874 src = fetchurl { 2875 - url = "https://registry.npmjs.org/resolve/-/resolve-1.15.1.tgz"; 2876 - sha512 = "84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w=="; 2877 }; 2878 }; 2879 "retry-0.12.0" = { ··· 2885 sha1 = "1b42a6266a21f07421d1b0b54b7dc167b01c013b"; 2886 }; 2887 }; 2888 "safe-buffer-5.1.2" = { 2889 name = "safe-buffer"; 2890 packageName = "safe-buffer"; ··· 2894 sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; 2895 }; 2896 }; 2897 "safer-buffer-2.1.2" = { 2898 name = "safer-buffer"; 2899 packageName = "safer-buffer"; ··· 2903 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 2904 }; 2905 }; 2906 - "semver-4.3.2" = { 2907 name = "semver"; 2908 packageName = "semver"; 2909 - version = "4.3.2"; 2910 src = fetchurl { 2911 - url = "https://registry.npmjs.org/semver/-/semver-4.3.2.tgz"; 2912 - sha1 = "c7a07158a80bedd052355b770d82d6640f803be7"; 2913 - }; 2914 - }; 2915 - "semver-5.7.0" = { 2916 - name = "semver"; 2917 - packageName = "semver"; 2918 - version = "5.7.0"; 2919 - src = fetchurl { 2920 - url = "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz"; 2921 - sha512 = "Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA=="; 2922 }; 2923 }; 2924 "send-0.17.1" = { ··· 2928 src = fetchurl { 2929 url = "https://registry.npmjs.org/send/-/send-0.17.1.tgz"; 2930 sha512 = "BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg=="; 2931 }; 2932 }; 2933 "serve-static-1.14.1" = { ··· 2957 sha512 = "JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="; 2958 }; 2959 }; 2960 - "shebang-command-1.2.0" = { 2961 name = "shebang-command"; 2962 packageName = "shebang-command"; 2963 - version = "1.2.0"; 2964 src = fetchurl { 2965 - url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz"; 2966 - sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea"; 2967 }; 2968 }; 2969 - "shebang-regex-1.0.0" = { 2970 name = "shebang-regex"; 2971 packageName = "shebang-regex"; 2972 - version = "1.0.0"; 2973 - src = fetchurl { 2974 - url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz"; 2975 - sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3"; 2976 - }; 2977 - }; 2978 - "signal-exit-3.0.2" = { 2979 - name = "signal-exit"; 2980 - packageName = "signal-exit"; 2981 - version = "3.0.2"; 2982 src = fetchurl { 2983 - url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz"; 2984 - sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d"; 2985 }; 2986 }; 2987 "simple-swizzle-0.2.2" = { ··· 2993 sha1 = "a4da6b635ffcccca33f70d17cb92592de95e557a"; 2994 }; 2995 }; 2996 "source-map-0.6.1" = { 2997 name = "source-map"; 2998 packageName = "source-map"; ··· 3002 sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="; 3003 }; 3004 }; 3005 - "source-map-support-0.5.16" = { 3006 name = "source-map-support"; 3007 packageName = "source-map-support"; 3008 - version = "0.5.16"; 3009 src = fetchurl { 3010 - url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.16.tgz"; 3011 - sha512 = "efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ=="; 3012 }; 3013 }; 3014 - "spex-3.0.1" = { 3015 name = "spex"; 3016 packageName = "spex"; 3017 - version = "3.0.1"; 3018 src = fetchurl { 3019 - url = "https://registry.npmjs.org/spex/-/spex-3.0.1.tgz"; 3020 - sha512 = "priWZUrXBmVPHTOmtUeS7gZzCOUwRK87OHJw5K8bTC6MLOq93mQocx+vWccNyKPT2EY+goZvKGguGn2lx8TBDA=="; 3021 }; 3022 }; 3023 - "split-1.0.1" = { 3024 - name = "split"; 3025 - packageName = "split"; 3026 - version = "1.0.1"; 3027 src = fetchurl { 3028 - url = "https://registry.npmjs.org/split/-/split-1.0.1.tgz"; 3029 - sha512 = "mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg=="; 3030 }; 3031 }; 3032 "sprintf-js-1.0.3" = { ··· 3065 sha1 = "161c7dac177659fd9811f43771fa99381478628c"; 3066 }; 3067 }; 3068 - "stealthy-require-1.1.1" = { 3069 - name = "stealthy-require"; 3070 - packageName = "stealthy-require"; 3071 - version = "1.1.1"; 3072 - src = fetchurl { 3073 - url = "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz"; 3074 - sha1 = "35b09875b4ff49f26a777e509b3090a3226bf24b"; 3075 - }; 3076 - }; 3077 "string-width-2.1.1" = { 3078 name = "string-width"; 3079 packageName = "string-width"; ··· 3092 sha512 = "vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w=="; 3093 }; 3094 }; 3095 - "string.prototype.trimleft-2.1.1" = { 3096 - name = "string.prototype.trimleft"; 3097 - packageName = "string.prototype.trimleft"; 3098 - version = "2.1.1"; 3099 src = fetchurl { 3100 - url = "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz"; 3101 - sha512 = "iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag=="; 3102 - }; 3103 - }; 3104 - "string.prototype.trimright-2.1.1" = { 3105 - name = "string.prototype.trimright"; 3106 - packageName = "string.prototype.trimright"; 3107 - version = "2.1.1"; 3108 - src = fetchurl { 3109 - url = "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz"; 3110 - sha512 = "qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g=="; 3111 }; 3112 }; 3113 "string_decoder-1.1.1" = { ··· 3119 sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; 3120 }; 3121 }; 3122 - "string_decoder-1.2.0" = { 3123 name = "string_decoder"; 3124 packageName = "string_decoder"; 3125 - version = "1.2.0"; 3126 src = fetchurl { 3127 - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.2.0.tgz"; 3128 - sha512 = "6YqyX6ZWEYguAxgZzHGL7SsCeGx3V2TtOTqZz1xSTSWnqsbWwbptafNyvf/ACquZUXV3DANr5BDIwNYe1mN42w=="; 3129 }; 3130 }; 3131 "strip-ansi-4.0.0" = { ··· 3146 sha512 = "DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="; 3147 }; 3148 }; 3149 - "strip-eof-1.0.0" = { 3150 - name = "strip-eof"; 3151 - packageName = "strip-eof"; 3152 - version = "1.0.0"; 3153 src = fetchurl { 3154 - url = "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz"; 3155 - sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf"; 3156 }; 3157 }; 3158 - "strip-json-comments-2.0.1" = { 3159 name = "strip-json-comments"; 3160 packageName = "strip-json-comments"; 3161 - version = "2.0.1"; 3162 src = fetchurl { 3163 - url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz"; 3164 - sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; 3165 }; 3166 }; 3167 "supports-color-5.5.0" = { ··· 3173 sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; 3174 }; 3175 }; 3176 - "supports-color-6.0.0" = { 3177 name = "supports-color"; 3178 packageName = "supports-color"; 3179 - version = "6.0.0"; 3180 src = fetchurl { 3181 - url = "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz"; 3182 - sha512 = "on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg=="; 3183 }; 3184 }; 3185 "tdigest-0.1.1" = { ··· 3200 sha512 = "uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg=="; 3201 }; 3202 }; 3203 - "through-2.3.8" = { 3204 - name = "through"; 3205 - packageName = "through"; 3206 - version = "2.3.8"; 3207 src = fetchurl { 3208 - url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz"; 3209 - sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; 3210 }; 3211 }; 3212 "to-regex-range-5.0.1" = { ··· 3227 sha512 = "yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="; 3228 }; 3229 }; 3230 - "tough-cookie-2.4.3" = { 3231 name = "tough-cookie"; 3232 packageName = "tough-cookie"; 3233 - version = "2.4.3"; 3234 src = fetchurl { 3235 - url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz"; 3236 - sha512 = "Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ=="; 3237 }; 3238 }; 3239 "triple-beam-1.3.0" = { ··· 3245 sha512 = "XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw=="; 3246 }; 3247 }; 3248 - "ts-node-8.8.1" = { 3249 name = "ts-node"; 3250 packageName = "ts-node"; 3251 - version = "8.8.1"; 3252 src = fetchurl { 3253 - url = "https://registry.npmjs.org/ts-node/-/ts-node-8.8.1.tgz"; 3254 - sha512 = "10DE9ONho06QORKAaCBpPiFCdW+tZJuY/84tyypGtl6r+/C7Asq0dhqbRZURuUlLQtZxxDvT8eoj8cGW0ha6Bg=="; 3255 }; 3256 }; 3257 - "tslib-1.11.1" = { 3258 name = "tslib"; 3259 packageName = "tslib"; 3260 - version = "1.11.1"; 3261 src = fetchurl { 3262 - url = "https://registry.npmjs.org/tslib/-/tslib-1.11.1.tgz"; 3263 - sha512 = "aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA=="; 3264 - }; 3265 - }; 3266 - "tslint-6.1.0" = { 3267 - name = "tslint"; 3268 - packageName = "tslint"; 3269 - version = "6.1.0"; 3270 - src = fetchurl { 3271 - url = "https://registry.npmjs.org/tslint/-/tslint-6.1.0.tgz"; 3272 - sha512 = "fXjYd/61vU6da04E505OZQGb2VCN2Mq3doeWcOIryuG+eqdmFUXTYVwdhnbEu2k46LNLgUYt9bI5icQze/j0bQ=="; 3273 }; 3274 }; 3275 - "tsutils-2.29.0" = { 3276 name = "tsutils"; 3277 packageName = "tsutils"; 3278 - version = "2.29.0"; 3279 src = fetchurl { 3280 - url = "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz"; 3281 - sha512 = "g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA=="; 3282 }; 3283 }; 3284 "tunnel-agent-0.6.0" = { ··· 3299 sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64"; 3300 }; 3301 }; 3302 "type-detect-4.0.8" = { 3303 name = "type-detect"; 3304 packageName = "type-detect"; ··· 3308 sha512 = "0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g=="; 3309 }; 3310 }; 3311 "type-is-1.6.18" = { 3312 name = "type-is"; 3313 packageName = "type-is"; ··· 3317 sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; 3318 }; 3319 }; 3320 - "typescript-3.8.3" = { 3321 name = "typescript"; 3322 packageName = "typescript"; 3323 - version = "3.8.3"; 3324 src = fetchurl { 3325 - url = "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz"; 3326 - sha512 = "MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w=="; 3327 }; 3328 }; 3329 "underscore-1.4.4" = { ··· 3335 sha1 = "61a6a32010622afa07963bf325203cf12239d604"; 3336 }; 3337 }; 3338 - "unhomoglyph-1.0.5" = { 3339 name = "unhomoglyph"; 3340 packageName = "unhomoglyph"; 3341 - version = "1.0.5"; 3342 src = fetchurl { 3343 - url = "https://registry.npmjs.org/unhomoglyph/-/unhomoglyph-1.0.5.tgz"; 3344 - sha512 = "rNAw2rGogjq4BVhsCX8K6qXrCcHmUaMCHETlUG0ujGZ3OHwnzJHwdMyzy3n/c9Y7lvlbckOd9nkW33grUVE3bg=="; 3345 }; 3346 }; 3347 "unpipe-1.0.0" = { ··· 3353 sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec"; 3354 }; 3355 }; 3356 - "uri-js-4.2.2" = { 3357 name = "uri-js"; 3358 packageName = "uri-js"; 3359 - version = "4.2.2"; 3360 src = fetchurl { 3361 - url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz"; 3362 - sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ=="; 3363 }; 3364 }; 3365 "util-deprecate-1.0.2" = { ··· 3389 sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="; 3390 }; 3391 }; 3392 - "uuid-7.0.2" = { 3393 name = "uuid"; 3394 packageName = "uuid"; 3395 - version = "7.0.2"; 3396 src = fetchurl { 3397 - url = "https://registry.npmjs.org/uuid/-/uuid-7.0.2.tgz"; 3398 - sha512 = "vy9V/+pKG+5ZTYKf+VcphF5Oc6EFiu3W8Nv3P3zIh0EqVI80ZxOzuPfe9EHjkFNvf8+xuTHVeei4Drydlx4zjw=="; 3399 }; 3400 }; 3401 "vary-1.1.2" = { ··· 3416 sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; 3417 }; 3418 }; 3419 - "which-1.3.1" = { 3420 name = "which"; 3421 packageName = "which"; 3422 - version = "1.3.1"; 3423 src = fetchurl { 3424 - url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz"; 3425 - sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="; 3426 }; 3427 }; 3428 "which-module-2.0.0" = { ··· 3443 sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA=="; 3444 }; 3445 }; 3446 - "winston-3.2.1" = { 3447 name = "winston"; 3448 packageName = "winston"; 3449 - version = "3.2.1"; 3450 src = fetchurl { 3451 - url = "https://registry.npmjs.org/winston/-/winston-3.2.1.tgz"; 3452 - sha512 = "zU6vgnS9dAWCEKg/QYigd6cgMVVNwyTzKs81XZtTFuRwJOcDdBg7AU0mXVyNbs7O5RH2zdv+BdNZUlx7mXPuOw=="; 3453 }; 3454 }; 3455 - "winston-compat-0.1.4" = { 3456 - name = "winston-compat"; 3457 - packageName = "winston-compat"; 3458 - version = "0.1.4"; 3459 - src = fetchurl { 3460 - url = "https://registry.npmjs.org/winston-compat/-/winston-compat-0.1.4.tgz"; 3461 - sha512 = "mMEfFsSm6GmkFF+f4/0UJtG4N1vSaczGmXLVJYmS/+u2zUaIPcw2ZRuwUg2TvVBjswgiraN+vNnAG8z4fRUZ4w=="; 3462 - }; 3463 - }; 3464 - "winston-daily-rotate-file-3.9.0" = { 3465 name = "winston-daily-rotate-file"; 3466 packageName = "winston-daily-rotate-file"; 3467 - version = "3.9.0"; 3468 src = fetchurl { 3469 - url = "https://registry.npmjs.org/winston-daily-rotate-file/-/winston-daily-rotate-file-3.9.0.tgz"; 3470 - sha512 = "KicvoaLQapqjSDSCIUKik0dDb90vFkqx1/udUiAt6iOqAtBl2qBCrpSDNy3xp7WnT6xHCKAWEEp2XILtiN+zpQ=="; 3471 }; 3472 }; 3473 "winston-transport-4.3.0" = { ··· 3479 sha512 = "B2wPuwUi3vhzn/51Uukcao4dIduEiPOcOt9HJ3QeaXgkJ5Z7UwpBzxS4ZGNHtrxrUvTwemsQiSys0ihOf8Mp1A=="; 3480 }; 3481 }; 3482 "wrap-ansi-5.1.0" = { 3483 name = "wrap-ansi"; 3484 packageName = "wrap-ansi"; ··· 3488 sha512 = "QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q=="; 3489 }; 3490 }; 3491 "wrappy-1.0.2" = { 3492 name = "wrappy"; 3493 packageName = "wrappy"; ··· 3506 sha512 = "jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA=="; 3507 }; 3508 }; 3509 - "xtend-4.0.1" = { 3510 name = "xtend"; 3511 packageName = "xtend"; 3512 version = "4.0.1"; 3513 src = fetchurl { 3514 - url = "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz"; 3515 - sha1 = "a5c6d532be656e23db820efb943a1f04998d63af"; 3516 }; 3517 }; 3518 - "y18n-4.0.0" = { 3519 name = "y18n"; 3520 packageName = "y18n"; 3521 - version = "4.0.0"; 3522 src = fetchurl { 3523 - url = "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz"; 3524 - sha512 = "r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w=="; 3525 }; 3526 }; 3527 - "yargs-13.2.4" = { 3528 - name = "yargs"; 3529 - packageName = "yargs"; 3530 - version = "13.2.4"; 3531 src = fetchurl { 3532 - url = "https://registry.npmjs.org/yargs/-/yargs-13.2.4.tgz"; 3533 - sha512 = "HG/DWAJa1PAnHT9JAhNa8AbAv3FPaiLzioSjCcmuXXhP8MlpHO5vwls4g4j6n30Z74GVQj8Xa62dWVx1QCGklg=="; 3534 }; 3535 }; 3536 "yargs-13.3.2" = { ··· 3542 sha512 = "AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw=="; 3543 }; 3544 }; 3545 - "yargs-parser-13.1.1" = { 3546 - name = "yargs-parser"; 3547 - packageName = "yargs-parser"; 3548 - version = "13.1.1"; 3549 src = fetchurl { 3550 - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.1.tgz"; 3551 - sha512 = "oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ=="; 3552 }; 3553 }; 3554 "yargs-parser-13.1.2" = { ··· 3560 sha512 = "3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg=="; 3561 }; 3562 }; 3563 - "yargs-unparser-1.6.0" = { 3564 name = "yargs-unparser"; 3565 packageName = "yargs-unparser"; 3566 - version = "1.6.0"; 3567 src = fetchurl { 3568 - url = "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.6.0.tgz"; 3569 - sha512 = "W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw=="; 3570 }; 3571 }; 3572 "yn-3.1.1" = { ··· 3576 src = fetchurl { 3577 url = "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz"; 3578 sha512 = "Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q=="; 3579 }; 3580 }; 3581 }; 3582 args = { 3583 name = "matrix-appservice-slack"; 3584 packageName = "matrix-appservice-slack"; 3585 - version = "1.4.0"; 3586 src = ./.; 3587 dependencies = [ 3588 - sources."@babel/code-frame-7.8.3" 3589 - sources."@babel/helper-validator-identifier-7.9.0" 3590 - sources."@babel/highlight-7.9.0" 3591 - sources."@slack/logger-1.1.0" 3592 - (sources."@slack/rtm-api-5.0.3" // { 3593 dependencies = [ 3594 sources."p-queue-2.4.2" 3595 ]; 3596 }) 3597 - sources."@slack/types-1.5.0" 3598 - (sources."@slack/web-api-5.8.0" // { 3599 dependencies = [ 3600 - sources."form-data-2.5.1" 3601 - sources."p-queue-2.4.2" 3602 ]; 3603 }) 3604 sources."@types/body-parser-1.19.0" 3605 - sources."@types/caseless-0.12.2" 3606 - sources."@types/chai-4.2.11" 3607 - sources."@types/connect-3.4.33" 3608 - sources."@types/events-3.0.0" 3609 - sources."@types/express-4.17.3" 3610 - sources."@types/express-serve-static-core-4.17.3" 3611 sources."@types/is-stream-1.1.0" 3612 - sources."@types/mime-2.0.1" 3613 - sources."@types/mocha-7.0.2" 3614 - sources."@types/nedb-1.8.9" 3615 - sources."@types/node-13.9.3" 3616 sources."@types/node-emoji-1.8.1" 3617 sources."@types/nunjucks-3.1.3" 3618 sources."@types/p-queue-2.3.2" 3619 sources."@types/randomstring-1.1.6" 3620 sources."@types/range-parser-1.2.3" 3621 - (sources."@types/request-2.48.4" // { 3622 dependencies = [ 3623 - sources."form-data-2.5.1" 3624 ]; 3625 }) 3626 - sources."@types/request-promise-native-1.0.17" 3627 - sources."@types/retry-0.12.0" 3628 - sources."@types/serve-static-1.13.3" 3629 - sources."@types/tough-cookie-2.3.6" 3630 - sources."@types/uuid-7.0.2" 3631 - sources."@types/ws-5.1.2" 3632 - sources."@types/yargs-13.0.0" 3633 - sources."@types/yargs-parser-13.0.0" 3634 sources."Slackdown-git://github.com/half-shot/slackdown#efd8934a3d9c3bf0064c0b217c5cf6b62ee697e4" 3635 sources."a-sync-waterfall-1.0.1" 3636 sources."abbrev-1.1.1" 3637 sources."accepts-1.3.7" 3638 - sources."ajv-6.10.2" 3639 sources."another-json-0.2.0" 3640 - sources."ansi-colors-3.2.3" 3641 - sources."ansi-regex-4.1.0" 3642 sources."ansi-styles-3.2.1" 3643 sources."anymatch-3.1.1" 3644 sources."arg-4.1.3" 3645 sources."argparse-1.0.10" 3646 sources."array-flatten-1.1.1" 3647 sources."array-uniq-1.0.2" 3648 sources."asap-2.0.6" 3649 sources."asn1-0.2.4" 3650 - sources."assert-options-0.6.2" 3651 sources."assert-plus-1.0.0" 3652 sources."assertion-error-1.1.0" 3653 sources."async-0.2.10" 3654 sources."async-limiter-1.0.1" 3655 sources."asynckit-0.4.0" 3656 sources."aws-sign2-0.7.0" 3657 - sources."aws4-1.9.0" 3658 - sources."axios-0.19.2" 3659 - sources."babel-runtime-6.26.0" 3660 sources."balanced-match-1.0.0" 3661 sources."base-x-3.0.8" 3662 sources."basic-auth-2.0.1" 3663 sources."bcrypt-pbkdf-1.0.2" 3664 - sources."binary-extensions-2.0.0" 3665 sources."binary-search-tree-0.2.5" 3666 sources."bintrees-1.0.1" 3667 - sources."bluebird-2.11.0" 3668 sources."body-parser-1.19.0" 3669 sources."brace-expansion-1.1.11" 3670 sources."braces-3.0.2" ··· 3673 sources."bs58-4.0.1" 3674 sources."buffer-from-1.1.1" 3675 sources."buffer-writer-2.0.0" 3676 - sources."builtin-modules-1.1.1" 3677 sources."bytes-3.1.0" 3678 sources."camelcase-5.3.1" 3679 sources."caseless-0.12.0" 3680 sources."chai-4.2.0" 3681 - (sources."chalk-2.4.2" // { 3682 dependencies = [ 3683 - sources."escape-string-regexp-1.0.5" 3684 ]; 3685 }) 3686 sources."check-error-1.0.2" 3687 - sources."chokidar-3.3.0" 3688 - sources."cliui-5.0.0" 3689 sources."color-3.0.0" 3690 sources."color-convert-1.9.3" 3691 sources."color-name-1.1.3" 3692 sources."color-string-1.5.3" 3693 - sources."colornames-1.1.1" 3694 sources."colors-1.3.3" 3695 sources."colorspace-1.1.2" 3696 sources."combined-stream-1.0.8" 3697 - sources."commander-2.20.3" 3698 sources."concat-map-0.0.1" 3699 sources."content-disposition-0.5.3" 3700 sources."content-type-1.0.4" 3701 sources."cookie-0.4.0" 3702 sources."cookie-signature-1.0.6" 3703 - sources."core-js-2.6.11" 3704 sources."core-util-is-1.0.2" 3705 - sources."cross-spawn-6.0.5" 3706 - sources."cycle-1.0.3" 3707 sources."dashdash-1.14.1" 3708 sources."debug-2.6.9" 3709 sources."decamelize-1.2.0" 3710 sources."deep-eql-3.0.1" 3711 - sources."define-properties-1.1.3" 3712 sources."delayed-stream-1.0.0" 3713 sources."depd-1.1.2" 3714 sources."destroy-1.0.4" 3715 - sources."diagnostics-1.1.1" 3716 - sources."diff-3.5.0" 3717 sources."ecc-jsbn-0.1.2" 3718 sources."ee-first-1.1.1" 3719 - sources."emoji-regex-7.0.3" 3720 - sources."enabled-1.0.2" 3721 sources."encodeurl-1.0.2" 3722 - sources."end-of-stream-1.4.1" 3723 - sources."env-variable-0.0.5" 3724 - sources."es-abstract-1.17.5" 3725 - sources."es-to-primitive-1.2.1" 3726 sources."escape-html-1.0.3" 3727 - sources."escape-string-regexp-2.0.0" 3728 sources."esprima-4.0.1" 3729 sources."etag-1.8.1" 3730 sources."eventemitter3-3.1.2" 3731 - sources."execa-1.0.0" 3732 sources."express-4.17.1" 3733 sources."extend-3.0.2" 3734 sources."extsprintf-1.3.0" 3735 - sources."fast-deep-equal-2.0.1" 3736 - sources."fast-json-stable-stringify-2.0.0" 3737 sources."fast-safe-stringify-2.0.6" 3738 - sources."fecha-2.3.3" 3739 - sources."file-stream-rotator-0.4.1" 3740 sources."fill-range-7.0.1" 3741 sources."finalhandler-1.1.2" 3742 - sources."find-up-3.0.0" 3743 sources."finity-0.5.4" 3744 - sources."flat-4.1.0" 3745 - (sources."follow-redirects-1.5.10" // { 3746 - dependencies = [ 3747 - sources."debug-3.1.0" 3748 - ]; 3749 - }) 3750 sources."forever-agent-0.6.1" 3751 - sources."form-data-2.3.3" 3752 sources."forwarded-0.1.2" 3753 sources."fresh-0.5.2" 3754 sources."fs.realpath-1.0.0" 3755 - sources."fsevents-2.1.2" 3756 - sources."function-bind-1.1.1" 3757 sources."generate-function-2.3.1" 3758 sources."generate-object-property-1.2.0" 3759 sources."get-caller-file-2.0.5" 3760 sources."get-func-name-2.0.0" 3761 - sources."get-stream-4.1.0" 3762 sources."getpass-0.1.7" 3763 - sources."glob-7.1.3" 3764 sources."glob-parent-5.1.1" 3765 sources."growl-1.10.5" 3766 sources."har-schema-2.0.0" 3767 - sources."har-validator-5.1.3" 3768 - sources."has-1.0.3" 3769 sources."has-flag-3.0.0" 3770 - sources."has-symbols-1.0.1" 3771 sources."he-1.2.0" 3772 sources."http-errors-1.7.2" 3773 sources."http-signature-1.2.0" 3774 sources."iconv-lite-0.4.24" 3775 sources."immediate-3.0.6" 3776 sources."inflight-1.0.6" 3777 sources."inherits-2.0.3" 3778 - sources."invert-kv-2.0.0" 3779 - sources."ipaddr.js-1.9.0" 3780 sources."is-arrayish-0.3.2" 3781 sources."is-binary-path-2.1.0" 3782 - sources."is-buffer-2.0.4" 3783 - sources."is-callable-1.1.5" 3784 - sources."is-date-object-1.0.2" 3785 sources."is-extglob-2.1.1" 3786 - sources."is-fullwidth-code-point-2.0.0" 3787 sources."is-glob-4.0.1" 3788 sources."is-my-ip-valid-1.0.0" 3789 - sources."is-my-json-valid-2.20.0" 3790 sources."is-number-7.0.0" 3791 sources."is-property-1.0.2" 3792 - sources."is-regex-1.0.5" 3793 sources."is-stream-1.1.0" 3794 - sources."is-symbol-1.0.3" 3795 sources."is-typedarray-1.0.0" 3796 sources."isarray-1.0.0" 3797 sources."isexe-2.0.0" 3798 sources."isstream-0.1.2" 3799 sources."js-tokens-4.0.0" 3800 - sources."js-yaml-3.13.1" 3801 sources."jsbn-0.1.1" 3802 sources."json-schema-0.2.3" 3803 sources."json-schema-traverse-0.4.1" 3804 sources."json-stringify-safe-5.0.1" 3805 - sources."jsonpointer-4.0.1" 3806 sources."jsprim-1.4.1" 3807 - sources."kuler-1.0.1" 3808 - sources."lcid-2.0.0" 3809 sources."lie-3.1.1" 3810 sources."localforage-1.7.3" 3811 - sources."locate-path-3.0.0" 3812 - sources."lodash-4.17.15" 3813 sources."lodash.toarray-4.4.0" 3814 - sources."log-symbols-3.0.0" 3815 - (sources."logform-2.1.2" // { 3816 dependencies = [ 3817 sources."ms-2.1.2" 3818 ]; 3819 }) 3820 - sources."loglevel-1.6.8" 3821 sources."make-error-1.3.6" 3822 - sources."map-age-cleaner-0.1.3" 3823 - sources."matrix-appservice-0.4.1" 3824 - sources."matrix-appservice-bridge-1.12.2" 3825 - (sources."matrix-js-sdk-2.4.6" // { 3826 dependencies = [ 3827 - sources."bluebird-3.5.5" 3828 ]; 3829 }) 3830 sources."media-typer-0.3.0" 3831 - sources."mem-4.3.0" 3832 sources."merge-descriptors-1.0.1" 3833 sources."methods-1.1.2" 3834 sources."mime-1.6.0" 3835 sources."mime-db-1.40.0" 3836 sources."mime-types-2.1.24" 3837 - sources."mimic-fn-2.1.0" 3838 sources."minimatch-3.0.4" 3839 sources."minimist-1.2.5" 3840 sources."mkdirp-0.5.5" 3841 - (sources."mocha-7.1.1" // { 3842 dependencies = [ 3843 - sources."debug-3.2.6" 3844 - sources."escape-string-regexp-1.0.5" 3845 - sources."minimist-1.2.5" 3846 - sources."mkdirp-0.5.3" 3847 - sources."ms-2.1.1" 3848 - sources."supports-color-6.0.0" 3849 - sources."yargs-13.3.2" 3850 - sources."yargs-parser-13.1.2" 3851 ]; 3852 }) 3853 sources."moment-2.24.0" 3854 - sources."morgan-1.9.1" 3855 sources."ms-2.0.0" 3856 sources."nedb-1.8.0" 3857 sources."negotiator-0.6.2" 3858 - sources."nice-try-1.0.5" 3859 sources."node-emoji-1.10.0" 3860 - sources."node-environment-flags-1.0.6" 3861 - sources."nopt-3.0.6" 3862 sources."normalize-path-3.0.0" 3863 - sources."npm-run-path-2.0.2" 3864 - (sources."nunjucks-3.2.1" // { 3865 dependencies = [ 3866 - sources."commander-3.0.2" 3867 ]; 3868 }) 3869 sources."oauth-sign-0.9.0" 3870 - sources."object-hash-1.3.1" 3871 - sources."object-inspect-1.7.0" 3872 - sources."object-keys-1.1.1" 3873 - sources."object.assign-4.1.0" 3874 - sources."object.getownpropertydescriptors-2.1.0" 3875 sources."on-finished-2.3.0" 3876 sources."on-headers-1.0.2" 3877 sources."once-1.4.0" 3878 - sources."one-time-0.0.4" 3879 - sources."os-locale-3.1.0" 3880 sources."p-cancelable-1.1.0" 3881 - sources."p-defer-1.0.0" 3882 sources."p-finally-1.0.0" 3883 - sources."p-is-promise-2.1.0" 3884 - sources."p-limit-2.2.0" 3885 - sources."p-locate-3.0.0" 3886 - (sources."p-queue-6.3.0" // { 3887 dependencies = [ 3888 - sources."eventemitter3-4.0.0" 3889 ]; 3890 }) 3891 sources."p-retry-4.2.0" 3892 sources."p-timeout-3.2.0" 3893 sources."p-try-2.2.0" 3894 sources."packet-reader-1.0.0" 3895 sources."parseurl-1.3.3" 3896 - sources."path-exists-3.0.0" 3897 sources."path-is-absolute-1.0.1" 3898 - sources."path-key-2.0.1" 3899 - sources."path-parse-1.0.6" 3900 sources."path-to-regexp-0.1.7" 3901 sources."pathval-1.1.0" 3902 sources."performance-now-2.1.0" 3903 - (sources."pg-8.1.0" // { 3904 - dependencies = [ 3905 - sources."semver-4.3.2" 3906 - ]; 3907 - }) 3908 - sources."pg-connection-string-2.2.2" 3909 sources."pg-int8-1.0.1" 3910 - sources."pg-minify-1.6.0" 3911 - sources."pg-pool-3.2.0" 3912 - sources."pg-promise-10.5.5" 3913 - sources."pg-protocol-1.2.3" 3914 sources."pg-types-2.2.0" 3915 - sources."pgpass-1.0.2" 3916 sources."picomatch-2.2.2" 3917 sources."postgres-array-2.0.0" 3918 sources."postgres-bytea-1.0.0" 3919 - sources."postgres-date-1.0.5" 3920 sources."postgres-interval-1.2.0" 3921 sources."process-nextick-args-2.0.1" 3922 - sources."prom-client-11.5.3" 3923 - sources."proxy-addr-2.0.5" 3924 - sources."psl-1.1.33" 3925 - sources."pump-3.0.0" 3926 sources."punycode-2.1.1" 3927 sources."qs-6.7.0" 3928 - sources."quick-lru-5.0.0" 3929 sources."randomstring-1.1.5" 3930 sources."range-parser-1.2.1" 3931 sources."raw-body-2.4.0" 3932 - sources."readable-stream-3.4.0" 3933 - sources."readdirp-3.2.0" 3934 - sources."regenerator-runtime-0.11.1" 3935 - (sources."request-2.88.0" // { 3936 dependencies = [ 3937 sources."qs-6.5.2" 3938 sources."uuid-3.4.0" 3939 ]; 3940 }) 3941 - sources."request-promise-core-1.1.3" 3942 - sources."request-promise-native-1.0.8" 3943 sources."require-directory-2.1.1" 3944 sources."require-main-filename-2.0.0" 3945 - sources."resolve-1.15.1" 3946 sources."retry-0.12.0" 3947 sources."safe-buffer-5.1.2" 3948 sources."safer-buffer-2.1.2" 3949 - sources."semver-5.7.0" 3950 (sources."send-0.17.1" // { 3951 dependencies = [ 3952 sources."ms-2.1.1" 3953 ]; 3954 }) 3955 sources."serve-static-1.14.1" 3956 sources."set-blocking-2.0.0" 3957 sources."setprototypeof-1.1.1" 3958 - sources."shebang-command-1.2.0" 3959 - sources."shebang-regex-1.0.0" 3960 - sources."signal-exit-3.0.2" 3961 sources."simple-swizzle-0.2.2" 3962 sources."source-map-0.6.1" 3963 - sources."source-map-support-0.5.16" 3964 - sources."spex-3.0.1" 3965 - sources."split-1.0.1" 3966 sources."sprintf-js-1.0.3" 3967 sources."sshpk-1.16.1" 3968 sources."stack-trace-0.0.10" 3969 sources."statuses-1.5.0" 3970 - sources."stealthy-require-1.1.1" 3971 - sources."string-width-3.1.0" 3972 - sources."string.prototype.trimleft-2.1.1" 3973 - sources."string.prototype.trimright-2.1.1" 3974 - sources."string_decoder-1.2.0" 3975 - sources."strip-ansi-5.2.0" 3976 - sources."strip-eof-1.0.0" 3977 - sources."strip-json-comments-2.0.1" 3978 sources."supports-color-5.5.0" 3979 sources."tdigest-0.1.1" 3980 sources."text-hex-1.0.0" 3981 - sources."through-2.3.8" 3982 sources."to-regex-range-5.0.1" 3983 sources."toidentifier-1.0.0" 3984 - (sources."tough-cookie-2.4.3" // { 3985 - dependencies = [ 3986 - sources."punycode-1.4.1" 3987 - ]; 3988 - }) 3989 sources."triple-beam-1.3.0" 3990 - (sources."ts-node-8.8.1" // { 3991 - dependencies = [ 3992 - sources."diff-4.0.2" 3993 - ]; 3994 - }) 3995 - sources."tslib-1.11.1" 3996 - (sources."tslint-6.1.0" // { 3997 - dependencies = [ 3998 - sources."diff-4.0.2" 3999 - ]; 4000 - }) 4001 - sources."tsutils-2.29.0" 4002 sources."tunnel-agent-0.6.0" 4003 sources."tweetnacl-0.14.5" 4004 sources."type-detect-4.0.8" 4005 sources."type-is-1.6.18" 4006 - sources."typescript-3.8.3" 4007 sources."underscore-1.4.4" 4008 - sources."unhomoglyph-1.0.5" 4009 sources."unpipe-1.0.0" 4010 - sources."uri-js-4.2.2" 4011 sources."util-deprecate-1.0.2" 4012 sources."utils-merge-1.0.1" 4013 - sources."uuid-7.0.2" 4014 sources."vary-1.1.2" 4015 sources."verror-1.10.0" 4016 - sources."which-1.3.1" 4017 sources."which-module-2.0.0" 4018 (sources."wide-align-1.1.3" // { 4019 dependencies = [ 4020 sources."ansi-regex-3.0.0" 4021 sources."string-width-2.1.1" 4022 sources."strip-ansi-4.0.0" 4023 ]; 4024 }) 4025 - (sources."winston-3.2.1" // { 4026 dependencies = [ 4027 - sources."async-2.6.2" 4028 ]; 4029 }) 4030 - (sources."winston-compat-0.1.4" // { 4031 dependencies = [ 4032 - sources."logform-1.10.0" 4033 - sources."ms-2.1.2" 4034 ]; 4035 }) 4036 - sources."winston-daily-rotate-file-3.9.0" 4037 - (sources."winston-transport-4.3.0" // { 4038 dependencies = [ 4039 - sources."readable-stream-2.3.6" 4040 - sources."string_decoder-1.1.1" 4041 ]; 4042 }) 4043 - sources."wrap-ansi-5.1.0" 4044 sources."wrappy-1.0.2" 4045 sources."ws-5.2.2" 4046 - sources."xtend-4.0.1" 4047 - sources."y18n-4.0.0" 4048 - sources."yargs-13.2.4" 4049 - sources."yargs-parser-13.1.1" 4050 - (sources."yargs-unparser-1.6.0" // { 4051 dependencies = [ 4052 - sources."yargs-13.3.2" 4053 - sources."yargs-parser-13.1.2" 4054 ]; 4055 }) 4056 sources."yn-3.1.1" 4057 ]; 4058 buildInputs = globalBuildInputs; 4059 meta = {
··· 4 5 let 6 sources = { 7 + "@babel/code-frame-7.12.11" = { 8 name = "_at_babel_slash_code-frame"; 9 packageName = "@babel/code-frame"; 10 + version = "7.12.11"; 11 src = fetchurl { 12 + url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz"; 13 + sha512 = "Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw=="; 14 }; 15 }; 16 + "@babel/helper-validator-identifier-7.12.11" = { 17 name = "_at_babel_slash_helper-validator-identifier"; 18 packageName = "@babel/helper-validator-identifier"; 19 + version = "7.12.11"; 20 src = fetchurl { 21 + url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz"; 22 + sha512 = "np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw=="; 23 }; 24 }; 25 + "@babel/highlight-7.10.4" = { 26 name = "_at_babel_slash_highlight"; 27 packageName = "@babel/highlight"; 28 + version = "7.10.4"; 29 + src = fetchurl { 30 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz"; 31 + sha512 = "i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA=="; 32 + }; 33 + }; 34 + "@babel/runtime-7.12.13" = { 35 + name = "_at_babel_slash_runtime"; 36 + packageName = "@babel/runtime"; 37 + version = "7.12.13"; 38 + src = fetchurl { 39 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.13.tgz"; 40 + sha512 = "8+3UMPBrjFa/6TtKi/7sehPKqfAm4g6K+YQjyyFOLUTxzOngcRZTlAVY8sc2CORJYqdHQY8gRPHmn+qo15rCBw=="; 41 + }; 42 + }; 43 + "@dabh/diagnostics-2.0.2" = { 44 + name = "_at_dabh_slash_diagnostics"; 45 + packageName = "@dabh/diagnostics"; 46 + version = "2.0.2"; 47 src = fetchurl { 48 + url = "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.2.tgz"; 49 + sha512 = "+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q=="; 50 }; 51 }; 52 + "@eslint/eslintrc-0.2.2" = { 53 + name = "_at_eslint_slash_eslintrc"; 54 + packageName = "@eslint/eslintrc"; 55 + version = "0.2.2"; 56 + src = fetchurl { 57 + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.2.tgz"; 58 + sha512 = "EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ=="; 59 + }; 60 + }; 61 + "@nodelib/fs.scandir-2.1.4" = { 62 + name = "_at_nodelib_slash_fs.scandir"; 63 + packageName = "@nodelib/fs.scandir"; 64 + version = "2.1.4"; 65 + src = fetchurl { 66 + url = "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz"; 67 + sha512 = "33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA=="; 68 + }; 69 + }; 70 + "@nodelib/fs.stat-2.0.4" = { 71 + name = "_at_nodelib_slash_fs.stat"; 72 + packageName = "@nodelib/fs.stat"; 73 + version = "2.0.4"; 74 + src = fetchurl { 75 + url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz"; 76 + sha512 = "IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q=="; 77 + }; 78 + }; 79 + "@nodelib/fs.walk-1.2.6" = { 80 + name = "_at_nodelib_slash_fs.walk"; 81 + packageName = "@nodelib/fs.walk"; 82 + version = "1.2.6"; 83 + src = fetchurl { 84 + url = "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz"; 85 + sha512 = "8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow=="; 86 + }; 87 + }; 88 + "@slack/logger-2.0.0" = { 89 name = "_at_slack_slash_logger"; 90 packageName = "@slack/logger"; 91 + version = "2.0.0"; 92 src = fetchurl { 93 + url = "https://registry.npmjs.org/@slack/logger/-/logger-2.0.0.tgz"; 94 + sha512 = "OkIJpiU2fz6HOJujhlhfIGrc8hB4ibqtf7nnbJQDerG0BqwZCfmgtK5sWzZ0TkXVRBKD5MpLrTmCYyMxoMCgPw=="; 95 }; 96 }; 97 + "@slack/rtm-api-5.0.5" = { 98 name = "_at_slack_slash_rtm-api"; 99 packageName = "@slack/rtm-api"; 100 + version = "5.0.5"; 101 src = fetchurl { 102 + url = "https://registry.npmjs.org/@slack/rtm-api/-/rtm-api-5.0.5.tgz"; 103 + sha512 = "x2B4hyoxjg62cxf4M5QRomx+xYp2XoajPKdd24SM2Sl4m+IrzwKzmcrysQuYmF6BMsm3IoTKymW5BBGckHGTIw=="; 104 }; 105 }; 106 + "@slack/types-1.10.0" = { 107 name = "_at_slack_slash_types"; 108 packageName = "@slack/types"; 109 + version = "1.10.0"; 110 src = fetchurl { 111 + url = "https://registry.npmjs.org/@slack/types/-/types-1.10.0.tgz"; 112 + sha512 = "tA7GG7Tj479vojfV3AoxbckalA48aK6giGjNtgH6ihpLwTyHE3fIgRrvt8TWfLwW8X8dyu7vgmAsGLRG7hWWOg=="; 113 }; 114 }; 115 + "@slack/web-api-5.15.0" = { 116 name = "_at_slack_slash_web-api"; 117 packageName = "@slack/web-api"; 118 + version = "5.15.0"; 119 src = fetchurl { 120 + url = "https://registry.npmjs.org/@slack/web-api/-/web-api-5.15.0.tgz"; 121 + sha512 = "tjQ8Zqv/Fmj9SOL9yIEd7IpTiKfKHi9DKAkfRVeotoX0clMr3SqQtBqO+KZMX27gm7dmgJsQaDKlILyzdCO+IA=="; 122 }; 123 }; 124 "@types/body-parser-1.19.0" = { ··· 130 sha512 = "W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ=="; 131 }; 132 }; 133 + "@types/chai-4.2.14" = { 134 name = "_at_types_slash_chai"; 135 packageName = "@types/chai"; 136 + version = "4.2.14"; 137 src = fetchurl { 138 + url = "https://registry.npmjs.org/@types/chai/-/chai-4.2.14.tgz"; 139 + sha512 = "G+ITQPXkwTrslfG5L/BksmbLUA0M1iybEsmCWPqzSxsRRhJZimBKJkoMi8fr/CPygPTj4zO5pJH7I2/cm9M7SQ=="; 140 }; 141 }; 142 + "@types/connect-3.4.34" = { 143 name = "_at_types_slash_connect"; 144 packageName = "@types/connect"; 145 + version = "3.4.34"; 146 src = fetchurl { 147 + url = "https://registry.npmjs.org/@types/connect/-/connect-3.4.34.tgz"; 148 + sha512 = "ePPA/JuI+X0vb+gSWlPKOY0NdNAie/rPUqX2GUPpbZwiKTkSPhjXWuee47E4MtE54QVzGCQMQkAL6JhV2E1+cQ=="; 149 }; 150 }; 151 + "@types/express-4.17.10" = { 152 name = "_at_types_slash_express"; 153 packageName = "@types/express"; 154 + version = "4.17.10"; 155 src = fetchurl { 156 + url = "https://registry.npmjs.org/@types/express/-/express-4.17.10.tgz"; 157 + sha512 = "GRwKdE+iV6mA8glCvQ7W5iaoIhd6u1HDsNTF76UPRi7T89SLjOfeCLShVmQSgpXzcpf3zgcz2SbMiCcjnYRRxQ=="; 158 }; 159 }; 160 + "@types/express-serve-static-core-4.17.18" = { 161 name = "_at_types_slash_express-serve-static-core"; 162 packageName = "@types/express-serve-static-core"; 163 + version = "4.17.18"; 164 src = fetchurl { 165 + url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.18.tgz"; 166 + sha512 = "m4JTwx5RUBNZvky/JJ8swEJPKFd8si08pPF2PfizYjGZOKr/svUWPcoUmLow6MmPzhasphB7gSTINY67xn3JNA=="; 167 }; 168 }; 169 "@types/is-stream-1.1.0" = { ··· 175 sha512 = "jkZatu4QVbR60mpIzjINmtS1ZF4a/FqdTUTBeQDVOQ2PYyidtwFKr0B5G6ERukKwliq+7mIXvxyppwzG5EgRYg=="; 176 }; 177 }; 178 + "@types/json-schema-7.0.6" = { 179 + name = "_at_types_slash_json-schema"; 180 + packageName = "@types/json-schema"; 181 + version = "7.0.6"; 182 + src = fetchurl { 183 + url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz"; 184 + sha512 = "3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw=="; 185 + }; 186 + }; 187 + "@types/mime-2.0.3" = { 188 name = "_at_types_slash_mime"; 189 packageName = "@types/mime"; 190 + version = "2.0.3"; 191 src = fetchurl { 192 + url = "https://registry.npmjs.org/@types/mime/-/mime-2.0.3.tgz"; 193 + sha512 = "Jus9s4CDbqwocc5pOAnh8ShfrnMcPHuJYzVcSUU7lrh8Ni5HuIqX3oilL86p3dlTrk0LzHRCgA/GQ7uNCw6l2Q=="; 194 }; 195 }; 196 + "@types/mocha-8.2.0" = { 197 name = "_at_types_slash_mocha"; 198 packageName = "@types/mocha"; 199 + version = "8.2.0"; 200 src = fetchurl { 201 + url = "https://registry.npmjs.org/@types/mocha/-/mocha-8.2.0.tgz"; 202 + sha512 = "/Sge3BymXo4lKc31C8OINJgXLaw+7vL1/L1pGiBNpGrBiT8FQiaFpSYV0uhTaG4y78vcMBTMFsWaHDvuD+xGzQ=="; 203 }; 204 }; 205 + "@types/nedb-1.8.11" = { 206 name = "_at_types_slash_nedb"; 207 packageName = "@types/nedb"; 208 + version = "1.8.11"; 209 src = fetchurl { 210 + url = "https://registry.npmjs.org/@types/nedb/-/nedb-1.8.11.tgz"; 211 + sha512 = "qHQRLZ0e6l/XK/2Qb2v5N1ujmdttYkUvnRI4nPIifMy6vYwoAnER10xhX13isWjjQtNsrjNLinZgDDguzPmEKw=="; 212 }; 213 }; 214 + "@types/node-14.14.20" = { 215 name = "_at_types_slash_node"; 216 packageName = "@types/node"; 217 + version = "14.14.20"; 218 src = fetchurl { 219 + url = "https://registry.npmjs.org/@types/node/-/node-14.14.20.tgz"; 220 + sha512 = "Y93R97Ouif9JEOWPIUyU+eyIdyRqQR0I8Ez1dzku4hDx34NWh4HbtIc3WNzwB1Y9ULvNGeu5B8h8bVL5cAk4/A=="; 221 }; 222 }; 223 "@types/node-emoji-1.8.1" = { ··· 247 sha512 = "eKAv5Ql6k78dh3ULCsSBxX6bFNuGjTmof5Q/T6PiECDq0Yf8IIn46jCyp3RJvCi8owaEmm3DZH1PEImjBMd/vQ=="; 248 }; 249 }; 250 + "@types/qs-6.9.5" = { 251 + name = "_at_types_slash_qs"; 252 + packageName = "@types/qs"; 253 + version = "6.9.5"; 254 + src = fetchurl { 255 + url = "https://registry.npmjs.org/@types/qs/-/qs-6.9.5.tgz"; 256 + sha512 = "/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ=="; 257 + }; 258 + }; 259 "@types/randomstring-1.1.6" = { 260 name = "_at_types_slash_randomstring"; 261 packageName = "@types/randomstring"; ··· 274 sha512 = "ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA=="; 275 }; 276 }; 277 "@types/retry-0.12.0" = { 278 name = "_at_types_slash_retry"; 279 packageName = "@types/retry"; ··· 283 sha512 = "wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA=="; 284 }; 285 }; 286 + "@types/serve-static-1.13.8" = { 287 name = "_at_types_slash_serve-static"; 288 packageName = "@types/serve-static"; 289 + version = "1.13.8"; 290 src = fetchurl { 291 + url = "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.8.tgz"; 292 + sha512 = "MoJhSQreaVoL+/hurAZzIm8wafFR6ajiTM1m4A0kv6AGeVBl4r4pOV8bGFrjjq1sGxDTnCoF8i22o0/aE5XCyA=="; 293 }; 294 }; 295 + "@types/uuid-8.3.0" = { 296 name = "_at_types_slash_uuid"; 297 packageName = "@types/uuid"; 298 + version = "8.3.0"; 299 src = fetchurl { 300 + url = "https://registry.npmjs.org/@types/uuid/-/uuid-8.3.0.tgz"; 301 + sha512 = "eQ9qFW/fhfGJF8WKHGEHZEyVWfZxrT+6CLIJGBcZPfxUh/+BnEj+UCGYMlr9qZuX/2AltsvwrGqp0LhEW8D0zQ=="; 302 }; 303 }; 304 + "@types/ws-7.2.6" = { 305 name = "_at_types_slash_ws"; 306 packageName = "@types/ws"; 307 + version = "7.2.6"; 308 src = fetchurl { 309 + url = "https://registry.npmjs.org/@types/ws/-/ws-7.2.6.tgz"; 310 + sha512 = "Q07IrQUSNpr+cXU4E4LtkSIBPie5GLZyyMC1QtQYRLWz701+XcoVygGUZgvLqElq1nU4ICldMYPnexlBsg3dqQ=="; 311 }; 312 }; 313 + "@types/yargs-15.0.12" = { 314 name = "_at_types_slash_yargs"; 315 packageName = "@types/yargs"; 316 + version = "15.0.12"; 317 src = fetchurl { 318 + url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.12.tgz"; 319 + sha512 = "f+fD/fQAo3BCbCDlrUpznF1A5Zp9rB0noS5vnoormHSIPFKL0Z2DcUJ3Gxp5ytH4uLRNxy7AwYUC9exZzqGMAw=="; 320 }; 321 }; 322 + "@types/yargs-parser-15.0.0" = { 323 name = "_at_types_slash_yargs-parser"; 324 packageName = "@types/yargs-parser"; 325 + version = "15.0.0"; 326 src = fetchurl { 327 + url = "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz"; 328 + sha512 = "FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw=="; 329 + }; 330 + }; 331 + "@typescript-eslint/eslint-plugin-4.13.0" = { 332 + name = "_at_typescript-eslint_slash_eslint-plugin"; 333 + packageName = "@typescript-eslint/eslint-plugin"; 334 + version = "4.13.0"; 335 + src = fetchurl { 336 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.13.0.tgz"; 337 + sha512 = "ygqDUm+BUPvrr0jrXqoteMqmIaZ/bixYOc3A4BRwzEPTZPi6E+n44rzNZWaB0YvtukgP+aoj0i/fyx7FkM2p1w=="; 338 + }; 339 + }; 340 + "@typescript-eslint/eslint-plugin-tslint-4.13.0" = { 341 + name = "_at_typescript-eslint_slash_eslint-plugin-tslint"; 342 + packageName = "@typescript-eslint/eslint-plugin-tslint"; 343 + version = "4.13.0"; 344 + src = fetchurl { 345 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin-tslint/-/eslint-plugin-tslint-4.13.0.tgz"; 346 + sha512 = "r6n4irL74bOx4z2f0WxnwG6MY67EESvjvK/VMoIlDelW3Q6cwunCH8ug3l8hkPtgJ7iObmUjpAWKxyF4ZdvEcw=="; 347 + }; 348 + }; 349 + "@typescript-eslint/experimental-utils-4.13.0" = { 350 + name = "_at_typescript-eslint_slash_experimental-utils"; 351 + packageName = "@typescript-eslint/experimental-utils"; 352 + version = "4.13.0"; 353 + src = fetchurl { 354 + url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.13.0.tgz"; 355 + sha512 = "/ZsuWmqagOzNkx30VWYV3MNB/Re/CGv/7EzlqZo5RegBN8tMuPaBgNK6vPBCQA8tcYrbsrTdbx3ixMRRKEEGVw=="; 356 + }; 357 + }; 358 + "@typescript-eslint/parser-4.13.0" = { 359 + name = "_at_typescript-eslint_slash_parser"; 360 + packageName = "@typescript-eslint/parser"; 361 + version = "4.13.0"; 362 + src = fetchurl { 363 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.13.0.tgz"; 364 + sha512 = "KO0J5SRF08pMXzq9+abyHnaGQgUJZ3Z3ax+pmqz9vl81JxmTTOUfQmq7/4awVfq09b6C4owNlOgOwp61pYRBSg=="; 365 + }; 366 + }; 367 + "@typescript-eslint/scope-manager-4.13.0" = { 368 + name = "_at_typescript-eslint_slash_scope-manager"; 369 + packageName = "@typescript-eslint/scope-manager"; 370 + version = "4.13.0"; 371 + src = fetchurl { 372 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.13.0.tgz"; 373 + sha512 = "UpK7YLG2JlTp/9G4CHe7GxOwd93RBf3aHO5L+pfjIrhtBvZjHKbMhBXTIQNkbz7HZ9XOe++yKrXutYm5KmjWgQ=="; 374 + }; 375 + }; 376 + "@typescript-eslint/types-4.13.0" = { 377 + name = "_at_typescript-eslint_slash_types"; 378 + packageName = "@typescript-eslint/types"; 379 + version = "4.13.0"; 380 + src = fetchurl { 381 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.13.0.tgz"; 382 + sha512 = "/+aPaq163oX+ObOG00M0t9tKkOgdv9lq0IQv/y4SqGkAXmhFmCfgsELV7kOCTb2vVU5VOmVwXBXJTDr353C1rQ=="; 383 + }; 384 + }; 385 + "@typescript-eslint/typescript-estree-4.13.0" = { 386 + name = "_at_typescript-eslint_slash_typescript-estree"; 387 + packageName = "@typescript-eslint/typescript-estree"; 388 + version = "4.13.0"; 389 + src = fetchurl { 390 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.13.0.tgz"; 391 + sha512 = "9A0/DFZZLlGXn5XA349dWQFwPZxcyYyCFX5X88nWs2uachRDwGeyPz46oTsm9ZJE66EALvEns1lvBwa4d9QxMg=="; 392 + }; 393 + }; 394 + "@typescript-eslint/visitor-keys-4.13.0" = { 395 + name = "_at_typescript-eslint_slash_visitor-keys"; 396 + packageName = "@typescript-eslint/visitor-keys"; 397 + version = "4.13.0"; 398 + src = fetchurl { 399 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.13.0.tgz"; 400 + sha512 = "6RoxWK05PAibukE7jElqAtNMq+RWZyqJ6Q/GdIxaiUj2Ept8jh8+FUVlbq9WxMYxkmEOPvCE5cRSyupMpwW31g=="; 401 + }; 402 + }; 403 + "@ungap/promise-all-settled-1.1.2" = { 404 + name = "_at_ungap_slash_promise-all-settled"; 405 + packageName = "@ungap/promise-all-settled"; 406 + version = "1.1.2"; 407 + src = fetchurl { 408 + url = "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz"; 409 + sha512 = "sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q=="; 410 }; 411 }; 412 "Slackdown-git://github.com/half-shot/slackdown#efd8934a3d9c3bf0064c0b217c5cf6b62ee697e4" = { ··· 446 sha512 = "Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA=="; 447 }; 448 }; 449 + "acorn-7.4.1" = { 450 + name = "acorn"; 451 + packageName = "acorn"; 452 + version = "7.4.1"; 453 + src = fetchurl { 454 + url = "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"; 455 + sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; 456 + }; 457 + }; 458 + "acorn-jsx-5.3.1" = { 459 + name = "acorn-jsx"; 460 + packageName = "acorn-jsx"; 461 + version = "5.3.1"; 462 + src = fetchurl { 463 + url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz"; 464 + sha512 = "K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng=="; 465 + }; 466 + }; 467 + "ajv-6.12.6" = { 468 name = "ajv"; 469 packageName = "ajv"; 470 + version = "6.12.6"; 471 src = fetchurl { 472 + url = "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"; 473 + sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 474 + }; 475 + }; 476 + "ajv-7.0.3" = { 477 + name = "ajv"; 478 + packageName = "ajv"; 479 + version = "7.0.3"; 480 + src = fetchurl { 481 + url = "https://registry.npmjs.org/ajv/-/ajv-7.0.3.tgz"; 482 + sha512 = "R50QRlXSxqXcQP5SvKUrw8VZeypvo12i2IX0EeR5PiZ7bEKeHWgzgo264LDadUsCU42lTJVhFikTqJwNeH34gQ=="; 483 }; 484 }; 485 "another-json-0.2.0" = { ··· 491 sha1 = "b5f4019c973b6dd5c6506a2d93469cb6d32aeedc"; 492 }; 493 }; 494 + "ansi-colors-4.1.1" = { 495 name = "ansi-colors"; 496 packageName = "ansi-colors"; 497 + version = "4.1.1"; 498 src = fetchurl { 499 + url = "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz"; 500 + sha512 = "JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA=="; 501 }; 502 }; 503 "ansi-regex-3.0.0" = { ··· 518 sha512 = "1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="; 519 }; 520 }; 521 + "ansi-regex-5.0.0" = { 522 + name = "ansi-regex"; 523 + packageName = "ansi-regex"; 524 + version = "5.0.0"; 525 + src = fetchurl { 526 + url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz"; 527 + sha512 = "bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="; 528 + }; 529 + }; 530 "ansi-styles-3.2.1" = { 531 name = "ansi-styles"; 532 packageName = "ansi-styles"; ··· 536 sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; 537 }; 538 }; 539 + "ansi-styles-4.3.0" = { 540 + name = "ansi-styles"; 541 + packageName = "ansi-styles"; 542 + version = "4.3.0"; 543 + src = fetchurl { 544 + url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"; 545 + sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; 546 + }; 547 + }; 548 "anymatch-3.1.1" = { 549 name = "anymatch"; 550 packageName = "anymatch"; ··· 572 sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="; 573 }; 574 }; 575 + "argparse-2.0.1" = { 576 + name = "argparse"; 577 + packageName = "argparse"; 578 + version = "2.0.1"; 579 + src = fetchurl { 580 + url = "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"; 581 + sha512 = "8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="; 582 + }; 583 + }; 584 "array-flatten-1.1.1" = { 585 name = "array-flatten"; 586 packageName = "array-flatten"; ··· 590 sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2"; 591 }; 592 }; 593 + "array-union-2.1.0" = { 594 + name = "array-union"; 595 + packageName = "array-union"; 596 + version = "2.1.0"; 597 + src = fetchurl { 598 + url = "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"; 599 + sha512 = "HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="; 600 + }; 601 + }; 602 "array-uniq-1.0.2" = { 603 name = "array-uniq"; 604 packageName = "array-uniq"; ··· 626 sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg=="; 627 }; 628 }; 629 + "assert-options-0.7.0" = { 630 name = "assert-options"; 631 packageName = "assert-options"; 632 + version = "0.7.0"; 633 src = fetchurl { 634 + url = "https://registry.npmjs.org/assert-options/-/assert-options-0.7.0.tgz"; 635 + sha512 = "7q9uNH/Dh8gFgpIIb9ja8PJEWA5AQy3xnBC8jtKs8K/gNVCr1K6kIvlm59HUyYgvM7oEDoLzGgPcGd9FqhtXEQ=="; 636 }; 637 }; 638 "assert-plus-1.0.0" = { ··· 653 sha512 = "jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw=="; 654 }; 655 }; 656 + "astral-regex-2.0.0" = { 657 + name = "astral-regex"; 658 + packageName = "astral-regex"; 659 + version = "2.0.0"; 660 + src = fetchurl { 661 + url = "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz"; 662 + sha512 = "Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ=="; 663 + }; 664 + }; 665 "async-0.2.10" = { 666 name = "async"; 667 packageName = "async"; ··· 671 sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1"; 672 }; 673 }; 674 + "async-3.2.0" = { 675 name = "async"; 676 packageName = "async"; 677 + version = "3.2.0"; 678 src = fetchurl { 679 + url = "https://registry.npmjs.org/async/-/async-3.2.0.tgz"; 680 + sha512 = "TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw=="; 681 }; 682 }; 683 "async-limiter-1.0.1" = { ··· 707 sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; 708 }; 709 }; 710 + "aws4-1.11.0" = { 711 name = "aws4"; 712 packageName = "aws4"; 713 + version = "1.11.0"; 714 src = fetchurl { 715 + url = "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz"; 716 + sha512 = "xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="; 717 }; 718 }; 719 + "axios-0.21.1" = { 720 name = "axios"; 721 packageName = "axios"; 722 + version = "0.21.1"; 723 src = fetchurl { 724 + url = "https://registry.npmjs.org/axios/-/axios-0.21.1.tgz"; 725 + sha512 = "dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA=="; 726 }; 727 }; 728 "balanced-match-1.0.0" = { ··· 761 sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"; 762 }; 763 }; 764 + "binary-extensions-2.1.0" = { 765 name = "binary-extensions"; 766 packageName = "binary-extensions"; 767 + version = "2.1.0"; 768 src = fetchurl { 769 + url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz"; 770 + sha512 = "1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ=="; 771 }; 772 }; 773 "binary-search-tree-0.2.5" = { ··· 786 src = fetchurl { 787 url = "https://registry.npmjs.org/bintrees/-/bintrees-1.0.1.tgz"; 788 sha1 = "0e655c9b9c2435eaab68bf4027226d2b55a34524"; 789 }; 790 }; 791 "body-parser-1.19.0" = { ··· 860 sha512 = "a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw=="; 861 }; 862 }; 863 "bytes-3.1.0" = { 864 name = "bytes"; 865 packageName = "bytes"; ··· 869 sha512 = "zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="; 870 }; 871 }; 872 + "callsites-3.1.0" = { 873 + name = "callsites"; 874 + packageName = "callsites"; 875 + version = "3.1.0"; 876 + src = fetchurl { 877 + url = "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"; 878 + sha512 = "P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="; 879 + }; 880 + }; 881 "camelcase-5.3.1" = { 882 name = "camelcase"; 883 packageName = "camelcase"; ··· 885 src = fetchurl { 886 url = "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"; 887 sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; 888 + }; 889 + }; 890 + "camelcase-6.2.0" = { 891 + name = "camelcase"; 892 + packageName = "camelcase"; 893 + version = "6.2.0"; 894 + src = fetchurl { 895 + url = "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz"; 896 + sha512 = "c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg=="; 897 }; 898 }; 899 "caseless-0.12.0" = { ··· 923 sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; 924 }; 925 }; 926 + "chalk-4.1.0" = { 927 + name = "chalk"; 928 + packageName = "chalk"; 929 + version = "4.1.0"; 930 + src = fetchurl { 931 + url = "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz"; 932 + sha512 = "qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A=="; 933 + }; 934 + }; 935 "check-error-1.0.2" = { 936 name = "check-error"; 937 packageName = "check-error"; ··· 941 sha1 = "574d312edd88bb5dd8912e9286dd6c0aed4aac82"; 942 }; 943 }; 944 + "chokidar-3.4.1" = { 945 + name = "chokidar"; 946 + packageName = "chokidar"; 947 + version = "3.4.1"; 948 + src = fetchurl { 949 + url = "https://registry.npmjs.org/chokidar/-/chokidar-3.4.1.tgz"; 950 + sha512 = "TQTJyr2stihpC4Sya9hs2Xh+O2wf+igjL36Y75xx2WdHuiICcn/XJza46Jwt0eT5hVpQOzo3FpY3cj3RVYLX0g=="; 951 + }; 952 + }; 953 + "chokidar-3.4.3" = { 954 name = "chokidar"; 955 packageName = "chokidar"; 956 + version = "3.4.3"; 957 src = fetchurl { 958 + url = "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz"; 959 + sha512 = "DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ=="; 960 }; 961 }; 962 "cliui-5.0.0" = { ··· 966 src = fetchurl { 967 url = "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz"; 968 sha512 = "PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA=="; 969 + }; 970 + }; 971 + "cliui-7.0.4" = { 972 + name = "cliui"; 973 + packageName = "cliui"; 974 + version = "7.0.4"; 975 + src = fetchurl { 976 + url = "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz"; 977 + sha512 = "OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ=="; 978 }; 979 }; 980 "color-3.0.0" = { ··· 995 sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="; 996 }; 997 }; 998 + "color-convert-2.0.1" = { 999 + name = "color-convert"; 1000 + packageName = "color-convert"; 1001 + version = "2.0.1"; 1002 + src = fetchurl { 1003 + url = "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"; 1004 + sha512 = "RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="; 1005 + }; 1006 + }; 1007 "color-name-1.1.3" = { 1008 name = "color-name"; 1009 packageName = "color-name"; ··· 1013 sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; 1014 }; 1015 }; 1016 + "color-name-1.1.4" = { 1017 + name = "color-name"; 1018 + packageName = "color-name"; 1019 + version = "1.1.4"; 1020 + src = fetchurl { 1021 + url = "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"; 1022 + sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 1023 + }; 1024 + }; 1025 "color-string-1.5.3" = { 1026 name = "color-string"; 1027 packageName = "color-string"; ··· 1029 src = fetchurl { 1030 url = "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz"; 1031 sha512 = "dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw=="; 1032 }; 1033 }; 1034 "colors-1.3.3" = { ··· 1058 sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; 1059 }; 1060 }; 1061 + "commander-5.1.0" = { 1062 name = "commander"; 1063 packageName = "commander"; 1064 + version = "5.1.0"; 1065 src = fetchurl { 1066 + url = "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz"; 1067 + sha512 = "P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg=="; 1068 }; 1069 }; 1070 + "comment-parser-0.7.6" = { 1071 + name = "comment-parser"; 1072 + packageName = "comment-parser"; 1073 + version = "0.7.6"; 1074 src = fetchurl { 1075 + url = "https://registry.npmjs.org/comment-parser/-/comment-parser-0.7.6.tgz"; 1076 + sha512 = "GKNxVA7/iuTnAqGADlTWX4tkhzxZKXp5fLJqKTlQLHkE65XDUKutZ3BHaJC5IGcper2tT3QRD1xr4o3jNpgXXg=="; 1077 }; 1078 }; 1079 "concat-map-0.0.1" = { ··· 1121 sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; 1122 }; 1123 }; 1124 "core-util-is-1.0.2" = { 1125 name = "core-util-is"; 1126 packageName = "core-util-is"; ··· 1130 sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; 1131 }; 1132 }; 1133 + "create-require-1.1.1" = { 1134 + name = "create-require"; 1135 + packageName = "create-require"; 1136 + version = "1.1.1"; 1137 src = fetchurl { 1138 + url = "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz"; 1139 + sha512 = "dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ=="; 1140 }; 1141 }; 1142 + "cross-spawn-7.0.3" = { 1143 + name = "cross-spawn"; 1144 + packageName = "cross-spawn"; 1145 + version = "7.0.3"; 1146 src = fetchurl { 1147 + url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"; 1148 + sha512 = "iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="; 1149 }; 1150 }; 1151 "dashdash-1.14.1" = { ··· 1166 sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; 1167 }; 1168 }; 1169 + "debug-4.2.0" = { 1170 name = "debug"; 1171 packageName = "debug"; 1172 + version = "4.2.0"; 1173 src = fetchurl { 1174 + url = "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz"; 1175 + sha512 = "IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg=="; 1176 }; 1177 }; 1178 + "debug-4.3.1" = { 1179 name = "debug"; 1180 packageName = "debug"; 1181 + version = "4.3.1"; 1182 src = fetchurl { 1183 + url = "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz"; 1184 + sha512 = "doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ=="; 1185 }; 1186 }; 1187 "decamelize-1.2.0" = { ··· 1193 sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 1194 }; 1195 }; 1196 + "decamelize-4.0.0" = { 1197 + name = "decamelize"; 1198 + packageName = "decamelize"; 1199 + version = "4.0.0"; 1200 + src = fetchurl { 1201 + url = "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz"; 1202 + sha512 = "9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ=="; 1203 + }; 1204 + }; 1205 "deep-eql-3.0.1" = { 1206 name = "deep-eql"; 1207 packageName = "deep-eql"; ··· 1211 sha512 = "+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw=="; 1212 }; 1213 }; 1214 + "deep-is-0.1.3" = { 1215 + name = "deep-is"; 1216 + packageName = "deep-is"; 1217 + version = "0.1.3"; 1218 src = fetchurl { 1219 + url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz"; 1220 + sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34"; 1221 }; 1222 }; 1223 "delayed-stream-1.0.0" = { ··· 1238 sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9"; 1239 }; 1240 }; 1241 + "depd-2.0.0" = { 1242 + name = "depd"; 1243 + packageName = "depd"; 1244 + version = "2.0.0"; 1245 + src = fetchurl { 1246 + url = "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz"; 1247 + sha512 = "g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="; 1248 + }; 1249 + }; 1250 "destroy-1.0.4" = { 1251 name = "destroy"; 1252 packageName = "destroy"; ··· 1256 sha1 = "978857442c44749e4206613e37946205826abd80"; 1257 }; 1258 }; 1259 + "diff-4.0.2" = { 1260 + name = "diff"; 1261 + packageName = "diff"; 1262 + version = "4.0.2"; 1263 src = fetchurl { 1264 + url = "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz"; 1265 + sha512 = "58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="; 1266 }; 1267 }; 1268 + "dir-glob-3.0.1" = { 1269 + name = "dir-glob"; 1270 + packageName = "dir-glob"; 1271 + version = "3.0.1"; 1272 src = fetchurl { 1273 + url = "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz"; 1274 + sha512 = "WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA=="; 1275 }; 1276 }; 1277 + "doctrine-3.0.0" = { 1278 + name = "doctrine"; 1279 + packageName = "doctrine"; 1280 + version = "3.0.0"; 1281 src = fetchurl { 1282 + url = "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz"; 1283 + sha512 = "yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w=="; 1284 }; 1285 }; 1286 "ecc-jsbn-0.1.2" = { ··· 1310 sha512 = "CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="; 1311 }; 1312 }; 1313 + "emoji-regex-8.0.0" = { 1314 + name = "emoji-regex"; 1315 + packageName = "emoji-regex"; 1316 + version = "8.0.0"; 1317 + src = fetchurl { 1318 + url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"; 1319 + sha512 = "MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="; 1320 + }; 1321 + }; 1322 + "enabled-2.0.0" = { 1323 name = "enabled"; 1324 packageName = "enabled"; 1325 + version = "2.0.0"; 1326 src = fetchurl { 1327 + url = "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz"; 1328 + sha512 = "AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ=="; 1329 }; 1330 }; 1331 "encodeurl-1.0.2" = { ··· 1337 sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"; 1338 }; 1339 }; 1340 + "enquirer-2.3.6" = { 1341 + name = "enquirer"; 1342 + packageName = "enquirer"; 1343 + version = "2.3.6"; 1344 src = fetchurl { 1345 + url = "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz"; 1346 + sha512 = "yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg=="; 1347 }; 1348 }; 1349 + "escalade-3.1.1" = { 1350 + name = "escalade"; 1351 + packageName = "escalade"; 1352 + version = "3.1.1"; 1353 src = fetchurl { 1354 + url = "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"; 1355 + sha512 = "k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="; 1356 }; 1357 }; 1358 "escape-html-1.0.3" = { ··· 1373 sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 1374 }; 1375 }; 1376 + "escape-string-regexp-4.0.0" = { 1377 name = "escape-string-regexp"; 1378 packageName = "escape-string-regexp"; 1379 + version = "4.0.0"; 1380 + src = fetchurl { 1381 + url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"; 1382 + sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="; 1383 + }; 1384 + }; 1385 + "eslint-7.17.0" = { 1386 + name = "eslint"; 1387 + packageName = "eslint"; 1388 + version = "7.17.0"; 1389 + src = fetchurl { 1390 + url = "https://registry.npmjs.org/eslint/-/eslint-7.17.0.tgz"; 1391 + sha512 = "zJk08MiBgwuGoxes5sSQhOtibZ75pz0J35XTRlZOk9xMffhpA9BTbQZxoXZzOl5zMbleShbGwtw+1kGferfFwQ=="; 1392 + }; 1393 + }; 1394 + "eslint-plugin-jsdoc-30.7.13" = { 1395 + name = "eslint-plugin-jsdoc"; 1396 + packageName = "eslint-plugin-jsdoc"; 1397 + version = "30.7.13"; 1398 + src = fetchurl { 1399 + url = "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.7.13.tgz"; 1400 + sha512 = "YM4WIsmurrp0rHX6XiXQppqKB8Ne5ATiZLJe2+/fkp9l9ExXFr43BbAbjZaVrpCT+tuPYOZ8k1MICARHnURUNQ=="; 1401 + }; 1402 + }; 1403 + "eslint-plugin-prefer-arrow-1.2.2" = { 1404 + name = "eslint-plugin-prefer-arrow"; 1405 + packageName = "eslint-plugin-prefer-arrow"; 1406 + version = "1.2.2"; 1407 + src = fetchurl { 1408 + url = "https://registry.npmjs.org/eslint-plugin-prefer-arrow/-/eslint-plugin-prefer-arrow-1.2.2.tgz"; 1409 + sha512 = "C8YMhL+r8RMeMdYAw/rQtE6xNdMulj+zGWud/qIGnlmomiPRaLDGLMeskZ3alN6uMBojmooRimtdrXebLN4svQ=="; 1410 + }; 1411 + }; 1412 + "eslint-scope-5.1.1" = { 1413 + name = "eslint-scope"; 1414 + packageName = "eslint-scope"; 1415 + version = "5.1.1"; 1416 + src = fetchurl { 1417 + url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz"; 1418 + sha512 = "2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="; 1419 + }; 1420 + }; 1421 + "eslint-utils-2.1.0" = { 1422 + name = "eslint-utils"; 1423 + packageName = "eslint-utils"; 1424 + version = "2.1.0"; 1425 + src = fetchurl { 1426 + url = "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz"; 1427 + sha512 = "w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg=="; 1428 + }; 1429 + }; 1430 + "eslint-visitor-keys-1.3.0" = { 1431 + name = "eslint-visitor-keys"; 1432 + packageName = "eslint-visitor-keys"; 1433 + version = "1.3.0"; 1434 + src = fetchurl { 1435 + url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"; 1436 + sha512 = "6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ=="; 1437 + }; 1438 + }; 1439 + "eslint-visitor-keys-2.0.0" = { 1440 + name = "eslint-visitor-keys"; 1441 + packageName = "eslint-visitor-keys"; 1442 version = "2.0.0"; 1443 src = fetchurl { 1444 + url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz"; 1445 + sha512 = "QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ=="; 1446 + }; 1447 + }; 1448 + "espree-7.3.1" = { 1449 + name = "espree"; 1450 + packageName = "espree"; 1451 + version = "7.3.1"; 1452 + src = fetchurl { 1453 + url = "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz"; 1454 + sha512 = "v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g=="; 1455 }; 1456 }; 1457 "esprima-4.0.1" = { ··· 1463 sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; 1464 }; 1465 }; 1466 + "esquery-1.3.1" = { 1467 + name = "esquery"; 1468 + packageName = "esquery"; 1469 + version = "1.3.1"; 1470 + src = fetchurl { 1471 + url = "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz"; 1472 + sha512 = "olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ=="; 1473 + }; 1474 + }; 1475 + "esrecurse-4.3.0" = { 1476 + name = "esrecurse"; 1477 + packageName = "esrecurse"; 1478 + version = "4.3.0"; 1479 + src = fetchurl { 1480 + url = "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz"; 1481 + sha512 = "KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="; 1482 + }; 1483 + }; 1484 + "estraverse-4.3.0" = { 1485 + name = "estraverse"; 1486 + packageName = "estraverse"; 1487 + version = "4.3.0"; 1488 + src = fetchurl { 1489 + url = "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz"; 1490 + sha512 = "39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="; 1491 + }; 1492 + }; 1493 + "estraverse-5.2.0" = { 1494 + name = "estraverse"; 1495 + packageName = "estraverse"; 1496 + version = "5.2.0"; 1497 + src = fetchurl { 1498 + url = "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz"; 1499 + sha512 = "BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ=="; 1500 + }; 1501 + }; 1502 + "esutils-2.0.3" = { 1503 + name = "esutils"; 1504 + packageName = "esutils"; 1505 + version = "2.0.3"; 1506 + src = fetchurl { 1507 + url = "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"; 1508 + sha512 = "kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="; 1509 + }; 1510 + }; 1511 "etag-1.8.1" = { 1512 name = "etag"; 1513 packageName = "etag"; ··· 1526 sha512 = "tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q=="; 1527 }; 1528 }; 1529 + "eventemitter3-4.0.7" = { 1530 name = "eventemitter3"; 1531 packageName = "eventemitter3"; 1532 + version = "4.0.7"; 1533 src = fetchurl { 1534 + url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz"; 1535 + sha512 = "8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="; 1536 }; 1537 }; 1538 "express-4.17.1" = { ··· 1562 sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; 1563 }; 1564 }; 1565 + "fast-deep-equal-3.1.3" = { 1566 name = "fast-deep-equal"; 1567 packageName = "fast-deep-equal"; 1568 + version = "3.1.3"; 1569 src = fetchurl { 1570 + url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"; 1571 + sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="; 1572 }; 1573 }; 1574 + "fast-glob-3.2.4" = { 1575 + name = "fast-glob"; 1576 + packageName = "fast-glob"; 1577 + version = "3.2.4"; 1578 + src = fetchurl { 1579 + url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz"; 1580 + sha512 = "kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ=="; 1581 + }; 1582 + }; 1583 + "fast-json-stable-stringify-2.1.0" = { 1584 name = "fast-json-stable-stringify"; 1585 packageName = "fast-json-stable-stringify"; 1586 + version = "2.1.0"; 1587 + src = fetchurl { 1588 + url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; 1589 + sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="; 1590 + }; 1591 + }; 1592 + "fast-levenshtein-2.0.6" = { 1593 + name = "fast-levenshtein"; 1594 + packageName = "fast-levenshtein"; 1595 + version = "2.0.6"; 1596 src = fetchurl { 1597 + url = "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; 1598 + sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917"; 1599 }; 1600 }; 1601 "fast-safe-stringify-2.0.6" = { ··· 1607 sha512 = "q8BZ89jjc+mz08rSxROs8VsrBBcn1SIw1kq9NjolL509tkABRk9io01RAjSaEv1Xb2uFLt8VtRiZbGp5H8iDtg=="; 1608 }; 1609 }; 1610 + "fastq-1.10.0" = { 1611 + name = "fastq"; 1612 + packageName = "fastq"; 1613 + version = "1.10.0"; 1614 + src = fetchurl { 1615 + url = "https://registry.npmjs.org/fastq/-/fastq-1.10.0.tgz"; 1616 + sha512 = "NL2Qc5L3iQEsyYzweq7qfgy5OtXCmGzGvhElGEd/SoFWEMOEczNh5s5ocaF01HDetxz+p8ecjNPA6cZxxIHmzA=="; 1617 + }; 1618 + }; 1619 + "fecha-4.2.0" = { 1620 name = "fecha"; 1621 packageName = "fecha"; 1622 + version = "4.2.0"; 1623 src = fetchurl { 1624 + url = "https://registry.npmjs.org/fecha/-/fecha-4.2.0.tgz"; 1625 + sha512 = "aN3pcx/DSmtyoovUudctc8+6Hl4T+hI9GBBHLjA76jdZl7+b1sgh5g4k+u/GL3dTy1/pnYzKp69FpJ0OicE3Wg=="; 1626 }; 1627 }; 1628 + "file-entry-cache-6.0.0" = { 1629 + name = "file-entry-cache"; 1630 + packageName = "file-entry-cache"; 1631 + version = "6.0.0"; 1632 + src = fetchurl { 1633 + url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.0.tgz"; 1634 + sha512 = "fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA=="; 1635 + }; 1636 + }; 1637 + "file-stream-rotator-0.5.7" = { 1638 name = "file-stream-rotator"; 1639 packageName = "file-stream-rotator"; 1640 + version = "0.5.7"; 1641 src = fetchurl { 1642 + url = "https://registry.npmjs.org/file-stream-rotator/-/file-stream-rotator-0.5.7.tgz"; 1643 + sha512 = "VYb3HZ/GiAGUCrfeakO8Mp54YGswNUHvL7P09WQcXAJNSj3iQ5QraYSp3cIn1MUyw6uzfgN/EFOarCNa4JvUHQ=="; 1644 }; 1645 }; 1646 "fill-range-7.0.1" = { ··· 1670 sha512 = "1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg=="; 1671 }; 1672 }; 1673 + "find-up-5.0.0" = { 1674 + name = "find-up"; 1675 + packageName = "find-up"; 1676 + version = "5.0.0"; 1677 + src = fetchurl { 1678 + url = "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz"; 1679 + sha512 = "78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="; 1680 + }; 1681 + }; 1682 "finity-0.5.4" = { 1683 name = "finity"; 1684 packageName = "finity"; ··· 1688 sha512 = "3l+5/1tuw616Lgb0QBimxfdd2TqaDGpfCBpfX6EqtFmqUV3FtQnVEX4Aa62DagYEqnsTIjZcTfbq9msDbXYgyA=="; 1689 }; 1690 }; 1691 + "flat-5.0.2" = { 1692 name = "flat"; 1693 packageName = "flat"; 1694 + version = "5.0.2"; 1695 + src = fetchurl { 1696 + url = "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz"; 1697 + sha512 = "b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ=="; 1698 + }; 1699 + }; 1700 + "flat-cache-3.0.4" = { 1701 + name = "flat-cache"; 1702 + packageName = "flat-cache"; 1703 + version = "3.0.4"; 1704 src = fetchurl { 1705 + url = "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz"; 1706 + sha512 = "dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg=="; 1707 }; 1708 }; 1709 + "flatted-3.1.0" = { 1710 + name = "flatted"; 1711 + packageName = "flatted"; 1712 + version = "3.1.0"; 1713 + src = fetchurl { 1714 + url = "https://registry.npmjs.org/flatted/-/flatted-3.1.0.tgz"; 1715 + sha512 = "tW+UkmtNg/jv9CSofAKvgVcO7c2URjhTdW1ZTkcAritblu8tajiYy7YisnIflEwtKssCtOxpnBRoCB7iap0/TA=="; 1716 + }; 1717 + }; 1718 + "fn.name-1.1.0" = { 1719 + name = "fn.name"; 1720 + packageName = "fn.name"; 1721 + version = "1.1.0"; 1722 + src = fetchurl { 1723 + url = "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz"; 1724 + sha512 = "GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw=="; 1725 + }; 1726 + }; 1727 + "follow-redirects-1.13.1" = { 1728 name = "follow-redirects"; 1729 packageName = "follow-redirects"; 1730 + version = "1.13.1"; 1731 src = fetchurl { 1732 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.1.tgz"; 1733 + sha512 = "SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg=="; 1734 }; 1735 }; 1736 "forever-agent-0.6.1" = { ··· 1787 sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 1788 }; 1789 }; 1790 + "fsevents-2.1.3" = { 1791 name = "fsevents"; 1792 packageName = "fsevents"; 1793 + version = "2.1.3"; 1794 src = fetchurl { 1795 + url = "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz"; 1796 + sha512 = "Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ=="; 1797 }; 1798 }; 1799 + "functional-red-black-tree-1.0.1" = { 1800 + name = "functional-red-black-tree"; 1801 + packageName = "functional-red-black-tree"; 1802 + version = "1.0.1"; 1803 src = fetchurl { 1804 + url = "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"; 1805 + sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"; 1806 }; 1807 }; 1808 "generate-function-2.3.1" = { ··· 1841 sha1 = "ead774abee72e20409433a066366023dd6887a41"; 1842 }; 1843 }; 1844 "getpass-0.1.7" = { 1845 name = "getpass"; 1846 packageName = "getpass"; ··· 1850 sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; 1851 }; 1852 }; 1853 + "glob-7.1.6" = { 1854 name = "glob"; 1855 packageName = "glob"; 1856 + version = "7.1.6"; 1857 src = fetchurl { 1858 + url = "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz"; 1859 + sha512 = "LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA=="; 1860 }; 1861 }; 1862 "glob-parent-5.1.1" = { ··· 1868 sha512 = "FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ=="; 1869 }; 1870 }; 1871 + "globals-12.4.0" = { 1872 + name = "globals"; 1873 + packageName = "globals"; 1874 + version = "12.4.0"; 1875 + src = fetchurl { 1876 + url = "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz"; 1877 + sha512 = "BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg=="; 1878 + }; 1879 + }; 1880 + "globby-11.0.2" = { 1881 + name = "globby"; 1882 + packageName = "globby"; 1883 + version = "11.0.2"; 1884 + src = fetchurl { 1885 + url = "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz"; 1886 + sha512 = "2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og=="; 1887 + }; 1888 + }; 1889 "growl-1.10.5" = { 1890 name = "growl"; 1891 packageName = "growl"; ··· 1904 sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; 1905 }; 1906 }; 1907 + "har-validator-5.1.5" = { 1908 name = "har-validator"; 1909 packageName = "har-validator"; 1910 + version = "5.1.5"; 1911 src = fetchurl { 1912 + url = "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz"; 1913 + sha512 = "nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w=="; 1914 }; 1915 }; 1916 "has-flag-3.0.0" = { ··· 1922 sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd"; 1923 }; 1924 }; 1925 + "has-flag-4.0.0" = { 1926 + name = "has-flag"; 1927 + packageName = "has-flag"; 1928 + version = "4.0.0"; 1929 src = fetchurl { 1930 + url = "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"; 1931 + sha512 = "EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="; 1932 }; 1933 }; 1934 "he-1.2.0" = { ··· 1967 sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 1968 }; 1969 }; 1970 + "ignore-4.0.6" = { 1971 + name = "ignore"; 1972 + packageName = "ignore"; 1973 + version = "4.0.6"; 1974 + src = fetchurl { 1975 + url = "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz"; 1976 + sha512 = "cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg=="; 1977 + }; 1978 + }; 1979 + "ignore-5.1.8" = { 1980 + name = "ignore"; 1981 + packageName = "ignore"; 1982 + version = "5.1.8"; 1983 + src = fetchurl { 1984 + url = "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz"; 1985 + sha512 = "BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw=="; 1986 + }; 1987 + }; 1988 "immediate-3.0.6" = { 1989 name = "immediate"; 1990 packageName = "immediate"; ··· 1994 sha1 = "9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b"; 1995 }; 1996 }; 1997 + "import-fresh-3.3.0" = { 1998 + name = "import-fresh"; 1999 + packageName = "import-fresh"; 2000 + version = "3.3.0"; 2001 + src = fetchurl { 2002 + url = "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz"; 2003 + sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="; 2004 + }; 2005 + }; 2006 + "imurmurhash-0.1.4" = { 2007 + name = "imurmurhash"; 2008 + packageName = "imurmurhash"; 2009 + version = "0.1.4"; 2010 + src = fetchurl { 2011 + url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"; 2012 + sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea"; 2013 + }; 2014 + }; 2015 "inflight-1.0.6" = { 2016 name = "inflight"; 2017 packageName = "inflight"; ··· 2030 sha1 = "633c2c83e3da42a502f52466022480f4208261de"; 2031 }; 2032 }; 2033 + "ipaddr.js-1.9.1" = { 2034 name = "ipaddr.js"; 2035 packageName = "ipaddr.js"; 2036 + version = "1.9.1"; 2037 src = fetchurl { 2038 + url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz"; 2039 + sha512 = "0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="; 2040 }; 2041 }; 2042 "is-arrayish-0.3.2" = { ··· 2057 sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; 2058 }; 2059 }; 2060 "is-extglob-2.1.1" = { 2061 name = "is-extglob"; 2062 packageName = "is-extglob"; ··· 2075 sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; 2076 }; 2077 }; 2078 + "is-fullwidth-code-point-3.0.0" = { 2079 + name = "is-fullwidth-code-point"; 2080 + packageName = "is-fullwidth-code-point"; 2081 + version = "3.0.0"; 2082 + src = fetchurl { 2083 + url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"; 2084 + sha512 = "zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="; 2085 + }; 2086 + }; 2087 "is-glob-4.0.1" = { 2088 name = "is-glob"; 2089 packageName = "is-glob"; ··· 2102 sha512 = "gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ=="; 2103 }; 2104 }; 2105 + "is-my-json-valid-2.20.5" = { 2106 name = "is-my-json-valid"; 2107 packageName = "is-my-json-valid"; 2108 + version = "2.20.5"; 2109 src = fetchurl { 2110 + url = "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.20.5.tgz"; 2111 + sha512 = "VTPuvvGQtxvCeghwspQu1rBgjYUT6FGxPlvFKbYuFtgc4ADsX3U5ihZOYN0qyU6u+d4X9xXb0IT5O6QpXKt87A=="; 2112 }; 2113 }; 2114 "is-number-7.0.0" = { ··· 2120 sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="; 2121 }; 2122 }; 2123 + "is-plain-obj-2.1.0" = { 2124 + name = "is-plain-obj"; 2125 + packageName = "is-plain-obj"; 2126 + version = "2.1.0"; 2127 + src = fetchurl { 2128 + url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz"; 2129 + sha512 = "YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA=="; 2130 + }; 2131 + }; 2132 "is-property-1.0.2" = { 2133 name = "is-property"; 2134 packageName = "is-property"; ··· 2138 sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84"; 2139 }; 2140 }; 2141 "is-stream-1.1.0" = { 2142 name = "is-stream"; 2143 packageName = "is-stream"; ··· 2147 sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"; 2148 }; 2149 }; 2150 + "is-stream-2.0.0" = { 2151 + name = "is-stream"; 2152 + packageName = "is-stream"; 2153 + version = "2.0.0"; 2154 src = fetchurl { 2155 + url = "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz"; 2156 + sha512 = "XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw=="; 2157 }; 2158 }; 2159 "is-typedarray-1.0.0" = { ··· 2201 sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="; 2202 }; 2203 }; 2204 + "js-yaml-3.14.0" = { 2205 name = "js-yaml"; 2206 packageName = "js-yaml"; 2207 + version = "3.14.0"; 2208 src = fetchurl { 2209 + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz"; 2210 + sha512 = "/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A=="; 2211 + }; 2212 + }; 2213 + "js-yaml-4.0.0" = { 2214 + name = "js-yaml"; 2215 + packageName = "js-yaml"; 2216 + version = "4.0.0"; 2217 + src = fetchurl { 2218 + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-4.0.0.tgz"; 2219 + sha512 = "pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q=="; 2220 }; 2221 }; 2222 "jsbn-0.1.1" = { ··· 2228 sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; 2229 }; 2230 }; 2231 + "jsdoctypeparser-9.0.0" = { 2232 + name = "jsdoctypeparser"; 2233 + packageName = "jsdoctypeparser"; 2234 + version = "9.0.0"; 2235 + src = fetchurl { 2236 + url = "https://registry.npmjs.org/jsdoctypeparser/-/jsdoctypeparser-9.0.0.tgz"; 2237 + sha512 = "jrTA2jJIL6/DAEILBEh2/w9QxCuwmvNXIry39Ay/HVfhE3o2yVV0U44blYkqdHA/OKloJEqvJy0xU+GSdE2SIw=="; 2238 + }; 2239 + }; 2240 "json-schema-0.2.3" = { 2241 name = "json-schema"; 2242 packageName = "json-schema"; ··· 2255 sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; 2256 }; 2257 }; 2258 + "json-schema-traverse-1.0.0" = { 2259 + name = "json-schema-traverse"; 2260 + packageName = "json-schema-traverse"; 2261 + version = "1.0.0"; 2262 + src = fetchurl { 2263 + url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"; 2264 + sha512 = "NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="; 2265 + }; 2266 + }; 2267 + "json-stable-stringify-without-jsonify-1.0.1" = { 2268 + name = "json-stable-stringify-without-jsonify"; 2269 + packageName = "json-stable-stringify-without-jsonify"; 2270 + version = "1.0.1"; 2271 + src = fetchurl { 2272 + url = "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"; 2273 + sha1 = "9db7b59496ad3f3cfef30a75142d2d930ad72651"; 2274 + }; 2275 + }; 2276 "json-stringify-safe-5.0.1" = { 2277 name = "json-stringify-safe"; 2278 packageName = "json-stringify-safe"; ··· 2282 sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; 2283 }; 2284 }; 2285 + "jsonpointer-4.1.0" = { 2286 name = "jsonpointer"; 2287 packageName = "jsonpointer"; 2288 + version = "4.1.0"; 2289 src = fetchurl { 2290 + url = "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.1.0.tgz"; 2291 + sha512 = "CXcRvMyTlnR53xMcKnuMzfCA5i/nfblTnnr74CZb6C4vG39eu6w51t7nKmU5MfLfbTgGItliNyjO/ciNPDqClg=="; 2292 }; 2293 }; 2294 "jsprim-1.4.1" = { ··· 2300 sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; 2301 }; 2302 }; 2303 + "kuler-2.0.0" = { 2304 name = "kuler"; 2305 packageName = "kuler"; 2306 + version = "2.0.0"; 2307 src = fetchurl { 2308 + url = "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz"; 2309 + sha512 = "Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A=="; 2310 }; 2311 }; 2312 + "levn-0.4.1" = { 2313 + name = "levn"; 2314 + packageName = "levn"; 2315 + version = "0.4.1"; 2316 src = fetchurl { 2317 + url = "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz"; 2318 + sha512 = "+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="; 2319 }; 2320 }; 2321 "lie-3.1.1" = { ··· 2345 sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A=="; 2346 }; 2347 }; 2348 + "locate-path-6.0.0" = { 2349 + name = "locate-path"; 2350 + packageName = "locate-path"; 2351 + version = "6.0.0"; 2352 + src = fetchurl { 2353 + url = "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz"; 2354 + sha512 = "iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="; 2355 + }; 2356 + }; 2357 + "lodash-4.17.20" = { 2358 name = "lodash"; 2359 packageName = "lodash"; 2360 + version = "4.17.20"; 2361 src = fetchurl { 2362 + url = "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz"; 2363 + sha512 = "PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="; 2364 }; 2365 }; 2366 "lodash.toarray-4.4.0" = { ··· 2372 sha1 = "24c4bfcd6b2fba38bfd0594db1179d8e9b656561"; 2373 }; 2374 }; 2375 + "log-symbols-4.0.0" = { 2376 name = "log-symbols"; 2377 packageName = "log-symbols"; 2378 + version = "4.0.0"; 2379 src = fetchurl { 2380 + url = "https://registry.npmjs.org/log-symbols/-/log-symbols-4.0.0.tgz"; 2381 + sha512 = "FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA=="; 2382 }; 2383 }; 2384 + "logform-2.2.0" = { 2385 name = "logform"; 2386 packageName = "logform"; 2387 + version = "2.2.0"; 2388 src = fetchurl { 2389 + url = "https://registry.npmjs.org/logform/-/logform-2.2.0.tgz"; 2390 + sha512 = "N0qPlqfypFx7UHNn4B3lzS/b0uLqt2hmuoa+PpuXNYgozdJYAyauF5Ky0BWVjrxDlMWiT3qN4zPq3vVAfZy7Yg=="; 2391 }; 2392 }; 2393 + "loglevel-1.7.1" = { 2394 + name = "loglevel"; 2395 + packageName = "loglevel"; 2396 + version = "1.7.1"; 2397 src = fetchurl { 2398 + url = "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz"; 2399 + sha512 = "Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw=="; 2400 }; 2401 }; 2402 + "lru-cache-6.0.0" = { 2403 + name = "lru-cache"; 2404 + packageName = "lru-cache"; 2405 + version = "6.0.0"; 2406 src = fetchurl { 2407 + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"; 2408 + sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 2409 }; 2410 }; 2411 "make-error-1.3.6" = { ··· 2417 sha512 = "s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="; 2418 }; 2419 }; 2420 + "matrix-appservice-0.7.1" = { 2421 name = "matrix-appservice"; 2422 packageName = "matrix-appservice"; 2423 + version = "0.7.1"; 2424 src = fetchurl { 2425 + url = "https://registry.npmjs.org/matrix-appservice/-/matrix-appservice-0.7.1.tgz"; 2426 + sha512 = "oUjEz+eKfBw66FnQ3/D7PWcq+/oq9gzJVlNOMQUSGXgK70o8JT3toeFMYsJChaIimU5fIsHbTVyHC+eVGb7MSQ=="; 2427 }; 2428 }; 2429 + "matrix-appservice-bridge-2.5.0" = { 2430 name = "matrix-appservice-bridge"; 2431 packageName = "matrix-appservice-bridge"; 2432 + version = "2.5.0"; 2433 src = fetchurl { 2434 + url = "https://registry.npmjs.org/matrix-appservice-bridge/-/matrix-appservice-bridge-2.5.0.tgz"; 2435 + sha512 = "L5Ddb78pqqfO6xM4SYM+Hv6N5VjmLF3D24h4g5ze5+xRfEFmfvmLdVu6rvIExawvk9i+LA0fZ95Qi3hc7SkgAQ=="; 2436 }; 2437 }; 2438 + "matrix-js-sdk-9.6.0" = { 2439 name = "matrix-js-sdk"; 2440 packageName = "matrix-js-sdk"; 2441 + version = "9.6.0"; 2442 src = fetchurl { 2443 + url = "https://registry.npmjs.org/matrix-js-sdk/-/matrix-js-sdk-9.6.0.tgz"; 2444 + sha512 = "zoNqB7z0C0QDncN7yD1K50c4C88VPofWaCQ0gNXqO/Ac1dr/xLF/46iNF9Y+dBwq7siBO9wEh20WFHMaRpeLOg=="; 2445 }; 2446 }; 2447 "media-typer-0.3.0" = { ··· 2453 sha1 = "8710d7af0aa626f8fffa1ce00168545263255748"; 2454 }; 2455 }; 2456 "merge-descriptors-1.0.1" = { 2457 name = "merge-descriptors"; 2458 packageName = "merge-descriptors"; ··· 2462 sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61"; 2463 }; 2464 }; 2465 + "merge2-1.4.1" = { 2466 + name = "merge2"; 2467 + packageName = "merge2"; 2468 + version = "1.4.1"; 2469 + src = fetchurl { 2470 + url = "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz"; 2471 + sha512 = "8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="; 2472 + }; 2473 + }; 2474 "methods-1.1.2" = { 2475 name = "methods"; 2476 packageName = "methods"; ··· 2478 src = fetchurl { 2479 url = "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz"; 2480 sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; 2481 + }; 2482 + }; 2483 + "micromatch-4.0.2" = { 2484 + name = "micromatch"; 2485 + packageName = "micromatch"; 2486 + version = "4.0.2"; 2487 + src = fetchurl { 2488 + url = "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz"; 2489 + sha512 = "y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q=="; 2490 }; 2491 }; 2492 "mime-1.6.0" = { ··· 2516 sha512 = "WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ=="; 2517 }; 2518 }; 2519 "minimatch-3.0.4" = { 2520 name = "minimatch"; 2521 packageName = "minimatch"; ··· 2534 sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="; 2535 }; 2536 }; 2537 "mkdirp-0.5.5" = { 2538 name = "mkdirp"; 2539 packageName = "mkdirp"; ··· 2543 sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ=="; 2544 }; 2545 }; 2546 + "mocha-8.2.1" = { 2547 name = "mocha"; 2548 packageName = "mocha"; 2549 + version = "8.2.1"; 2550 src = fetchurl { 2551 + url = "https://registry.npmjs.org/mocha/-/mocha-8.2.1.tgz"; 2552 + sha512 = "cuLBVfyFfFqbNR0uUKbDGXKGk+UDFe6aR4os78XIrMQpZl/nv7JYHcvP5MFIAb374b2zFXsdgEGwmzMtP0Xg8w=="; 2553 }; 2554 }; 2555 "moment-2.24.0" = { ··· 2561 sha512 = "bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg=="; 2562 }; 2563 }; 2564 + "morgan-1.10.0" = { 2565 name = "morgan"; 2566 packageName = "morgan"; 2567 + version = "1.10.0"; 2568 src = fetchurl { 2569 + url = "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz"; 2570 + sha512 = "AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ=="; 2571 }; 2572 }; 2573 "ms-2.0.0" = { ··· 2597 sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; 2598 }; 2599 }; 2600 + "nanoid-3.1.12" = { 2601 + name = "nanoid"; 2602 + packageName = "nanoid"; 2603 + version = "3.1.12"; 2604 + src = fetchurl { 2605 + url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.12.tgz"; 2606 + sha512 = "1qstj9z5+x491jfiC4Nelk+f8XBad7LN20PmyWINJEMRSf3wcAjAWysw1qaA8z6NSKe2sjq1hRSDpBH5paCb6A=="; 2607 + }; 2608 + }; 2609 + "natural-compare-1.4.0" = { 2610 + name = "natural-compare"; 2611 + packageName = "natural-compare"; 2612 + version = "1.4.0"; 2613 + src = fetchurl { 2614 + url = "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"; 2615 + sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"; 2616 + }; 2617 + }; 2618 "nedb-1.8.0" = { 2619 name = "nedb"; 2620 packageName = "nedb"; ··· 2633 sha512 = "hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw=="; 2634 }; 2635 }; 2636 "node-emoji-1.10.0" = { 2637 name = "node-emoji"; 2638 packageName = "node-emoji"; ··· 2642 sha512 = "Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw=="; 2643 }; 2644 }; 2645 + "nopt-5.0.0" = { 2646 name = "nopt"; 2647 packageName = "nopt"; 2648 + version = "5.0.0"; 2649 src = fetchurl { 2650 + url = "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz"; 2651 + sha512 = "Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ=="; 2652 }; 2653 }; 2654 "normalize-path-3.0.0" = { ··· 2660 sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="; 2661 }; 2662 }; 2663 + "nunjucks-3.2.2" = { 2664 name = "nunjucks"; 2665 packageName = "nunjucks"; 2666 + version = "3.2.2"; 2667 src = fetchurl { 2668 + url = "https://registry.npmjs.org/nunjucks/-/nunjucks-3.2.2.tgz"; 2669 + sha512 = "KUi85OoF2NMygwODAy28Lh9qHmq5hO3rBlbkYoC8v377h4l8Pt5qFjILl0LWpMbOrZ18CzfVVUvIHUIrtED3sA=="; 2670 }; 2671 }; 2672 "oauth-sign-0.9.0" = { ··· 2678 sha512 = "fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="; 2679 }; 2680 }; 2681 + "object-hash-2.0.3" = { 2682 name = "object-hash"; 2683 packageName = "object-hash"; 2684 + version = "2.0.3"; 2685 src = fetchurl { 2686 + url = "https://registry.npmjs.org/object-hash/-/object-hash-2.0.3.tgz"; 2687 + sha512 = "JPKn0GMu+Fa3zt3Bmr66JhokJU5BaNBIh4ZeTlaCBzrBsOeXzwcKKAK1tbLiPKgvwmPXsDvvLHoWh5Bm7ofIYg=="; 2688 }; 2689 }; 2690 "on-finished-2.3.0" = { ··· 2714 sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; 2715 }; 2716 }; 2717 + "one-time-1.0.0" = { 2718 name = "one-time"; 2719 packageName = "one-time"; 2720 + version = "1.0.0"; 2721 src = fetchurl { 2722 + url = "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz"; 2723 + sha512 = "5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g=="; 2724 }; 2725 }; 2726 + "optionator-0.9.1" = { 2727 + name = "optionator"; 2728 + packageName = "optionator"; 2729 + version = "0.9.1"; 2730 src = fetchurl { 2731 + url = "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz"; 2732 + sha512 = "74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw=="; 2733 }; 2734 }; 2735 "p-cancelable-1.1.0" = { ··· 2741 sha512 = "s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw=="; 2742 }; 2743 }; 2744 "p-finally-1.0.0" = { 2745 name = "p-finally"; 2746 packageName = "p-finally"; ··· 2750 sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae"; 2751 }; 2752 }; 2753 + "p-limit-2.3.0" = { 2754 + name = "p-limit"; 2755 + packageName = "p-limit"; 2756 + version = "2.3.0"; 2757 src = fetchurl { 2758 + url = "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"; 2759 + sha512 = "//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="; 2760 }; 2761 }; 2762 + "p-limit-3.1.0" = { 2763 name = "p-limit"; 2764 packageName = "p-limit"; 2765 + version = "3.1.0"; 2766 src = fetchurl { 2767 + url = "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz"; 2768 + sha512 = "TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="; 2769 }; 2770 }; 2771 "p-locate-3.0.0" = { ··· 2777 sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ=="; 2778 }; 2779 }; 2780 + "p-locate-5.0.0" = { 2781 + name = "p-locate"; 2782 + packageName = "p-locate"; 2783 + version = "5.0.0"; 2784 + src = fetchurl { 2785 + url = "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz"; 2786 + sha512 = "LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="; 2787 + }; 2788 + }; 2789 "p-queue-2.4.2" = { 2790 name = "p-queue"; 2791 packageName = "p-queue"; ··· 2795 sha512 = "n8/y+yDJwBjoLQe1GSJbbaYQLTI7QHNZI2+rpmCDbe++WLf9HC3gf6iqj5yfPAV71W4UF3ql5W1+UBPXoXTxng=="; 2796 }; 2797 }; 2798 + "p-queue-6.6.2" = { 2799 name = "p-queue"; 2800 packageName = "p-queue"; 2801 + version = "6.6.2"; 2802 src = fetchurl { 2803 + url = "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz"; 2804 + sha512 = "RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ=="; 2805 }; 2806 }; 2807 "p-retry-4.2.0" = { ··· 2840 sha512 = "HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ=="; 2841 }; 2842 }; 2843 + "parent-module-1.0.1" = { 2844 + name = "parent-module"; 2845 + packageName = "parent-module"; 2846 + version = "1.0.1"; 2847 + src = fetchurl { 2848 + url = "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz"; 2849 + sha512 = "GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="; 2850 + }; 2851 + }; 2852 "parseurl-1.3.3" = { 2853 name = "parseurl"; 2854 packageName = "parseurl"; ··· 2865 src = fetchurl { 2866 url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"; 2867 sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"; 2868 + }; 2869 + }; 2870 + "path-exists-4.0.0" = { 2871 + name = "path-exists"; 2872 + packageName = "path-exists"; 2873 + version = "4.0.0"; 2874 + src = fetchurl { 2875 + url = "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"; 2876 + sha512 = "ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="; 2877 }; 2878 }; 2879 "path-is-absolute-1.0.1" = { ··· 2885 sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; 2886 }; 2887 }; 2888 + "path-key-3.1.1" = { 2889 name = "path-key"; 2890 packageName = "path-key"; 2891 + version = "3.1.1"; 2892 src = fetchurl { 2893 + url = "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz"; 2894 + sha512 = "ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="; 2895 }; 2896 }; 2897 "path-to-regexp-0.1.7" = { ··· 2903 sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c"; 2904 }; 2905 }; 2906 + "path-type-4.0.0" = { 2907 + name = "path-type"; 2908 + packageName = "path-type"; 2909 + version = "4.0.0"; 2910 + src = fetchurl { 2911 + url = "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz"; 2912 + sha512 = "gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="; 2913 + }; 2914 + }; 2915 "pathval-1.1.0" = { 2916 name = "pathval"; 2917 packageName = "pathval"; ··· 2930 sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; 2931 }; 2932 }; 2933 + "pg-8.5.1" = { 2934 name = "pg"; 2935 packageName = "pg"; 2936 + version = "8.5.1"; 2937 src = fetchurl { 2938 + url = "https://registry.npmjs.org/pg/-/pg-8.5.1.tgz"; 2939 + sha512 = "9wm3yX9lCfjvA98ybCyw2pADUivyNWT/yIP4ZcDVpMN0og70BUWYEGXPCTAQdGTAqnytfRADb7NERrY1qxhIqw=="; 2940 }; 2941 }; 2942 + "pg-connection-string-2.4.0" = { 2943 name = "pg-connection-string"; 2944 packageName = "pg-connection-string"; 2945 + version = "2.4.0"; 2946 src = fetchurl { 2947 + url = "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.4.0.tgz"; 2948 + sha512 = "3iBXuv7XKvxeMrIgym7njT+HlZkwZqqGX4Bu9cci8xHZNT+Um1gWKqCsAzcC0d95rcKMU5WBg6YRUcHyV0HZKQ=="; 2949 }; 2950 }; 2951 "pg-int8-1.0.1" = { ··· 2957 sha512 = "WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw=="; 2958 }; 2959 }; 2960 + "pg-minify-1.6.2" = { 2961 name = "pg-minify"; 2962 packageName = "pg-minify"; 2963 + version = "1.6.2"; 2964 src = fetchurl { 2965 + url = "https://registry.npmjs.org/pg-minify/-/pg-minify-1.6.2.tgz"; 2966 + sha512 = "1KdmFGGTP6jplJoI8MfvRlfvMiyBivMRP7/ffh4a11RUFJ7kC2J0ZHlipoKiH/1hz+DVgceon9U2qbaHpPeyPg=="; 2967 }; 2968 }; 2969 + "pg-pool-3.2.2" = { 2970 name = "pg-pool"; 2971 packageName = "pg-pool"; 2972 + version = "3.2.2"; 2973 src = fetchurl { 2974 + url = "https://registry.npmjs.org/pg-pool/-/pg-pool-3.2.2.tgz"; 2975 + sha512 = "ORJoFxAlmmros8igi608iVEbQNNZlp89diFVx6yV5v+ehmpMY9sK6QgpmgoXbmkNaBAx8cOOZh9g80kJv1ooyA=="; 2976 }; 2977 }; 2978 + "pg-promise-10.8.7" = { 2979 name = "pg-promise"; 2980 packageName = "pg-promise"; 2981 + version = "10.8.7"; 2982 src = fetchurl { 2983 + url = "https://registry.npmjs.org/pg-promise/-/pg-promise-10.8.7.tgz"; 2984 + sha512 = "gSbH+NYWD4pVOpacP9uS2xH84N7nb7K4ubKlcZchhDr8ixnIURPnNJmNLJcRgtOocpjzsKymYSm6rCFZVOngSA=="; 2985 }; 2986 }; 2987 + "pg-protocol-1.4.0" = { 2988 name = "pg-protocol"; 2989 packageName = "pg-protocol"; 2990 + version = "1.4.0"; 2991 src = fetchurl { 2992 + url = "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.4.0.tgz"; 2993 + sha512 = "El+aXWcwG/8wuFICMQjM5ZSAm6OWiJicFdNYo+VY3QP+8vI4SvLIWVe51PppTzMhikUJR+PsyIFKqfdXPz/yxA=="; 2994 }; 2995 }; 2996 "pg-types-2.2.0" = { ··· 3002 sha512 = "qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA=="; 3003 }; 3004 }; 3005 + "pgpass-1.0.4" = { 3006 name = "pgpass"; 3007 packageName = "pgpass"; 3008 + version = "1.0.4"; 3009 src = fetchurl { 3010 + url = "https://registry.npmjs.org/pgpass/-/pgpass-1.0.4.tgz"; 3011 + sha512 = "YmuA56alyBq7M59vxVBfPJrGSozru8QAdoNlWuW3cz8l+UX3cWge0vTvjKhsSHSJpo3Bom8/Mm6hf0TR5GY0+w=="; 3012 }; 3013 }; 3014 "picomatch-2.2.2" = { ··· 3038 sha1 = "027b533c0aa890e26d172d47cf9ccecc521acd35"; 3039 }; 3040 }; 3041 + "postgres-date-1.0.7" = { 3042 name = "postgres-date"; 3043 packageName = "postgres-date"; 3044 + version = "1.0.7"; 3045 src = fetchurl { 3046 + url = "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz"; 3047 + sha512 = "suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q=="; 3048 }; 3049 }; 3050 "postgres-interval-1.2.0" = { ··· 3056 sha512 = "9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ=="; 3057 }; 3058 }; 3059 + "prelude-ls-1.2.1" = { 3060 + name = "prelude-ls"; 3061 + packageName = "prelude-ls"; 3062 + version = "1.2.1"; 3063 + src = fetchurl { 3064 + url = "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz"; 3065 + sha512 = "vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="; 3066 + }; 3067 + }; 3068 "process-nextick-args-2.0.1" = { 3069 name = "process-nextick-args"; 3070 packageName = "process-nextick-args"; ··· 3074 sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; 3075 }; 3076 }; 3077 + "progress-2.0.3" = { 3078 + name = "progress"; 3079 + packageName = "progress"; 3080 + version = "2.0.3"; 3081 + src = fetchurl { 3082 + url = "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz"; 3083 + sha512 = "7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="; 3084 + }; 3085 + }; 3086 + "prom-client-13.1.0" = { 3087 name = "prom-client"; 3088 packageName = "prom-client"; 3089 + version = "13.1.0"; 3090 src = fetchurl { 3091 + url = "https://registry.npmjs.org/prom-client/-/prom-client-13.1.0.tgz"; 3092 + sha512 = "jT9VccZCWrJWXdyEtQddCDszYsiuWj5T0ekrPszi/WEegj3IZy6Mm09iOOVM86A4IKMWq8hZkT2dD9MaSe+sng=="; 3093 }; 3094 }; 3095 + "proxy-addr-2.0.6" = { 3096 name = "proxy-addr"; 3097 packageName = "proxy-addr"; 3098 + version = "2.0.6"; 3099 src = fetchurl { 3100 + url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz"; 3101 + sha512 = "dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw=="; 3102 }; 3103 }; 3104 + "psl-1.8.0" = { 3105 name = "psl"; 3106 packageName = "psl"; 3107 + version = "1.8.0"; 3108 src = fetchurl { 3109 + url = "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz"; 3110 + sha512 = "RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ=="; 3111 }; 3112 }; 3113 "punycode-2.1.1" = { ··· 3137 sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="; 3138 }; 3139 }; 3140 + "qs-6.9.6" = { 3141 + name = "qs"; 3142 + packageName = "qs"; 3143 + version = "6.9.6"; 3144 + src = fetchurl { 3145 + url = "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz"; 3146 + sha512 = "TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ=="; 3147 + }; 3148 + }; 3149 + "quick-lru-5.1.1" = { 3150 name = "quick-lru"; 3151 packageName = "quick-lru"; 3152 + version = "5.1.1"; 3153 src = fetchurl { 3154 + url = "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz"; 3155 + sha512 = "WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA=="; 3156 + }; 3157 + }; 3158 + "randombytes-2.1.0" = { 3159 + name = "randombytes"; 3160 + packageName = "randombytes"; 3161 + version = "2.1.0"; 3162 + src = fetchurl { 3163 + url = "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz"; 3164 + sha512 = "vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ=="; 3165 }; 3166 }; 3167 "randomstring-1.1.5" = { ··· 3200 sha512 = "tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw=="; 3201 }; 3202 }; 3203 + "readable-stream-2.3.7" = { 3204 name = "readable-stream"; 3205 packageName = "readable-stream"; 3206 + version = "2.3.7"; 3207 + src = fetchurl { 3208 + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz"; 3209 + sha512 = "Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw=="; 3210 + }; 3211 + }; 3212 + "readable-stream-3.6.0" = { 3213 + name = "readable-stream"; 3214 + packageName = "readable-stream"; 3215 + version = "3.6.0"; 3216 + src = fetchurl { 3217 + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz"; 3218 + sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; 3219 + }; 3220 + }; 3221 + "readdirp-3.4.0" = { 3222 + name = "readdirp"; 3223 + packageName = "readdirp"; 3224 version = "3.4.0"; 3225 src = fetchurl { 3226 + url = "https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz"; 3227 + sha512 = "0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ=="; 3228 }; 3229 }; 3230 + "readdirp-3.5.0" = { 3231 name = "readdirp"; 3232 packageName = "readdirp"; 3233 + version = "3.5.0"; 3234 src = fetchurl { 3235 + url = "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz"; 3236 + sha512 = "cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ=="; 3237 }; 3238 }; 3239 + "regenerator-runtime-0.13.7" = { 3240 name = "regenerator-runtime"; 3241 packageName = "regenerator-runtime"; 3242 + version = "0.13.7"; 3243 src = fetchurl { 3244 + url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz"; 3245 + sha512 = "a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew=="; 3246 }; 3247 }; 3248 + "regexpp-3.1.0" = { 3249 + name = "regexpp"; 3250 + packageName = "regexpp"; 3251 + version = "3.1.0"; 3252 src = fetchurl { 3253 + url = "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz"; 3254 + sha512 = "ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q=="; 3255 }; 3256 }; 3257 + "regextras-0.7.1" = { 3258 + name = "regextras"; 3259 + packageName = "regextras"; 3260 + version = "0.7.1"; 3261 src = fetchurl { 3262 + url = "https://registry.npmjs.org/regextras/-/regextras-0.7.1.tgz"; 3263 + sha512 = "9YXf6xtW+qzQ+hcMQXx95MOvfqXFgsKDZodX3qZB0x2n5Z94ioetIITsBtvJbiOyxa/6s9AtyweBLCdPmPko/w=="; 3264 }; 3265 }; 3266 + "request-2.88.2" = { 3267 + name = "request"; 3268 + packageName = "request"; 3269 + version = "2.88.2"; 3270 src = fetchurl { 3271 + url = "https://registry.npmjs.org/request/-/request-2.88.2.tgz"; 3272 + sha512 = "MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw=="; 3273 }; 3274 }; 3275 "require-directory-2.1.1" = { ··· 3281 sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; 3282 }; 3283 }; 3284 + "require-from-string-2.0.2" = { 3285 + name = "require-from-string"; 3286 + packageName = "require-from-string"; 3287 + version = "2.0.2"; 3288 + src = fetchurl { 3289 + url = "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz"; 3290 + sha512 = "Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="; 3291 + }; 3292 + }; 3293 "require-main-filename-2.0.0" = { 3294 name = "require-main-filename"; 3295 packageName = "require-main-filename"; ··· 3299 sha512 = "NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="; 3300 }; 3301 }; 3302 + "resolve-from-4.0.0" = { 3303 + name = "resolve-from"; 3304 + packageName = "resolve-from"; 3305 + version = "4.0.0"; 3306 src = fetchurl { 3307 + url = "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"; 3308 + sha512 = "pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="; 3309 }; 3310 }; 3311 "retry-0.12.0" = { ··· 3317 sha1 = "1b42a6266a21f07421d1b0b54b7dc167b01c013b"; 3318 }; 3319 }; 3320 + "reusify-1.0.4" = { 3321 + name = "reusify"; 3322 + packageName = "reusify"; 3323 + version = "1.0.4"; 3324 + src = fetchurl { 3325 + url = "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"; 3326 + sha512 = "U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="; 3327 + }; 3328 + }; 3329 + "rimraf-3.0.2" = { 3330 + name = "rimraf"; 3331 + packageName = "rimraf"; 3332 + version = "3.0.2"; 3333 + src = fetchurl { 3334 + url = "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"; 3335 + sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; 3336 + }; 3337 + }; 3338 + "run-parallel-1.1.10" = { 3339 + name = "run-parallel"; 3340 + packageName = "run-parallel"; 3341 + version = "1.1.10"; 3342 + src = fetchurl { 3343 + url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.10.tgz"; 3344 + sha512 = "zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw=="; 3345 + }; 3346 + }; 3347 "safe-buffer-5.1.2" = { 3348 name = "safe-buffer"; 3349 packageName = "safe-buffer"; ··· 3353 sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; 3354 }; 3355 }; 3356 + "safe-buffer-5.2.1" = { 3357 + name = "safe-buffer"; 3358 + packageName = "safe-buffer"; 3359 + version = "5.2.1"; 3360 + src = fetchurl { 3361 + url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"; 3362 + sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="; 3363 + }; 3364 + }; 3365 "safer-buffer-2.1.2" = { 3366 name = "safer-buffer"; 3367 packageName = "safer-buffer"; ··· 3371 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 3372 }; 3373 }; 3374 + "semver-7.3.4" = { 3375 name = "semver"; 3376 packageName = "semver"; 3377 + version = "7.3.4"; 3378 src = fetchurl { 3379 + url = "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz"; 3380 + sha512 = "tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw=="; 3381 }; 3382 }; 3383 "send-0.17.1" = { ··· 3387 src = fetchurl { 3388 url = "https://registry.npmjs.org/send/-/send-0.17.1.tgz"; 3389 sha512 = "BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg=="; 3390 + }; 3391 + }; 3392 + "serialize-javascript-5.0.1" = { 3393 + name = "serialize-javascript"; 3394 + packageName = "serialize-javascript"; 3395 + version = "5.0.1"; 3396 + src = fetchurl { 3397 + url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz"; 3398 + sha512 = "SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA=="; 3399 }; 3400 }; 3401 "serve-static-1.14.1" = { ··· 3425 sha512 = "JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="; 3426 }; 3427 }; 3428 + "shebang-command-2.0.0" = { 3429 name = "shebang-command"; 3430 packageName = "shebang-command"; 3431 + version = "2.0.0"; 3432 src = fetchurl { 3433 + url = "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz"; 3434 + sha512 = "kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="; 3435 }; 3436 }; 3437 + "shebang-regex-3.0.0" = { 3438 name = "shebang-regex"; 3439 packageName = "shebang-regex"; 3440 + version = "3.0.0"; 3441 src = fetchurl { 3442 + url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz"; 3443 + sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; 3444 }; 3445 }; 3446 "simple-swizzle-0.2.2" = { ··· 3452 sha1 = "a4da6b635ffcccca33f70d17cb92592de95e557a"; 3453 }; 3454 }; 3455 + "slash-3.0.0" = { 3456 + name = "slash"; 3457 + packageName = "slash"; 3458 + version = "3.0.0"; 3459 + src = fetchurl { 3460 + url = "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz"; 3461 + sha512 = "g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="; 3462 + }; 3463 + }; 3464 + "slice-ansi-4.0.0" = { 3465 + name = "slice-ansi"; 3466 + packageName = "slice-ansi"; 3467 + version = "4.0.0"; 3468 + src = fetchurl { 3469 + url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz"; 3470 + sha512 = "qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ=="; 3471 + }; 3472 + }; 3473 "source-map-0.6.1" = { 3474 name = "source-map"; 3475 packageName = "source-map"; ··· 3479 sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="; 3480 }; 3481 }; 3482 + "source-map-support-0.5.19" = { 3483 name = "source-map-support"; 3484 packageName = "source-map-support"; 3485 + version = "0.5.19"; 3486 + src = fetchurl { 3487 + url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz"; 3488 + sha512 = "Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw=="; 3489 + }; 3490 + }; 3491 + "spdx-exceptions-2.3.0" = { 3492 + name = "spdx-exceptions"; 3493 + packageName = "spdx-exceptions"; 3494 + version = "2.3.0"; 3495 src = fetchurl { 3496 + url = "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz"; 3497 + sha512 = "/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A=="; 3498 + }; 3499 + }; 3500 + "spdx-expression-parse-3.0.1" = { 3501 + name = "spdx-expression-parse"; 3502 + packageName = "spdx-expression-parse"; 3503 + version = "3.0.1"; 3504 + src = fetchurl { 3505 + url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz"; 3506 + sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 3507 + }; 3508 + }; 3509 + "spdx-license-ids-3.0.7" = { 3510 + name = "spdx-license-ids"; 3511 + packageName = "spdx-license-ids"; 3512 + version = "3.0.7"; 3513 + src = fetchurl { 3514 + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz"; 3515 + sha512 = "U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ=="; 3516 }; 3517 }; 3518 + "spex-3.2.0" = { 3519 name = "spex"; 3520 packageName = "spex"; 3521 + version = "3.2.0"; 3522 src = fetchurl { 3523 + url = "https://registry.npmjs.org/spex/-/spex-3.2.0.tgz"; 3524 + sha512 = "9srjJM7NaymrpwMHvSmpDeIK5GoRMX/Tq0E8aOlDPS54dDnDUIp30DrP9SphMPEETDLzEM9+4qo+KipmbtPecg=="; 3525 }; 3526 }; 3527 + "split2-3.2.2" = { 3528 + name = "split2"; 3529 + packageName = "split2"; 3530 + version = "3.2.2"; 3531 src = fetchurl { 3532 + url = "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz"; 3533 + sha512 = "9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg=="; 3534 }; 3535 }; 3536 "sprintf-js-1.0.3" = { ··· 3569 sha1 = "161c7dac177659fd9811f43771fa99381478628c"; 3570 }; 3571 }; 3572 "string-width-2.1.1" = { 3573 name = "string-width"; 3574 packageName = "string-width"; ··· 3587 sha512 = "vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w=="; 3588 }; 3589 }; 3590 + "string-width-4.2.0" = { 3591 + name = "string-width"; 3592 + packageName = "string-width"; 3593 + version = "4.2.0"; 3594 src = fetchurl { 3595 + url = "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz"; 3596 + sha512 = "zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg=="; 3597 }; 3598 }; 3599 "string_decoder-1.1.1" = { ··· 3605 sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; 3606 }; 3607 }; 3608 + "string_decoder-1.3.0" = { 3609 name = "string_decoder"; 3610 packageName = "string_decoder"; 3611 + version = "1.3.0"; 3612 src = fetchurl { 3613 + url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"; 3614 + sha512 = "hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="; 3615 }; 3616 }; 3617 "strip-ansi-4.0.0" = { ··· 3632 sha512 = "DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="; 3633 }; 3634 }; 3635 + "strip-ansi-6.0.0" = { 3636 + name = "strip-ansi"; 3637 + packageName = "strip-ansi"; 3638 + version = "6.0.0"; 3639 src = fetchurl { 3640 + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz"; 3641 + sha512 = "AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w=="; 3642 }; 3643 }; 3644 + "strip-json-comments-3.1.1" = { 3645 name = "strip-json-comments"; 3646 packageName = "strip-json-comments"; 3647 + version = "3.1.1"; 3648 src = fetchurl { 3649 + url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz"; 3650 + sha512 = "6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="; 3651 }; 3652 }; 3653 "supports-color-5.5.0" = { ··· 3659 sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; 3660 }; 3661 }; 3662 + "supports-color-7.2.0" = { 3663 name = "supports-color"; 3664 packageName = "supports-color"; 3665 + version = "7.2.0"; 3666 src = fetchurl { 3667 + url = "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"; 3668 + sha512 = "qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="; 3669 + }; 3670 + }; 3671 + "table-6.0.7" = { 3672 + name = "table"; 3673 + packageName = "table"; 3674 + version = "6.0.7"; 3675 + src = fetchurl { 3676 + url = "https://registry.npmjs.org/table/-/table-6.0.7.tgz"; 3677 + sha512 = "rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g=="; 3678 }; 3679 }; 3680 "tdigest-0.1.1" = { ··· 3695 sha512 = "uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg=="; 3696 }; 3697 }; 3698 + "text-table-0.2.0" = { 3699 + name = "text-table"; 3700 + packageName = "text-table"; 3701 + version = "0.2.0"; 3702 src = fetchurl { 3703 + url = "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"; 3704 + sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4"; 3705 }; 3706 }; 3707 "to-regex-range-5.0.1" = { ··· 3722 sha512 = "yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="; 3723 }; 3724 }; 3725 + "tough-cookie-2.5.0" = { 3726 name = "tough-cookie"; 3727 packageName = "tough-cookie"; 3728 + version = "2.5.0"; 3729 src = fetchurl { 3730 + url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz"; 3731 + sha512 = "nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g=="; 3732 }; 3733 }; 3734 "triple-beam-1.3.0" = { ··· 3740 sha512 = "XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw=="; 3741 }; 3742 }; 3743 + "ts-node-9.1.1" = { 3744 name = "ts-node"; 3745 packageName = "ts-node"; 3746 + version = "9.1.1"; 3747 src = fetchurl { 3748 + url = "https://registry.npmjs.org/ts-node/-/ts-node-9.1.1.tgz"; 3749 + sha512 = "hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg=="; 3750 }; 3751 }; 3752 + "tslib-1.14.1" = { 3753 name = "tslib"; 3754 packageName = "tslib"; 3755 + version = "1.14.1"; 3756 src = fetchurl { 3757 + url = "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz"; 3758 + sha512 = "Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="; 3759 }; 3760 }; 3761 + "tsutils-3.19.1" = { 3762 name = "tsutils"; 3763 packageName = "tsutils"; 3764 + version = "3.19.1"; 3765 src = fetchurl { 3766 + url = "https://registry.npmjs.org/tsutils/-/tsutils-3.19.1.tgz"; 3767 + sha512 = "GEdoBf5XI324lu7ycad7s6laADfnAqCw6wLGI+knxvw9vsIYBaJfYdmeCEG3FMMUiSm3OGgNb+m6utsWf5h9Vw=="; 3768 }; 3769 }; 3770 "tunnel-agent-0.6.0" = { ··· 3785 sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64"; 3786 }; 3787 }; 3788 + "type-check-0.4.0" = { 3789 + name = "type-check"; 3790 + packageName = "type-check"; 3791 + version = "0.4.0"; 3792 + src = fetchurl { 3793 + url = "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz"; 3794 + sha512 = "XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="; 3795 + }; 3796 + }; 3797 "type-detect-4.0.8" = { 3798 name = "type-detect"; 3799 packageName = "type-detect"; ··· 3803 sha512 = "0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g=="; 3804 }; 3805 }; 3806 + "type-fest-0.8.1" = { 3807 + name = "type-fest"; 3808 + packageName = "type-fest"; 3809 + version = "0.8.1"; 3810 + src = fetchurl { 3811 + url = "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz"; 3812 + sha512 = "4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA=="; 3813 + }; 3814 + }; 3815 "type-is-1.6.18" = { 3816 name = "type-is"; 3817 packageName = "type-is"; ··· 3821 sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; 3822 }; 3823 }; 3824 + "typescript-4.1.3" = { 3825 name = "typescript"; 3826 packageName = "typescript"; 3827 + version = "4.1.3"; 3828 src = fetchurl { 3829 + url = "https://registry.npmjs.org/typescript/-/typescript-4.1.3.tgz"; 3830 + sha512 = "B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg=="; 3831 }; 3832 }; 3833 "underscore-1.4.4" = { ··· 3839 sha1 = "61a6a32010622afa07963bf325203cf12239d604"; 3840 }; 3841 }; 3842 + "unhomoglyph-1.0.6" = { 3843 name = "unhomoglyph"; 3844 packageName = "unhomoglyph"; 3845 + version = "1.0.6"; 3846 src = fetchurl { 3847 + url = "https://registry.npmjs.org/unhomoglyph/-/unhomoglyph-1.0.6.tgz"; 3848 + sha512 = "7uvcWI3hWshSADBu4JpnyYbTVc7YlhF5GDW/oPD5AxIxl34k4wXR3WDkPnzLxkN32LiTCTKMQLtKVZiwki3zGg=="; 3849 }; 3850 }; 3851 "unpipe-1.0.0" = { ··· 3857 sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec"; 3858 }; 3859 }; 3860 + "uri-js-4.4.1" = { 3861 name = "uri-js"; 3862 packageName = "uri-js"; 3863 + version = "4.4.1"; 3864 src = fetchurl { 3865 + url = "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz"; 3866 + sha512 = "7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="; 3867 }; 3868 }; 3869 "util-deprecate-1.0.2" = { ··· 3893 sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="; 3894 }; 3895 }; 3896 + "uuid-8.3.2" = { 3897 name = "uuid"; 3898 packageName = "uuid"; 3899 + version = "8.3.2"; 3900 + src = fetchurl { 3901 + url = "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz"; 3902 + sha512 = "+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="; 3903 + }; 3904 + }; 3905 + "v8-compile-cache-2.2.0" = { 3906 + name = "v8-compile-cache"; 3907 + packageName = "v8-compile-cache"; 3908 + version = "2.2.0"; 3909 src = fetchurl { 3910 + url = "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz"; 3911 + sha512 = "gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q=="; 3912 }; 3913 }; 3914 "vary-1.1.2" = { ··· 3929 sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; 3930 }; 3931 }; 3932 + "which-2.0.2" = { 3933 name = "which"; 3934 packageName = "which"; 3935 + version = "2.0.2"; 3936 src = fetchurl { 3937 + url = "https://registry.npmjs.org/which/-/which-2.0.2.tgz"; 3938 + sha512 = "BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="; 3939 }; 3940 }; 3941 "which-module-2.0.0" = { ··· 3956 sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA=="; 3957 }; 3958 }; 3959 + "winston-3.3.3" = { 3960 name = "winston"; 3961 packageName = "winston"; 3962 + version = "3.3.3"; 3963 src = fetchurl { 3964 + url = "https://registry.npmjs.org/winston/-/winston-3.3.3.tgz"; 3965 + sha512 = "oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw=="; 3966 }; 3967 }; 3968 + "winston-daily-rotate-file-4.5.0" = { 3969 name = "winston-daily-rotate-file"; 3970 packageName = "winston-daily-rotate-file"; 3971 + version = "4.5.0"; 3972 src = fetchurl { 3973 + url = "https://registry.npmjs.org/winston-daily-rotate-file/-/winston-daily-rotate-file-4.5.0.tgz"; 3974 + sha512 = "/HqeWiU48dzGqcrABRlxYWVMdL6l3uKCtFSJyrqK+E2rLnSFNsgYpvwx15EgTitBLNzH69lQd/+z2ASryV2aqw=="; 3975 }; 3976 }; 3977 "winston-transport-4.3.0" = { ··· 3983 sha512 = "B2wPuwUi3vhzn/51Uukcao4dIduEiPOcOt9HJ3QeaXgkJ5Z7UwpBzxS4ZGNHtrxrUvTwemsQiSys0ihOf8Mp1A=="; 3984 }; 3985 }; 3986 + "winston-transport-4.4.0" = { 3987 + name = "winston-transport"; 3988 + packageName = "winston-transport"; 3989 + version = "4.4.0"; 3990 + src = fetchurl { 3991 + url = "https://registry.npmjs.org/winston-transport/-/winston-transport-4.4.0.tgz"; 3992 + sha512 = "Lc7/p3GtqtqPBYYtS6KCN3c77/2QCev51DvcJKbkFPQNoj1sinkGwLGFDxkXY9J6p9+EPnYs+D90uwbnaiURTw=="; 3993 + }; 3994 + }; 3995 + "word-wrap-1.2.3" = { 3996 + name = "word-wrap"; 3997 + packageName = "word-wrap"; 3998 + version = "1.2.3"; 3999 + src = fetchurl { 4000 + url = "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz"; 4001 + sha512 = "Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="; 4002 + }; 4003 + }; 4004 + "workerpool-6.0.2" = { 4005 + name = "workerpool"; 4006 + packageName = "workerpool"; 4007 + version = "6.0.2"; 4008 + src = fetchurl { 4009 + url = "https://registry.npmjs.org/workerpool/-/workerpool-6.0.2.tgz"; 4010 + sha512 = "DSNyvOpFKrNusaaUwk+ej6cBj1bmhLcBfj80elGk+ZIo5JSkq+unB1dLKEOcNfJDZgjGICfhQ0Q5TbP0PvF4+Q=="; 4011 + }; 4012 + }; 4013 "wrap-ansi-5.1.0" = { 4014 name = "wrap-ansi"; 4015 packageName = "wrap-ansi"; ··· 4019 sha512 = "QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q=="; 4020 }; 4021 }; 4022 + "wrap-ansi-7.0.0" = { 4023 + name = "wrap-ansi"; 4024 + packageName = "wrap-ansi"; 4025 + version = "7.0.0"; 4026 + src = fetchurl { 4027 + url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"; 4028 + sha512 = "YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="; 4029 + }; 4030 + }; 4031 "wrappy-1.0.2" = { 4032 name = "wrappy"; 4033 packageName = "wrappy"; ··· 4046 sha512 = "jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA=="; 4047 }; 4048 }; 4049 + "xtend-4.0.2" = { 4050 name = "xtend"; 4051 packageName = "xtend"; 4052 + version = "4.0.2"; 4053 + src = fetchurl { 4054 + url = "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"; 4055 + sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="; 4056 + }; 4057 + }; 4058 + "y18n-4.0.1" = { 4059 + name = "y18n"; 4060 + packageName = "y18n"; 4061 version = "4.0.1"; 4062 src = fetchurl { 4063 + url = "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz"; 4064 + sha512 = "wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ=="; 4065 }; 4066 }; 4067 + "y18n-5.0.5" = { 4068 name = "y18n"; 4069 packageName = "y18n"; 4070 + version = "5.0.5"; 4071 src = fetchurl { 4072 + url = "https://registry.npmjs.org/y18n/-/y18n-5.0.5.tgz"; 4073 + sha512 = "hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg=="; 4074 }; 4075 }; 4076 + "yallist-4.0.0" = { 4077 + name = "yallist"; 4078 + packageName = "yallist"; 4079 + version = "4.0.0"; 4080 src = fetchurl { 4081 + url = "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"; 4082 + sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="; 4083 }; 4084 }; 4085 "yargs-13.3.2" = { ··· 4091 sha512 = "AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw=="; 4092 }; 4093 }; 4094 + "yargs-16.2.0" = { 4095 + name = "yargs"; 4096 + packageName = "yargs"; 4097 + version = "16.2.0"; 4098 src = fetchurl { 4099 + url = "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz"; 4100 + sha512 = "D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw=="; 4101 }; 4102 }; 4103 "yargs-parser-13.1.2" = { ··· 4109 sha512 = "3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg=="; 4110 }; 4111 }; 4112 + "yargs-parser-20.2.4" = { 4113 + name = "yargs-parser"; 4114 + packageName = "yargs-parser"; 4115 + version = "20.2.4"; 4116 + src = fetchurl { 4117 + url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz"; 4118 + sha512 = "WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA=="; 4119 + }; 4120 + }; 4121 + "yargs-unparser-2.0.0" = { 4122 name = "yargs-unparser"; 4123 packageName = "yargs-unparser"; 4124 + version = "2.0.0"; 4125 src = fetchurl { 4126 + url = "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz"; 4127 + sha512 = "7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA=="; 4128 }; 4129 }; 4130 "yn-3.1.1" = { ··· 4134 src = fetchurl { 4135 url = "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz"; 4136 sha512 = "Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q=="; 4137 + }; 4138 + }; 4139 + "yocto-queue-0.1.0" = { 4140 + name = "yocto-queue"; 4141 + packageName = "yocto-queue"; 4142 + version = "0.1.0"; 4143 + src = fetchurl { 4144 + url = "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz"; 4145 + sha512 = "rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="; 4146 }; 4147 }; 4148 }; 4149 args = { 4150 name = "matrix-appservice-slack"; 4151 packageName = "matrix-appservice-slack"; 4152 + version = "1.7.0"; 4153 src = ./.; 4154 dependencies = [ 4155 + sources."@babel/code-frame-7.12.11" 4156 + sources."@babel/helper-validator-identifier-7.12.11" 4157 + (sources."@babel/highlight-7.10.4" // { 4158 + dependencies = [ 4159 + sources."chalk-2.4.2" 4160 + sources."escape-string-regexp-1.0.5" 4161 + ]; 4162 + }) 4163 + sources."@babel/runtime-7.12.13" 4164 + sources."@dabh/diagnostics-2.0.2" 4165 + (sources."@eslint/eslintrc-0.2.2" // { 4166 + dependencies = [ 4167 + sources."debug-4.3.1" 4168 + sources."ignore-4.0.6" 4169 + sources."ms-2.1.2" 4170 + ]; 4171 + }) 4172 + sources."@nodelib/fs.scandir-2.1.4" 4173 + sources."@nodelib/fs.stat-2.0.4" 4174 + sources."@nodelib/fs.walk-1.2.6" 4175 + sources."@slack/logger-2.0.0" 4176 + (sources."@slack/rtm-api-5.0.5" // { 4177 dependencies = [ 4178 sources."p-queue-2.4.2" 4179 ]; 4180 }) 4181 + sources."@slack/types-1.10.0" 4182 + (sources."@slack/web-api-5.15.0" // { 4183 dependencies = [ 4184 + sources."axios-0.21.1" 4185 ]; 4186 }) 4187 sources."@types/body-parser-1.19.0" 4188 + sources."@types/chai-4.2.14" 4189 + sources."@types/connect-3.4.34" 4190 + sources."@types/express-4.17.10" 4191 + sources."@types/express-serve-static-core-4.17.18" 4192 sources."@types/is-stream-1.1.0" 4193 + sources."@types/json-schema-7.0.6" 4194 + sources."@types/mime-2.0.3" 4195 + sources."@types/mocha-8.2.0" 4196 + sources."@types/nedb-1.8.11" 4197 + sources."@types/node-14.14.20" 4198 sources."@types/node-emoji-1.8.1" 4199 sources."@types/nunjucks-3.1.3" 4200 sources."@types/p-queue-2.3.2" 4201 + sources."@types/qs-6.9.5" 4202 sources."@types/randomstring-1.1.6" 4203 sources."@types/range-parser-1.2.3" 4204 + sources."@types/retry-0.12.0" 4205 + sources."@types/serve-static-1.13.8" 4206 + sources."@types/uuid-8.3.0" 4207 + sources."@types/ws-7.2.6" 4208 + sources."@types/yargs-15.0.12" 4209 + sources."@types/yargs-parser-15.0.0" 4210 + (sources."@typescript-eslint/eslint-plugin-4.13.0" // { 4211 + dependencies = [ 4212 + sources."debug-4.3.1" 4213 + sources."ms-2.1.2" 4214 + ]; 4215 + }) 4216 + sources."@typescript-eslint/eslint-plugin-tslint-4.13.0" 4217 + sources."@typescript-eslint/experimental-utils-4.13.0" 4218 + (sources."@typescript-eslint/parser-4.13.0" // { 4219 dependencies = [ 4220 + sources."debug-4.3.1" 4221 + sources."ms-2.1.2" 4222 + ]; 4223 + }) 4224 + sources."@typescript-eslint/scope-manager-4.13.0" 4225 + sources."@typescript-eslint/types-4.13.0" 4226 + (sources."@typescript-eslint/typescript-estree-4.13.0" // { 4227 + dependencies = [ 4228 + sources."debug-4.3.1" 4229 + sources."ms-2.1.2" 4230 ]; 4231 }) 4232 + sources."@typescript-eslint/visitor-keys-4.13.0" 4233 + sources."@ungap/promise-all-settled-1.1.2" 4234 sources."Slackdown-git://github.com/half-shot/slackdown#efd8934a3d9c3bf0064c0b217c5cf6b62ee697e4" 4235 sources."a-sync-waterfall-1.0.1" 4236 sources."abbrev-1.1.1" 4237 sources."accepts-1.3.7" 4238 + sources."acorn-7.4.1" 4239 + sources."acorn-jsx-5.3.1" 4240 + sources."ajv-6.12.6" 4241 sources."another-json-0.2.0" 4242 + sources."ansi-colors-4.1.1" 4243 + sources."ansi-regex-5.0.0" 4244 sources."ansi-styles-3.2.1" 4245 sources."anymatch-3.1.1" 4246 sources."arg-4.1.3" 4247 sources."argparse-1.0.10" 4248 sources."array-flatten-1.1.1" 4249 + sources."array-union-2.1.0" 4250 sources."array-uniq-1.0.2" 4251 sources."asap-2.0.6" 4252 sources."asn1-0.2.4" 4253 + sources."assert-options-0.7.0" 4254 sources."assert-plus-1.0.0" 4255 sources."assertion-error-1.1.0" 4256 + sources."astral-regex-2.0.0" 4257 sources."async-0.2.10" 4258 sources."async-limiter-1.0.1" 4259 sources."asynckit-0.4.0" 4260 sources."aws-sign2-0.7.0" 4261 + sources."aws4-1.11.0" 4262 + sources."axios-0.21.1" 4263 sources."balanced-match-1.0.0" 4264 sources."base-x-3.0.8" 4265 sources."basic-auth-2.0.1" 4266 sources."bcrypt-pbkdf-1.0.2" 4267 + sources."binary-extensions-2.1.0" 4268 sources."binary-search-tree-0.2.5" 4269 sources."bintrees-1.0.1" 4270 sources."body-parser-1.19.0" 4271 sources."brace-expansion-1.1.11" 4272 sources."braces-3.0.2" ··· 4275 sources."bs58-4.0.1" 4276 sources."buffer-from-1.1.1" 4277 sources."buffer-writer-2.0.0" 4278 sources."bytes-3.1.0" 4279 + sources."callsites-3.1.0" 4280 sources."camelcase-5.3.1" 4281 sources."caseless-0.12.0" 4282 sources."chai-4.2.0" 4283 + (sources."chalk-4.1.0" // { 4284 dependencies = [ 4285 + sources."ansi-styles-4.3.0" 4286 + sources."color-convert-2.0.1" 4287 + sources."color-name-1.1.4" 4288 + sources."has-flag-4.0.0" 4289 + sources."supports-color-7.2.0" 4290 ]; 4291 }) 4292 sources."check-error-1.0.2" 4293 + sources."chokidar-3.4.1" 4294 + (sources."cliui-5.0.0" // { 4295 + dependencies = [ 4296 + sources."ansi-regex-4.1.0" 4297 + sources."emoji-regex-7.0.3" 4298 + sources."is-fullwidth-code-point-2.0.0" 4299 + sources."string-width-3.1.0" 4300 + sources."strip-ansi-5.2.0" 4301 + ]; 4302 + }) 4303 sources."color-3.0.0" 4304 sources."color-convert-1.9.3" 4305 sources."color-name-1.1.3" 4306 sources."color-string-1.5.3" 4307 sources."colors-1.3.3" 4308 sources."colorspace-1.1.2" 4309 sources."combined-stream-1.0.8" 4310 + sources."comment-parser-0.7.6" 4311 sources."concat-map-0.0.1" 4312 sources."content-disposition-0.5.3" 4313 sources."content-type-1.0.4" 4314 sources."cookie-0.4.0" 4315 sources."cookie-signature-1.0.6" 4316 sources."core-util-is-1.0.2" 4317 + sources."create-require-1.1.1" 4318 + sources."cross-spawn-7.0.3" 4319 sources."dashdash-1.14.1" 4320 sources."debug-2.6.9" 4321 sources."decamelize-1.2.0" 4322 sources."deep-eql-3.0.1" 4323 + sources."deep-is-0.1.3" 4324 sources."delayed-stream-1.0.0" 4325 sources."depd-1.1.2" 4326 sources."destroy-1.0.4" 4327 + sources."diff-4.0.2" 4328 + sources."dir-glob-3.0.1" 4329 + sources."doctrine-3.0.0" 4330 sources."ecc-jsbn-0.1.2" 4331 sources."ee-first-1.1.1" 4332 + sources."emoji-regex-8.0.0" 4333 + sources."enabled-2.0.0" 4334 sources."encodeurl-1.0.2" 4335 + sources."enquirer-2.3.6" 4336 + sources."escalade-3.1.1" 4337 sources."escape-html-1.0.3" 4338 + sources."escape-string-regexp-4.0.0" 4339 + (sources."eslint-7.17.0" // { 4340 + dependencies = [ 4341 + sources."debug-4.3.1" 4342 + sources."ignore-4.0.6" 4343 + sources."ms-2.1.2" 4344 + ]; 4345 + }) 4346 + (sources."eslint-plugin-jsdoc-30.7.13" // { 4347 + dependencies = [ 4348 + sources."debug-4.3.1" 4349 + sources."ms-2.1.2" 4350 + ]; 4351 + }) 4352 + sources."eslint-plugin-prefer-arrow-1.2.2" 4353 + sources."eslint-scope-5.1.1" 4354 + (sources."eslint-utils-2.1.0" // { 4355 + dependencies = [ 4356 + sources."eslint-visitor-keys-1.3.0" 4357 + ]; 4358 + }) 4359 + sources."eslint-visitor-keys-2.0.0" 4360 + (sources."espree-7.3.1" // { 4361 + dependencies = [ 4362 + sources."eslint-visitor-keys-1.3.0" 4363 + ]; 4364 + }) 4365 sources."esprima-4.0.1" 4366 + (sources."esquery-1.3.1" // { 4367 + dependencies = [ 4368 + sources."estraverse-5.2.0" 4369 + ]; 4370 + }) 4371 + (sources."esrecurse-4.3.0" // { 4372 + dependencies = [ 4373 + sources."estraverse-5.2.0" 4374 + ]; 4375 + }) 4376 + sources."estraverse-4.3.0" 4377 + sources."esutils-2.0.3" 4378 sources."etag-1.8.1" 4379 sources."eventemitter3-3.1.2" 4380 sources."express-4.17.1" 4381 sources."extend-3.0.2" 4382 sources."extsprintf-1.3.0" 4383 + sources."fast-deep-equal-3.1.3" 4384 + sources."fast-glob-3.2.4" 4385 + sources."fast-json-stable-stringify-2.1.0" 4386 + sources."fast-levenshtein-2.0.6" 4387 sources."fast-safe-stringify-2.0.6" 4388 + sources."fastq-1.10.0" 4389 + sources."file-entry-cache-6.0.0" 4390 + sources."file-stream-rotator-0.5.7" 4391 sources."fill-range-7.0.1" 4392 sources."finalhandler-1.1.2" 4393 + sources."find-up-5.0.0" 4394 sources."finity-0.5.4" 4395 + sources."flat-5.0.2" 4396 + sources."flat-cache-3.0.4" 4397 + sources."flatted-3.1.0" 4398 + sources."fn.name-1.1.0" 4399 + sources."follow-redirects-1.13.1" 4400 sources."forever-agent-0.6.1" 4401 + sources."form-data-2.5.1" 4402 sources."forwarded-0.1.2" 4403 sources."fresh-0.5.2" 4404 sources."fs.realpath-1.0.0" 4405 + sources."fsevents-2.1.3" 4406 + sources."functional-red-black-tree-1.0.1" 4407 sources."generate-function-2.3.1" 4408 sources."generate-object-property-1.2.0" 4409 sources."get-caller-file-2.0.5" 4410 sources."get-func-name-2.0.0" 4411 sources."getpass-0.1.7" 4412 + sources."glob-7.1.6" 4413 sources."glob-parent-5.1.1" 4414 + sources."globals-12.4.0" 4415 + sources."globby-11.0.2" 4416 sources."growl-1.10.5" 4417 sources."har-schema-2.0.0" 4418 + sources."har-validator-5.1.5" 4419 sources."has-flag-3.0.0" 4420 sources."he-1.2.0" 4421 sources."http-errors-1.7.2" 4422 sources."http-signature-1.2.0" 4423 sources."iconv-lite-0.4.24" 4424 + sources."ignore-5.1.8" 4425 sources."immediate-3.0.6" 4426 + sources."import-fresh-3.3.0" 4427 + sources."imurmurhash-0.1.4" 4428 sources."inflight-1.0.6" 4429 sources."inherits-2.0.3" 4430 + sources."ipaddr.js-1.9.1" 4431 sources."is-arrayish-0.3.2" 4432 sources."is-binary-path-2.1.0" 4433 sources."is-extglob-2.1.1" 4434 + sources."is-fullwidth-code-point-3.0.0" 4435 sources."is-glob-4.0.1" 4436 sources."is-my-ip-valid-1.0.0" 4437 + sources."is-my-json-valid-2.20.5" 4438 sources."is-number-7.0.0" 4439 + sources."is-plain-obj-2.1.0" 4440 sources."is-property-1.0.2" 4441 sources."is-stream-1.1.0" 4442 sources."is-typedarray-1.0.0" 4443 sources."isarray-1.0.0" 4444 sources."isexe-2.0.0" 4445 sources."isstream-0.1.2" 4446 sources."js-tokens-4.0.0" 4447 + sources."js-yaml-3.14.0" 4448 sources."jsbn-0.1.1" 4449 + sources."jsdoctypeparser-9.0.0" 4450 sources."json-schema-0.2.3" 4451 sources."json-schema-traverse-0.4.1" 4452 + sources."json-stable-stringify-without-jsonify-1.0.1" 4453 sources."json-stringify-safe-5.0.1" 4454 + sources."jsonpointer-4.1.0" 4455 sources."jsprim-1.4.1" 4456 + sources."kuler-2.0.0" 4457 + sources."levn-0.4.1" 4458 sources."lie-3.1.1" 4459 sources."localforage-1.7.3" 4460 + sources."locate-path-6.0.0" 4461 + sources."lodash-4.17.20" 4462 sources."lodash.toarray-4.4.0" 4463 + sources."log-symbols-4.0.0" 4464 + (sources."logform-2.2.0" // { 4465 dependencies = [ 4466 + sources."fecha-4.2.0" 4467 sources."ms-2.1.2" 4468 ]; 4469 }) 4470 + sources."loglevel-1.7.1" 4471 + sources."lru-cache-6.0.0" 4472 sources."make-error-1.3.6" 4473 + sources."matrix-appservice-0.7.1" 4474 + (sources."matrix-appservice-bridge-2.5.0" // { 4475 dependencies = [ 4476 + sources."argparse-2.0.1" 4477 + sources."js-yaml-4.0.0" 4478 + ]; 4479 + }) 4480 + (sources."matrix-js-sdk-9.6.0" // { 4481 + dependencies = [ 4482 + sources."qs-6.9.6" 4483 ]; 4484 }) 4485 sources."media-typer-0.3.0" 4486 sources."merge-descriptors-1.0.1" 4487 + sources."merge2-1.4.1" 4488 sources."methods-1.1.2" 4489 + sources."micromatch-4.0.2" 4490 sources."mime-1.6.0" 4491 sources."mime-db-1.40.0" 4492 sources."mime-types-2.1.24" 4493 sources."minimatch-3.0.4" 4494 sources."minimist-1.2.5" 4495 sources."mkdirp-0.5.5" 4496 + (sources."mocha-8.2.1" // { 4497 dependencies = [ 4498 + sources."ansi-regex-4.1.0" 4499 + sources."chokidar-3.4.3" 4500 + sources."debug-4.2.0" 4501 + sources."emoji-regex-7.0.3" 4502 + sources."has-flag-4.0.0" 4503 + sources."is-fullwidth-code-point-2.0.0" 4504 + sources."locate-path-3.0.0" 4505 + sources."ms-2.1.2" 4506 + sources."p-limit-2.3.0" 4507 + sources."p-locate-3.0.0" 4508 + sources."path-exists-3.0.0" 4509 + sources."readdirp-3.5.0" 4510 + sources."string-width-3.1.0" 4511 + sources."strip-ansi-5.2.0" 4512 + sources."supports-color-7.2.0" 4513 + (sources."yargs-13.3.2" // { 4514 + dependencies = [ 4515 + sources."find-up-3.0.0" 4516 + ]; 4517 + }) 4518 ]; 4519 }) 4520 sources."moment-2.24.0" 4521 + (sources."morgan-1.10.0" // { 4522 + dependencies = [ 4523 + sources."depd-2.0.0" 4524 + ]; 4525 + }) 4526 sources."ms-2.0.0" 4527 + sources."nanoid-3.1.12" 4528 + sources."natural-compare-1.4.0" 4529 sources."nedb-1.8.0" 4530 sources."negotiator-0.6.2" 4531 sources."node-emoji-1.10.0" 4532 + sources."nopt-5.0.0" 4533 sources."normalize-path-3.0.0" 4534 + (sources."nunjucks-3.2.2" // { 4535 dependencies = [ 4536 + sources."commander-5.1.0" 4537 ]; 4538 }) 4539 sources."oauth-sign-0.9.0" 4540 + sources."object-hash-2.0.3" 4541 sources."on-finished-2.3.0" 4542 sources."on-headers-1.0.2" 4543 sources."once-1.4.0" 4544 + sources."one-time-1.0.0" 4545 + sources."optionator-0.9.1" 4546 sources."p-cancelable-1.1.0" 4547 sources."p-finally-1.0.0" 4548 + sources."p-limit-3.1.0" 4549 + sources."p-locate-5.0.0" 4550 + (sources."p-queue-6.6.2" // { 4551 dependencies = [ 4552 + sources."eventemitter3-4.0.7" 4553 ]; 4554 }) 4555 sources."p-retry-4.2.0" 4556 sources."p-timeout-3.2.0" 4557 sources."p-try-2.2.0" 4558 sources."packet-reader-1.0.0" 4559 + sources."parent-module-1.0.1" 4560 sources."parseurl-1.3.3" 4561 + sources."path-exists-4.0.0" 4562 sources."path-is-absolute-1.0.1" 4563 + sources."path-key-3.1.1" 4564 sources."path-to-regexp-0.1.7" 4565 + sources."path-type-4.0.0" 4566 sources."pathval-1.1.0" 4567 sources."performance-now-2.1.0" 4568 + sources."pg-8.5.1" 4569 + sources."pg-connection-string-2.4.0" 4570 sources."pg-int8-1.0.1" 4571 + sources."pg-minify-1.6.2" 4572 + sources."pg-pool-3.2.2" 4573 + sources."pg-promise-10.8.7" 4574 + sources."pg-protocol-1.4.0" 4575 sources."pg-types-2.2.0" 4576 + sources."pgpass-1.0.4" 4577 sources."picomatch-2.2.2" 4578 sources."postgres-array-2.0.0" 4579 sources."postgres-bytea-1.0.0" 4580 + sources."postgres-date-1.0.7" 4581 sources."postgres-interval-1.2.0" 4582 + sources."prelude-ls-1.2.1" 4583 sources."process-nextick-args-2.0.1" 4584 + sources."progress-2.0.3" 4585 + sources."prom-client-13.1.0" 4586 + sources."proxy-addr-2.0.6" 4587 + sources."psl-1.8.0" 4588 sources."punycode-2.1.1" 4589 sources."qs-6.7.0" 4590 + sources."quick-lru-5.1.1" 4591 + sources."randombytes-2.1.0" 4592 sources."randomstring-1.1.5" 4593 sources."range-parser-1.2.1" 4594 sources."raw-body-2.4.0" 4595 + sources."readable-stream-3.6.0" 4596 + sources."readdirp-3.4.0" 4597 + sources."regenerator-runtime-0.13.7" 4598 + sources."regexpp-3.1.0" 4599 + sources."regextras-0.7.1" 4600 + (sources."request-2.88.2" // { 4601 dependencies = [ 4602 + sources."form-data-2.3.3" 4603 sources."qs-6.5.2" 4604 sources."uuid-3.4.0" 4605 ]; 4606 }) 4607 sources."require-directory-2.1.1" 4608 + sources."require-from-string-2.0.2" 4609 sources."require-main-filename-2.0.0" 4610 + sources."resolve-from-4.0.0" 4611 sources."retry-0.12.0" 4612 + sources."reusify-1.0.4" 4613 + sources."rimraf-3.0.2" 4614 + sources."run-parallel-1.1.10" 4615 sources."safe-buffer-5.1.2" 4616 sources."safer-buffer-2.1.2" 4617 + sources."semver-7.3.4" 4618 (sources."send-0.17.1" // { 4619 dependencies = [ 4620 sources."ms-2.1.1" 4621 ]; 4622 }) 4623 + sources."serialize-javascript-5.0.1" 4624 sources."serve-static-1.14.1" 4625 sources."set-blocking-2.0.0" 4626 sources."setprototypeof-1.1.1" 4627 + sources."shebang-command-2.0.0" 4628 + sources."shebang-regex-3.0.0" 4629 sources."simple-swizzle-0.2.2" 4630 + sources."slash-3.0.0" 4631 + (sources."slice-ansi-4.0.0" // { 4632 + dependencies = [ 4633 + sources."ansi-styles-4.3.0" 4634 + sources."color-convert-2.0.1" 4635 + sources."color-name-1.1.4" 4636 + ]; 4637 + }) 4638 sources."source-map-0.6.1" 4639 + sources."source-map-support-0.5.19" 4640 + sources."spdx-exceptions-2.3.0" 4641 + sources."spdx-expression-parse-3.0.1" 4642 + sources."spdx-license-ids-3.0.7" 4643 + sources."spex-3.2.0" 4644 + sources."split2-3.2.2" 4645 sources."sprintf-js-1.0.3" 4646 sources."sshpk-1.16.1" 4647 sources."stack-trace-0.0.10" 4648 sources."statuses-1.5.0" 4649 + sources."string-width-4.2.0" 4650 + (sources."string_decoder-1.3.0" // { 4651 + dependencies = [ 4652 + sources."safe-buffer-5.2.1" 4653 + ]; 4654 + }) 4655 + sources."strip-ansi-6.0.0" 4656 + sources."strip-json-comments-3.1.1" 4657 sources."supports-color-5.5.0" 4658 + (sources."table-6.0.7" // { 4659 + dependencies = [ 4660 + sources."ajv-7.0.3" 4661 + sources."json-schema-traverse-1.0.0" 4662 + ]; 4663 + }) 4664 sources."tdigest-0.1.1" 4665 sources."text-hex-1.0.0" 4666 + sources."text-table-0.2.0" 4667 sources."to-regex-range-5.0.1" 4668 sources."toidentifier-1.0.0" 4669 + sources."tough-cookie-2.5.0" 4670 sources."triple-beam-1.3.0" 4671 + sources."ts-node-9.1.1" 4672 + sources."tslib-1.14.1" 4673 + sources."tsutils-3.19.1" 4674 sources."tunnel-agent-0.6.0" 4675 sources."tweetnacl-0.14.5" 4676 + sources."type-check-0.4.0" 4677 sources."type-detect-4.0.8" 4678 + sources."type-fest-0.8.1" 4679 sources."type-is-1.6.18" 4680 + sources."typescript-4.1.3" 4681 sources."underscore-1.4.4" 4682 + sources."unhomoglyph-1.0.6" 4683 sources."unpipe-1.0.0" 4684 + sources."uri-js-4.4.1" 4685 sources."util-deprecate-1.0.2" 4686 sources."utils-merge-1.0.1" 4687 + sources."uuid-8.3.2" 4688 + sources."v8-compile-cache-2.2.0" 4689 sources."vary-1.1.2" 4690 sources."verror-1.10.0" 4691 + sources."which-2.0.2" 4692 sources."which-module-2.0.0" 4693 (sources."wide-align-1.1.3" // { 4694 dependencies = [ 4695 sources."ansi-regex-3.0.0" 4696 + sources."is-fullwidth-code-point-2.0.0" 4697 sources."string-width-2.1.1" 4698 sources."strip-ansi-4.0.0" 4699 ]; 4700 }) 4701 + (sources."winston-3.3.3" // { 4702 dependencies = [ 4703 + sources."async-3.2.0" 4704 + sources."is-stream-2.0.0" 4705 + sources."string_decoder-1.1.1" 4706 + (sources."winston-transport-4.4.0" // { 4707 + dependencies = [ 4708 + sources."readable-stream-2.3.7" 4709 + ]; 4710 + }) 4711 ]; 4712 }) 4713 + sources."winston-daily-rotate-file-4.5.0" 4714 + (sources."winston-transport-4.3.0" // { 4715 dependencies = [ 4716 + sources."readable-stream-2.3.6" 4717 + sources."string_decoder-1.1.1" 4718 ]; 4719 }) 4720 + sources."word-wrap-1.2.3" 4721 + sources."workerpool-6.0.2" 4722 + (sources."wrap-ansi-5.1.0" // { 4723 dependencies = [ 4724 + sources."ansi-regex-4.1.0" 4725 + sources."emoji-regex-7.0.3" 4726 + sources."is-fullwidth-code-point-2.0.0" 4727 + sources."string-width-3.1.0" 4728 + sources."strip-ansi-5.2.0" 4729 ]; 4730 }) 4731 sources."wrappy-1.0.2" 4732 sources."ws-5.2.2" 4733 + sources."xtend-4.0.2" 4734 + sources."y18n-4.0.1" 4735 + sources."yallist-4.0.0" 4736 + (sources."yargs-16.2.0" // { 4737 + dependencies = [ 4738 + sources."ansi-styles-4.3.0" 4739 + sources."cliui-7.0.4" 4740 + sources."color-convert-2.0.1" 4741 + sources."color-name-1.1.4" 4742 + sources."wrap-ansi-7.0.0" 4743 + sources."y18n-5.0.5" 4744 + sources."yargs-parser-20.2.4" 4745 + ]; 4746 + }) 4747 + sources."yargs-parser-13.1.2" 4748 + (sources."yargs-unparser-2.0.0" // { 4749 dependencies = [ 4750 + sources."camelcase-6.2.0" 4751 + sources."decamelize-4.0.0" 4752 ]; 4753 }) 4754 sources."yn-3.1.1" 4755 + sources."yocto-queue-0.1.0" 4756 ]; 4757 buildInputs = globalBuildInputs; 4758 meta = {
+1
pkgs/servers/sql/postgresql/default.nix
··· 216 this = self.postgresql_10; 217 thisAttr = "postgresql_10"; 218 inherit self; 219 }; 220 221 postgresql_11 = self.callPackage generic {
··· 216 this = self.postgresql_10; 217 thisAttr = "postgresql_10"; 218 inherit self; 219 + icu = self.icu67; 220 }; 221 222 postgresql_11 = self.callPackage generic {
+2 -2
pkgs/tools/admin/salt/default.nix
··· 7 }: 8 python3.pkgs.buildPythonApplication rec { 9 pname = "salt"; 10 - version = "3002.6"; 11 12 src = python3.pkgs.fetchPypi { 13 inherit pname version; 14 - sha256 = "/8R4VpNj4dF7ajoMQh6q6cB5u+q8THcloiLQ+/kDoKU="; 15 }; 16 17 propagatedBuildInputs = with python3.pkgs; [
··· 7 }: 8 python3.pkgs.buildPythonApplication rec { 9 pname = "salt"; 10 + version = "3003"; 11 12 src = python3.pkgs.fetchPypi { 13 inherit pname version; 14 + sha256 = "xGiXM9/nOM8ofjHLP908uNFgYpUgKxjY5m1I03LVync="; 15 }; 16 17 propagatedBuildInputs = with python3.pkgs; [
+2 -2
pkgs/tools/filesystems/squashfs-tools-ng/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "squashfs-tools-ng"; 7 - version = "1.0.4"; 8 9 src = fetchurl { 10 url = "https://infraroot.at/pub/squashfs/squashfs-tools-ng-${version}.tar.xz"; 11 - sha256 = "04zvpws1nk3r2kr1k5in9di9fhn4zzciyndgnxnijmhiqpyrx072"; 12 }; 13 14 nativeBuildInputs = [ doxygen graphviz pkg-config perl ];
··· 4 5 stdenv.mkDerivation rec { 6 pname = "squashfs-tools-ng"; 7 + version = "1.1.0"; 8 9 src = fetchurl { 10 url = "https://infraroot.at/pub/squashfs/squashfs-tools-ng-${version}.tar.xz"; 11 + sha256 = "1swsw5j8rrjxdxsfyd446f6g8f0k3mwg15baivi953i69c9981qi"; 12 }; 13 14 nativeBuildInputs = [ doxygen graphviz pkg-config perl ];
+30
pkgs/tools/misc/quich/default.nix
···
··· 1 + { lib, stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "quich"; 5 + version = "3.1.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "Usbac"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "1n9c01q2v6g9wnmxp248yclhp8cxclnj0yyn1qrvjsn6srcpr22c"; 12 + }; 13 + 14 + doCheck = true; 15 + 16 + makeFlags = [ "DESTDIR=" "PREFIX=$(out)" "CC=${stdenv.cc.targetPrefix}cc" ]; 17 + 18 + meta = with lib; { 19 + description = "The advanced terminal calculator"; 20 + longDescription = '' 21 + Quich is a compact, fast, powerful and useful calculator for your terminal 22 + with numerous features, supporting Windows and Linux Systems, 23 + written in ANSI C. 24 + ''; 25 + homepage = "https://github.com/Usbac/quich"; 26 + license = licenses.mit; 27 + maintainers = [ maintainers.xdhampus ]; 28 + platforms = platforms.all; 29 + }; 30 + }
+25 -16
pkgs/tools/misc/vector/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, rustPlatform, openssl, pkg-config, protobuf 2 - , Security, libiconv, rdkafka, tzdata, coreutils, CoreServices 3 - 4 - , features ? 5 - ([ "jemallocator" "rdkafka" "rdkafka/dynamic_linking" ] 6 ++ (lib.optional stdenv.targetPlatform.isUnix "unix") 7 ++ [ "sinks" "sources" "transforms" ]) 8 }: 9 10 rustPlatform.buildRustPackage rec { 11 pname = "vector"; 12 - version = "0.12.1"; 13 14 src = fetchFromGitHub { 15 - owner = "timberio"; 16 - repo = pname; 17 - rev = "v${version}"; 18 - sha256 = "0sw05472znxmggckxjbrl3b8ky8nsw42xmrsb41p8z4q0aw115fd"; 19 }; 20 21 - cargoSha256 = "0mfhrdqry6qrzfx5px1zqgfv5iqa186vl2yh290ibinkxy0x5fa9"; 22 nativeBuildInputs = [ pkg-config ]; 23 buildInputs = [ openssl protobuf rdkafka ] 24 - ++ lib.optional stdenv.isDarwin [ Security libiconv coreutils CoreServices ]; 25 26 # needed for internal protobuf c wrapper library 27 - PROTOC="${protobuf}/bin/protoc"; 28 - PROTOC_INCLUDE="${protobuf}/include"; 29 30 cargoBuildFlags = [ "--no-default-features" "--features" (lib.concatStringsSep "," features) ]; 31 checkPhase = "TZDIR=${tzdata}/share/zoneinfo cargo test --no-default-features --features ${lib.concatStringsSep "," features} -- --test-threads 1"; ··· 54 55 meta = with lib; { 56 description = "A high-performance logs, metrics, and events router"; 57 - homepage = "https://github.com/timberio/vector"; 58 - license = with licenses; [ asl20 ]; 59 maintainers = with maintainers; [ thoughtpolice happysalada ]; 60 }; 61 }
··· 1 + { stdenv 2 + , lib 3 + , fetchFromGitHub 4 + , rustPlatform 5 + , openssl 6 + , pkg-config 7 + , protobuf 8 + , Security 9 + , libiconv 10 + , rdkafka 11 + , tzdata 12 + , coreutils 13 + , CoreServices 14 + , features ? ([ "jemallocator" "rdkafka" "rdkafka/dynamic_linking" ] 15 ++ (lib.optional stdenv.targetPlatform.isUnix "unix") 16 ++ [ "sinks" "sources" "transforms" ]) 17 }: 18 19 rustPlatform.buildRustPackage rec { 20 pname = "vector"; 21 + version = "0.12.2"; 22 23 src = fetchFromGitHub { 24 + owner = "timberio"; 25 + repo = pname; 26 + rev = "v${version}"; 27 + sha256 = "sha256-LutCzpJo47wvEze7bAObRVraNhVuQFc9NQ79NzKA9CM="; 28 }; 29 30 + cargoSha256 = "sha256-GU5p9DB5Bk8eQc1B/WA87grbVJVcT1ELJ0WzmRYgDzc="; 31 nativeBuildInputs = [ pkg-config ]; 32 buildInputs = [ openssl protobuf rdkafka ] 33 + ++ lib.optional stdenv.isDarwin [ Security libiconv coreutils CoreServices ]; 34 35 # needed for internal protobuf c wrapper library 36 + PROTOC = "${protobuf}/bin/protoc"; 37 + PROTOC_INCLUDE = "${protobuf}/include"; 38 39 cargoBuildFlags = [ "--no-default-features" "--features" (lib.concatStringsSep "," features) ]; 40 checkPhase = "TZDIR=${tzdata}/share/zoneinfo cargo test --no-default-features --features ${lib.concatStringsSep "," features} -- --test-threads 1"; ··· 63 64 meta = with lib; { 65 description = "A high-performance logs, metrics, and events router"; 66 + homepage = "https://github.com/timberio/vector"; 67 + license = with licenses; [ asl20 ]; 68 maintainers = with maintainers; [ thoughtpolice happysalada ]; 69 }; 70 }
+1 -1
pkgs/tools/package-management/nix/default.nix
··· 41 42 nativeBuildInputs = 43 [ pkg-config ] 44 - ++ lib.optionals (is24 && stdenv.isLinux) [ util-linuxMinimal ] 45 ++ lib.optionals is24 46 [ autoreconfHook 47 autoconf-archive
··· 41 42 nativeBuildInputs = 43 [ pkg-config ] 44 + ++ lib.optionals stdenv.isLinux [ util-linuxMinimal ] 45 ++ lib.optionals is24 46 [ autoreconfHook 47 autoconf-archive
+22
pkgs/top-level/all-packages.nix
··· 779 780 metapixel = callPackage ../tools/graphics/metapixel { }; 781 782 tfk8s = callPackage ../tools/misc/tfk8s { }; 783 784 xtrt = callPackage ../tools/archivers/xtrt { }; ··· 1033 }; 1034 1035 async = callPackage ../development/tools/async {}; 1036 1037 atheme = callPackage ../servers/irc/atheme { }; 1038 ··· 3625 3626 cutensor = cutensor_cudatoolkit_10; 3627 3628 curlFull = curl.override { 3629 ldapSupport = true; 3630 }; ··· 4422 4423 libbladeRF = callPackage ../development/libraries/libbladeRF { }; 4424 4425 lp_solve = callPackage ../applications/science/math/lp_solve { }; 4426 4427 fastlane = callPackage ../tools/admin/fastlane { }; ··· 4690 fetchPypi 4691 dropbox 4692 annexremote 4693 humanfriendly; 4694 }; 4695 ··· 8853 ubidump = python3Packages.callPackage ../tools/filesystems/ubidump { }; 8854 8855 ubridge = callPackage ../tools/networking/ubridge { }; 8856 8857 ucl = callPackage ../development/libraries/ucl { }; 8858 ··· 28103 clock-override = callPackage ../desktops/gnome-3/extensions/clock-override { }; 28104 dash-to-dock = callPackage ../desktops/gnome-3/extensions/dash-to-dock { }; 28105 dash-to-panel = callPackage ../desktops/gnome-3/extensions/dash-to-panel { }; 28106 draw-on-your-screen = callPackage ../desktops/gnome-3/extensions/draw-on-your-screen { }; 28107 drop-down-terminal = callPackage ../desktops/gnome-3/extensions/drop-down-terminal { }; 28108 dynamic-panel-transparency = callPackage ../desktops/gnome-3/extensions/dynamic-panel-transparency { };
··· 779 780 metapixel = callPackage ../tools/graphics/metapixel { }; 781 782 + quich = callPackage ../tools/misc/quich { } ; 783 + 784 tfk8s = callPackage ../tools/misc/tfk8s { }; 785 786 xtrt = callPackage ../tools/archivers/xtrt { }; ··· 1035 }; 1036 1037 async = callPackage ../development/tools/async {}; 1038 + 1039 + async-profiler = callPackage ../development/tools/async-profiler { }; 1040 1041 atheme = callPackage ../servers/irc/atheme { }; 1042 ··· 3629 3630 cutensor = cutensor_cudatoolkit_10; 3631 3632 + curie = callPackage ../data/fonts/curie { }; 3633 + 3634 curlFull = curl.override { 3635 ldapSupport = true; 3636 }; ··· 4428 4429 libbladeRF = callPackage ../development/libraries/libbladeRF { }; 4430 4431 + libbtbb = callPackage ../development/libraries/libbtbb { }; 4432 + 4433 lp_solve = callPackage ../applications/science/math/lp_solve { }; 4434 4435 fastlane = callPackage ../tools/admin/fastlane { }; ··· 4698 fetchPypi 4699 dropbox 4700 annexremote 4701 + humanfriendly; 4702 + }; 4703 + 4704 + git-annex-remote-googledrive = callPackage ../applications/version-management/git-and-tools/git-annex-remote-googledrive { 4705 + inherit (python3Packages) 4706 + buildPythonApplication 4707 + fetchPypi 4708 + annexremote 4709 + drivelib 4710 + GitPython 4711 + tenacity 4712 humanfriendly; 4713 }; 4714 ··· 8872 ubidump = python3Packages.callPackage ../tools/filesystems/ubidump { }; 8873 8874 ubridge = callPackage ../tools/networking/ubridge { }; 8875 + 8876 + ubertooth = callPackage ../applications/radio/ubertooth { }; 8877 8878 ucl = callPackage ../development/libraries/ucl { }; 8879 ··· 28124 clock-override = callPackage ../desktops/gnome-3/extensions/clock-override { }; 28125 dash-to-dock = callPackage ../desktops/gnome-3/extensions/dash-to-dock { }; 28126 dash-to-panel = callPackage ../desktops/gnome-3/extensions/dash-to-panel { }; 28127 + disable-unredirect = callPackage ../desktops/gnome-3/extensions/disable-unredirect { }; 28128 draw-on-your-screen = callPackage ../desktops/gnome-3/extensions/draw-on-your-screen { }; 28129 drop-down-terminal = callPackage ../desktops/gnome-3/extensions/drop-down-terminal { }; 28130 dynamic-panel-transparency = callPackage ../desktops/gnome-3/extensions/dynamic-panel-transparency { };
+4
pkgs/top-level/kodi-packages.nix
··· 106 107 inputstream-adaptive = callPackage ../applications/video/kodi-packages/inputstream-adaptive { }; 108 109 inputstreamhelper = callPackage ../applications/video/kodi-packages/inputstreamhelper { }; 110 111 kodi-six = callPackage ../applications/video/kodi-packages/kodi-six { };
··· 106 107 inputstream-adaptive = callPackage ../applications/video/kodi-packages/inputstream-adaptive { }; 108 109 + inputstream-ffmpegdirect = callPackage ../applications/video/kodi-packages/inputstream-ffmpegdirect { }; 110 + 111 + inputstream-rtmp = callPackage ../applications/video/kodi-packages/inputstream-rtmp { }; 112 + 113 inputstreamhelper = callPackage ../applications/video/kodi-packages/inputstreamhelper { }; 114 115 kodi-six = callPackage ../applications/video/kodi-packages/kodi-six { };
+1 -5
pkgs/top-level/ocaml-packages.nix
··· 238 239 decompress = callPackage ../development/ocaml-modules/decompress { }; 240 241 - decompress-1-2 = callPackage ../development/ocaml-modules/decompress/1.2.nix { }; 242 - 243 diet = callPackage ../development/ocaml-modules/diet { }; 244 245 digestif = callPackage ../development/ocaml-modules/digestif { }; ··· 415 416 hxd = callPackage ../development/ocaml-modules/hxd { }; 417 418 - imagelib = callPackage ../development/ocaml-modules/imagelib { 419 - decompress = decompress-1-2; 420 - }; 421 422 inotify = callPackage ../development/ocaml-modules/inotify { }; 423
··· 238 239 decompress = callPackage ../development/ocaml-modules/decompress { }; 240 241 diet = callPackage ../development/ocaml-modules/diet { }; 242 243 digestif = callPackage ../development/ocaml-modules/digestif { }; ··· 413 414 hxd = callPackage ../development/ocaml-modules/hxd { }; 415 416 + imagelib = callPackage ../development/ocaml-modules/imagelib { }; 417 418 inotify = callPackage ../development/ocaml-modules/inotify { }; 419
+4
pkgs/top-level/python-packages.nix
··· 2064 2065 drf-yasg = callPackage ../development/python-modules/drf-yasg { }; 2066 2067 drms = callPackage ../development/python-modules/drms { }; 2068 2069 dropbox = callPackage ../development/python-modules/dropbox { }; ··· 2239 executor = callPackage ../development/python-modules/executor { }; 2240 2241 exifread = callPackage ../development/python-modules/exifread { }; 2242 2243 exrex = callPackage ../development/python-modules/exrex { }; 2244
··· 2064 2065 drf-yasg = callPackage ../development/python-modules/drf-yasg { }; 2066 2067 + drivelib = callPackage ../development/python-modules/drivelib { }; 2068 + 2069 drms = callPackage ../development/python-modules/drms { }; 2070 2071 dropbox = callPackage ../development/python-modules/dropbox { }; ··· 2241 executor = callPackage ../development/python-modules/executor { }; 2242 2243 exifread = callPackage ../development/python-modules/exifread { }; 2244 + 2245 + expiringdict = callPackage ../development/python-modules/expiringdict { }; 2246 2247 exrex = callPackage ../development/python-modules/exrex { }; 2248