Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 40e26686 df0bbd39

+3749 -669
+18
maintainers/maintainer-list.nix
··· 2420 githubId = 20808761; 2421 name = "cmfwyp"; 2422 }; 2423 cobbal = { 2424 email = "andrew.cobb@gmail.com"; 2425 github = "cobbal"; ··· 7716 githubId = 31056089; 7717 name = "Tom Ho"; 7718 }; 7719 makefu = { 7720 email = "makefu@syntax-fehler.de"; 7721 github = "makefu"; ··· 11755 github = "snaar"; 11756 githubId = 602439; 11757 name = "Serguei Narojnyi"; 11758 }; 11759 snicket2100 = { 11760 email = "57048005+snicket2100@users.noreply.github.com";
··· 2420 githubId = 20808761; 2421 name = "cmfwyp"; 2422 }; 2423 + cmm = { 2424 + email = "repo@cmm.kakpryg.net"; 2425 + github = "cmm"; 2426 + githubId = 718298; 2427 + name = "Michael Livshin"; 2428 + }; 2429 cobbal = { 2430 email = "andrew.cobb@gmail.com"; 2431 github = "cobbal"; ··· 7722 githubId = 31056089; 7723 name = "Tom Ho"; 7724 }; 7725 + majiir = { 7726 + email = "majiir@nabaal.net"; 7727 + github = "Majiir"; 7728 + githubId = 963511; 7729 + name = "Majiir Paktu"; 7730 + }; 7731 makefu = { 7732 email = "makefu@syntax-fehler.de"; 7733 github = "makefu"; ··· 11767 github = "snaar"; 11768 githubId = 602439; 11769 name = "Serguei Narojnyi"; 11770 + }; 11771 + snapdgn = { 11772 + email = "snapdgn@proton.me"; 11773 + name = "Nitish Kumar"; 11774 + github = "snapdgn"; 11775 + githubId = 85608760; 11776 }; 11777 snicket2100 = { 11778 email = "57048005+snicket2100@users.noreply.github.com";
+24 -3
nixos/modules/config/xdg/portal.nix
··· 1 { config, pkgs, lib, ... }: 2 3 - with lib; 4 5 { 6 imports = [ 7 (mkRenamedOptionModule [ "services" "flatpak" "extraPortals" ] [ "xdg" "portal" "extraPortals" ]) 8 ]; 9 10 meta = { ··· 32 33 gtkUsePortal = mkOption { 34 type = types.bool; 35 default = false; 36 description = '' 37 Sets environment variable <literal>GTK_USE_PORTAL</literal> to <literal>1</literal>. 38 - This is needed for packages ran outside Flatpak to respect and use XDG Desktop Portals. 39 - For example, you'd need to set this for non-flatpak Firefox to use native filechoosers. 40 Defaults to <literal>false</literal> to respect its opt-in nature. 41 ''; 42 };
··· 1 { config, pkgs, lib, ... }: 2 3 + let 4 + inherit (lib) 5 + mkEnableOption 6 + mkIf 7 + mkOption 8 + mkRenamedOptionModule 9 + teams 10 + types; 11 + in 12 13 { 14 imports = [ 15 (mkRenamedOptionModule [ "services" "flatpak" "extraPortals" ] [ "xdg" "portal" "extraPortals" ]) 16 + 17 + ({ config, lib, options, ... }: 18 + let 19 + from = [ "xdg" "portal" "gtkUsePortal" ]; 20 + fromOpt = lib.getAttrFromPath from options; 21 + in 22 + { 23 + warnings = lib.mkIf config.xdg.portal.gtkUsePortal [ 24 + "The option `${lib.showOption from}' defined in ${lib.showFiles fromOpt.files} has been deprecated. Setting the variable globally with `environment.sessionVariables' NixOS option can have unforseen side-effects." 25 + ]; 26 + } 27 + ) 28 ]; 29 30 meta = { ··· 52 53 gtkUsePortal = mkOption { 54 type = types.bool; 55 + visible = false; 56 default = false; 57 description = '' 58 Sets environment variable <literal>GTK_USE_PORTAL</literal> to <literal>1</literal>. 59 + This will force GTK-based programs ran outside Flatpak to respect and use XDG Desktop Portals 60 + for features like file chooser but it is an unsupported hack that can easily break things. 61 Defaults to <literal>false</literal> to respect its opt-in nature. 62 ''; 63 };
+62 -29
pkgs/applications/audio/deadbeef/default.nix
··· 1 - { config, lib, stdenv, fetchFromGitHub 2 , autoconf 3 , automake 4 , libtool 5 , intltool 6 , pkg-config 7 , jansson 8 # deadbeef can use either gtk2 or gtk3 9 , gtk2Support ? false, gtk2 10 , gtk3Support ? true, gtk3, gsettings-desktop-schemas, wrapGAppsHook ··· 26 , osdSupport ? true, dbus 27 # output plugins 28 , alsaSupport ? true, alsa-lib 29 - , pulseSupport ? config.pulseaudio or stdenv.isLinux, libpulseaudio 30 # effect plugins 31 , resamplerSupport ? true, libsamplerate 32 , overloadSupport ? true, zlib ··· 36 37 assert gtk2Support || gtk3Support; 38 39 - stdenv.mkDerivation rec { 40 pname = "deadbeef"; 41 - version = "1.8.4"; 42 43 src = fetchFromGitHub { 44 owner = "DeaDBeeF-Player"; 45 repo = "deadbeef"; 46 rev = version; 47 - sha256 = "161b0ll8v4cjgwwmk137hzvh0jidlkx56vjkpnr70f0x4jzv2nll"; 48 }; 49 50 - buildInputs = with lib; [ jansson ] 51 - ++ optional gtk2Support gtk2 52 - ++ optionals gtk3Support [ gtk3 gsettings-desktop-schemas ] 53 - ++ optional vorbisSupport libvorbis 54 - ++ optional mp123Support libmad 55 - ++ optional flacSupport flac 56 - ++ optional wavSupport libsndfile 57 - ++ optionals cdaSupport [ libcdio libcddb ] 58 - ++ optional aacSupport faad2 59 - ++ optional opusSupport opusfile 60 - ++ optional zipSupport libzip 61 - ++ optional ffmpegSupport ffmpeg 62 - ++ optional apeSupport yasm 63 - ++ optional artworkSupport imlib2 64 - ++ optional hotkeysSupport libX11 65 - ++ optional osdSupport dbus 66 - ++ optional alsaSupport alsa-lib 67 - ++ optional pulseSupport libpulseaudio 68 - ++ optional resamplerSupport libsamplerate 69 - ++ optional overloadSupport zlib 70 - ++ optional wavpackSupport wavpack 71 - ++ optional remoteSupport curl 72 - ; 73 74 nativeBuildInputs = [ 75 autoconf ··· 77 intltool 78 libtool 79 pkg-config 80 - ] ++ lib.optional gtk3Support wrapGAppsHook; 81 82 enableParallelBuilding = true; 83
··· 1 + { lib, config, clangStdenv, fetchFromGitHub 2 , autoconf 3 , automake 4 , libtool 5 , intltool 6 , pkg-config 7 , jansson 8 + , swift-corelibs-libdispatch 9 # deadbeef can use either gtk2 or gtk3 10 , gtk2Support ? false, gtk2 11 , gtk3Support ? true, gtk3, gsettings-desktop-schemas, wrapGAppsHook ··· 27 , osdSupport ? true, dbus 28 # output plugins 29 , alsaSupport ? true, alsa-lib 30 + , pulseSupport ? config.pulseaudio or true, libpulseaudio 31 # effect plugins 32 , resamplerSupport ? true, libsamplerate 33 , overloadSupport ? true, zlib ··· 37 38 assert gtk2Support || gtk3Support; 39 40 + let 41 + inherit (lib) optionals; 42 + 43 + version = "1.9.1"; 44 + in clangStdenv.mkDerivation { 45 pname = "deadbeef"; 46 + inherit version; 47 48 src = fetchFromGitHub { 49 owner = "DeaDBeeF-Player"; 50 repo = "deadbeef"; 51 + fetchSubmodules = true; 52 rev = version; 53 + sha256 = "sha256-e3bAGpkRPIqVWl0nvSZ61JpIQZw24mqE9218SWHBCFo="; 54 }; 55 56 + buildInputs = [ 57 + jansson 58 + swift-corelibs-libdispatch 59 + ] ++ optionals gtk2Support [ 60 + gtk2 61 + ] ++ optionals gtk3Support [ 62 + gtk3 63 + gsettings-desktop-schemas 64 + ] ++ optionals vorbisSupport [ 65 + libvorbis 66 + ] ++ optionals mp123Support [ 67 + libmad 68 + ] ++ optionals flacSupport [ 69 + flac 70 + ] ++ optionals wavSupport [ 71 + libsndfile 72 + ] ++ optionals cdaSupport [ 73 + libcdio 74 + libcddb 75 + ] ++ optionals aacSupport [ 76 + faad2 77 + ] ++ optionals opusSupport [ 78 + opusfile 79 + ] ++ optionals zipSupport [ 80 + libzip 81 + ] ++ optionals ffmpegSupport [ 82 + ffmpeg 83 + ] ++ optionals apeSupport [ 84 + yasm 85 + ] ++ optionals artworkSupport [ 86 + imlib2 87 + ] ++ optionals hotkeysSupport [ 88 + libX11 89 + ] ++ optionals osdSupport [ 90 + dbus 91 + ] ++ optionals alsaSupport [ 92 + alsa-lib 93 + ] ++ optionals pulseSupport [ 94 + libpulseaudio 95 + ] ++ optionals resamplerSupport [ 96 + libsamplerate 97 + ] ++ optionals overloadSupport [ 98 + zlib 99 + ] ++ optionals wavpackSupport [ 100 + wavpack 101 + ] ++ optionals remoteSupport [ 102 + curl 103 + ]; 104 105 nativeBuildInputs = [ 106 autoconf ··· 108 intltool 109 libtool 110 pkg-config 111 + ] ++ optionals gtk3Support [ 112 + wrapGAppsHook 113 + ]; 114 115 enableParallelBuilding = true; 116
+26 -9
pkgs/applications/audio/deadbeef/plugins/mpris2.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, deadbeef, glib }: 2 3 - stdenv.mkDerivation rec { 4 pname = "deadbeef-mpris2-plugin"; 5 - version = "1.12"; 6 7 - src = fetchurl { 8 - url = "https://github.com/Serranya/deadbeef-mpris2-plugin/releases/download/v${version}/${pname}-${version}.tar.xz"; 9 - sha256 = "0s3y4ka4qf38cypc0xspy79q0g5y1kqx6ldad7yr6a45nw6j95jh"; 10 }; 11 12 - nativeBuildInputs = [ pkg-config ]; 13 14 - buildInputs = [ deadbeef glib ]; 15 16 meta = with lib; { 17 description = "MPRISv2 plugin for the DeaDBeeF music player"; 18 - homepage = "https://github.com/Serranya/deadbeef-mpris2-plugin/"; 19 license = licenses.gpl2; 20 platforms = platforms.linux; 21 maintainers = [ maintainers.abbradar ];
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , deadbeef 5 + , autoreconfHook 6 + , pkg-config 7 + , glib 8 + }: 9 10 + let 11 pname = "deadbeef-mpris2-plugin"; 12 + version = "1.14"; 13 + in stdenv.mkDerivation { 14 + inherit pname version; 15 16 + src = fetchFromGitHub { 17 + owner = "DeaDBeeF-Player"; 18 + repo = pname; 19 + rev = "v${version}"; 20 + sha256 = "sha256-w7ccIhcPjbjs18kb3ZdM9JtSail9ik3uyAc40T8lHho="; 21 }; 22 23 + nativeBuildInputs = [ 24 + autoreconfHook 25 + pkg-config 26 + ]; 27 28 + buildInputs = [ 29 + deadbeef 30 + glib 31 + ]; 32 33 meta = with lib; { 34 description = "MPRISv2 plugin for the DeaDBeeF music player"; 35 + homepage = "https://github.com/DeaDBeeF-Player/deadbeef-mpris2-plugin/"; 36 license = licenses.gpl2; 37 platforms = platforms.linux; 38 maintainers = [ maintainers.abbradar ];
+50
pkgs/applications/audio/deadbeef/plugins/playlist-manager.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , pkg-config 5 + , deadbeef 6 + , gtk3 7 + }: 8 + 9 + stdenv.mkDerivation { 10 + pname = "deadbeef-playlist-manager-plugin"; 11 + version = "unstable-2021-05-02"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "kpcee"; 15 + repo = "deadbeef-playlist-manager"; 16 + rev = "b1393022b2d9ea0a19b845420146e0fc56cd9c0a"; 17 + sha256 = "sha256-dsKthlQ0EuX4VhO8K9VTyX3zN8ytzDUbSi/xSMB4xRw="; 18 + }; 19 + 20 + nativeBuildInputs = [ 21 + pkg-config 22 + ]; 23 + 24 + buildInputs = [ 25 + deadbeef 26 + gtk3 27 + ]; 28 + 29 + installPhase = '' 30 + runHook preInstall 31 + 32 + mkdir -p $out/lib/deadbeef/ 33 + cp *.so $out/lib/deadbeef/ 34 + 35 + runHook postInstall 36 + ''; 37 + 38 + buildFlags = [ 39 + "CFLAGS=-I${deadbeef}/include/deadbeef" 40 + "gtk3" 41 + ]; 42 + 43 + meta = with lib; { 44 + description = "Removes duplicate and vanished files from the current playlist"; 45 + homepage = "https://github.com/kpcee/deadbeef-playlist-manager"; 46 + license = licenses.gpl2Plus; 47 + maintainers = [ maintainers.cmm ]; 48 + platforms = platforms.linux; 49 + }; 50 + }
+78
pkgs/applications/networking/instant-messengers/trillian-im/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , autoPatchelfHook 5 + , dpkg 6 + , atkmm 7 + , cairo 8 + , cairomm 9 + , gtk3 10 + , gtkmm3 11 + , libnotify 12 + , libsecret 13 + , pangomm 14 + , xorg 15 + , libpulseaudio 16 + , librsvg 17 + , libzip 18 + , openssl 19 + , webkitgtk 20 + , libappindicator-gtk3 21 + }: 22 + 23 + stdenv.mkDerivation rec { 24 + pname = "trillian-im"; 25 + version = "6.3.0.1"; 26 + 27 + src = fetchurl { 28 + url = "https://www.trillian.im/get/linux/6.3/trillian_${version}_amd64.deb"; 29 + sha256 = "42e3466ee236ac2644907059f0961eba3a6ed6b6156afb2c57f54ebe6065ac6f"; 30 + }; 31 + 32 + nativeBuildInputs = [ 33 + autoPatchelfHook 34 + dpkg 35 + ]; 36 + 37 + buildInputs = [ 38 + atkmm 39 + cairo 40 + cairomm 41 + gtk3 42 + gtkmm3 43 + libnotify 44 + libsecret 45 + pangomm 46 + xorg.libXScrnSaver 47 + libpulseaudio 48 + librsvg 49 + libzip 50 + openssl 51 + webkitgtk 52 + libappindicator-gtk3 53 + ]; 54 + 55 + dontUnpack = true; 56 + 57 + installPhase = '' 58 + runHook preInstall 59 + 60 + mkdir -p $out 61 + dpkg -x $src $out 62 + cp -av $out/usr/* $out 63 + rm -rf $out/usr 64 + 65 + rm $out/bin/trillian 66 + ln -s "$out/share/trillian/trillian" "$out/bin/trillian" 67 + 68 + runHook postInstall 69 + ''; 70 + 71 + meta = with lib; { 72 + description = "Modern instant messaging for home and work that prioritizes chat interoperability and security"; 73 + homepage = "https://www.trillian.im/"; 74 + license = licenses.unfree; 75 + maintainers = with maintainers; [ majiir ]; 76 + platforms = [ "x86_64-linux" ]; 77 + }; 78 + }
+774 -428
pkgs/applications/networking/n8n/node-packages.nix
··· 76 sha512 = "7CU6DmCHIZp5ZPiZ9r3J17lTKMmYsm/zGvNkjArQwPkrLlZ1TZ+EUYfGgh2X31OLMVAQCTJZW4cXHJi02EbJnA=="; 77 }; 78 }; 79 "@azure/core-http-2.2.5" = { 80 name = "_at_azure_slash_core-http"; 81 packageName = "@azure/core-http"; ··· 103 sha512 = "H6Tg9eBm0brHqLy0OSAGzxIh1t4UL8eZVrSUMJ60Ra9cwq2pOskFqVpz2pYoHDsBY1jZ4V/P8LRGb5D5pmC6rg=="; 104 }; 105 }; 106 "@azure/core-tracing-1.0.0-preview.13" = { 107 name = "_at_azure_slash_core-tracing"; 108 packageName = "@azure/core-tracing"; ··· 112 sha512 = "KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ=="; 113 }; 114 }; 115 "@azure/logger-1.0.3" = { 116 name = "_at_azure_slash_logger"; 117 packageName = "@azure/logger"; ··· 121 sha512 = "aK4s3Xxjrx3daZr3VylxejK3vG5ExXck5WOHDJ8in/k9AqlfIyFMMT1uG7u8mNjX+QRILTIn0/Xgschfh/dQ9g=="; 122 }; 123 }; 124 - "@azure/ms-rest-azure-env-2.0.0" = { 125 - name = "_at_azure_slash_ms-rest-azure-env"; 126 - packageName = "@azure/ms-rest-azure-env"; 127 - version = "2.0.0"; 128 src = fetchurl { 129 - url = "https://registry.npmjs.org/@azure/ms-rest-azure-env/-/ms-rest-azure-env-2.0.0.tgz"; 130 - sha512 = "dG76W7ElfLi+fbTjnZVGj+M9e0BIEJmRxU6fHaUQ12bZBe8EJKYb2GV50YWNaP2uJiVQ5+7nXEVj1VN1UQtaEw=="; 131 }; 132 }; 133 - "@azure/ms-rest-js-2.6.1" = { 134 - name = "_at_azure_slash_ms-rest-js"; 135 - packageName = "@azure/ms-rest-js"; 136 - version = "2.6.1"; 137 src = fetchurl { 138 - url = "https://registry.npmjs.org/@azure/ms-rest-js/-/ms-rest-js-2.6.1.tgz"; 139 - sha512 = "LLi4jRe/qy5IM8U2CkoDgSZp2OH+MgDe2wePmhz8uY84Svc53EhHaamVyoU6BjjHBxvCRh1vcD1urJDccrxqIw=="; 140 }; 141 }; 142 - "@azure/ms-rest-nodeauth-3.1.1" = { 143 - name = "_at_azure_slash_ms-rest-nodeauth"; 144 - packageName = "@azure/ms-rest-nodeauth"; 145 - version = "3.1.1"; 146 src = fetchurl { 147 - url = "https://registry.npmjs.org/@azure/ms-rest-nodeauth/-/ms-rest-nodeauth-3.1.1.tgz"; 148 - sha512 = "UA/8dgLy3+ZiwJjAZHxL4MUB14fFQPkaAOZ94jsTW/Z6WmoOeny2+cLk0+dyIX/iH6qSrEWKwbStEeB970B9pA=="; 149 }; 150 }; 151 "@azure/storage-blob-12.10.0" = { ··· 157 sha512 = "FBEPKGnvtQJS8V8Tg1P9obgmVD9AodrIfwtwhBpsjenClhFyugMp3HPJY0tF7rInUB/CivKBCbnQKrUnKxqxzw=="; 158 }; 159 }; 160 - "@babel/runtime-7.18.3" = { 161 name = "_at_babel_slash_runtime"; 162 packageName = "@babel/runtime"; 163 - version = "7.18.3"; 164 src = fetchurl { 165 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.3.tgz"; 166 - sha512 = "38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug=="; 167 }; 168 }; 169 "@colors/colors-1.5.0" = { ··· 220 sha512 = "RxSa9VjcDWgWCYsaLdZItdCnJj7p4LxggaEk+Y3MP0dHKoxez8ioG07DVekVbZZqccsrL+oPB/N9AzVPxj4blg=="; 221 }; 222 }; 223 "@jsdevtools/ono-7.1.3" = { 224 name = "_at_jsdevtools_slash_ono"; 225 packageName = "@jsdevtools/ono"; ··· 265 sha512 = "aDF3S3rK9Q2gey/WAttUlISduDItz5BU3306M9Eyv6/oS40aMprnopshtlKTykxRNIBEZuRMaZAnbrQ4QtKGyw=="; 266 }; 267 }; 268 "@nodelib/fs.scandir-2.1.5" = { 269 name = "_at_nodelib_slash_fs.scandir"; 270 packageName = "@nodelib/fs.scandir"; ··· 319 sha512 = "sBpko86IrTscc39EvHUhL+c++81BVTsIZ3ETu/vG+cCdi0N6vb2DoahR67A9FI2CGnxRRHjnTfa3m6LulwNATA=="; 320 }; 321 }; 322 "@oclif/errors-1.3.5" = { 323 name = "_at_oclif_slash_errors"; 324 packageName = "@oclif/errors"; ··· 355 sha512 = "b11xBmIUK+LuuwVGJpFs4LwQN2xj2cBWj2c4z1FtiXGrJ85h9xV6q+k136Hw0tGg1jQoRXuvuBnqQ7es7vO9/Q=="; 356 }; 357 }; 358 "@opentelemetry/api-1.1.0" = { 359 name = "_at_opentelemetry_slash_api"; 360 packageName = "@opentelemetry/api"; ··· 400 sha512 = "sBSO19KzdrJCM3gdx6eIxV8M9Gxfgg6iDQmH5TIAGaUu+X9VDdsINXJOnoiZ1Kx3TrHdH4bt5UVglkjsEGBcvw=="; 401 }; 402 }; 403 - "@sqltools/formatter-1.2.2" = { 404 name = "_at_sqltools_slash_formatter"; 405 packageName = "@sqltools/formatter"; 406 - version = "1.2.2"; 407 src = fetchurl { 408 - url = "https://registry.npmjs.org/@sqltools/formatter/-/formatter-1.2.2.tgz"; 409 - sha512 = "/5O7Fq6Vnv8L6ucmPjaWbVG1XkP4FO+w5glqfkIsq3Xw4oyNAdJddbnYodNDAfjVUvo/rrSCTom4kAND7T1o5Q=="; 410 }; 411 }; 412 "@techteamer/ocsp-1.0.0" = { ··· 418 sha512 = "lNAOoFHaZN+4huo30ukeqVrUmfC+avoEBYQ11QAnAw1PFhnI5oBCg8O/TNiCoEWix7gNGBIEjrQwtPREqKMPog=="; 419 }; 420 }; 421 "@tokenizer/token-0.1.1" = { 422 name = "_at_tokenizer_slash_token"; 423 packageName = "@tokenizer/token"; ··· 472 sha512 = "cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ=="; 473 }; 474 }; 475 "@types/express-4.17.13" = { 476 name = "_at_types_slash_express"; 477 packageName = "@types/express"; ··· 517 sha512 = "L7wFlX3t9GsGgNS0oxLt6zbAZZGgsdptMmciL4cdxHmbL3Hz4Lysh8YqAR34eHsJ1uacJITcZBBDl5XpQlxPpQ=="; 518 }; 519 }; 520 - "@types/generic-pool-3.1.10" = { 521 name = "_at_types_slash_generic-pool"; 522 packageName = "@types/generic-pool"; 523 - version = "3.1.10"; 524 src = fetchurl { 525 - url = "https://registry.npmjs.org/@types/generic-pool/-/generic-pool-3.1.10.tgz"; 526 - sha512 = "WRT/9taXh9XJRA9yvrbC02IqGZhK9GbFE/vuP2LeSLrqmDzz5wdXsH0Ige/F+3+rbbZfwH3LEazDsU0JiSV3vA=="; 527 }; 528 }; 529 "@types/glob-7.2.0" = { ··· 607 sha512 = "/SNsDidUFCvqqcWDwxv2feww/yqhNeTRL5CVoL3jU4Goc4kKEL10T7Eye65ZqPNi4HRx8sAEX59pV1aEH7drNA=="; 608 }; 609 }; 610 - "@types/node-12.20.55" = { 611 - name = "_at_types_slash_node"; 612 - packageName = "@types/node"; 613 - version = "12.20.55"; 614 - src = fetchurl { 615 - url = "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz"; 616 - sha512 = "J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ=="; 617 - }; 618 - }; 619 "@types/node-18.0.0" = { 620 name = "_at_types_slash_node"; 621 packageName = "@types/node"; ··· 670 sha512 = "EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="; 671 }; 672 }; 673 - "@types/readable-stream-2.3.13" = { 674 - name = "_at_types_slash_readable-stream"; 675 - packageName = "@types/readable-stream"; 676 - version = "2.3.13"; 677 - src = fetchurl { 678 - url = "https://registry.npmjs.org/@types/readable-stream/-/readable-stream-2.3.13.tgz"; 679 - sha512 = "4JSCx8EUzaW9Idevt+9lsRAt1lcSccoQfE+AouM1gk8sFxnnytKNIO3wTl9Dy+4m6jRJ1yXhboLHHT/LXBQiEw=="; 680 - }; 681 - }; 682 "@types/serve-static-1.13.10" = { 683 name = "_at_types_slash_serve-static"; 684 packageName = "@types/serve-static"; ··· 742 sha512 = "QcJ5ZczaXAqbVD3o8mw/mEBhRvO5UAdTtbvgwL/OgoWubvNBh6/MxLBAigtcgIFaq3shon9m3POIxQaLQt4fxQ=="; 743 }; 744 }; 745 - "@xmldom/xmldom-0.7.5" = { 746 - name = "_at_xmldom_slash_xmldom"; 747 - packageName = "@xmldom/xmldom"; 748 - version = "0.7.5"; 749 - src = fetchurl { 750 - url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz"; 751 - sha512 = "V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A=="; 752 - }; 753 - }; 754 "abbrev-1.1.1" = { 755 name = "abbrev"; 756 packageName = "abbrev"; ··· 760 sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="; 761 }; 762 }; 763 - "abort-controller-3.0.0" = { 764 - name = "abort-controller"; 765 - packageName = "abort-controller"; 766 - version = "3.0.0"; 767 - src = fetchurl { 768 - url = "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz"; 769 - sha512 = "h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="; 770 - }; 771 - }; 772 "accepts-1.3.8" = { 773 name = "accepts"; 774 packageName = "accepts"; ··· 805 sha512 = "k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA=="; 806 }; 807 }; 808 - "adal-node-0.2.3" = { 809 - name = "adal-node"; 810 - packageName = "adal-node"; 811 - version = "0.2.3"; 812 - src = fetchurl { 813 - url = "https://registry.npmjs.org/adal-node/-/adal-node-0.2.3.tgz"; 814 - sha512 = "gMKr8RuYEYvsj7jyfCv/4BfKToQThz20SP71N3AtFn3ia3yAR8Qt2T3aVQhuJzunWs2b38ZsQV0qsZPdwZr7VQ=="; 815 - }; 816 - }; 817 "adler-32-1.2.0" = { 818 name = "adler-32"; 819 packageName = "adler-32"; ··· 859 sha512 = "icU+a4kkq4Y1PS4NNi+YPDMwdlbFcZ1EZTQT2nigW3fvOb6AOgUQ9+Mk4ue0Zu5cBg/XpDzB40oH10ysrk2dmA=="; 860 }; 861 }; 862 "ansi-escapes-4.3.2" = { 863 name = "ansi-escapes"; 864 packageName = "ansi-escapes"; ··· 868 sha512 = "gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ=="; 869 }; 870 }; 871 - "ansi-regex-2.1.1" = { 872 - name = "ansi-regex"; 873 - packageName = "ansi-regex"; 874 - version = "2.1.1"; 875 - src = fetchurl { 876 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"; 877 - sha512 = "TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA=="; 878 - }; 879 - }; 880 "ansi-regex-5.0.1" = { 881 name = "ansi-regex"; 882 packageName = "ansi-regex"; ··· 886 sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="; 887 }; 888 }; 889 - "ansi-styles-2.2.1" = { 890 - name = "ansi-styles"; 891 - packageName = "ansi-styles"; 892 - version = "2.2.1"; 893 - src = fetchurl { 894 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"; 895 - sha512 = "kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA=="; 896 - }; 897 - }; 898 "ansi-styles-4.3.0" = { 899 name = "ansi-styles"; 900 packageName = "ansi-styles"; ··· 902 src = fetchurl { 903 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"; 904 sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; 905 }; 906 }; 907 "any-promise-1.3.0" = { ··· 1075 sha512 = "NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw=="; 1076 }; 1077 }; 1078 - "async-2.6.4" = { 1079 - name = "async"; 1080 - packageName = "async"; 1081 - version = "2.6.4"; 1082 - src = fetchurl { 1083 - url = "https://registry.npmjs.org/async/-/async-2.6.4.tgz"; 1084 - sha512 = "mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA=="; 1085 - }; 1086 - }; 1087 "async-3.2.4" = { 1088 name = "async"; 1089 packageName = "async"; ··· 1111 sha512 = "Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="; 1112 }; 1113 }; 1114 "auto-changelog-1.16.4" = { 1115 name = "auto-changelog"; 1116 packageName = "auto-changelog"; ··· 1129 sha512 = "z4oo33lmnvvNRqfUe3YjDGGpqu/L2+wXBIhMtwq6oqZ+exOUAkQYM6zd2VWKF7AIlajOF8ZZuPFfryTG9iLC/w=="; 1130 }; 1131 }; 1132 - "aws-sdk-2.1156.0" = { 1133 name = "aws-sdk"; 1134 packageName = "aws-sdk"; 1135 - version = "2.1156.0"; 1136 src = fetchurl { 1137 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1156.0.tgz"; 1138 - sha512 = "XLMsSOW6ZyBj6mRgACt1EiUdvd+q0Da5fTjbsEgi1KOENQ0met0CSqgBcpg2EMWgBBV9E2L7uUd98O1uBbGc7g=="; 1139 }; 1140 }; 1141 "aws-sign2-0.7.0" = { ··· 1174 sha512 = "t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ=="; 1175 }; 1176 }; 1177 - "axios-retry-3.2.5" = { 1178 name = "axios-retry"; 1179 packageName = "axios-retry"; 1180 - version = "3.2.5"; 1181 src = fetchurl { 1182 - url = "https://registry.npmjs.org/axios-retry/-/axios-retry-3.2.5.tgz"; 1183 - sha512 = "a8umkKbfIkTiYJQLx3v3TzKM85TGKB8ZQYz4zwykt2fpO64TsRlUhjaPaAb3fqMWCXFm2YhWcd8V5FHDKO9bSA=="; 1184 }; 1185 }; 1186 "babel-helper-vue-jsx-merge-props-2.0.3" = { ··· 1309 sha512 = "6Pesp1w0DEX1N550i/uGV/TqucVL4AM/pgThFSN/Qq9si1/DF9aIHs1BxD8V/QU0HoeHO6cQRTAuYnLPKq1e4g=="; 1310 }; 1311 }; 1312 - "bl-3.0.1" = { 1313 name = "bl"; 1314 packageName = "bl"; 1315 - version = "3.0.1"; 1316 src = fetchurl { 1317 - url = "https://registry.npmjs.org/bl/-/bl-3.0.1.tgz"; 1318 - sha512 = "jrCW5ZhfQ/Vt07WX1Ngs+yn9BDqPL/gw28S7s9H6QK/gupnizNzJAss5akW20ISgOrbLTlXOOCTJeNUQqruAWQ=="; 1319 }; 1320 }; 1321 - "bl-4.1.0" = { 1322 name = "bl"; 1323 packageName = "bl"; 1324 - version = "4.1.0"; 1325 src = fetchurl { 1326 - url = "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz"; 1327 - sha512 = "1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w=="; 1328 }; 1329 }; 1330 "bluebird-2.11.0" = { ··· 1390 sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; 1391 }; 1392 }; 1393 "braces-3.0.2" = { 1394 name = "braces"; 1395 packageName = "braces"; ··· 1435 sha512 = "EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="; 1436 }; 1437 }; 1438 "buffer-equal-constant-time-1.0.1" = { 1439 name = "buffer-equal-constant-time"; 1440 packageName = "buffer-equal-constant-time"; ··· 1579 sha512 = "ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A=="; 1580 }; 1581 }; 1582 "caseless-0.12.0" = { 1583 name = "caseless"; 1584 packageName = "caseless"; ··· 1597 sha512 = "KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA=="; 1598 }; 1599 }; 1600 - "chalk-1.1.3" = { 1601 - name = "chalk"; 1602 - packageName = "chalk"; 1603 - version = "1.1.3"; 1604 - src = fetchurl { 1605 - url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"; 1606 - sha512 = "U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A=="; 1607 - }; 1608 - }; 1609 "chalk-3.0.0" = { 1610 name = "chalk"; 1611 packageName = "chalk"; ··· 1739 src = fetchurl { 1740 url = "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.11.tgz"; 1741 sha512 = "9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg=="; 1742 }; 1743 }; 1744 "cli-width-3.0.0" = { ··· 2074 sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 2075 }; 2076 }; 2077 - "core-js-3.23.1" = { 2078 name = "core-js"; 2079 packageName = "core-js"; 2080 - version = "3.23.1"; 2081 src = fetchurl { 2082 - url = "https://registry.npmjs.org/core-js/-/core-js-3.23.1.tgz"; 2083 - sha512 = "wfMYHWi1WQjpgZNC9kAlN4ut04TM9fUTdi7CqIoTVM7yaiOUQTklOzfb+oWH3r9edQcT3F887swuVmxrV+CC8w=="; 2084 }; 2085 }; 2086 "core-util-is-1.0.2" = { ··· 2137 sha512 = "yAXz/pA1tD8Gtg2S98Ekf/sewp3Lcp3YoFKJ4Hkp5h5yLWnKVTDU0kwjKJ8NDCYcfTLfyGkzTikst+jWypT1iA=="; 2138 }; 2139 }; 2140 "crypt-0.0.2" = { 2141 name = "crypt"; 2142 packageName = "crypt"; ··· 2200 sha512 = "jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g=="; 2201 }; 2202 }; 2203 - "date-utils-1.2.21" = { 2204 - name = "date-utils"; 2205 - packageName = "date-utils"; 2206 - version = "1.2.21"; 2207 - src = fetchurl { 2208 - url = "https://registry.npmjs.org/date-utils/-/date-utils-1.2.21.tgz"; 2209 - sha512 = "wJMBjqlwXR0Iv0wUo/lFbhSQ7MmG1hl36iuxuE91kW+5b5sWbase73manEqNH9sOLFAMG83B4ffNKq9/Iq0FVA=="; 2210 - }; 2211 - }; 2212 "debug-2.6.9" = { 2213 name = "debug"; 2214 packageName = "debug"; ··· 2279 src = fetchurl { 2280 url = "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz"; 2281 sha512 = "FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="; 2282 }; 2283 }; 2284 "define-properties-1.1.4" = { ··· 2488 sha512 = "WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="; 2489 }; 2490 }; 2491 "element-ui-2.15.9" = { 2492 name = "element-ui"; 2493 packageName = "element-ui"; ··· 2587 sha512 = "WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA=="; 2588 }; 2589 }; 2590 "es-array-method-boxes-properly-1.0.0" = { 2591 name = "es-array-method-boxes-properly"; 2592 packageName = "es-array-method-boxes-properly"; ··· 2677 sha512 = "aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg=="; 2678 }; 2679 }; 2680 - "event-target-shim-5.0.1" = { 2681 - name = "event-target-shim"; 2682 - packageName = "event-target-shim"; 2683 - version = "5.0.1"; 2684 - src = fetchurl { 2685 - url = "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz"; 2686 - sha512 = "i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ=="; 2687 - }; 2688 - }; 2689 "events-1.1.1" = { 2690 name = "events"; 2691 packageName = "events"; ··· 2830 sha512 = "0Zz1jOzJWERhyhsimS54VTqOteCNwRtIlh8isdL0AXLo0g7xNTfTL7oWrkmCnPhZGocKIkWHBistBrrpoNH3aw=="; 2831 }; 2832 }; 2833 - "figlet-1.5.2" = { 2834 - name = "figlet"; 2835 - packageName = "figlet"; 2836 - version = "1.5.2"; 2837 - src = fetchurl { 2838 - url = "https://registry.npmjs.org/figlet/-/figlet-1.5.2.tgz"; 2839 - sha512 = "WOn21V8AhyE1QqVfPIVxe3tupJacq1xGkPTB4iagT6o+P2cAgEOOwIxMftr4+ZCTI6d551ij9j61DFr0nsP2uQ=="; 2840 - }; 2841 - }; 2842 "figures-3.2.0" = { 2843 name = "figures"; 2844 packageName = "figures"; ··· 2855 src = fetchurl { 2856 url = "https://registry.npmjs.org/file-type/-/file-type-14.7.1.tgz"; 2857 sha512 = "sXAMgFk67fQLcetXustxfKX+PZgHIUFn96Xld9uH8aXPdX3xOp0/jg9OdouVTvQrf7mrn+wAa4jN/y9fUOOiRA=="; 2858 }; 2859 }; 2860 "fill-range-7.0.1" = { ··· 2884 sha512 = "PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="; 2885 }; 2886 }; 2887 - "flatted-3.2.5" = { 2888 name = "flatted"; 2889 packageName = "flatted"; 2890 - version = "3.2.5"; 2891 src = fetchurl { 2892 - url = "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz"; 2893 - sha512 = "WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg=="; 2894 }; 2895 }; 2896 "fn.name-1.1.0" = { ··· 2936 src = fetchurl { 2937 url = "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz"; 2938 sha512 = "1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ=="; 2939 - }; 2940 - }; 2941 - "form-data-2.5.1" = { 2942 - name = "form-data"; 2943 - packageName = "form-data"; 2944 - version = "2.5.1"; 2945 - src = fetchurl { 2946 - url = "https://registry.npmjs.org/form-data/-/form-data-2.5.1.tgz"; 2947 - sha512 = "m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA=="; 2948 }; 2949 }; 2950 "form-data-3.0.1" = { ··· 3010 sha512 = "yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g=="; 3011 }; 3012 }; 3013 "fs-minipass-2.1.0" = { 3014 name = "fs-minipass"; 3015 packageName = "fs-minipass"; ··· 3109 sha512 = "Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA=="; 3110 }; 3111 }; 3112 "get-port-5.1.1" = { 3113 name = "get-port"; 3114 packageName = "get-port"; ··· 3181 sha512 = "uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw=="; 3182 }; 3183 }; 3184 "globby-11.1.0" = { 3185 name = "globby"; 3186 packageName = "globby"; ··· 3251 src = fetchurl { 3252 url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz"; 3253 sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="; 3254 - }; 3255 - }; 3256 - "has-ansi-2.0.0" = { 3257 - name = "has-ansi"; 3258 - packageName = "has-ansi"; 3259 - version = "2.0.0"; 3260 - src = fetchurl { 3261 - url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"; 3262 - sha512 = "C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg=="; 3263 }; 3264 }; 3265 "has-bigints-1.0.2" = { ··· 3424 sha512 = "dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA=="; 3425 }; 3426 }; 3427 "iconv-lite-0.4.24" = { 3428 name = "iconv-lite"; 3429 packageName = "iconv-lite"; ··· 3431 src = fetchurl { 3432 url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"; 3433 sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 3434 - }; 3435 - }; 3436 - "iconv-lite-0.5.2" = { 3437 - name = "iconv-lite"; 3438 - packageName = "iconv-lite"; 3439 - version = "0.5.2"; 3440 - src = fetchurl { 3441 - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.5.2.tgz"; 3442 - sha512 = "kERHXvpSaB4aU3eANwidg79K8FlrN77m8G9V+0vOR3HYaRifrlwMEpT7ZBJqLSEIHnEgJTHcWK82wwLwwKwtag=="; 3443 }; 3444 }; 3445 "iconv-lite-0.6.3" = { ··· 3946 sha512 = "Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g=="; 3947 }; 3948 }; 3949 "jmespath-0.16.0" = { 3950 name = "jmespath"; 3951 packageName = "jmespath"; ··· 3982 sha512 = "wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="; 3983 }; 3984 }; 3985 - "jsbi-3.2.5" = { 3986 name = "jsbi"; 3987 packageName = "jsbi"; 3988 - version = "3.2.5"; 3989 src = fetchurl { 3990 - url = "https://registry.npmjs.org/jsbi/-/jsbi-3.2.5.tgz"; 3991 - sha512 = "aBE4n43IPvjaddScbvWRA2YlTzKEynHzu7MqOyTipdHucf/VxS63ViCjxYRg86M8Rxwbt/GfzHl1kKERkt45fQ=="; 3992 }; 3993 }; 3994 "jsbn-0.1.1" = { ··· 4063 sha512 = "m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg=="; 4064 }; 4065 }; 4066 "jsonschema-1.4.1" = { 4067 name = "jsonschema"; 4068 packageName = "jsonschema"; ··· 4099 sha512 = "qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA=="; 4100 }; 4101 }; 4102 "jwks-rsa-1.12.3" = { 4103 name = "jwks-rsa"; 4104 packageName = "jwks-rsa"; ··· 4117 sha512 = "YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA=="; 4118 }; 4119 }; 4120 "kafkajs-1.16.0" = { 4121 name = "kafkajs"; 4122 packageName = "kafkajs"; ··· 4171 sha512 = "xOqorG21Va+3CjpFOfFTU7SWohHH2uIX9ZY4Byz6J+lvpfvc486tOAT/G9GfbrKtJ9O7NCX9o0aC2lxqbnZ9EA=="; 4172 }; 4173 }; 4174 - "libphonenumber-js-1.10.6" = { 4175 name = "libphonenumber-js"; 4176 packageName = "libphonenumber-js"; 4177 - version = "1.10.6"; 4178 src = fetchurl { 4179 - url = "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.10.6.tgz"; 4180 - sha512 = "CIjT100/SmntsUjsLVs2t3ufeN4KdNXUxhD07tH153pdbaCWuAjv0jK/gPuywR3IImB/U/MQM+x9RfhMs5XZiA=="; 4181 }; 4182 }; 4183 "libqp-1.1.0" = { ··· 4423 sha512 = "A9SzX4hMKWS25MyalwcOnNoplyHbkNVsjidhTp8ru0Sj23wY9GWBKS8gAIGDSAqeWjIjvE4KBEl24XXAs+v4wQ=="; 4424 }; 4425 }; 4426 - "logform-2.4.0" = { 4427 name = "logform"; 4428 packageName = "logform"; 4429 - version = "2.4.0"; 4430 src = fetchurl { 4431 - url = "https://registry.npmjs.org/logform/-/logform-2.4.0.tgz"; 4432 - sha512 = "CPSJw4ftjf517EhXZGGvTHHkYobo7ZCc0kvwUoOYcjfR2UVrI66RHj8MCrfAdEitdmFqbu2BYdYs8FHHZSb6iw=="; 4433 }; 4434 }; 4435 "long-4.0.0" = { ··· 4693 sha512 = "J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="; 4694 }; 4695 }; 4696 "minimist-1.2.6" = { 4697 name = "minimist"; 4698 packageName = "minimist"; ··· 4702 sha512 = "Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="; 4703 }; 4704 }; 4705 - "minipass-3.2.1" = { 4706 name = "minipass"; 4707 packageName = "minipass"; 4708 - version = "3.2.1"; 4709 src = fetchurl { 4710 - url = "https://registry.npmjs.org/minipass/-/minipass-3.2.1.tgz"; 4711 - sha512 = "v5cqJP4WxUVXYXhOOdPiOZEDoF7omSpLivw2GMCL1v/j+xh886bPXKh6SzyA6sa45e4NRQ46IRBEkAazvb6I6A=="; 4712 }; 4713 }; 4714 "minizlib-2.1.2" = { ··· 4765 sha512 = "3zAEHh2hKUs3EXLESx/wsgw6IQdusOT8Bxm3D9UrHPQR7zlMmzwybC8zHEM1tQ4LJwP7fcxrWr8tuBg05fFCbg=="; 4766 }; 4767 }; 4768 - "monaco-editor-0.29.1" = { 4769 name = "monaco-editor"; 4770 packageName = "monaco-editor"; 4771 - version = "0.29.1"; 4772 src = fetchurl { 4773 - url = "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.29.1.tgz"; 4774 - sha512 = "rguaEG/zrPQSaKzQB7IfX/PpNa0qxF1FY8ZXRkN4WIl8qZdTQRSRJCtRto7IMcSgrU6H53RXI+fTcywOBC4aVw=="; 4775 }; 4776 }; 4777 "mongodb-3.7.3" = { ··· 4837 sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; 4838 }; 4839 }; 4840 - "mssql-6.4.1" = { 4841 name = "mssql"; 4842 packageName = "mssql"; 4843 - version = "6.4.1"; 4844 src = fetchurl { 4845 - url = "https://registry.npmjs.org/mssql/-/mssql-6.4.1.tgz"; 4846 - sha512 = "G1I7mM0gfxcH5TGSNoVmxq13Mve5YnQgRAlonqaMlHEjHjMn1g04bsrIQbVHFRdI6++dw/FGWlh8GoItJMoUDw=="; 4847 }; 4848 }; 4849 "multer-1.4.5-lts.1" = { ··· 4882 sha512 = "z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q=="; 4883 }; 4884 }; 4885 - "n8n-core-0.122.1" = { 4886 name = "n8n-core"; 4887 packageName = "n8n-core"; 4888 - version = "0.122.1"; 4889 src = fetchurl { 4890 - url = "https://registry.npmjs.org/n8n-core/-/n8n-core-0.122.1.tgz"; 4891 - sha512 = "e2MvpQBfV9y/3A7RE7tAseppKARF1yaoCc8a7OyF8zXHj2w2Qy7i+1YJuDUsqN4X9aMMXwVJiEZbelXtNjJiVQ=="; 4892 }; 4893 }; 4894 - "n8n-design-system-0.23.0" = { 4895 name = "n8n-design-system"; 4896 packageName = "n8n-design-system"; 4897 - version = "0.23.0"; 4898 src = fetchurl { 4899 - url = "https://registry.npmjs.org/n8n-design-system/-/n8n-design-system-0.23.0.tgz"; 4900 - sha512 = "3VD+YUPWJ9andodTS3hqxBzLAvr289JDhX5fcS8F0SZD9PU01coUrfl/H5QZwwW9djVvDVdovGweOviAT6w15A=="; 4901 }; 4902 }; 4903 - "n8n-editor-ui-0.148.0" = { 4904 name = "n8n-editor-ui"; 4905 packageName = "n8n-editor-ui"; 4906 - version = "0.148.0"; 4907 src = fetchurl { 4908 - url = "https://registry.npmjs.org/n8n-editor-ui/-/n8n-editor-ui-0.148.0.tgz"; 4909 - sha512 = "q6I6OYGKPAo7Lb3Or1WjVWNOwD7Y3Vsk6ABM8aEuAR4gjQTJkA3yCI2ZLaBm3F05Str6z3CI9nLB2pMP/50H9A=="; 4910 }; 4911 }; 4912 - "n8n-nodes-base-0.180.0" = { 4913 name = "n8n-nodes-base"; 4914 packageName = "n8n-nodes-base"; 4915 - version = "0.180.0"; 4916 src = fetchurl { 4917 - url = "https://registry.npmjs.org/n8n-nodes-base/-/n8n-nodes-base-0.180.0.tgz"; 4918 - sha512 = "ZDjdth9oJM6p9Ogb/l6l1/bp/ckhMh/Y3H+RKAvWd3htUeBJ3f4oLsPHIXOTq1xFhsoovrgvGceE9hZXM1Tt2g=="; 4919 }; 4920 }; 4921 - "n8n-workflow-0.104.0" = { 4922 name = "n8n-workflow"; 4923 packageName = "n8n-workflow"; 4924 - version = "0.104.0"; 4925 src = fetchurl { 4926 - url = "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.104.0.tgz"; 4927 - sha512 = "uoglwlCO5Z6moNcBi+t8TXzm1NAVy7a0oeWzq5OK/0k2N0HDBDqn04A5a1gHGAPeCJVS1dDOhXwq69HJ/IjoZg=="; 4928 }; 4929 }; 4930 "named-placeholders-1.1.2" = { ··· 4963 sha512 = "E7QQoM+3jvNtlmyfqRZ0/U75VFgCls+fSkbml2MpgWkWyz3ox8Y58gNhfuziuQYGNNQAbFZJQck55LHCnCK6CA=="; 4964 }; 4965 }; 4966 "nearley-2.20.1" = { 4967 name = "nearley"; 4968 packageName = "nearley"; ··· 4990 sha512 = "Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw=="; 4991 }; 4992 }; 4993 "no-case-3.0.4" = { 4994 name = "no-case"; 4995 packageName = "no-case"; ··· 4997 src = fetchurl { 4998 url = "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz"; 4999 sha512 = "fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg=="; 5000 }; 5001 }; 5002 "node-addon-api-4.3.0" = { ··· 5179 sha512 = "NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="; 5180 }; 5181 }; 5182 "object.assign-4.1.2" = { 5183 name = "object.assign"; 5184 packageName = "object.assign"; ··· 5260 sha512 = "MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q=="; 5261 }; 5262 }; 5263 "openapi-types-1.3.5" = { 5264 name = "openapi-types"; 5265 packageName = "openapi-types"; ··· 5395 sha512 = "RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A=="; 5396 }; 5397 }; 5398 - "parent-require-1.0.0" = { 5399 - name = "parent-require"; 5400 - packageName = "parent-require"; 5401 - version = "1.0.0"; 5402 - src = fetchurl { 5403 - url = "https://registry.npmjs.org/parent-require/-/parent-require-1.0.0.tgz"; 5404 - sha512 = "2MXDNZC4aXdkkap+rBBMv0lUsfJqvX5/2FiYYnfCnorZt3Pk06/IOR5KeaoghgS2w07MLWgjbsnyaq6PdHn2LQ=="; 5405 - }; 5406 - }; 5407 "parse-github-url-1.0.2" = { 5408 name = "parse-github-url"; 5409 packageName = "parse-github-url"; ··· 5521 sha512 = "CB97UUvDKJde2V0KDWWB3lyf6PC3FaZP7YxZ2G8OAtn9p4HI9j9JLP9qjOGZFvyl8uwNT8qM+hGnz/n16NI7oA=="; 5522 }; 5523 }; 5524 "path-case-3.0.4" = { 5525 name = "path-case"; 5526 packageName = "path-case"; ··· 5555 src = fetchurl { 5556 url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 5557 sha512 = "AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="; 5558 }; 5559 }; 5560 "path-parse-1.0.7" = { ··· 6187 sha512 = "HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw=="; 6188 }; 6189 }; 6190 "redis-3.1.2" = { 6191 name = "redis"; 6192 packageName = "redis"; ··· 6367 sha512 = "LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg=="; 6368 }; 6369 }; 6370 - "resolve-1.22.0" = { 6371 name = "resolve"; 6372 packageName = "resolve"; 6373 - version = "1.22.0"; 6374 src = fetchurl { 6375 - url = "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz"; 6376 - sha512 = "Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw=="; 6377 }; 6378 }; 6379 "restore-cursor-3.1.0" = { ··· 6412 sha512 = "U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="; 6413 }; 6414 }; 6415 "rhea-1.0.24" = { 6416 name = "rhea"; 6417 packageName = "rhea"; ··· 6428 src = fetchurl { 6429 url = "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"; 6430 sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; 6431 - }; 6432 - }; 6433 - "riot-tmpl-3.0.8" = { 6434 - name = "riot-tmpl"; 6435 - packageName = "riot-tmpl"; 6436 - version = "3.0.8"; 6437 - src = fetchurl { 6438 - url = "https://registry.npmjs.org/riot-tmpl/-/riot-tmpl-3.0.8.tgz"; 6439 - sha512 = "ngv48VQ58LMtuNrXnELxODsRUJ3NxcGQkL2yJPj5cy8WAgGgK+rarEFwfLoRdAfh76ipWiPrYL4nZ2nfW87lJw=="; 6440 }; 6441 }; 6442 "rndm-1.2.0" = { ··· 6700 sha512 = "QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ=="; 6701 }; 6702 }; 6703 "shell-escape-0.2.0" = { 6704 name = "shell-escape"; 6705 packageName = "shell-escape"; ··· 6745 sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; 6746 }; 6747 }; 6748 - "simple-git-3.7.1" = { 6749 name = "simple-git"; 6750 packageName = "simple-git"; 6751 - version = "3.7.1"; 6752 src = fetchurl { 6753 - url = "https://registry.npmjs.org/simple-git/-/simple-git-3.7.1.tgz"; 6754 - sha512 = "+Osjtsumbtew2y9to0pOYjNzSIr4NkKGBg7Po5SUtjQhaJf2QBmiTX/9E9cv9rmc7oUiSGFIB9e7ys5ibnT9+A=="; 6755 }; 6756 }; 6757 "simple-lru-cache-0.0.2" = { ··· 6790 sha512 = "LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg=="; 6791 }; 6792 }; 6793 - "snowflake-sdk-1.6.10" = { 6794 name = "snowflake-sdk"; 6795 packageName = "snowflake-sdk"; 6796 - version = "1.6.10"; 6797 src = fetchurl { 6798 - url = "https://registry.npmjs.org/snowflake-sdk/-/snowflake-sdk-1.6.10.tgz"; 6799 - sha512 = "kguQQSGhmNqZfmN/yZNDaIaMMktTcrTYBjtyx+szJzV69b5F+5b77btpYp+bCFqao69otVM+IPUtb3sugvCVnQ=="; 6800 }; 6801 }; 6802 "source-map-0.6.1" = { ··· 6961 sha512 = "ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g=="; 6962 }; 6963 }; 6964 "stream-shift-1.0.1" = { 6965 name = "stream-shift"; 6966 packageName = "stream-shift"; ··· 7033 sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; 7034 }; 7035 }; 7036 - "strip-ansi-3.0.1" = { 7037 - name = "strip-ansi"; 7038 - packageName = "strip-ansi"; 7039 - version = "3.0.1"; 7040 - src = fetchurl { 7041 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; 7042 - sha512 = "VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg=="; 7043 - }; 7044 - }; 7045 "strip-ansi-6.0.1" = { 7046 name = "strip-ansi"; 7047 packageName = "strip-ansi"; ··· 7060 sha512 = "fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw=="; 7061 }; 7062 }; 7063 - "supports-color-2.0.0" = { 7064 name = "supports-color"; 7065 packageName = "supports-color"; 7066 - version = "2.0.0"; 7067 src = fetchurl { 7068 - url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"; 7069 - sha512 = "KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g=="; 7070 }; 7071 }; 7072 - "supports-color-7.2.0" = { 7073 name = "supports-color"; 7074 packageName = "supports-color"; 7075 - version = "7.2.0"; 7076 src = fetchurl { 7077 - url = "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"; 7078 - sha512 = "qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="; 7079 }; 7080 }; 7081 "supports-preserve-symlinks-flag-1.0.0" = { ··· 7114 sha512 = "an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA=="; 7115 }; 7116 }; 7117 - "tarn-1.1.5" = { 7118 name = "tarn"; 7119 packageName = "tarn"; 7120 - version = "1.1.5"; 7121 src = fetchurl { 7122 - url = "https://registry.npmjs.org/tarn/-/tarn-1.1.5.tgz"; 7123 - sha512 = "PMtJ3HCLAZeedWjJPgGnCvcphbCOMbtZpjKgLq3qM5Qq9aQud+XHrL0WlrlgnTyS8U+jrjGbEXprFcQrxPy52g=="; 7124 }; 7125 }; 7126 "tdigest-0.1.2" = { ··· 7132 sha512 = "+G0LLgjjo9BZX2MfdvPfH+MKLCrxlXSYec5DaPYP1fe6Iyhf0/fSmJ0bFiZ1F8BT6cGXl2LpltQptzjXKWEkKA=="; 7133 }; 7134 }; 7135 - "tedious-6.7.1" = { 7136 name = "tedious"; 7137 packageName = "tedious"; 7138 - version = "6.7.1"; 7139 src = fetchurl { 7140 - url = "https://registry.npmjs.org/tedious/-/tedious-6.7.1.tgz"; 7141 - sha512 = "61eg/mvUa5vIqZcRizcqw/82dY65kR2uTll1TaUFh0aJ45XOrgbc8axiVR48dva8BahIAlJByaHNfAJ/KmPV0g=="; 7142 }; 7143 }; 7144 "test-console-2.0.0" = { ··· 7465 sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; 7466 }; 7467 }; 7468 - "typeorm-0.2.30" = { 7469 name = "typeorm"; 7470 packageName = "typeorm"; 7471 - version = "0.2.30"; 7472 src = fetchurl { 7473 - url = "https://registry.npmjs.org/typeorm/-/typeorm-0.2.30.tgz"; 7474 - sha512 = "qpr8AO3Phi6ZF7qMHOrRdNisVt8jE1KfmW0ooLFcXscA87aJ12aBPyB9cJfxGNjNwd7B3WIK9ZlBveWiqd74QA=="; 7475 }; 7476 }; 7477 "uc.micro-1.0.6" = { ··· 7510 sha512 = "eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg=="; 7511 }; 7512 }; 7513 - "underscore-1.13.4" = { 7514 - name = "underscore"; 7515 - packageName = "underscore"; 7516 - version = "1.13.4"; 7517 - src = fetchurl { 7518 - url = "https://registry.npmjs.org/underscore/-/underscore-1.13.4.tgz"; 7519 - sha512 = "BQFnUDuAQ4Yf/cYY5LNrK9NCJFKriaRbD9uR1fTeXnBeoa97W0i41qkZfGO9pSo8I5KzjAcSY2XYtdf0oKd7KQ=="; 7520 - }; 7521 - }; 7522 "unique-stream-2.3.1" = { 7523 name = "unique-stream"; 7524 packageName = "unique-stream"; ··· 7535 src = fetchurl { 7536 url = "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz"; 7537 sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="; 7538 }; 7539 }; 7540 "unpipe-1.0.0" = { ··· 7744 sha512 = "a5T8ZZZK/EQzgVShEl374HbobUJ0a7v12BzOzS6Z/wd/5EE/5SffcyHC+7bf9hP3L7Yc0hhY/GhMdwFQ25O/8A=="; 7745 }; 7746 }; 7747 - "vue-i18n-8.27.1" = { 7748 name = "vue-i18n"; 7749 packageName = "vue-i18n"; 7750 - version = "8.27.1"; 7751 src = fetchurl { 7752 - url = "https://registry.npmjs.org/vue-i18n/-/vue-i18n-8.27.1.tgz"; 7753 - sha512 = "lWrGm4F25qReJ7XxSnFVb2h3PfW54ldnM4C+YLBGGJ75+Myt/kj4hHSTKqsyDLamvNYpvINMicSOdW+7yuqgIQ=="; 7754 }; 7755 }; 7756 "vue2-boring-avatars-0.3.4" = { ··· 7825 sha512 = "NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg=="; 7826 }; 7827 }; 7828 - "winston-3.7.2" = { 7829 name = "winston"; 7830 packageName = "winston"; 7831 - version = "3.7.2"; 7832 src = fetchurl { 7833 - url = "https://registry.npmjs.org/winston/-/winston-3.7.2.tgz"; 7834 - sha512 = "QziIqtojHBoyzUOdQvQiar1DH0Xp9nF1A1y7NVy2DGEsz82SBDtOalS0ulTRGVT14xPX3WRWkCsdcJKqNflKng=="; 7835 }; 7836 }; 7837 "winston-transport-4.5.0" = { ··· 7951 sha512 = "7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ=="; 7952 }; 7953 }; 7954 - "xpath.js-1.1.0" = { 7955 - name = "xpath.js"; 7956 - packageName = "xpath.js"; 7957 - version = "1.1.0"; 7958 - src = fetchurl { 7959 - url = "https://registry.npmjs.org/xpath.js/-/xpath.js-1.1.0.tgz"; 7960 - sha512 = "jg+qkfS4K8E7965sqaUl8mRngXiKb3WZGfONgE18pr03FUQiuSV6G+Ej4tS55B+rIQSFEIw3phdVAQ4pPqNWfQ=="; 7961 - }; 7962 - }; 7963 "xregexp-2.0.0" = { 7964 name = "xregexp"; 7965 packageName = "xregexp"; ··· 8032 sha512 = "C/FsVVhht4iPQYXOInoxUM/1ELSf9EsgKH34FofQOp6hwCPrW4vG4w5++TED3xRUo8gD7l0P1J1dLlDYzODsTQ=="; 8033 }; 8034 }; 8035 - "yargonaut-1.1.4" = { 8036 - name = "yargonaut"; 8037 - packageName = "yargonaut"; 8038 - version = "1.1.4"; 8039 - src = fetchurl { 8040 - url = "https://registry.npmjs.org/yargonaut/-/yargonaut-1.1.4.tgz"; 8041 - sha512 = "rHgFmbgXAAzl+1nngqOcwEljqHGG9uUZoPjsdZEs1w5JW9RXYzrSvH/u70C1JE5qFi0qjsdhnUX/dJRpWqitSA=="; 8042 - }; 8043 - }; 8044 "yargs-15.4.1" = { 8045 name = "yargs"; 8046 packageName = "yargs"; ··· 8068 sha512 = "c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ=="; 8069 }; 8070 }; 8071 "yargs-parser-18.1.3" = { 8072 name = "yargs-parser"; 8073 packageName = "yargs-parser"; ··· 8086 sha512 = "y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="; 8087 }; 8088 }; 8089 "yup-0.32.11" = { 8090 name = "yup"; 8091 packageName = "yup"; ··· 8104 sha512 = "YvBeW5RGNeNzKOUJs3rTL4+9rpcvHXt5I051FJbOcitV8bl40pEfcG0Q+dWSwS0/BIYrMZ/9HHoqLllMkFhD0w=="; 8105 }; 8106 }; 8107 }; 8108 in 8109 { 8110 n8n = nodeEnv.buildNodePackage { 8111 name = "n8n"; 8112 packageName = "n8n"; 8113 - version = "0.182.1"; 8114 src = fetchurl { 8115 - url = "https://registry.npmjs.org/n8n/-/n8n-0.182.1.tgz"; 8116 - sha512 = "XwKz/v251gnzexpe80BFLxLAN34IDZI5oCbvtgpp9n9dx0BG9D9jjDY+rvSL8SbNjRrm87bm0RTPLUgKurj2Iw=="; 8117 }; 8118 dependencies = [ 8119 sources."@apidevtools/json-schema-ref-parser-8.0.0" 8120 sources."@apidevtools/openapi-schemas-2.1.0" 8121 - sources."@apidevtools/swagger-cli-4.0.0" 8122 sources."@apidevtools/swagger-methods-3.0.2" 8123 (sources."@apidevtools/swagger-parser-9.0.1" // { 8124 dependencies = [ ··· 8135 sources."tslib-2.4.0" 8136 ]; 8137 }) 8138 (sources."@azure/core-http-2.2.5" // { 8139 dependencies = [ 8140 sources."tough-cookie-4.0.0" 8141 sources."tslib-2.4.0" 8142 ]; 8143 }) 8144 (sources."@azure/core-lro-2.2.4" // { ··· 8148 }) 8149 (sources."@azure/core-paging-1.3.0" // { 8150 dependencies = [ 8151 sources."tslib-2.4.0" 8152 ]; 8153 }) 8154 (sources."@azure/core-tracing-1.0.0-preview.13" // { 8155 dependencies = [ 8156 sources."tslib-2.4.0" 8157 ]; ··· 8161 sources."tslib-2.4.0" 8162 ]; 8163 }) 8164 - sources."@azure/ms-rest-azure-env-2.0.0" 8165 - (sources."@azure/ms-rest-js-2.6.1" // { 8166 dependencies = [ 8167 - sources."form-data-2.5.1" 8168 ]; 8169 }) 8170 - sources."@azure/ms-rest-nodeauth-3.1.1" 8171 (sources."@azure/storage-blob-12.10.0" // { 8172 dependencies = [ 8173 sources."tslib-2.4.0" 8174 ]; 8175 }) 8176 - sources."@babel/runtime-7.18.3" 8177 sources."@colors/colors-1.5.0" 8178 (sources."@dabh/diagnostics-2.0.3" // { 8179 dependencies = [ ··· 8191 sources."string_decoder-0.10.31" 8192 ]; 8193 }) 8194 sources."@jsdevtools/ono-7.1.3" 8195 sources."@kafkajs/confluent-schema-registry-1.0.6" 8196 sources."@kwsites/file-exists-1.1.1" 8197 sources."@kwsites/promise-deferred-1.1.1" 8198 sources."@mapbox/node-pre-gyp-1.0.9" 8199 sources."@nodelib/fs.scandir-2.1.5" 8200 sources."@nodelib/fs.stat-2.0.5" 8201 sources."@nodelib/fs.walk-1.2.8" ··· 8205 sources."tslib-2.4.0" 8206 ]; 8207 }) 8208 (sources."@oclif/errors-1.3.5" // { 8209 dependencies = [ 8210 - sources."wrap-ansi-7.0.0" 8211 ]; 8212 }) 8213 (sources."@oclif/help-1.0.1" // { 8214 dependencies = [ 8215 sources."@oclif/config-1.18.2" 8216 - sources."chalk-4.1.2" 8217 sources."tslib-2.4.0" 8218 ]; 8219 }) 8220 sources."@oclif/linewrap-1.0.0" 8221 (sources."@oclif/parser-3.8.7" // { 8222 dependencies = [ 8223 - sources."chalk-4.1.2" 8224 sources."tslib-2.4.0" 8225 ]; 8226 }) 8227 sources."@opentelemetry/api-1.1.0" 8228 sources."@rudderstack/rudder-sdk-node-1.0.6" 8229 sources."@segment/loosely-validate-event-2.0.0" 8230 sources."@selderee/plugin-htmlparser2-0.6.0" 8231 sources."@servie/events-1.0.0" 8232 - sources."@sqltools/formatter-1.2.2" 8233 - (sources."@techteamer/ocsp-1.0.0" // { 8234 - dependencies = [ 8235 - sources."async-3.2.4" 8236 - ]; 8237 - }) 8238 sources."@tokenizer/token-0.3.0" 8239 sources."@tootallnate/once-1.1.2" 8240 sources."@types/bluebird-3.5.36" 8241 sources."@types/body-parser-1.19.2" 8242 sources."@types/connect-3.4.35" 8243 sources."@types/express-4.17.13" 8244 sources."@types/express-jwt-0.0.42" 8245 sources."@types/express-serve-static-core-4.17.29" 8246 sources."@types/express-unless-0.5.3" 8247 sources."@types/ftp-0.3.33" 8248 - sources."@types/generic-pool-3.1.10" 8249 sources."@types/glob-7.2.0" 8250 sources."@types/json-diff-0.5.2" 8251 sources."@types/json-schema-7.0.11" ··· 8265 sources."@types/promise-ftp-common-1.1.0" 8266 sources."@types/qs-6.9.7" 8267 sources."@types/range-parser-1.2.4" 8268 - sources."@types/readable-stream-2.3.13" 8269 sources."@types/serve-static-1.13.10" 8270 sources."@types/shelljs-0.8.11" 8271 sources."@types/snowflake-sdk-1.6.7" ··· 8273 sources."@types/tough-cookie-2.3.8" 8274 sources."@types/tunnel-0.0.3" 8275 sources."@types/yamljs-0.2.31" 8276 - sources."@xmldom/xmldom-0.7.5" 8277 sources."abbrev-1.1.1" 8278 - sources."abort-controller-3.0.0" 8279 sources."accepts-1.3.8" 8280 sources."access-control-1.0.1" 8281 sources."acorn-8.7.1" 8282 sources."acorn-walk-8.2.0" 8283 - (sources."adal-node-0.2.3" // { 8284 - dependencies = [ 8285 - sources."uuid-3.4.0" 8286 - ]; 8287 - }) 8288 sources."adler-32-1.2.0" 8289 sources."agent-base-6.0.2" 8290 sources."ajv-6.12.6" ··· 8298 sources."ansi-escapes-4.3.2" 8299 sources."ansi-regex-5.0.1" 8300 sources."ansi-styles-4.3.0" 8301 sources."any-promise-1.3.0" 8302 sources."anymatch-3.1.2" 8303 sources."app-root-path-3.0.0" ··· 8320 sources."asn1.js-rfc5280-3.0.0" 8321 sources."assert-options-0.7.0" 8322 sources."assert-plus-1.0.0" 8323 - sources."async-2.6.4" 8324 sources."async-validator-1.8.5" 8325 sources."asynckit-0.4.0" 8326 (sources."auto-changelog-1.16.4" // { 8327 dependencies = [ 8328 sources."semver-6.3.0" 8329 ]; 8330 }) 8331 sources."avsc-5.7.4" 8332 - (sources."aws-sdk-2.1156.0" // { 8333 dependencies = [ 8334 sources."buffer-4.9.2" 8335 sources."events-1.1.1" ··· 8343 sources."aws-sign2-0.7.0" 8344 sources."aws4-1.11.0" 8345 sources."axios-0.21.4" 8346 - sources."axios-retry-3.2.5" 8347 sources."babel-helper-vue-jsx-merge-props-2.0.3" 8348 (sources."babel-runtime-6.26.0" // { 8349 dependencies = [ ··· 8383 }) 8384 sources."body-parser-xml-2.0.3" 8385 sources."boolbase-1.0.0" 8386 - sources."brace-expansion-1.1.11" 8387 sources."braces-3.0.2" 8388 sources."browser-request-0.3.3" 8389 sources."bson-1.1.6" ··· 8411 sources."tslib-2.4.0" 8412 ]; 8413 }) 8414 sources."caseless-0.12.0" 8415 (sources."cfb-1.2.2" // { 8416 dependencies = [ 8417 sources."adler-32-1.3.1" 8418 ]; 8419 }) 8420 - sources."chalk-3.0.0" 8421 (sources."change-case-4.1.2" // { 8422 dependencies = [ 8423 sources."tslib-2.4.0" ··· 8436 sources."cli-cursor-3.1.0" 8437 (sources."cli-highlight-2.1.11" // { 8438 dependencies = [ 8439 - sources."chalk-4.1.2" 8440 sources."cliui-7.0.4" 8441 sources."parse5-5.1.1" 8442 - sources."wrap-ansi-7.0.0" 8443 sources."y18n-5.0.8" 8444 sources."yargs-16.2.0" 8445 sources."yargs-parser-20.2.9" 8446 ]; 8447 }) 8448 sources."cli-width-3.0.0" 8449 sources."client-oauth2-4.3.3" 8450 - sources."cliui-6.0.0" 8451 sources."cluster-key-slot-1.1.0" 8452 sources."codepage-1.15.0" 8453 (sources."color-3.2.1" // { ··· 8494 sources."cookie-0.4.1" 8495 sources."cookie-parser-1.4.6" 8496 sources."cookie-signature-1.0.6" 8497 - sources."core-js-3.23.1" 8498 sources."core-util-is-1.0.3" 8499 sources."crc-32-1.2.2" 8500 sources."cron-1.7.2" 8501 sources."cron-parser-2.18.0" 8502 - (sources."cross-spawn-4.0.2" // { 8503 dependencies = [ 8504 - sources."lru-cache-4.1.5" 8505 - sources."yallist-2.1.2" 8506 ]; 8507 }) 8508 sources."crypt-0.0.2" ··· 8512 sources."css-what-6.1.0" 8513 sources."cssfilter-0.0.10" 8514 sources."dashdash-1.14.1" 8515 - sources."date-utils-1.2.21" 8516 sources."debug-4.3.4" 8517 sources."debuglog-1.0.1" 8518 sources."decamelize-1.2.0" 8519 sources."deepmerge-1.5.2" 8520 sources."define-properties-1.1.4" 8521 sources."delayed-stream-1.0.0" 8522 sources."delegates-1.0.0" ··· 8543 sources."ecc-jsbn-0.1.2" 8544 sources."ecdsa-sig-formatter-1.0.11" 8545 sources."ee-first-1.1.1" 8546 sources."element-ui-2.15.9" 8547 sources."emoji-regex-8.0.0" 8548 sources."enabled-1.0.2" ··· 8553 sources."env-variable-0.0.6" 8554 sources."err-code-2.0.3" 8555 sources."es-abstract-1.20.1" 8556 sources."es-array-method-boxes-properly-1.0.0" 8557 sources."es-to-primitive-1.2.1" 8558 sources."es5-ext-0.8.2" ··· 8562 sources."eslint-config-riot-1.0.0" 8563 sources."esprima-4.0.1" 8564 sources."etag-1.8.1" 8565 - sources."event-target-shim-5.0.1" 8566 sources."events-3.3.0" 8567 sources."eventsource-2.0.2" 8568 sources."exit-on-epipe-1.0.1" ··· 8589 sources."fastq-1.13.0" 8590 sources."fecha-4.2.3" 8591 sources."fflate-0.7.3" 8592 - sources."figlet-1.5.2" 8593 (sources."figures-3.2.0" // { 8594 dependencies = [ 8595 sources."escape-string-regexp-1.0.5" 8596 ]; 8597 }) 8598 sources."file-type-14.7.1" 8599 sources."fill-range-7.0.1" 8600 (sources."finalhandler-1.2.0" // { 8601 dependencies = [ ··· 8604 ]; 8605 }) 8606 sources."find-up-4.1.0" 8607 - sources."flatted-3.2.5" 8608 sources."fn.name-1.1.0" 8609 sources."follow-redirects-1.15.1" 8610 sources."for-each-0.3.3" ··· 8614 sources."forwarded-0.2.0" 8615 sources."frac-1.1.2" 8616 sources."fresh-0.5.2" 8617 - sources."fs-extra-8.1.0" 8618 sources."fs-minipass-2.1.0" 8619 sources."fs.realpath-1.0.0" 8620 sources."function-bind-1.1.1" ··· 8625 sources."generic-pool-3.8.2" 8626 sources."get-caller-file-2.0.5" 8627 sources."get-intrinsic-1.1.2" 8628 sources."get-port-5.1.1" 8629 sources."get-symbol-description-1.0.0" 8630 sources."get-system-fonts-2.0.2" ··· 8637 sources."is-glob-3.1.0" 8638 ]; 8639 }) 8640 sources."globby-11.1.0" 8641 (sources."gm-1.23.1" // { 8642 dependencies = [ 8643 sources."debug-3.2.7" 8644 ]; 8645 }) 8646 sources."google-timezones-json-1.0.2" ··· 8649 sources."har-schema-2.0.0" 8650 sources."har-validator-5.1.5" 8651 sources."has-1.0.3" 8652 - (sources."has-ansi-2.0.0" // { 8653 - dependencies = [ 8654 - sources."ansi-regex-2.1.1" 8655 - ]; 8656 - }) 8657 sources."has-bigints-1.0.2" 8658 sources."has-flag-4.0.0" 8659 sources."has-property-descriptors-1.0.0" ··· 8680 sources."http-proxy-agent-4.0.1" 8681 sources."http-signature-1.2.0" 8682 sources."https-proxy-agent-5.0.1" 8683 sources."iconv-lite-0.4.24" 8684 sources."ics-2.35.0" 8685 sources."ieee754-1.2.1" ··· 8695 sources."indent-string-4.0.0" 8696 sources."inflight-1.0.6" 8697 sources."inherits-2.0.4" 8698 - (sources."inquirer-7.3.3" // { 8699 - dependencies = [ 8700 - sources."chalk-4.1.2" 8701 - ]; 8702 - }) 8703 sources."internal-slot-1.0.3" 8704 sources."interpret-1.4.0" 8705 sources."ioredis-4.28.5" ··· 8743 sources."isexe-2.0.0" 8744 sources."iso-639-1-2.1.15" 8745 sources."isstream-0.1.2" 8746 sources."jmespath-0.16.0" 8747 sources."join-component-1.1.0" 8748 sources."js-yaml-3.14.1" 8749 - sources."jsbi-3.2.5" 8750 sources."jsbn-0.1.1" 8751 sources."json-diff-0.5.5" 8752 sources."json-schema-0.4.0" ··· 8760 sources."json-schema-traverse-0.4.1" 8761 sources."json-stable-stringify-without-jsonify-1.0.1" 8762 sources."json-stringify-safe-5.0.1" 8763 - sources."jsonfile-4.0.0" 8764 sources."jsonschema-1.4.1" 8765 (sources."jsonwebtoken-8.5.1" // { 8766 dependencies = [ ··· 8780 sources."iconv-lite-0.6.3" 8781 ]; 8782 }) 8783 - sources."libphonenumber-js-1.10.6" 8784 sources."libqp-1.1.0" 8785 sources."limiter-1.1.5" 8786 sources."linkify-it-4.0.0" ··· 8788 dependencies = [ 8789 sources."cliui-7.0.4" 8790 sources."debug-4.3.2" 8791 - sources."wrap-ansi-7.0.0" 8792 sources."y18n-5.0.8" 8793 sources."yargs-17.1.1" 8794 sources."yargs-parser-20.2.9" ··· 8817 sources."lodash.uniqby-4.7.0" 8818 sources."lodash.unset-4.5.2" 8819 sources."lodash.zipobject-4.1.3" 8820 - sources."logform-2.4.0" 8821 sources."long-4.0.0" 8822 sources."lossless-json-1.0.5" 8823 (sources."lower-case-2.0.2" // { ··· 8861 sources."mime-types-2.1.35" 8862 sources."mimic-fn-2.1.0" 8863 sources."minimalistic-assert-1.0.1" 8864 - sources."minimatch-3.1.2" 8865 sources."minimist-1.2.6" 8866 - sources."minipass-3.2.1" 8867 sources."minizlib-2.1.2" 8868 sources."mkdirp-0.5.6" 8869 (sources."mock-require-3.0.3" // { ··· 8874 }) 8875 sources."moment-2.29.3" 8876 sources."moment-timezone-0.5.34" 8877 - sources."monaco-editor-0.29.1" 8878 sources."mongodb-3.7.3" 8879 sources."moo-0.5.1" 8880 (sources."mqtt-4.2.6" // { ··· 8890 ]; 8891 }) 8892 sources."ms-2.1.2" 8893 - sources."mssql-6.4.1" 8894 sources."multer-1.4.5-lts.1" 8895 sources."mute-stream-0.0.8" 8896 (sources."mysql2-2.3.3" // { ··· 8900 ]; 8901 }) 8902 sources."mz-2.7.0" 8903 - sources."n8n-core-0.122.1" 8904 - sources."n8n-design-system-0.23.0" 8905 - sources."n8n-editor-ui-0.148.0" 8906 - (sources."n8n-nodes-base-0.180.0" // { 8907 dependencies = [ 8908 sources."iconv-lite-0.6.3" 8909 ]; 8910 }) 8911 - sources."n8n-workflow-0.104.0" 8912 (sources."named-placeholders-1.1.2" // { 8913 dependencies = [ 8914 sources."lru-cache-4.1.5" ··· 8918 sources."nanoclone-0.2.1" 8919 sources."nanoid-3.3.4" 8920 sources."native-duplexpair-1.0.0" 8921 (sources."nearley-2.20.1" // { 8922 dependencies = [ 8923 sources."commander-2.20.3" ··· 8925 }) 8926 sources."negotiator-0.6.3" 8927 sources."neo-async-2.6.2" 8928 (sources."no-case-3.0.4" // { 8929 dependencies = [ 8930 sources."tslib-2.4.0" 8931 ]; 8932 }) 8933 sources."node-addon-api-4.3.0" 8934 sources."node-ensure-0.0.0" 8935 sources."node-fetch-2.6.7" ··· 8948 sources."object-assign-4.1.1" 8949 sources."object-inspect-1.12.2" 8950 sources."object-keys-1.1.1" 8951 sources."object.assign-4.1.2" 8952 sources."object.getownpropertydescriptors-2.1.4" 8953 sources."on-finished-2.4.1" ··· 8975 sources."tslib-2.4.0" 8976 ]; 8977 }) 8978 - sources."parent-require-1.0.0" 8979 sources."parse-github-url-1.0.2" 8980 sources."parse-passwd-1.0.0" 8981 sources."parse-srcset-1.0.2" ··· 8992 sources."passport-cookie-1.0.9" 8993 sources."passport-jwt-4.0.0" 8994 sources."passport-strategy-1.0.0" 8995 (sources."path-case-3.0.4" // { 8996 dependencies = [ 8997 sources."tslib-2.4.0" ··· 9000 sources."path-dirname-1.0.2" 9001 sources."path-exists-4.0.0" 9002 sources."path-is-absolute-1.0.1" 9003 sources."path-parse-1.0.7" 9004 sources."path-to-regexp-0.1.7" 9005 sources."path-type-4.0.0" ··· 9087 sources."readable-web-to-node-stream-2.0.0" 9088 sources."readdirp-3.6.0" 9089 sources."rechoir-0.6.2" 9090 sources."redis-3.1.2" 9091 sources."redis-commands-1.7.0" 9092 sources."redis-errors-1.2.0" ··· 9117 sources."require-main-filename-2.0.0" 9118 sources."requires-port-1.0.0" 9119 sources."resize-observer-polyfill-1.5.1" 9120 - sources."resolve-1.22.0" 9121 sources."restore-cursor-3.1.0" 9122 sources."ret-0.1.15" 9123 sources."retry-0.12.0" 9124 sources."reusify-1.0.4" 9125 (sources."rhea-1.0.24" // { 9126 dependencies = [ 9127 sources."debug-3.2.7" 9128 ]; 9129 }) 9130 sources."rimraf-3.0.2" 9131 - sources."riot-tmpl-3.0.8" 9132 sources."rndm-1.2.0" 9133 sources."rss-parser-3.12.0" 9134 sources."run-async-2.4.1" ··· 9170 sources."setheader-1.0.2" 9171 sources."setprototypeof-1.2.0" 9172 sources."sha.js-2.4.11" 9173 sources."shell-escape-0.2.0" 9174 sources."shelljs-0.8.5" 9175 (sources."showdown-2.1.0" // { ··· 9179 }) 9180 sources."side-channel-1.0.4" 9181 sources."signal-exit-3.0.7" 9182 - sources."simple-git-3.7.1" 9183 sources."simple-lru-cache-0.0.2" 9184 sources."simple-swizzle-0.2.2" 9185 sources."slash-3.0.0" ··· 9188 sources."tslib-2.4.0" 9189 ]; 9190 }) 9191 - (sources."snowflake-sdk-1.6.10" // { 9192 dependencies = [ 9193 sources."axios-0.27.2" 9194 sources."debug-3.2.7" ··· 9222 sources."standard-as-callback-2.1.0" 9223 sources."statuses-2.0.1" 9224 sources."stealthy-require-1.1.1" 9225 sources."stream-shift-1.0.1" 9226 sources."streamsearch-1.1.0" 9227 sources."string-similarity-4.0.4" ··· 9235 }) 9236 sources."strip-ansi-6.0.1" 9237 sources."strtok3-6.3.0" 9238 - sources."supports-color-7.2.0" 9239 sources."supports-preserve-symlinks-flag-1.0.0" 9240 sources."swagger-ui-dist-4.12.0" 9241 sources."swagger-ui-express-4.4.0" ··· 9244 sources."mkdirp-1.0.4" 9245 ]; 9246 }) 9247 - sources."tarn-1.1.5" 9248 sources."tdigest-0.1.2" 9249 - (sources."tedious-6.7.1" // { 9250 dependencies = [ 9251 - sources."@types/node-12.20.55" 9252 - sources."bl-3.0.1" 9253 - sources."iconv-lite-0.5.2" 9254 sources."readable-stream-3.6.0" 9255 sources."sprintf-js-1.1.2" 9256 ]; ··· 9295 sources."type-is-1.6.18" 9296 sources."typedarray-0.0.6" 9297 sources."typedarray-to-buffer-3.1.5" 9298 - (sources."typeorm-0.2.30" // { 9299 dependencies = [ 9300 - sources."chalk-4.1.2" 9301 sources."cliui-7.0.4" 9302 sources."mkdirp-1.0.4" 9303 - sources."wrap-ansi-7.0.0" 9304 sources."y18n-5.0.8" 9305 - sources."yargs-16.2.0" 9306 - sources."yargs-parser-20.2.9" 9307 ]; 9308 }) 9309 sources."uc.micro-1.0.6" 9310 sources."uid-safe-2.1.5" 9311 sources."unbox-primitive-1.0.2" 9312 sources."unc-path-regex-0.1.2" 9313 - sources."underscore-1.13.4" 9314 sources."unique-stream-2.3.1" 9315 - sources."universalify-0.1.2" 9316 sources."unpipe-1.0.0" 9317 (sources."upper-case-2.0.2" // { 9318 dependencies = [ ··· 9354 sources."vue-2.6.14" 9355 sources."vue-color-2.8.1" 9356 sources."vue-fragment-1.6.0" 9357 - sources."vue-i18n-8.27.1" 9358 sources."vue2-boring-avatars-0.3.4" 9359 sources."webidl-conversions-3.0.1" 9360 sources."whatwg-url-5.0.0" ··· 9363 sources."which-module-2.0.0" 9364 sources."wide-align-1.1.5" 9365 sources."widest-line-3.1.0" 9366 - (sources."winston-3.7.2" // { 9367 dependencies = [ 9368 - sources."async-3.2.4" 9369 sources."readable-stream-3.6.0" 9370 ]; 9371 }) ··· 9377 sources."wmf-1.0.2" 9378 sources."word-0.3.0" 9379 sources."wordwrap-1.0.0" 9380 - sources."wrap-ansi-6.2.0" 9381 sources."wrappy-1.0.2" 9382 sources."ws-7.5.8" 9383 sources."xlsx-0.17.5" 9384 sources."xml2js-0.4.23" 9385 sources."xmlbuilder-11.0.1" 9386 - sources."xpath.js-1.1.0" 9387 sources."xregexp-2.0.0" 9388 (sources."xss-1.0.13" // { 9389 dependencies = [ ··· 9394 sources."y18n-4.0.3" 9395 sources."yallist-4.0.0" 9396 sources."yamljs-0.3.0" 9397 - (sources."yargonaut-1.1.4" // { 9398 - dependencies = [ 9399 - sources."ansi-regex-2.1.1" 9400 - sources."ansi-styles-2.2.1" 9401 - sources."chalk-1.1.3" 9402 - sources."escape-string-regexp-1.0.5" 9403 - sources."strip-ansi-3.0.1" 9404 - sources."supports-color-2.0.0" 9405 - ]; 9406 - }) 9407 sources."yargs-15.4.1" 9408 sources."yargs-parser-18.1.3" 9409 sources."yup-0.32.11" 9410 sources."z-schema-4.2.4" 9411 ]; 9412 buildInputs = globalBuildInputs; 9413 meta = {
··· 76 sha512 = "7CU6DmCHIZp5ZPiZ9r3J17lTKMmYsm/zGvNkjArQwPkrLlZ1TZ+EUYfGgh2X31OLMVAQCTJZW4cXHJi02EbJnA=="; 77 }; 78 }; 79 + "@azure/core-client-1.6.0" = { 80 + name = "_at_azure_slash_core-client"; 81 + packageName = "@azure/core-client"; 82 + version = "1.6.0"; 83 + src = fetchurl { 84 + url = "https://registry.npmjs.org/@azure/core-client/-/core-client-1.6.0.tgz"; 85 + sha512 = "YhSf4cb61ApSjItscp9XoaLq8KRnacPDAhmjAZSMnn/gs6FhFbZNfOBOErG2dDj7JRknVtCmJ5mLmfR2sLa11A=="; 86 + }; 87 + }; 88 "@azure/core-http-2.2.5" = { 89 name = "_at_azure_slash_core-http"; 90 packageName = "@azure/core-http"; ··· 112 sha512 = "H6Tg9eBm0brHqLy0OSAGzxIh1t4UL8eZVrSUMJ60Ra9cwq2pOskFqVpz2pYoHDsBY1jZ4V/P8LRGb5D5pmC6rg=="; 113 }; 114 }; 115 + "@azure/core-rest-pipeline-1.9.0" = { 116 + name = "_at_azure_slash_core-rest-pipeline"; 117 + packageName = "@azure/core-rest-pipeline"; 118 + version = "1.9.0"; 119 + src = fetchurl { 120 + url = "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.9.0.tgz"; 121 + sha512 = "uvM3mY+Vegk0F2r4Eh0yPdsXTUyafTQkeX0USnz1Eyangxm2Bib0w0wkJVZW8fpks7Lcv0ztIdCFTrN7H8uptg=="; 122 + }; 123 + }; 124 "@azure/core-tracing-1.0.0-preview.13" = { 125 name = "_at_azure_slash_core-tracing"; 126 packageName = "@azure/core-tracing"; ··· 130 sha512 = "KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ=="; 131 }; 132 }; 133 + "@azure/core-tracing-1.0.1" = { 134 + name = "_at_azure_slash_core-tracing"; 135 + packageName = "@azure/core-tracing"; 136 + version = "1.0.1"; 137 + src = fetchurl { 138 + url = "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.1.tgz"; 139 + sha512 = "I5CGMoLtX+pI17ZdiFJZgxMJApsK6jjfm85hpgp3oazCdq5Wxgh4wMr7ge/TTWW1B5WBuvIOI1fMU/FrOAMKrw=="; 140 + }; 141 + }; 142 + "@azure/core-util-1.0.0" = { 143 + name = "_at_azure_slash_core-util"; 144 + packageName = "@azure/core-util"; 145 + version = "1.0.0"; 146 + src = fetchurl { 147 + url = "https://registry.npmjs.org/@azure/core-util/-/core-util-1.0.0.tgz"; 148 + sha512 = "yWshY9cdPthlebnb3Zuz/j0Lv4kjU6u7PR5sW7A9FF7EX+0irMRJAtyTq5TPiDHJfjH8gTSlnIYFj9m7Ed76IQ=="; 149 + }; 150 + }; 151 + "@azure/identity-2.0.5" = { 152 + name = "_at_azure_slash_identity"; 153 + packageName = "@azure/identity"; 154 + version = "2.0.5"; 155 + src = fetchurl { 156 + url = "https://registry.npmjs.org/@azure/identity/-/identity-2.0.5.tgz"; 157 + sha512 = "fSQTu9dS0P+lw1Gfct6t7TuRYybULL/E3wJjXLc1xr6RQXpmenJspi0lKzq3XFjLP5MzBlToKY3ZkYoAXPz1zA=="; 158 + }; 159 + }; 160 + "@azure/keyvault-keys-4.4.0" = { 161 + name = "_at_azure_slash_keyvault-keys"; 162 + packageName = "@azure/keyvault-keys"; 163 + version = "4.4.0"; 164 + src = fetchurl { 165 + url = "https://registry.npmjs.org/@azure/keyvault-keys/-/keyvault-keys-4.4.0.tgz"; 166 + sha512 = "W9sPZebXYa3aar7BGIA+fAsq/sy1nf2TZAETbkv7DRawzVLrWv8QoVVceqNHjy3cigT4HNxXjaPYCI49ez5CUA=="; 167 + }; 168 + }; 169 "@azure/logger-1.0.3" = { 170 name = "_at_azure_slash_logger"; 171 packageName = "@azure/logger"; ··· 175 sha512 = "aK4s3Xxjrx3daZr3VylxejK3vG5ExXck5WOHDJ8in/k9AqlfIyFMMT1uG7u8mNjX+QRILTIn0/Xgschfh/dQ9g=="; 176 }; 177 }; 178 + "@azure/msal-browser-2.26.0" = { 179 + name = "_at_azure_slash_msal-browser"; 180 + packageName = "@azure/msal-browser"; 181 + version = "2.26.0"; 182 + src = fetchurl { 183 + url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.26.0.tgz"; 184 + sha512 = "mSyZORSgeMEWz5Wo5alUqjxP/HKt/XcViZqc3dnKFM9347qYPIWsAlzHkEmmafNr1VGUo7MeqB0emZCOQrl04w=="; 185 + }; 186 + }; 187 + "@azure/msal-common-4.5.1" = { 188 + name = "_at_azure_slash_msal-common"; 189 + packageName = "@azure/msal-common"; 190 + version = "4.5.1"; 191 src = fetchurl { 192 + url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-4.5.1.tgz"; 193 + sha512 = "/i5dXM+QAtO+6atYd5oHGBAx48EGSISkXNXViheliOQe+SIFMDo3gSq3lL54W0suOSAsVPws3XnTaIHlla0PIQ=="; 194 }; 195 }; 196 + "@azure/msal-common-7.0.0" = { 197 + name = "_at_azure_slash_msal-common"; 198 + packageName = "@azure/msal-common"; 199 + version = "7.0.0"; 200 src = fetchurl { 201 + url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-7.0.0.tgz"; 202 + sha512 = "EkaHGjv0kw1RljhboeffM91b+v9d5VtmyG+0a/gvdqjbLu3kDzEfoaS5BNM9QqMzbxgZylsjAjQDtxdHLX/ziA=="; 203 }; 204 }; 205 + "@azure/msal-node-1.10.0" = { 206 + name = "_at_azure_slash_msal-node"; 207 + packageName = "@azure/msal-node"; 208 + version = "1.10.0"; 209 src = fetchurl { 210 + url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.10.0.tgz"; 211 + sha512 = "oSv9mg199FpRTe+fZ3o9NDYpKShOHqeceaNcCHJcKUaAaCojAbfbxD1Cvsti8BEsLKE6x0HcnjilnM1MKmZekA=="; 212 }; 213 }; 214 "@azure/storage-blob-12.10.0" = { ··· 220 sha512 = "FBEPKGnvtQJS8V8Tg1P9obgmVD9AodrIfwtwhBpsjenClhFyugMp3HPJY0tF7rInUB/CivKBCbnQKrUnKxqxzw=="; 221 }; 222 }; 223 + "@babel/runtime-7.18.6" = { 224 name = "_at_babel_slash_runtime"; 225 packageName = "@babel/runtime"; 226 + version = "7.18.6"; 227 src = fetchurl { 228 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.6.tgz"; 229 + sha512 = "t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ=="; 230 }; 231 }; 232 "@colors/colors-1.5.0" = { ··· 283 sha512 = "RxSa9VjcDWgWCYsaLdZItdCnJj7p4LxggaEk+Y3MP0dHKoxez8ioG07DVekVbZZqccsrL+oPB/N9AzVPxj4blg=="; 284 }; 285 }; 286 + "@js-joda/core-5.2.0" = { 287 + name = "_at_js-joda_slash_core"; 288 + packageName = "@js-joda/core"; 289 + version = "5.2.0"; 290 + src = fetchurl { 291 + url = "https://registry.npmjs.org/@js-joda/core/-/core-5.2.0.tgz"; 292 + sha512 = "0OriPYIaMLB3XiLQMe0BXKVIqeriTn3H7JMOzTsHEtt7Zqq+TetCu97KnAhU3ckiQZKBxfZshft+H1OC4D1lXw=="; 293 + }; 294 + }; 295 "@jsdevtools/ono-7.1.3" = { 296 name = "_at_jsdevtools_slash_ono"; 297 packageName = "@jsdevtools/ono"; ··· 337 sha512 = "aDF3S3rK9Q2gey/WAttUlISduDItz5BU3306M9Eyv6/oS40aMprnopshtlKTykxRNIBEZuRMaZAnbrQ4QtKGyw=="; 338 }; 339 }; 340 + "@n8n_io/riot-tmpl-1.0.1" = { 341 + name = "_at_n8n_io_slash_riot-tmpl"; 342 + packageName = "@n8n_io/riot-tmpl"; 343 + version = "1.0.1"; 344 + src = fetchurl { 345 + url = "https://registry.npmjs.org/@n8n_io/riot-tmpl/-/riot-tmpl-1.0.1.tgz"; 346 + sha512 = "+ig7/rafN3LGthGEi8fs1N5XxPndmRq5YAX92DWOar9mrMDrYyIjK5XAQaTnTMDQgmKKllrAl+bVRmQXKcLFuw=="; 347 + }; 348 + }; 349 "@nodelib/fs.scandir-2.1.5" = { 350 name = "_at_nodelib_slash_fs.scandir"; 351 packageName = "@nodelib/fs.scandir"; ··· 400 sha512 = "sBpko86IrTscc39EvHUhL+c++81BVTsIZ3ETu/vG+cCdi0N6vb2DoahR67A9FI2CGnxRRHjnTfa3m6LulwNATA=="; 401 }; 402 }; 403 + "@oclif/core-1.9.5" = { 404 + name = "_at_oclif_slash_core"; 405 + packageName = "@oclif/core"; 406 + version = "1.9.5"; 407 + src = fetchurl { 408 + url = "https://registry.npmjs.org/@oclif/core/-/core-1.9.5.tgz"; 409 + sha512 = "C605Cr4RhHTMXYApLxdVt/PL6IA5cguN6MPvsMjxkvBppk2Fvcsj05dtRdDqShskRpZzHtu65emG1tHy8TWPWQ=="; 410 + }; 411 + }; 412 "@oclif/errors-1.3.5" = { 413 name = "_at_oclif_slash_errors"; 414 packageName = "@oclif/errors"; ··· 445 sha512 = "b11xBmIUK+LuuwVGJpFs4LwQN2xj2cBWj2c4z1FtiXGrJ85h9xV6q+k136Hw0tGg1jQoRXuvuBnqQ7es7vO9/Q=="; 446 }; 447 }; 448 + "@oclif/screen-3.0.2" = { 449 + name = "_at_oclif_slash_screen"; 450 + packageName = "@oclif/screen"; 451 + version = "3.0.2"; 452 + src = fetchurl { 453 + url = "https://registry.npmjs.org/@oclif/screen/-/screen-3.0.2.tgz"; 454 + sha512 = "S/SF/XYJeevwIgHFmVDAFRUvM3m+OjhvCAYMk78ZJQCYCQ5wS7j+LTt1ZEv2jpEEGg2tx/F6TYYWxddNAYHrFQ=="; 455 + }; 456 + }; 457 "@opentelemetry/api-1.1.0" = { 458 name = "_at_opentelemetry_slash_api"; 459 packageName = "@opentelemetry/api"; ··· 499 sha512 = "sBSO19KzdrJCM3gdx6eIxV8M9Gxfgg6iDQmH5TIAGaUu+X9VDdsINXJOnoiZ1Kx3TrHdH4bt5UVglkjsEGBcvw=="; 500 }; 501 }; 502 + "@sqltools/formatter-1.2.3" = { 503 name = "_at_sqltools_slash_formatter"; 504 packageName = "@sqltools/formatter"; 505 + version = "1.2.3"; 506 src = fetchurl { 507 + url = "https://registry.npmjs.org/@sqltools/formatter/-/formatter-1.2.3.tgz"; 508 + sha512 = "O3uyB/JbkAEMZaP3YqyHH7TMnex7tWyCbCI4EfJdOCoN6HIhqdJBWTM6aCCiWQ/5f5wxjgU735QAIpJbjDvmzg=="; 509 }; 510 }; 511 "@techteamer/ocsp-1.0.0" = { ··· 517 sha512 = "lNAOoFHaZN+4huo30ukeqVrUmfC+avoEBYQ11QAnAw1PFhnI5oBCg8O/TNiCoEWix7gNGBIEjrQwtPREqKMPog=="; 518 }; 519 }; 520 + "@tediousjs/connection-string-0.3.0" = { 521 + name = "_at_tediousjs_slash_connection-string"; 522 + packageName = "@tediousjs/connection-string"; 523 + version = "0.3.0"; 524 + src = fetchurl { 525 + url = "https://registry.npmjs.org/@tediousjs/connection-string/-/connection-string-0.3.0.tgz"; 526 + sha512 = "d/keJiNKfpHo+GmSB8QcsAwBx8h+V1UbdozA5TD+eSLXprNY53JAYub47J9evsSKWDdNG5uVj0FiMozLKuzowQ=="; 527 + }; 528 + }; 529 "@tokenizer/token-0.1.1" = { 530 name = "_at_tokenizer_slash_token"; 531 packageName = "@tokenizer/token"; ··· 580 sha512 = "cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ=="; 581 }; 582 }; 583 + "@types/es-aggregate-error-1.0.2" = { 584 + name = "_at_types_slash_es-aggregate-error"; 585 + packageName = "@types/es-aggregate-error"; 586 + version = "1.0.2"; 587 + src = fetchurl { 588 + url = "https://registry.npmjs.org/@types/es-aggregate-error/-/es-aggregate-error-1.0.2.tgz"; 589 + sha512 = "erqUpFXksaeR2kejKnhnjZjbFxUpGZx4Z7ydNL9ie8tEhXPiZTsLeUDJ6aR1F8j5wWUAtOAQWUqkc7givBJbBA=="; 590 + }; 591 + }; 592 "@types/express-4.17.13" = { 593 name = "_at_types_slash_express"; 594 packageName = "@types/express"; ··· 634 sha512 = "L7wFlX3t9GsGgNS0oxLt6zbAZZGgsdptMmciL4cdxHmbL3Hz4Lysh8YqAR34eHsJ1uacJITcZBBDl5XpQlxPpQ=="; 635 }; 636 }; 637 + "@types/generic-pool-3.1.11" = { 638 name = "_at_types_slash_generic-pool"; 639 packageName = "@types/generic-pool"; 640 + version = "3.1.11"; 641 src = fetchurl { 642 + url = "https://registry.npmjs.org/@types/generic-pool/-/generic-pool-3.1.11.tgz"; 643 + sha512 = "3mcD3ewmaKPbiAZglGj8We4ohlSMfw/xS+bbYUhTv/ALgqrrtJjyL4Ju9IgapXooBCTFEew5LAKQqzZV6/43xg=="; 644 }; 645 }; 646 "@types/glob-7.2.0" = { ··· 724 sha512 = "/SNsDidUFCvqqcWDwxv2feww/yqhNeTRL5CVoL3jU4Goc4kKEL10T7Eye65ZqPNi4HRx8sAEX59pV1aEH7drNA=="; 725 }; 726 }; 727 "@types/node-18.0.0" = { 728 name = "_at_types_slash_node"; 729 packageName = "@types/node"; ··· 778 sha512 = "EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="; 779 }; 780 }; 781 "@types/serve-static-1.13.10" = { 782 name = "_at_types_slash_serve-static"; 783 packageName = "@types/serve-static"; ··· 841 sha512 = "QcJ5ZczaXAqbVD3o8mw/mEBhRvO5UAdTtbvgwL/OgoWubvNBh6/MxLBAigtcgIFaq3shon9m3POIxQaLQt4fxQ=="; 842 }; 843 }; 844 "abbrev-1.1.1" = { 845 name = "abbrev"; 846 packageName = "abbrev"; ··· 850 sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="; 851 }; 852 }; 853 "accepts-1.3.8" = { 854 name = "accepts"; 855 packageName = "accepts"; ··· 886 sha512 = "k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA=="; 887 }; 888 }; 889 "adler-32-1.2.0" = { 890 name = "adler-32"; 891 packageName = "adler-32"; ··· 931 sha512 = "icU+a4kkq4Y1PS4NNi+YPDMwdlbFcZ1EZTQT2nigW3fvOb6AOgUQ9+Mk4ue0Zu5cBg/XpDzB40oH10ysrk2dmA=="; 932 }; 933 }; 934 + "ansi-escapes-3.2.0" = { 935 + name = "ansi-escapes"; 936 + packageName = "ansi-escapes"; 937 + version = "3.2.0"; 938 + src = fetchurl { 939 + url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz"; 940 + sha512 = "cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ=="; 941 + }; 942 + }; 943 "ansi-escapes-4.3.2" = { 944 name = "ansi-escapes"; 945 packageName = "ansi-escapes"; ··· 949 sha512 = "gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ=="; 950 }; 951 }; 952 "ansi-regex-5.0.1" = { 953 name = "ansi-regex"; 954 packageName = "ansi-regex"; ··· 958 sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="; 959 }; 960 }; 961 "ansi-styles-4.3.0" = { 962 name = "ansi-styles"; 963 packageName = "ansi-styles"; ··· 965 src = fetchurl { 966 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"; 967 sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; 968 + }; 969 + }; 970 + "ansicolors-0.3.2" = { 971 + name = "ansicolors"; 972 + packageName = "ansicolors"; 973 + version = "0.3.2"; 974 + src = fetchurl { 975 + url = "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz"; 976 + sha512 = "QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg=="; 977 }; 978 }; 979 "any-promise-1.3.0" = { ··· 1147 sha512 = "NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw=="; 1148 }; 1149 }; 1150 "async-3.2.4" = { 1151 name = "async"; 1152 packageName = "async"; ··· 1174 sha512 = "Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="; 1175 }; 1176 }; 1177 + "at-least-node-1.0.0" = { 1178 + name = "at-least-node"; 1179 + packageName = "at-least-node"; 1180 + version = "1.0.0"; 1181 + src = fetchurl { 1182 + url = "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz"; 1183 + sha512 = "+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg=="; 1184 + }; 1185 + }; 1186 "auto-changelog-1.16.4" = { 1187 name = "auto-changelog"; 1188 packageName = "auto-changelog"; ··· 1201 sha512 = "z4oo33lmnvvNRqfUe3YjDGGpqu/L2+wXBIhMtwq6oqZ+exOUAkQYM6zd2VWKF7AIlajOF8ZZuPFfryTG9iLC/w=="; 1202 }; 1203 }; 1204 + "aws-sdk-2.1164.0" = { 1205 name = "aws-sdk"; 1206 packageName = "aws-sdk"; 1207 + version = "2.1164.0"; 1208 src = fetchurl { 1209 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1164.0.tgz"; 1210 + sha512 = "q/M9E68WabF22G8d8lFgo3NH+9RooYswSY9VG6zqN16C19RRm2sGThp8Sxtz/WUK98BAsxSnkLW1ksmy3BsP7Q=="; 1211 }; 1212 }; 1213 "aws-sign2-0.7.0" = { ··· 1246 sha512 = "t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ=="; 1247 }; 1248 }; 1249 + "axios-retry-3.3.0" = { 1250 name = "axios-retry"; 1251 packageName = "axios-retry"; 1252 + version = "3.3.0"; 1253 src = fetchurl { 1254 + url = "https://registry.npmjs.org/axios-retry/-/axios-retry-3.3.0.tgz"; 1255 + sha512 = "lKAk/qIkpYxscEooNPB6Yip3aPNcNJ+cAiU1eiTo9vCh+gYPX482K4lfYubPXwbVvmNM4cakAsfN171nmSHkdg=="; 1256 }; 1257 }; 1258 "babel-helper-vue-jsx-merge-props-2.0.3" = { ··· 1381 sha512 = "6Pesp1w0DEX1N550i/uGV/TqucVL4AM/pgThFSN/Qq9si1/DF9aIHs1BxD8V/QU0HoeHO6cQRTAuYnLPKq1e4g=="; 1382 }; 1383 }; 1384 + "bl-4.1.0" = { 1385 name = "bl"; 1386 packageName = "bl"; 1387 + version = "4.1.0"; 1388 src = fetchurl { 1389 + url = "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz"; 1390 + sha512 = "1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w=="; 1391 }; 1392 }; 1393 + "bl-5.0.0" = { 1394 name = "bl"; 1395 packageName = "bl"; 1396 + version = "5.0.0"; 1397 src = fetchurl { 1398 + url = "https://registry.npmjs.org/bl/-/bl-5.0.0.tgz"; 1399 + sha512 = "8vxFNZ0pflFfi0WXA3WQXlj6CaMEwsmh63I1CNp0q+wWv8sD0ARx1KovSQd0l2GkwrMIOyedq0EF1FxI+RCZLQ=="; 1400 }; 1401 }; 1402 "bluebird-2.11.0" = { ··· 1462 sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; 1463 }; 1464 }; 1465 + "brace-expansion-2.0.1" = { 1466 + name = "brace-expansion"; 1467 + packageName = "brace-expansion"; 1468 + version = "2.0.1"; 1469 + src = fetchurl { 1470 + url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz"; 1471 + sha512 = "XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="; 1472 + }; 1473 + }; 1474 "braces-3.0.2" = { 1475 name = "braces"; 1476 packageName = "braces"; ··· 1516 sha512 = "EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="; 1517 }; 1518 }; 1519 + "buffer-6.0.3" = { 1520 + name = "buffer"; 1521 + packageName = "buffer"; 1522 + version = "6.0.3"; 1523 + src = fetchurl { 1524 + url = "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz"; 1525 + sha512 = "FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA=="; 1526 + }; 1527 + }; 1528 "buffer-equal-constant-time-1.0.1" = { 1529 name = "buffer-equal-constant-time"; 1530 packageName = "buffer-equal-constant-time"; ··· 1669 sha512 = "ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A=="; 1670 }; 1671 }; 1672 + "cardinal-2.1.1" = { 1673 + name = "cardinal"; 1674 + packageName = "cardinal"; 1675 + version = "2.1.1"; 1676 + src = fetchurl { 1677 + url = "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz"; 1678 + sha512 = "JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw=="; 1679 + }; 1680 + }; 1681 "caseless-0.12.0" = { 1682 name = "caseless"; 1683 packageName = "caseless"; ··· 1696 sha512 = "KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA=="; 1697 }; 1698 }; 1699 "chalk-3.0.0" = { 1700 name = "chalk"; 1701 packageName = "chalk"; ··· 1829 src = fetchurl { 1830 url = "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.11.tgz"; 1831 sha512 = "9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg=="; 1832 + }; 1833 + }; 1834 + "cli-progress-3.11.2" = { 1835 + name = "cli-progress"; 1836 + packageName = "cli-progress"; 1837 + version = "3.11.2"; 1838 + src = fetchurl { 1839 + url = "https://registry.npmjs.org/cli-progress/-/cli-progress-3.11.2.tgz"; 1840 + sha512 = "lCPoS6ncgX4+rJu5bS3F/iCz17kZ9MPZ6dpuTtI0KXKABkhyXIdYB3Inby1OpaGti3YlI3EeEkM9AuWpelJrVA=="; 1841 }; 1842 }; 1843 "cli-width-3.0.0" = { ··· 2173 sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 2174 }; 2175 }; 2176 + "core-js-3.23.3" = { 2177 name = "core-js"; 2178 packageName = "core-js"; 2179 + version = "3.23.3"; 2180 src = fetchurl { 2181 + url = "https://registry.npmjs.org/core-js/-/core-js-3.23.3.tgz"; 2182 + sha512 = "oAKwkj9xcWNBAvGbT//WiCdOMpb9XQG92/Fe3ABFM/R16BsHgePG00mFOgKf7IsCtfj8tA1kHtf/VwErhriz5Q=="; 2183 }; 2184 }; 2185 "core-util-is-1.0.2" = { ··· 2236 sha512 = "yAXz/pA1tD8Gtg2S98Ekf/sewp3Lcp3YoFKJ4Hkp5h5yLWnKVTDU0kwjKJ8NDCYcfTLfyGkzTikst+jWypT1iA=="; 2237 }; 2238 }; 2239 + "cross-spawn-6.0.5" = { 2240 + name = "cross-spawn"; 2241 + packageName = "cross-spawn"; 2242 + version = "6.0.5"; 2243 + src = fetchurl { 2244 + url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz"; 2245 + sha512 = "eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ=="; 2246 + }; 2247 + }; 2248 "crypt-0.0.2" = { 2249 name = "crypt"; 2250 packageName = "crypt"; ··· 2308 sha512 = "jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g=="; 2309 }; 2310 }; 2311 "debug-2.6.9" = { 2312 name = "debug"; 2313 packageName = "debug"; ··· 2378 src = fetchurl { 2379 url = "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz"; 2380 sha512 = "FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="; 2381 + }; 2382 + }; 2383 + "define-lazy-prop-2.0.0" = { 2384 + name = "define-lazy-prop"; 2385 + packageName = "define-lazy-prop"; 2386 + version = "2.0.0"; 2387 + src = fetchurl { 2388 + url = "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz"; 2389 + sha512 = "Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og=="; 2390 }; 2391 }; 2392 "define-properties-1.1.4" = { ··· 2596 sha512 = "WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="; 2597 }; 2598 }; 2599 + "ejs-3.1.8" = { 2600 + name = "ejs"; 2601 + packageName = "ejs"; 2602 + version = "3.1.8"; 2603 + src = fetchurl { 2604 + url = "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz"; 2605 + sha512 = "/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ=="; 2606 + }; 2607 + }; 2608 "element-ui-2.15.9" = { 2609 name = "element-ui"; 2610 packageName = "element-ui"; ··· 2704 sha512 = "WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA=="; 2705 }; 2706 }; 2707 + "es-aggregate-error-1.0.8" = { 2708 + name = "es-aggregate-error"; 2709 + packageName = "es-aggregate-error"; 2710 + version = "1.0.8"; 2711 + src = fetchurl { 2712 + url = "https://registry.npmjs.org/es-aggregate-error/-/es-aggregate-error-1.0.8.tgz"; 2713 + sha512 = "AKUb5MKLWMozPlFRHOKqWD7yta5uaEhH21qwtnf6FlKjNjTJOoqFi0/G14+FfSkIQhhu6X68Af4xgRC6y8qG4A=="; 2714 + }; 2715 + }; 2716 "es-array-method-boxes-properly-1.0.0" = { 2717 name = "es-array-method-boxes-properly"; 2718 packageName = "es-array-method-boxes-properly"; ··· 2803 sha512 = "aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg=="; 2804 }; 2805 }; 2806 "events-1.1.1" = { 2807 name = "events"; 2808 packageName = "events"; ··· 2947 sha512 = "0Zz1jOzJWERhyhsimS54VTqOteCNwRtIlh8isdL0AXLo0g7xNTfTL7oWrkmCnPhZGocKIkWHBistBrrpoNH3aw=="; 2948 }; 2949 }; 2950 "figures-3.2.0" = { 2951 name = "figures"; 2952 packageName = "figures"; ··· 2963 src = fetchurl { 2964 url = "https://registry.npmjs.org/file-type/-/file-type-14.7.1.tgz"; 2965 sha512 = "sXAMgFk67fQLcetXustxfKX+PZgHIUFn96Xld9uH8aXPdX3xOp0/jg9OdouVTvQrf7mrn+wAa4jN/y9fUOOiRA=="; 2966 + }; 2967 + }; 2968 + "filelist-1.0.4" = { 2969 + name = "filelist"; 2970 + packageName = "filelist"; 2971 + version = "1.0.4"; 2972 + src = fetchurl { 2973 + url = "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz"; 2974 + sha512 = "w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q=="; 2975 }; 2976 }; 2977 "fill-range-7.0.1" = { ··· 3001 sha512 = "PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="; 3002 }; 3003 }; 3004 + "flatted-3.2.6" = { 3005 name = "flatted"; 3006 packageName = "flatted"; 3007 + version = "3.2.6"; 3008 src = fetchurl { 3009 + url = "https://registry.npmjs.org/flatted/-/flatted-3.2.6.tgz"; 3010 + sha512 = "0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ=="; 3011 }; 3012 }; 3013 "fn.name-1.1.0" = { ··· 3053 src = fetchurl { 3054 url = "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz"; 3055 sha512 = "1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ=="; 3056 }; 3057 }; 3058 "form-data-3.0.1" = { ··· 3118 sha512 = "yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g=="; 3119 }; 3120 }; 3121 + "fs-extra-9.1.0" = { 3122 + name = "fs-extra"; 3123 + packageName = "fs-extra"; 3124 + version = "9.1.0"; 3125 + src = fetchurl { 3126 + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz"; 3127 + sha512 = "hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ=="; 3128 + }; 3129 + }; 3130 "fs-minipass-2.1.0" = { 3131 name = "fs-minipass"; 3132 packageName = "fs-minipass"; ··· 3226 sha512 = "Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA=="; 3227 }; 3228 }; 3229 + "get-package-type-0.1.0" = { 3230 + name = "get-package-type"; 3231 + packageName = "get-package-type"; 3232 + version = "0.1.0"; 3233 + src = fetchurl { 3234 + url = "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz"; 3235 + sha512 = "pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q=="; 3236 + }; 3237 + }; 3238 "get-port-5.1.1" = { 3239 name = "get-port"; 3240 packageName = "get-port"; ··· 3307 sha512 = "uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw=="; 3308 }; 3309 }; 3310 + "globalthis-1.0.3" = { 3311 + name = "globalthis"; 3312 + packageName = "globalthis"; 3313 + version = "1.0.3"; 3314 + src = fetchurl { 3315 + url = "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz"; 3316 + sha512 = "sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA=="; 3317 + }; 3318 + }; 3319 "globby-11.1.0" = { 3320 name = "globby"; 3321 packageName = "globby"; ··· 3386 src = fetchurl { 3387 url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz"; 3388 sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="; 3389 }; 3390 }; 3391 "has-bigints-1.0.2" = { ··· 3550 sha512 = "dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA=="; 3551 }; 3552 }; 3553 + "hyperlinker-1.0.0" = { 3554 + name = "hyperlinker"; 3555 + packageName = "hyperlinker"; 3556 + version = "1.0.0"; 3557 + src = fetchurl { 3558 + url = "https://registry.npmjs.org/hyperlinker/-/hyperlinker-1.0.0.tgz"; 3559 + sha512 = "Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ=="; 3560 + }; 3561 + }; 3562 "iconv-lite-0.4.24" = { 3563 name = "iconv-lite"; 3564 packageName = "iconv-lite"; ··· 3566 src = fetchurl { 3567 url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"; 3568 sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 3569 }; 3570 }; 3571 "iconv-lite-0.6.3" = { ··· 4072 sha512 = "Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g=="; 4073 }; 4074 }; 4075 + "jake-10.8.5" = { 4076 + name = "jake"; 4077 + packageName = "jake"; 4078 + version = "10.8.5"; 4079 + src = fetchurl { 4080 + url = "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz"; 4081 + sha512 = "sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw=="; 4082 + }; 4083 + }; 4084 "jmespath-0.16.0" = { 4085 name = "jmespath"; 4086 packageName = "jmespath"; ··· 4117 sha512 = "wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="; 4118 }; 4119 }; 4120 + "jsbi-4.3.0" = { 4121 name = "jsbi"; 4122 packageName = "jsbi"; 4123 + version = "4.3.0"; 4124 src = fetchurl { 4125 + url = "https://registry.npmjs.org/jsbi/-/jsbi-4.3.0.tgz"; 4126 + sha512 = "SnZNcinB4RIcnEyZqFPdGPVgrg2AcnykiBy0sHVJQKHYeaLUvi3Exj+iaPpLnFVkDPZIV4U0yvgC9/R4uEAZ9g=="; 4127 }; 4128 }; 4129 "jsbn-0.1.1" = { ··· 4198 sha512 = "m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg=="; 4199 }; 4200 }; 4201 + "jsonfile-6.1.0" = { 4202 + name = "jsonfile"; 4203 + packageName = "jsonfile"; 4204 + version = "6.1.0"; 4205 + src = fetchurl { 4206 + url = "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz"; 4207 + sha512 = "5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ=="; 4208 + }; 4209 + }; 4210 "jsonschema-1.4.1" = { 4211 name = "jsonschema"; 4212 packageName = "jsonschema"; ··· 4243 sha512 = "qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA=="; 4244 }; 4245 }; 4246 + "jwa-2.0.0" = { 4247 + name = "jwa"; 4248 + packageName = "jwa"; 4249 + version = "2.0.0"; 4250 + src = fetchurl { 4251 + url = "https://registry.npmjs.org/jwa/-/jwa-2.0.0.tgz"; 4252 + sha512 = "jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA=="; 4253 + }; 4254 + }; 4255 "jwks-rsa-1.12.3" = { 4256 name = "jwks-rsa"; 4257 packageName = "jwks-rsa"; ··· 4270 sha512 = "YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA=="; 4271 }; 4272 }; 4273 + "jws-4.0.0" = { 4274 + name = "jws"; 4275 + packageName = "jws"; 4276 + version = "4.0.0"; 4277 + src = fetchurl { 4278 + url = "https://registry.npmjs.org/jws/-/jws-4.0.0.tgz"; 4279 + sha512 = "KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg=="; 4280 + }; 4281 + }; 4282 "kafkajs-1.16.0" = { 4283 name = "kafkajs"; 4284 packageName = "kafkajs"; ··· 4333 sha512 = "xOqorG21Va+3CjpFOfFTU7SWohHH2uIX9ZY4Byz6J+lvpfvc486tOAT/G9GfbrKtJ9O7NCX9o0aC2lxqbnZ9EA=="; 4334 }; 4335 }; 4336 + "libphonenumber-js-1.10.7" = { 4337 name = "libphonenumber-js"; 4338 packageName = "libphonenumber-js"; 4339 + version = "1.10.7"; 4340 src = fetchurl { 4341 + url = "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.10.7.tgz"; 4342 + sha512 = "jZXLCCWMe1b/HXkjiLeYt2JsytZMcqH26jLFIdzFDFF0xvSUWrYKyvPlyPG+XJzEyKUFbcZxLdWGMwQsWaHDxQ=="; 4343 }; 4344 }; 4345 "libqp-1.1.0" = { ··· 4585 sha512 = "A9SzX4hMKWS25MyalwcOnNoplyHbkNVsjidhTp8ru0Sj23wY9GWBKS8gAIGDSAqeWjIjvE4KBEl24XXAs+v4wQ=="; 4586 }; 4587 }; 4588 + "logform-2.4.1" = { 4589 name = "logform"; 4590 packageName = "logform"; 4591 + version = "2.4.1"; 4592 src = fetchurl { 4593 + url = "https://registry.npmjs.org/logform/-/logform-2.4.1.tgz"; 4594 + sha512 = "7XB/tqc3VRbri9pRjU6E97mQ8vC27ivJ3lct4jhyT+n0JNDd4YKldFl0D75NqDp46hk8RC7Ma1Vjv/UPf67S+A=="; 4595 }; 4596 }; 4597 "long-4.0.0" = { ··· 4855 sha512 = "J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="; 4856 }; 4857 }; 4858 + "minimatch-5.1.0" = { 4859 + name = "minimatch"; 4860 + packageName = "minimatch"; 4861 + version = "5.1.0"; 4862 + src = fetchurl { 4863 + url = "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz"; 4864 + sha512 = "9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg=="; 4865 + }; 4866 + }; 4867 "minimist-1.2.6" = { 4868 name = "minimist"; 4869 packageName = "minimist"; ··· 4873 sha512 = "Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="; 4874 }; 4875 }; 4876 + "minipass-3.3.4" = { 4877 name = "minipass"; 4878 packageName = "minipass"; 4879 + version = "3.3.4"; 4880 src = fetchurl { 4881 + url = "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz"; 4882 + sha512 = "I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw=="; 4883 }; 4884 }; 4885 "minizlib-2.1.2" = { ··· 4936 sha512 = "3zAEHh2hKUs3EXLESx/wsgw6IQdusOT8Bxm3D9UrHPQR7zlMmzwybC8zHEM1tQ4LJwP7fcxrWr8tuBg05fFCbg=="; 4937 }; 4938 }; 4939 + "monaco-editor-0.30.1" = { 4940 name = "monaco-editor"; 4941 packageName = "monaco-editor"; 4942 + version = "0.30.1"; 4943 src = fetchurl { 4944 + url = "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.30.1.tgz"; 4945 + sha512 = "B/y4+b2O5G2gjuxIFtCE2EkM17R2NM7/3F8x0qcPsqy4V83bitJTIO4TIeZpYlzu/xy6INiY/+84BEm6+7Cmzg=="; 4946 }; 4947 }; 4948 "mongodb-3.7.3" = { ··· 5008 sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; 5009 }; 5010 }; 5011 + "mssql-8.1.2" = { 5012 name = "mssql"; 5013 packageName = "mssql"; 5014 + version = "8.1.2"; 5015 src = fetchurl { 5016 + url = "https://registry.npmjs.org/mssql/-/mssql-8.1.2.tgz"; 5017 + sha512 = "xkTw3Sp1Jpq2f7CG3rFQn6YK4XZbnL8HfZhaB/KRC/hjDZlJB3pSWYN2Cp/WwxIeA1iUJkdFa6GTfdMY8+DAjg=="; 5018 }; 5019 }; 5020 "multer-1.4.5-lts.1" = { ··· 5053 sha512 = "z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q=="; 5054 }; 5055 }; 5056 + "n8n-core-0.124.0" = { 5057 name = "n8n-core"; 5058 packageName = "n8n-core"; 5059 + version = "0.124.0"; 5060 src = fetchurl { 5061 + url = "https://registry.npmjs.org/n8n-core/-/n8n-core-0.124.0.tgz"; 5062 + sha512 = "rcOInEZLSxlOuCH2cMuyW+EO1/QUH4pJaDJlCmDUAJ2JdqyXMPVAiYBLX3SPRHy9cvfuE0oV/aSHh9VpiISCHg=="; 5063 }; 5064 }; 5065 + "n8n-design-system-0.24.0" = { 5066 name = "n8n-design-system"; 5067 packageName = "n8n-design-system"; 5068 + version = "0.24.0"; 5069 src = fetchurl { 5070 + url = "https://registry.npmjs.org/n8n-design-system/-/n8n-design-system-0.24.0.tgz"; 5071 + sha512 = "/JPfW6wDdkrVonApyHOMsdRNDIy3ljQJ1PG7LqGFt7PB1Tgxz8X/y+rClegEm+miQN3i9egN2yq3TChvL/YDmw=="; 5072 }; 5073 }; 5074 + "n8n-editor-ui-0.150.0" = { 5075 name = "n8n-editor-ui"; 5076 packageName = "n8n-editor-ui"; 5077 + version = "0.150.0"; 5078 src = fetchurl { 5079 + url = "https://registry.npmjs.org/n8n-editor-ui/-/n8n-editor-ui-0.150.0.tgz"; 5080 + sha512 = "HQ8tblXy9orfCMGcffD12yyHqKfd4kCwZDt7ckXzZpwqq4SUHYT1MQO/O1zXykpdLDY2ZKQ73+YV2kD3tMcLqg=="; 5081 }; 5082 }; 5083 + "n8n-nodes-base-0.182.0" = { 5084 name = "n8n-nodes-base"; 5085 packageName = "n8n-nodes-base"; 5086 + version = "0.182.0"; 5087 src = fetchurl { 5088 + url = "https://registry.npmjs.org/n8n-nodes-base/-/n8n-nodes-base-0.182.0.tgz"; 5089 + sha512 = "mC6SeDYmsiKLDSWAL1nDbLCGH+TgZq0HiLYBlTa+ttg/S7Yw1W8VmhFs0ZNVk6VQgACSGSvT9mA5/YTFIPqplA=="; 5090 }; 5091 }; 5092 + "n8n-workflow-0.106.0" = { 5093 name = "n8n-workflow"; 5094 packageName = "n8n-workflow"; 5095 + version = "0.106.0"; 5096 src = fetchurl { 5097 + url = "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.106.0.tgz"; 5098 + sha512 = "vuVKjmK9ycZFYcEAb80JtDGV+/tLG6qVGQHy7qNA+kpVgQBYdsDJCVKEyPw6Bj0zHHW0ggEmL4VmoE35UPeRAw=="; 5099 }; 5100 }; 5101 "named-placeholders-1.1.2" = { ··· 5134 sha512 = "E7QQoM+3jvNtlmyfqRZ0/U75VFgCls+fSkbml2MpgWkWyz3ox8Y58gNhfuziuQYGNNQAbFZJQck55LHCnCK6CA=="; 5135 }; 5136 }; 5137 + "natural-orderby-2.0.3" = { 5138 + name = "natural-orderby"; 5139 + packageName = "natural-orderby"; 5140 + version = "2.0.3"; 5141 + src = fetchurl { 5142 + url = "https://registry.npmjs.org/natural-orderby/-/natural-orderby-2.0.3.tgz"; 5143 + sha512 = "p7KTHxU0CUrcOXe62Zfrb5Z13nLvPhSWR/so3kFulUQU0sgUll2Z0LwpsLN351eOOD+hRGu/F1g+6xDfPeD++Q=="; 5144 + }; 5145 + }; 5146 "nearley-2.20.1" = { 5147 name = "nearley"; 5148 packageName = "nearley"; ··· 5170 sha512 = "Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw=="; 5171 }; 5172 }; 5173 + "nice-try-1.0.5" = { 5174 + name = "nice-try"; 5175 + packageName = "nice-try"; 5176 + version = "1.0.5"; 5177 + src = fetchurl { 5178 + url = "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz"; 5179 + sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ=="; 5180 + }; 5181 + }; 5182 "no-case-3.0.4" = { 5183 name = "no-case"; 5184 packageName = "no-case"; ··· 5186 src = fetchurl { 5187 url = "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz"; 5188 sha512 = "fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg=="; 5189 + }; 5190 + }; 5191 + "node-abort-controller-3.0.1" = { 5192 + name = "node-abort-controller"; 5193 + packageName = "node-abort-controller"; 5194 + version = "3.0.1"; 5195 + src = fetchurl { 5196 + url = "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.0.1.tgz"; 5197 + sha512 = "/ujIVxthRs+7q6hsdjHMaj8hRG9NuWmwrz+JdRwZ14jdFoKSkm+vDsCbF9PLpnSqjaWQJuTmVtcWHNLr+vrOFw=="; 5198 }; 5199 }; 5200 "node-addon-api-4.3.0" = { ··· 5377 sha512 = "NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="; 5378 }; 5379 }; 5380 + "object-treeify-1.1.33" = { 5381 + name = "object-treeify"; 5382 + packageName = "object-treeify"; 5383 + version = "1.1.33"; 5384 + src = fetchurl { 5385 + url = "https://registry.npmjs.org/object-treeify/-/object-treeify-1.1.33.tgz"; 5386 + sha512 = "EFVjAYfzWqWsBMRHPMAXLCDIJnpMhdWAqR7xG6M6a2cs6PMFpl/+Z20w9zDW4vkxOFfddegBKq9Rehd0bxWE7A=="; 5387 + }; 5388 + }; 5389 "object.assign-4.1.2" = { 5390 name = "object.assign"; 5391 packageName = "object.assign"; ··· 5467 sha512 = "MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q=="; 5468 }; 5469 }; 5470 + "open-8.4.0" = { 5471 + name = "open"; 5472 + packageName = "open"; 5473 + version = "8.4.0"; 5474 + src = fetchurl { 5475 + url = "https://registry.npmjs.org/open/-/open-8.4.0.tgz"; 5476 + sha512 = "XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q=="; 5477 + }; 5478 + }; 5479 "openapi-types-1.3.5" = { 5480 name = "openapi-types"; 5481 packageName = "openapi-types"; ··· 5611 sha512 = "RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A=="; 5612 }; 5613 }; 5614 "parse-github-url-1.0.2" = { 5615 name = "parse-github-url"; 5616 packageName = "parse-github-url"; ··· 5728 sha512 = "CB97UUvDKJde2V0KDWWB3lyf6PC3FaZP7YxZ2G8OAtn9p4HI9j9JLP9qjOGZFvyl8uwNT8qM+hGnz/n16NI7oA=="; 5729 }; 5730 }; 5731 + "password-prompt-1.1.2" = { 5732 + name = "password-prompt"; 5733 + packageName = "password-prompt"; 5734 + version = "1.1.2"; 5735 + src = fetchurl { 5736 + url = "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.2.tgz"; 5737 + sha512 = "bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA=="; 5738 + }; 5739 + }; 5740 "path-case-3.0.4" = { 5741 name = "path-case"; 5742 packageName = "path-case"; ··· 5771 src = fetchurl { 5772 url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 5773 sha512 = "AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="; 5774 + }; 5775 + }; 5776 + "path-key-2.0.1" = { 5777 + name = "path-key"; 5778 + packageName = "path-key"; 5779 + version = "2.0.1"; 5780 + src = fetchurl { 5781 + url = "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz"; 5782 + sha512 = "fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw=="; 5783 }; 5784 }; 5785 "path-parse-1.0.7" = { ··· 6412 sha512 = "HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw=="; 6413 }; 6414 }; 6415 + "redeyed-2.1.1" = { 6416 + name = "redeyed"; 6417 + packageName = "redeyed"; 6418 + version = "2.1.1"; 6419 + src = fetchurl { 6420 + url = "https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz"; 6421 + sha512 = "FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ=="; 6422 + }; 6423 + }; 6424 "redis-3.1.2" = { 6425 name = "redis"; 6426 packageName = "redis"; ··· 6601 sha512 = "LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg=="; 6602 }; 6603 }; 6604 + "resolve-1.22.1" = { 6605 name = "resolve"; 6606 packageName = "resolve"; 6607 + version = "1.22.1"; 6608 src = fetchurl { 6609 + url = "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz"; 6610 + sha512 = "nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw=="; 6611 }; 6612 }; 6613 "restore-cursor-3.1.0" = { ··· 6646 sha512 = "U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="; 6647 }; 6648 }; 6649 + "rfdc-1.3.0" = { 6650 + name = "rfdc"; 6651 + packageName = "rfdc"; 6652 + version = "1.3.0"; 6653 + src = fetchurl { 6654 + url = "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz"; 6655 + sha512 = "V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA=="; 6656 + }; 6657 + }; 6658 "rhea-1.0.24" = { 6659 name = "rhea"; 6660 packageName = "rhea"; ··· 6671 src = fetchurl { 6672 url = "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"; 6673 sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; 6674 }; 6675 }; 6676 "rndm-1.2.0" = { ··· 6934 sha512 = "QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ=="; 6935 }; 6936 }; 6937 + "shebang-command-1.2.0" = { 6938 + name = "shebang-command"; 6939 + packageName = "shebang-command"; 6940 + version = "1.2.0"; 6941 + src = fetchurl { 6942 + url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz"; 6943 + sha512 = "EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg=="; 6944 + }; 6945 + }; 6946 + "shebang-regex-1.0.0" = { 6947 + name = "shebang-regex"; 6948 + packageName = "shebang-regex"; 6949 + version = "1.0.0"; 6950 + src = fetchurl { 6951 + url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz"; 6952 + sha512 = "wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ=="; 6953 + }; 6954 + }; 6955 "shell-escape-0.2.0" = { 6956 name = "shell-escape"; 6957 packageName = "shell-escape"; ··· 6997 sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; 6998 }; 6999 }; 7000 + "simple-git-3.10.0" = { 7001 name = "simple-git"; 7002 packageName = "simple-git"; 7003 + version = "3.10.0"; 7004 src = fetchurl { 7005 + url = "https://registry.npmjs.org/simple-git/-/simple-git-3.10.0.tgz"; 7006 + sha512 = "2w35xrS5rVtAW0g67LqtxCZN5cdddz/woQRfS0OJXaljXEoTychZ4jnE+CQgra/wX4ZvHeiChTUMenCwfIYEYw=="; 7007 }; 7008 }; 7009 "simple-lru-cache-0.0.2" = { ··· 7042 sha512 = "LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg=="; 7043 }; 7044 }; 7045 + "snowflake-sdk-1.6.11" = { 7046 name = "snowflake-sdk"; 7047 packageName = "snowflake-sdk"; 7048 + version = "1.6.11"; 7049 src = fetchurl { 7050 + url = "https://registry.npmjs.org/snowflake-sdk/-/snowflake-sdk-1.6.11.tgz"; 7051 + sha512 = "w4oCXjNQ1peAJjhnrwihr+epYw1pSxbe5/+PdxexYb2rzowyOn0RA5PFbir90q/dx0jzM2gvPiHDjnSBEZ1/zA=="; 7052 }; 7053 }; 7054 "source-map-0.6.1" = { ··· 7213 sha512 = "ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g=="; 7214 }; 7215 }; 7216 + "stoppable-1.1.0" = { 7217 + name = "stoppable"; 7218 + packageName = "stoppable"; 7219 + version = "1.1.0"; 7220 + src = fetchurl { 7221 + url = "https://registry.npmjs.org/stoppable/-/stoppable-1.1.0.tgz"; 7222 + sha512 = "KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw=="; 7223 + }; 7224 + }; 7225 "stream-shift-1.0.1" = { 7226 name = "stream-shift"; 7227 packageName = "stream-shift"; ··· 7294 sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; 7295 }; 7296 }; 7297 "strip-ansi-6.0.1" = { 7298 name = "strip-ansi"; 7299 packageName = "strip-ansi"; ··· 7312 sha512 = "fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw=="; 7313 }; 7314 }; 7315 + "supports-color-7.2.0" = { 7316 name = "supports-color"; 7317 packageName = "supports-color"; 7318 + version = "7.2.0"; 7319 src = fetchurl { 7320 + url = "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"; 7321 + sha512 = "qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="; 7322 }; 7323 }; 7324 + "supports-color-8.1.1" = { 7325 name = "supports-color"; 7326 packageName = "supports-color"; 7327 + version = "8.1.1"; 7328 + src = fetchurl { 7329 + url = "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz"; 7330 + sha512 = "MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="; 7331 + }; 7332 + }; 7333 + "supports-hyperlinks-2.2.0" = { 7334 + name = "supports-hyperlinks"; 7335 + packageName = "supports-hyperlinks"; 7336 + version = "2.2.0"; 7337 src = fetchurl { 7338 + url = "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz"; 7339 + sha512 = "6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ=="; 7340 }; 7341 }; 7342 "supports-preserve-symlinks-flag-1.0.0" = { ··· 7375 sha512 = "an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA=="; 7376 }; 7377 }; 7378 + "tarn-3.0.2" = { 7379 name = "tarn"; 7380 packageName = "tarn"; 7381 + version = "3.0.2"; 7382 src = fetchurl { 7383 + url = "https://registry.npmjs.org/tarn/-/tarn-3.0.2.tgz"; 7384 + sha512 = "51LAVKUSZSVfI05vjPESNc5vwqqZpbXCsU+/+wxlOrUjk2SnFTt97v9ZgQrD4YmxYW1Px6w2KjaDitCfkvgxMQ=="; 7385 }; 7386 }; 7387 "tdigest-0.1.2" = { ··· 7393 sha512 = "+G0LLgjjo9BZX2MfdvPfH+MKLCrxlXSYec5DaPYP1fe6Iyhf0/fSmJ0bFiZ1F8BT6cGXl2LpltQptzjXKWEkKA=="; 7394 }; 7395 }; 7396 + "tedious-14.6.1" = { 7397 name = "tedious"; 7398 packageName = "tedious"; 7399 + version = "14.6.1"; 7400 src = fetchurl { 7401 + url = "https://registry.npmjs.org/tedious/-/tedious-14.6.1.tgz"; 7402 + sha512 = "45Xsvsjm6j41JVXXwKAseAGM/jD6ty8CcSdcxPT4B2dqZ00tIkYsGlI7n8DU8xDoatnvyT4BIYKZZCe3eE16PA=="; 7403 }; 7404 }; 7405 "test-console-2.0.0" = { ··· 7726 sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; 7727 }; 7728 }; 7729 + "typeorm-0.2.45" = { 7730 name = "typeorm"; 7731 packageName = "typeorm"; 7732 + version = "0.2.45"; 7733 src = fetchurl { 7734 + url = "https://registry.npmjs.org/typeorm/-/typeorm-0.2.45.tgz"; 7735 + sha512 = "c0rCO8VMJ3ER7JQ73xfk0zDnVv0WDjpsP6Q1m6CVKul7DB9iVdWLRjPzc8v2eaeBuomsbZ2+gTaYr8k1gm3bYA=="; 7736 }; 7737 }; 7738 "uc.micro-1.0.6" = { ··· 7771 sha512 = "eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg=="; 7772 }; 7773 }; 7774 "unique-stream-2.3.1" = { 7775 name = "unique-stream"; 7776 packageName = "unique-stream"; ··· 7787 src = fetchurl { 7788 url = "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz"; 7789 sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="; 7790 + }; 7791 + }; 7792 + "universalify-2.0.0" = { 7793 + name = "universalify"; 7794 + packageName = "universalify"; 7795 + version = "2.0.0"; 7796 + src = fetchurl { 7797 + url = "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz"; 7798 + sha512 = "hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ=="; 7799 }; 7800 }; 7801 "unpipe-1.0.0" = { ··· 8005 sha512 = "a5T8ZZZK/EQzgVShEl374HbobUJ0a7v12BzOzS6Z/wd/5EE/5SffcyHC+7bf9hP3L7Yc0hhY/GhMdwFQ25O/8A=="; 8006 }; 8007 }; 8008 + "vue-i18n-8.27.2" = { 8009 name = "vue-i18n"; 8010 packageName = "vue-i18n"; 8011 + version = "8.27.2"; 8012 src = fetchurl { 8013 + url = "https://registry.npmjs.org/vue-i18n/-/vue-i18n-8.27.2.tgz"; 8014 + sha512 = "QVzn7u2WVH8F7eSKIM00lujC7x1mnuGPaTnDTmB01Hd709jDtB9kYtBqM+MWmp5AJRx3gnqAdZbee9MelqwFBg=="; 8015 }; 8016 }; 8017 "vue2-boring-avatars-0.3.4" = { ··· 8086 sha512 = "NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg=="; 8087 }; 8088 }; 8089 + "winston-3.8.0" = { 8090 name = "winston"; 8091 packageName = "winston"; 8092 + version = "3.8.0"; 8093 src = fetchurl { 8094 + url = "https://registry.npmjs.org/winston/-/winston-3.8.0.tgz"; 8095 + sha512 = "Iix1w8rIq2kBDkGvclO0db2CVOHYVamCIkVWcUbs567G9i2pdB+gvqLgDgxx4B4HXHYD6U4Zybh6ojepUOqcFQ=="; 8096 }; 8097 }; 8098 "winston-transport-4.5.0" = { ··· 8212 sha512 = "7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ=="; 8213 }; 8214 }; 8215 "xregexp-2.0.0" = { 8216 name = "xregexp"; 8217 packageName = "xregexp"; ··· 8284 sha512 = "C/FsVVhht4iPQYXOInoxUM/1ELSf9EsgKH34FofQOp6hwCPrW4vG4w5++TED3xRUo8gD7l0P1J1dLlDYzODsTQ=="; 8285 }; 8286 }; 8287 "yargs-15.4.1" = { 8288 name = "yargs"; 8289 packageName = "yargs"; ··· 8311 sha512 = "c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ=="; 8312 }; 8313 }; 8314 + "yargs-17.5.1" = { 8315 + name = "yargs"; 8316 + packageName = "yargs"; 8317 + version = "17.5.1"; 8318 + src = fetchurl { 8319 + url = "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz"; 8320 + sha512 = "t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA=="; 8321 + }; 8322 + }; 8323 "yargs-parser-18.1.3" = { 8324 name = "yargs-parser"; 8325 packageName = "yargs-parser"; ··· 8338 sha512 = "y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="; 8339 }; 8340 }; 8341 + "yargs-parser-21.0.1" = { 8342 + name = "yargs-parser"; 8343 + packageName = "yargs-parser"; 8344 + version = "21.0.1"; 8345 + src = fetchurl { 8346 + url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.0.1.tgz"; 8347 + sha512 = "9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg=="; 8348 + }; 8349 + }; 8350 "yup-0.32.11" = { 8351 name = "yup"; 8352 packageName = "yup"; ··· 8365 sha512 = "YvBeW5RGNeNzKOUJs3rTL4+9rpcvHXt5I051FJbOcitV8bl40pEfcG0Q+dWSwS0/BIYrMZ/9HHoqLllMkFhD0w=="; 8366 }; 8367 }; 8368 + "zen-observable-0.8.15" = { 8369 + name = "zen-observable"; 8370 + packageName = "zen-observable"; 8371 + version = "0.8.15"; 8372 + src = fetchurl { 8373 + url = "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.15.tgz"; 8374 + sha512 = "PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ=="; 8375 + }; 8376 + }; 8377 + "zen-observable-ts-1.2.5" = { 8378 + name = "zen-observable-ts"; 8379 + packageName = "zen-observable-ts"; 8380 + version = "1.2.5"; 8381 + src = fetchurl { 8382 + url = "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-1.2.5.tgz"; 8383 + sha512 = "QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg=="; 8384 + }; 8385 + }; 8386 }; 8387 in 8388 { 8389 n8n = nodeEnv.buildNodePackage { 8390 name = "n8n"; 8391 packageName = "n8n"; 8392 + version = "0.184.0"; 8393 src = fetchurl { 8394 + url = "https://registry.npmjs.org/n8n/-/n8n-0.184.0.tgz"; 8395 + sha512 = "GBnRD/3/4SHxSm6soWFmcCp4X30HFrzo2uXLgr0qKYbunO7PIJL+hRr7JO4FVP557n5AQhcL9xTzYTNYt8YtHg=="; 8396 }; 8397 dependencies = [ 8398 sources."@apidevtools/json-schema-ref-parser-8.0.0" 8399 sources."@apidevtools/openapi-schemas-2.1.0" 8400 + (sources."@apidevtools/swagger-cli-4.0.0" // { 8401 + dependencies = [ 8402 + sources."chalk-3.0.0" 8403 + sources."supports-color-7.2.0" 8404 + ]; 8405 + }) 8406 sources."@apidevtools/swagger-methods-3.0.2" 8407 (sources."@apidevtools/swagger-parser-9.0.1" // { 8408 dependencies = [ ··· 8419 sources."tslib-2.4.0" 8420 ]; 8421 }) 8422 + (sources."@azure/core-client-1.6.0" // { 8423 + dependencies = [ 8424 + sources."@azure/core-tracing-1.0.1" 8425 + sources."tslib-2.4.0" 8426 + ]; 8427 + }) 8428 (sources."@azure/core-http-2.2.5" // { 8429 dependencies = [ 8430 sources."tough-cookie-4.0.0" 8431 sources."tslib-2.4.0" 8432 + sources."universalify-0.1.2" 8433 ]; 8434 }) 8435 (sources."@azure/core-lro-2.2.4" // { ··· 8439 }) 8440 (sources."@azure/core-paging-1.3.0" // { 8441 dependencies = [ 8442 + sources."tslib-2.4.0" 8443 + ]; 8444 + }) 8445 + (sources."@azure/core-rest-pipeline-1.9.0" // { 8446 + dependencies = [ 8447 + sources."@azure/core-tracing-1.0.1" 8448 sources."tslib-2.4.0" 8449 ]; 8450 }) 8451 (sources."@azure/core-tracing-1.0.0-preview.13" // { 8452 + dependencies = [ 8453 + sources."tslib-2.4.0" 8454 + ]; 8455 + }) 8456 + (sources."@azure/core-util-1.0.0" // { 8457 + dependencies = [ 8458 + sources."tslib-2.4.0" 8459 + ]; 8460 + }) 8461 + (sources."@azure/identity-2.0.5" // { 8462 + dependencies = [ 8463 + sources."jwa-2.0.0" 8464 + sources."jws-4.0.0" 8465 + sources."open-8.4.0" 8466 + sources."tslib-2.4.0" 8467 + ]; 8468 + }) 8469 + (sources."@azure/keyvault-keys-4.4.0" // { 8470 dependencies = [ 8471 sources."tslib-2.4.0" 8472 ]; ··· 8476 sources."tslib-2.4.0" 8477 ]; 8478 }) 8479 + (sources."@azure/msal-browser-2.26.0" // { 8480 dependencies = [ 8481 + sources."@azure/msal-common-7.0.0" 8482 + ]; 8483 + }) 8484 + sources."@azure/msal-common-4.5.1" 8485 + (sources."@azure/msal-node-1.10.0" // { 8486 + dependencies = [ 8487 + sources."@azure/msal-common-7.0.0" 8488 ]; 8489 }) 8490 (sources."@azure/storage-blob-12.10.0" // { 8491 dependencies = [ 8492 sources."tslib-2.4.0" 8493 ]; 8494 }) 8495 + sources."@babel/runtime-7.18.6" 8496 sources."@colors/colors-1.5.0" 8497 (sources."@dabh/diagnostics-2.0.3" // { 8498 dependencies = [ ··· 8510 sources."string_decoder-0.10.31" 8511 ]; 8512 }) 8513 + sources."@js-joda/core-5.2.0" 8514 sources."@jsdevtools/ono-7.1.3" 8515 sources."@kafkajs/confluent-schema-registry-1.0.6" 8516 sources."@kwsites/file-exists-1.1.1" 8517 sources."@kwsites/promise-deferred-1.1.1" 8518 sources."@mapbox/node-pre-gyp-1.0.9" 8519 + sources."@n8n_io/riot-tmpl-1.0.1" 8520 sources."@nodelib/fs.scandir-2.1.5" 8521 sources."@nodelib/fs.stat-2.0.5" 8522 sources."@nodelib/fs.walk-1.2.8" ··· 8526 sources."tslib-2.4.0" 8527 ]; 8528 }) 8529 + (sources."@oclif/core-1.9.5" // { 8530 + dependencies = [ 8531 + sources."tslib-2.4.0" 8532 + ]; 8533 + }) 8534 (sources."@oclif/errors-1.3.5" // { 8535 dependencies = [ 8536 + sources."fs-extra-8.1.0" 8537 + sources."jsonfile-4.0.0" 8538 + sources."universalify-0.1.2" 8539 ]; 8540 }) 8541 (sources."@oclif/help-1.0.1" // { 8542 dependencies = [ 8543 sources."@oclif/config-1.18.2" 8544 sources."tslib-2.4.0" 8545 + sources."wrap-ansi-6.2.0" 8546 ]; 8547 }) 8548 sources."@oclif/linewrap-1.0.0" 8549 (sources."@oclif/parser-3.8.7" // { 8550 dependencies = [ 8551 sources."tslib-2.4.0" 8552 ]; 8553 }) 8554 + sources."@oclif/screen-3.0.2" 8555 sources."@opentelemetry/api-1.1.0" 8556 sources."@rudderstack/rudder-sdk-node-1.0.6" 8557 sources."@segment/loosely-validate-event-2.0.0" 8558 sources."@selderee/plugin-htmlparser2-0.6.0" 8559 sources."@servie/events-1.0.0" 8560 + sources."@sqltools/formatter-1.2.3" 8561 + sources."@techteamer/ocsp-1.0.0" 8562 + sources."@tediousjs/connection-string-0.3.0" 8563 sources."@tokenizer/token-0.3.0" 8564 sources."@tootallnate/once-1.1.2" 8565 sources."@types/bluebird-3.5.36" 8566 sources."@types/body-parser-1.19.2" 8567 sources."@types/connect-3.4.35" 8568 + sources."@types/es-aggregate-error-1.0.2" 8569 sources."@types/express-4.17.13" 8570 sources."@types/express-jwt-0.0.42" 8571 sources."@types/express-serve-static-core-4.17.29" 8572 sources."@types/express-unless-0.5.3" 8573 sources."@types/ftp-0.3.33" 8574 + sources."@types/generic-pool-3.1.11" 8575 sources."@types/glob-7.2.0" 8576 sources."@types/json-diff-0.5.2" 8577 sources."@types/json-schema-7.0.11" ··· 8591 sources."@types/promise-ftp-common-1.1.0" 8592 sources."@types/qs-6.9.7" 8593 sources."@types/range-parser-1.2.4" 8594 sources."@types/serve-static-1.13.10" 8595 sources."@types/shelljs-0.8.11" 8596 sources."@types/snowflake-sdk-1.6.7" ··· 8598 sources."@types/tough-cookie-2.3.8" 8599 sources."@types/tunnel-0.0.3" 8600 sources."@types/yamljs-0.2.31" 8601 sources."abbrev-1.1.1" 8602 sources."accepts-1.3.8" 8603 sources."access-control-1.0.1" 8604 sources."acorn-8.7.1" 8605 sources."acorn-walk-8.2.0" 8606 sources."adler-32-1.2.0" 8607 sources."agent-base-6.0.2" 8608 sources."ajv-6.12.6" ··· 8616 sources."ansi-escapes-4.3.2" 8617 sources."ansi-regex-5.0.1" 8618 sources."ansi-styles-4.3.0" 8619 + sources."ansicolors-0.3.2" 8620 sources."any-promise-1.3.0" 8621 sources."anymatch-3.1.2" 8622 sources."app-root-path-3.0.0" ··· 8639 sources."asn1.js-rfc5280-3.0.0" 8640 sources."assert-options-0.7.0" 8641 sources."assert-plus-1.0.0" 8642 + sources."async-3.2.4" 8643 sources."async-validator-1.8.5" 8644 sources."asynckit-0.4.0" 8645 + sources."at-least-node-1.0.0" 8646 (sources."auto-changelog-1.16.4" // { 8647 dependencies = [ 8648 sources."semver-6.3.0" 8649 ]; 8650 }) 8651 sources."avsc-5.7.4" 8652 + (sources."aws-sdk-2.1164.0" // { 8653 dependencies = [ 8654 sources."buffer-4.9.2" 8655 sources."events-1.1.1" ··· 8663 sources."aws-sign2-0.7.0" 8664 sources."aws4-1.11.0" 8665 sources."axios-0.21.4" 8666 + sources."axios-retry-3.3.0" 8667 sources."babel-helper-vue-jsx-merge-props-2.0.3" 8668 (sources."babel-runtime-6.26.0" // { 8669 dependencies = [ ··· 8703 }) 8704 sources."body-parser-xml-2.0.3" 8705 sources."boolbase-1.0.0" 8706 + sources."brace-expansion-2.0.1" 8707 sources."braces-3.0.2" 8708 sources."browser-request-0.3.3" 8709 sources."bson-1.1.6" ··· 8731 sources."tslib-2.4.0" 8732 ]; 8733 }) 8734 + sources."cardinal-2.1.1" 8735 sources."caseless-0.12.0" 8736 (sources."cfb-1.2.2" // { 8737 dependencies = [ 8738 sources."adler-32-1.3.1" 8739 ]; 8740 }) 8741 + (sources."chalk-4.1.2" // { 8742 + dependencies = [ 8743 + sources."supports-color-7.2.0" 8744 + ]; 8745 + }) 8746 (sources."change-case-4.1.2" // { 8747 dependencies = [ 8748 sources."tslib-2.4.0" ··· 8761 sources."cli-cursor-3.1.0" 8762 (sources."cli-highlight-2.1.11" // { 8763 dependencies = [ 8764 sources."cliui-7.0.4" 8765 sources."parse5-5.1.1" 8766 sources."y18n-5.0.8" 8767 sources."yargs-16.2.0" 8768 sources."yargs-parser-20.2.9" 8769 ]; 8770 }) 8771 + sources."cli-progress-3.11.2" 8772 sources."cli-width-3.0.0" 8773 sources."client-oauth2-4.3.3" 8774 + (sources."cliui-6.0.0" // { 8775 + dependencies = [ 8776 + sources."wrap-ansi-6.2.0" 8777 + ]; 8778 + }) 8779 sources."cluster-key-slot-1.1.0" 8780 sources."codepage-1.15.0" 8781 (sources."color-3.2.1" // { ··· 8822 sources."cookie-0.4.1" 8823 sources."cookie-parser-1.4.6" 8824 sources."cookie-signature-1.0.6" 8825 + sources."core-js-3.23.3" 8826 sources."core-util-is-1.0.3" 8827 sources."crc-32-1.2.2" 8828 sources."cron-1.7.2" 8829 sources."cron-parser-2.18.0" 8830 + (sources."cross-spawn-6.0.5" // { 8831 dependencies = [ 8832 + sources."semver-5.7.1" 8833 ]; 8834 }) 8835 sources."crypt-0.0.2" ··· 8839 sources."css-what-6.1.0" 8840 sources."cssfilter-0.0.10" 8841 sources."dashdash-1.14.1" 8842 sources."debug-4.3.4" 8843 sources."debuglog-1.0.1" 8844 sources."decamelize-1.2.0" 8845 sources."deepmerge-1.5.2" 8846 + sources."define-lazy-prop-2.0.0" 8847 sources."define-properties-1.1.4" 8848 sources."delayed-stream-1.0.0" 8849 sources."delegates-1.0.0" ··· 8870 sources."ecc-jsbn-0.1.2" 8871 sources."ecdsa-sig-formatter-1.0.11" 8872 sources."ee-first-1.1.1" 8873 + sources."ejs-3.1.8" 8874 sources."element-ui-2.15.9" 8875 sources."emoji-regex-8.0.0" 8876 sources."enabled-1.0.2" ··· 8881 sources."env-variable-0.0.6" 8882 sources."err-code-2.0.3" 8883 sources."es-abstract-1.20.1" 8884 + sources."es-aggregate-error-1.0.8" 8885 sources."es-array-method-boxes-properly-1.0.0" 8886 sources."es-to-primitive-1.2.1" 8887 sources."es5-ext-0.8.2" ··· 8891 sources."eslint-config-riot-1.0.0" 8892 sources."esprima-4.0.1" 8893 sources."etag-1.8.1" 8894 sources."events-3.3.0" 8895 sources."eventsource-2.0.2" 8896 sources."exit-on-epipe-1.0.1" ··· 8917 sources."fastq-1.13.0" 8918 sources."fecha-4.2.3" 8919 sources."fflate-0.7.3" 8920 (sources."figures-3.2.0" // { 8921 dependencies = [ 8922 sources."escape-string-regexp-1.0.5" 8923 ]; 8924 }) 8925 sources."file-type-14.7.1" 8926 + (sources."filelist-1.0.4" // { 8927 + dependencies = [ 8928 + sources."minimatch-5.1.0" 8929 + ]; 8930 + }) 8931 sources."fill-range-7.0.1" 8932 (sources."finalhandler-1.2.0" // { 8933 dependencies = [ ··· 8936 ]; 8937 }) 8938 sources."find-up-4.1.0" 8939 + sources."flatted-3.2.6" 8940 sources."fn.name-1.1.0" 8941 sources."follow-redirects-1.15.1" 8942 sources."for-each-0.3.3" ··· 8946 sources."forwarded-0.2.0" 8947 sources."frac-1.1.2" 8948 sources."fresh-0.5.2" 8949 + sources."fs-extra-9.1.0" 8950 sources."fs-minipass-2.1.0" 8951 sources."fs.realpath-1.0.0" 8952 sources."function-bind-1.1.1" ··· 8957 sources."generic-pool-3.8.2" 8958 sources."get-caller-file-2.0.5" 8959 sources."get-intrinsic-1.1.2" 8960 + sources."get-package-type-0.1.0" 8961 sources."get-port-5.1.1" 8962 sources."get-symbol-description-1.0.0" 8963 sources."get-system-fonts-2.0.2" ··· 8970 sources."is-glob-3.1.0" 8971 ]; 8972 }) 8973 + sources."globalthis-1.0.3" 8974 sources."globby-11.1.0" 8975 (sources."gm-1.23.1" // { 8976 dependencies = [ 8977 + sources."cross-spawn-4.0.2" 8978 sources."debug-3.2.7" 8979 + sources."lru-cache-4.1.5" 8980 + sources."yallist-2.1.2" 8981 ]; 8982 }) 8983 sources."google-timezones-json-1.0.2" ··· 8986 sources."har-schema-2.0.0" 8987 sources."har-validator-5.1.5" 8988 sources."has-1.0.3" 8989 sources."has-bigints-1.0.2" 8990 sources."has-flag-4.0.0" 8991 sources."has-property-descriptors-1.0.0" ··· 9012 sources."http-proxy-agent-4.0.1" 9013 sources."http-signature-1.2.0" 9014 sources."https-proxy-agent-5.0.1" 9015 + sources."hyperlinker-1.0.0" 9016 sources."iconv-lite-0.4.24" 9017 sources."ics-2.35.0" 9018 sources."ieee754-1.2.1" ··· 9028 sources."indent-string-4.0.0" 9029 sources."inflight-1.0.6" 9030 sources."inherits-2.0.4" 9031 + sources."inquirer-7.3.3" 9032 sources."internal-slot-1.0.3" 9033 sources."interpret-1.4.0" 9034 sources."ioredis-4.28.5" ··· 9072 sources."isexe-2.0.0" 9073 sources."iso-639-1-2.1.15" 9074 sources."isstream-0.1.2" 9075 + sources."jake-10.8.5" 9076 sources."jmespath-0.16.0" 9077 sources."join-component-1.1.0" 9078 sources."js-yaml-3.14.1" 9079 + sources."jsbi-4.3.0" 9080 sources."jsbn-0.1.1" 9081 sources."json-diff-0.5.5" 9082 sources."json-schema-0.4.0" ··· 9090 sources."json-schema-traverse-0.4.1" 9091 sources."json-stable-stringify-without-jsonify-1.0.1" 9092 sources."json-stringify-safe-5.0.1" 9093 + sources."jsonfile-6.1.0" 9094 sources."jsonschema-1.4.1" 9095 (sources."jsonwebtoken-8.5.1" // { 9096 dependencies = [ ··· 9110 sources."iconv-lite-0.6.3" 9111 ]; 9112 }) 9113 + sources."libphonenumber-js-1.10.7" 9114 sources."libqp-1.1.0" 9115 sources."limiter-1.1.5" 9116 sources."linkify-it-4.0.0" ··· 9118 dependencies = [ 9119 sources."cliui-7.0.4" 9120 sources."debug-4.3.2" 9121 sources."y18n-5.0.8" 9122 sources."yargs-17.1.1" 9123 sources."yargs-parser-20.2.9" ··· 9146 sources."lodash.uniqby-4.7.0" 9147 sources."lodash.unset-4.5.2" 9148 sources."lodash.zipobject-4.1.3" 9149 + sources."logform-2.4.1" 9150 sources."long-4.0.0" 9151 sources."lossless-json-1.0.5" 9152 (sources."lower-case-2.0.2" // { ··· 9190 sources."mime-types-2.1.35" 9191 sources."mimic-fn-2.1.0" 9192 sources."minimalistic-assert-1.0.1" 9193 + (sources."minimatch-3.1.2" // { 9194 + dependencies = [ 9195 + sources."brace-expansion-1.1.11" 9196 + ]; 9197 + }) 9198 sources."minimist-1.2.6" 9199 + sources."minipass-3.3.4" 9200 sources."minizlib-2.1.2" 9201 sources."mkdirp-0.5.6" 9202 (sources."mock-require-3.0.3" // { ··· 9207 }) 9208 sources."moment-2.29.3" 9209 sources."moment-timezone-0.5.34" 9210 + sources."monaco-editor-0.30.1" 9211 sources."mongodb-3.7.3" 9212 sources."moo-0.5.1" 9213 (sources."mqtt-4.2.6" // { ··· 9223 ]; 9224 }) 9225 sources."ms-2.1.2" 9226 + (sources."mssql-8.1.2" // { 9227 + dependencies = [ 9228 + sources."commander-9.3.0" 9229 + ]; 9230 + }) 9231 sources."multer-1.4.5-lts.1" 9232 sources."mute-stream-0.0.8" 9233 (sources."mysql2-2.3.3" // { ··· 9237 ]; 9238 }) 9239 sources."mz-2.7.0" 9240 + sources."n8n-core-0.124.0" 9241 + sources."n8n-design-system-0.24.0" 9242 + sources."n8n-editor-ui-0.150.0" 9243 + (sources."n8n-nodes-base-0.182.0" // { 9244 dependencies = [ 9245 sources."iconv-lite-0.6.3" 9246 ]; 9247 }) 9248 + sources."n8n-workflow-0.106.0" 9249 (sources."named-placeholders-1.1.2" // { 9250 dependencies = [ 9251 sources."lru-cache-4.1.5" ··· 9255 sources."nanoclone-0.2.1" 9256 sources."nanoid-3.3.4" 9257 sources."native-duplexpair-1.0.0" 9258 + sources."natural-orderby-2.0.3" 9259 (sources."nearley-2.20.1" // { 9260 dependencies = [ 9261 sources."commander-2.20.3" ··· 9263 }) 9264 sources."negotiator-0.6.3" 9265 sources."neo-async-2.6.2" 9266 + sources."nice-try-1.0.5" 9267 (sources."no-case-3.0.4" // { 9268 dependencies = [ 9269 sources."tslib-2.4.0" 9270 ]; 9271 }) 9272 + sources."node-abort-controller-3.0.1" 9273 sources."node-addon-api-4.3.0" 9274 sources."node-ensure-0.0.0" 9275 sources."node-fetch-2.6.7" ··· 9288 sources."object-assign-4.1.1" 9289 sources."object-inspect-1.12.2" 9290 sources."object-keys-1.1.1" 9291 + sources."object-treeify-1.1.33" 9292 sources."object.assign-4.1.2" 9293 sources."object.getownpropertydescriptors-2.1.4" 9294 sources."on-finished-2.4.1" ··· 9316 sources."tslib-2.4.0" 9317 ]; 9318 }) 9319 sources."parse-github-url-1.0.2" 9320 sources."parse-passwd-1.0.0" 9321 sources."parse-srcset-1.0.2" ··· 9332 sources."passport-cookie-1.0.9" 9333 sources."passport-jwt-4.0.0" 9334 sources."passport-strategy-1.0.0" 9335 + (sources."password-prompt-1.1.2" // { 9336 + dependencies = [ 9337 + sources."ansi-escapes-3.2.0" 9338 + ]; 9339 + }) 9340 (sources."path-case-3.0.4" // { 9341 dependencies = [ 9342 sources."tslib-2.4.0" ··· 9345 sources."path-dirname-1.0.2" 9346 sources."path-exists-4.0.0" 9347 sources."path-is-absolute-1.0.1" 9348 + sources."path-key-2.0.1" 9349 sources."path-parse-1.0.7" 9350 sources."path-to-regexp-0.1.7" 9351 sources."path-type-4.0.0" ··· 9433 sources."readable-web-to-node-stream-2.0.0" 9434 sources."readdirp-3.6.0" 9435 sources."rechoir-0.6.2" 9436 + sources."redeyed-2.1.1" 9437 sources."redis-3.1.2" 9438 sources."redis-commands-1.7.0" 9439 sources."redis-errors-1.2.0" ··· 9464 sources."require-main-filename-2.0.0" 9465 sources."requires-port-1.0.0" 9466 sources."resize-observer-polyfill-1.5.1" 9467 + sources."resolve-1.22.1" 9468 sources."restore-cursor-3.1.0" 9469 sources."ret-0.1.15" 9470 sources."retry-0.12.0" 9471 sources."reusify-1.0.4" 9472 + sources."rfdc-1.3.0" 9473 (sources."rhea-1.0.24" // { 9474 dependencies = [ 9475 sources."debug-3.2.7" 9476 ]; 9477 }) 9478 sources."rimraf-3.0.2" 9479 sources."rndm-1.2.0" 9480 sources."rss-parser-3.12.0" 9481 sources."run-async-2.4.1" ··· 9517 sources."setheader-1.0.2" 9518 sources."setprototypeof-1.2.0" 9519 sources."sha.js-2.4.11" 9520 + sources."shebang-command-1.2.0" 9521 + sources."shebang-regex-1.0.0" 9522 sources."shell-escape-0.2.0" 9523 sources."shelljs-0.8.5" 9524 (sources."showdown-2.1.0" // { ··· 9528 }) 9529 sources."side-channel-1.0.4" 9530 sources."signal-exit-3.0.7" 9531 + sources."simple-git-3.10.0" 9532 sources."simple-lru-cache-0.0.2" 9533 sources."simple-swizzle-0.2.2" 9534 sources."slash-3.0.0" ··· 9537 sources."tslib-2.4.0" 9538 ]; 9539 }) 9540 + (sources."snowflake-sdk-1.6.11" // { 9541 dependencies = [ 9542 sources."axios-0.27.2" 9543 sources."debug-3.2.7" ··· 9571 sources."standard-as-callback-2.1.0" 9572 sources."statuses-2.0.1" 9573 sources."stealthy-require-1.1.1" 9574 + sources."stoppable-1.1.0" 9575 sources."stream-shift-1.0.1" 9576 sources."streamsearch-1.1.0" 9577 sources."string-similarity-4.0.4" ··· 9585 }) 9586 sources."strip-ansi-6.0.1" 9587 sources."strtok3-6.3.0" 9588 + sources."supports-color-8.1.1" 9589 + (sources."supports-hyperlinks-2.2.0" // { 9590 + dependencies = [ 9591 + sources."supports-color-7.2.0" 9592 + ]; 9593 + }) 9594 sources."supports-preserve-symlinks-flag-1.0.0" 9595 sources."swagger-ui-dist-4.12.0" 9596 sources."swagger-ui-express-4.4.0" ··· 9599 sources."mkdirp-1.0.4" 9600 ]; 9601 }) 9602 + sources."tarn-3.0.2" 9603 sources."tdigest-0.1.2" 9604 + (sources."tedious-14.6.1" // { 9605 dependencies = [ 9606 + sources."bl-5.0.0" 9607 + sources."buffer-6.0.3" 9608 + sources."iconv-lite-0.6.3" 9609 sources."readable-stream-3.6.0" 9610 sources."sprintf-js-1.1.2" 9611 ]; ··· 9650 sources."type-is-1.6.18" 9651 sources."typedarray-0.0.6" 9652 sources."typedarray-to-buffer-3.1.5" 9653 + (sources."typeorm-0.2.45" // { 9654 dependencies = [ 9655 + sources."argparse-2.0.1" 9656 + sources."buffer-6.0.3" 9657 sources."cliui-7.0.4" 9658 + sources."js-yaml-4.1.0" 9659 sources."mkdirp-1.0.4" 9660 + sources."tslib-2.4.0" 9661 sources."y18n-5.0.8" 9662 + sources."yargs-17.5.1" 9663 + sources."yargs-parser-21.0.1" 9664 ]; 9665 }) 9666 sources."uc.micro-1.0.6" 9667 sources."uid-safe-2.1.5" 9668 sources."unbox-primitive-1.0.2" 9669 sources."unc-path-regex-0.1.2" 9670 sources."unique-stream-2.3.1" 9671 + sources."universalify-2.0.0" 9672 sources."unpipe-1.0.0" 9673 (sources."upper-case-2.0.2" // { 9674 dependencies = [ ··· 9710 sources."vue-2.6.14" 9711 sources."vue-color-2.8.1" 9712 sources."vue-fragment-1.6.0" 9713 + sources."vue-i18n-8.27.2" 9714 sources."vue2-boring-avatars-0.3.4" 9715 sources."webidl-conversions-3.0.1" 9716 sources."whatwg-url-5.0.0" ··· 9719 sources."which-module-2.0.0" 9720 sources."wide-align-1.1.5" 9721 sources."widest-line-3.1.0" 9722 + (sources."winston-3.8.0" // { 9723 dependencies = [ 9724 sources."readable-stream-3.6.0" 9725 ]; 9726 }) ··· 9732 sources."wmf-1.0.2" 9733 sources."word-0.3.0" 9734 sources."wordwrap-1.0.0" 9735 + sources."wrap-ansi-7.0.0" 9736 sources."wrappy-1.0.2" 9737 sources."ws-7.5.8" 9738 sources."xlsx-0.17.5" 9739 sources."xml2js-0.4.23" 9740 sources."xmlbuilder-11.0.1" 9741 sources."xregexp-2.0.0" 9742 (sources."xss-1.0.13" // { 9743 dependencies = [ ··· 9748 sources."y18n-4.0.3" 9749 sources."yallist-4.0.0" 9750 sources."yamljs-0.3.0" 9751 sources."yargs-15.4.1" 9752 sources."yargs-parser-18.1.3" 9753 sources."yup-0.32.11" 9754 sources."z-schema-4.2.4" 9755 + sources."zen-observable-0.8.15" 9756 + sources."zen-observable-ts-1.2.5" 9757 ]; 9758 buildInputs = globalBuildInputs; 9759 meta = {
+2 -2
pkgs/applications/networking/p2p/gnunet/default.nix
··· 7 8 stdenv.mkDerivation rec { 9 pname = "gnunet"; 10 - version = "0.16.3"; 11 12 src = fetchurl { 13 url = "mirror://gnu/gnunet/${pname}-${version}.tar.gz"; 14 - sha256 = "sha256-MjkFLxNTepqrqqZuxCh12+4vaDjF8Ys674VOa1Mew4o="; 15 }; 16 17 enableParallelBuilding = true;
··· 7 8 stdenv.mkDerivation rec { 9 pname = "gnunet"; 10 + version = "0.17.1"; 11 12 src = fetchurl { 13 url = "mirror://gnu/gnunet/${pname}-${version}.tar.gz"; 14 + sha256 = "sha256-dd4KcV4+lpKGSD7GrkslqHNlZk1CzftgbfjnRqFfEmU="; 15 }; 16 17 enableParallelBuilding = true;
+2 -28
pkgs/applications/office/scribus/default.nix
··· 36 mkDerivation rec { 37 pname = "scribus"; 38 39 - version = "1.5.7"; 40 41 src = fetchurl { 42 url = "mirror://sourceforge/${pname}/${pname}-devel/${pname}-${version}.tar.xz"; 43 - sha256 = "sha256-MYMWss/Hp2GR0+DT+MImUUfa6gVwFiAo4kPCktgm+M4="; 44 }; 45 46 patches = [ 47 - # For harfbuzz >= 2.9.0 48 - (fetchpatch { 49 - url = "https://github.com/scribusproject/scribus/commit/1b546978bc4ea0b2a73fbe4d7cf947887e865162.patch"; 50 - sha256 = "sha256-noRCaN63ZYFfXmAluEYXdFPNOk3s5W3KBAsLU1Syxv4="; 51 - }) 52 - # For harfbuzz >= 3.0 53 - (fetchpatch { 54 - url = "https://github.com/scribusproject/scribus/commit/68ec41169eaceea4a6e1d6f359762a191c7e61d5.patch"; 55 - sha256 = "sha256-xhp65qVvaof0md1jb3XHZw7uFX1RtNxPfUOaVnvZV1Y="; 56 - }) 57 # For Poppler 22.02 58 (fetchpatch { 59 url = "https://github.com/scribusproject/scribus/commit/85c0dff3422fa3c26fbc2e8d8561f597ec24bd92.patch"; ··· 65 }) 66 # For Poppler 22.03 67 (fetchpatch { 68 - url = "https://github.com/scribusproject/scribus/commit/553d1fd5f76ffb3743583b88c78a7232b076a965.patch"; 69 - sha256 = "56JrEG3eCzyALTH04yjzurKRj2PocpjO6b4PusMRxjY="; 70 - }) 71 - (fetchpatch { 72 - url = "https://github.com/scribusproject/scribus/commit/1f82e38be0782b065910f5fb4cece23f690349ae.patch"; 73 - sha256 = "qektUfel5KeA327D3THyqi8dznP1SQQFToUC5Kd0+W4="; 74 - }) 75 - (fetchpatch { 76 url = "https://github.com/scribusproject/scribus/commit/f19410ac3b27e33dd62105746784e61e85b90a1d.patch"; 77 sha256 = "JHdgntYcioYatPeqpmym3c9dORahj0CinGOzbGtA4ds="; 78 - }) 79 - (fetchpatch { 80 - url = "https://github.com/scribusproject/scribus/commit/e013e8126d2100e8e56dea5b836ad43275429389.patch"; 81 - sha256 = "+siPNtJq9Is9V2PgADeQJB+b4lkl5g8uk6zKBu10Jqw="; 82 - }) 83 - (fetchpatch { 84 - url = "https://github.com/scribusproject/scribus/commit/48263954a7dee0be815b00f417ae365ab26cdd85.patch"; 85 - sha256 = "1WE9kALFw79bQH88NUafXaZ1Y/vJEKTIWxlk5c+opsQ="; 86 }) 87 # For Poppler 22.04 88 (fetchpatch {
··· 36 mkDerivation rec { 37 pname = "scribus"; 38 39 + version = "1.5.8"; 40 41 src = fetchurl { 42 url = "mirror://sourceforge/${pname}/${pname}-devel/${pname}-${version}.tar.xz"; 43 + hash = "sha256-R4Fuj89tBXiP8WqkSZ+X/yJDHHd6d4kUmwqItFHha3Q="; 44 }; 45 46 patches = [ 47 # For Poppler 22.02 48 (fetchpatch { 49 url = "https://github.com/scribusproject/scribus/commit/85c0dff3422fa3c26fbc2e8d8561f597ec24bd92.patch"; ··· 55 }) 56 # For Poppler 22.03 57 (fetchpatch { 58 url = "https://github.com/scribusproject/scribus/commit/f19410ac3b27e33dd62105746784e61e85b90a1d.patch"; 59 sha256 = "JHdgntYcioYatPeqpmym3c9dORahj0CinGOzbGtA4ds="; 60 }) 61 # For Poppler 22.04 62 (fetchpatch {
+2
pkgs/applications/virtualization/vmware-workstation/default.nix
··· 158 cp -r $unpacked/sbin/* $out/bin/ 159 160 cp -r $unpacked/lib/libconf $out/lib/vmware/ 161 cp -r $unpacked/lib/bin $out/lib/vmware/ 162 cp -r $unpacked/lib/lib $out/lib/vmware/ 163 cp -r $unpacked/lib/scripts $out/lib/vmware/
··· 158 cp -r $unpacked/sbin/* $out/bin/ 159 160 cp -r $unpacked/lib/libconf $out/lib/vmware/ 161 + rm $out/lib/vmware/libconf/etc/fonts/fonts.conf 162 + 163 cp -r $unpacked/lib/bin $out/lib/vmware/ 164 cp -r $unpacked/lib/lib $out/lib/vmware/ 165 cp -r $unpacked/lib/scripts $out/lib/vmware/
+1 -4
pkgs/applications/window-managers/sway/contrib.nix
··· 62 homepage = "https://github.com/swaywm/sway/tree/master/contrib"; 63 license = licenses.mit; 64 platforms = platforms.all; 65 - maintainers = with maintainers; [ 66 - sway-unwrapped.meta.maintainers 67 - evils 68 - ]; 69 }; 70 }; 71
··· 62 homepage = "https://github.com/swaywm/sway/tree/master/contrib"; 63 license = licenses.mit; 64 platforms = platforms.all; 65 + maintainers = sway-unwrapped.meta.maintainers ++ (with maintainers; [ evils ]); 66 }; 67 }; 68
+2 -2
pkgs/development/libraries/drumstick/default.nix
··· 5 6 stdenv.mkDerivation rec { 7 pname = "drumstick"; 8 - version = "2.5.1"; 9 10 src = fetchurl { 11 url = "mirror://sourceforge/drumstick/${version}/${pname}-${version}.tar.bz2"; 12 - hash = "sha256-V57YnyeOVBXL5qjuCO1j1Ozy9CeaXxadw6ed1suUUIU="; 13 }; 14 15 patches = [
··· 5 6 stdenv.mkDerivation rec { 7 pname = "drumstick"; 8 + version = "2.6.1"; 9 10 src = fetchurl { 11 url = "mirror://sourceforge/drumstick/${version}/${pname}-${version}.tar.bz2"; 12 + hash = "sha256-5O9yD3MexorJUm5tv6oghDb4J/b3SO10mDQR9dT2jlA="; 13 }; 14 15 patches = [
+2 -1
pkgs/development/libraries/libical/default.nix
··· 81 82 # Using install check so we do not have to manually set 83 # LD_LIBRARY_PATH and GI_TYPELIB_PATH variables 84 - doInstallCheck = true; 85 enableParallelChecking = false; 86 preInstallCheck = if stdenv.isDarwin then '' 87 for testexe in $(find ./src/test -maxdepth 1 -type f -executable); do
··· 81 82 # Using install check so we do not have to manually set 83 # LD_LIBRARY_PATH and GI_TYPELIB_PATH variables 84 + # Musl does not support TZDIR. 85 + doInstallCheck = !stdenv.hostPlatform.isMusl; 86 enableParallelChecking = false; 87 preInstallCheck = if stdenv.isDarwin then '' 88 for testexe in $(find ./src/test -maxdepth 1 -type f -executable); do
+42
pkgs/development/libraries/swift-corelibs-libdispatch/default.nix
···
··· 1 + { lib 2 + , clangStdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , ninja 6 + , libbsd 7 + , libsystemtap 8 + }: 9 + 10 + let 11 + version = "5.5"; 12 + in clangStdenv.mkDerivation { 13 + pname = "swift-corelibs-libdispatch"; 14 + inherit version; 15 + 16 + outputs = [ "out" "dev" "man" ]; 17 + 18 + src = fetchFromGitHub { 19 + owner = "apple"; 20 + repo = "swift-corelibs-libdispatch"; 21 + rev = "swift-${version}-RELEASE"; 22 + sha256 = "sha256-MbLgmS6qRSRT+2dGqbYTNb5MTM4Wz/grDXFk1kup+jk="; 23 + }; 24 + 25 + nativeBuildInputs = [ 26 + cmake 27 + ninja 28 + ]; 29 + 30 + buildInputs = [ 31 + libbsd 32 + libsystemtap 33 + ]; 34 + 35 + meta = { 36 + description = "Grand Central Dispatch"; 37 + homepage = "https://github.com/apple/swift-corelibs-libdispatch"; 38 + platforms = lib.platforms.linux; 39 + license = lib.licenses.asl20; 40 + maintainers = [ lib.maintainers.cmm ]; 41 + }; 42 + }
+5 -7
pkgs/development/ocaml-modules/ke/default.nix
··· 5 6 buildDunePackage rec { 7 pname = "ke"; 8 - version = "0.4"; 9 - 10 - useDune2 = true; 11 12 src = fetchurl { 13 - url = "https://github.com/mirage/ke/releases/download/v${version}/ke-v${version}.tbz"; 14 - sha256 = "13c9xy60vmq29mnwpg3h3zgl6gjbjfwbx1s0crfc6xwvark0zxnx"; 15 }; 16 17 - propagatedBuildInputs = [ bigarray-compat fmt ]; 18 19 checkInputs = [ alcotest bigstringaf ]; 20 doCheck = true; 21 22 - minimumOCamlVersion = "4.03"; 23 24 meta = { 25 description = "Fast implementation of queue in OCaml";
··· 5 6 buildDunePackage rec { 7 pname = "ke"; 8 + version = "0.6"; 9 10 src = fetchurl { 11 + url = "https://github.com/mirage/ke/releases/download/v${version}/ke-${version}.tbz"; 12 + sha256 = "sha256-YSFyB+IgCwSxd1lzZhD/kggmmmR/hUy1rnLNrA1nIwU="; 13 }; 14 15 + propagatedBuildInputs = [ fmt ]; 16 17 checkInputs = [ alcotest bigstringaf ]; 18 doCheck = true; 19 20 + minimalOCamlVersion = "4.08"; 21 22 meta = { 23 description = "Fast implementation of queue in OCaml";
+2 -3
pkgs/development/python-modules/black/default.nix
··· 9 , aiohttp-cors 10 , click 11 , colorama 12 - , dataclasses 13 , mypy-extensions 14 , pathspec 15 , parameterized ··· 23 24 buildPythonPackage rec { 25 pname = "black"; 26 - version = "22.3.0"; 27 28 disabled = pythonOlder "3.6"; 29 30 src = fetchPypi { 31 inherit pname version; 32 - hash = "sha256-NQILiIbAIs7ZKCtRtah1ttGrDDh7MaBluE23wzCFynk="; 33 }; 34 35 nativeBuildInputs = [ setuptools-scm ];
··· 9 , aiohttp-cors 10 , click 11 , colorama 12 , mypy-extensions 13 , pathspec 14 , parameterized ··· 22 23 buildPythonPackage rec { 24 pname = "black"; 25 + version = "22.6.0"; 26 27 disabled = pythonOlder "3.6"; 28 29 src = fetchPypi { 30 inherit pname version; 31 + hash = "sha256-bG054ortN5rsQNocZUNMd9deZbtZoeHCg95UX7Tnxsk="; 32 }; 33 34 nativeBuildInputs = [ setuptools-scm ];
+2 -2
pkgs/development/python-modules/boxx/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "boxx"; 22 - version = "0.10.1"; 23 format = "setuptools"; 24 25 disabled = pythonOlder "3.7"; 26 27 src = fetchPypi { 28 inherit pname version; 29 - hash = "sha256-YYR13JS9otoylS3ds0jK7d0jOxbhafaQd8fSxIiREi4="; 30 }; 31 32 propagatedBuildInputs = [
··· 19 20 buildPythonPackage rec { 21 pname = "boxx"; 22 + version = "0.10.4"; 23 format = "setuptools"; 24 25 disabled = pythonOlder "3.7"; 26 27 src = fetchPypi { 28 inherit pname version; 29 + hash = "sha256-HnEXvge1R2GAcrP+2yEecwIlT95/oKrWiK+TB9+CRxs="; 30 }; 31 32 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/diagrams/default.nix
··· 2 , buildPythonPackage 3 , pythonOlder 4 , fetchFromGitHub 5 - , black 6 , jinja2 7 , poetry-core 8 , round ··· 38 patches = [ 39 # The build-system section is missing 40 ./build_poetry.patch 41 ]; 42 43 checkInputs = [ pytestCheckHook ]; 44 45 # Despite living in 'tool.poetry.dependencies', 46 # these are only used at build time to process the image resource files 47 - nativeBuildInputs = [ black inkscape imagemagick jinja2 poetry-core round ]; 48 49 propagatedBuildInputs = [ graphviz ]; 50
··· 2 , buildPythonPackage 3 , pythonOlder 4 , fetchFromGitHub 5 , jinja2 6 , poetry-core 7 , round ··· 37 patches = [ 38 # The build-system section is missing 39 ./build_poetry.patch 40 + ./remove-black-requirement.patch 41 ]; 42 43 checkInputs = [ pytestCheckHook ]; 44 45 # Despite living in 'tool.poetry.dependencies', 46 # these are only used at build time to process the image resource files 47 + nativeBuildInputs = [ inkscape imagemagick jinja2 poetry-core round ]; 48 49 propagatedBuildInputs = [ graphviz ]; 50
+24
pkgs/development/python-modules/diagrams/remove-black-requirement.patch
···
··· 1 + diff --git a/autogen.sh b/autogen.sh 2 + index acbcacb..1f60b83 100755 3 + --- a/autogen.sh 4 + +++ b/autogen.sh 5 + @@ -21,11 +21,6 @@ 6 + exit 1 7 + fi 8 + 9 + -if ! [ -x "$(command -v black)" ]; then 10 + - echo 'black is not installed' 11 + - exit 1 12 + -fi 13 + - 14 + # preprocess the resources 15 + for pvd in "${providers[@]}"; do 16 + # convert the svg to png for azure provider 17 + @@ -55,7 +50,3 @@ 18 + # Generate doc for custom module 19 + echo "generating the docs for custom" 20 + python -m scripts.generate "custom" 21 + - 22 + -# run black 23 + -echo "linting the all the diagram modules" 24 + -black "$app_root_dir"/**/*.py
+4 -8
pkgs/development/python-modules/papermill/default.nix
··· 15 , entrypoints 16 , tenacity 17 , futures ? null 18 - , black 19 , backports_tempfile 20 , isPy27 21 - , pytest 22 - , pytest-cov 23 , pytest-mock 24 }: 25 ··· 46 requests 47 entrypoints 48 tenacity 49 - black 50 ] ++ lib.optionals isPy27 [ 51 futures 52 backports_tempfile 53 ]; 54 55 checkInputs = [ 56 - pytest 57 - pytest-cov 58 pytest-mock 59 ]; 60 61 - checkPhase = '' 62 - HOME=$(mktemp -d) pytest 63 ''; 64 65 # the test suite depends on cloud resources azure/aws
··· 15 , entrypoints 16 , tenacity 17 , futures ? null 18 , backports_tempfile 19 , isPy27 20 + , pytestCheckHook 21 , pytest-mock 22 }: 23 ··· 44 requests 45 entrypoints 46 tenacity 47 ] ++ lib.optionals isPy27 [ 48 futures 49 backports_tempfile 50 ]; 51 52 checkInputs = [ 53 + pytestCheckHook 54 pytest-mock 55 ]; 56 57 + preCheck = '' 58 + export HOME=$(mktemp -d) 59 ''; 60 61 # the test suite depends on cloud resources azure/aws
-8
pkgs/development/python-modules/pulumi/default.nix
··· 13 14 15 # for tests 16 - , tox 17 , go 18 , pulumictl 19 - , bash 20 , pylint 21 , pytest 22 , pytest-timeout 23 - , coverage 24 - , black 25 , wheel 26 , pytest-asyncio 27 ··· 55 pulumi-bin 56 pulumictl 57 mypy 58 - bash 59 go 60 - tox 61 pytest 62 pytest-timeout 63 - coverage 64 pytest-asyncio 65 wheel 66 - black 67 ]; 68 69 sourceRoot="source/sdk/python/lib";
··· 13 14 15 # for tests 16 , go 17 , pulumictl 18 , pylint 19 , pytest 20 , pytest-timeout 21 , wheel 22 , pytest-asyncio 23 ··· 51 pulumi-bin 52 pulumictl 53 mypy 54 go 55 pytest 56 pytest-timeout 57 pytest-asyncio 58 wheel 59 ]; 60 61 sourceRoot="source/sdk/python/lib";
+5 -2
pkgs/development/python-modules/schema-salad/default.nix
··· 32 ]; 33 34 checkInputs = [ 35 - black 36 pytestCheckHook 37 - ]; 38 39 disabledTests = [ 40 # Setup for these tests requires network access ··· 47 pythonImportsCheck = [ 48 "schema_salad" 49 ]; 50 51 meta = with lib; { 52 description = "Semantic Annotations for Linked Avro Data";
··· 32 ]; 33 34 checkInputs = [ 35 pytestCheckHook 36 + ] ++ passthru.optional-dependencies.pycodegen; 37 38 disabledTests = [ 39 # Setup for these tests requires network access ··· 46 pythonImportsCheck = [ 47 "schema_salad" 48 ]; 49 + 50 + passthru.optional-dependencies = { 51 + pycodegen = [ black ]; 52 + }; 53 54 meta = with lib; { 55 description = "Semantic Annotations for Linked Avro Data";
+2 -2
pkgs/development/tools/analysis/actionlint/default.nix
··· 10 11 buildGoModule rec { 12 pname = "actionlint"; 13 - version = "1.6.14"; 14 15 subPackages = [ "cmd/actionlint" ]; 16 ··· 18 owner = "rhysd"; 19 repo = "actionlint"; 20 rev = "v${version}"; 21 - sha256 = "sha256-eBIAm+mgjOLePxJ6b9d3cr3k0vqaDqLzorZg/ZplpcM="; 22 }; 23 24 vendorSha256 = "sha256-wKK597mk51jT6s1eKA4AjiCvI4IkZ9WjMXxaY8AWwkU=";
··· 10 11 buildGoModule rec { 12 pname = "actionlint"; 13 + version = "1.6.15"; 14 15 subPackages = [ "cmd/actionlint" ]; 16 ··· 18 owner = "rhysd"; 19 repo = "actionlint"; 20 rev = "v${version}"; 21 + sha256 = "sha256-AhV5D0ujTjYvlcEbmqSZ2VPTKDQHZ6/lJpt9DlY2q7c="; 22 }; 23 24 vendorSha256 = "sha256-wKK597mk51jT6s1eKA4AjiCvI4IkZ9WjMXxaY8AWwkU=";
+1 -1
pkgs/development/tools/parsing/javacc/default.nix
··· 27 homepage = "https://javacc.github.io/javacc"; 28 description = "A parser generator for building parsers from grammars"; 29 license = licenses.bsd2; 30 - maintainers = [ teams.deshaw.members ]; 31 }; 32 }
··· 27 homepage = "https://javacc.github.io/javacc"; 28 description = "A parser generator for building parsers from grammars"; 29 license = licenses.bsd2; 30 + maintainers = teams.deshaw.members; 31 }; 32 }
+56
pkgs/misc/fastly/default.nix
···
··· 1 + { lib, fetchFromGitHub, installShellFiles, buildGoModule }: 2 + 3 + buildGoModule rec { 4 + pname = "fastly"; 5 + version = "3.1.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "fastly"; 9 + repo = "cli"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-Su4ZwiuI+pMoLAGhc3dWcwgcfwe5cZGTg8kEnpM4JbA="; 12 + # The git commit is part of the `fastly version` original output; 13 + # leave that output the same in nixpkgs. Use the `.git` directory 14 + # to retrieve the commit SHA, and remove the directory afterwards, 15 + # since it is not needed after that. 16 + leaveDotGit = true; 17 + postFetch = '' 18 + cd "$out" 19 + git rev-parse --short HEAD > $out/COMMIT 20 + find "$out" -name .git -print0 | xargs -0 rm -rf 21 + ''; 22 + }; 23 + 24 + subPackages = [ "cmd/fastly" ]; 25 + 26 + vendorSha256 = "sha256-5MvJS10f7YLvO+wCmUJleU27hCJbsNrOIfUZnniGw+E="; 27 + 28 + nativeBuildInputs = [ installShellFiles ]; 29 + 30 + # Flags as provided by the build automation of the project: 31 + # https://github.com/fastly/cli/blob/7844f9f54d56f8326962112b5534e5c40e91bf09/.goreleaser.yml#L14-L18 32 + ldflags = [ 33 + "-s" 34 + "-w" 35 + "-X github.com/fastly/cli/pkg/revision.AppVersion=v${version}" 36 + "-X github.com/fastly/cli/pkg/revision.Environment=release" 37 + ]; 38 + preBuild = '' 39 + ldflags+=" -X github.com/fastly/cli/pkg/revision.GitCommit=$(cat COMMIT)" 40 + ldflags+=" -X 'github.com/fastly/cli/pkg/revision.GoVersion=$(go version)'" 41 + ''; 42 + 43 + postInstall = '' 44 + export HOME="$(mktemp -d)" 45 + installShellCompletion --cmd fastly \ 46 + --bash <($out/bin/fastly --completion-script-bash) \ 47 + --zsh <($out/bin/fastly --completion-script-zsh) 48 + ''; 49 + 50 + meta = with lib; { 51 + description = "Command line tool for interacting with the Fastly API"; 52 + license = licenses.asl20; 53 + homepage = "https://github.com/fastly/cli"; 54 + maintainers = with maintainers; [ ereslibre shyim ]; 55 + }; 56 + }
+2 -2
pkgs/os-specific/linux/erofs-utils/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "erofs-utils"; 5 - version = "1.4"; 6 outputs = [ "out" "man" ]; 7 8 src = fetchgit { 9 url = 10 "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git"; 11 rev = "v" + version; 12 - sha256 = "sha256-yYMvtW6mQKGx+TZGzadbLX9pXU7vY5b4d1B8d5Ph6vk="; 13 }; 14 15 nativeBuildInputs = [ autoreconfHook pkg-config ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "erofs-utils"; 5 + version = "1.5"; 6 outputs = [ "out" "man" ]; 7 8 src = fetchgit { 9 url = 10 "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git"; 11 rev = "v" + version; 12 + sha256 = "sha256-vMWAmGMJp0XDuc4sbo6Y7gfCQVAo4rETea0Tkdbg82U="; 13 }; 14 15 nativeBuildInputs = [ autoreconfHook pkg-config ];
-26
pkgs/os-specific/linux/kernel/linux-lqx.nix
··· 1 - { lib, fetchFromGitHub, buildLinux, linux_zen, ... } @ args: 2 - 3 - let 4 - version = "5.15.16"; 5 - suffix = "lqx2"; 6 - in 7 - 8 - buildLinux (args // { 9 - modDirVersion = "${version}-${suffix}"; 10 - inherit version; 11 - isZen = true; 12 - 13 - src = fetchFromGitHub { 14 - owner = "zen-kernel"; 15 - repo = "zen-kernel"; 16 - rev = "v${version}-${suffix}"; 17 - sha256 = "sha256-kdT/hiASZ72pkS0Igta0KT0GWTgDRjxBnd5CQ0eonfg="; 18 - }; 19 - 20 - extraMeta = { 21 - branch = "5.14/master"; 22 - maintainers = with lib.maintainers; [ atemu ]; 23 - description = linux_zen.meta.description + " (Same as linux_zen but less aggressive release schedule)"; 24 - }; 25 - 26 - } // (args.argsOverride or { }))
···
-39
pkgs/os-specific/linux/kernel/linux-zen.nix
··· 1 - { lib, fetchFromGitHub, buildLinux, ... } @ args: 2 - 3 - let 4 - # having the full version string here makes it easier to update 5 - modDirVersion = "5.18.5-zen1"; 6 - parts = lib.splitString "-" modDirVersion; 7 - version = lib.elemAt parts 0; 8 - suffix = lib.elemAt parts 1; 9 - 10 - numbers = lib.splitString "." version; 11 - branch = "${lib.elemAt numbers 0}.${lib.elemAt numbers 1}"; 12 - rev = if ((lib.elemAt numbers 2) == "0") then "v${branch}-${suffix}" else "v${modDirVersion}"; 13 - in 14 - 15 - buildLinux (args // { 16 - inherit version modDirVersion; 17 - isZen = true; 18 - 19 - src = fetchFromGitHub { 20 - owner = "zen-kernel"; 21 - repo = "zen-kernel"; 22 - inherit rev; 23 - sha256 = "sha256-q6a8Wyzs6GNQ39mV+q/9N6yo/kXS9ZH+QTfGka42gk4="; 24 - }; 25 - 26 - structuredExtraConfig = with lib.kernel; { 27 - ZEN_INTERACTIVE = yes; 28 - # TODO: Remove once #175433 reaches master 29 - # https://nixpk.gs/pr-tracker.html?pr=175433 30 - WERROR = no; 31 - }; 32 - 33 - extraMeta = { 34 - inherit branch; 35 - maintainers = with lib.maintainers; [ atemu andresilva ]; 36 - description = "Built using the best configuration and kernel sources for desktop, multimedia, and gaming workloads."; 37 - }; 38 - 39 - } // (args.argsOverride or { }))
···
+97
pkgs/os-specific/linux/kernel/update-zen.py
···
··· 1 + #! /usr/bin/env nix-shell 2 + #! nix-shell -i python3 -p python3 nix nix-prefetch-git 3 + 4 + import fileinput 5 + import json 6 + import os 7 + import sys 8 + import re 9 + import subprocess 10 + 11 + from datetime import datetime 12 + from urllib.request import urlopen, Request 13 + 14 + 15 + def panic(exc): 16 + raise Exception(exc) 17 + 18 + 19 + DIR = os.path.dirname(os.path.abspath(__file__)) 20 + HEADERS = {'Accept': 'application/vnd.github.v3+json'} 21 + 22 + 23 + def github_api_request(endpoint): 24 + base_url = 'https://api.github.com/' 25 + request = Request(base_url + endpoint, headers=HEADERS) 26 + with urlopen(request) as http_response: 27 + return json.loads(http_response.read().decode('utf-8')) 28 + 29 + 30 + def get_commit_date(repo, sha): 31 + url = f'https://api.github.com/repos/{repo}/commits/{sha}' 32 + request = Request(url, headers=HEADERS) 33 + with urlopen(request) as http_response: 34 + commit = json.loads(http_response.read().decode()) 35 + date = commit['commit']['committer']['date'].rstrip('Z') 36 + date = datetime.fromisoformat(date).date().isoformat() 37 + return 'unstable-' + date 38 + 39 + 40 + def nix_prefetch_git(url, rev): 41 + """Prefetches the requested Git revision (incl. submodules) of the given repository URL.""" 42 + print(f'nix-prefetch-git {url} {rev}') 43 + out = subprocess.check_output([ 44 + 'nix-prefetch-git', '--quiet', 45 + '--url', url, 46 + '--rev', rev, 47 + '--fetch-submodules']) 48 + return json.loads(out)['sha256'] 49 + 50 + 51 + def nix_prefetch_url(url, unpack=False): 52 + """Prefetches the content of the given URL.""" 53 + print(f'nix-prefetch-url {url}') 54 + options = ['--type', 'sha256'] 55 + if unpack: 56 + options += ['--unpack'] 57 + out = subprocess.check_output(['nix-prefetch-url'] + options + [url]) 58 + return out.decode('utf-8').rstrip() 59 + 60 + 61 + def update_file(relpath, variant, version, suffix, sha256): 62 + file_path = os.path.join(DIR, relpath) 63 + with fileinput.FileInput(file_path, inplace=True) as f: 64 + for line in f: 65 + result = line 66 + result = re.sub( 67 + fr'^ version = ".+"; #{variant}', 68 + f' version = "{version}"; #{variant}', 69 + result) 70 + result = re.sub( 71 + fr'^ suffix = ".+"; #{variant}', 72 + f' suffix = "{suffix}"; #{variant}', 73 + result) 74 + result = re.sub( 75 + fr'^ sha256 = ".+"; #{variant}', 76 + f' sha256 = "{sha256}"; #{variant}', 77 + result) 78 + print(result, end='') 79 + 80 + 81 + if __name__ == "__main__": 82 + if len(sys.argv) == 1: 83 + panic("Update variant expected") 84 + variant = sys.argv[1] 85 + if variant not in ("zen", "lqx"): 86 + panic(f"Unexepected variant instead of 'zen' or 'lqx': {sys.argv[1]}") 87 + pattern = re.compile(fr"v(\d+\.\d+\.?\d*)-({variant}\d+)") 88 + zen_tags = github_api_request('repos/zen-kernel/zen-kernel/releases') 89 + for tag in zen_tags: 90 + zen_match = pattern.match(tag['tag_name']) 91 + if zen_match: 92 + zen_tag = zen_match.group(0) 93 + zen_version = zen_match.group(1) 94 + zen_suffix = zen_match.group(2) 95 + break 96 + zen_hash = nix_prefetch_git('https://github.com/zen-kernel/zen-kernel.git', zen_tag) 97 + update_file('zen-kernels.nix', variant, zen_version, zen_suffix, zen_hash)
-23
pkgs/os-specific/linux/kernel/update-zen.sh
··· 1 - #! /usr/bin/env nix-shell 2 - #! nix-shell -I nixpkgs=../../../.. -i bash -p nix-prefetch git gnused gnugrep nix curl 3 - set -euo pipefail -x 4 - 5 - nixpkgs="$(git rev-parse --show-toplevel)" 6 - old=$(nix-instantiate --eval -A linuxPackages_zen.kernel.modDirVersion "$nixpkgs") 7 - old="${old%\"}" 8 - old="${old#\"}" 9 - new=$(curl https://github.com/zen-kernel/zen-kernel/releases.atom | grep -m1 -o -E '[0-9.]+-zen[0-9]+') 10 - # add ".0" patch to modDirVersion when minor only 11 - new=$(echo "$new" | sed -E 's/^([0-9]+)\.([0-9]+)-(\w+)$/\1.\2.0-\3/') 12 - if [[ "$new" == "$old" ]]; then 13 - echo "already up-to-date" 14 - exit 0 15 - fi 16 - 17 - path="$nixpkgs/pkgs/os-specific/linux/kernel/linux-zen.nix" 18 - 19 - sed -i -e "s!modDirVersion = \".*\"!modDirVersion = \"${new}\"!" "$path" 20 - checksum=$(nix-prefetch "(import ${nixpkgs} {}).linuxPackages_zen.kernel") 21 - sed -i -e "s!sha256 = \".*\"!sha256 = \"${checksum}\"!" "$path" 22 - 23 - git commit -m "linuxKernel.kernels.linux_zen: ${old} -> ${new}" $path
···
+45
pkgs/os-specific/linux/kernel/zen-kernels.nix
···
··· 1 + { lib, fetchFromGitHub, buildLinux, ... } @ args: 2 + 3 + let 4 + # comments with variant added for update script 5 + # ./update-zen.py zen 6 + zenVariant = { 7 + version = "5.18.7"; #zen 8 + suffix = "zen1"; #zen 9 + sha256 = "1dxiwrbf15njqcq2kxbsg22hllpcvdwjhdf0gs3xx0xyjbwjyd26"; #zen 10 + isLqx = false; 11 + }; 12 + # ./update-zen.py lqx 13 + lqxVariant = { 14 + version = "5.18.7"; #lqx 15 + suffix = "lqx1"; #lqx 16 + sha256 = "0gyp4x8rlsg5bjr9c8qq0mk3wckyg0navc1sripkj8hrl51vm28c"; #lqx 17 + isLqx = true; 18 + }; 19 + zenKernelsFor = { version, suffix, sha256, isLqx }: buildLinux (args // { 20 + inherit version; 21 + modDirVersion = "${lib.concatStringsSep "." (lib.take 3 (lib.splitVersion version ++ [ "0" "0" ]))}-${suffix}"; 22 + isZen = true; 23 + 24 + src = fetchFromGitHub { 25 + owner = "zen-kernel"; 26 + repo = "zen-kernel"; 27 + rev = "v${version}-${suffix}"; 28 + inherit sha256; 29 + }; 30 + 31 + passthru.updateScript = [ ./update-zen.py (if isLqx then "lqx" else "zen") ]; 32 + 33 + extraMeta = { 34 + branch = lib.versions.majorMinor version + "/master"; 35 + maintainers = with lib.maintainers; [ atemu andresilva psydvl ]; 36 + description = "Built using the best configuration and kernel sources for desktop, multimedia, and gaming workloads." + 37 + lib.optionalString isLqx " (Same as linux_zen but less aggressive release schedule)"; 38 + }; 39 + 40 + } // (args.argsOverride or { })); 41 + in 42 + { 43 + zen = zenKernelsFor zenVariant; 44 + lqx = zenKernelsFor lqxVariant; 45 + }
+2273
pkgs/servers/binserve/Cargo.lock
···
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "actix-codec" 7 + version = "0.5.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe" 10 + dependencies = [ 11 + "bitflags", 12 + "bytes", 13 + "futures-core", 14 + "futures-sink", 15 + "log", 16 + "memchr", 17 + "pin-project-lite", 18 + "tokio", 19 + "tokio-util", 20 + ] 21 + 22 + [[package]] 23 + name = "actix-files" 24 + version = "0.6.1" 25 + source = "registry+https://github.com/rust-lang/crates.io-index" 26 + checksum = "e04dcf7654254676d434b0285e2298d577ed4826f67f536e7a39bb0f64721164" 27 + dependencies = [ 28 + "actix-http", 29 + "actix-service", 30 + "actix-utils", 31 + "actix-web", 32 + "askama_escape", 33 + "bitflags", 34 + "bytes", 35 + "derive_more", 36 + "futures-core", 37 + "http-range", 38 + "log", 39 + "mime", 40 + "mime_guess", 41 + "percent-encoding", 42 + "pin-project-lite", 43 + ] 44 + 45 + [[package]] 46 + name = "actix-http" 47 + version = "3.1.0" 48 + source = "registry+https://github.com/rust-lang/crates.io-index" 49 + checksum = "bd2e9f6794b5826aff6df65e3a0d0127b271d1c03629c774238f3582e903d4e4" 50 + dependencies = [ 51 + "actix-codec", 52 + "actix-rt", 53 + "actix-service", 54 + "actix-tls", 55 + "actix-utils", 56 + "ahash", 57 + "base64", 58 + "bitflags", 59 + "brotli", 60 + "bytes", 61 + "bytestring", 62 + "derive_more", 63 + "encoding_rs", 64 + "flate2", 65 + "futures-core", 66 + "h2", 67 + "http", 68 + "httparse", 69 + "httpdate", 70 + "itoa 1.0.2", 71 + "language-tags", 72 + "local-channel", 73 + "mime", 74 + "percent-encoding", 75 + "pin-project-lite", 76 + "rand", 77 + "sha1", 78 + "smallvec", 79 + "tracing", 80 + "zstd", 81 + ] 82 + 83 + [[package]] 84 + name = "actix-macros" 85 + version = "0.2.3" 86 + source = "registry+https://github.com/rust-lang/crates.io-index" 87 + checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6" 88 + dependencies = [ 89 + "quote", 90 + "syn", 91 + ] 92 + 93 + [[package]] 94 + name = "actix-router" 95 + version = "0.5.0" 96 + source = "registry+https://github.com/rust-lang/crates.io-index" 97 + checksum = "eb60846b52c118f2f04a56cc90880a274271c489b2498623d58176f8ca21fa80" 98 + dependencies = [ 99 + "bytestring", 100 + "firestorm", 101 + "http", 102 + "log", 103 + "regex", 104 + "serde", 105 + ] 106 + 107 + [[package]] 108 + name = "actix-rt" 109 + version = "2.7.0" 110 + source = "registry+https://github.com/rust-lang/crates.io-index" 111 + checksum = "7ea16c295198e958ef31930a6ef37d0fb64e9ca3b6116e6b93a8bdae96ee1000" 112 + dependencies = [ 113 + "futures-core", 114 + "tokio", 115 + ] 116 + 117 + [[package]] 118 + name = "actix-server" 119 + version = "2.1.1" 120 + source = "registry+https://github.com/rust-lang/crates.io-index" 121 + checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824" 122 + dependencies = [ 123 + "actix-rt", 124 + "actix-service", 125 + "actix-utils", 126 + "futures-core", 127 + "futures-util", 128 + "mio 0.8.4", 129 + "num_cpus", 130 + "socket2", 131 + "tokio", 132 + "tracing", 133 + ] 134 + 135 + [[package]] 136 + name = "actix-service" 137 + version = "2.0.2" 138 + source = "registry+https://github.com/rust-lang/crates.io-index" 139 + checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a" 140 + dependencies = [ 141 + "futures-core", 142 + "paste", 143 + "pin-project-lite", 144 + ] 145 + 146 + [[package]] 147 + name = "actix-tls" 148 + version = "3.0.3" 149 + source = "registry+https://github.com/rust-lang/crates.io-index" 150 + checksum = "9fde0cf292f7cdc7f070803cb9a0d45c018441321a78b1042ffbbb81ec333297" 151 + dependencies = [ 152 + "actix-codec", 153 + "actix-rt", 154 + "actix-service", 155 + "actix-utils", 156 + "futures-core", 157 + "log", 158 + "pin-project-lite", 159 + "tokio-rustls", 160 + "tokio-util", 161 + "webpki-roots", 162 + ] 163 + 164 + [[package]] 165 + name = "actix-utils" 166 + version = "3.0.0" 167 + source = "registry+https://github.com/rust-lang/crates.io-index" 168 + checksum = "e491cbaac2e7fc788dfff99ff48ef317e23b3cf63dbaf7aaab6418f40f92aa94" 169 + dependencies = [ 170 + "local-waker", 171 + "pin-project-lite", 172 + ] 173 + 174 + [[package]] 175 + name = "actix-web" 176 + version = "4.1.0" 177 + source = "registry+https://github.com/rust-lang/crates.io-index" 178 + checksum = "a27e8fe9ba4ae613c21f677c2cfaf0696c3744030c6f485b34634e502d6bb379" 179 + dependencies = [ 180 + "actix-codec", 181 + "actix-http", 182 + "actix-macros", 183 + "actix-router", 184 + "actix-rt", 185 + "actix-server", 186 + "actix-service", 187 + "actix-tls", 188 + "actix-utils", 189 + "actix-web-codegen", 190 + "ahash", 191 + "bytes", 192 + "bytestring", 193 + "cfg-if 1.0.0", 194 + "cookie", 195 + "derive_more", 196 + "encoding_rs", 197 + "futures-core", 198 + "futures-util", 199 + "itoa 1.0.2", 200 + "language-tags", 201 + "log", 202 + "mime", 203 + "once_cell", 204 + "pin-project-lite", 205 + "regex", 206 + "serde", 207 + "serde_json", 208 + "serde_urlencoded", 209 + "smallvec", 210 + "socket2", 211 + "time", 212 + "url", 213 + ] 214 + 215 + [[package]] 216 + name = "actix-web-codegen" 217 + version = "4.0.1" 218 + source = "registry+https://github.com/rust-lang/crates.io-index" 219 + checksum = "5f270541caec49c15673b0af0e9a00143421ad4f118d2df7edcb68b627632f56" 220 + dependencies = [ 221 + "actix-router", 222 + "proc-macro2", 223 + "quote", 224 + "syn", 225 + ] 226 + 227 + [[package]] 228 + name = "actix-web-lab" 229 + version = "0.16.1" 230 + source = "registry+https://github.com/rust-lang/crates.io-index" 231 + checksum = "483a1012828ff6bca5b67e5a97099dd99ef699fbd911d39e7bcdc3b40e48aaa4" 232 + dependencies = [ 233 + "actix-files", 234 + "actix-http", 235 + "actix-router", 236 + "actix-service", 237 + "actix-utils", 238 + "actix-web", 239 + "actix-web-lab-derive", 240 + "ahash", 241 + "arc-swap", 242 + "async-trait", 243 + "bytes", 244 + "csv", 245 + "derive_more", 246 + "digest 0.10.3", 247 + "futures-core", 248 + "futures-util", 249 + "generic-array 0.14.5", 250 + "hmac", 251 + "local-channel", 252 + "mime", 253 + "once_cell", 254 + "pin-project-lite", 255 + "serde", 256 + "serde_html_form", 257 + "serde_json", 258 + "subtle", 259 + "tokio", 260 + "tracing", 261 + ] 262 + 263 + [[package]] 264 + name = "actix-web-lab-derive" 265 + version = "0.16.0" 266 + source = "registry+https://github.com/rust-lang/crates.io-index" 267 + checksum = "a44a15d9ddb31a4f41decd22f743a154e519fb326120e8133ef9ea6283335ad2" 268 + dependencies = [ 269 + "proc-macro2", 270 + "quote", 271 + "syn", 272 + ] 273 + 274 + [[package]] 275 + name = "adler" 276 + version = "1.0.2" 277 + source = "registry+https://github.com/rust-lang/crates.io-index" 278 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 279 + 280 + [[package]] 281 + name = "ahash" 282 + version = "0.7.6" 283 + source = "registry+https://github.com/rust-lang/crates.io-index" 284 + checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 285 + dependencies = [ 286 + "getrandom", 287 + "once_cell", 288 + "version_check", 289 + ] 290 + 291 + [[package]] 292 + name = "aho-corasick" 293 + version = "0.7.18" 294 + source = "registry+https://github.com/rust-lang/crates.io-index" 295 + checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 296 + dependencies = [ 297 + "memchr", 298 + ] 299 + 300 + [[package]] 301 + name = "alloc-no-stdlib" 302 + version = "2.0.3" 303 + source = "registry+https://github.com/rust-lang/crates.io-index" 304 + checksum = "35ef4730490ad1c4eae5c4325b2a95f521d023e5c885853ff7aca0a6a1631db3" 305 + 306 + [[package]] 307 + name = "alloc-stdlib" 308 + version = "0.2.1" 309 + source = "registry+https://github.com/rust-lang/crates.io-index" 310 + checksum = "697ed7edc0f1711de49ce108c541623a0af97c6c60b2f6e2b65229847ac843c2" 311 + dependencies = [ 312 + "alloc-no-stdlib", 313 + ] 314 + 315 + [[package]] 316 + name = "anyhow" 317 + version = "1.0.58" 318 + source = "registry+https://github.com/rust-lang/crates.io-index" 319 + checksum = "bb07d2053ccdbe10e2af2995a2f116c1330396493dc1269f6a91d0ae82e19704" 320 + 321 + [[package]] 322 + name = "arc-swap" 323 + version = "1.5.0" 324 + source = "registry+https://github.com/rust-lang/crates.io-index" 325 + checksum = "c5d78ce20460b82d3fa150275ed9d55e21064fc7951177baacf86a145c4a4b1f" 326 + 327 + [[package]] 328 + name = "askama_escape" 329 + version = "0.10.3" 330 + source = "registry+https://github.com/rust-lang/crates.io-index" 331 + checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341" 332 + 333 + [[package]] 334 + name = "async-trait" 335 + version = "0.1.56" 336 + source = "registry+https://github.com/rust-lang/crates.io-index" 337 + checksum = "96cf8829f67d2eab0b2dfa42c5d0ef737e0724e4a82b01b3e292456202b19716" 338 + dependencies = [ 339 + "proc-macro2", 340 + "quote", 341 + "syn", 342 + ] 343 + 344 + [[package]] 345 + name = "atty" 346 + version = "0.2.14" 347 + source = "registry+https://github.com/rust-lang/crates.io-index" 348 + checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 349 + dependencies = [ 350 + "hermit-abi", 351 + "libc", 352 + "winapi 0.3.9", 353 + ] 354 + 355 + [[package]] 356 + name = "autocfg" 357 + version = "1.1.0" 358 + source = "registry+https://github.com/rust-lang/crates.io-index" 359 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 360 + 361 + [[package]] 362 + name = "base64" 363 + version = "0.13.0" 364 + source = "registry+https://github.com/rust-lang/crates.io-index" 365 + checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" 366 + 367 + [[package]] 368 + name = "binserve" 369 + version = "0.2.0" 370 + dependencies = [ 371 + "actix-files", 372 + "actix-web", 373 + "actix-web-lab", 374 + "ahash", 375 + "anyhow", 376 + "clap", 377 + "colored", 378 + "compact_str", 379 + "dashmap", 380 + "env_logger", 381 + "etag", 382 + "handlebars", 383 + "jwalk", 384 + "minify-html-onepass", 385 + "new_mime_guess", 386 + "notify", 387 + "num_cpus", 388 + "once_cell", 389 + "parking_lot", 390 + "rustls", 391 + "rustls-pemfile", 392 + "serde", 393 + "serde_json", 394 + ] 395 + 396 + [[package]] 397 + name = "bitflags" 398 + version = "1.3.2" 399 + source = "registry+https://github.com/rust-lang/crates.io-index" 400 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 401 + 402 + [[package]] 403 + name = "block-buffer" 404 + version = "0.7.3" 405 + source = "registry+https://github.com/rust-lang/crates.io-index" 406 + checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" 407 + dependencies = [ 408 + "block-padding", 409 + "byte-tools", 410 + "byteorder", 411 + "generic-array 0.12.4", 412 + ] 413 + 414 + [[package]] 415 + name = "block-buffer" 416 + version = "0.10.2" 417 + source = "registry+https://github.com/rust-lang/crates.io-index" 418 + checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324" 419 + dependencies = [ 420 + "generic-array 0.14.5", 421 + ] 422 + 423 + [[package]] 424 + name = "block-padding" 425 + version = "0.1.5" 426 + source = "registry+https://github.com/rust-lang/crates.io-index" 427 + checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" 428 + dependencies = [ 429 + "byte-tools", 430 + ] 431 + 432 + [[package]] 433 + name = "brotli" 434 + version = "3.3.4" 435 + source = "registry+https://github.com/rust-lang/crates.io-index" 436 + checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" 437 + dependencies = [ 438 + "alloc-no-stdlib", 439 + "alloc-stdlib", 440 + "brotli-decompressor", 441 + ] 442 + 443 + [[package]] 444 + name = "brotli-decompressor" 445 + version = "2.3.2" 446 + source = "registry+https://github.com/rust-lang/crates.io-index" 447 + checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80" 448 + dependencies = [ 449 + "alloc-no-stdlib", 450 + "alloc-stdlib", 451 + ] 452 + 453 + [[package]] 454 + name = "bstr" 455 + version = "0.2.17" 456 + source = "registry+https://github.com/rust-lang/crates.io-index" 457 + checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 458 + dependencies = [ 459 + "lazy_static", 460 + "memchr", 461 + "regex-automata", 462 + "serde", 463 + ] 464 + 465 + [[package]] 466 + name = "bumpalo" 467 + version = "3.10.0" 468 + source = "registry+https://github.com/rust-lang/crates.io-index" 469 + checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3" 470 + 471 + [[package]] 472 + name = "byte-tools" 473 + version = "0.3.1" 474 + source = "registry+https://github.com/rust-lang/crates.io-index" 475 + checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" 476 + 477 + [[package]] 478 + name = "byteorder" 479 + version = "1.4.3" 480 + source = "registry+https://github.com/rust-lang/crates.io-index" 481 + checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 482 + 483 + [[package]] 484 + name = "bytes" 485 + version = "1.1.0" 486 + source = "registry+https://github.com/rust-lang/crates.io-index" 487 + checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8" 488 + 489 + [[package]] 490 + name = "bytestring" 491 + version = "1.1.0" 492 + source = "registry+https://github.com/rust-lang/crates.io-index" 493 + checksum = "86b6a75fd3048808ef06af5cd79712be8111960adaf89d90250974b38fc3928a" 494 + dependencies = [ 495 + "bytes", 496 + ] 497 + 498 + [[package]] 499 + name = "castaway" 500 + version = "0.2.2" 501 + source = "registry+https://github.com/rust-lang/crates.io-index" 502 + checksum = "8a17ed5635fc8536268e5d4de1e22e81ac34419e5f052d4d51f4e01dcc263fcc" 503 + dependencies = [ 504 + "rustversion", 505 + ] 506 + 507 + [[package]] 508 + name = "cc" 509 + version = "1.0.73" 510 + source = "registry+https://github.com/rust-lang/crates.io-index" 511 + checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" 512 + dependencies = [ 513 + "jobserver", 514 + ] 515 + 516 + [[package]] 517 + name = "cfg-if" 518 + version = "0.1.10" 519 + source = "registry+https://github.com/rust-lang/crates.io-index" 520 + checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 521 + 522 + [[package]] 523 + name = "cfg-if" 524 + version = "1.0.0" 525 + source = "registry+https://github.com/rust-lang/crates.io-index" 526 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 527 + 528 + [[package]] 529 + name = "clap" 530 + version = "3.2.6" 531 + source = "registry+https://github.com/rust-lang/crates.io-index" 532 + checksum = "9f1fe12880bae935d142c8702d500c63a4e8634b6c3c57ad72bf978fc7b6249a" 533 + dependencies = [ 534 + "atty", 535 + "bitflags", 536 + "clap_lex", 537 + "indexmap", 538 + "strsim", 539 + "termcolor", 540 + "textwrap", 541 + ] 542 + 543 + [[package]] 544 + name = "clap_lex" 545 + version = "0.2.3" 546 + source = "registry+https://github.com/rust-lang/crates.io-index" 547 + checksum = "87eba3c8c7f42ef17f6c659fc7416d0f4758cd3e58861ee63c5fa4a4dde649e4" 548 + dependencies = [ 549 + "os_str_bytes", 550 + ] 551 + 552 + [[package]] 553 + name = "colored" 554 + version = "2.0.0" 555 + source = "registry+https://github.com/rust-lang/crates.io-index" 556 + checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd" 557 + dependencies = [ 558 + "atty", 559 + "lazy_static", 560 + "winapi 0.3.9", 561 + ] 562 + 563 + [[package]] 564 + name = "compact_str" 565 + version = "0.4.0" 566 + source = "registry+https://github.com/rust-lang/crates.io-index" 567 + checksum = "fb6f80f92629b81f5b17b616a99f72870556ca457bbbd99aeda7bb5d194316a2" 568 + dependencies = [ 569 + "castaway", 570 + "itoa 1.0.2", 571 + "ryu", 572 + ] 573 + 574 + [[package]] 575 + name = "convert_case" 576 + version = "0.4.0" 577 + source = "registry+https://github.com/rust-lang/crates.io-index" 578 + checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 579 + 580 + [[package]] 581 + name = "cookie" 582 + version = "0.16.0" 583 + source = "registry+https://github.com/rust-lang/crates.io-index" 584 + checksum = "94d4706de1b0fa5b132270cddffa8585166037822e260a944fe161acd137ca05" 585 + dependencies = [ 586 + "percent-encoding", 587 + "time", 588 + "version_check", 589 + ] 590 + 591 + [[package]] 592 + name = "cpufeatures" 593 + version = "0.2.2" 594 + source = "registry+https://github.com/rust-lang/crates.io-index" 595 + checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b" 596 + dependencies = [ 597 + "libc", 598 + ] 599 + 600 + [[package]] 601 + name = "crc32fast" 602 + version = "1.3.2" 603 + source = "registry+https://github.com/rust-lang/crates.io-index" 604 + checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 605 + dependencies = [ 606 + "cfg-if 1.0.0", 607 + ] 608 + 609 + [[package]] 610 + name = "crossbeam" 611 + version = "0.8.1" 612 + source = "registry+https://github.com/rust-lang/crates.io-index" 613 + checksum = "4ae5588f6b3c3cb05239e90bd110f257254aecd01e4635400391aeae07497845" 614 + dependencies = [ 615 + "cfg-if 1.0.0", 616 + "crossbeam-channel", 617 + "crossbeam-deque", 618 + "crossbeam-epoch", 619 + "crossbeam-queue", 620 + "crossbeam-utils", 621 + ] 622 + 623 + [[package]] 624 + name = "crossbeam-channel" 625 + version = "0.5.5" 626 + source = "registry+https://github.com/rust-lang/crates.io-index" 627 + checksum = "4c02a4d71819009c192cf4872265391563fd6a84c81ff2c0f2a7026ca4c1d85c" 628 + dependencies = [ 629 + "cfg-if 1.0.0", 630 + "crossbeam-utils", 631 + ] 632 + 633 + [[package]] 634 + name = "crossbeam-deque" 635 + version = "0.8.1" 636 + source = "registry+https://github.com/rust-lang/crates.io-index" 637 + checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e" 638 + dependencies = [ 639 + "cfg-if 1.0.0", 640 + "crossbeam-epoch", 641 + "crossbeam-utils", 642 + ] 643 + 644 + [[package]] 645 + name = "crossbeam-epoch" 646 + version = "0.9.9" 647 + source = "registry+https://github.com/rust-lang/crates.io-index" 648 + checksum = "07db9d94cbd326813772c968ccd25999e5f8ae22f4f8d1b11effa37ef6ce281d" 649 + dependencies = [ 650 + "autocfg", 651 + "cfg-if 1.0.0", 652 + "crossbeam-utils", 653 + "memoffset", 654 + "once_cell", 655 + "scopeguard", 656 + ] 657 + 658 + [[package]] 659 + name = "crossbeam-queue" 660 + version = "0.3.5" 661 + source = "registry+https://github.com/rust-lang/crates.io-index" 662 + checksum = "1f25d8400f4a7a5778f0e4e52384a48cbd9b5c495d110786187fc750075277a2" 663 + dependencies = [ 664 + "cfg-if 1.0.0", 665 + "crossbeam-utils", 666 + ] 667 + 668 + [[package]] 669 + name = "crossbeam-utils" 670 + version = "0.8.10" 671 + source = "registry+https://github.com/rust-lang/crates.io-index" 672 + checksum = "7d82ee10ce34d7bc12c2122495e7593a9c41347ecdd64185af4ecf72cb1a7f83" 673 + dependencies = [ 674 + "cfg-if 1.0.0", 675 + "once_cell", 676 + ] 677 + 678 + [[package]] 679 + name = "crypto-common" 680 + version = "0.1.3" 681 + source = "registry+https://github.com/rust-lang/crates.io-index" 682 + checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8" 683 + dependencies = [ 684 + "generic-array 0.14.5", 685 + "typenum", 686 + ] 687 + 688 + [[package]] 689 + name = "csv" 690 + version = "1.1.6" 691 + source = "registry+https://github.com/rust-lang/crates.io-index" 692 + checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1" 693 + dependencies = [ 694 + "bstr", 695 + "csv-core", 696 + "itoa 0.4.8", 697 + "ryu", 698 + "serde", 699 + ] 700 + 701 + [[package]] 702 + name = "csv-core" 703 + version = "0.1.10" 704 + source = "registry+https://github.com/rust-lang/crates.io-index" 705 + checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" 706 + dependencies = [ 707 + "memchr", 708 + ] 709 + 710 + [[package]] 711 + name = "dashmap" 712 + version = "5.3.4" 713 + source = "registry+https://github.com/rust-lang/crates.io-index" 714 + checksum = "3495912c9c1ccf2e18976439f4443f3fee0fd61f424ff99fde6a66b15ecb448f" 715 + dependencies = [ 716 + "cfg-if 1.0.0", 717 + "hashbrown", 718 + "lock_api", 719 + "parking_lot_core", 720 + ] 721 + 722 + [[package]] 723 + name = "derive_more" 724 + version = "0.99.17" 725 + source = "registry+https://github.com/rust-lang/crates.io-index" 726 + checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 727 + dependencies = [ 728 + "convert_case", 729 + "proc-macro2", 730 + "quote", 731 + "rustc_version", 732 + "syn", 733 + ] 734 + 735 + [[package]] 736 + name = "digest" 737 + version = "0.8.1" 738 + source = "registry+https://github.com/rust-lang/crates.io-index" 739 + checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" 740 + dependencies = [ 741 + "generic-array 0.12.4", 742 + ] 743 + 744 + [[package]] 745 + name = "digest" 746 + version = "0.10.3" 747 + source = "registry+https://github.com/rust-lang/crates.io-index" 748 + checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506" 749 + dependencies = [ 750 + "block-buffer 0.10.2", 751 + "crypto-common", 752 + "subtle", 753 + ] 754 + 755 + [[package]] 756 + name = "either" 757 + version = "1.6.1" 758 + source = "registry+https://github.com/rust-lang/crates.io-index" 759 + checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" 760 + 761 + [[package]] 762 + name = "encoding_rs" 763 + version = "0.8.31" 764 + source = "registry+https://github.com/rust-lang/crates.io-index" 765 + checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" 766 + dependencies = [ 767 + "cfg-if 1.0.0", 768 + ] 769 + 770 + [[package]] 771 + name = "env_logger" 772 + version = "0.9.0" 773 + source = "registry+https://github.com/rust-lang/crates.io-index" 774 + checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3" 775 + dependencies = [ 776 + "atty", 777 + "humantime", 778 + "log", 779 + "regex", 780 + "termcolor", 781 + ] 782 + 783 + [[package]] 784 + name = "etag" 785 + version = "3.0.0" 786 + source = "registry+https://github.com/rust-lang/crates.io-index" 787 + checksum = "aec9f8918ec91bd35f3068e33da01b72a295ac8a7baacb0290b56ffeeec9d88f" 788 + dependencies = [ 789 + "str-buf", 790 + "xxhash-rust", 791 + ] 792 + 793 + [[package]] 794 + name = "fake-simd" 795 + version = "0.1.2" 796 + source = "registry+https://github.com/rust-lang/crates.io-index" 797 + checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" 798 + 799 + [[package]] 800 + name = "filetime" 801 + version = "0.2.16" 802 + source = "registry+https://github.com/rust-lang/crates.io-index" 803 + checksum = "c0408e2626025178a6a7f7ffc05a25bc47103229f19c113755de7bf63816290c" 804 + dependencies = [ 805 + "cfg-if 1.0.0", 806 + "libc", 807 + "redox_syscall", 808 + "winapi 0.3.9", 809 + ] 810 + 811 + [[package]] 812 + name = "firestorm" 813 + version = "0.5.1" 814 + source = "registry+https://github.com/rust-lang/crates.io-index" 815 + checksum = "2c5f6c2c942da57e2aaaa84b8a521489486f14e75e7fa91dab70aba913975f98" 816 + 817 + [[package]] 818 + name = "flate2" 819 + version = "1.0.24" 820 + source = "registry+https://github.com/rust-lang/crates.io-index" 821 + checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6" 822 + dependencies = [ 823 + "crc32fast", 824 + "miniz_oxide", 825 + ] 826 + 827 + [[package]] 828 + name = "fnv" 829 + version = "1.0.7" 830 + source = "registry+https://github.com/rust-lang/crates.io-index" 831 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 832 + 833 + [[package]] 834 + name = "form_urlencoded" 835 + version = "1.0.1" 836 + source = "registry+https://github.com/rust-lang/crates.io-index" 837 + checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" 838 + dependencies = [ 839 + "matches", 840 + "percent-encoding", 841 + ] 842 + 843 + [[package]] 844 + name = "fsevent" 845 + version = "0.4.0" 846 + source = "registry+https://github.com/rust-lang/crates.io-index" 847 + checksum = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6" 848 + dependencies = [ 849 + "bitflags", 850 + "fsevent-sys", 851 + ] 852 + 853 + [[package]] 854 + name = "fsevent-sys" 855 + version = "2.0.1" 856 + source = "registry+https://github.com/rust-lang/crates.io-index" 857 + checksum = "f41b048a94555da0f42f1d632e2e19510084fb8e303b0daa2816e733fb3644a0" 858 + dependencies = [ 859 + "libc", 860 + ] 861 + 862 + [[package]] 863 + name = "fuchsia-zircon" 864 + version = "0.3.3" 865 + source = "registry+https://github.com/rust-lang/crates.io-index" 866 + checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" 867 + dependencies = [ 868 + "bitflags", 869 + "fuchsia-zircon-sys", 870 + ] 871 + 872 + [[package]] 873 + name = "fuchsia-zircon-sys" 874 + version = "0.3.3" 875 + source = "registry+https://github.com/rust-lang/crates.io-index" 876 + checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" 877 + 878 + [[package]] 879 + name = "futures-core" 880 + version = "0.3.21" 881 + source = "registry+https://github.com/rust-lang/crates.io-index" 882 + checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3" 883 + 884 + [[package]] 885 + name = "futures-sink" 886 + version = "0.3.21" 887 + source = "registry+https://github.com/rust-lang/crates.io-index" 888 + checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868" 889 + 890 + [[package]] 891 + name = "futures-task" 892 + version = "0.3.21" 893 + source = "registry+https://github.com/rust-lang/crates.io-index" 894 + checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a" 895 + 896 + [[package]] 897 + name = "futures-util" 898 + version = "0.3.21" 899 + source = "registry+https://github.com/rust-lang/crates.io-index" 900 + checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a" 901 + dependencies = [ 902 + "futures-core", 903 + "futures-task", 904 + "pin-project-lite", 905 + "pin-utils", 906 + "slab", 907 + ] 908 + 909 + [[package]] 910 + name = "generic-array" 911 + version = "0.12.4" 912 + source = "registry+https://github.com/rust-lang/crates.io-index" 913 + checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd" 914 + dependencies = [ 915 + "typenum", 916 + ] 917 + 918 + [[package]] 919 + name = "generic-array" 920 + version = "0.14.5" 921 + source = "registry+https://github.com/rust-lang/crates.io-index" 922 + checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803" 923 + dependencies = [ 924 + "typenum", 925 + "version_check", 926 + ] 927 + 928 + [[package]] 929 + name = "getrandom" 930 + version = "0.2.7" 931 + source = "registry+https://github.com/rust-lang/crates.io-index" 932 + checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" 933 + dependencies = [ 934 + "cfg-if 1.0.0", 935 + "libc", 936 + "wasi", 937 + ] 938 + 939 + [[package]] 940 + name = "h2" 941 + version = "0.3.13" 942 + source = "registry+https://github.com/rust-lang/crates.io-index" 943 + checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57" 944 + dependencies = [ 945 + "bytes", 946 + "fnv", 947 + "futures-core", 948 + "futures-sink", 949 + "futures-util", 950 + "http", 951 + "indexmap", 952 + "slab", 953 + "tokio", 954 + "tokio-util", 955 + "tracing", 956 + ] 957 + 958 + [[package]] 959 + name = "handlebars" 960 + version = "4.3.1" 961 + source = "registry+https://github.com/rust-lang/crates.io-index" 962 + checksum = "b66d0c1b6e3abfd1e72818798925e16e02ed77e1b47f6c25a95a23b377ee4299" 963 + dependencies = [ 964 + "log", 965 + "pest", 966 + "pest_derive", 967 + "serde", 968 + "serde_json", 969 + "thiserror", 970 + ] 971 + 972 + [[package]] 973 + name = "hashbrown" 974 + version = "0.12.1" 975 + source = "registry+https://github.com/rust-lang/crates.io-index" 976 + checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3" 977 + 978 + [[package]] 979 + name = "hermit-abi" 980 + version = "0.1.19" 981 + source = "registry+https://github.com/rust-lang/crates.io-index" 982 + checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 983 + dependencies = [ 984 + "libc", 985 + ] 986 + 987 + [[package]] 988 + name = "hmac" 989 + version = "0.12.1" 990 + source = "registry+https://github.com/rust-lang/crates.io-index" 991 + checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 992 + dependencies = [ 993 + "digest 0.10.3", 994 + ] 995 + 996 + [[package]] 997 + name = "http" 998 + version = "0.2.8" 999 + source = "registry+https://github.com/rust-lang/crates.io-index" 1000 + checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 1001 + dependencies = [ 1002 + "bytes", 1003 + "fnv", 1004 + "itoa 1.0.2", 1005 + ] 1006 + 1007 + [[package]] 1008 + name = "http-range" 1009 + version = "0.1.5" 1010 + source = "registry+https://github.com/rust-lang/crates.io-index" 1011 + checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573" 1012 + 1013 + [[package]] 1014 + name = "httparse" 1015 + version = "1.7.1" 1016 + source = "registry+https://github.com/rust-lang/crates.io-index" 1017 + checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c" 1018 + 1019 + [[package]] 1020 + name = "httpdate" 1021 + version = "1.0.2" 1022 + source = "registry+https://github.com/rust-lang/crates.io-index" 1023 + checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 1024 + 1025 + [[package]] 1026 + name = "humantime" 1027 + version = "2.1.0" 1028 + source = "registry+https://github.com/rust-lang/crates.io-index" 1029 + checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 1030 + 1031 + [[package]] 1032 + name = "idna" 1033 + version = "0.2.3" 1034 + source = "registry+https://github.com/rust-lang/crates.io-index" 1035 + checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 1036 + dependencies = [ 1037 + "matches", 1038 + "unicode-bidi", 1039 + "unicode-normalization", 1040 + ] 1041 + 1042 + [[package]] 1043 + name = "indexmap" 1044 + version = "1.9.1" 1045 + source = "registry+https://github.com/rust-lang/crates.io-index" 1046 + checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" 1047 + dependencies = [ 1048 + "autocfg", 1049 + "hashbrown", 1050 + ] 1051 + 1052 + [[package]] 1053 + name = "inotify" 1054 + version = "0.7.1" 1055 + source = "registry+https://github.com/rust-lang/crates.io-index" 1056 + checksum = "4816c66d2c8ae673df83366c18341538f234a26d65a9ecea5c348b453ac1d02f" 1057 + dependencies = [ 1058 + "bitflags", 1059 + "inotify-sys", 1060 + "libc", 1061 + ] 1062 + 1063 + [[package]] 1064 + name = "inotify-sys" 1065 + version = "0.1.5" 1066 + source = "registry+https://github.com/rust-lang/crates.io-index" 1067 + checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" 1068 + dependencies = [ 1069 + "libc", 1070 + ] 1071 + 1072 + [[package]] 1073 + name = "iovec" 1074 + version = "0.1.4" 1075 + source = "registry+https://github.com/rust-lang/crates.io-index" 1076 + checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" 1077 + dependencies = [ 1078 + "libc", 1079 + ] 1080 + 1081 + [[package]] 1082 + name = "itoa" 1083 + version = "0.4.8" 1084 + source = "registry+https://github.com/rust-lang/crates.io-index" 1085 + checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 1086 + 1087 + [[package]] 1088 + name = "itoa" 1089 + version = "1.0.2" 1090 + source = "registry+https://github.com/rust-lang/crates.io-index" 1091 + checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d" 1092 + 1093 + [[package]] 1094 + name = "jobserver" 1095 + version = "0.1.24" 1096 + source = "registry+https://github.com/rust-lang/crates.io-index" 1097 + checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa" 1098 + dependencies = [ 1099 + "libc", 1100 + ] 1101 + 1102 + [[package]] 1103 + name = "js-sys" 1104 + version = "0.3.58" 1105 + source = "registry+https://github.com/rust-lang/crates.io-index" 1106 + checksum = "c3fac17f7123a73ca62df411b1bf727ccc805daa070338fda671c86dac1bdc27" 1107 + dependencies = [ 1108 + "wasm-bindgen", 1109 + ] 1110 + 1111 + [[package]] 1112 + name = "jwalk" 1113 + version = "0.6.0" 1114 + source = "registry+https://github.com/rust-lang/crates.io-index" 1115 + checksum = "172752e853a067cbce46427de8470ddf308af7fd8ceaf9b682ef31a5021b6bb9" 1116 + dependencies = [ 1117 + "crossbeam", 1118 + "rayon", 1119 + ] 1120 + 1121 + [[package]] 1122 + name = "kernel32-sys" 1123 + version = "0.2.2" 1124 + source = "registry+https://github.com/rust-lang/crates.io-index" 1125 + checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" 1126 + dependencies = [ 1127 + "winapi 0.2.8", 1128 + "winapi-build", 1129 + ] 1130 + 1131 + [[package]] 1132 + name = "language-tags" 1133 + version = "0.3.2" 1134 + source = "registry+https://github.com/rust-lang/crates.io-index" 1135 + checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" 1136 + 1137 + [[package]] 1138 + name = "lazy_static" 1139 + version = "1.4.0" 1140 + source = "registry+https://github.com/rust-lang/crates.io-index" 1141 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1142 + 1143 + [[package]] 1144 + name = "lazycell" 1145 + version = "1.3.0" 1146 + source = "registry+https://github.com/rust-lang/crates.io-index" 1147 + checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 1148 + 1149 + [[package]] 1150 + name = "libc" 1151 + version = "0.2.126" 1152 + source = "registry+https://github.com/rust-lang/crates.io-index" 1153 + checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836" 1154 + 1155 + [[package]] 1156 + name = "local-channel" 1157 + version = "0.1.3" 1158 + source = "registry+https://github.com/rust-lang/crates.io-index" 1159 + checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c" 1160 + dependencies = [ 1161 + "futures-core", 1162 + "futures-sink", 1163 + "futures-util", 1164 + "local-waker", 1165 + ] 1166 + 1167 + [[package]] 1168 + name = "local-waker" 1169 + version = "0.1.3" 1170 + source = "registry+https://github.com/rust-lang/crates.io-index" 1171 + checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1" 1172 + 1173 + [[package]] 1174 + name = "lock_api" 1175 + version = "0.4.7" 1176 + source = "registry+https://github.com/rust-lang/crates.io-index" 1177 + checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53" 1178 + dependencies = [ 1179 + "autocfg", 1180 + "scopeguard", 1181 + ] 1182 + 1183 + [[package]] 1184 + name = "log" 1185 + version = "0.4.17" 1186 + source = "registry+https://github.com/rust-lang/crates.io-index" 1187 + checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1188 + dependencies = [ 1189 + "cfg-if 1.0.0", 1190 + ] 1191 + 1192 + [[package]] 1193 + name = "maplit" 1194 + version = "1.0.2" 1195 + source = "registry+https://github.com/rust-lang/crates.io-index" 1196 + checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" 1197 + 1198 + [[package]] 1199 + name = "matches" 1200 + version = "0.1.9" 1201 + source = "registry+https://github.com/rust-lang/crates.io-index" 1202 + checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 1203 + 1204 + [[package]] 1205 + name = "memchr" 1206 + version = "2.5.0" 1207 + source = "registry+https://github.com/rust-lang/crates.io-index" 1208 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1209 + 1210 + [[package]] 1211 + name = "memoffset" 1212 + version = "0.6.5" 1213 + source = "registry+https://github.com/rust-lang/crates.io-index" 1214 + checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1215 + dependencies = [ 1216 + "autocfg", 1217 + ] 1218 + 1219 + [[package]] 1220 + name = "mime" 1221 + version = "0.3.16" 1222 + source = "registry+https://github.com/rust-lang/crates.io-index" 1223 + checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 1224 + 1225 + [[package]] 1226 + name = "mime_guess" 1227 + version = "2.0.4" 1228 + source = "registry+https://github.com/rust-lang/crates.io-index" 1229 + checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 1230 + dependencies = [ 1231 + "mime", 1232 + "unicase", 1233 + ] 1234 + 1235 + [[package]] 1236 + name = "minify-html-onepass" 1237 + version = "0.8.1" 1238 + source = "registry+https://github.com/rust-lang/crates.io-index" 1239 + checksum = "bd67af681d200d6cb524fbd4bda8276878d52c91508fc1954a29a9f12ffe6da3" 1240 + dependencies = [ 1241 + "aho-corasick", 1242 + "lazy_static", 1243 + "memchr", 1244 + ] 1245 + 1246 + [[package]] 1247 + name = "miniz_oxide" 1248 + version = "0.5.3" 1249 + source = "registry+https://github.com/rust-lang/crates.io-index" 1250 + checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc" 1251 + dependencies = [ 1252 + "adler", 1253 + ] 1254 + 1255 + [[package]] 1256 + name = "mio" 1257 + version = "0.6.23" 1258 + source = "registry+https://github.com/rust-lang/crates.io-index" 1259 + checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4" 1260 + dependencies = [ 1261 + "cfg-if 0.1.10", 1262 + "fuchsia-zircon", 1263 + "fuchsia-zircon-sys", 1264 + "iovec", 1265 + "kernel32-sys", 1266 + "libc", 1267 + "log", 1268 + "miow", 1269 + "net2", 1270 + "slab", 1271 + "winapi 0.2.8", 1272 + ] 1273 + 1274 + [[package]] 1275 + name = "mio" 1276 + version = "0.8.4" 1277 + source = "registry+https://github.com/rust-lang/crates.io-index" 1278 + checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf" 1279 + dependencies = [ 1280 + "libc", 1281 + "log", 1282 + "wasi", 1283 + "windows-sys", 1284 + ] 1285 + 1286 + [[package]] 1287 + name = "mio-extras" 1288 + version = "2.0.6" 1289 + source = "registry+https://github.com/rust-lang/crates.io-index" 1290 + checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19" 1291 + dependencies = [ 1292 + "lazycell", 1293 + "log", 1294 + "mio 0.6.23", 1295 + "slab", 1296 + ] 1297 + 1298 + [[package]] 1299 + name = "miow" 1300 + version = "0.2.2" 1301 + source = "registry+https://github.com/rust-lang/crates.io-index" 1302 + checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d" 1303 + dependencies = [ 1304 + "kernel32-sys", 1305 + "net2", 1306 + "winapi 0.2.8", 1307 + "ws2_32-sys", 1308 + ] 1309 + 1310 + [[package]] 1311 + name = "net2" 1312 + version = "0.2.37" 1313 + source = "registry+https://github.com/rust-lang/crates.io-index" 1314 + checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae" 1315 + dependencies = [ 1316 + "cfg-if 0.1.10", 1317 + "libc", 1318 + "winapi 0.3.9", 1319 + ] 1320 + 1321 + [[package]] 1322 + name = "new_mime_guess" 1323 + version = "4.0.1" 1324 + source = "registry+https://github.com/rust-lang/crates.io-index" 1325 + checksum = "c2d684d1b59e0dc07b37e2203ef576987473288f530082512aff850585c61b1f" 1326 + dependencies = [ 1327 + "mime", 1328 + "unicase", 1329 + ] 1330 + 1331 + [[package]] 1332 + name = "notify" 1333 + version = "4.0.17" 1334 + source = "registry+https://github.com/rust-lang/crates.io-index" 1335 + checksum = "ae03c8c853dba7bfd23e571ff0cff7bc9dceb40a4cd684cd1681824183f45257" 1336 + dependencies = [ 1337 + "bitflags", 1338 + "filetime", 1339 + "fsevent", 1340 + "fsevent-sys", 1341 + "inotify", 1342 + "libc", 1343 + "mio 0.6.23", 1344 + "mio-extras", 1345 + "walkdir", 1346 + "winapi 0.3.9", 1347 + ] 1348 + 1349 + [[package]] 1350 + name = "num_cpus" 1351 + version = "1.13.1" 1352 + source = "registry+https://github.com/rust-lang/crates.io-index" 1353 + checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 1354 + dependencies = [ 1355 + "hermit-abi", 1356 + "libc", 1357 + ] 1358 + 1359 + [[package]] 1360 + name = "num_threads" 1361 + version = "0.1.6" 1362 + source = "registry+https://github.com/rust-lang/crates.io-index" 1363 + checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 1364 + dependencies = [ 1365 + "libc", 1366 + ] 1367 + 1368 + [[package]] 1369 + name = "once_cell" 1370 + version = "1.12.0" 1371 + source = "registry+https://github.com/rust-lang/crates.io-index" 1372 + checksum = "7709cef83f0c1f58f666e746a08b21e0085f7440fa6a29cc194d68aac97a4225" 1373 + dependencies = [ 1374 + "parking_lot_core", 1375 + ] 1376 + 1377 + [[package]] 1378 + name = "opaque-debug" 1379 + version = "0.2.3" 1380 + source = "registry+https://github.com/rust-lang/crates.io-index" 1381 + checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" 1382 + 1383 + [[package]] 1384 + name = "os_str_bytes" 1385 + version = "6.1.0" 1386 + source = "registry+https://github.com/rust-lang/crates.io-index" 1387 + checksum = "21326818e99cfe6ce1e524c2a805c189a99b5ae555a35d19f9a284b427d86afa" 1388 + 1389 + [[package]] 1390 + name = "parking_lot" 1391 + version = "0.12.1" 1392 + source = "registry+https://github.com/rust-lang/crates.io-index" 1393 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1394 + dependencies = [ 1395 + "lock_api", 1396 + "parking_lot_core", 1397 + ] 1398 + 1399 + [[package]] 1400 + name = "parking_lot_core" 1401 + version = "0.9.3" 1402 + source = "registry+https://github.com/rust-lang/crates.io-index" 1403 + checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929" 1404 + dependencies = [ 1405 + "cfg-if 1.0.0", 1406 + "libc", 1407 + "redox_syscall", 1408 + "smallvec", 1409 + "windows-sys", 1410 + ] 1411 + 1412 + [[package]] 1413 + name = "paste" 1414 + version = "1.0.7" 1415 + source = "registry+https://github.com/rust-lang/crates.io-index" 1416 + checksum = "0c520e05135d6e763148b6426a837e239041653ba7becd2e538c076c738025fc" 1417 + 1418 + [[package]] 1419 + name = "percent-encoding" 1420 + version = "2.1.0" 1421 + source = "registry+https://github.com/rust-lang/crates.io-index" 1422 + checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 1423 + 1424 + [[package]] 1425 + name = "pest" 1426 + version = "2.1.3" 1427 + source = "registry+https://github.com/rust-lang/crates.io-index" 1428 + checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53" 1429 + dependencies = [ 1430 + "ucd-trie", 1431 + ] 1432 + 1433 + [[package]] 1434 + name = "pest_derive" 1435 + version = "2.1.0" 1436 + source = "registry+https://github.com/rust-lang/crates.io-index" 1437 + checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0" 1438 + dependencies = [ 1439 + "pest", 1440 + "pest_generator", 1441 + ] 1442 + 1443 + [[package]] 1444 + name = "pest_generator" 1445 + version = "2.1.3" 1446 + source = "registry+https://github.com/rust-lang/crates.io-index" 1447 + checksum = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55" 1448 + dependencies = [ 1449 + "pest", 1450 + "pest_meta", 1451 + "proc-macro2", 1452 + "quote", 1453 + "syn", 1454 + ] 1455 + 1456 + [[package]] 1457 + name = "pest_meta" 1458 + version = "2.1.3" 1459 + source = "registry+https://github.com/rust-lang/crates.io-index" 1460 + checksum = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d" 1461 + dependencies = [ 1462 + "maplit", 1463 + "pest", 1464 + "sha-1", 1465 + ] 1466 + 1467 + [[package]] 1468 + name = "pin-project-lite" 1469 + version = "0.2.9" 1470 + source = "registry+https://github.com/rust-lang/crates.io-index" 1471 + checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1472 + 1473 + [[package]] 1474 + name = "pin-utils" 1475 + version = "0.1.0" 1476 + source = "registry+https://github.com/rust-lang/crates.io-index" 1477 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1478 + 1479 + [[package]] 1480 + name = "ppv-lite86" 1481 + version = "0.2.16" 1482 + source = "registry+https://github.com/rust-lang/crates.io-index" 1483 + checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 1484 + 1485 + [[package]] 1486 + name = "proc-macro2" 1487 + version = "1.0.40" 1488 + source = "registry+https://github.com/rust-lang/crates.io-index" 1489 + checksum = "dd96a1e8ed2596c337f8eae5f24924ec83f5ad5ab21ea8e455d3566c69fbcaf7" 1490 + dependencies = [ 1491 + "unicode-ident", 1492 + ] 1493 + 1494 + [[package]] 1495 + name = "quote" 1496 + version = "1.0.20" 1497 + source = "registry+https://github.com/rust-lang/crates.io-index" 1498 + checksum = "3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804" 1499 + dependencies = [ 1500 + "proc-macro2", 1501 + ] 1502 + 1503 + [[package]] 1504 + name = "rand" 1505 + version = "0.8.5" 1506 + source = "registry+https://github.com/rust-lang/crates.io-index" 1507 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1508 + dependencies = [ 1509 + "libc", 1510 + "rand_chacha", 1511 + "rand_core", 1512 + ] 1513 + 1514 + [[package]] 1515 + name = "rand_chacha" 1516 + version = "0.3.1" 1517 + source = "registry+https://github.com/rust-lang/crates.io-index" 1518 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1519 + dependencies = [ 1520 + "ppv-lite86", 1521 + "rand_core", 1522 + ] 1523 + 1524 + [[package]] 1525 + name = "rand_core" 1526 + version = "0.6.3" 1527 + source = "registry+https://github.com/rust-lang/crates.io-index" 1528 + checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 1529 + dependencies = [ 1530 + "getrandom", 1531 + ] 1532 + 1533 + [[package]] 1534 + name = "rayon" 1535 + version = "1.5.3" 1536 + source = "registry+https://github.com/rust-lang/crates.io-index" 1537 + checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d" 1538 + dependencies = [ 1539 + "autocfg", 1540 + "crossbeam-deque", 1541 + "either", 1542 + "rayon-core", 1543 + ] 1544 + 1545 + [[package]] 1546 + name = "rayon-core" 1547 + version = "1.9.3" 1548 + source = "registry+https://github.com/rust-lang/crates.io-index" 1549 + checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f" 1550 + dependencies = [ 1551 + "crossbeam-channel", 1552 + "crossbeam-deque", 1553 + "crossbeam-utils", 1554 + "num_cpus", 1555 + ] 1556 + 1557 + [[package]] 1558 + name = "redox_syscall" 1559 + version = "0.2.13" 1560 + source = "registry+https://github.com/rust-lang/crates.io-index" 1561 + checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42" 1562 + dependencies = [ 1563 + "bitflags", 1564 + ] 1565 + 1566 + [[package]] 1567 + name = "regex" 1568 + version = "1.5.6" 1569 + source = "registry+https://github.com/rust-lang/crates.io-index" 1570 + checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1" 1571 + dependencies = [ 1572 + "aho-corasick", 1573 + "memchr", 1574 + "regex-syntax", 1575 + ] 1576 + 1577 + [[package]] 1578 + name = "regex-automata" 1579 + version = "0.1.10" 1580 + source = "registry+https://github.com/rust-lang/crates.io-index" 1581 + checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 1582 + 1583 + [[package]] 1584 + name = "regex-syntax" 1585 + version = "0.6.26" 1586 + source = "registry+https://github.com/rust-lang/crates.io-index" 1587 + checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64" 1588 + 1589 + [[package]] 1590 + name = "ring" 1591 + version = "0.16.20" 1592 + source = "registry+https://github.com/rust-lang/crates.io-index" 1593 + checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 1594 + dependencies = [ 1595 + "cc", 1596 + "libc", 1597 + "once_cell", 1598 + "spin", 1599 + "untrusted", 1600 + "web-sys", 1601 + "winapi 0.3.9", 1602 + ] 1603 + 1604 + [[package]] 1605 + name = "rustc_version" 1606 + version = "0.4.0" 1607 + source = "registry+https://github.com/rust-lang/crates.io-index" 1608 + checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 1609 + dependencies = [ 1610 + "semver", 1611 + ] 1612 + 1613 + [[package]] 1614 + name = "rustls" 1615 + version = "0.20.6" 1616 + source = "registry+https://github.com/rust-lang/crates.io-index" 1617 + checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033" 1618 + dependencies = [ 1619 + "log", 1620 + "ring", 1621 + "sct", 1622 + "webpki", 1623 + ] 1624 + 1625 + [[package]] 1626 + name = "rustls-pemfile" 1627 + version = "1.0.0" 1628 + source = "registry+https://github.com/rust-lang/crates.io-index" 1629 + checksum = "e7522c9de787ff061458fe9a829dc790a3f5b22dc571694fc5883f448b94d9a9" 1630 + dependencies = [ 1631 + "base64", 1632 + ] 1633 + 1634 + [[package]] 1635 + name = "rustversion" 1636 + version = "1.0.7" 1637 + source = "registry+https://github.com/rust-lang/crates.io-index" 1638 + checksum = "a0a5f7c728f5d284929a1cccb5bc19884422bfe6ef4d6c409da2c41838983fcf" 1639 + 1640 + [[package]] 1641 + name = "ryu" 1642 + version = "1.0.10" 1643 + source = "registry+https://github.com/rust-lang/crates.io-index" 1644 + checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695" 1645 + 1646 + [[package]] 1647 + name = "same-file" 1648 + version = "1.0.6" 1649 + source = "registry+https://github.com/rust-lang/crates.io-index" 1650 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1651 + dependencies = [ 1652 + "winapi-util", 1653 + ] 1654 + 1655 + [[package]] 1656 + name = "scopeguard" 1657 + version = "1.1.0" 1658 + source = "registry+https://github.com/rust-lang/crates.io-index" 1659 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1660 + 1661 + [[package]] 1662 + name = "sct" 1663 + version = "0.7.0" 1664 + source = "registry+https://github.com/rust-lang/crates.io-index" 1665 + checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 1666 + dependencies = [ 1667 + "ring", 1668 + "untrusted", 1669 + ] 1670 + 1671 + [[package]] 1672 + name = "semver" 1673 + version = "1.0.10" 1674 + source = "registry+https://github.com/rust-lang/crates.io-index" 1675 + checksum = "a41d061efea015927ac527063765e73601444cdc344ba855bc7bd44578b25e1c" 1676 + 1677 + [[package]] 1678 + name = "serde" 1679 + version = "1.0.137" 1680 + source = "registry+https://github.com/rust-lang/crates.io-index" 1681 + checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1" 1682 + dependencies = [ 1683 + "serde_derive", 1684 + ] 1685 + 1686 + [[package]] 1687 + name = "serde_derive" 1688 + version = "1.0.137" 1689 + source = "registry+https://github.com/rust-lang/crates.io-index" 1690 + checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be" 1691 + dependencies = [ 1692 + "proc-macro2", 1693 + "quote", 1694 + "syn", 1695 + ] 1696 + 1697 + [[package]] 1698 + name = "serde_html_form" 1699 + version = "0.1.0" 1700 + source = "registry+https://github.com/rust-lang/crates.io-index" 1701 + checksum = "3312ac3bf56e70cb7082a85db89d127940607b6acf39bd537cc06c8212124927" 1702 + dependencies = [ 1703 + "form_urlencoded", 1704 + "indexmap", 1705 + "itoa 1.0.2", 1706 + "ryu", 1707 + "serde", 1708 + ] 1709 + 1710 + [[package]] 1711 + name = "serde_json" 1712 + version = "1.0.81" 1713 + source = "registry+https://github.com/rust-lang/crates.io-index" 1714 + checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c" 1715 + dependencies = [ 1716 + "itoa 1.0.2", 1717 + "ryu", 1718 + "serde", 1719 + ] 1720 + 1721 + [[package]] 1722 + name = "serde_urlencoded" 1723 + version = "0.7.1" 1724 + source = "registry+https://github.com/rust-lang/crates.io-index" 1725 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1726 + dependencies = [ 1727 + "form_urlencoded", 1728 + "itoa 1.0.2", 1729 + "ryu", 1730 + "serde", 1731 + ] 1732 + 1733 + [[package]] 1734 + name = "sha-1" 1735 + version = "0.8.2" 1736 + source = "registry+https://github.com/rust-lang/crates.io-index" 1737 + checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df" 1738 + dependencies = [ 1739 + "block-buffer 0.7.3", 1740 + "digest 0.8.1", 1741 + "fake-simd", 1742 + "opaque-debug", 1743 + ] 1744 + 1745 + [[package]] 1746 + name = "sha1" 1747 + version = "0.10.1" 1748 + source = "registry+https://github.com/rust-lang/crates.io-index" 1749 + checksum = "c77f4e7f65455545c2153c1253d25056825e77ee2533f0e41deb65a93a34852f" 1750 + dependencies = [ 1751 + "cfg-if 1.0.0", 1752 + "cpufeatures", 1753 + "digest 0.10.3", 1754 + ] 1755 + 1756 + [[package]] 1757 + name = "signal-hook-registry" 1758 + version = "1.4.0" 1759 + source = "registry+https://github.com/rust-lang/crates.io-index" 1760 + checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" 1761 + dependencies = [ 1762 + "libc", 1763 + ] 1764 + 1765 + [[package]] 1766 + name = "slab" 1767 + version = "0.4.6" 1768 + source = "registry+https://github.com/rust-lang/crates.io-index" 1769 + checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32" 1770 + 1771 + [[package]] 1772 + name = "smallvec" 1773 + version = "1.8.1" 1774 + source = "registry+https://github.com/rust-lang/crates.io-index" 1775 + checksum = "cc88c725d61fc6c3132893370cac4a0200e3fedf5da8331c570664b1987f5ca2" 1776 + 1777 + [[package]] 1778 + name = "socket2" 1779 + version = "0.4.4" 1780 + source = "registry+https://github.com/rust-lang/crates.io-index" 1781 + checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0" 1782 + dependencies = [ 1783 + "libc", 1784 + "winapi 0.3.9", 1785 + ] 1786 + 1787 + [[package]] 1788 + name = "spin" 1789 + version = "0.5.2" 1790 + source = "registry+https://github.com/rust-lang/crates.io-index" 1791 + checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 1792 + 1793 + [[package]] 1794 + name = "str-buf" 1795 + version = "2.0.5" 1796 + source = "registry+https://github.com/rust-lang/crates.io-index" 1797 + checksum = "0873cb29201126440dcc78d0b1f5a13d917e78831778429a7920ca9c7f3dae1e" 1798 + 1799 + [[package]] 1800 + name = "strsim" 1801 + version = "0.10.0" 1802 + source = "registry+https://github.com/rust-lang/crates.io-index" 1803 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 1804 + 1805 + [[package]] 1806 + name = "subtle" 1807 + version = "2.4.1" 1808 + source = "registry+https://github.com/rust-lang/crates.io-index" 1809 + checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 1810 + 1811 + [[package]] 1812 + name = "syn" 1813 + version = "1.0.98" 1814 + source = "registry+https://github.com/rust-lang/crates.io-index" 1815 + checksum = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd" 1816 + dependencies = [ 1817 + "proc-macro2", 1818 + "quote", 1819 + "unicode-ident", 1820 + ] 1821 + 1822 + [[package]] 1823 + name = "termcolor" 1824 + version = "1.1.3" 1825 + source = "registry+https://github.com/rust-lang/crates.io-index" 1826 + checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 1827 + dependencies = [ 1828 + "winapi-util", 1829 + ] 1830 + 1831 + [[package]] 1832 + name = "textwrap" 1833 + version = "0.15.0" 1834 + source = "registry+https://github.com/rust-lang/crates.io-index" 1835 + checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" 1836 + 1837 + [[package]] 1838 + name = "thiserror" 1839 + version = "1.0.31" 1840 + source = "registry+https://github.com/rust-lang/crates.io-index" 1841 + checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a" 1842 + dependencies = [ 1843 + "thiserror-impl", 1844 + ] 1845 + 1846 + [[package]] 1847 + name = "thiserror-impl" 1848 + version = "1.0.31" 1849 + source = "registry+https://github.com/rust-lang/crates.io-index" 1850 + checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a" 1851 + dependencies = [ 1852 + "proc-macro2", 1853 + "quote", 1854 + "syn", 1855 + ] 1856 + 1857 + [[package]] 1858 + name = "time" 1859 + version = "0.3.11" 1860 + source = "registry+https://github.com/rust-lang/crates.io-index" 1861 + checksum = "72c91f41dcb2f096c05f0873d667dceec1087ce5bcf984ec8ffb19acddbb3217" 1862 + dependencies = [ 1863 + "itoa 1.0.2", 1864 + "libc", 1865 + "num_threads", 1866 + "time-macros", 1867 + ] 1868 + 1869 + [[package]] 1870 + name = "time-macros" 1871 + version = "0.2.4" 1872 + source = "registry+https://github.com/rust-lang/crates.io-index" 1873 + checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792" 1874 + 1875 + [[package]] 1876 + name = "tinyvec" 1877 + version = "1.6.0" 1878 + source = "registry+https://github.com/rust-lang/crates.io-index" 1879 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 1880 + dependencies = [ 1881 + "tinyvec_macros", 1882 + ] 1883 + 1884 + [[package]] 1885 + name = "tinyvec_macros" 1886 + version = "0.1.0" 1887 + source = "registry+https://github.com/rust-lang/crates.io-index" 1888 + checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 1889 + 1890 + [[package]] 1891 + name = "tokio" 1892 + version = "1.19.2" 1893 + source = "registry+https://github.com/rust-lang/crates.io-index" 1894 + checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439" 1895 + dependencies = [ 1896 + "bytes", 1897 + "libc", 1898 + "memchr", 1899 + "mio 0.8.4", 1900 + "once_cell", 1901 + "parking_lot", 1902 + "pin-project-lite", 1903 + "signal-hook-registry", 1904 + "socket2", 1905 + "tokio-macros", 1906 + "winapi 0.3.9", 1907 + ] 1908 + 1909 + [[package]] 1910 + name = "tokio-macros" 1911 + version = "1.8.0" 1912 + source = "registry+https://github.com/rust-lang/crates.io-index" 1913 + checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484" 1914 + dependencies = [ 1915 + "proc-macro2", 1916 + "quote", 1917 + "syn", 1918 + ] 1919 + 1920 + [[package]] 1921 + name = "tokio-rustls" 1922 + version = "0.23.4" 1923 + source = "registry+https://github.com/rust-lang/crates.io-index" 1924 + checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 1925 + dependencies = [ 1926 + "rustls", 1927 + "tokio", 1928 + "webpki", 1929 + ] 1930 + 1931 + [[package]] 1932 + name = "tokio-util" 1933 + version = "0.7.3" 1934 + source = "registry+https://github.com/rust-lang/crates.io-index" 1935 + checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45" 1936 + dependencies = [ 1937 + "bytes", 1938 + "futures-core", 1939 + "futures-sink", 1940 + "pin-project-lite", 1941 + "tokio", 1942 + "tracing", 1943 + ] 1944 + 1945 + [[package]] 1946 + name = "tracing" 1947 + version = "0.1.35" 1948 + source = "registry+https://github.com/rust-lang/crates.io-index" 1949 + checksum = "a400e31aa60b9d44a52a8ee0343b5b18566b03a8321e0d321f695cf56e940160" 1950 + dependencies = [ 1951 + "cfg-if 1.0.0", 1952 + "log", 1953 + "pin-project-lite", 1954 + "tracing-attributes", 1955 + "tracing-core", 1956 + ] 1957 + 1958 + [[package]] 1959 + name = "tracing-attributes" 1960 + version = "0.1.21" 1961 + source = "registry+https://github.com/rust-lang/crates.io-index" 1962 + checksum = "cc6b8ad3567499f98a1db7a752b07a7c8c7c7c34c332ec00effb2b0027974b7c" 1963 + dependencies = [ 1964 + "proc-macro2", 1965 + "quote", 1966 + "syn", 1967 + ] 1968 + 1969 + [[package]] 1970 + name = "tracing-core" 1971 + version = "0.1.28" 1972 + source = "registry+https://github.com/rust-lang/crates.io-index" 1973 + checksum = "7b7358be39f2f274f322d2aaed611acc57f382e8eb1e5b48cb9ae30933495ce7" 1974 + dependencies = [ 1975 + "once_cell", 1976 + ] 1977 + 1978 + [[package]] 1979 + name = "typenum" 1980 + version = "1.15.0" 1981 + source = "registry+https://github.com/rust-lang/crates.io-index" 1982 + checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 1983 + 1984 + [[package]] 1985 + name = "ucd-trie" 1986 + version = "0.1.3" 1987 + source = "registry+https://github.com/rust-lang/crates.io-index" 1988 + checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c" 1989 + 1990 + [[package]] 1991 + name = "unicase" 1992 + version = "2.6.0" 1993 + source = "registry+https://github.com/rust-lang/crates.io-index" 1994 + checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 1995 + dependencies = [ 1996 + "version_check", 1997 + ] 1998 + 1999 + [[package]] 2000 + name = "unicode-bidi" 2001 + version = "0.3.8" 2002 + source = "registry+https://github.com/rust-lang/crates.io-index" 2003 + checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 2004 + 2005 + [[package]] 2006 + name = "unicode-ident" 2007 + version = "1.0.1" 2008 + source = "registry+https://github.com/rust-lang/crates.io-index" 2009 + checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c" 2010 + 2011 + [[package]] 2012 + name = "unicode-normalization" 2013 + version = "0.1.20" 2014 + source = "registry+https://github.com/rust-lang/crates.io-index" 2015 + checksum = "81dee68f85cab8cf68dec42158baf3a79a1cdc065a8b103025965d6ccb7f6cbd" 2016 + dependencies = [ 2017 + "tinyvec", 2018 + ] 2019 + 2020 + [[package]] 2021 + name = "untrusted" 2022 + version = "0.7.1" 2023 + source = "registry+https://github.com/rust-lang/crates.io-index" 2024 + checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 2025 + 2026 + [[package]] 2027 + name = "url" 2028 + version = "2.2.2" 2029 + source = "registry+https://github.com/rust-lang/crates.io-index" 2030 + checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" 2031 + dependencies = [ 2032 + "form_urlencoded", 2033 + "idna", 2034 + "matches", 2035 + "percent-encoding", 2036 + ] 2037 + 2038 + [[package]] 2039 + name = "version_check" 2040 + version = "0.9.4" 2041 + source = "registry+https://github.com/rust-lang/crates.io-index" 2042 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2043 + 2044 + [[package]] 2045 + name = "walkdir" 2046 + version = "2.3.2" 2047 + source = "registry+https://github.com/rust-lang/crates.io-index" 2048 + checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 2049 + dependencies = [ 2050 + "same-file", 2051 + "winapi 0.3.9", 2052 + "winapi-util", 2053 + ] 2054 + 2055 + [[package]] 2056 + name = "wasi" 2057 + version = "0.11.0+wasi-snapshot-preview1" 2058 + source = "registry+https://github.com/rust-lang/crates.io-index" 2059 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2060 + 2061 + [[package]] 2062 + name = "wasm-bindgen" 2063 + version = "0.2.81" 2064 + source = "registry+https://github.com/rust-lang/crates.io-index" 2065 + checksum = "7c53b543413a17a202f4be280a7e5c62a1c69345f5de525ee64f8cfdbc954994" 2066 + dependencies = [ 2067 + "cfg-if 1.0.0", 2068 + "wasm-bindgen-macro", 2069 + ] 2070 + 2071 + [[package]] 2072 + name = "wasm-bindgen-backend" 2073 + version = "0.2.81" 2074 + source = "registry+https://github.com/rust-lang/crates.io-index" 2075 + checksum = "5491a68ab4500fa6b4d726bd67408630c3dbe9c4fe7bda16d5c82a1fd8c7340a" 2076 + dependencies = [ 2077 + "bumpalo", 2078 + "lazy_static", 2079 + "log", 2080 + "proc-macro2", 2081 + "quote", 2082 + "syn", 2083 + "wasm-bindgen-shared", 2084 + ] 2085 + 2086 + [[package]] 2087 + name = "wasm-bindgen-macro" 2088 + version = "0.2.81" 2089 + source = "registry+https://github.com/rust-lang/crates.io-index" 2090 + checksum = "c441e177922bc58f1e12c022624b6216378e5febc2f0533e41ba443d505b80aa" 2091 + dependencies = [ 2092 + "quote", 2093 + "wasm-bindgen-macro-support", 2094 + ] 2095 + 2096 + [[package]] 2097 + name = "wasm-bindgen-macro-support" 2098 + version = "0.2.81" 2099 + source = "registry+https://github.com/rust-lang/crates.io-index" 2100 + checksum = "7d94ac45fcf608c1f45ef53e748d35660f168490c10b23704c7779ab8f5c3048" 2101 + dependencies = [ 2102 + "proc-macro2", 2103 + "quote", 2104 + "syn", 2105 + "wasm-bindgen-backend", 2106 + "wasm-bindgen-shared", 2107 + ] 2108 + 2109 + [[package]] 2110 + name = "wasm-bindgen-shared" 2111 + version = "0.2.81" 2112 + source = "registry+https://github.com/rust-lang/crates.io-index" 2113 + checksum = "6a89911bd99e5f3659ec4acf9c4d93b0a90fe4a2a11f15328472058edc5261be" 2114 + 2115 + [[package]] 2116 + name = "web-sys" 2117 + version = "0.3.58" 2118 + source = "registry+https://github.com/rust-lang/crates.io-index" 2119 + checksum = "2fed94beee57daf8dd7d51f2b15dc2bcde92d7a72304cdf662a4371008b71b90" 2120 + dependencies = [ 2121 + "js-sys", 2122 + "wasm-bindgen", 2123 + ] 2124 + 2125 + [[package]] 2126 + name = "webpki" 2127 + version = "0.22.0" 2128 + source = "registry+https://github.com/rust-lang/crates.io-index" 2129 + checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 2130 + dependencies = [ 2131 + "ring", 2132 + "untrusted", 2133 + ] 2134 + 2135 + [[package]] 2136 + name = "webpki-roots" 2137 + version = "0.22.3" 2138 + source = "registry+https://github.com/rust-lang/crates.io-index" 2139 + checksum = "44d8de8415c823c8abd270ad483c6feeac771fad964890779f9a8cb24fbbc1bf" 2140 + dependencies = [ 2141 + "webpki", 2142 + ] 2143 + 2144 + [[package]] 2145 + name = "winapi" 2146 + version = "0.2.8" 2147 + source = "registry+https://github.com/rust-lang/crates.io-index" 2148 + checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" 2149 + 2150 + [[package]] 2151 + name = "winapi" 2152 + version = "0.3.9" 2153 + source = "registry+https://github.com/rust-lang/crates.io-index" 2154 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2155 + dependencies = [ 2156 + "winapi-i686-pc-windows-gnu", 2157 + "winapi-x86_64-pc-windows-gnu", 2158 + ] 2159 + 2160 + [[package]] 2161 + name = "winapi-build" 2162 + version = "0.1.1" 2163 + source = "registry+https://github.com/rust-lang/crates.io-index" 2164 + checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" 2165 + 2166 + [[package]] 2167 + name = "winapi-i686-pc-windows-gnu" 2168 + version = "0.4.0" 2169 + source = "registry+https://github.com/rust-lang/crates.io-index" 2170 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2171 + 2172 + [[package]] 2173 + name = "winapi-util" 2174 + version = "0.1.5" 2175 + source = "registry+https://github.com/rust-lang/crates.io-index" 2176 + checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 2177 + dependencies = [ 2178 + "winapi 0.3.9", 2179 + ] 2180 + 2181 + [[package]] 2182 + name = "winapi-x86_64-pc-windows-gnu" 2183 + version = "0.4.0" 2184 + source = "registry+https://github.com/rust-lang/crates.io-index" 2185 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2186 + 2187 + [[package]] 2188 + name = "windows-sys" 2189 + version = "0.36.1" 2190 + source = "registry+https://github.com/rust-lang/crates.io-index" 2191 + checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 2192 + dependencies = [ 2193 + "windows_aarch64_msvc", 2194 + "windows_i686_gnu", 2195 + "windows_i686_msvc", 2196 + "windows_x86_64_gnu", 2197 + "windows_x86_64_msvc", 2198 + ] 2199 + 2200 + [[package]] 2201 + name = "windows_aarch64_msvc" 2202 + version = "0.36.1" 2203 + source = "registry+https://github.com/rust-lang/crates.io-index" 2204 + checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 2205 + 2206 + [[package]] 2207 + name = "windows_i686_gnu" 2208 + version = "0.36.1" 2209 + source = "registry+https://github.com/rust-lang/crates.io-index" 2210 + checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 2211 + 2212 + [[package]] 2213 + name = "windows_i686_msvc" 2214 + version = "0.36.1" 2215 + source = "registry+https://github.com/rust-lang/crates.io-index" 2216 + checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 2217 + 2218 + [[package]] 2219 + name = "windows_x86_64_gnu" 2220 + version = "0.36.1" 2221 + source = "registry+https://github.com/rust-lang/crates.io-index" 2222 + checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 2223 + 2224 + [[package]] 2225 + name = "windows_x86_64_msvc" 2226 + version = "0.36.1" 2227 + source = "registry+https://github.com/rust-lang/crates.io-index" 2228 + checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 2229 + 2230 + [[package]] 2231 + name = "ws2_32-sys" 2232 + version = "0.2.1" 2233 + source = "registry+https://github.com/rust-lang/crates.io-index" 2234 + checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" 2235 + dependencies = [ 2236 + "winapi 0.2.8", 2237 + "winapi-build", 2238 + ] 2239 + 2240 + [[package]] 2241 + name = "xxhash-rust" 2242 + version = "0.8.5" 2243 + source = "registry+https://github.com/rust-lang/crates.io-index" 2244 + checksum = "074914ea4eec286eb8d1fd745768504f420a1f7b7919185682a4a267bed7d2e7" 2245 + 2246 + [[package]] 2247 + name = "zstd" 2248 + version = "0.11.2+zstd.1.5.2" 2249 + source = "registry+https://github.com/rust-lang/crates.io-index" 2250 + checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" 2251 + dependencies = [ 2252 + "zstd-safe", 2253 + ] 2254 + 2255 + [[package]] 2256 + name = "zstd-safe" 2257 + version = "5.0.2+zstd.1.5.2" 2258 + source = "registry+https://github.com/rust-lang/crates.io-index" 2259 + checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" 2260 + dependencies = [ 2261 + "libc", 2262 + "zstd-sys", 2263 + ] 2264 + 2265 + [[package]] 2266 + name = "zstd-sys" 2267 + version = "2.0.1+zstd.1.5.2" 2268 + source = "registry+https://github.com/rust-lang/crates.io-index" 2269 + checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b" 2270 + dependencies = [ 2271 + "cc", 2272 + "libc", 2273 + ]
+37
pkgs/servers/binserve/default.nix
···
··· 1 + { lib, stdenv, fetchFromGitHub, rustPlatform, CoreServices }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "binserve"; 5 + version = "0.2.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "mufeedvh"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-Chm2xPB0BrLXSZslg9wnbDyHSJRQAvOtpH0Rw6w1q1s="; 12 + }; 13 + 14 + buildInputs = lib.optionals stdenv.isDarwin [ 15 + CoreServices 16 + ]; 17 + 18 + cargoLock.lockFile = ./Cargo.lock; 19 + postPatch = '' 20 + cp ${./Cargo.lock} Cargo.lock 21 + ''; 22 + 23 + doCheck = false; 24 + 25 + meta = with lib; { 26 + description = "A fast production-ready static web server"; 27 + homepage = "https://github.com/mufeedvh/binserve"; 28 + longDescription = '' 29 + A fast production-ready static web server with TLS 30 + (HTTPS), routing, hot reloading, caching, templating, and security in a 31 + single-binary you can set up with zero code 32 + ''; 33 + license = licenses.mit; 34 + maintainers = with maintainers; [ snapdgn ]; 35 + platforms = platforms.unix; 36 + }; 37 + }
+8 -8
pkgs/servers/traefik/default.nix
··· 1 - { lib, fetchFromGitHub, buildGoModule, nixosTests }: 2 3 buildGoModule rec { 4 pname = "traefik"; 5 - version = "2.7.1"; 6 7 - src = fetchFromGitHub { 8 - owner = "traefik"; 9 - repo = "traefik"; 10 - rev = "v${version}"; 11 - sha256 = "sha256-uTE0Z7lgxKNq1wQSMUSp9dMfxV+aIm7cwYSkZBUdnug="; 12 }; 13 14 - vendorSha256 = "sha256-WlLntYrXs1kOu26yNeZI1xpb6FsHPiA/bNzaxCZTG4Y="; 15 16 subPackages = [ "cmd/traefik" ]; 17
··· 1 + { lib, fetchzip, buildGoModule, nixosTests }: 2 3 buildGoModule rec { 4 pname = "traefik"; 5 + version = "2.7.2"; 6 7 + # Archive with static assets for webui 8 + src = fetchzip { 9 + url = "https://github.com/traefik/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz"; 10 + sha256 = "sha256-AJbvK3hr+cNYcoN+3Zz5WruTvWfh1junEnhRzvXVN+U="; 11 + stripRoot = false; 12 }; 13 14 + vendorSha256 = "sha256-T36d8mjbThlH1mukcHgaYlhq/P46ShTHgM9zcH4L7dc="; 15 16 subPackages = [ "cmd/traefik" ]; 17
+34 -14
pkgs/tools/networking/dd-agent/datadog-agent.nix
··· 1 - { lib, buildGoModule, makeWrapper, fetchFromGitHub, pythonPackages, pkg-config, systemd, hostname, extraTags ? [] }: 2 3 let 4 # keep this in sync with github.com/DataDog/agent-payload dependency ··· 30 31 32 nativeBuildInputs = [ pkg-config makeWrapper ]; 33 - buildInputs = [ systemd ]; 34 PKG_CONFIG_PATH = "${python}/lib/pkgconfig"; 35 36 - preBuild = let 37 - ldFlags = lib.concatStringsSep " " [ 38 - "-X ${goPackagePath}/pkg/version.Commit=${src.rev}" 39 - "-X ${goPackagePath}/pkg/version.AgentVersion=${version}" 40 - "-X ${goPackagePath}/pkg/serializer.AgentPayloadVersion=${payloadVersion}" 41 - "-X ${goPackagePath}/pkg/collector/py.pythonHome=${python}" 42 - "-r ${python}/lib" 43 - ]; 44 - in '' 45 - buildFlagsArray=( "-tags" "ec2 systemd cpython process log secrets ${lib.concatStringsSep " " extraTags}" "-ldflags" "${ldFlags}") 46 # Keep directories to generate in sync with tasks/go.py 47 go generate ./pkg/status ./cmd/agent/gui 48 ''; ··· 66 cp -R $src/pkg/status/templates $out/share/datadog-agent 67 68 wrapProgram "$out/bin/agent" \ 69 - --set PYTHONPATH "$out/${python.sitePackages}" \ 70 --prefix LD_LIBRARY_PATH : ${lib.getLib systemd}/lib 71 ''; 72 ··· 77 ''; 78 homepage = "https://www.datadoghq.com"; 79 license = licenses.bsd3; 80 - maintainers = with maintainers; [ thoughtpolice domenkozar rvl ]; 81 }; 82 }
··· 1 + { lib 2 + , stdenv 3 + , buildGoModule 4 + , makeWrapper 5 + , fetchFromGitHub 6 + , pythonPackages 7 + , pkg-config 8 + , systemd 9 + , hostname 10 + , withSystemd ? stdenv.isLinux 11 + , extraTags ? [ ] 12 + }: 13 14 let 15 # keep this in sync with github.com/DataDog/agent-payload dependency ··· 41 42 43 nativeBuildInputs = [ pkg-config makeWrapper ]; 44 + buildInputs = lib.optionals withSystemd [ systemd ]; 45 PKG_CONFIG_PATH = "${python}/lib/pkgconfig"; 46 47 + tags = [ 48 + "ec2" 49 + "cpython" 50 + "process" 51 + "log" 52 + "secrets" 53 + ] 54 + ++ lib.optionals withSystemd [ "systemd" ] 55 + ++ extraTags; 56 + 57 + ldflags = [ 58 + "-X ${goPackagePath}/pkg/version.Commit=${src.rev}" 59 + "-X ${goPackagePath}/pkg/version.AgentVersion=${version}" 60 + "-X ${goPackagePath}/pkg/serializer.AgentPayloadVersion=${payloadVersion}" 61 + "-X ${goPackagePath}/pkg/collector/py.pythonHome=${python}" 62 + "-r ${python}/lib" 63 + ]; 64 + 65 + preBuild = '' 66 # Keep directories to generate in sync with tasks/go.py 67 go generate ./pkg/status ./cmd/agent/gui 68 ''; ··· 86 cp -R $src/pkg/status/templates $out/share/datadog-agent 87 88 wrapProgram "$out/bin/agent" \ 89 + --set PYTHONPATH "$out/${python.sitePackages}"'' + lib.optionalString withSystemd '' \ 90 --prefix LD_LIBRARY_PATH : ${lib.getLib systemd}/lib 91 ''; 92 ··· 97 ''; 98 homepage = "https://www.datadoghq.com"; 99 license = licenses.bsd3; 100 + maintainers = with maintainers; [ thoughtpolice domenkozar rvl viraptor ]; 101 }; 102 }
+2 -2
pkgs/tools/typesetting/sile/default.nix
··· 44 45 stdenv.mkDerivation rec { 46 pname = "sile"; 47 - version = "0.13.1"; 48 49 src = fetchurl { 50 url = "https://github.com/sile-typesetter/sile/releases/download/v${version}/${pname}-${version}.tar.xz"; 51 - sha256 = "09mvydgv81pkp2nz9rkz32n3df21cfc2aslpqrivf3svr6sp9hxy"; 52 }; 53 54 configureFlags = [
··· 44 45 stdenv.mkDerivation rec { 46 pname = "sile"; 47 + version = "0.13.2"; 48 49 src = fetchurl { 50 url = "https://github.com/sile-typesetter/sile/releases/download/v${version}/${pname}-${version}.tar.xz"; 51 + sha256 = "023vxyryk1clkb2lx8n31m8lnfsc27z7h7kvss2vrvqc20i1y2kx"; 52 }; 53 54 configureFlags = [
+3
pkgs/tools/wayland/sov/default.nix
··· 14 sha256 = "sha256-6FdZ3UToeIAARxrOqSWBX+ALrlr4s2J0bj9c3l9ZTyQ="; 15 }; 16 17 nativeBuildInputs = [ meson pkg-config wayland-scanner ninja ]; 18 buildInputs = [ wayland wayland-protocols freetype ]; 19
··· 14 sha256 = "sha256-6FdZ3UToeIAARxrOqSWBX+ALrlr4s2J0bj9c3l9ZTyQ="; 15 }; 16 17 + postPatch = '' 18 + substituteInPlace src/sov/main.c --replace '/usr' $out 19 + ''; 20 nativeBuildInputs = [ meson pkg-config wayland-scanner ninja ]; 21 buildInputs = [ wayland wayland-protocols freetype ]; 22
+7 -4
pkgs/tools/wayland/swayr/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "swayr"; 5 - version = "0.16.1"; 6 7 src = fetchFromSourcehut { 8 owner = "~tsdh"; 9 repo = "swayr"; 10 - rev = "v${version}"; 11 - sha256 = "sha256-c/VHD5VceddhKanuId4rG1Tl+9Bg7zUmIqq4gMsy1e0="; 12 }; 13 14 - cargoSha256 = "sha256-0aGMWuU6DvBr9tvgDd1GZqhlY8bGCuPs8pSc5A03L3w="; 15 16 patches = [ 17 ./icon-paths.patch 18 ]; 19 20 preCheck = '' 21 export HOME=$TMPDIR
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "swayr"; 5 + version = "0.19.0"; 6 7 src = fetchFromSourcehut { 8 owner = "~tsdh"; 9 repo = "swayr"; 10 + rev = "swayr-${version}"; 11 + sha256 = "sha256-ubindhU3G1iHqf/yiXIJk87uI3o5y2lfs22tbIfiqv4="; 12 }; 13 14 + cargoSha256 = "sha256-X6BYLD7YmlHCO+3b3Ubai222tvsZUmZrwm3vS2PeqDY="; 15 16 patches = [ 17 ./icon-paths.patch 18 ]; 19 + 20 + # don't build swayrbar 21 + buildAndTestSubdir = pname; 22 23 preCheck = '' 24 export HOME=$TMPDIR
+6 -6
pkgs/tools/wayland/swayr/icon-paths.patch
··· 1 - diff --git a/src/config.rs b/src/config.rs 2 - index de7d04b..291114b 100644 3 - --- a/src/config.rs 4 - +++ b/src/config.rs 5 - @@ -197,6 +197,12 @@ impl Default for Format { 6 ), 7 urgency_end: Some("</span>".to_string()), 8 icon_dirs: Some(vec![ ··· 13 + "~/.nix-profile/share/icons/hicolor/48x48/apps".to_string(), 14 + "~/.nix-profile/share/pixmaps".to_string(), 15 "/usr/share/icons/hicolor/scalable/apps".to_string(), 16 "/usr/share/icons/hicolor/48x48/apps".to_string(), 17 - "/usr/share/pixmaps".to_string(),
··· 1 + diff --git a/swayr/src/config.rs b/swayr/src/config.rs 2 + index bc6ec98..48cdc65 100644 3 + --- a/swayr/src/config.rs 4 + +++ b/swayr/src/config.rs 5 + @@ -271,6 +271,12 @@ impl Default for Format { 6 ), 7 urgency_end: Some("</span>".to_string()), 8 icon_dirs: Some(vec![ ··· 13 + "~/.nix-profile/share/icons/hicolor/48x48/apps".to_string(), 14 + "~/.nix-profile/share/pixmaps".to_string(), 15 "/usr/share/icons/hicolor/scalable/apps".to_string(), 16 + "/usr/share/icons/hicolor/64x64/apps".to_string(), 17 "/usr/share/icons/hicolor/48x48/apps".to_string(),
+11
pkgs/top-level/all-packages.nix
··· 275 276 bingo = callPackage ../development/tools/bingo {}; 277 278 bootstrap-studio = callPackage ../development/web/bootstrap-studio {}; 279 280 breakpad = callPackage ../development/misc/breakpad { }; ··· 3629 eternal-terminal = callPackage ../tools/networking/eternal-terminal {}; 3630 3631 extrude = callPackage ../tools/security/extrude { }; 3632 3633 f2 = callPackage ../tools/misc/f2 {}; 3634 ··· 26118 mpris2 = callPackage ../applications/audio/deadbeef/plugins/mpris2.nix { }; 26119 musical-spectrum = callPackage ../applications/audio/deadbeef/plugins/musical-spectrum.nix { }; 26120 statusnotifier = callPackage ../applications/audio/deadbeef/plugins/statusnotifier.nix { }; 26121 }; 26122 26123 deadbeef-with-plugins = callPackage ../applications/audio/deadbeef/wrapper.nix { ··· 30486 tremc = callPackage ../applications/networking/p2p/tremc { }; 30487 30488 tribler = callPackage ../applications/networking/p2p/tribler { }; 30489 30490 trojita = libsForQt5.callPackage ../applications/networking/mailreaders/trojita { }; 30491 ··· 35801 honeyvent = callPackage ../servers/tracing/honeycomb/honeyvent { }; 35802 35803 mictray = callPackage ../tools/audio/mictray { }; 35804 }
··· 275 276 bingo = callPackage ../development/tools/bingo {}; 277 278 + binserve = callPackage ../servers/binserve { 279 + inherit (darwin.apple_sdk.frameworks) CoreServices; 280 + }; 281 + 282 bootstrap-studio = callPackage ../development/web/bootstrap-studio {}; 283 284 breakpad = callPackage ../development/misc/breakpad { }; ··· 3633 eternal-terminal = callPackage ../tools/networking/eternal-terminal {}; 3634 3635 extrude = callPackage ../tools/security/extrude { }; 3636 + 3637 + fastly = callPackage ../misc/fastly {}; 3638 3639 f2 = callPackage ../tools/misc/f2 {}; 3640 ··· 26124 mpris2 = callPackage ../applications/audio/deadbeef/plugins/mpris2.nix { }; 26125 musical-spectrum = callPackage ../applications/audio/deadbeef/plugins/musical-spectrum.nix { }; 26126 statusnotifier = callPackage ../applications/audio/deadbeef/plugins/statusnotifier.nix { }; 26127 + playlist-manager = callPackage ../applications/audio/deadbeef/plugins/playlist-manager.nix { }; 26128 }; 26129 26130 deadbeef-with-plugins = callPackage ../applications/audio/deadbeef/wrapper.nix { ··· 30493 tremc = callPackage ../applications/networking/p2p/tremc { }; 30494 30495 tribler = callPackage ../applications/networking/p2p/tribler { }; 30496 + 30497 + trillian-im = callPackage ../applications/networking/instant-messengers/trillian-im { }; 30498 30499 trojita = libsForQt5.callPackage ../applications/networking/mailreaders/trojita { }; 30500 ··· 35810 honeyvent = callPackage ../servers/tracing/honeycomb/honeyvent { }; 35811 35812 mictray = callPackage ../tools/audio/mictray { }; 35813 + 35814 + swift-corelibs-libdispatch = callPackage ../development/libraries/swift-corelibs-libdispatch { }; 35815 }
+28
pkgs/top-level/haxe-packages.nix
··· 59 } // attrs.meta; 60 }); 61 62 hxcpp = buildHaxeLib rec { 63 libname = "hxcpp"; 64 version = "4.1.15";
··· 59 } // attrs.meta; 60 }); 61 62 + format = buildHaxeLib { 63 + libname = "format"; 64 + version = "3.5.0"; 65 + sha256 = "sha256-5vZ7b+P74uGx0Gb7X/+jbsx5048dO/jv5nqCDtw5y/A="; 66 + meta.description = "A Haxe Library for supporting different file formats"; 67 + }; 68 + 69 + heaps = buildHaxeLib { 70 + libname = "heaps"; 71 + version = "1.9.1"; 72 + sha256 = "sha256-i5EIKnph80eEEHvGXDXhIL4t4+RW7OcUV5zb2f3ItlI="; 73 + meta.description = "The GPU Game Framework"; 74 + }; 75 + 76 + hlopenal = buildHaxeLib { 77 + libname = "hlopenal"; 78 + version = "1.5.0"; 79 + sha256 = "sha256-mJWFGBJPPAhVwsB2HzMfk4szSyjMT4aw543YhVqIan4="; 80 + meta.description = "OpenAL support for Haxe/HL"; 81 + }; 82 + 83 + hlsdl = buildHaxeLib { 84 + libname = "hlsdl"; 85 + version = "1.10.0"; 86 + sha256 = "sha256-kmC2EMDy1mv0jFjwDj+m0CUvKal3V7uIGnMxJBRYGms="; 87 + meta.description = "SDL/GL support for Haxe/HL"; 88 + }; 89 + 90 hxcpp = buildHaxeLib rec { 91 libname = "hxcpp"; 92 version = "4.1.15";
+8 -4
pkgs/top-level/linux-kernels.nix
··· 196 ]; 197 }; 198 199 - linux_zen = callPackage ../os-specific/linux/kernel/linux-zen.nix { 200 kernelPatches = [ 201 kernelPatches.bridge_stp_helper 202 kernelPatches.request_key_helper 203 ]; 204 - }; 205 206 - linux_lqx = callPackage ../os-specific/linux/kernel/linux-lqx.nix { 207 kernelPatches = [ 208 kernelPatches.bridge_stp_helper 209 kernelPatches.request_key_helper 210 ]; 211 - }; 212 213 # This contains both the STABLE and EDGE variants of the XanMod kernel 214 xanmodKernels = callPackage ../os-specific/linux/kernel/xanmod-kernels.nix;
··· 196 ]; 197 }; 198 199 + # Using zenKernels like this due lqx&zen came from one source, but may have different base kernel version 200 + # https://github.com/NixOS/nixpkgs/pull/161773#discussion_r820134708 201 + zenKernels = callPackage ../os-specific/linux/kernel/zen-kernels.nix; 202 + 203 + linux_zen = (zenKernels { 204 kernelPatches = [ 205 kernelPatches.bridge_stp_helper 206 kernelPatches.request_key_helper 207 ]; 208 + }).zen; 209 210 + linux_lqx = (zenKernels { 211 kernelPatches = [ 212 kernelPatches.bridge_stp_helper 213 kernelPatches.request_key_helper 214 ]; 215 + }).lqx; 216 217 # This contains both the STABLE and EDGE variants of the XanMod kernel 218 xanmodKernels = callPackage ../os-specific/linux/kernel/xanmod-kernels.nix;