Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
bff8e749 71c0c6d9

+2069 -733
+1 -1
maintainers/maintainer-list.nix
··· 14870 14870 }; 14871 14871 toastal = { 14872 14872 email = "toastal+nix@posteo.net"; 14873 - matrix = "@toastal:matrix.org"; 14873 + matrix = "@toastal:chat.mozilla.org"; 14874 14874 github = "toastal"; 14875 14875 githubId = 561087; 14876 14876 name = "toastal";
+8
nixos/doc/manual/from_md/release-notes/rl-2305.section.xml
··· 916 916 </listitem> 917 917 <listitem> 918 918 <para> 919 + <literal>services.xserver.desktopManager.plasma5.phononBackend</literal> 920 + now defaults to vlc according to 921 + <link xlink:href="https://community.kde.org/Distributions/Packaging_Recommendations#Non-Plasma_packages">upstrean 922 + recommendation</link> 923 + </para> 924 + </listitem> 925 + <listitem> 926 + <para> 919 927 The <literal>zramSwap</literal> is now implemented with 920 928 <literal>zram-generator</literal>, and the option 921 929 <literal>zramSwap.numDevices</literal> for using ZRAM devices
+2
nixos/doc/manual/release-notes/rl-2305.section.md
··· 223 223 224 224 - The `services.fwupd` module now allows arbitrary daemon settings to be configured in a structured manner ([`services.fwupd.daemonSettings`](#opt-services.fwupd.daemonSettings)). 225 225 226 + - `services.xserver.desktopManager.plasma5.phononBackend` now defaults to vlc according to [upstrean recommendation](https://community.kde.org/Distributions/Packaging_Recommendations#Non-Plasma_packages) 227 + 226 228 - The `zramSwap` is now implemented with `zram-generator`, and the option `zramSwap.numDevices` for using ZRAM devices as general purpose ephemeral block devices has been removed. 227 229 228 230 - As Singularity has renamed to [Apptainer](https://apptainer.org/news/community-announcement-20211130)
+16 -22
nixos/modules/services/networking/minidlna.nix
··· 16 16 description = lib.mdDoc '' 17 17 Whether to enable MiniDLNA, a simple DLNA server. 18 18 It serves media files such as video and music to DLNA client devices 19 - such as televisions and media players. If you use the firewall consider 19 + such as televisions and media players. If you use the firewall, consider 20 20 adding the following: `services.minidlna.openFirewall = true;` 21 21 ''; 22 22 }; ··· 54 54 description = lib.mdDoc '' 55 55 The interval between announces (in seconds). 56 56 Instead of waiting for announces, you should set `openFirewall` option to use SSDP discovery. 57 - Furthermore, this option has been set to 90000 in order to prevent disconnects with certain 58 - clients and relies solely on the discovery. 59 - 60 - Lower values (e.g. 30 seconds) should be used if you can't use the discovery. 57 + Lower values (e.g. 30 seconds) should be used if your network blocks the discovery unicast. 61 58 Some relevant information can be found here: 62 59 https://sourceforge.net/p/minidlna/discussion/879957/thread/1389d197/ 63 60 ''; ··· 82 79 }; 83 80 options.root_container = mkOption { 84 81 type = types.str; 85 - default = "."; 86 - example = "B"; 82 + default = "B"; 83 + example = "."; 87 84 description = lib.mdDoc "Use a different container as the root of the directory tree presented to clients."; 88 85 }; 89 86 options.log_level = mkOption { ··· 133 130 134 131 users.groups.minidlna.gid = config.ids.gids.minidlna; 135 132 136 - systemd.services.minidlna = 137 - { description = "MiniDLNA Server"; 138 - 139 - wantedBy = [ "multi-user.target" ]; 140 - after = [ "network.target" ]; 133 + systemd.services.minidlna = { 134 + description = "MiniDLNA Server"; 135 + wantedBy = [ "multi-user.target" ]; 136 + after = [ "network.target" ]; 141 137 142 - serviceConfig = 143 - { User = "minidlna"; 144 - Group = "minidlna"; 145 - CacheDirectory = "minidlna"; 146 - RuntimeDirectory = "minidlna"; 147 - PIDFile = "/run/minidlna/pid"; 148 - ExecStart = 149 - "${pkgs.minidlna}/sbin/minidlnad -S -P /run/minidlna/pid" + 150 - " -f ${settingsFile}"; 151 - }; 138 + serviceConfig = { 139 + User = "minidlna"; 140 + Group = "minidlna"; 141 + CacheDirectory = "minidlna"; 142 + RuntimeDirectory = "minidlna"; 143 + PIDFile = "/run/minidlna/pid"; 144 + ExecStart = "${pkgs.minidlna}/sbin/minidlnad -S -P /run/minidlna/pid -f ${settingsFile}"; 152 145 }; 146 + }; 153 147 }; 154 148 }
+2 -2
nixos/modules/services/x11/desktop-managers/plasma5.nix
··· 90 90 91 91 phononBackend = mkOption { 92 92 type = types.enum [ "gstreamer" "vlc" ]; 93 - default = "gstreamer"; 94 - example = "vlc"; 93 + default = "vlc"; 94 + example = "gstreamer"; 95 95 description = lib.mdDoc "Phonon audio backend to install."; 96 96 }; 97 97
+2 -3
pkgs/applications/emulators/ppsspp/default.nix
··· 7 7 , ffmpeg 8 8 , glew 9 9 , libffi 10 + , libsForQt5 10 11 , libzip 11 12 , makeDesktopItem 12 13 , makeWrapper 13 14 , pkg-config 14 15 , python3 15 - , qtbase 16 - , qtmultimedia 17 16 , snappy 18 17 , vulkan-loader 19 18 , wayland 20 - , wrapQtAppsHook 21 19 , zlib 22 20 , enableQt ? false 23 21 , enableVulkan ? true ··· 27 25 let 28 26 # experimental, see https://github.com/hrydgard/ppsspp/issues/13845 29 27 vulkanWayland = enableVulkan && forceWayland; 28 + inherit (libsForQt5) qtbase qtmultimedia wrapQtAppsHook; 30 29 in 31 30 # Only SDL frontend needs to specify whether to use Wayland 32 31 assert forceWayland -> !enableQt;
+7 -1
pkgs/applications/file-managers/vifm/default.nix
··· 1 1 { stdenv, fetchurl, makeWrapper 2 + , perl # used to generate help tags 2 3 , pkg-config 3 4 , ncurses, libX11 4 5 , util-linux, file, which, groff ··· 17 18 sha256 = "sha256-j+KBPr3Mz+ma7OArBdYqIJkVJdRrDM+67Dr2FMZlVog="; 18 19 }; 19 20 20 - nativeBuildInputs = [ pkg-config makeWrapper ]; 21 + nativeBuildInputs = [ perl pkg-config makeWrapper ]; 21 22 buildInputs = [ ncurses libX11 util-linux file which groff ]; 23 + 24 + postPatch = '' 25 + # Avoid '#!/usr/bin/env perl' reverences to build help. 26 + patchShebangs --build src/helpztags 27 + ''; 22 28 23 29 postFixup = let 24 30 path = lib.makeBinPath
+62 -15
pkgs/applications/graphics/rawtherapee/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkg-config, cmake, pixman, libpthreadstubs, gtkmm3, libXau 2 - , libXdmcp, lcms2, libiptcdata, libcanberra-gtk3, fftw, expat, pcre, libsigcxx, wrapGAppsHook 3 - , lensfun, librsvg, gtk-mac-integration 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , pkg-config 6 + , wrapGAppsHook 7 + , makeWrapper 8 + , pixman 9 + , libpthreadstubs 10 + , gtkmm3 11 + , libXau 12 + , libXdmcp 13 + , lcms2 14 + , libiptcdata 15 + , fftw 16 + , expat 17 + , pcre 18 + , libsigcxx 19 + , lensfun 20 + , librsvg 21 + , libcanberra-gtk3 22 + , gtk-mac-integration 4 23 }: 5 24 6 25 stdenv.mkDerivation rec { 7 - version = "5.8"; 8 26 pname = "rawtherapee"; 27 + version = "5.9"; 9 28 10 29 src = fetchFromGitHub { 11 30 owner = "Beep6581"; 12 31 repo = "RawTherapee"; 13 32 rev = version; 14 - sha256 = "0d644s4grfia6f3k6y0byd5pwajr12kai2kc280yxi8v3w1b12ik"; 33 + hash = "sha256-kdctfjss/DHEcaSDPXcmT20wXTwkI8moRX/i/5wT5Hg="; 15 34 }; 16 35 17 - nativeBuildInputs = [ cmake pkg-config wrapGAppsHook ]; 36 + postPatch = '' 37 + echo "set(HG_VERSION ${version})" > ReleaseInfo.cmake 38 + substituteInPlace tools/osx/Info.plist.in rtgui/config.h.in \ 39 + --replace "/Applications" "${placeholder "out"}/Applications" 40 + ''; 18 41 19 - # This patch is upstream; remove it in 5.9. 20 - patches = [ ./fix-6324.patch ] 21 - # Disable upstream-enforced bundling on macOS. 22 - ++ lib.optionals stdenv.isDarwin [ ./do-not-bundle.patch ]; 42 + nativeBuildInputs = [ 43 + cmake 44 + pkg-config 45 + wrapGAppsHook 46 + ] ++ lib.optionals stdenv.isDarwin [ 47 + makeWrapper 48 + ]; 23 49 24 50 buildInputs = [ 25 - pixman libpthreadstubs gtkmm3 libXau libXdmcp 26 - lcms2 libiptcdata fftw expat pcre libsigcxx lensfun librsvg 51 + pixman 52 + libpthreadstubs 53 + gtkmm3 54 + libXau 55 + libXdmcp 56 + lcms2 57 + libiptcdata 58 + fftw 59 + expat 60 + pcre 61 + libsigcxx 62 + lensfun 63 + librsvg 27 64 ] ++ lib.optionals stdenv.isLinux [ 28 65 libcanberra-gtk3 29 66 ] ++ lib.optionals stdenv.isDarwin [ ··· 33 70 cmakeFlags = [ 34 71 "-DPROC_TARGET_NUMBER=2" 35 72 "-DCACHE_NAME_SUFFIX=\"\"" 73 + ] ++ lib.optionals stdenv.isDarwin [ 74 + "-DCMAKE_OSX_DEPLOYMENT_TARGET=${stdenv.hostPlatform.darwinMinVersion}" 36 75 ]; 37 76 38 - CMAKE_CXX_FLAGS = "-std=c++11 -Wno-deprecated-declarations -Wno-unused-result"; 77 + CMAKE_CXX_FLAGS = toString [ 78 + "-std=c++11" 79 + "-Wno-deprecated-declarations" 80 + "-Wno-unused-result" 81 + ]; 39 82 40 - postUnpack = '' 41 - echo "set(HG_VERSION $version)" > $sourceRoot/ReleaseInfo.cmake 83 + postInstall = lib.optionalString stdenv.isDarwin '' 84 + mkdir -p $out/Applications/RawTherapee.app $out/bin 85 + cp -R Release $out/Applications/RawTherapee.app/Contents 86 + for f in $out/Applications/RawTherapee.app/Contents/MacOS/*; do 87 + makeWrapper $f $out/bin/$(basename $f) 88 + done 42 89 ''; 43 90 44 91 meta = {
-13
pkgs/applications/graphics/rawtherapee/do-not-bundle.patch
··· 1 - diff --git a/CMakeLists.txt b/CMakeLists.txt 2 - index 0a55ca6d5..68c059aa5 100644 3 - --- a/CMakeLists.txt 4 - +++ b/CMakeLists.txt 5 - @@ -233,6 +233,6 @@ if(WIN32 OR APPLE) 6 - endif() 7 - - set(BUILD_BUNDLE ON FORCE) 8 - + set(BUILD_BUNDLE OFF) 9 - endif() 10 - 11 - if(NOT DEFINED BUNDLE_BASE_INSTALL_DIR) 12 - - if(APPLE) 13 - + if(FALSE)
-356
pkgs/applications/graphics/rawtherapee/fix-6324.patch
··· 1 - See: 2 - https://github.com/Beep6581/RawTherapee/issues/6324 3 - https://github.com/Beep6581/RawTherapee/commit/2e0137d54243eb729d4a5f939c4320ec8f8f415d 4 - 5 - diff --git a/rtengine/canon_cr3_decoder.cc b/rtengine/canon_cr3_decoder.cc 6 - index 6274154cb..98c743dad 100644 7 - --- a/rtengine/canon_cr3_decoder.cc 8 - +++ b/rtengine/canon_cr3_decoder.cc 9 - @@ -662,7 +662,7 @@ std::uint32_t _byteswap_ulong(std::uint32_t x) 10 - #endif 11 - 12 - struct LibRaw_abstract_datastream { 13 - - IMFILE* ifp; 14 - + rtengine::IMFILE* ifp; 15 - 16 - void lock() 17 - { 18 - diff --git a/rtengine/dcraw.cc b/rtengine/dcraw.cc 19 - index 812f122b3..5da696af2 100644 20 - --- a/rtengine/dcraw.cc 21 - +++ b/rtengine/dcraw.cc 22 - @@ -2025,7 +2025,7 @@ void CLASS phase_one_load_raw_c() 23 - #endif 24 - { 25 - int len[2], pred[2]; 26 - - IMFILE ifpthr = *ifp; 27 - + rtengine::IMFILE ifpthr = *ifp; 28 - ifpthr.plistener = nullptr; 29 - 30 - #ifdef _OPENMP 31 - @@ -3380,7 +3380,7 @@ void CLASS sony_arw2_load_raw() 32 - { 33 - uchar *data = new (std::nothrow) uchar[raw_width + 1]; 34 - merror(data, "sony_arw2_load_raw()"); 35 - - IMFILE ifpthr = *ifp; 36 - + rtengine::IMFILE ifpthr = *ifp; 37 - int pos = ifpthr.pos; 38 - ushort pix[16]; 39 - 40 - @@ -6394,7 +6394,7 @@ int CLASS parse_tiff_ifd (int base) 41 - unsigned sony_curve[] = { 0,0,0,0,0,4095 }; 42 - unsigned *buf, sony_offset=0, sony_length=0, sony_key=0; 43 - struct jhead jh; 44 - -/*RT*/ IMFILE *sfp; 45 - +/*RT*/ rtengine::IMFILE *sfp; 46 - /*RT*/ int pana_raw = 0; 47 - 48 - if (tiff_nifds >= sizeof tiff_ifd / sizeof tiff_ifd[0]) 49 - @@ -6958,7 +6958,7 @@ it under the terms of the one of two licenses as you choose: 50 - fread (buf, sony_length, 1, ifp); 51 - sony_decrypt (buf, sony_length/4, 1, sony_key); 52 - sfp = ifp; 53 - -/*RT*/ ifp = fopen (buf, sony_length); 54 - +/*RT*/ ifp = rtengine::fopen (buf, sony_length); 55 - // if ((ifp = tmpfile())) { 56 - // fwrite (buf, sony_length, 1, ifp); 57 - // fseek (ifp, 0, SEEK_SET); 58 - @@ -7264,7 +7264,7 @@ void CLASS parse_external_jpeg() 59 - { 60 - const char *file, *ext; 61 - char *jname, *jfile, *jext; 62 - -/*RT*/ IMFILE *save=ifp; 63 - +/*RT*/ rtengine::IMFILE *save=ifp; 64 - 65 - ext = strrchr (ifname, '.'); 66 - file = strrchr (ifname, '/'); 67 - @@ -7292,7 +7292,7 @@ void CLASS parse_external_jpeg() 68 - *jext = '0'; 69 - } 70 - if (strcmp (jname, ifname)) { 71 - -/*RT*/ if ((ifp = fopen (jname))) { 72 - +/*RT*/ if ((ifp = rtengine::fopen (jname))) { 73 - // if ((ifp = fopen (jname, "rb"))) { 74 - if (verbose) 75 - fprintf (stderr,_("Reading metadata from %s ...\n"), jname); 76 - diff --git a/rtengine/dcraw.h b/rtengine/dcraw.h 77 - index 89c1fcaff..f25157088 100644 78 - --- a/rtengine/dcraw.h 79 - +++ b/rtengine/dcraw.h 80 - @@ -73,7 +73,7 @@ public: 81 - 82 - protected: 83 - int exif_base, ciff_base, ciff_len; 84 - - IMFILE *ifp; 85 - + rtengine::IMFILE *ifp; 86 - FILE *ofp; 87 - short order; 88 - const char *ifname; 89 - @@ -125,7 +125,7 @@ protected: 90 - int cur_buf_size; // buffer size 91 - uchar *cur_buf; // currently read block 92 - int fillbytes; // Counter to add extra byte for block size N*16 93 - - IMFILE *input; 94 - + rtengine::IMFILE *input; 95 - struct int_pair grad_even[3][41]; // tables of gradients 96 - struct int_pair grad_odd[3][41]; 97 - ushort *linealloc; 98 - @@ -278,7 +278,7 @@ void parse_redcine(); 99 - class getbithuff_t 100 - { 101 - public: 102 - - getbithuff_t(DCraw *p,IMFILE *&i, unsigned &z):parent(p),bitbuf(0),vbits(0),reset(0),ifp(i),zero_after_ff(z){} 103 - + getbithuff_t(DCraw *p,rtengine::IMFILE *&i, unsigned &z):parent(p),bitbuf(0),vbits(0),reset(0),ifp(i),zero_after_ff(z){} 104 - unsigned operator()(int nbits, ushort *huff); 105 - 106 - private: 107 - @@ -288,7 +288,7 @@ private: 108 - DCraw *parent; 109 - unsigned bitbuf; 110 - int vbits, reset; 111 - - IMFILE *&ifp; 112 - + rtengine::IMFILE *&ifp; 113 - unsigned &zero_after_ff; 114 - }; 115 - getbithuff_t getbithuff; 116 - @@ -296,7 +296,7 @@ getbithuff_t getbithuff; 117 - class nikbithuff_t 118 - { 119 - public: 120 - - explicit nikbithuff_t(IMFILE *&i):bitbuf(0),errors(0),vbits(0),ifp(i){} 121 - + explicit nikbithuff_t(rtengine::IMFILE *&i):bitbuf(0),errors(0),vbits(0),ifp(i){} 122 - void operator()() {bitbuf = vbits = 0;}; 123 - unsigned operator()(int nbits, ushort *huff); 124 - unsigned errorCount() { return errors; } 125 - @@ -309,7 +309,7 @@ private: 126 - } 127 - unsigned bitbuf, errors; 128 - int vbits; 129 - - IMFILE *&ifp; 130 - + rtengine::IMFILE *&ifp; 131 - }; 132 - nikbithuff_t nikbithuff; 133 - 134 - @@ -378,7 +378,7 @@ void parse_qt (int end); 135 - // ph1_bithuff(int nbits, ushort *huff); 136 - class ph1_bithuff_t { 137 - public: 138 - - ph1_bithuff_t(DCraw *p, IMFILE *i, short &o):order(o),ifp(i),bitbuf(0),vbits(0){} 139 - + ph1_bithuff_t(DCraw *p, rtengine::IMFILE *i, short &o):order(o),ifp(i),bitbuf(0),vbits(0){} 140 - unsigned operator()(int nbits, ushort *huff); 141 - unsigned operator()(int nbits); 142 - unsigned operator()(); 143 - @@ -412,7 +412,7 @@ private: 144 - } 145 - 146 - short &order; 147 - - IMFILE* const ifp; 148 - + rtengine::IMFILE* const ifp; 149 - UINT64 bitbuf; 150 - int vbits; 151 - }; 152 - @@ -430,11 +430,11 @@ void nokia_load_raw(); 153 - 154 - class pana_bits_t{ 155 - public: 156 - - pana_bits_t(IMFILE *i, unsigned &u, unsigned enc): 157 - + pana_bits_t(rtengine::IMFILE *i, unsigned &u, unsigned enc): 158 - ifp(i), load_flags(u), vbits(0), encoding(enc) {} 159 - unsigned operator()(int nbits, unsigned *bytes=nullptr); 160 - private: 161 - - IMFILE *ifp; 162 - + rtengine::IMFILE *ifp; 163 - unsigned &load_flags; 164 - uchar buf[0x4000]; 165 - int vbits; 166 - diff --git a/rtengine/dfmanager.cc b/rtengine/dfmanager.cc 167 - index 1fb1d2e1b..951df2248 100644 168 - --- a/rtengine/dfmanager.cc 169 - +++ b/rtengine/dfmanager.cc 170 - @@ -540,7 +540,7 @@ std::vector<badPix> *DFManager::getHotPixels ( const std::string &mak, const std 171 - 172 - int DFManager::scanBadPixelsFile( Glib::ustring filename ) 173 - { 174 - - FILE *file = fopen( filename.c_str(), "r" ); 175 - + FILE *file = ::fopen( filename.c_str(), "r" ); 176 - 177 - if( !file ) { 178 - return false; 179 - diff --git a/rtengine/myfile.cc b/rtengine/myfile.cc 180 - index 842766dcf..2321d18bb 100644 181 - --- a/rtengine/myfile.cc 182 - +++ b/rtengine/myfile.cc 183 - @@ -70,7 +70,7 @@ int munmap(void *start, size_t length) 184 - 185 - #ifdef MYFILE_MMAP 186 - 187 - -IMFILE* fopen (const char* fname) 188 - +rtengine::IMFILE* rtengine::fopen (const char* fname) 189 - { 190 - int fd; 191 - 192 - @@ -123,13 +123,13 @@ IMFILE* fopen (const char* fname) 193 - return mf; 194 - } 195 - 196 - -IMFILE* gfopen (const char* fname) 197 - +rtengine::IMFILE* rtengine::gfopen (const char* fname) 198 - { 199 - return fopen(fname); 200 - } 201 - #else 202 - 203 - -IMFILE* fopen (const char* fname) 204 - +rtengine::IMFILE* rtengine::fopen (const char* fname) 205 - { 206 - 207 - FILE* f = g_fopen (fname, "rb"); 208 - @@ -152,7 +152,7 @@ IMFILE* fopen (const char* fname) 209 - return mf; 210 - } 211 - 212 - -IMFILE* gfopen (const char* fname) 213 - +rtengine::IMFILE* rtengine::gfopen (const char* fname) 214 - { 215 - 216 - FILE* f = g_fopen (fname, "rb"); 217 - @@ -176,7 +176,7 @@ IMFILE* gfopen (const char* fname) 218 - } 219 - #endif //MYFILE_MMAP 220 - 221 - -IMFILE* fopen (unsigned* buf, int size) 222 - +rtengine::IMFILE* rtengine::fopen (unsigned* buf, int size) 223 - { 224 - 225 - IMFILE* mf = new IMFILE; 226 - @@ -190,7 +190,7 @@ IMFILE* fopen (unsigned* buf, int size) 227 - return mf; 228 - } 229 - 230 - -void fclose (IMFILE* f) 231 - +void rtengine::fclose (IMFILE* f) 232 - { 233 - #ifdef MYFILE_MMAP 234 - 235 - @@ -207,7 +207,7 @@ void fclose (IMFILE* f) 236 - delete f; 237 - } 238 - 239 - -int fscanf (IMFILE* f, const char* s ...) 240 - +int rtengine::fscanf (IMFILE* f, const char* s ...) 241 - { 242 - // fscanf not easily wrapped since we have no terminating \0 at end 243 - // of file data and vsscanf() won't tell us how many characters that 244 - @@ -253,7 +253,7 @@ int fscanf (IMFILE* f, const char* s ...) 245 - } 246 - 247 - 248 - -char* fgets (char* s, int n, IMFILE* f) 249 - +char* rtengine::fgets (char* s, int n, IMFILE* f) 250 - { 251 - 252 - if (f->pos >= f->size) { 253 - @@ -270,7 +270,7 @@ char* fgets (char* s, int n, IMFILE* f) 254 - return s; 255 - } 256 - 257 - -void imfile_set_plistener(IMFILE *f, rtengine::ProgressListener *plistener, double progress_range) 258 - +void rtengine::imfile_set_plistener(IMFILE *f, rtengine::ProgressListener *plistener, double progress_range) 259 - { 260 - f->plistener = plistener; 261 - f->progress_range = progress_range; 262 - @@ -278,7 +278,7 @@ void imfile_set_plistener(IMFILE *f, rtengine::ProgressListener *plistener, doub 263 - f->progress_current = 0; 264 - } 265 - 266 - -void imfile_update_progress(IMFILE *f) 267 - +void rtengine::imfile_update_progress(IMFILE *f) 268 - { 269 - if (!f->plistener || f->progress_current < f->progress_next) { 270 - return; 271 - diff --git a/rtengine/myfile.h b/rtengine/myfile.h 272 - index 423edea9a..c655696e6 100644 273 - --- a/rtengine/myfile.h 274 - +++ b/rtengine/myfile.h 275 - @@ -30,8 +30,6 @@ namespace rtengine 276 - 277 - class ProgressListener; 278 - 279 - -} 280 - - 281 - struct IMFILE { 282 - int fd; 283 - ssize_t pos; 284 - @@ -141,3 +139,5 @@ inline unsigned char* fdata(int offset, IMFILE* f) 285 - 286 - int fscanf (IMFILE* f, const char* s ...); 287 - char* fgets (char* s, int n, IMFILE* f); 288 - + 289 - +} 290 - diff --git a/rtengine/rtthumbnail.cc b/rtengine/rtthumbnail.cc 291 - index 9da601e2a..097b9e711 100644 292 - --- a/rtengine/rtthumbnail.cc 293 - +++ b/rtengine/rtthumbnail.cc 294 - @@ -1922,7 +1922,7 @@ bool Thumbnail::writeImage (const Glib::ustring& fname) 295 - 296 - Glib::ustring fullFName = fname + ".rtti"; 297 - 298 - - FILE* f = g_fopen (fullFName.c_str (), "wb"); 299 - + FILE* f = ::g_fopen (fullFName.c_str (), "wb"); 300 - 301 - if (!f) { 302 - return false; 303 - @@ -1965,7 +1965,7 @@ bool Thumbnail::readImage (const Glib::ustring& fname) 304 - return false; 305 - } 306 - 307 - - FILE* f = g_fopen(fullFName.c_str (), "rb"); 308 - + FILE* f = ::g_fopen(fullFName.c_str (), "rb"); 309 - 310 - if (!f) { 311 - return false; 312 - @@ -2191,7 +2191,7 @@ bool Thumbnail::writeData (const Glib::ustring& fname) 313 - return false; 314 - } 315 - 316 - - FILE *f = g_fopen (fname.c_str (), "wt"); 317 - + FILE *f = ::g_fopen (fname.c_str (), "wt"); 318 - 319 - if (!f) { 320 - if (settings->verbose) { 321 - @@ -2214,7 +2214,7 @@ bool Thumbnail::readEmbProfile (const Glib::ustring& fname) 322 - embProfile = nullptr; 323 - embProfileLength = 0; 324 - 325 - - FILE* f = g_fopen (fname.c_str (), "rb"); 326 - + FILE* f = ::g_fopen (fname.c_str (), "rb"); 327 - 328 - if (f) { 329 - if (!fseek (f, 0, SEEK_END)) { 330 - @@ -2242,7 +2242,7 @@ bool Thumbnail::writeEmbProfile (const Glib::ustring& fname) 331 - { 332 - 333 - if (embProfileData) { 334 - - FILE* f = g_fopen (fname.c_str (), "wb"); 335 - + FILE* f = ::g_fopen (fname.c_str (), "wb"); 336 - 337 - if (f) { 338 - fwrite (embProfileData, 1, embProfileLength, f); 339 - @@ -2257,7 +2257,7 @@ bool Thumbnail::writeEmbProfile (const Glib::ustring& fname) 340 - bool Thumbnail::readAEHistogram (const Glib::ustring& fname) 341 - { 342 - 343 - - FILE* f = g_fopen(fname.c_str(), "rb"); 344 - + FILE* f = ::g_fopen(fname.c_str(), "rb"); 345 - 346 - if (!f) { 347 - aeHistogram.reset(); 348 - @@ -2280,7 +2280,7 @@ bool Thumbnail::writeAEHistogram (const Glib::ustring& fname) 349 - { 350 - 351 - if (aeHistogram) { 352 - - FILE* f = g_fopen (fname.c_str (), "wb"); 353 - + FILE* f = ::g_fopen (fname.c_str (), "wb"); 354 - 355 - if (f) { 356 - fwrite (&aeHistogram[0], 1, (65536 >> aeHistCompression)*sizeof (aeHistogram[0]), f);
+2 -2
pkgs/applications/networking/browsers/opera/default.nix
··· 51 51 in 52 52 stdenv.mkDerivation rec { 53 53 pname = "opera"; 54 - version = "94.0.4606.54"; 54 + version = "95.0.4635.37"; 55 55 56 56 src = fetchurl { 57 57 url = "${mirror}/${version}/linux/${pname}-stable_${version}_amd64.deb"; 58 - hash = "sha256-IMWIkJHKaE7n5Rll4ZExE6PQB9a2fz0hLx4vckbROgk="; 58 + hash = "sha256-NQv9EVaBPfHygr76neYGACuk8A6Oc1GXAgizMa+jngw="; 59 59 }; 60 60 61 61 unpackPhase = "dpkg-deb -x $src .";
+7 -2
pkgs/applications/networking/cloudflared/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cloudflared"; 5 - version = "2022.12.1"; 5 + version = "2023.2.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cloudflare"; 9 9 repo = "cloudflared"; 10 10 rev = version; 11 - hash = "sha256-FXN/UUlzG3+AYYZeKJ6XUG4rD3cPWIx22h3zZpvZhiM="; 11 + hash = "sha256-vhcz/uk1sBt7XytXQYcPreoPfNz7fdPVE+j+FTH7tPc="; 12 12 }; 13 13 14 14 vendorSha256 = null; ··· 56 56 # Expected nil, but got: Could not lookup srv records on _us-v2-origintunneld._tcp.argotunnel.com: lookup _us-v2-origintunneld._tcp.argotunnel.com on [::1]:53: read udp [::1]:49342->[::1]:53: read: connection refused 57 57 substituteInPlace "supervisor/supervisor_test.go" \ 58 58 --replace "Test_Initialize_Same_Protocol" "Skip_Initialize_Same_Protocol" 59 + 60 + # Workaround for: manager_test.go:197: 61 + # Should be false 62 + substituteInPlace "datagramsession/manager_test.go" \ 63 + --replace "TestManagerCtxDoneCloseSessions" "SkipManagerCtxDoneCloseSessions" 59 64 ''; 60 65 61 66 doCheck = !stdenv.isDarwin;
+15 -15
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 110 110 "vendorHash": null 111 111 }, 112 112 "aws": { 113 - "hash": "sha256-CdG7StgMUr6FjC4YJKIfQlWqjvgnvzyGh8zKQ+DUJzU=", 113 + "hash": "sha256-gAIZQIljgrYNtaDrPqWnd7K0rQkKz67hQWJyVgs4ZNs=", 114 114 "homepage": "https://registry.terraform.io/providers/hashicorp/aws", 115 115 "owner": "hashicorp", 116 116 "repo": "terraform-provider-aws", 117 - "rev": "v4.53.0", 117 + "rev": "v4.54.0", 118 118 "spdx": "MPL-2.0", 119 - "vendorHash": "sha256-rnOrA3QYLZAU+VCm6OVLrnJ37Vcp6xzq0N8ohjWDl3Q=" 119 + "vendorHash": "sha256-9YvQP1QWnT2Rb9D65j6g2edxTDaoGisVlQWFNnH4lSs=" 120 120 }, 121 121 "azuread": { 122 122 "hash": "sha256-Byr6AJ1kP6fBxBCD8vLxQD5tz8fI3Z1fcCa0rXS9rhs=", ··· 128 128 "vendorHash": null 129 129 }, 130 130 "azurerm": { 131 - "hash": "sha256-eZwQsvIXYwpx/uLJKmYnNaOFWBue1ADeyhVbvl3fAy0=", 131 + "hash": "sha256-b2KEq7QBpPR7100VCFIe9KGMm8Soy2wr/TAbUT0NxEQ=", 132 132 "homepage": "https://registry.terraform.io/providers/hashicorp/azurerm", 133 133 "owner": "hashicorp", 134 134 "repo": "terraform-provider-azurerm", 135 - "rev": "v3.42.0", 135 + "rev": "v3.43.0", 136 136 "spdx": "MPL-2.0", 137 137 "vendorHash": null 138 138 }, ··· 283 283 "vendorHash": "sha256-QlmVrcC1ctjAHOd7qsqc9gpqttKplEy4hlT++cFUZfM=" 284 284 }, 285 285 "datadog": { 286 - "hash": "sha256-LZYpKwcNvkmpYfhCuZhxfid42IBhRmzfiHZVYu3XAlA=", 286 + "hash": "sha256-gZdjbW2yz3TmnGfCLiveUpTcMeKBUUSV6CnugnkdoZ8=", 287 287 "homepage": "https://registry.terraform.io/providers/DataDog/datadog", 288 288 "owner": "DataDog", 289 289 "repo": "terraform-provider-datadog", 290 - "rev": "v3.20.0", 290 + "rev": "v3.21.0", 291 291 "spdx": "MPL-2.0", 292 - "vendorHash": "sha256-IrSQEu3IDFKM9t+3pkygyrrq8KRI8E0BqTui2TR5nFM=" 292 + "vendorHash": "sha256-6aBwtm4p/sJyH9jT7wT+utHIlOSgOilOk0AZSI9RzD8=" 293 293 }, 294 294 "dhall": { 295 295 "hash": "sha256-K0j90YAzYqdyJD4aofyxAJF9QBYNMbhSVm/s1GvWuJ4=", ··· 857 857 "vendorHash": "sha256-hHwFm+gSMjN4YQEFd/dd50G0uZsxzqi21tHDf4mPBLY=" 858 858 }, 859 859 "opentelekomcloud": { 860 - "hash": "sha256-D2RPpG1RE+bM7rVvmItczpRExMXK0RaKfJsnifvXRTs=", 860 + "hash": "sha256-/e/cfesAKYiAvhiXm7SYmpM5O8Rm/qHE8XnCS0m4lNQ=", 861 861 "homepage": "https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud", 862 862 "owner": "opentelekomcloud", 863 863 "repo": "terraform-provider-opentelekomcloud", 864 - "rev": "v1.32.3", 864 + "rev": "v1.33.0", 865 865 "spdx": "MPL-2.0", 866 - "vendorHash": "sha256-49ViIxICpvWgpv+uY0NTDvXGJthjH6aT38COfS+AOaQ=" 866 + "vendorHash": "sha256-GFpDNFn14aAqpBesICGS9AuKpxAe/UwRzTeWP4MReTU=" 867 867 }, 868 868 "opsgenie": { 869 869 "hash": "sha256-Wbe+DyK5wKuZZX8yd3DJN+2wT8KZt+YsBwJYKnZnfcI=", ··· 875 875 "vendorHash": null 876 876 }, 877 877 "ovh": { 878 - "hash": "sha256-LcSrs4FUrtp/4tp1xlBPKkfQ3J8FlZ/peL9NcC7XQy4=", 878 + "hash": "sha256-xims3nYFVSS38FIMJhUhtK7lKpnRzzlojYZY6t57owA=", 879 879 "homepage": "https://registry.terraform.io/providers/ovh/ovh", 880 880 "owner": "ovh", 881 881 "repo": "terraform-provider-ovh", 882 - "rev": "v0.26.0", 882 + "rev": "v0.27.0", 883 883 "spdx": "MPL-2.0", 884 884 "vendorHash": null 885 885 }, 886 886 "pagerduty": { 887 - "hash": "sha256-utbV/EVSYIln0ruf4qis9rbKifx/DUct3tDOTUO22N0=", 887 + "hash": "sha256-oD8YytttqaZwYk8/c5t7TvFpxw3QViZpkHiOpuMxaFI=", 888 888 "homepage": "https://registry.terraform.io/providers/PagerDuty/pagerduty", 889 889 "owner": "PagerDuty", 890 890 "repo": "terraform-provider-pagerduty", 891 - "rev": "v2.9.3", 891 + "rev": "v2.10.2", 892 892 "spdx": "MPL-2.0", 893 893 "vendorHash": null 894 894 },
+2 -2
pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
··· 75 75 in 76 76 env.mkDerivation rec { 77 77 pname = "telegram-desktop"; 78 - version = "4.6.1"; 78 + version = "4.6.2"; 79 79 # Note: Update via pkgs/applications/networking/instant-messengers/telegram/tdesktop/update.py 80 80 81 81 # Telegram-Desktop with submodules ··· 84 84 repo = "tdesktop"; 85 85 rev = "v${version}"; 86 86 fetchSubmodules = true; 87 - sha256 = "1df9rx3a6xvgipgzn5h4jc46nsdkypl4255si606bkrccdz8bcrl"; 87 + sha256 = "0lrflhnlsajay8gbz1x91fqk2ckxwpqmm19hyjfqxkvi56nl7a0g"; 88 88 }; 89 89 90 90 postPatch = ''
+2 -2
pkgs/applications/office/qownnotes/default.nix
··· 17 17 let 18 18 pname = "qownnotes"; 19 19 appname = "QOwnNotes"; 20 - version = "23.1.2"; 20 + version = "23.2.0"; 21 21 in 22 22 stdenv.mkDerivation { 23 23 inherit pname appname version; 24 24 25 25 src = fetchurl { 26 26 url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz"; 27 - sha256 = "sha256-yfsptsatmi0A+qLKHxchaLuu0WkJnUk7sjs1Pb/D6NU="; 27 + sha256 = "sha256-S5m78E1wrWBu/bMmNUmv/ZprebyYPC9NDfINU2C/i8w="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+4 -4
pkgs/applications/version-management/gitkraken/default.nix
··· 10 10 11 11 let 12 12 pname = "gitkraken"; 13 - version = "9.0.0"; 13 + version = "9.1.0"; 14 14 15 15 throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}"; 16 16 17 17 srcs = { 18 18 x86_64-linux = fetchzip { 19 19 url = "https://release.axocdn.com/linux/GitKraken-v${version}.tar.gz"; 20 - sha256 = "sha256-I6iIg+RBTz5HyommAvDuQBBURjMm04t31o5OZNCrYGc="; 20 + sha256 = "sha256-HRd2jfTbdFKVMbnD4CzMsE22urExGrpf8rgli3dqVUY="; 21 21 }; 22 22 23 23 x86_64-darwin = fetchzip { 24 24 url = "https://release.axocdn.com/darwin/GitKraken-v${version}.zip"; 25 - sha256 = "1dhswjzyjrfz4psjji53fjpvb8845lv44qqc6ncfv1ljx9ky828r"; 25 + sha256 = "sha256-zJEjJ+l0/S8B2b7mlDd2sln8GsvCaZZIcarC45rLATQ="; 26 26 }; 27 27 28 28 aarch64-darwin = fetchzip { 29 29 url = "https://release.axocdn.com/darwin-arm64/GitKraken-v${version}.zip"; 30 - sha256 = "0jzcwx1z240rr08qc6vbasn51bcadz2jl3vm3jwgjpfdwypnsvk1"; 30 + sha256 = "sha256-5wep4FDNZwNOK05tm24132JuyBWUJRyeRpJDF7PLYoQ="; 31 31 }; 32 32 }; 33 33
+2 -2
pkgs/applications/version-management/sublime-merge/default.nix
··· 4 4 common = opts: callPackage (import ./common.nix opts); 5 5 in { 6 6 sublime-merge = common { 7 - buildVersion = "2079"; 8 - x64sha256 = "y4ocLXxxEkGaw9O/vhX9MJnc56QgK37YPJkUwK2YS0U="; 7 + buildVersion = "2083"; 8 + x64sha256 = "bWHbP8j228jUDr1XDLRciq7hcET6o6Udr/lLODXRudc="; 9 9 } {}; 10 10 11 11 sublime-merge-dev = common {
+2 -2
pkgs/applications/video/obs-studio/default.nix
··· 50 50 in 51 51 stdenv.mkDerivation rec { 52 52 pname = "obs-studio"; 53 - version = "29.0.0"; 53 + version = "29.0.2"; 54 54 55 55 src = fetchFromGitHub { 56 56 owner = "obsproject"; 57 57 repo = "obs-studio"; 58 58 rev = version; 59 - sha256 = "sha256-c+G02k4AACaYfa5Zhsanr6AU3vNbopDMcYtuny/d25Y="; 59 + sha256 = "sha256-TIUSjyPEsKRNTSLQXuLJGEgD989hJ5GhOsqJ4nkKVsY="; 60 60 fetchSubmodules = true; 61 61 }; 62 62
+12
pkgs/applications/virtualization/libgovirt/auto-disable-incompatible-compiler-warnings.patch
··· 1 + diff --git a/meson.build b/meson.build 2 + index d5c3627..2bd692a 100644 3 + --- a/meson.build 4 + +++ b/meson.build 5 + @@ -86,7 +86,7 @@ govirt_global_cflags = ['-std=c99', 6 + '-Woverride-init', 7 + '-Wno-unused-parameter'] 8 + 9 + -foreach arg : govirt_global_cflags 10 + +foreach arg : compiler.get_supported_arguments(govirt_global_cflags) 11 + add_project_arguments(arg, language : 'c') 12 + endforeach
+19 -17
pkgs/applications/virtualization/libgovirt/default.nix
··· 1 1 { lib 2 2 , stdenv 3 - , fetchurl 4 - , glib 3 + , fetchzip 5 4 , gnome 6 - , librest 7 - , libsoup 5 + , meson 8 6 , pkg-config 9 7 , gobject-introspection 8 + , ninja 9 + , glib 10 + , librest_1_0 10 11 }: 11 12 12 13 stdenv.mkDerivation rec { 13 14 pname = "libgovirt"; 14 - version = "0.3.8"; 15 + version = "0.3.9"; 15 16 16 17 outputs = [ "out" "dev" ]; 17 18 18 - src = fetchurl { 19 + src = fetchzip { 19 20 url = "mirror://gnome/sources/libgovirt/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 20 - sha256 = "HckYYikXa9+p8l/Y+oLAoFi2pgwcyAfHUH7IqTwPHfg="; 21 + sha256 = "sha256-6RDuJTyaVYlO4Kq+niQyepom6xj1lqdBbyWL/VnZUdk="; 21 22 }; 22 23 23 - patches = lib.optionals stdenv.isDarwin [ 24 - # The flag breaks the build on darwin and doesn't seem necessary 25 - ./no-version-script-ld-flag.patch 24 + patches = [ 25 + # https://gitlab.gnome.org/GNOME/libgovirt/-/issues/9 26 + ./auto-disable-incompatible-compiler-warnings.patch 26 27 ]; 28 + NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang (lib.concatStringsSep " " [ 29 + "-Wno-typedef-redefinition" 30 + "-Wno-missing-field-initializers" 31 + "-Wno-cast-align" 32 + ]); 27 33 28 34 nativeBuildInputs = [ 35 + meson 29 36 pkg-config 30 37 gobject-introspection 31 - ]; 32 - 33 - buildInputs = [ 34 - libsoup 38 + ninja 35 39 ]; 36 40 37 41 propagatedBuildInputs = [ 38 42 glib 39 - librest 43 + librest_1_0 40 44 ]; 41 - 42 - enableParallelBuilding = true; 43 45 44 46 passthru = { 45 47 updateScript = gnome.updateScript {
-14
pkgs/applications/virtualization/libgovirt/no-version-script-ld-flag.patch
··· 1 - --- a/govirt/Makefile.in 2 - +++ b/govirt/Makefile.in 3 - @@ -511,8 +511,7 @@ 4 - libgovirt_la_LDFLAGS = \ 5 - -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ 6 - -export-dynamic \ 7 - - -no-undefined \ 8 - - -Wl,--version-script=$(srcdir)/govirt.sym 9 - + -no-undefined 10 - 11 - libgovirt_la_CFLAGS = \ 12 - $(WARNINGFLAGS_C) 13 - 14 - Diff finished. Fri Oct 28 10:36:38 2022
+21 -18
pkgs/applications/virtualization/virt-viewer/default.nix
··· 3 3 , bash-completion 4 4 , fetchurl 5 5 , fetchpatch 6 - , gdbm ? null 6 + , gdbm 7 7 , glib 8 8 , gsettings-desktop-schemas 9 9 , gtk-vnc 10 10 , gtk3 11 11 , intltool 12 - , libcap ? null 12 + , libcap 13 13 , libgovirt 14 + # Currently unsupported. According to upstream, libgovirt is for a very narrow 15 + # use-case and we don't currently cover it in Nixpkgs. It's safe to disable. 16 + # https://gitlab.com/virt-viewer/virt-viewer/-/issues/100#note_1265011223 17 + # Can be enabled again once this is merged: 18 + # https://gitlab.com/virt-viewer/virt-viewer/-/merge_requests/129 19 + , ovirtSupport ? false 14 20 , libvirt 15 21 , libvirt-glib 16 22 , libxml2 ··· 19 25 , pkg-config 20 26 , python3 21 27 , shared-mime-info 22 - # https://gitlab.com/virt-viewer/virt-viewer/-/issues/88 23 - , spice-gtk_libsoup2 ? null 24 - , spice-protocol ? null 28 + , spice-gtk 29 + , spice-protocol 25 30 , spiceSupport ? true 26 31 , vte 27 32 , wrapGAppsHook 28 33 }: 29 34 30 - assert spiceSupport -> ( 31 - gdbm != null 32 - && (stdenv.isLinux -> libcap != null) 33 - && spice-gtk_libsoup2 != null 34 - && spice-protocol != null 35 - ); 36 - 37 35 with lib; 38 36 39 37 stdenv.mkDerivation rec { ··· 46 44 }; 47 45 48 46 patches = [ 49 - # Fix build with meson 0.61 50 - # https://gitlab.com/virt-viewer/virt-viewer/-/merge_requests/117 47 + # Fix build with meson 0.61. Should be fixed in the next release. 48 + # https://gitlab.com/virt-viewer/virt-viewer/-/merge_requests/120 51 49 (fetchpatch { 52 - url = "https://gitlab.com/virt-viewer/virt-viewer/-/commit/ed19e51407bee53988878a6ebed4e7279d00b1a1.patch"; 50 + url = "https://gitlab.com/virt-viewer/virt-viewer/-/commit/98d9f202ef768f22ae21b5c43a080a1aa64a7107.patch"; 53 51 sha256 = "sha256-3AbnkbhWOh0aNjUkmVoSV/9jFQtvTllOr7plnkntb2o="; 54 52 }) 55 53 ]; ··· 71 69 gsettings-desktop-schemas 72 70 gtk-vnc 73 71 gtk3 74 - libgovirt 75 72 libvirt 76 73 libvirt-glib 77 74 libxml2 78 75 vte 76 + ] ++ optionals ovirtSupport [ 77 + libgovirt 79 78 ] ++ optionals spiceSupport ([ 80 79 gdbm 81 - spice-gtk_libsoup2 80 + spice-gtk 82 81 spice-protocol 83 82 ] ++ optionals stdenv.isLinux [ 84 83 libcap 85 84 ]); 86 85 87 86 # Required for USB redirection PolicyKit rules file 88 - propagatedUserEnvPkgs = optional spiceSupport spice-gtk_libsoup2; 87 + propagatedUserEnvPkgs = optional spiceSupport spice-gtk; 88 + 89 + mesonFlags = [ 90 + (lib.mesonEnable "ovirt" ovirtSupport) 91 + ]; 89 92 90 93 strictDeps = true; 91 94
+2 -2
pkgs/data/fonts/sarasa-gothic/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "sarasa-gothic"; 5 - version = "0.39.0"; 5 + version = "0.40.0"; 6 6 7 7 src = fetchurl { 8 8 # Use the 'ttc' files here for a smaller closure size. 9 9 # (Using 'ttf' files gives a closure size about 15x larger, as of November 2021.) 10 10 url = "https://github.com/be5invis/Sarasa-Gothic/releases/download/v${version}/sarasa-gothic-ttc-${version}.7z"; 11 - hash = "sha256-n21aVsyQbZGR/dgAkYwMHB8VozTaazFVP29+p39SRKU="; 11 + hash = "sha256-i8W1PLFPXR7ftRt51LmKZEqc22ms7RGFW9cKMUsMRhk="; 12 12 }; 13 13 14 14 sourceRoot = ".";
+2 -2
pkgs/data/icons/numix-icon-theme-circle/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "numix-icon-theme-circle"; 5 - version = "23.01.29"; 5 + version = "23.02.05"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "numixproject"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-VmVzU8ACBE4Rx0uVScdQVbygDLE9MmD7ssD1j4ri74g="; 11 + sha256 = "sha256-wS7GAfrzJ2/BvfoBZ7YR/X5j/ND4o7shf08dgk9GBkA="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ gtk3 ];
+2 -2
pkgs/desktops/gnome/apps/ghex/default.nix
··· 22 22 23 23 stdenv.mkDerivation rec { 24 24 pname = "ghex"; 25 - version = "43.0"; 25 + version = "43.1"; 26 26 27 27 outputs = [ "out" "dev" "devdoc" ]; 28 28 29 29 src = fetchurl { 30 30 url = "mirror://gnome/sources/ghex/${lib.versions.major version}/${pname}-${version}.tar.xz"; 31 - sha256 = "hmwGIsZv21rSpHXpz8zLIZocZDHwCayyKR1D8hQLFH4="; 31 + sha256 = "pUuUPv5CAQqcEuTc2ts3e/NslMOAB3i4Uww6g0QJ3Mc="; 32 32 }; 33 33 34 34 nativeBuildInputs = [
+2 -2
pkgs/development/compilers/p4c/default.nix
··· 27 27 in 28 28 stdenv.mkDerivation rec { 29 29 pname = "p4c"; 30 - version = "1.2.3.5"; 30 + version = "1.2.3.6"; 31 31 32 32 src = fetchFromGitHub { 33 33 owner = "p4lang"; 34 34 repo = "p4c"; 35 35 rev = "v${version}"; 36 - sha256 = "sha256-5wDwHj+1X6HhhiLfEbOzijpZH6GwpTPEKgNh3iIGTWY="; 36 + sha256 = "sha256-3i2L1wORVN+X5sr4Hs+zGD/GgM1sAXt34R4kGMkd4qk="; 37 37 fetchSubmodules = true; 38 38 }; 39 39
+7 -7
pkgs/development/compilers/yosys/plugins/symbiflow.nix
··· 15 15 src = fetchFromGitHub { 16 16 owner = "chipsalliance"; 17 17 repo = "yosys-f4pga-plugins"; 18 - rev = "e23ff6db487da9ceea576c53ac33853566c3a84e"; 19 - hash = "sha256-HJ4br6lQwRrcnkLgV3aecr3T3zcPzA11MfxhRjwIb0I="; 18 + rev = "08430ec4f53d1cf9d6a2091211d6c5ce501d5486"; 19 + hash = "sha256-xCFi8OrNfsKt7bVSYJ/yuBify/pyCU1rI16gaCBgil8="; 20 20 }; 21 21 22 - version = "2022.11.07"; 22 + version = "2023.02.08"; 23 23 24 24 # Supported symbiflow plugins. 25 25 # ··· 79 79 ]; 80 80 81 81 buildFlags = [ 82 - "PLUGINS_DIR=\${out}/share/yosys/plugins/" 83 - "DATA_DIR=\${out}/share/yosys/" 82 + "YOSYS_PLUGINS_DIR=\${out}/share/yosys/plugins/" 83 + "YOSYS_DATA_DIR=\${out}/share/yosys/" 84 84 ]; 85 85 86 86 checkFlags = [ 87 - "PLUGINS_DIR=\${NIX_BUILD_TOP}/source/${plugin}-plugin" 88 - "DATA_DIR=\${NIX_BUILD_TOP}/source/${plugin}-plugin" 87 + "YOSYS_PLUGINS_DIR=\${NIX_BUILD_TOP}/source/${plugin}-plugin" 88 + "YOSYS_DATA_DIR=\${NIX_BUILD_TOP}/source/${plugin}-plugin" 89 89 ( "NIX_YOSYS_PLUGIN_DIRS=\${NIX_BUILD_TOP}/source/${plugin}-plugin" 90 90 # sdc and xdc plugins use design introspection for their tests 91 91 + (lib.optionalString ( plugin == "sdc" || plugin == "xdc" )
+2 -2
pkgs/development/libraries/folly/default.nix
··· 22 22 23 23 stdenv.mkDerivation rec { 24 24 pname = "folly"; 25 - version = "2023.01.30.00"; 25 + version = "2023.02.06.00"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "facebook"; 29 29 repo = "folly"; 30 30 rev = "v${version}"; 31 - sha256 = "sha256-p5IAbXPUrGtJotwabpEShNsUZNeF6ncHbDXaNabdaaY="; 31 + sha256 = "sha256-37BoLs7LynuMuF7cdJtVOfZSs22PZr6DYNAVwigZghw="; 32 32 }; 33 33 34 34 nativeBuildInputs = [
+27 -2
pkgs/development/libraries/gtk-layer-shell/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 + , stdenv 2 3 , fetchFromGitHub 4 + , fetchpatch 3 5 , meson 4 6 , ninja 5 7 , pkg-config 6 8 , gtk-doc 7 9 , docbook-xsl-nons 8 10 , docbook_xml_dtd_43 11 + , wayland-scanner 9 12 , wayland 10 13 , gtk3 11 14 , gobject-introspection ··· 26 29 sha256 = "sha256-Z7jPYLKgkwMNXu80aaZ2vNj57LbN+X2XqlTTq6l0wTE="; 27 30 }; 28 31 32 + patches = [ 33 + # https://github.com/wmww/gtk-layer-shell/pull/146 34 + # Mark wayland-scanner as a build-time dependency 35 + (fetchpatch { 36 + url = "https://github.com/wmww/gtk-layer-shell/commit/6fd16352e5b35fefc91aa44e73671addaaa95dfc.patch"; 37 + hash = "sha256-U/mxmcRcZnsF0fvWW0axo6ajqW40NuOzNIAzoLCboRM="; 38 + }) 39 + # https://github.com/wmww/gtk-layer-shell/pull/147 40 + # Remove redundant dependency check for gtk-doc 41 + (fetchpatch { 42 + url = "https://github.com/wmww/gtk-layer-shell/commit/124ccc2772d5ecbb40b54872c22e594c74bd39bc.patch"; 43 + hash = "sha256-WfrWe9UJCp1RvVJhURAxGw4jzqPjoaP6182jVdoEAQs="; 44 + }) 45 + ]; 46 + 47 + strictDeps = true; 48 + 49 + depsBuildBuild = [ 50 + pkg-config 51 + ]; 52 + 29 53 nativeBuildInputs = [ 30 54 meson 31 55 ninja ··· 35 59 docbook-xsl-nons 36 60 docbook_xml_dtd_43 37 61 vala 62 + wayland-scanner 38 63 ]; 39 64 40 65 buildInputs = [ ··· 51 76 description = "A library to create panels and other desktop components for Wayland using the Layer Shell protocol"; 52 77 license = licenses.lgpl3Plus; 53 78 maintainers = with maintainers; [ eonpatapon ]; 54 - platforms = platforms.unix; 79 + platforms = platforms.linux; 55 80 }; 56 81 }
+2 -2
pkgs/development/libraries/ogre/default.nix
··· 36 36 37 37 stdenv.mkDerivation rec { 38 38 pname = "ogre"; 39 - version = "13.6.1"; 39 + version = "13.6.2"; 40 40 41 41 src = fetchFromGitHub { 42 42 owner = "OGRECave"; 43 43 repo = "ogre"; 44 44 rev = "v${version}"; 45 - hash = "sha256-UG/vwLE80Ski9NwMj9E5+PoLU6rSCdJrSmQOmmFv66U="; 45 + hash = "sha256-4Jmhseg1+4g0b8Pa8A4YL+ixYMe/HxzXrDaXUfElh+k="; 46 46 }; 47 47 48 48 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/quictls/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "quictls"; 15 - version = "3.0.7+quic1"; 15 + version = "3.0.8+quic"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "quictls"; 19 19 repo = "openssl"; 20 20 rev = "openssl-${version}"; 21 - sha256 = "sha256-ZRS0ZV+/U4PD2lVE+PsUAWSuk5EFg5mOKYlwgY3Ecus="; 21 + sha256 = "sha256-6t23EY+Gk/MvLOcYpDbL5jEr0rMaaPYOsc+12WFgv1c="; 22 22 }; 23 23 24 24 patches = [
+8 -4
pkgs/development/libraries/rocksdb/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 + , stdenv 2 3 , fetchFromGitHub 3 4 , fetchpatch 4 5 , cmake ··· 8 9 , snappy 9 10 , zlib 10 11 , zstd 11 - , enableJemalloc ? false, jemalloc 12 + , windows 13 + , enableJemalloc ? false 14 + , jemalloc 12 15 , enableLite ? false 13 16 , enableShared ? !stdenv.hostPlatform.isStatic 14 17 , sse42Support ? stdenv.hostPlatform.sse4_2Support ··· 29 32 30 33 propagatedBuildInputs = [ bzip2 lz4 snappy zlib zstd ]; 31 34 32 - buildInputs = lib.optional enableJemalloc jemalloc; 35 + buildInputs = lib.optional enableJemalloc jemalloc 36 + ++ lib.optional stdenv.hostPlatform.isMinGW windows.mingw_w64_pthreads; 33 37 34 38 outputs = [ 35 39 "out" ··· 73 77 74 78 preInstall = '' 75 79 mkdir -p $tools/bin 76 - cp tools/{ldb,sst_dump} $tools/bin/ 80 + cp tools/{ldb,sst_dump}${stdenv.hostPlatform.extensions.executable} $tools/bin/ 77 81 '' + lib.optionalString stdenv.isDarwin '' 78 82 ls -1 $tools/bin/* | xargs -I{} install_name_tool -change "@rpath/librocksdb.7.dylib" $out/lib/librocksdb.dylib {} 79 83 '' + lib.optionalString (stdenv.isLinux && enableShared) ''
+2 -2
pkgs/development/mobile/maestro/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "maestro"; 5 - version = "1.21.3"; 5 + version = "1.22.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/mobile-dev-inc/maestro/releases/download/cli-${version}/maestro.zip"; 9 - sha256 = "1sphkzknz4lidj3vxzvq31x6k6si32smn2yylibccv4p4hjwvn68"; 9 + sha256 = "0h1012mdw8k4hf1fflxhbq7rq1gpwgs7a9v5sghc9minjc3b3z8h"; 10 10 }; 11 11 12 12 dontUnpack = true;
+1
pkgs/development/python-modules/aesedb/default.nix
··· 39 39 meta = with lib; { 40 40 description = "Parser for JET databases"; 41 41 homepage = "https://github.com/skelsec/aesedb"; 42 + changelog = "https://github.com/skelsec/aesedb/releases/tag/${version}"; 42 43 license = with licenses; [ mit ]; 43 44 maintainers = with maintainers; [ fab ]; 44 45 };
+13 -7
pkgs/development/python-modules/aiowinreg/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchPypi 3 + , fetchFromGitHub 4 + , prompt-toolkit 4 5 , pythonOlder 5 6 , winacl 6 - , prompt-toolkit 7 7 }: 8 8 9 9 buildPythonPackage rec { 10 10 pname = "aiowinreg"; 11 - version = "0.0.7"; 11 + version = "0.0.8"; 12 + format = "setuptools"; 12 13 13 14 disabled = pythonOlder "3.6"; 14 15 15 - src = fetchPypi { 16 - inherit pname version; 17 - sha256 = "1p88q2b6slm1sw3234r40s9jd03fqlkcx8y3iwg6ihf0z4ww14d1"; 16 + src = fetchFromGitHub { 17 + owner = "skelsec"; 18 + repo = pname; 19 + rev = "refs/tags/${version}"; 20 + hash = "sha256-4/xElE70rJKBMS1HdHb6BlcKs4gzNfuEo/6ahN6ixSM="; 18 21 }; 19 22 20 23 propagatedBuildInputs = [ ··· 25 28 # Project doesn't have tests 26 29 doCheck = false; 27 30 28 - pythonImportsCheck = [ "aiowinreg" ]; 31 + pythonImportsCheck = [ 32 + "aiowinreg" 33 + ]; 29 34 30 35 meta = with lib; { 31 36 description = "Python module to parse the registry hive"; 32 37 homepage = "https://github.com/skelsec/aiowinreg"; 38 + changelog = "https://github.com/skelsec/aiowinreg/releases/tag/${version}"; 33 39 license = with licenses; [ mit ]; 34 40 maintainers = with maintainers; [ fab ]; 35 41 };
+2 -2
pkgs/development/python-modules/awscrt/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "awscrt"; 15 - version = "0.16.8"; 15 + version = "0.16.10"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.7"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - hash = "sha256-26JjUlFLyNtm93/UkvEO+eV22ZHI1gxWecf2cuBifgE="; 22 + hash = "sha256-MQFJm0ebgvBAP2Fb9SDB+LlQaBjSdePiit4lzGvNuSs="; 23 23 }; 24 24 25 25 buildInputs = lib.optionals stdenv.isDarwin [
+2 -5
pkgs/development/python-modules/flax/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "flax"; 20 - version = "0.6.3"; 20 + version = "0.6.1"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "google"; 24 24 repo = pname; 25 25 rev = "refs/tags/v${version}"; 26 - sha256 = "sha256-4BYfrwEddA2LCMyDO6PBBYdMVTqqDxhzMCZ5JIIml3g="; 26 + sha256 = "sha256-fZiODo+izOwGjCCTvi11GvUG/VQL1DV9bNXKjvIIw4A="; 27 27 }; 28 28 29 29 buildInputs = [ jaxlib ]; ··· 87 87 homepage = "https://github.com/google/flax"; 88 88 license = licenses.asl20; 89 89 maintainers = with maintainers; [ ndl ]; 90 - # Py3.10 requires orbax, tensorstore which needs packaging 91 - # Py3.11 requires tensorboard, which is unsupported at py3.11 atm 92 - broken = true; # At 2023-02-05 93 90 }; 94 91 }
+2 -2
pkgs/development/python-modules/google-cloud-bigquery/default.nix
··· 28 28 29 29 buildPythonPackage rec { 30 30 pname = "google-cloud-bigquery"; 31 - version = "3.4.2"; 31 + version = "3.5.0"; 32 32 format = "setuptools"; 33 33 34 34 disabled = pythonOlder "3.7"; 35 35 36 36 src = fetchPypi { 37 37 inherit pname version; 38 - hash = "sha256-Ik3DKbxa0J1hTbdlyV8LuLJPCIGz0qSFQGLKNG+IlvA="; 38 + hash = "sha256-3TyoTlvm+p4FcPshZlqQLMVlHL0EWEL7cUFkyZomOcQ="; 39 39 }; 40 40 41 41 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-spanner/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "google-cloud-spanner"; 20 - version = "3.27.0"; 20 + version = "3.27.1"; 21 21 format = "setuptools"; 22 22 23 23 disabled = pythonOlder "3.7"; 24 24 25 25 src = fetchPypi { 26 26 inherit pname version; 27 - hash = "sha256-6zrAz+VqO8ojC+E0wcYMktZpnWF7skSj6R4GRrJ3nOs="; 27 + hash = "sha256-1/pGE8Ql50B8hY4I/o5AhPIDOuE3EQcro2zMN23zLsc="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/insteon-frontend-home-assistant/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "insteon-frontend-home-assistant"; 10 - version = "0.3.0"; 10 + version = "0.3.1"; 11 11 format = "pyproject"; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-QaWRafp0901vQFMtlmFzkugNsM4PHRll+FUZlEz6E5g="; 17 + hash = "sha256-gS2jDjgAcY4ve80yOPZcZR1v4c9EISYEoJkIezUQilU="; 18 18 }; 19 19 20 20 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/msgspec/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "msgspec"; 11 - version = "0.12.0"; 11 + version = "0.13.0"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 17 17 owner = "jcrist"; 18 18 repo = pname; 19 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-9k1lpx5pb9idMwgYAZjVEM915w5wsmLWQ/tnHNSKHAs="; 20 + hash = "sha256-R3/ljUBm0WTRIdp5qoHtH3k1ReaMzASsD4tB8bHKAMc="; 21 21 }; 22 22 23 23 # Requires libasan to be accessible
+3 -2
pkgs/development/python-modules/nextcord/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "nextcord"; 19 - version = "2.3.2"; 19 + version = "2.3.3"; 20 20 21 21 format = "setuptools"; 22 22 ··· 26 26 owner = "nextcord"; 27 27 repo = "nextcord"; 28 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-ZflCOTqNhalBhxDkee3UwusiVA+ShtfabP0slE28/UQ="; 29 + hash = "sha256-0ZWPoDLlGwLWReOeZc2GgW1FbUufrxTzUndNe5h7Kas="; 30 30 }; 31 31 32 32 patches = [ ··· 56 56 ]; 57 57 58 58 meta = with lib; { 59 + changelog = "https://github.com/nextcord/nextcord/blob/${src.rev}/docs/whats_new.rst"; 59 60 description = "Python wrapper for the Discord API forked from discord.py"; 60 61 homepage = "https://github.com/nextcord/nextcord"; 61 62 license = licenses.mit;
+2 -2
pkgs/development/python-modules/pytenable/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "pytenable"; 23 - version = "1.4.11"; 23 + version = "1.4.12"; 24 24 format = "setuptools"; 25 25 26 26 disabled = pythonOlder "3.7"; ··· 29 29 owner = "tenable"; 30 30 repo = "pyTenable"; 31 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-GSEMjgG8Q+gzHQWRbXr/qiGP6U6ydPxu0JsD56mRNWU="; 32 + hash = "sha256-vuwD9NVomxwG1IQioy6TzEHnibCdpg+VyCXjnjnmw54="; 33 33 }; 34 34 35 35 propagatedBuildInputs = [
+8 -9
pkgs/development/python-modules/torch/binary-hashes.nix
··· 9 9 "1.13.1" = { 10 10 x86_64-linux-37 = { 11 11 name = "torch-1.13.1-cp37-cp37m-linux_x86_64.whl"; 12 - url = "https://download.pytorch.org/whl/cu116/torch-1.13.1%2Bcu116-cp37-cp37m-linux_x86_64.whl"; 13 - hash = "sha256-INfG4AgEtr6m9pt3JAxPzfJEzOL2sf9zvv98DfZVPZ0="; 12 + url = "https://download.pytorch.org/whl/cu117/torch-1.13.1%2Bcu117-cp37-cp37m-linux_x86_64.whl"; 13 + hash = "sha256-bXg6H3mHFyTK2jw3TKUJiGNZqMSseNBT34mxQu6QREA="; 14 14 }; 15 15 x86_64-linux-38 = { 16 16 name = "torch-1.13.1-cp38-cp38-linux_x86_64.whl"; 17 - url = "https://download.pytorch.org/whl/cu116/torch-1.13.1%2Bcu116-cp38-cp38-linux_x86_64.whl"; 18 - hash = "sha256-kzj6oKWg62JeF+OXKfBvsKV0CY16uI2Fa72ky3agtmU="; 17 + url = "https://download.pytorch.org/whl/cu117/torch-1.13.1%2Bcu117-cp38-cp38-linux_x86_64.whl"; 18 + hash = "sha256-u/lUbw0Ni1EmPKR5Y3tCaogzX8oANPQs7GPU0y3uBa8="; 19 19 }; 20 20 x86_64-linux-39 = { 21 21 name = "torch-1.13.1-cp39-cp39-linux_x86_64.whl"; 22 - url = "https://download.pytorch.org/whl/cu116/torch-1.13.1%2Bcu116-cp39-cp39-linux_x86_64.whl"; 23 - hash = "sha256-20V6gi1zYBO2/+UJBTABvJGL3Xj+aJZ7YF9TmEqa+sU="; 22 + url = "https://download.pytorch.org/whl/cu117/torch-1.13.1%2Bcu117-cp39-cp39-linux_x86_64.whl"; 23 + hash = "sha256-s6wTng1KCzA8wW9R63cUbsfRTAsecCrWOGE2KPUIavc="; 24 24 }; 25 25 x86_64-linux-310 = { 26 26 name = "torch-1.13.1-cp310-cp310-linux_x86_64.whl"; 27 - url = "https://download.pytorch.org/whl/cu116/torch-1.13.1%2Bcu116-cp310-cp310-linux_x86_64.whl"; 28 - hash = "sha256-UdWHDN8FtiCLHHOf4LpRG5d+yjf5UHgpZ1WWrMEbbKQ="; 27 + url = "https://download.pytorch.org/whl/cu117/torch-1.13.1%2Bcu117-cp310-cp310-linux_x86_64.whl"; 28 + hash = "sha256-FMXJ2wnfjPGzlCo0ecd52m4pOoShYtimrHHiveMOMMU="; 29 29 }; 30 30 x86_64-darwin-37 = { 31 31 name = "torch-1.13.1-cp37-none-macosx_10_9_x86_64.whl"; ··· 62 62 url = "https://download.pytorch.org/whl/cpu/torch-1.13.1-cp310-none-macosx_11_0_arm64.whl"; 63 63 hash = "sha256-ASKAaxEblJ0h+hpfl2TR/S/MSkfLf4/5FCBP1Px1LtU="; 64 64 }; 65 - 66 65 }; 67 66 }
+1 -1
pkgs/development/python-modules/torch/prefetch.sh
··· 5 5 6 6 version=$1 7 7 8 - linux_cuda_version="cu116" 8 + linux_cuda_version="cu117" 9 9 linux_bucket="https://download.pytorch.org/whl/${linux_cuda_version}" 10 10 darwin_bucket="https://download.pytorch.org/whl/cpu" 11 11
+8 -8
pkgs/development/python-modules/torchaudio/binary-hashes.nix
··· 9 9 "0.13.1" = { 10 10 x86_64-linux-37 = { 11 11 name = "torchaudio-0.13.1-cp37-cp37m-linux_x86_64.whl"; 12 - url = "https://download.pytorch.org/whl/cu116/torchaudio-0.13.1%2Bcu116-cp37-cp37m-linux_x86_64.whl"; 13 - hash = "sha256-jrztfOrRCFKVNuXqnyeM3GCRDj/K8DDmW9jNLckCEAs="; 12 + url = "https://download.pytorch.org/whl/cu117/torchaudio-0.13.1%2Bcu117-cp37-cp37m-linux_x86_64.whl"; 13 + hash = "sha256-wQJJ2BPkQAGxXx8H0rt3P39wsl/6KhbF27wYHT5L6/o="; 14 14 }; 15 15 x86_64-linux-38 = { 16 16 name = "torchaudio-0.13.1-cp38-cp38-linux_x86_64.whl"; 17 - url = "https://download.pytorch.org/whl/cu116/torchaudio-0.13.1%2Bcu116-cp38-cp38-linux_x86_64.whl"; 18 - hash = "sha256-oESJecUUYoHWYkPa8/+t86rjEj4F4CNpvPpCwZAk5AY="; 17 + url = "https://download.pytorch.org/whl/cu117/torchaudio-0.13.1%2Bcu117-cp38-cp38-linux_x86_64.whl"; 18 + hash = "sha256-QCY7LUVyj7/x2zOBJyvkKXD/blj5KZSqWHKlvUx+cmQ="; 19 19 }; 20 20 x86_64-linux-39 = { 21 21 name = "torchaudio-0.13.1-cp39-cp39-linux_x86_64.whl"; 22 - url = "https://download.pytorch.org/whl/cu116/torchaudio-0.13.1%2Bcu116-cp39-cp39-linux_x86_64.whl"; 23 - hash = "sha256-W8DinLePfEUu608nApxABJdw1RVTv4QLTKLt1j2iie4="; 22 + url = "https://download.pytorch.org/whl/cu117/torchaudio-0.13.1%2Bcu117-cp39-cp39-linux_x86_64.whl"; 23 + hash = "sha256-Zbs2FdQz1bkwrNwQNu+xJAR9VxfbpN63D0GSkNlC+DY="; 24 24 }; 25 25 x86_64-linux-310 = { 26 26 name = "torchaudio-0.13.1-cp310-cp310-linux_x86_64.whl"; 27 - url = "https://download.pytorch.org/whl/cu116/torchaudio-0.13.1%2Bcu116-cp310-cp310-linux_x86_64.whl"; 28 - hash = "sha256-3vRLFxUB3LmU9aGUjVWWYnBXBe475veBvRHvzTu/zTA="; 27 + url = "https://download.pytorch.org/whl/cu117/torchaudio-0.13.1%2Bcu117-cp310-cp310-linux_x86_64.whl"; 28 + hash = "sha256-k/RVSktT+WmNAiJJA8kjwSpsIrPJQtz8IXm1gdjzcUY="; 29 29 }; 30 30 x86_64-darwin-37 = { 31 31 name = "torchaudio-0.13.1-cp37-cp37m-macosx_10_9_x86_64.whl";
+1 -1
pkgs/development/python-modules/torchaudio/prefetch.sh
··· 5 5 6 6 version=$1 7 7 8 - linux_cuda_version="cu116" 8 + linux_cuda_version="cu117" 9 9 linux_bucket="https://download.pytorch.org/whl/${linux_cuda_version}" 10 10 darwin_bucket="https://download.pytorch.org/whl" 11 11
+8 -8
pkgs/development/python-modules/torchvision/binary-hashes.nix
··· 9 9 "0.14.1" = { 10 10 x86_64-linux-37 = { 11 11 name = "torchvision-0.14.1-cp37-cp37m-linux_x86_64.whl"; 12 - url = "https://download.pytorch.org/whl/cu116/torchvision-0.14.1%2Bcu116-cp37-cp37m-linux_x86_64.whl"; 13 - hash = "sha256-SYVxnGbJYS/0uy06U8P6r92TQVKyqHQU0nvceHSkNg8="; 12 + url = "https://download.pytorch.org/whl/cu117/torchvision-0.14.1%2Bcu117-cp37-cp37m-linux_x86_64.whl"; 13 + hash = "sha256-vOOhWqGuclcvjNKOSdHsGtjwhm+7ZhxzaNnBKF9psi4="; 14 14 }; 15 15 x86_64-linux-38 = { 16 16 name = "torchvision-0.14.1-cp38-cp38-linux_x86_64.whl"; 17 - url = "https://download.pytorch.org/whl/cu116/torchvision-0.14.1%2Bcu116-cp38-cp38-linux_x86_64.whl"; 18 - hash = "sha256-R1k1helxw+DJgPq/v7iF61/wVHFrqlVWYMWwMEyeo50="; 17 + url = "https://download.pytorch.org/whl/cu117/torchvision-0.14.1%2Bcu117-cp38-cp38-linux_x86_64.whl"; 18 + hash = "sha256-dAk4UTnOiGTOssgv/OM46+FaVRk/S4DEKm0PnP14Fik="; 19 19 }; 20 20 x86_64-linux-39 = { 21 21 name = "torchvision-0.14.1-cp39-cp39-linux_x86_64.whl"; 22 - url = "https://download.pytorch.org/whl/cu116/torchvision-0.14.1%2Bcu116-cp39-cp39-linux_x86_64.whl"; 23 - hash = "sha256-qfw4BA4TPRd58TG0SXyu+DDp5pn6+JzTI81YeU/7MFs="; 22 + url = "https://download.pytorch.org/whl/cu117/torchvision-0.14.1%2Bcu117-cp39-cp39-linux_x86_64.whl"; 23 + hash = "sha256-iomg7gB9fNulO9VkJth5UGCgZLiRm2GsOeAOOZ3ta+I="; 24 24 }; 25 25 x86_64-linux-310 = { 26 26 name = "torchvision-0.14.1-cp310-cp310-linux_x86_64.whl"; 27 - url = "https://download.pytorch.org/whl/cu116/torchvision-0.14.1%2Bcu116-cp310-cp310-linux_x86_64.whl"; 28 - hash = "sha256-/LWNQb+V3YuF04j6GWnR3K1V7sBV4xeYHWU6BcTKbYs="; 27 + url = "https://download.pytorch.org/whl/cu117/torchvision-0.14.1%2Bcu117-cp310-cp310-linux_x86_64.whl"; 28 + hash = "sha256-g9JxpTA5KBS4x/aTgihcrHx9p5uPXcxrz1bGKFR7zlM="; 29 29 }; 30 30 x86_64-darwin-37 = { 31 31 name = "torchvision-0.14.1-cp37-cp37m-macosx_10_9_x86_64.whl";
+1 -1
pkgs/development/python-modules/torchvision/prefetch.sh
··· 5 5 6 6 version=$1 7 7 8 - linux_cuda_version="cu116" 8 + linux_cuda_version="cu117" 9 9 linux_bucket="https://download.pytorch.org/whl/${linux_cuda_version}" 10 10 darwin_bucket="https://download.pytorch.org/whl" 11 11
+2 -2
pkgs/development/python-modules/twilio/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "twilio"; 17 - version = "7.16.2"; 17 + version = "7.16.3"; 18 18 format = "setuptools"; 19 19 20 20 disabled = pythonOlder "3.6"; ··· 23 23 owner = "twilio"; 24 24 repo = "twilio-python"; 25 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-Z783lHGZc5/Fl4pnM5mf863UVuFroRNwV5cljPSpCmw="; 26 + hash = "sha256-qgsJ/i8gcuirLp8O6XShgdfxdmFyK2H+oWkiP2795rA="; 27 27 }; 28 28 29 29 propagatedBuildInputs = [
+3 -3
pkgs/development/tools/algolia-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "algolia-cli"; 5 - version = "1.2.1"; 5 + version = "1.3.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "algolia"; 9 9 repo = "cli"; 10 10 rev = "v${version}"; 11 - hash = "sha256-rmxLbxotATyURRcG9ryWCDHkH7a/bop/BCDQAoQjXSo="; 11 + hash = "sha256-j0d2HK4McWA2yP7pt+TUOEYVUOQP4NYOdMlK7IqaAcU="; 12 12 }; 13 13 14 - vendorHash = "sha256-iG8g7mBbIulKSxc1a3/fOBOCWoFYaB5FLwJPNKJRZDg="; 14 + vendorHash = "sha256-RG/aLlCve0XLj3ljBBSsloFUgNAG6faqjyMYXOo+CgI="; 15 15 16 16 nativeBuildInputs = [ installShellFiles ]; 17 17
+2
pkgs/development/tools/build-managers/buck/default.nix
··· 40 40 maintainers = [ maintainers.jgertm maintainers.marsam ]; 41 41 license = licenses.asl20; 42 42 platforms = platforms.all; 43 + # https://github.com/facebook/buck/issues/2666 44 + broken = stdenv.isDarwin && stdenv.isAarch64; 43 45 }; 44 46 }
+3 -3
pkgs/development/tools/conftest/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "conftest"; 9 - version = "0.38.0"; 9 + version = "0.39.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "open-policy-agent"; 13 13 repo = "conftest"; 14 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-kbWRjOXfDTVI07KuMQHcyxjenc7fW4oWRgyThzO0Pac="; 15 + hash = "sha256-FVY4mcf08az3poA2AabqnMnQsJ1Jbqqo5oKUNft+XRk="; 16 16 }; 17 - vendorHash = "sha256-8ZGZzb7Ikfk9DZQ6zyB+4JJuqyo4nlBDhGWUb8MtSys="; 17 + vendorHash = "sha256-IzWb5TvZp9wfzjtk3wYWsJepwJU7qeOAoLFt91rqMRQ="; 18 18 19 19 ldflags = [ 20 20 "-s"
+7 -5
pkgs/development/tools/electron-fiddle/default.nix
··· 1 1 { buildFHSUserEnv 2 - , electron_20 2 + , electron_22 3 3 , fetchFromGitHub 4 4 , fetchYarnDeps 5 5 , fixup_yarn_lock ··· 14 14 15 15 let 16 16 pname = "electron-fiddle"; 17 - version = "0.31.0"; 18 - electron = electron_20; 17 + version = "0.32.1"; 18 + electron = electron_22; 19 19 nodejs = nodejs-16_x; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "electron"; 23 23 repo = "fiddle"; 24 24 rev = "v${version}"; 25 - hash = "sha256-GueLG+RYFHi3PVVxBTtpTHhfjygcQ6ZCbrp5n5I1gBM="; 25 + hash = "sha256-k+cbg03mwvobyazIUqm+TO9OMYVFQICy4CtkUZmvkr8="; 26 26 }; 27 27 28 28 inherit (nodejs.pkgs) yarn; 29 29 offlineCache = fetchYarnDeps { 30 30 yarnLock = "${src}/yarn.lock"; 31 - hash = "sha256-WVH1A0wtQl5nR1hvaL6mzm/7XBvo311FPKmsxB82e4U="; 31 + hash = "sha256-3vM+YPIA3zeWBaEFXU5lFl+VaGmAY0Qdg4pSA6mIKl0="; 32 32 }; 33 33 34 34 electronDummyMirror = "https://electron.invalid/"; ··· 89 89 buildFHSUserEnv { 90 90 name = "electron-fiddle"; 91 91 runScript = "${electron}/bin/electron ${unwrapped}/lib/electron-fiddle/resources/app.asar"; 92 + 92 93 extraInstallCommands = '' 93 94 mkdir -p "$out/share/icons/hicolor/scalable/apps" 94 95 ln -s "${unwrapped}/share/icons/hicolor/scalable/apps/electron-fiddle.svg" "$out/share/icons/hicolor/scalable/apps/" 95 96 mkdir -p "$out/share/applications" 96 97 cp "${desktopItem}/share/applications"/*.desktop "$out/share/applications/" 97 98 ''; 99 + 98 100 targetPkgs = pkgs: 99 101 with pkgs; 100 102 map lib.getLib [
+1 -1
pkgs/development/tools/electron/generic.nix
··· 32 32 ++ optionals (versionAtLeast version "11.0.0") [ "aarch64-darwin" ] 33 33 ++ optionals (versionOlder version "19.0.0") [ "i686-linux" ]; 34 34 sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 35 - knownVulnerabilities = optional (versionOlder version "20.0.0") "Electron version ${version} is EOL"; 35 + knownVulnerabilities = optional (versionOlder version "21.0.0") "Electron version ${version} is EOL"; 36 36 }; 37 37 38 38 fetcher = vers: tag: hash: fetchurl {
+2 -2
pkgs/development/tools/esbuild/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "esbuild"; 5 - version = "0.17.5"; 5 + version = "0.17.7"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "evanw"; 9 9 repo = "esbuild"; 10 10 rev = "v${version}"; 11 - hash = "sha256-QLV6+1se3F7naG3jgXtSfmoTR0d7cFByRznzf+xjDpk="; 11 + hash = "sha256-dfXDGXn8Az6JRTcYB/gZgHLxQUKgsWhRXl2h0RqVZ4w="; 12 12 }; 13 13 14 14 vendorHash = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ=";
+3 -3
pkgs/development/tools/rust/rustup/default.nix
··· 23 23 24 24 rustPlatform.buildRustPackage rec { 25 25 pname = "rustup"; 26 - version = "1.25.1"; 26 + version = "1.25.2"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "rust-lang"; 30 30 repo = "rustup"; 31 31 rev = version; 32 - sha256 = "sha256-zCr8xu0j/pBsdJEAYTCGrEouA8QumBnyhM4YLFZJqZI="; 32 + sha256 = "sha256-zFdw6P4yrLDshtF9A5MbkxFcUE8KvlZGx5qkW4LSPzw="; 33 33 }; 34 34 35 - cargoSha256 = "sha256-FDVZn2PjqxovQmmandJICkidurhoXCAxo3bibuxQSMY="; 35 + cargoSha256 = "sha256-QJKxKAW7MutpJsJwB/EImQLPaax7L/A25yRAAwEDXUQ="; 36 36 37 37 nativeBuildInputs = [ makeBinaryWrapper pkg-config ]; 38 38
+2 -2
pkgs/development/tools/twilio-cli/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation (finalAttrs: { 4 4 pname = "twilio-cli"; 5 - version = "5.3.3"; 5 + version = "5.4.0"; 6 6 7 7 src = fetchzip { 8 8 url = "https://twilio-cli-prod.s3.amazonaws.com/twilio-v${finalAttrs.version}/twilio-v${finalAttrs.version}.tar.gz"; 9 - sha256 = "sha256-4ZgPytpv2yxKXADGR4I5+U0YjsvGEvcaF0cGrCJ21aI="; 9 + sha256 = "sha256-DSYZUYC4WJiVOtxBWWGV3x/4wxpiJRQsfQYjgfNIj/4="; 10 10 }; 11 11 12 12 buildInputs = [ nodejs ];
+2 -2
pkgs/os-specific/linux/atop/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "atop"; 15 - version = "2.7.1"; 15 + version = "2.8.1"; 16 16 17 17 src = fetchurl { 18 18 url = "https://www.atoptool.nl/download/atop-${version}.tar.gz"; 19 - sha256 = "sha256-ykjS8X4HHe6tXm6cyeOIv2oycNaV5hl2s3lNTZJ7XE4="; 19 + sha256 = "sha256-lwBYoZt5w0RPlx+FRXKg5jiR3C1fcDf/g3VwhUzg2h4="; 20 20 }; 21 21 22 22 nativeBuildInputs = lib.optionals withAtopgpu [
+2 -2
pkgs/servers/atlassian/confluence.nix
··· 15 15 optionalWarning (crowdProperties != null) "Using `crowdProperties` is deprecated!" 16 16 (stdenvNoCC.mkDerivation rec { 17 17 pname = "atlassian-confluence"; 18 - version = "7.19.1"; 18 + version = "7.19.5"; 19 19 20 20 src = fetchurl { 21 21 url = "https://product-downloads.atlassian.com/software/confluence/downloads/${pname}-${version}.tar.gz"; 22 - sha256 = "sha256-icfyxuS6chh3ibXZ0V9YYB0oCDd9o5rmcDC5Rbr0tOQ="; 22 + sha256 = "sha256-32syhzbFCWzwE2NftTY58aA+iD0kABraT4FA7mYU1II="; 23 23 }; 24 24 25 25 buildPhase = ''
+5 -3
pkgs/servers/misc/navidrome/default.nix
··· 14 14 15 15 let 16 16 17 - version = "0.48.0"; 17 + version = "0.49.1"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "navidrome"; 21 21 repo = "navidrome"; 22 22 rev = "v${version}"; 23 - hash = "sha256-FO2Vl3LeajvZ8CLtnsOSLXr//gaOWPbMthj70RHxp+Q="; 23 + hash = "sha256-YaBtzMW2zUHRYJDDF+mMll2rMBAg5os2HSP0uEujoWI="; 24 24 }; 25 25 26 26 ui = callPackage ./ui { ··· 35 35 36 36 inherit src version; 37 37 38 - vendorSha256 = "sha256-LPoM5RFHfTTWZtlxc59hly12zzrY8wjXGZ6xW2teOFM="; 38 + vendorSha256 = "sha256-9JDP58UxlSadMXD7gUl2oN+uiYN9RlGO4HMuZJhO9mw="; 39 39 40 40 nativeBuildInputs = [ makeWrapper pkg-config ]; 41 41 ··· 70 70 sourceProvenance = with lib.sourceTypes; [ fromSource ]; 71 71 platforms = lib.platforms.unix; 72 72 maintainers = with lib.maintainers; [ aciceri squalus ]; 73 + # Broken on Darwin: sandbox-exec: pattern serialization length exceeds maximum (NixOS/nix#4119) 74 + broken = stdenv.isDarwin; 73 75 }; 74 76 }
+1656 -77
pkgs/servers/misc/navidrome/ui/node-packages.nix
··· 4 4 5 5 let 6 6 sources = { 7 + "@adobe/css-tools-4.0.1" = { 8 + name = "_at_adobe_slash_css-tools"; 9 + packageName = "@adobe/css-tools"; 10 + version = "4.0.1"; 11 + src = fetchurl { 12 + url = "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.0.1.tgz"; 13 + sha512 = "+u76oB43nOHrF4DDWRLWDCtci7f3QJoEBigemIdIeTi1ODqjx6Tad9NCVnPRwewWlKkVab5PlK8DCtPTyX7S8g=="; 14 + }; 15 + }; 7 16 "@ampproject/remapping-2.2.0" = { 8 17 name = "_at_ampproject_slash_remapping"; 9 18 packageName = "@ampproject/remapping"; ··· 1444 1453 sha512 = "ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw=="; 1445 1454 }; 1446 1455 }; 1456 + "@jest/types-26.6.2" = { 1457 + name = "_at_jest_slash_types"; 1458 + packageName = "@jest/types"; 1459 + version = "26.6.2"; 1460 + src = fetchurl { 1461 + url = "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz"; 1462 + sha512 = "fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ=="; 1463 + }; 1464 + }; 1465 + "@jest/types-27.0.6" = { 1466 + name = "_at_jest_slash_types"; 1467 + packageName = "@jest/types"; 1468 + version = "27.0.6"; 1469 + src = fetchurl { 1470 + url = "https://registry.npmjs.org/@jest/types/-/types-27.0.6.tgz"; 1471 + sha512 = "aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g=="; 1472 + }; 1473 + }; 1447 1474 "@jest/types-27.5.1" = { 1448 1475 name = "_at_jest_slash_types"; 1449 1476 packageName = "@jest/types"; ··· 1561 1588 sha512 = "GKHlJqLxUeHH3L3dGQ48ZavYrqGOTXkFkiEiuYMAnAvXAZP4rhMIqeHOPXSUQan4Bd8QnafDcpovOSLnadDmKw=="; 1562 1589 }; 1563 1590 }; 1564 - "@material-ui/styles-4.11.4" = { 1591 + "@material-ui/styles-4.11.5" = { 1565 1592 name = "_at_material-ui_slash_styles"; 1566 1593 packageName = "@material-ui/styles"; 1567 - version = "4.11.4"; 1594 + version = "4.11.5"; 1568 1595 src = fetchurl { 1569 - url = "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.4.tgz"; 1570 - sha512 = "KNTIZcnj/zprG5LW0Sao7zw+yG3O35pviHzejMdcSGCdWbiO8qzRgOYL8JAxAsWBKOKYwVZxXtHWaB5T2Kvxew=="; 1596 + url = "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.5.tgz"; 1597 + sha512 = "o/41ot5JJiUsIETME9wVLAJrmIWL3j0R0Bj2kCOLbSfqEkKf0fmaPt+5vtblUh5eXr2S+J/8J3DaCb10+CzPGA=="; 1571 1598 }; 1572 1599 }; 1573 1600 "@material-ui/system-4.11.3" = { ··· 1588 1615 sha512 = "7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A=="; 1589 1616 }; 1590 1617 }; 1591 - "@material-ui/utils-4.11.2" = { 1618 + "@material-ui/utils-4.11.3" = { 1592 1619 name = "_at_material-ui_slash_utils"; 1593 1620 packageName = "@material-ui/utils"; 1594 - version = "4.11.2"; 1621 + version = "4.11.3"; 1595 1622 src = fetchurl { 1596 - url = "https://registry.npmjs.org/@material-ui/utils/-/utils-4.11.2.tgz"; 1597 - sha512 = "Uul8w38u+PICe2Fg2pDKCaIG7kOyhowZ9vjiC1FsVwPABTW8vPPKfF6OvxRq3IiBaI1faOJmgdvMG7rMJARBhA=="; 1623 + url = "https://registry.npmjs.org/@material-ui/utils/-/utils-4.11.3.tgz"; 1624 + sha512 = "ZuQPV4rBK/V1j2dIkSSEcH5uT6AaHuKWFfotADHsC0wVL1NLd2WkFCm4ZZbX33iO4ydl6V0GPngKm8HZQ2oujg=="; 1598 1625 }; 1599 1626 }; 1600 1627 "@nicolo-ribaudo/eslint-scope-5-internals-5.1.1-v1" = { ··· 1786 1813 sha512 = "ka0W0KN5i6LfrSocduwliMMpqVgohtPFidKdMEOUjoOFCHcOOYkKsPRxfs5f15oPNHTm6ERAm0GV/+/LTKeiWg=="; 1787 1814 }; 1788 1815 }; 1816 + "@sindresorhus/is-0.14.0" = { 1817 + name = "_at_sindresorhus_slash_is"; 1818 + packageName = "@sindresorhus/is"; 1819 + version = "0.14.0"; 1820 + src = fetchurl { 1821 + url = "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz"; 1822 + sha512 = "9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ=="; 1823 + }; 1824 + }; 1789 1825 "@sinonjs/commons-1.8.3" = { 1790 1826 name = "_at_sinonjs_slash_commons"; 1791 1827 packageName = "@sinonjs/commons"; ··· 1939 1975 sha512 = "DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g=="; 1940 1976 }; 1941 1977 }; 1978 + "@szmarczak/http-timer-1.1.2" = { 1979 + name = "_at_szmarczak_slash_http-timer"; 1980 + packageName = "@szmarczak/http-timer"; 1981 + version = "1.1.2"; 1982 + src = fetchurl { 1983 + url = "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz"; 1984 + sha512 = "XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA=="; 1985 + }; 1986 + }; 1987 + "@testing-library/dom-7.31.2" = { 1988 + name = "_at_testing-library_slash_dom"; 1989 + packageName = "@testing-library/dom"; 1990 + version = "7.31.2"; 1991 + src = fetchurl { 1992 + url = "https://registry.npmjs.org/@testing-library/dom/-/dom-7.31.2.tgz"; 1993 + sha512 = "3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ=="; 1994 + }; 1995 + }; 1996 + "@testing-library/dom-8.1.0" = { 1997 + name = "_at_testing-library_slash_dom"; 1998 + packageName = "@testing-library/dom"; 1999 + version = "8.1.0"; 2000 + src = fetchurl { 2001 + url = "https://registry.npmjs.org/@testing-library/dom/-/dom-8.1.0.tgz"; 2002 + sha512 = "kmW9alndr19qd6DABzQ978zKQ+J65gU2Rzkl8hriIetPnwpesRaK4//jEQyYh8fEALmGhomD/LBQqt+o+DL95Q=="; 2003 + }; 2004 + }; 2005 + "@testing-library/jest-dom-5.16.5" = { 2006 + name = "_at_testing-library_slash_jest-dom"; 2007 + packageName = "@testing-library/jest-dom"; 2008 + version = "5.16.5"; 2009 + src = fetchurl { 2010 + url = "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.16.5.tgz"; 2011 + sha512 = "N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA=="; 2012 + }; 2013 + }; 2014 + "@testing-library/react-11.2.7" = { 2015 + name = "_at_testing-library_slash_react"; 2016 + packageName = "@testing-library/react"; 2017 + version = "11.2.7"; 2018 + src = fetchurl { 2019 + url = "https://registry.npmjs.org/@testing-library/react/-/react-11.2.7.tgz"; 2020 + sha512 = "tzRNp7pzd5QmbtXNG/mhdcl7Awfu/Iz1RaVHY75zTdOkmHCuzMhRL83gWHSgOAcjS3CCbyfwUHMZgRJb4kAfpA=="; 2021 + }; 2022 + }; 2023 + "@testing-library/react-12.1.5" = { 2024 + name = "_at_testing-library_slash_react"; 2025 + packageName = "@testing-library/react"; 2026 + version = "12.1.5"; 2027 + src = fetchurl { 2028 + url = "https://registry.npmjs.org/@testing-library/react/-/react-12.1.5.tgz"; 2029 + sha512 = "OfTXCJUFgjd/digLUuPxa0+/3ZxsQmE7ub9kcbW/wi96Bh3o/p5vrETcBGfP17NWPGqeYYl5LTRpwyGoMC4ysg=="; 2030 + }; 2031 + }; 2032 + "@testing-library/react-hooks-7.0.2" = { 2033 + name = "_at_testing-library_slash_react-hooks"; 2034 + packageName = "@testing-library/react-hooks"; 2035 + version = "7.0.2"; 2036 + src = fetchurl { 2037 + url = "https://registry.npmjs.org/@testing-library/react-hooks/-/react-hooks-7.0.2.tgz"; 2038 + sha512 = "dYxpz8u9m4q1TuzfcUApqi8iFfR6R0FaMbr2hjZJy1uC8z+bO/K4v8Gs9eogGKYQop7QsrBTFkv/BCF7MzD2Cg=="; 2039 + }; 2040 + }; 2041 + "@testing-library/user-event-13.5.0" = { 2042 + name = "_at_testing-library_slash_user-event"; 2043 + packageName = "@testing-library/user-event"; 2044 + version = "13.5.0"; 2045 + src = fetchurl { 2046 + url = "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz"; 2047 + sha512 = "5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg=="; 2048 + }; 2049 + }; 1942 2050 "@tootallnate/once-1.1.2" = { 1943 2051 name = "_at_tootallnate_slash_once"; 1944 2052 packageName = "@tootallnate/once"; ··· 1955 2063 src = fetchurl { 1956 2064 url = "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz"; 1957 2065 sha512 = "L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA=="; 2066 + }; 2067 + }; 2068 + "@types/aria-query-4.2.2" = { 2069 + name = "_at_types_slash_aria-query"; 2070 + packageName = "@types/aria-query"; 2071 + version = "4.2.2"; 2072 + src = fetchurl { 2073 + url = "https://registry.npmjs.org/@types/aria-query/-/aria-query-4.2.2.tgz"; 2074 + sha512 = "HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig=="; 1958 2075 }; 1959 2076 }; 1960 2077 "@types/babel__core-7.1.14" = { ··· 2155 2272 sha512 = "c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw=="; 2156 2273 }; 2157 2274 }; 2275 + "@types/jest-26.0.23" = { 2276 + name = "_at_types_slash_jest"; 2277 + packageName = "@types/jest"; 2278 + version = "26.0.23"; 2279 + src = fetchurl { 2280 + url = "https://registry.npmjs.org/@types/jest/-/jest-26.0.23.tgz"; 2281 + sha512 = "ZHLmWMJ9jJ9PTiT58juykZpL7KjwJywFN3Rr2pTSkyQfydf/rk22yS7W8p5DaVUMQ2BQC7oYiU3FjbTM/mYrOA=="; 2282 + }; 2283 + }; 2158 2284 "@types/json-schema-7.0.11" = { 2159 2285 name = "_at_types_slash_json-schema"; 2160 2286 packageName = "@types/json-schema"; ··· 2182 2308 sha512 = "Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA=="; 2183 2309 }; 2184 2310 }; 2311 + "@types/minimist-1.2.2" = { 2312 + name = "_at_types_slash_minimist"; 2313 + packageName = "@types/minimist"; 2314 + version = "1.2.2"; 2315 + src = fetchurl { 2316 + url = "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz"; 2317 + sha512 = "jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ=="; 2318 + }; 2319 + }; 2185 2320 "@types/node-14.0.27" = { 2186 2321 name = "_at_types_slash_node"; 2187 2322 packageName = "@types/node"; ··· 2189 2324 src = fetchurl { 2190 2325 url = "https://registry.npmjs.org/@types/node/-/node-14.0.27.tgz"; 2191 2326 sha512 = "kVrqXhbclHNHGu9ztnAwSncIgJv/FaxmzXJvGXNdcCpV1b8u1/Mi6z6m0vwy0LzKeXFTPLH0NzwmoJ3fNCIq0g=="; 2327 + }; 2328 + }; 2329 + "@types/normalize-package-data-2.4.0" = { 2330 + name = "_at_types_slash_normalize-package-data"; 2331 + packageName = "@types/normalize-package-data"; 2332 + version = "2.4.0"; 2333 + src = fetchurl { 2334 + url = "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz"; 2335 + sha512 = "f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA=="; 2192 2336 }; 2193 2337 }; 2194 2338 "@types/parse-json-4.0.0" = { ··· 2254 2398 sha512 = "aj/L7RIMsRlWML3YB6KZiXB3fV2t41+5RBGYF8z+tAKU43Px8C3cYUZsDvf1/+Bm4FK21QWBrDutu8ZJ/70qOw=="; 2255 2399 }; 2256 2400 }; 2401 + "@types/react-dom-17.0.5" = { 2402 + name = "_at_types_slash_react-dom"; 2403 + packageName = "@types/react-dom"; 2404 + version = "17.0.5"; 2405 + src = fetchurl { 2406 + url = "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.5.tgz"; 2407 + sha512 = "ikqukEhH4H9gr4iJCmQVNzTB307kROe3XFfHAOTxOXPOw7lAoEXnM5KWTkzeANGL5Ce6ABfiMl/zJBYNi7ObmQ=="; 2408 + }; 2409 + }; 2257 2410 "@types/react-redux-7.1.24" = { 2258 2411 name = "_at_types_slash_react-redux"; 2259 2412 packageName = "@types/react-redux"; ··· 2261 2414 src = fetchurl { 2262 2415 url = "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.24.tgz"; 2263 2416 sha512 = "7FkurKcS1k0FHZEtdbbgN8Oc6b+stGSfZYjQGicofJ0j4U0qIn/jaSvnP2pLwZKiai3/17xqqxkkrxTgN8UNbQ=="; 2417 + }; 2418 + }; 2419 + "@types/react-test-renderer-17.0.1" = { 2420 + name = "_at_types_slash_react-test-renderer"; 2421 + packageName = "@types/react-test-renderer"; 2422 + version = "17.0.1"; 2423 + src = fetchurl { 2424 + url = "https://registry.npmjs.org/@types/react-test-renderer/-/react-test-renderer-17.0.1.tgz"; 2425 + sha512 = "3Fi2O6Zzq/f3QR9dRnlnHso9bMl7weKCviFmfF6B4LS1Uat6Hkm15k0ZAQuDz+UBq6B3+g+NM6IT2nr5QgPzCw=="; 2264 2426 }; 2265 2427 }; 2266 2428 "@types/react-transition-group-4.4.1" = { ··· 2326 2488 sha512 = "Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw=="; 2327 2489 }; 2328 2490 }; 2491 + "@types/testing-library__jest-dom-5.9.5" = { 2492 + name = "_at_types_slash_testing-library__jest-dom"; 2493 + packageName = "@types/testing-library__jest-dom"; 2494 + version = "5.9.5"; 2495 + src = fetchurl { 2496 + url = "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.9.5.tgz"; 2497 + sha512 = "ggn3ws+yRbOHog9GxnXiEZ/35Mow6YtPZpd7Z5mKDeZS/o7zx3yAle0ov/wjhVB5QT4N2Dt+GNoGCdqkBGCajQ=="; 2498 + }; 2499 + }; 2329 2500 "@types/trusted-types-2.0.2" = { 2330 2501 name = "_at_types_slash_trusted-types"; 2331 2502 packageName = "@types/trusted-types"; ··· 2342 2513 src = fetchurl { 2343 2514 url = "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz"; 2344 2515 sha512 = "6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w=="; 2516 + }; 2517 + }; 2518 + "@types/yargs-15.0.13" = { 2519 + name = "_at_types_slash_yargs"; 2520 + packageName = "@types/yargs"; 2521 + version = "15.0.13"; 2522 + src = fetchurl { 2523 + url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.13.tgz"; 2524 + sha512 = "kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ=="; 2345 2525 }; 2346 2526 }; 2347 2527 "@types/yargs-16.0.4" = { ··· 2758 2938 sha512 = "YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw=="; 2759 2939 }; 2760 2940 }; 2941 + "ansi-align-3.0.0" = { 2942 + name = "ansi-align"; 2943 + packageName = "ansi-align"; 2944 + version = "3.0.0"; 2945 + src = fetchurl { 2946 + url = "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.0.tgz"; 2947 + sha512 = "ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw=="; 2948 + }; 2949 + }; 2761 2950 "ansi-escapes-4.3.2" = { 2762 2951 name = "ansi-escapes"; 2763 2952 packageName = "ansi-escapes"; ··· 2774 2963 src = fetchurl { 2775 2964 url = "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz"; 2776 2965 sha512 = "1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw=="; 2966 + }; 2967 + }; 2968 + "ansi-regex-4.1.1" = { 2969 + name = "ansi-regex"; 2970 + packageName = "ansi-regex"; 2971 + version = "4.1.1"; 2972 + src = fetchurl { 2973 + url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz"; 2974 + sha512 = "ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g=="; 2777 2975 }; 2778 2976 }; 2779 2977 "ansi-regex-5.0.1" = { ··· 2866 3064 sha512 = "o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA=="; 2867 3065 }; 2868 3066 }; 3067 + "aria-query-5.0.2" = { 3068 + name = "aria-query"; 3069 + packageName = "aria-query"; 3070 + version = "5.0.2"; 3071 + src = fetchurl { 3072 + url = "https://registry.npmjs.org/aria-query/-/aria-query-5.0.2.tgz"; 3073 + sha512 = "eigU3vhqSO+Z8BKDnVLN/ompjhf3pYzecKXz8+whRy+9gZu8n1TCGfwzQUUPnqdHl9ax1Hr9031orZ+UOEYr7Q=="; 3074 + }; 3075 + }; 2869 3076 "array-flatten-1.1.1" = { 2870 3077 name = "array-flatten"; 2871 3078 packageName = "array-flatten"; ··· 2927 3134 src = fetchurl { 2928 3135 url = "https://registry.npmjs.org/array.prototype.foreach/-/array.prototype.foreach-1.0.1.tgz"; 2929 3136 sha512 = "5/+XXc6Sq/X0nKTqrnYfckvE4tIAMEJDSkGsdBl0OC6/Kvr38PHgT6amItyCKP2Fng1Ifi3mI+1r01f0opJQdQ=="; 3137 + }; 3138 + }; 3139 + "arrify-1.0.1" = { 3140 + name = "arrify"; 3141 + packageName = "arrify"; 3142 + version = "1.0.1"; 3143 + src = fetchurl { 3144 + url = "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"; 3145 + sha1 = "898508da2226f380df904728456849c1501a4b0d"; 2930 3146 }; 2931 3147 }; 2932 3148 "asap-2.0.6" = { ··· 3163 3379 sha512 = "3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="; 3164 3380 }; 3165 3381 }; 3382 + "base64-js-1.5.1" = { 3383 + name = "base64-js"; 3384 + packageName = "base64-js"; 3385 + version = "1.5.1"; 3386 + src = fetchurl { 3387 + url = "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"; 3388 + sha512 = "AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="; 3389 + }; 3390 + }; 3166 3391 "batch-0.6.1" = { 3167 3392 name = "batch"; 3168 3393 packageName = "batch"; ··· 3199 3424 sha512 = "jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="; 3200 3425 }; 3201 3426 }; 3427 + "bl-4.1.0" = { 3428 + name = "bl"; 3429 + packageName = "bl"; 3430 + version = "4.1.0"; 3431 + src = fetchurl { 3432 + url = "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz"; 3433 + sha512 = "1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w=="; 3434 + }; 3435 + }; 3202 3436 "bluebird-3.7.2" = { 3203 3437 name = "bluebird"; 3204 3438 packageName = "bluebird"; ··· 3242 3476 src = fetchurl { 3243 3477 url = "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz"; 3244 3478 sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"; 3479 + }; 3480 + }; 3481 + "boxen-4.2.0" = { 3482 + name = "boxen"; 3483 + packageName = "boxen"; 3484 + version = "4.2.0"; 3485 + src = fetchurl { 3486 + url = "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz"; 3487 + sha512 = "eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ=="; 3245 3488 }; 3246 3489 }; 3247 3490 "brace-expansion-1.1.11" = { ··· 3298 3541 sha512 = "gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ=="; 3299 3542 }; 3300 3543 }; 3544 + "buffer-5.7.1" = { 3545 + name = "buffer"; 3546 + packageName = "buffer"; 3547 + version = "5.7.1"; 3548 + src = fetchurl { 3549 + url = "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz"; 3550 + sha512 = "EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="; 3551 + }; 3552 + }; 3301 3553 "buffer-from-1.1.1" = { 3302 3554 name = "buffer-from"; 3303 3555 packageName = "buffer-from"; ··· 3334 3586 sha512 = "/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="; 3335 3587 }; 3336 3588 }; 3589 + "cacheable-request-6.1.0" = { 3590 + name = "cacheable-request"; 3591 + packageName = "cacheable-request"; 3592 + version = "6.1.0"; 3593 + src = fetchurl { 3594 + url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz"; 3595 + sha512 = "Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg=="; 3596 + }; 3597 + }; 3337 3598 "call-bind-1.0.2" = { 3338 3599 name = "call-bind"; 3339 3600 packageName = "call-bind"; ··· 3386 3647 src = fetchurl { 3387 3648 url = "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz"; 3388 3649 sha512 = "QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA=="; 3650 + }; 3651 + }; 3652 + "camelcase-keys-6.2.2" = { 3653 + name = "camelcase-keys"; 3654 + packageName = "camelcase-keys"; 3655 + version = "6.2.2"; 3656 + src = fetchurl { 3657 + url = "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz"; 3658 + sha512 = "YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg=="; 3389 3659 }; 3390 3660 }; 3391 3661 "caniuse-api-3.0.0" = { ··· 3424 3694 sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; 3425 3695 }; 3426 3696 }; 3697 + "chalk-3.0.0" = { 3698 + name = "chalk"; 3699 + packageName = "chalk"; 3700 + version = "3.0.0"; 3701 + src = fetchurl { 3702 + url = "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz"; 3703 + sha512 = "4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg=="; 3704 + }; 3705 + }; 3706 + "chalk-4.1.0" = { 3707 + name = "chalk"; 3708 + packageName = "chalk"; 3709 + version = "4.1.0"; 3710 + src = fetchurl { 3711 + url = "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz"; 3712 + sha512 = "qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A=="; 3713 + }; 3714 + }; 3715 + "chalk-4.1.1" = { 3716 + name = "chalk"; 3717 + packageName = "chalk"; 3718 + version = "4.1.1"; 3719 + src = fetchurl { 3720 + url = "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz"; 3721 + sha512 = "diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg=="; 3722 + }; 3723 + }; 3427 3724 "chalk-4.1.2" = { 3428 3725 name = "chalk"; 3429 3726 packageName = "chalk"; ··· 3451 3748 sha512 = "oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw=="; 3452 3749 }; 3453 3750 }; 3751 + "chardet-0.7.0" = { 3752 + name = "chardet"; 3753 + packageName = "chardet"; 3754 + version = "0.7.0"; 3755 + src = fetchurl { 3756 + url = "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz"; 3757 + sha512 = "mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="; 3758 + }; 3759 + }; 3454 3760 "check-types-11.1.2" = { 3455 3761 name = "check-types"; 3456 3762 packageName = "check-types"; ··· 3478 3784 sha512 = "p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg=="; 3479 3785 }; 3480 3786 }; 3787 + "ci-info-2.0.0" = { 3788 + name = "ci-info"; 3789 + packageName = "ci-info"; 3790 + version = "2.0.0"; 3791 + src = fetchurl { 3792 + url = "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz"; 3793 + sha512 = "5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="; 3794 + }; 3795 + }; 3481 3796 "ci-info-3.4.0" = { 3482 3797 name = "ci-info"; 3483 3798 packageName = "ci-info"; ··· 3505 3820 sha512 = "JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q=="; 3506 3821 }; 3507 3822 }; 3508 - "classnames-2.3.1" = { 3823 + "classnames-2.3.2" = { 3509 3824 name = "classnames"; 3510 3825 packageName = "classnames"; 3511 - version = "2.3.1"; 3826 + version = "2.3.2"; 3512 3827 src = fetchurl { 3513 - url = "https://registry.npmjs.org/classnames/-/classnames-2.3.1.tgz"; 3514 - sha512 = "OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA=="; 3828 + url = "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz"; 3829 + sha512 = "CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw=="; 3515 3830 }; 3516 3831 }; 3517 3832 "clean-css-5.3.1" = { ··· 3523 3838 sha512 = "lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg=="; 3524 3839 }; 3525 3840 }; 3841 + "cli-boxes-2.2.1" = { 3842 + name = "cli-boxes"; 3843 + packageName = "cli-boxes"; 3844 + version = "2.2.1"; 3845 + src = fetchurl { 3846 + url = "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz"; 3847 + sha512 = "y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw=="; 3848 + }; 3849 + }; 3850 + "cli-cursor-3.1.0" = { 3851 + name = "cli-cursor"; 3852 + packageName = "cli-cursor"; 3853 + version = "3.1.0"; 3854 + src = fetchurl { 3855 + url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz"; 3856 + sha512 = "I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw=="; 3857 + }; 3858 + }; 3859 + "cli-spinners-2.6.0" = { 3860 + name = "cli-spinners"; 3861 + packageName = "cli-spinners"; 3862 + version = "2.6.0"; 3863 + src = fetchurl { 3864 + url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.0.tgz"; 3865 + sha512 = "t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q=="; 3866 + }; 3867 + }; 3868 + "cli-width-3.0.0" = { 3869 + name = "cli-width"; 3870 + packageName = "cli-width"; 3871 + version = "3.0.0"; 3872 + src = fetchurl { 3873 + url = "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz"; 3874 + sha512 = "FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw=="; 3875 + }; 3876 + }; 3526 3877 "cliui-7.0.4" = { 3527 3878 name = "cliui"; 3528 3879 packageName = "cliui"; ··· 3532 3883 sha512 = "OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ=="; 3533 3884 }; 3534 3885 }; 3886 + "clone-1.0.4" = { 3887 + name = "clone"; 3888 + packageName = "clone"; 3889 + version = "1.0.4"; 3890 + src = fetchurl { 3891 + url = "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz"; 3892 + sha1 = "da309cc263df15994c688ca902179ca3c7cd7c7e"; 3893 + }; 3894 + }; 3895 + "clone-response-1.0.2" = { 3896 + name = "clone-response"; 3897 + packageName = "clone-response"; 3898 + version = "1.0.2"; 3899 + src = fetchurl { 3900 + url = "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz"; 3901 + sha1 = "d1dc973920314df67fbeb94223b4ee350239e96b"; 3902 + }; 3903 + }; 3535 3904 "clsx-1.1.1" = { 3536 3905 name = "clsx"; 3537 3906 packageName = "clsx"; ··· 3719 4088 src = fetchurl { 3720 4089 url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; 3721 4090 sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 4091 + }; 4092 + }; 4093 + "configstore-5.0.1" = { 4094 + name = "configstore"; 4095 + packageName = "configstore"; 4096 + version = "5.0.1"; 4097 + src = fetchurl { 4098 + url = "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz"; 4099 + sha512 = "aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA=="; 3722 4100 }; 3723 4101 }; 3724 4102 "confusing-browser-globals-1.0.11" = { ··· 4009 4387 sha512 = "HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw=="; 4010 4388 }; 4011 4389 }; 4390 + "css.escape-1.5.1" = { 4391 + name = "css.escape"; 4392 + packageName = "css.escape"; 4393 + version = "1.5.1"; 4394 + src = fetchurl { 4395 + url = "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz"; 4396 + sha1 = "42e27d4fa04ae32f931a4b4d4191fa9cddee97cb"; 4397 + }; 4398 + }; 4012 4399 "cssdb-7.0.1" = { 4013 4400 name = "cssdb"; 4014 4401 packageName = "cssdb"; ··· 4171 4558 sha512 = "PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="; 4172 4559 }; 4173 4560 }; 4561 + "decamelize-1.2.0" = { 4562 + name = "decamelize"; 4563 + packageName = "decamelize"; 4564 + version = "1.2.0"; 4565 + src = fetchurl { 4566 + url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; 4567 + sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 4568 + }; 4569 + }; 4570 + "decamelize-keys-1.1.0" = { 4571 + name = "decamelize-keys"; 4572 + packageName = "decamelize-keys"; 4573 + version = "1.1.0"; 4574 + src = fetchurl { 4575 + url = "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz"; 4576 + sha1 = "d171a87933252807eb3cb61dc1c1445d078df2d9"; 4577 + }; 4578 + }; 4174 4579 "decimal.js-10.4.1" = { 4175 4580 name = "decimal.js"; 4176 4581 packageName = "decimal.js"; ··· 4180 4585 sha512 = "F29o+vci4DodHYT9UrR5IEbfBw9pE5eSapIJdTqXK5+6hq+t8VRxwQyKlW2i+KDKFkkJQRvFyI/QXD83h8LyQw=="; 4181 4586 }; 4182 4587 }; 4183 - "decode-uri-component-0.2.0" = { 4588 + "decode-uri-component-0.2.2" = { 4184 4589 name = "decode-uri-component"; 4185 4590 packageName = "decode-uri-component"; 4186 - version = "0.2.0"; 4591 + version = "0.2.2"; 4592 + src = fetchurl { 4593 + url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz"; 4594 + sha512 = "FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ=="; 4595 + }; 4596 + }; 4597 + "decompress-response-3.3.0" = { 4598 + name = "decompress-response"; 4599 + packageName = "decompress-response"; 4600 + version = "3.3.0"; 4187 4601 src = fetchurl { 4188 - url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz"; 4189 - sha1 = "eb3913333458775cb84cd1a1fae062106bb87545"; 4602 + url = "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz"; 4603 + sha1 = "80a4dd323748384bfa248083622aedec982adff3"; 4190 4604 }; 4191 4605 }; 4192 4606 "dedent-0.7.0" = { ··· 4198 4612 sha512 = "Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA=="; 4199 4613 }; 4200 4614 }; 4615 + "deep-extend-0.6.0" = { 4616 + name = "deep-extend"; 4617 + packageName = "deep-extend"; 4618 + version = "0.6.0"; 4619 + src = fetchurl { 4620 + url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz"; 4621 + sha512 = "LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="; 4622 + }; 4623 + }; 4201 4624 "deep-is-0.1.4" = { 4202 4625 name = "deep-is"; 4203 4626 packageName = "deep-is"; ··· 4225 4648 sha512 = "fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg=="; 4226 4649 }; 4227 4650 }; 4651 + "defaults-1.0.3" = { 4652 + name = "defaults"; 4653 + packageName = "defaults"; 4654 + version = "1.0.3"; 4655 + src = fetchurl { 4656 + url = "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz"; 4657 + sha1 = "c656051e9817d9ff08ed881477f3fe4019f3ef7d"; 4658 + }; 4659 + }; 4660 + "defer-to-connect-1.1.3" = { 4661 + name = "defer-to-connect"; 4662 + packageName = "defer-to-connect"; 4663 + version = "1.1.3"; 4664 + src = fetchurl { 4665 + url = "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz"; 4666 + sha512 = "0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ=="; 4667 + }; 4668 + }; 4228 4669 "define-lazy-prop-2.0.0" = { 4229 4670 name = "define-lazy-prop"; 4230 4671 packageName = "define-lazy-prop"; ··· 4342 4783 sha512 = "gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw=="; 4343 4784 }; 4344 4785 }; 4786 + "diff-sequences-26.6.2" = { 4787 + name = "diff-sequences"; 4788 + packageName = "diff-sequences"; 4789 + version = "26.6.2"; 4790 + src = fetchurl { 4791 + url = "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz"; 4792 + sha512 = "Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q=="; 4793 + }; 4794 + }; 4345 4795 "diff-sequences-27.5.1" = { 4346 4796 name = "diff-sequences"; 4347 4797 packageName = "diff-sequences"; ··· 4414 4864 sha512 = "yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w=="; 4415 4865 }; 4416 4866 }; 4867 + "dom-accessibility-api-0.5.6" = { 4868 + name = "dom-accessibility-api"; 4869 + packageName = "dom-accessibility-api"; 4870 + version = "0.5.6"; 4871 + src = fetchurl { 4872 + url = "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.6.tgz"; 4873 + sha512 = "DplGLZd8L1lN64jlT27N9TVSESFR5STaEJvX+thCby7fuCHonfPpAlodYc3vuUYbDuDec5w8AMP7oCM5TWFsqw=="; 4874 + }; 4875 + }; 4417 4876 "dom-align-1.12.2" = { 4418 4877 name = "dom-align"; 4419 4878 packageName = "dom-align"; ··· 4531 4990 sha512 = "Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w=="; 4532 4991 }; 4533 4992 }; 4993 + "dot-prop-5.3.0" = { 4994 + name = "dot-prop"; 4995 + packageName = "dot-prop"; 4996 + version = "5.3.0"; 4997 + src = fetchurl { 4998 + url = "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz"; 4999 + sha512 = "QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q=="; 5000 + }; 5001 + }; 4534 5002 "dotenv-10.0.0" = { 4535 5003 name = "dotenv"; 4536 5004 packageName = "dotenv"; ··· 4576 5044 sha512 = "jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg=="; 4577 5045 }; 4578 5046 }; 5047 + "duplexer3-0.1.4" = { 5048 + name = "duplexer3"; 5049 + packageName = "duplexer3"; 5050 + version = "0.1.4"; 5051 + src = fetchurl { 5052 + url = "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz"; 5053 + sha1 = "ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"; 5054 + }; 5055 + }; 4579 5056 "ee-first-1.1.1" = { 4580 5057 name = "ee-first"; 4581 5058 packageName = "ee-first"; ··· 4621 5098 sha512 = "uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg=="; 4622 5099 }; 4623 5100 }; 5101 + "emoji-regex-7.0.3" = { 5102 + name = "emoji-regex"; 5103 + packageName = "emoji-regex"; 5104 + version = "7.0.3"; 5105 + src = fetchurl { 5106 + url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz"; 5107 + sha512 = "CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="; 5108 + }; 5109 + }; 4624 5110 "emoji-regex-8.0.0" = { 4625 5111 name = "emoji-regex"; 4626 5112 packageName = "emoji-regex"; ··· 4655 5141 src = fetchurl { 4656 5142 url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz"; 4657 5143 sha512 = "TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="; 5144 + }; 5145 + }; 5146 + "end-of-stream-1.4.4" = { 5147 + name = "end-of-stream"; 5148 + packageName = "end-of-stream"; 5149 + version = "1.4.4"; 5150 + src = fetchurl { 5151 + url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz"; 5152 + sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="; 4658 5153 }; 4659 5154 }; 4660 5155 "enhanced-resolve-5.10.0" = { ··· 4745 5240 src = fetchurl { 4746 5241 url = "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"; 4747 5242 sha512 = "k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="; 5243 + }; 5244 + }; 5245 + "escape-goat-2.1.1" = { 5246 + name = "escape-goat"; 5247 + packageName = "escape-goat"; 5248 + version = "2.1.1"; 5249 + src = fetchurl { 5250 + url = "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz"; 5251 + sha512 = "8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q=="; 4748 5252 }; 4749 5253 }; 4750 5254 "escape-html-1.0.3" = { ··· 5098 5602 sha512 = "zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q=="; 5099 5603 }; 5100 5604 }; 5605 + "external-editor-3.1.0" = { 5606 + name = "external-editor"; 5607 + packageName = "external-editor"; 5608 + version = "3.1.0"; 5609 + src = fetchurl { 5610 + url = "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz"; 5611 + sha512 = "hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew=="; 5612 + }; 5613 + }; 5101 5614 "fast-deep-equal-3.1.3" = { 5102 5615 name = "fast-deep-equal"; 5103 5616 packageName = "fast-deep-equal"; ··· 5159 5672 src = fetchurl { 5160 5673 url = "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz"; 5161 5674 sha512 = "p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA=="; 5675 + }; 5676 + }; 5677 + "figures-3.2.0" = { 5678 + name = "figures"; 5679 + packageName = "figures"; 5680 + version = "3.2.0"; 5681 + src = fetchurl { 5682 + url = "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz"; 5683 + sha512 = "yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg=="; 5162 5684 }; 5163 5685 }; 5164 5686 "file-entry-cache-6.0.1" = { ··· 5476 5998 sha512 = "pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q=="; 5477 5999 }; 5478 6000 }; 6001 + "get-stream-4.1.0" = { 6002 + name = "get-stream"; 6003 + packageName = "get-stream"; 6004 + version = "4.1.0"; 6005 + src = fetchurl { 6006 + url = "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz"; 6007 + sha512 = "GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w=="; 6008 + }; 6009 + }; 6010 + "get-stream-5.2.0" = { 6011 + name = "get-stream"; 6012 + packageName = "get-stream"; 6013 + version = "5.2.0"; 6014 + src = fetchurl { 6015 + url = "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz"; 6016 + sha512 = "nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA=="; 6017 + }; 6018 + }; 5479 6019 "get-stream-6.0.1" = { 5480 6020 name = "get-stream"; 5481 6021 packageName = "get-stream"; ··· 5530 6070 sha512 = "lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw=="; 5531 6071 }; 5532 6072 }; 6073 + "global-dirs-2.1.0" = { 6074 + name = "global-dirs"; 6075 + packageName = "global-dirs"; 6076 + version = "2.1.0"; 6077 + src = fetchurl { 6078 + url = "https://registry.npmjs.org/global-dirs/-/global-dirs-2.1.0.tgz"; 6079 + sha512 = "MG6kdOUh/xBnyo9cJFeIKkLEc1AyFq42QTU4XiX51i2NEdxLxLWXIjEjmqKeSuKR7pAZjTqUVoT2b2huxVLgYQ=="; 6080 + }; 6081 + }; 5533 6082 "global-modules-2.0.0" = { 5534 6083 name = "global-modules"; 5535 6084 packageName = "global-modules"; ··· 5575 6124 sha512 = "jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="; 5576 6125 }; 5577 6126 }; 6127 + "got-9.6.0" = { 6128 + name = "got"; 6129 + packageName = "got"; 6130 + version = "9.6.0"; 6131 + src = fetchurl { 6132 + url = "https://registry.npmjs.org/got/-/got-9.6.0.tgz"; 6133 + sha512 = "R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q=="; 6134 + }; 6135 + }; 5578 6136 "graceful-fs-4.2.10" = { 5579 6137 name = "graceful-fs"; 5580 6138 packageName = "graceful-fs"; ··· 5611 6169 sha512 = "9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg=="; 5612 6170 }; 5613 6171 }; 6172 + "hard-rejection-2.1.0" = { 6173 + name = "hard-rejection"; 6174 + packageName = "hard-rejection"; 6175 + version = "2.1.0"; 6176 + src = fetchurl { 6177 + url = "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz"; 6178 + sha512 = "VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA=="; 6179 + }; 6180 + }; 5614 6181 "harmony-reflect-1.6.2" = { 5615 6182 name = "harmony-reflect"; 5616 6183 packageName = "harmony-reflect"; ··· 5683 6250 sha512 = "kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ=="; 5684 6251 }; 5685 6252 }; 6253 + "has-yarn-2.1.0" = { 6254 + name = "has-yarn"; 6255 + packageName = "has-yarn"; 6256 + version = "2.1.0"; 6257 + src = fetchurl { 6258 + url = "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz"; 6259 + sha512 = "UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw=="; 6260 + }; 6261 + }; 5686 6262 "he-1.2.0" = { 5687 6263 name = "he"; 5688 6264 packageName = "he"; ··· 5719 6295 sha512 = "HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ=="; 5720 6296 }; 5721 6297 }; 6298 + "hosted-git-info-2.8.9" = { 6299 + name = "hosted-git-info"; 6300 + packageName = "hosted-git-info"; 6301 + version = "2.8.9"; 6302 + src = fetchurl { 6303 + url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz"; 6304 + sha512 = "mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw=="; 6305 + }; 6306 + }; 5722 6307 "hpack.js-2.1.6" = { 5723 6308 name = "hpack.js"; 5724 6309 packageName = "hpack.js"; ··· 5782 6367 sha512 = "gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A=="; 5783 6368 }; 5784 6369 }; 6370 + "http-cache-semantics-4.1.1" = { 6371 + name = "http-cache-semantics"; 6372 + packageName = "http-cache-semantics"; 6373 + version = "4.1.1"; 6374 + src = fetchurl { 6375 + url = "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz"; 6376 + sha512 = "er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ=="; 6377 + }; 6378 + }; 5785 6379 "http-deceiver-1.2.7" = { 5786 6380 name = "http-deceiver"; 5787 6381 packageName = "http-deceiver"; ··· 5917 6511 sha1 = "94d2bda96084453ef36fbc5aaec37e0f79f1fc14"; 5918 6512 }; 5919 6513 }; 6514 + "ieee754-1.2.1" = { 6515 + name = "ieee754"; 6516 + packageName = "ieee754"; 6517 + version = "1.2.1"; 6518 + src = fetchurl { 6519 + url = "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz"; 6520 + sha512 = "dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="; 6521 + }; 6522 + }; 5920 6523 "ignore-5.2.0" = { 5921 6524 name = "ignore"; 5922 6525 packageName = "ignore"; ··· 5953 6556 sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="; 5954 6557 }; 5955 6558 }; 6559 + "import-lazy-2.1.0" = { 6560 + name = "import-lazy"; 6561 + packageName = "import-lazy"; 6562 + version = "2.1.0"; 6563 + src = fetchurl { 6564 + url = "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz"; 6565 + sha1 = "05698e3d45c88e8d7e9d92cb0584e77f096f3e43"; 6566 + }; 6567 + }; 5956 6568 "import-local-3.1.0" = { 5957 6569 name = "import-local"; 5958 6570 packageName = "import-local"; ··· 5980 6592 sha512 = "G8vgmork+6H9S8lUAg1gtXEj2JxIQTo0g2PbFiYOdjkziSI0F7UYBiVwhZRuixhBCNGczAls34+5HJPyZysvxQ=="; 5981 6593 }; 5982 6594 }; 6595 + "indent-string-4.0.0" = { 6596 + name = "indent-string"; 6597 + packageName = "indent-string"; 6598 + version = "4.0.0"; 6599 + src = fetchurl { 6600 + url = "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz"; 6601 + sha512 = "EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="; 6602 + }; 6603 + }; 5983 6604 "inflection-1.12.0" = { 5984 6605 name = "inflection"; 5985 6606 packageName = "inflection"; ··· 6025 6646 sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; 6026 6647 }; 6027 6648 }; 6649 + "ini-1.3.7" = { 6650 + name = "ini"; 6651 + packageName = "ini"; 6652 + version = "1.3.7"; 6653 + src = fetchurl { 6654 + url = "https://registry.npmjs.org/ini/-/ini-1.3.7.tgz"; 6655 + sha512 = "iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ=="; 6656 + }; 6657 + }; 6028 6658 "ini-1.3.8" = { 6029 6659 name = "ini"; 6030 6660 packageName = "ini"; ··· 6034 6664 sha512 = "JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="; 6035 6665 }; 6036 6666 }; 6667 + "inquirer-7.3.3" = { 6668 + name = "inquirer"; 6669 + packageName = "inquirer"; 6670 + version = "7.3.3"; 6671 + src = fetchurl { 6672 + url = "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz"; 6673 + sha512 = "JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA=="; 6674 + }; 6675 + }; 6037 6676 "internal-slot-1.0.3" = { 6038 6677 name = "internal-slot"; 6039 6678 packageName = "internal-slot"; ··· 6106 6745 sha512 = "1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="; 6107 6746 }; 6108 6747 }; 6748 + "is-ci-2.0.0" = { 6749 + name = "is-ci"; 6750 + packageName = "is-ci"; 6751 + version = "2.0.0"; 6752 + src = fetchurl { 6753 + url = "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz"; 6754 + sha512 = "YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w=="; 6755 + }; 6756 + }; 6109 6757 "is-core-module-2.10.0" = { 6110 6758 name = "is-core-module"; 6111 6759 packageName = "is-core-module"; ··· 6142 6790 sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2"; 6143 6791 }; 6144 6792 }; 6793 + "is-fullwidth-code-point-2.0.0" = { 6794 + name = "is-fullwidth-code-point"; 6795 + packageName = "is-fullwidth-code-point"; 6796 + version = "2.0.0"; 6797 + src = fetchurl { 6798 + url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; 6799 + sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; 6800 + }; 6801 + }; 6145 6802 "is-fullwidth-code-point-3.0.0" = { 6146 6803 name = "is-fullwidth-code-point"; 6147 6804 packageName = "is-fullwidth-code-point"; ··· 6178 6835 sha1 = "56ff4db683a078c6082eb95dad7dc62e1d04f835"; 6179 6836 }; 6180 6837 }; 6838 + "is-installed-globally-0.3.2" = { 6839 + name = "is-installed-globally"; 6840 + packageName = "is-installed-globally"; 6841 + version = "0.3.2"; 6842 + src = fetchurl { 6843 + url = "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.3.2.tgz"; 6844 + sha512 = "wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g=="; 6845 + }; 6846 + }; 6847 + "is-interactive-1.0.0" = { 6848 + name = "is-interactive"; 6849 + packageName = "is-interactive"; 6850 + version = "1.0.0"; 6851 + src = fetchurl { 6852 + url = "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz"; 6853 + sha512 = "2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w=="; 6854 + }; 6855 + }; 6181 6856 "is-mobile-2.2.2" = { 6182 6857 name = "is-mobile"; 6183 6858 packageName = "is-mobile"; ··· 6205 6880 sha512 = "dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA=="; 6206 6881 }; 6207 6882 }; 6883 + "is-npm-4.0.0" = { 6884 + name = "is-npm"; 6885 + packageName = "is-npm"; 6886 + version = "4.0.0"; 6887 + src = fetchurl { 6888 + url = "https://registry.npmjs.org/is-npm/-/is-npm-4.0.0.tgz"; 6889 + sha512 = "96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig=="; 6890 + }; 6891 + }; 6208 6892 "is-number-7.0.0" = { 6209 6893 name = "is-number"; 6210 6894 packageName = "is-number"; ··· 6232 6916 sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"; 6233 6917 }; 6234 6918 }; 6919 + "is-obj-2.0.0" = { 6920 + name = "is-obj"; 6921 + packageName = "is-obj"; 6922 + version = "2.0.0"; 6923 + src = fetchurl { 6924 + url = "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz"; 6925 + sha512 = "drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w=="; 6926 + }; 6927 + }; 6928 + "is-path-inside-3.0.3" = { 6929 + name = "is-path-inside"; 6930 + packageName = "is-path-inside"; 6931 + version = "3.0.3"; 6932 + src = fetchurl { 6933 + url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz"; 6934 + sha512 = "Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ=="; 6935 + }; 6936 + }; 6937 + "is-plain-obj-1.1.0" = { 6938 + name = "is-plain-obj"; 6939 + packageName = "is-plain-obj"; 6940 + version = "1.1.0"; 6941 + src = fetchurl { 6942 + url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz"; 6943 + sha1 = "71a50c8429dfca773c92a390a4a03b39fcd51d3e"; 6944 + }; 6945 + }; 6235 6946 "is-plain-obj-3.0.0" = { 6236 6947 name = "is-plain-obj"; 6237 6948 packageName = "is-plain-obj"; ··· 6322 7033 sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; 6323 7034 }; 6324 7035 }; 7036 + "is-unicode-supported-0.1.0" = { 7037 + name = "is-unicode-supported"; 7038 + packageName = "is-unicode-supported"; 7039 + version = "0.1.0"; 7040 + src = fetchurl { 7041 + url = "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz"; 7042 + sha512 = "knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw=="; 7043 + }; 7044 + }; 6325 7045 "is-weakref-1.0.2" = { 6326 7046 name = "is-weakref"; 6327 7047 packageName = "is-weakref"; ··· 6340 7060 sha512 = "fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww=="; 6341 7061 }; 6342 7062 }; 7063 + "is-yarn-global-0.3.0" = { 7064 + name = "is-yarn-global"; 7065 + packageName = "is-yarn-global"; 7066 + version = "0.3.0"; 7067 + src = fetchurl { 7068 + url = "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz"; 7069 + sha512 = "VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw=="; 7070 + }; 7071 + }; 6343 7072 "isarray-0.0.1" = { 6344 7073 name = "isarray"; 6345 7074 packageName = "isarray"; ··· 6466 7195 sha512 = "5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA=="; 6467 7196 }; 6468 7197 }; 7198 + "jest-diff-26.6.2" = { 7199 + name = "jest-diff"; 7200 + packageName = "jest-diff"; 7201 + version = "26.6.2"; 7202 + src = fetchurl { 7203 + url = "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz"; 7204 + sha512 = "6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA=="; 7205 + }; 7206 + }; 6469 7207 "jest-diff-27.5.1" = { 6470 7208 name = "jest-diff"; 6471 7209 packageName = "jest-diff"; ··· 6509 7247 src = fetchurl { 6510 7248 url = "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz"; 6511 7249 sha512 = "Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw=="; 7250 + }; 7251 + }; 7252 + "jest-get-type-26.3.0" = { 7253 + name = "jest-get-type"; 7254 + packageName = "jest-get-type"; 7255 + version = "26.3.0"; 7256 + src = fetchurl { 7257 + url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz"; 7258 + sha512 = "TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig=="; 6512 7259 }; 6513 7260 }; 6514 7261 "jest-get-type-27.5.1" = { ··· 6808 7555 sha512 = "OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="; 6809 7556 }; 6810 7557 }; 7558 + "json-buffer-3.0.0" = { 7559 + name = "json-buffer"; 7560 + packageName = "json-buffer"; 7561 + version = "3.0.0"; 7562 + src = fetchurl { 7563 + url = "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz"; 7564 + sha1 = "5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898"; 7565 + }; 7566 + }; 6811 7567 "json-parse-even-better-errors-2.3.1" = { 6812 7568 name = "json-parse-even-better-errors"; 6813 7569 packageName = "json-parse-even-better-errors"; ··· 6853 7609 sha512 = "Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="; 6854 7610 }; 6855 7611 }; 6856 - "json5-1.0.1" = { 7612 + "json5-1.0.2" = { 6857 7613 name = "json5"; 6858 7614 packageName = "json5"; 6859 - version = "1.0.1"; 7615 + version = "1.0.2"; 6860 7616 src = fetchurl { 6861 - url = "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz"; 6862 - sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow=="; 7617 + url = "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz"; 7618 + sha512 = "g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA=="; 6863 7619 }; 6864 7620 }; 6865 - "json5-2.2.1" = { 7621 + "json5-2.2.3" = { 6866 7622 name = "json5"; 6867 7623 packageName = "json5"; 6868 - version = "2.2.1"; 7624 + version = "2.2.3"; 6869 7625 src = fetchurl { 6870 - url = "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz"; 6871 - sha512 = "1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA=="; 7626 + url = "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz"; 7627 + sha512 = "XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg=="; 6872 7628 }; 6873 7629 }; 6874 7630 "jsonexport-2.5.2" = { ··· 6986 7742 src = fetchurl { 6987 7743 url = "https://registry.npmjs.org/jwt-decode/-/jwt-decode-3.1.2.tgz"; 6988 7744 sha512 = "UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A=="; 7745 + }; 7746 + }; 7747 + "keyv-3.1.0" = { 7748 + name = "keyv"; 7749 + packageName = "keyv"; 7750 + version = "3.1.0"; 7751 + src = fetchurl { 7752 + url = "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz"; 7753 + sha512 = "9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA=="; 6989 7754 }; 6990 7755 }; 6991 7756 "kind-of-6.0.3" = { ··· 7033 7798 sha512 = "qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ=="; 7034 7799 }; 7035 7800 }; 7801 + "latest-version-5.1.0" = { 7802 + name = "latest-version"; 7803 + packageName = "latest-version"; 7804 + version = "5.1.0"; 7805 + src = fetchurl { 7806 + url = "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz"; 7807 + sha512 = "weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA=="; 7808 + }; 7809 + }; 7036 7810 "leven-3.1.0" = { 7037 7811 name = "leven"; 7038 7812 packageName = "leven"; ··· 7087 7861 sha512 = "3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg=="; 7088 7862 }; 7089 7863 }; 7090 - "loader-utils-2.0.0" = { 7864 + "loader-utils-2.0.4" = { 7091 7865 name = "loader-utils"; 7092 7866 packageName = "loader-utils"; 7093 - version = "2.0.0"; 7867 + version = "2.0.4"; 7094 7868 src = fetchurl { 7095 - url = "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz"; 7096 - sha512 = "rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ=="; 7869 + url = "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz"; 7870 + sha512 = "xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw=="; 7097 7871 }; 7098 7872 }; 7099 - "loader-utils-3.2.0" = { 7873 + "loader-utils-3.2.1" = { 7100 7874 name = "loader-utils"; 7101 7875 packageName = "loader-utils"; 7102 - version = "3.2.0"; 7876 + version = "3.2.1"; 7103 7877 src = fetchurl { 7104 - url = "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.0.tgz"; 7105 - sha512 = "HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ=="; 7878 + url = "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz"; 7879 + sha512 = "ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw=="; 7106 7880 }; 7107 7881 }; 7108 7882 "locate-path-3.0.0" = { ··· 7213 7987 sha512 = "xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ=="; 7214 7988 }; 7215 7989 }; 7990 + "log-symbols-4.1.0" = { 7991 + name = "log-symbols"; 7992 + packageName = "log-symbols"; 7993 + version = "4.1.0"; 7994 + src = fetchurl { 7995 + url = "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz"; 7996 + sha512 = "8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg=="; 7997 + }; 7998 + }; 7216 7999 "loose-envify-1.4.0" = { 7217 8000 name = "loose-envify"; 7218 8001 packageName = "loose-envify"; ··· 7231 8014 sha512 = "7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg=="; 7232 8015 }; 7233 8016 }; 8017 + "lowercase-keys-1.0.1" = { 8018 + name = "lowercase-keys"; 8019 + packageName = "lowercase-keys"; 8020 + version = "1.0.1"; 8021 + src = fetchurl { 8022 + url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz"; 8023 + sha512 = "G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA=="; 8024 + }; 8025 + }; 8026 + "lowercase-keys-2.0.0" = { 8027 + name = "lowercase-keys"; 8028 + packageName = "lowercase-keys"; 8029 + version = "2.0.0"; 8030 + src = fetchurl { 8031 + url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz"; 8032 + sha512 = "tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA=="; 8033 + }; 8034 + }; 7234 8035 "lru-cache-6.0.0" = { 7235 8036 name = "lru-cache"; 7236 8037 packageName = "lru-cache"; ··· 7240 8041 sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 7241 8042 }; 7242 8043 }; 8044 + "lz-string-1.4.4" = { 8045 + name = "lz-string"; 8046 + packageName = "lz-string"; 8047 + version = "1.4.4"; 8048 + src = fetchurl { 8049 + url = "https://registry.npmjs.org/lz-string/-/lz-string-1.4.4.tgz"; 8050 + sha1 = "c0d8eaf36059f705796e1e344811cf4c498d3a26"; 8051 + }; 8052 + }; 7243 8053 "magic-string-0.25.7" = { 7244 8054 name = "magic-string"; 7245 8055 packageName = "magic-string"; ··· 7267 8077 sha512 = "JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg=="; 7268 8078 }; 7269 8079 }; 8080 + "map-obj-1.0.1" = { 8081 + name = "map-obj"; 8082 + packageName = "map-obj"; 8083 + version = "1.0.1"; 8084 + src = fetchurl { 8085 + url = "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz"; 8086 + sha1 = "d933ceb9205d82bdcf4886f6742bdc2b4dea146d"; 8087 + }; 8088 + }; 8089 + "map-obj-4.3.0" = { 8090 + name = "map-obj"; 8091 + packageName = "map-obj"; 8092 + version = "4.3.0"; 8093 + src = fetchurl { 8094 + url = "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz"; 8095 + sha512 = "hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ=="; 8096 + }; 8097 + }; 7270 8098 "mdn-data-2.0.14" = { 7271 8099 name = "mdn-data"; 7272 8100 packageName = "mdn-data"; ··· 7303 8131 sha512 = "ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw=="; 7304 8132 }; 7305 8133 }; 8134 + "meow-7.1.1" = { 8135 + name = "meow"; 8136 + packageName = "meow"; 8137 + version = "7.1.1"; 8138 + src = fetchurl { 8139 + url = "https://registry.npmjs.org/meow/-/meow-7.1.1.tgz"; 8140 + sha512 = "GWHvA5QOcS412WCo8vwKDlTelGLsCGBVevQB5Kva961rmNfun0PCbv5+xta2kUMFJyR8/oWnn7ddeKdosbAPbA=="; 8141 + }; 8142 + }; 7306 8143 "merge-descriptors-1.0.1" = { 7307 8144 name = "merge-descriptors"; 7308 8145 packageName = "merge-descriptors"; ··· 7384 8221 sha512 = "OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="; 7385 8222 }; 7386 8223 }; 8224 + "mimic-response-1.0.1" = { 8225 + name = "mimic-response"; 8226 + packageName = "mimic-response"; 8227 + version = "1.0.1"; 8228 + src = fetchurl { 8229 + url = "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz"; 8230 + sha512 = "j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ=="; 8231 + }; 8232 + }; 8233 + "min-indent-1.0.1" = { 8234 + name = "min-indent"; 8235 + packageName = "min-indent"; 8236 + version = "1.0.1"; 8237 + src = fetchurl { 8238 + url = "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz"; 8239 + sha512 = "I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg=="; 8240 + }; 8241 + }; 7387 8242 "mini-create-react-context-0.4.1" = { 7388 8243 name = "mini-create-react-context"; 7389 8244 packageName = "mini-create-react-context"; ··· 7411 8266 sha512 = "UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="; 7412 8267 }; 7413 8268 }; 7414 - "minimatch-3.0.4" = { 7415 - name = "minimatch"; 7416 - packageName = "minimatch"; 7417 - version = "3.0.4"; 7418 - src = fetchurl { 7419 - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; 7420 - sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; 7421 - }; 7422 - }; 7423 8269 "minimatch-3.1.2" = { 7424 8270 name = "minimatch"; 7425 8271 packageName = "minimatch"; ··· 7447 8293 sha512 = "Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="; 7448 8294 }; 7449 8295 }; 8296 + "minimist-options-4.1.0" = { 8297 + name = "minimist-options"; 8298 + packageName = "minimist-options"; 8299 + version = "4.1.0"; 8300 + src = fetchurl { 8301 + url = "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz"; 8302 + sha512 = "Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A=="; 8303 + }; 8304 + }; 7450 8305 "mkdirp-0.5.5" = { 7451 8306 name = "mkdirp"; 7452 8307 packageName = "mkdirp"; ··· 7492 8347 sha512 = "2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg=="; 7493 8348 }; 7494 8349 }; 8350 + "mute-stream-0.0.8" = { 8351 + name = "mute-stream"; 8352 + packageName = "mute-stream"; 8353 + version = "0.0.8"; 8354 + src = fetchurl { 8355 + url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz"; 8356 + sha512 = "nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="; 8357 + }; 8358 + }; 7495 8359 "nanoid-3.3.4" = { 7496 8360 name = "nanoid"; 7497 8361 packageName = "nanoid"; ··· 7510 8374 sha512 = "OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="; 7511 8375 }; 7512 8376 }; 8377 + "navidrome-music-player-4.25.1" = { 8378 + name = "navidrome-music-player"; 8379 + packageName = "navidrome-music-player"; 8380 + version = "4.25.1"; 8381 + src = fetchurl { 8382 + url = "https://registry.npmjs.org/navidrome-music-player/-/navidrome-music-player-4.25.1.tgz"; 8383 + sha512 = "bHYr84ATUf/4+/PUoTpUSmpF4/igBx2UPhgnPqvda4FND+GJZtb1ikbMs1U+mhkNEUebe+2I29ob1zY7YZdtjg=="; 8384 + }; 8385 + }; 7513 8386 "negotiator-0.6.3" = { 7514 8387 name = "negotiator"; 7515 8388 packageName = "negotiator"; ··· 7573 8446 sha512 = "PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg=="; 7574 8447 }; 7575 8448 }; 8449 + "normalize-package-data-2.5.0" = { 8450 + name = "normalize-package-data"; 8451 + packageName = "normalize-package-data"; 8452 + version = "2.5.0"; 8453 + src = fetchurl { 8454 + url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz"; 8455 + sha512 = "/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA=="; 8456 + }; 8457 + }; 7576 8458 "normalize-path-3.0.0" = { 7577 8459 name = "normalize-path"; 7578 8460 packageName = "normalize-path"; ··· 7589 8471 src = fetchurl { 7590 8472 url = "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz"; 7591 8473 sha512 = "bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA=="; 8474 + }; 8475 + }; 8476 + "normalize-url-4.5.1" = { 8477 + name = "normalize-url"; 8478 + packageName = "normalize-url"; 8479 + version = "4.5.1"; 8480 + src = fetchurl { 8481 + url = "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz"; 8482 + sha512 = "9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA=="; 7592 8483 }; 7593 8484 }; 7594 8485 "normalize-url-6.1.0" = { ··· 7798 8689 sha512 = "74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw=="; 7799 8690 }; 7800 8691 }; 8692 + "ora-5.4.1" = { 8693 + name = "ora"; 8694 + packageName = "ora"; 8695 + version = "5.4.1"; 8696 + src = fetchurl { 8697 + url = "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz"; 8698 + sha512 = "5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ=="; 8699 + }; 8700 + }; 8701 + "os-tmpdir-1.0.2" = { 8702 + name = "os-tmpdir"; 8703 + packageName = "os-tmpdir"; 8704 + version = "1.0.2"; 8705 + src = fetchurl { 8706 + url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; 8707 + sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; 8708 + }; 8709 + }; 8710 + "p-cancelable-1.1.0" = { 8711 + name = "p-cancelable"; 8712 + packageName = "p-cancelable"; 8713 + version = "1.1.0"; 8714 + src = fetchurl { 8715 + url = "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz"; 8716 + sha512 = "s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw=="; 8717 + }; 8718 + }; 7801 8719 "p-limit-2.3.0" = { 7802 8720 name = "p-limit"; 7803 8721 packageName = "p-limit"; ··· 7859 8777 src = fetchurl { 7860 8778 url = "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"; 7861 8779 sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="; 8780 + }; 8781 + }; 8782 + "package-json-6.5.0" = { 8783 + name = "package-json"; 8784 + packageName = "package-json"; 8785 + version = "6.5.0"; 8786 + src = fetchurl { 8787 + url = "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz"; 8788 + sha512 = "k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ=="; 7862 8789 }; 7863 8790 }; 7864 8791 "param-case-3.0.4" = { ··· 8734 9661 sha512 = "vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="; 8735 9662 }; 8736 9663 }; 9664 + "prepend-http-2.0.0" = { 9665 + name = "prepend-http"; 9666 + packageName = "prepend-http"; 9667 + version = "2.0.0"; 9668 + src = fetchurl { 9669 + url = "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz"; 9670 + sha1 = "e92434bfa5ea8c19f41cdfd401d741a3c819d897"; 9671 + }; 9672 + }; 9673 + "prettier-2.8.2" = { 9674 + name = "prettier"; 9675 + packageName = "prettier"; 9676 + version = "2.8.2"; 9677 + src = fetchurl { 9678 + url = "https://registry.npmjs.org/prettier/-/prettier-2.8.2.tgz"; 9679 + sha512 = "BtRV9BcncDyI2tsuS19zzhzoxD8Dh8LiCx7j7tHzrkz8GFXAexeWFdi22mjE1d16dftH2qNaytVxqiRTGlMfpw=="; 9680 + }; 9681 + }; 8737 9682 "pretty-bytes-5.6.0" = { 8738 9683 name = "pretty-bytes"; 8739 9684 packageName = "pretty-bytes"; ··· 8750 9695 src = fetchurl { 8751 9696 url = "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz"; 8752 9697 sha512 = "AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw=="; 9698 + }; 9699 + }; 9700 + "pretty-format-26.6.2" = { 9701 + name = "pretty-format"; 9702 + packageName = "pretty-format"; 9703 + version = "26.6.2"; 9704 + src = fetchurl { 9705 + url = "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz"; 9706 + sha512 = "7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg=="; 9707 + }; 9708 + }; 9709 + "pretty-format-27.0.6" = { 9710 + name = "pretty-format"; 9711 + packageName = "pretty-format"; 9712 + version = "27.0.6"; 9713 + src = fetchurl { 9714 + url = "https://registry.npmjs.org/pretty-format/-/pretty-format-27.0.6.tgz"; 9715 + sha512 = "8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ=="; 8753 9716 }; 8754 9717 }; 8755 9718 "pretty-format-27.5.1" = { ··· 8824 9787 sha512 = "E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag=="; 8825 9788 }; 8826 9789 }; 9790 + "pump-3.0.0" = { 9791 + name = "pump"; 9792 + packageName = "pump"; 9793 + version = "3.0.0"; 9794 + src = fetchurl { 9795 + url = "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz"; 9796 + sha512 = "LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww=="; 9797 + }; 9798 + }; 8827 9799 "punycode-2.1.1" = { 8828 9800 name = "punycode"; 8829 9801 packageName = "punycode"; ··· 8831 9803 src = fetchurl { 8832 9804 url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"; 8833 9805 sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; 9806 + }; 9807 + }; 9808 + "pupa-2.1.1" = { 9809 + name = "pupa"; 9810 + packageName = "pupa"; 9811 + version = "2.1.1"; 9812 + src = fetchurl { 9813 + url = "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz"; 9814 + sha512 = "l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A=="; 8834 9815 }; 8835 9816 }; 8836 9817 "q-1.5.1" = { ··· 8878 9859 sha512 = "NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="; 8879 9860 }; 8880 9861 }; 9862 + "quick-lru-4.0.1" = { 9863 + name = "quick-lru"; 9864 + packageName = "quick-lru"; 9865 + version = "4.0.1"; 9866 + src = fetchurl { 9867 + url = "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz"; 9868 + sha512 = "ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g=="; 9869 + }; 9870 + }; 8881 9871 "quick-lru-5.1.1" = { 8882 9872 name = "quick-lru"; 8883 9873 packageName = "quick-lru"; ··· 8923 9913 sha512 = "w3020CLLmiammZOSKI4CsIWyD9ZFs/oNFWKSnPzvN6EqQI2dtSxxiycKjaxnwjKN7jmzNWe/5uzna0FIND4wgA=="; 8924 9914 }; 8925 9915 }; 9916 + "ra-test-3.18.3" = { 9917 + name = "ra-test"; 9918 + packageName = "ra-test"; 9919 + version = "3.18.3"; 9920 + src = fetchurl { 9921 + url = "https://registry.npmjs.org/ra-test/-/ra-test-3.18.3.tgz"; 9922 + sha512 = "TcJgH1Eh1vMqW/QaoDf9ArFb15p4ToQRDntZofRF368/7xSXuuub1WdlLddGaRj2A4xITRUvnFyel7RVZ9QTtw=="; 9923 + }; 9924 + }; 8926 9925 "ra-ui-materialui-3.18.3" = { 8927 9926 name = "ra-ui-materialui"; 8928 9927 packageName = "ra-ui-materialui"; ··· 8968 9967 sha512 = "qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig=="; 8969 9968 }; 8970 9969 }; 9970 + "rc-1.2.8" = { 9971 + name = "rc"; 9972 + packageName = "rc"; 9973 + version = "1.2.8"; 9974 + src = fetchurl { 9975 + url = "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz"; 9976 + sha512 = "y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw=="; 9977 + }; 9978 + }; 8971 9979 "rc-align-4.0.9" = { 8972 9980 name = "rc-align"; 8973 9981 packageName = "rc-align"; ··· 9121 10129 sha512 = "U5EKckXVt6IrEyhMMsgmHQiWTGLudhajPPG77KFSvgsMqNEHSyGpqWvOMc5+DhEah/vH4E1n+J5weBNLd5VtyA=="; 9122 10130 }; 9123 10131 }; 10132 + "react-error-boundary-3.1.3" = { 10133 + name = "react-error-boundary"; 10134 + packageName = "react-error-boundary"; 10135 + version = "3.1.3"; 10136 + src = fetchurl { 10137 + url = "https://registry.npmjs.org/react-error-boundary/-/react-error-boundary-3.1.3.tgz"; 10138 + sha512 = "A+F9HHy9fvt9t8SNDlonq01prnU8AmkjvGKV4kk8seB9kU3xMEO8J/PQlLVmoOIDODl5U2kufSBs4vrWIqhsAA=="; 10139 + }; 10140 + }; 9124 10141 "react-error-overlay-6.0.11" = { 9125 10142 name = "react-error-overlay"; 9126 10143 packageName = "react-error-overlay"; ··· 9202 10219 sha512 = "24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="; 9203 10220 }; 9204 10221 }; 10222 + "react-is-17.0.1" = { 10223 + name = "react-is"; 10224 + packageName = "react-is"; 10225 + version = "17.0.1"; 10226 + src = fetchurl { 10227 + url = "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz"; 10228 + sha512 = "NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA=="; 10229 + }; 10230 + }; 9205 10231 "react-is-17.0.2" = { 9206 10232 name = "react-is"; 9207 10233 packageName = "react-is"; ··· 9220 10246 sha512 = "xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="; 9221 10247 }; 9222 10248 }; 9223 - "react-jinke-music-player-4.24.2" = { 9224 - name = "react-jinke-music-player"; 9225 - packageName = "react-jinke-music-player"; 9226 - version = "4.24.2"; 9227 - src = fetchurl { 9228 - url = "https://registry.npmjs.org/react-jinke-music-player/-/react-jinke-music-player-4.24.2.tgz"; 9229 - sha512 = "E1ipg12CpIF2C54vnAD7Q14yr4UiwbQJo60DoF9dkU0gWRLgo60oLhjw4mRxlbERurkeR/9Ml1a9hUnIa8el/Q=="; 9230 - }; 9231 - }; 9232 10249 "react-lifecycles-compat-3.0.4" = { 9233 10250 name = "react-lifecycles-compat"; 9234 10251 packageName = "react-lifecycles-compat"; ··· 9319 10336 sha512 = "Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA=="; 9320 10337 }; 9321 10338 }; 10339 + "read-pkg-5.2.0" = { 10340 + name = "read-pkg"; 10341 + packageName = "read-pkg"; 10342 + version = "5.2.0"; 10343 + src = fetchurl { 10344 + url = "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz"; 10345 + sha512 = "Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg=="; 10346 + }; 10347 + }; 10348 + "read-pkg-up-7.0.1" = { 10349 + name = "read-pkg-up"; 10350 + packageName = "read-pkg-up"; 10351 + version = "7.0.1"; 10352 + src = fetchurl { 10353 + url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz"; 10354 + sha512 = "zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg=="; 10355 + }; 10356 + }; 9322 10357 "readable-stream-2.3.7" = { 9323 10358 name = "readable-stream"; 9324 10359 packageName = "readable-stream"; ··· 9346 10381 sha512 = "hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="; 9347 10382 }; 9348 10383 }; 9349 - "recursive-readdir-2.2.2" = { 10384 + "recursive-readdir-2.2.3" = { 9350 10385 name = "recursive-readdir"; 9351 10386 packageName = "recursive-readdir"; 9352 - version = "2.2.2"; 10387 + version = "2.2.3"; 9353 10388 src = fetchurl { 9354 - url = "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz"; 9355 - sha512 = "nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg=="; 10389 + url = "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz"; 10390 + sha512 = "8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA=="; 10391 + }; 10392 + }; 10393 + "redent-3.0.0" = { 10394 + name = "redent"; 10395 + packageName = "redent"; 10396 + version = "3.0.0"; 10397 + src = fetchurl { 10398 + url = "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz"; 10399 + sha512 = "6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg=="; 9356 10400 }; 9357 10401 }; 9358 10402 "redux-4.2.0" = { ··· 9454 10498 sha512 = "HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ=="; 9455 10499 }; 9456 10500 }; 10501 + "registry-auth-token-4.2.1" = { 10502 + name = "registry-auth-token"; 10503 + packageName = "registry-auth-token"; 10504 + version = "4.2.1"; 10505 + src = fetchurl { 10506 + url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz"; 10507 + sha512 = "6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw=="; 10508 + }; 10509 + }; 10510 + "registry-url-5.1.0" = { 10511 + name = "registry-url"; 10512 + packageName = "registry-url"; 10513 + version = "5.1.0"; 10514 + src = fetchurl { 10515 + url = "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz"; 10516 + sha512 = "8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw=="; 10517 + }; 10518 + }; 9457 10519 "regjsgen-0.7.1" = { 9458 10520 name = "regjsgen"; 9459 10521 packageName = "regjsgen"; ··· 9607 10669 sha512 = "J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ=="; 9608 10670 }; 9609 10671 }; 10672 + "responselike-1.0.2" = { 10673 + name = "responselike"; 10674 + packageName = "responselike"; 10675 + version = "1.0.2"; 10676 + src = fetchurl { 10677 + url = "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz"; 10678 + sha1 = "918720ef3b631c5642be068f15ade5a46f4ba1e7"; 10679 + }; 10680 + }; 10681 + "restore-cursor-3.1.0" = { 10682 + name = "restore-cursor"; 10683 + packageName = "restore-cursor"; 10684 + version = "3.1.0"; 10685 + src = fetchurl { 10686 + url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz"; 10687 + sha512 = "l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA=="; 10688 + }; 10689 + }; 9610 10690 "retry-0.13.1" = { 9611 10691 name = "retry"; 9612 10692 packageName = "retry"; ··· 9652 10732 sha512 = "w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ=="; 9653 10733 }; 9654 10734 }; 10735 + "run-async-2.4.1" = { 10736 + name = "run-async"; 10737 + packageName = "run-async"; 10738 + version = "2.4.1"; 10739 + src = fetchurl { 10740 + url = "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz"; 10741 + sha512 = "tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ=="; 10742 + }; 10743 + }; 9655 10744 "run-parallel-1.2.0" = { 9656 10745 name = "run-parallel"; 9657 10746 packageName = "run-parallel"; ··· 9659 10748 src = fetchurl { 9660 10749 url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"; 9661 10750 sha512 = "5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="; 10751 + }; 10752 + }; 10753 + "rxjs-6.6.7" = { 10754 + name = "rxjs"; 10755 + packageName = "rxjs"; 10756 + version = "6.6.7"; 10757 + src = fetchurl { 10758 + url = "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz"; 10759 + sha512 = "hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ=="; 9662 10760 }; 9663 10761 }; 9664 10762 "safe-buffer-5.1.2" = { ··· 9805 10903 sha512 = "GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ=="; 9806 10904 }; 9807 10905 }; 10906 + "semver-5.7.1" = { 10907 + name = "semver"; 10908 + packageName = "semver"; 10909 + version = "5.7.1"; 10910 + src = fetchurl { 10911 + url = "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"; 10912 + sha512 = "sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="; 10913 + }; 10914 + }; 9808 10915 "semver-6.3.0" = { 9809 10916 name = "semver"; 9810 10917 packageName = "semver"; ··· 9823 10930 sha512 = "QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g=="; 9824 10931 }; 9825 10932 }; 10933 + "semver-diff-3.1.1" = { 10934 + name = "semver-diff"; 10935 + packageName = "semver-diff"; 10936 + version = "3.1.1"; 10937 + src = fetchurl { 10938 + url = "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz"; 10939 + sha512 = "GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg=="; 10940 + }; 10941 + }; 9826 10942 "send-0.18.0" = { 9827 10943 name = "send"; 9828 10944 packageName = "send"; ··· 9976 11092 sha512 = "GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ=="; 9977 11093 }; 9978 11094 }; 9979 - "sortablejs-1.13.0" = { 11095 + "sortablejs-1.15.0" = { 9980 11096 name = "sortablejs"; 9981 11097 packageName = "sortablejs"; 9982 - version = "1.13.0"; 11098 + version = "1.15.0"; 9983 11099 src = fetchurl { 9984 - url = "https://registry.npmjs.org/sortablejs/-/sortablejs-1.13.0.tgz"; 9985 - sha512 = "RBJirPY0spWCrU5yCmWM1eFs/XgX2J5c6b275/YyxFRgnzPhKl/TDeU2hNR8Dt7ITq66NRPM4UlOt+e5O4CFHg=="; 11100 + url = "https://registry.npmjs.org/sortablejs/-/sortablejs-1.15.0.tgz"; 11101 + sha512 = "bv9qgVMjUMf89wAvM6AxVvS/4MX3sPeN0+agqShejLU5z5GX4C75ow1O2e5k4L6XItUyAK3gH6AxSbXrOM5e8w=="; 9986 11102 }; 9987 11103 }; 9988 11104 "source-list-map-2.0.1" = { ··· 10057 11173 sha512 = "9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA=="; 10058 11174 }; 10059 11175 }; 11176 + "spdx-correct-3.1.1" = { 11177 + name = "spdx-correct"; 11178 + packageName = "spdx-correct"; 11179 + version = "3.1.1"; 11180 + src = fetchurl { 11181 + url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz"; 11182 + sha512 = "cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w=="; 11183 + }; 11184 + }; 11185 + "spdx-exceptions-2.3.0" = { 11186 + name = "spdx-exceptions"; 11187 + packageName = "spdx-exceptions"; 11188 + version = "2.3.0"; 11189 + src = fetchurl { 11190 + url = "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz"; 11191 + sha512 = "/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A=="; 11192 + }; 11193 + }; 11194 + "spdx-expression-parse-3.0.1" = { 11195 + name = "spdx-expression-parse"; 11196 + packageName = "spdx-expression-parse"; 11197 + version = "3.0.1"; 11198 + src = fetchurl { 11199 + url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz"; 11200 + sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 11201 + }; 11202 + }; 11203 + "spdx-license-ids-3.0.9" = { 11204 + name = "spdx-license-ids"; 11205 + packageName = "spdx-license-ids"; 11206 + version = "3.0.9"; 11207 + src = fetchurl { 11208 + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.9.tgz"; 11209 + sha512 = "Ki212dKK4ogX+xDo4CtOZBVIwhsKBEfsEEcwmJfLQzirgc2jIWdzg40Unxz/HzEUqM1WFzVlQSMF9kZZ2HboLQ=="; 11210 + }; 11211 + }; 10060 11212 "spdy-4.0.2" = { 10061 11213 name = "spdy"; 10062 11214 packageName = "spdy"; ··· 10165 11317 sha512 = "n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw=="; 10166 11318 }; 10167 11319 }; 11320 + "string-width-3.1.0" = { 11321 + name = "string-width"; 11322 + packageName = "string-width"; 11323 + version = "3.1.0"; 11324 + src = fetchurl { 11325 + url = "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz"; 11326 + sha512 = "vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w=="; 11327 + }; 11328 + }; 10168 11329 "string-width-4.2.2" = { 10169 11330 name = "string-width"; 10170 11331 packageName = "string-width"; ··· 10237 11398 sha512 = "rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw=="; 10238 11399 }; 10239 11400 }; 11401 + "strip-ansi-5.2.0" = { 11402 + name = "strip-ansi"; 11403 + packageName = "strip-ansi"; 11404 + version = "5.2.0"; 11405 + src = fetchurl { 11406 + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"; 11407 + sha512 = "DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="; 11408 + }; 11409 + }; 10240 11410 "strip-ansi-6.0.1" = { 10241 11411 name = "strip-ansi"; 10242 11412 packageName = "strip-ansi"; ··· 10291 11461 sha512 = "BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="; 10292 11462 }; 10293 11463 }; 11464 + "strip-indent-3.0.0" = { 11465 + name = "strip-indent"; 11466 + packageName = "strip-indent"; 11467 + version = "3.0.0"; 11468 + src = fetchurl { 11469 + url = "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz"; 11470 + sha512 = "laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ=="; 11471 + }; 11472 + }; 11473 + "strip-json-comments-2.0.1" = { 11474 + name = "strip-json-comments"; 11475 + packageName = "strip-json-comments"; 11476 + version = "2.0.1"; 11477 + src = fetchurl { 11478 + url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz"; 11479 + sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; 11480 + }; 11481 + }; 10294 11482 "strip-json-comments-3.1.1" = { 10295 11483 name = "strip-json-comments"; 10296 11484 packageName = "strip-json-comments"; ··· 10453 11641 sha512 = "G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw=="; 10454 11642 }; 10455 11643 }; 11644 + "term-size-2.2.1" = { 11645 + name = "term-size"; 11646 + packageName = "term-size"; 11647 + version = "2.2.1"; 11648 + src = fetchurl { 11649 + url = "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz"; 11650 + sha512 = "wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg=="; 11651 + }; 11652 + }; 10456 11653 "terminal-link-2.1.1" = { 10457 11654 name = "terminal-link"; 10458 11655 packageName = "terminal-link"; ··· 10507 11704 sha512 = "8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w=="; 10508 11705 }; 10509 11706 }; 11707 + "through-2.3.8" = { 11708 + name = "through"; 11709 + packageName = "through"; 11710 + version = "2.3.8"; 11711 + src = fetchurl { 11712 + url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz"; 11713 + sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; 11714 + }; 11715 + }; 10510 11716 "thunky-1.1.0" = { 10511 11717 name = "thunky"; 10512 11718 packageName = "thunky"; ··· 10534 11740 sha512 = "lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA=="; 10535 11741 }; 10536 11742 }; 11743 + "tmp-0.0.33" = { 11744 + name = "tmp"; 11745 + packageName = "tmp"; 11746 + version = "0.0.33"; 11747 + src = fetchurl { 11748 + url = "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz"; 11749 + sha512 = "jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw=="; 11750 + }; 11751 + }; 10537 11752 "tmpl-1.0.5" = { 10538 11753 name = "tmpl"; 10539 11754 packageName = "tmpl"; ··· 10550 11765 src = fetchurl { 10551 11766 url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; 10552 11767 sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e"; 11768 + }; 11769 + }; 11770 + "to-readable-stream-1.0.0" = { 11771 + name = "to-readable-stream"; 11772 + packageName = "to-readable-stream"; 11773 + version = "1.0.0"; 11774 + src = fetchurl { 11775 + url = "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz"; 11776 + sha512 = "Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q=="; 10553 11777 }; 10554 11778 }; 10555 11779 "to-regex-range-5.0.1" = { ··· 10597 11821 sha512 = "15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw=="; 10598 11822 }; 10599 11823 }; 11824 + "trim-newlines-3.0.1" = { 11825 + name = "trim-newlines"; 11826 + packageName = "trim-newlines"; 11827 + version = "3.0.1"; 11828 + src = fetchurl { 11829 + url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz"; 11830 + sha512 = "c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw=="; 11831 + }; 11832 + }; 10600 11833 "tryer-1.0.1" = { 10601 11834 name = "tryer"; 10602 11835 packageName = "tryer"; ··· 10678 11911 sha512 = "0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g=="; 10679 11912 }; 10680 11913 }; 11914 + "type-fest-0.13.1" = { 11915 + name = "type-fest"; 11916 + packageName = "type-fest"; 11917 + version = "0.13.1"; 11918 + src = fetchurl { 11919 + url = "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz"; 11920 + sha512 = "34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg=="; 11921 + }; 11922 + }; 10681 11923 "type-fest-0.16.0" = { 10682 11924 name = "type-fest"; 10683 11925 packageName = "type-fest"; ··· 10703 11945 src = fetchurl { 10704 11946 url = "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz"; 10705 11947 sha512 = "t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="; 11948 + }; 11949 + }; 11950 + "type-fest-0.6.0" = { 11951 + name = "type-fest"; 11952 + packageName = "type-fest"; 11953 + version = "0.6.0"; 11954 + src = fetchurl { 11955 + url = "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz"; 11956 + sha512 = "q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg=="; 11957 + }; 11958 + }; 11959 + "type-fest-0.8.1" = { 11960 + name = "type-fest"; 11961 + packageName = "type-fest"; 11962 + version = "0.8.1"; 11963 + src = fetchurl { 11964 + url = "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz"; 11965 + sha512 = "4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA=="; 10706 11966 }; 10707 11967 }; 10708 11968 "type-fest-2.19.0" = { ··· 10876 12136 sha512 = "/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg=="; 10877 12137 }; 10878 12138 }; 12139 + "update-notifier-4.1.3" = { 12140 + name = "update-notifier"; 12141 + packageName = "update-notifier"; 12142 + version = "4.1.3"; 12143 + src = fetchurl { 12144 + url = "https://registry.npmjs.org/update-notifier/-/update-notifier-4.1.3.tgz"; 12145 + sha512 = "Yld6Z0RyCYGB6ckIjffGOSOmHXj1gMeE7aROz4MG+XMkmixBX4jUngrGXNYz7wPKBmtoD4MnBa2Anu7RSKht/A=="; 12146 + }; 12147 + }; 10879 12148 "uri-js-4.4.1" = { 10880 12149 name = "uri-js"; 10881 12150 packageName = "uri-js"; ··· 10892 12161 src = fetchurl { 10893 12162 url = "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz"; 10894 12163 sha512 = "WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ=="; 12164 + }; 12165 + }; 12166 + "url-parse-lax-3.0.0" = { 12167 + name = "url-parse-lax"; 12168 + packageName = "url-parse-lax"; 12169 + version = "3.0.0"; 12170 + src = fetchurl { 12171 + url = "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz"; 12172 + sha1 = "16b5cafc07dbe3676c1b1999177823d6503acb0c"; 10895 12173 }; 10896 12174 }; 10897 12175 "util-deprecate-1.0.2" = { ··· 10948 12226 sha512 = "FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w=="; 10949 12227 }; 10950 12228 }; 12229 + "validate-npm-package-license-3.0.4" = { 12230 + name = "validate-npm-package-license"; 12231 + packageName = "validate-npm-package-license"; 12232 + version = "3.0.4"; 12233 + src = fetchurl { 12234 + url = "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"; 12235 + sha512 = "DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew=="; 12236 + }; 12237 + }; 10951 12238 "value-equal-1.0.1" = { 10952 12239 name = "value-equal"; 10953 12240 packageName = "value-equal"; ··· 11020 12307 sha512 = "O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA=="; 11021 12308 }; 11022 12309 }; 12310 + "wcwidth-1.0.1" = { 12311 + name = "wcwidth"; 12312 + packageName = "wcwidth"; 12313 + version = "1.0.1"; 12314 + src = fetchurl { 12315 + url = "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz"; 12316 + sha1 = "f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"; 12317 + }; 12318 + }; 11023 12319 "webidl-conversions-4.0.2" = { 11024 12320 name = "webidl-conversions"; 11025 12321 packageName = "webidl-conversions"; ··· 11200 12496 sha512 = "bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg=="; 11201 12497 }; 11202 12498 }; 12499 + "widest-line-3.1.0" = { 12500 + name = "widest-line"; 12501 + packageName = "widest-line"; 12502 + version = "3.1.0"; 12503 + src = fetchurl { 12504 + url = "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz"; 12505 + sha512 = "NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg=="; 12506 + }; 12507 + }; 11203 12508 "word-wrap-1.2.3" = { 11204 12509 name = "word-wrap"; 11205 12510 packageName = "word-wrap"; ··· 11245 12550 sha512 = "DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug=="; 11246 12551 }; 11247 12552 }; 12553 + "workbox-cli-6.5.4" = { 12554 + name = "workbox-cli"; 12555 + packageName = "workbox-cli"; 12556 + version = "6.5.4"; 12557 + src = fetchurl { 12558 + url = "https://registry.npmjs.org/workbox-cli/-/workbox-cli-6.5.4.tgz"; 12559 + sha512 = "+Cc0jYh25MofhCROZqfQkpYSAGvykyrUVekuuPaLFbJ8qxX/zzX8hRRpglfwxDwokAjz8S20oEph4s+MyQc+Yw=="; 12560 + }; 12561 + }; 11248 12562 "workbox-core-6.5.4" = { 11249 12563 name = "workbox-core"; 11250 12564 packageName = "workbox-core"; ··· 11407 12721 sha512 = "Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg=="; 11408 12722 }; 11409 12723 }; 12724 + "xdg-basedir-4.0.0" = { 12725 + name = "xdg-basedir"; 12726 + packageName = "xdg-basedir"; 12727 + version = "4.0.0"; 12728 + src = fetchurl { 12729 + url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz"; 12730 + sha512 = "PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q=="; 12731 + }; 12732 + }; 11410 12733 "xml-name-validator-3.0.0" = { 11411 12734 name = "xml-name-validator"; 11412 12735 packageName = "xml-name-validator"; ··· 11470 12793 sha512 = "D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw=="; 11471 12794 }; 11472 12795 }; 12796 + "yargs-parser-18.1.3" = { 12797 + name = "yargs-parser"; 12798 + packageName = "yargs-parser"; 12799 + version = "18.1.3"; 12800 + src = fetchurl { 12801 + url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz"; 12802 + sha512 = "o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ=="; 12803 + }; 12804 + }; 11473 12805 "yargs-parser-20.2.9" = { 11474 12806 name = "yargs-parser"; 11475 12807 packageName = "yargs-parser"; ··· 11495 12827 version = "0.1.0"; 11496 12828 src = ./.; 11497 12829 dependencies = [ 12830 + sources."@adobe/css-tools-4.0.1" 11498 12831 sources."@ampproject/remapping-2.2.0" 11499 12832 sources."@babel/code-frame-7.18.6" 11500 12833 sources."@babel/compat-data-7.19.3" ··· 11755 13088 sources."chalk-4.1.2" 11756 13089 ]; 11757 13090 }) 13091 + (sources."@jest/types-26.6.2" // { 13092 + dependencies = [ 13093 + sources."chalk-4.1.0" 13094 + ]; 13095 + }) 11758 13096 sources."@jridgewell/gen-mapping-0.1.1" 11759 13097 sources."@jridgewell/resolve-uri-3.1.0" 11760 13098 sources."@jridgewell/set-array-1.1.2" ··· 11769 13107 sources."@material-ui/core-4.11.4" 11770 13108 sources."@material-ui/icons-4.11.2" 11771 13109 sources."@material-ui/lab-4.0.0-alpha.58" 11772 - sources."@material-ui/styles-4.11.4" 13110 + sources."@material-ui/styles-4.11.5" 11773 13111 sources."@material-ui/system-4.11.3" 11774 13112 sources."@material-ui/types-5.1.0" 11775 - sources."@material-ui/utils-4.11.2" 13113 + sources."@material-ui/utils-4.11.3" 11776 13114 (sources."@nicolo-ribaudo/eslint-scope-5-internals-5.1.1-v1" // { 11777 13115 dependencies = [ 11778 13116 sources."eslint-scope-5.1.1" ··· 11802 13140 }) 11803 13141 sources."@rushstack/eslint-patch-1.2.0" 11804 13142 sources."@sinclair/typebox-0.24.44" 13143 + sources."@sindresorhus/is-0.14.0" 11805 13144 sources."@sinonjs/commons-1.8.3" 11806 13145 sources."@sinonjs/fake-timers-8.1.0" 11807 13146 sources."@svgr/babel-plugin-add-jsx-attribute-5.4.0" ··· 11818 13157 sources."@svgr/plugin-jsx-5.5.0" 11819 13158 sources."@svgr/plugin-svgo-5.5.0" 11820 13159 sources."@svgr/webpack-5.5.0" 13160 + sources."@szmarczak/http-timer-1.1.2" 13161 + (sources."@testing-library/dom-8.1.0" // { 13162 + dependencies = [ 13163 + sources."@jest/types-27.0.6" 13164 + sources."@types/yargs-16.0.4" 13165 + sources."chalk-4.1.1" 13166 + (sources."pretty-format-27.0.6" // { 13167 + dependencies = [ 13168 + sources."ansi-styles-5.2.0" 13169 + ]; 13170 + }) 13171 + sources."react-is-17.0.2" 13172 + ]; 13173 + }) 13174 + (sources."@testing-library/jest-dom-5.16.5" // { 13175 + dependencies = [ 13176 + sources."aria-query-5.0.2" 13177 + ]; 13178 + }) 13179 + sources."@testing-library/react-12.1.5" 13180 + sources."@testing-library/react-hooks-7.0.2" 13181 + sources."@testing-library/user-event-13.5.0" 11821 13182 sources."@tootallnate/once-1.1.2" 11822 13183 sources."@trysound/sax-0.2.0" 13184 + sources."@types/aria-query-4.2.2" 11823 13185 sources."@types/babel__core-7.1.14" 11824 13186 sources."@types/babel__generator-7.6.2" 11825 13187 sources."@types/babel__template-7.4.0" ··· 11841 13203 sources."@types/istanbul-lib-coverage-2.0.1" 11842 13204 sources."@types/istanbul-lib-report-3.0.0" 11843 13205 sources."@types/istanbul-reports-3.0.1" 13206 + sources."@types/jest-26.0.23" 11844 13207 sources."@types/json-schema-7.0.11" 11845 13208 sources."@types/json5-0.0.29" 11846 13209 sources."@types/mime-3.0.1" 13210 + sources."@types/minimist-1.2.2" 11847 13211 sources."@types/node-14.0.27" 13212 + sources."@types/normalize-package-data-2.4.0" 11848 13213 sources."@types/parse-json-4.0.0" 11849 13214 sources."@types/prettier-2.7.1" 11850 13215 sources."@types/prop-types-15.7.3" ··· 11856 13221 sources."csstype-3.0.6" 11857 13222 ]; 11858 13223 }) 13224 + sources."@types/react-dom-17.0.5" 11859 13225 sources."@types/react-redux-7.1.24" 13226 + sources."@types/react-test-renderer-17.0.1" 11860 13227 sources."@types/react-transition-group-4.4.1" 11861 13228 sources."@types/resolve-1.17.1" 11862 13229 sources."@types/retry-0.12.0" ··· 11864 13231 sources."@types/serve-static-1.15.0" 11865 13232 sources."@types/sockjs-0.3.33" 11866 13233 sources."@types/stack-utils-2.0.1" 13234 + sources."@types/testing-library__jest-dom-5.9.5" 11867 13235 sources."@types/trusted-types-2.0.2" 11868 13236 sources."@types/ws-8.5.3" 13237 + sources."@types/yargs-15.0.13" 11869 13238 sources."@types/yargs-parser-15.0.0" 11870 13239 sources."@typescript-eslint/eslint-plugin-5.38.1" 11871 13240 sources."@typescript-eslint/experimental-utils-5.38.1" ··· 11916 13285 ]; 11917 13286 }) 11918 13287 sources."ajv-keywords-3.5.2" 13288 + (sources."ansi-align-3.0.0" // { 13289 + dependencies = [ 13290 + sources."ansi-regex-4.1.1" 13291 + sources."emoji-regex-7.0.3" 13292 + sources."is-fullwidth-code-point-2.0.0" 13293 + sources."string-width-3.1.0" 13294 + sources."strip-ansi-5.2.0" 13295 + ]; 13296 + }) 11919 13297 (sources."ansi-escapes-4.3.2" // { 11920 13298 dependencies = [ 11921 13299 sources."type-fest-0.21.3" ··· 11975 13353 ]; 11976 13354 }) 11977 13355 sources."balanced-match-1.0.2" 13356 + sources."base64-js-1.5.1" 11978 13357 sources."batch-0.6.1" 11979 13358 sources."bfj-7.0.2" 11980 13359 sources."big.js-5.2.2" 11981 13360 sources."binary-extensions-2.2.0" 13361 + (sources."bl-4.1.0" // { 13362 + dependencies = [ 13363 + sources."buffer-5.7.1" 13364 + ]; 13365 + }) 11982 13366 sources."bluebird-3.7.2" 11983 13367 sources."blueimp-md5-2.19.0" 11984 13368 (sources."body-parser-1.20.0" // { ··· 11990 13374 }) 11991 13375 sources."bonjour-service-1.0.14" 11992 13376 sources."boolbase-1.0.0" 13377 + (sources."boxen-4.2.0" // { 13378 + dependencies = [ 13379 + sources."camelcase-5.3.1" 13380 + ]; 13381 + }) 11993 13382 sources."brace-expansion-1.1.11" 11994 13383 sources."braces-3.0.2" 11995 13384 sources."browser-process-hrtime-1.0.0" ··· 11998 13387 sources."buffer-from-1.1.1" 11999 13388 sources."builtin-modules-3.2.0" 12000 13389 sources."bytes-3.0.0" 13390 + (sources."cacheable-request-6.1.0" // { 13391 + dependencies = [ 13392 + sources."get-stream-5.2.0" 13393 + sources."lowercase-keys-2.0.0" 13394 + sources."normalize-url-4.5.1" 13395 + ]; 13396 + }) 12001 13397 sources."call-bind-1.0.2" 12002 13398 sources."callsites-3.1.0" 12003 13399 (sources."camel-case-4.1.2" // { ··· 12007 13403 }) 12008 13404 sources."camelcase-6.3.0" 12009 13405 sources."camelcase-css-2.0.1" 13406 + (sources."camelcase-keys-6.2.2" // { 13407 + dependencies = [ 13408 + sources."camelcase-5.3.1" 13409 + ]; 13410 + }) 12010 13411 sources."caniuse-api-3.0.0" 12011 13412 sources."caniuse-lite-1.0.30001414" 12012 13413 sources."case-sensitive-paths-webpack-plugin-2.4.0" 13414 + sources."chalk-3.0.0" 12013 13415 sources."char-regex-1.0.2" 13416 + sources."chardet-0.7.0" 12014 13417 sources."check-types-11.1.2" 12015 13418 sources."chokidar-3.5.3" 12016 13419 sources."chrome-trace-event-1.0.3" 13420 + sources."ci-info-2.0.0" 12017 13421 sources."cjs-module-lexer-1.2.2" 12018 13422 sources."classnames-2.2.6" 12019 13423 sources."clean-css-5.3.1" 13424 + sources."cli-boxes-2.2.1" 13425 + sources."cli-cursor-3.1.0" 13426 + sources."cli-spinners-2.6.0" 13427 + sources."cli-width-3.0.0" 12020 13428 sources."cliui-7.0.4" 13429 + sources."clone-1.0.4" 13430 + sources."clone-response-1.0.2" 12021 13431 sources."clsx-1.1.1" 12022 13432 sources."co-4.6.0" 12023 13433 (sources."coa-2.0.2" // { ··· 12049 13459 }) 12050 13460 sources."compute-scroll-into-view-1.0.17" 12051 13461 sources."concat-map-0.0.1" 13462 + sources."configstore-5.0.1" 12052 13463 sources."confusing-browser-globals-1.0.11" 12053 13464 sources."connect-history-api-fallback-2.0.0" 12054 13465 sources."connected-react-router-6.9.1" ··· 12089 13500 sources."css-tree-1.0.0-alpha.37" 12090 13501 sources."css-vendor-2.0.8" 12091 13502 sources."css-what-3.4.2" 13503 + sources."css.escape-1.5.1" 12092 13504 sources."cssdb-7.0.1" 12093 13505 sources."cssesc-3.0.0" 12094 13506 sources."cssnano-5.1.13" ··· 12111 13523 sources."data-urls-2.0.0" 12112 13524 sources."date-fns-1.30.1" 12113 13525 sources."debug-4.3.4" 13526 + sources."decamelize-1.2.0" 13527 + (sources."decamelize-keys-1.1.0" // { 13528 + dependencies = [ 13529 + sources."map-obj-1.0.1" 13530 + ]; 13531 + }) 12114 13532 sources."decimal.js-10.4.1" 12115 - sources."decode-uri-component-0.2.0" 13533 + sources."decode-uri-component-0.2.2" 13534 + sources."decompress-response-3.3.0" 12116 13535 sources."dedent-0.7.0" 13536 + sources."deep-extend-0.6.0" 12117 13537 sources."deep-is-0.1.4" 12118 13538 sources."deepmerge-4.2.2" 12119 13539 sources."default-gateway-6.0.3" 13540 + sources."defaults-1.0.3" 13541 + sources."defer-to-connect-1.1.3" 12120 13542 sources."define-lazy-prop-2.0.0" 12121 13543 sources."define-properties-1.1.4" 12122 13544 sources."defined-1.0.0" ··· 12134 13556 sources."detective-5.2.1" 12135 13557 sources."diacritic-0.0.2" 12136 13558 sources."didyoumean-1.2.2" 13559 + sources."diff-sequences-26.6.2" 12137 13560 sources."dir-glob-3.0.1" 12138 13561 sources."dlv-1.1.3" 12139 13562 sources."dnd-core-14.0.1" 12140 13563 sources."dns-equal-1.0.0" 12141 13564 sources."dns-packet-5.4.0" 12142 13565 sources."doctrine-3.0.0" 13566 + sources."dom-accessibility-api-0.5.6" 12143 13567 sources."dom-align-1.12.2" 12144 13568 sources."dom-converter-0.2.0" 12145 13569 (sources."dom-helpers-5.2.1" // { ··· 12169 13593 sources."tslib-2.4.0" 12170 13594 ]; 12171 13595 }) 13596 + sources."dot-prop-5.3.0" 12172 13597 sources."dotenv-10.0.0" 12173 13598 sources."dotenv-expand-5.1.0" 12174 13599 sources."downloadjs-1.4.7" 12175 13600 sources."downshift-3.2.7" 12176 13601 sources."duplexer-0.1.2" 13602 + sources."duplexer3-0.1.4" 12177 13603 sources."ee-first-1.1.1" 12178 13604 sources."electron-to-chromium-1.4.267" 12179 13605 sources."emittery-0.8.1" 12180 13606 sources."emoji-regex-8.0.0" 12181 13607 sources."emojis-list-3.0.0" 12182 13608 sources."encodeurl-1.0.2" 13609 + sources."end-of-stream-1.4.4" 12183 13610 sources."enhanced-resolve-5.10.0" 12184 13611 sources."entities-2.2.0" 12185 13612 sources."error-ex-1.3.2" ··· 12190 13617 sources."es-shim-unscopables-1.0.0" 12191 13618 sources."es-to-primitive-1.2.1" 12192 13619 sources."escalade-3.1.1" 13620 + sources."escape-goat-2.1.1" 12193 13621 sources."escape-html-1.0.3" 12194 13622 sources."escape-string-regexp-1.0.5" 12195 13623 (sources."escodegen-2.0.0" // { ··· 12305 13733 sources."safe-buffer-5.2.1" 12306 13734 ]; 12307 13735 }) 13736 + sources."external-editor-3.1.0" 12308 13737 sources."fast-deep-equal-3.1.3" 12309 13738 sources."fast-glob-3.2.12" 12310 13739 sources."fast-json-stable-stringify-2.1.0" ··· 12312 13741 sources."fastq-1.13.0" 12313 13742 sources."faye-websocket-0.11.4" 12314 13743 sources."fb-watchman-2.0.2" 13744 + sources."figures-3.2.0" 12315 13745 sources."file-entry-cache-6.0.1" 12316 13746 (sources."file-loader-6.2.0" // { 12317 13747 dependencies = [ ··· 12369 13799 sources."get-node-dimensions-1.2.1" 12370 13800 sources."get-own-enumerable-property-symbols-3.0.2" 12371 13801 sources."get-package-type-0.1.0" 13802 + sources."get-stream-4.1.0" 12372 13803 sources."get-symbol-description-1.0.0" 12373 13804 sources."glob-7.1.7" 12374 13805 sources."glob-parent-5.1.2" 12375 13806 sources."glob-to-regexp-0.4.1" 13807 + (sources."global-dirs-2.1.0" // { 13808 + dependencies = [ 13809 + sources."ini-1.3.7" 13810 + ]; 13811 + }) 12376 13812 sources."global-modules-2.0.0" 12377 13813 (sources."global-prefix-3.0.0" // { 12378 13814 dependencies = [ ··· 12381 13817 }) 12382 13818 sources."globals-11.12.0" 12383 13819 sources."globby-11.1.0" 13820 + sources."got-9.6.0" 12384 13821 sources."graceful-fs-4.2.10" 12385 13822 sources."grapheme-splitter-1.0.4" 12386 13823 sources."gzip-size-6.0.0" 12387 13824 sources."handle-thing-2.0.1" 13825 + sources."hard-rejection-2.1.0" 12388 13826 sources."harmony-reflect-1.6.2" 12389 13827 sources."has-1.0.3" 12390 13828 sources."has-bigints-1.0.2" ··· 12392 13830 sources."has-property-descriptors-1.0.0" 12393 13831 sources."has-symbols-1.0.3" 12394 13832 sources."has-tostringtag-1.0.0" 13833 + sources."has-yarn-2.1.0" 12395 13834 sources."he-1.2.0" 12396 13835 sources."history-4.10.1" 12397 13836 sources."hoist-non-react-statics-3.3.2" 12398 13837 sources."hoopy-0.1.4" 13838 + sources."hosted-git-info-2.8.9" 12399 13839 (sources."hpack.js-2.1.6" // { 12400 13840 dependencies = [ 12401 13841 sources."isarray-1.0.0" ··· 12415 13855 sources."domutils-2.8.0" 12416 13856 ]; 12417 13857 }) 13858 + sources."http-cache-semantics-4.1.1" 12418 13859 sources."http-deceiver-1.2.7" 12419 13860 sources."http-errors-2.0.0" 12420 13861 sources."http-parser-js-0.5.8" ··· 12435 13876 sources."iconv-lite-0.4.24" 12436 13877 sources."icss-utils-5.1.0" 12437 13878 sources."identity-obj-proxy-3.0.0" 13879 + sources."ieee754-1.2.1" 12438 13880 sources."ignore-5.2.0" 12439 13881 sources."immer-9.0.15" 12440 13882 sources."immutable-4.0.0-rc.12" 12441 13883 sources."import-fresh-3.3.0" 13884 + sources."import-lazy-2.1.0" 12442 13885 sources."import-local-3.1.0" 12443 13886 sources."imurmurhash-0.1.4" 12444 13887 sources."indefinite-observable-2.0.1" 13888 + sources."indent-string-4.0.0" 12445 13889 sources."inflection-1.13.1" 12446 13890 sources."inflight-1.0.6" 12447 13891 sources."inherits-2.0.4" 12448 13892 sources."ini-1.3.8" 13893 + (sources."inquirer-7.3.3" // { 13894 + dependencies = [ 13895 + sources."chalk-4.1.2" 13896 + ]; 13897 + }) 12449 13898 sources."internal-slot-1.0.3" 12450 13899 sources."ipaddr.js-2.0.1" 12451 13900 sources."is-arrayish-0.2.1" ··· 12453 13902 sources."is-binary-path-2.1.0" 12454 13903 sources."is-boolean-object-1.1.2" 12455 13904 sources."is-callable-1.2.7" 13905 + sources."is-ci-2.0.0" 12456 13906 sources."is-core-module-2.10.0" 12457 13907 sources."is-date-object-1.0.2" 12458 13908 sources."is-docker-2.2.1" ··· 12461 13911 sources."is-generator-fn-2.1.0" 12462 13912 sources."is-glob-4.0.3" 12463 13913 sources."is-in-browser-1.1.3" 13914 + (sources."is-installed-globally-0.3.2" // { 13915 + dependencies = [ 13916 + sources."is-path-inside-3.0.3" 13917 + ]; 13918 + }) 13919 + sources."is-interactive-1.0.0" 12464 13920 sources."is-mobile-2.2.2" 12465 13921 sources."is-module-1.0.0" 12466 13922 sources."is-negative-zero-2.0.2" 13923 + sources."is-npm-4.0.0" 12467 13924 sources."is-number-7.0.0" 12468 13925 sources."is-number-object-1.0.7" 13926 + sources."is-obj-2.0.0" 13927 + sources."is-plain-obj-1.1.0" 12469 13928 sources."is-potential-custom-element-name-1.0.1" 12470 13929 sources."is-regex-1.1.4" 12471 13930 sources."is-regexp-1.0.0" ··· 12475 13934 sources."is-string-1.0.7" 12476 13935 sources."is-symbol-1.0.3" 12477 13936 sources."is-typedarray-1.0.0" 13937 + sources."is-unicode-supported-0.1.0" 12478 13938 sources."is-weakref-1.0.2" 12479 13939 sources."is-wsl-2.2.0" 13940 + sources."is-yarn-global-0.3.0" 12480 13941 sources."isarray-0.0.1" 12481 13942 sources."isexe-2.0.0" 12482 13943 sources."istanbul-lib-coverage-3.2.0" ··· 12536 13997 sources."react-is-17.0.2" 12537 13998 ]; 12538 13999 }) 14000 + (sources."jest-diff-26.6.2" // { 14001 + dependencies = [ 14002 + sources."chalk-4.1.1" 14003 + ]; 14004 + }) 12539 14005 sources."jest-docblock-27.5.1" 12540 14006 (sources."jest-each-27.5.1" // { 12541 14007 dependencies = [ ··· 12565 14031 sources."chalk-4.1.2" 12566 14032 ]; 12567 14033 }) 14034 + sources."jest-get-type-26.3.0" 12568 14035 (sources."jest-haste-map-27.5.1" // { 12569 14036 dependencies = [ 12570 14037 sources."@jest/types-27.5.1" ··· 12768 14235 ]; 12769 14236 }) 12770 14237 sources."jsesc-2.5.2" 14238 + sources."json-buffer-3.0.0" 12771 14239 sources."json-parse-even-better-errors-2.3.1" 12772 14240 sources."json-schema-traverse-0.4.1" 12773 14241 sources."json-stable-stringify-without-jsonify-1.0.1" 12774 - sources."json5-2.2.1" 14242 + sources."json5-2.2.3" 12775 14243 sources."jsonexport-2.5.2" 12776 14244 sources."jsonfile-6.1.0" 12777 14245 (sources."jss-10.6.0" // { ··· 12788 14256 sources."jss-plugin-vendor-prefixer-10.6.0" 12789 14257 sources."jsx-ast-utils-3.3.3" 12790 14258 sources."jwt-decode-3.1.2" 14259 + sources."keyv-3.1.0" 12791 14260 sources."kind-of-6.0.3" 12792 14261 sources."kleur-3.0.3" 12793 14262 sources."klona-2.0.5" 12794 14263 sources."language-subtag-registry-0.3.22" 12795 14264 sources."language-tags-1.0.5" 14265 + sources."latest-version-5.1.0" 12796 14266 sources."leven-3.1.0" 12797 14267 sources."levn-0.4.1" 12798 14268 sources."lilconfig-2.0.6" 12799 14269 sources."lines-and-columns-1.1.6" 12800 14270 sources."loader-runner-4.3.0" 12801 - sources."loader-utils-2.0.0" 14271 + sources."loader-utils-2.0.4" 12802 14272 sources."locate-path-5.0.0" 12803 14273 sources."lodash-4.17.21" 12804 14274 sources."lodash.debounce-4.0.8" ··· 12809 14279 sources."lodash.sortby-4.7.0" 12810 14280 sources."lodash.throttle-4.1.1" 12811 14281 sources."lodash.uniq-4.5.0" 14282 + (sources."log-symbols-4.1.0" // { 14283 + dependencies = [ 14284 + sources."chalk-4.1.2" 14285 + ]; 14286 + }) 12812 14287 sources."loose-envify-1.4.0" 12813 14288 (sources."lower-case-2.0.2" // { 12814 14289 dependencies = [ 12815 14290 sources."tslib-2.4.0" 12816 14291 ]; 12817 14292 }) 14293 + sources."lowercase-keys-1.0.1" 12818 14294 sources."lru-cache-6.0.0" 14295 + sources."lz-string-1.4.4" 12819 14296 sources."magic-string-0.25.7" 12820 14297 (sources."make-dir-3.1.0" // { 12821 14298 dependencies = [ ··· 12823 14300 ]; 12824 14301 }) 12825 14302 sources."makeerror-1.0.12" 14303 + sources."map-obj-4.3.0" 12826 14304 sources."mdn-data-2.0.4" 12827 14305 sources."media-typer-0.3.0" 12828 14306 sources."memfs-3.4.7" 14307 + (sources."meow-7.1.1" // { 14308 + dependencies = [ 14309 + (sources."read-pkg-5.2.0" // { 14310 + dependencies = [ 14311 + sources."type-fest-0.6.0" 14312 + ]; 14313 + }) 14314 + (sources."read-pkg-up-7.0.1" // { 14315 + dependencies = [ 14316 + sources."type-fest-0.8.1" 14317 + ]; 14318 + }) 14319 + sources."type-fest-0.13.1" 14320 + ]; 14321 + }) 12829 14322 sources."merge-descriptors-1.0.1" 12830 14323 sources."merge-stream-2.0.0" 12831 14324 sources."merge2-1.4.1" ··· 12835 14328 sources."mime-db-1.52.0" 12836 14329 sources."mime-types-2.1.35" 12837 14330 sources."mimic-fn-2.1.0" 14331 + sources."mimic-response-1.0.1" 14332 + sources."min-indent-1.0.1" 12838 14333 sources."mini-create-react-context-0.4.1" 12839 14334 (sources."mini-css-extract-plugin-2.6.1" // { 12840 14335 dependencies = [ ··· 12847 14342 sources."minimalistic-assert-1.0.1" 12848 14343 sources."minimatch-3.1.2" 12849 14344 sources."minimist-1.2.6" 14345 + (sources."minimist-options-4.1.0" // { 14346 + dependencies = [ 14347 + sources."arrify-1.0.1" 14348 + ]; 14349 + }) 12850 14350 sources."mkdirp-0.5.5" 12851 14351 sources."ms-2.1.2" 12852 14352 sources."multicast-dns-7.2.5" 14353 + sources."mute-stream-0.0.8" 12853 14354 sources."nanoid-3.3.4" 12854 14355 sources."natural-compare-1.4.0" 14356 + (sources."navidrome-music-player-4.25.1" // { 14357 + dependencies = [ 14358 + sources."classnames-2.3.2" 14359 + ]; 14360 + }) 12855 14361 sources."negotiator-0.6.3" 12856 14362 sources."neo-async-2.6.2" 12857 14363 (sources."no-case-3.0.4" // { ··· 12863 14369 sources."node-int64-0.4.0" 12864 14370 sources."node-polyglot-2.4.2" 12865 14371 sources."node-releases-2.0.6" 14372 + (sources."normalize-package-data-2.5.0" // { 14373 + dependencies = [ 14374 + sources."semver-5.7.1" 14375 + ]; 14376 + }) 12866 14377 sources."normalize-path-3.0.0" 12867 14378 sources."normalize-range-0.1.2" 12868 14379 sources."normalize-url-6.1.0" ··· 12886 14397 sources."onetime-5.1.2" 12887 14398 sources."open-8.4.0" 12888 14399 sources."optionator-0.9.1" 14400 + (sources."ora-5.4.1" // { 14401 + dependencies = [ 14402 + sources."chalk-4.1.2" 14403 + ]; 14404 + }) 14405 + sources."os-tmpdir-1.0.2" 14406 + sources."p-cancelable-1.1.0" 12889 14407 sources."p-limit-2.3.0" 12890 14408 sources."p-locate-4.1.0" 12891 14409 sources."p-retry-4.6.2" 12892 14410 sources."p-try-2.2.0" 14411 + (sources."package-json-6.5.0" // { 14412 + dependencies = [ 14413 + sources."semver-6.3.0" 14414 + ]; 14415 + }) 12893 14416 (sources."param-case-3.0.4" // { 12894 14417 dependencies = [ 12895 14418 sources."tslib-2.4.0" ··· 13010 14533 sources."postcss-unique-selectors-5.1.1" 13011 14534 sources."postcss-value-parser-4.2.0" 13012 14535 sources."prelude-ls-1.2.1" 14536 + sources."prettier-2.8.2" 13013 14537 sources."pretty-bytes-5.6.0" 13014 14538 sources."pretty-error-4.0.0" 14539 + (sources."pretty-format-26.6.2" // { 14540 + dependencies = [ 14541 + sources."react-is-17.0.1" 14542 + ]; 14543 + }) 13015 14544 sources."process-nextick-args-2.0.1" 13016 14545 sources."promise-8.2.0" 13017 14546 sources."prompts-2.4.2" ··· 13026 14555 ]; 13027 14556 }) 13028 14557 sources."psl-1.9.0" 14558 + sources."pump-3.0.0" 13029 14559 sources."punycode-2.1.1" 14560 + sources."pupa-2.1.1" 13030 14561 sources."q-1.5.1" 13031 14562 sources."qs-6.10.3" 13032 14563 sources."query-string-5.1.1" 13033 14564 sources."querystringify-2.2.0" 13034 14565 sources."queue-microtask-1.2.3" 14566 + sources."quick-lru-4.0.1" 13035 14567 (sources."ra-core-3.18.3" // { 13036 14568 dependencies = [ 13037 14569 sources."inflection-1.12.0" ··· 13040 14572 sources."ra-data-json-server-3.18.3" 13041 14573 sources."ra-i18n-polyglot-3.18.3" 13042 14574 sources."ra-language-english-3.18.3" 14575 + (sources."ra-test-3.18.3" // { 14576 + dependencies = [ 14577 + sources."@testing-library/dom-7.31.2" 14578 + sources."@testing-library/react-11.2.7" 14579 + sources."chalk-4.1.1" 14580 + ]; 14581 + }) 13043 14582 (sources."ra-ui-materialui-3.18.3" // { 13044 14583 dependencies = [ 13045 14584 sources."inflection-1.12.0" ··· 13053 14592 sources."bytes-3.1.2" 13054 14593 ]; 13055 14594 }) 14595 + (sources."rc-1.2.8" // { 14596 + dependencies = [ 14597 + sources."strip-json-comments-2.0.1" 14598 + ]; 14599 + }) 13056 14600 sources."rc-align-4.0.9" 13057 14601 sources."rc-motion-2.4.3" 13058 14602 sources."rc-slider-9.7.2" ··· 13068 14612 sources."chalk-4.1.2" 13069 14613 sources."escape-string-regexp-4.0.0" 13070 14614 sources."find-up-5.0.0" 13071 - sources."loader-utils-3.2.0" 14615 + sources."loader-utils-3.2.1" 13072 14616 sources."locate-path-6.0.0" 13073 14617 sources."p-limit-3.1.0" 13074 14618 sources."p-locate-5.0.0" ··· 13080 14624 sources."react-drag-listview-0.1.8" 13081 14625 sources."react-draggable-4.4.3" 13082 14626 sources."react-dropzone-10.2.2" 14627 + sources."react-error-boundary-3.1.3" 13083 14628 sources."react-error-overlay-6.0.11" 13084 14629 sources."react-final-form-6.5.3" 13085 14630 sources."react-final-form-arrays-3.1.3" ··· 13088 14633 sources."react-icons-4.4.0" 13089 14634 sources."react-image-lightbox-5.1.4" 13090 14635 sources."react-is-16.12.0" 13091 - (sources."react-jinke-music-player-4.24.2" // { 13092 - dependencies = [ 13093 - sources."classnames-2.3.1" 13094 - ]; 13095 - }) 13096 14636 sources."react-lifecycles-compat-3.0.4" 13097 14637 sources."react-measure-2.5.2" 13098 14638 sources."react-modal-3.11.2" ··· 13121 14661 sources."read-cache-1.0.0" 13122 14662 sources."readable-stream-3.6.0" 13123 14663 sources."readdirp-3.6.0" 13124 - (sources."recursive-readdir-2.2.2" // { 13125 - dependencies = [ 13126 - sources."minimatch-3.0.4" 13127 - ]; 13128 - }) 14664 + sources."recursive-readdir-2.2.3" 14665 + sources."redent-3.0.0" 13129 14666 sources."redux-4.2.0" 13130 14667 sources."redux-saga-1.1.3" 13131 14668 sources."regenerate-1.4.2" ··· 13136 14673 sources."regexp.prototype.flags-1.4.3" 13137 14674 sources."regexpp-3.2.0" 13138 14675 sources."regexpu-core-5.2.1" 14676 + sources."registry-auth-token-4.2.1" 14677 + sources."registry-url-5.1.0" 13139 14678 sources."regjsgen-0.7.1" 13140 14679 (sources."regjsparser-0.9.1" // { 13141 14680 dependencies = [ ··· 13173 14712 ]; 13174 14713 }) 13175 14714 sources."resolve.exports-1.1.0" 14715 + sources."responselike-1.0.2" 14716 + sources."restore-cursor-3.1.0" 13176 14717 sources."retry-0.13.1" 13177 14718 sources."reusify-1.0.4" 13178 14719 sources."rimraf-3.0.2" ··· 13182 14723 sources."serialize-javascript-4.0.0" 13183 14724 ]; 13184 14725 }) 14726 + sources."run-async-2.4.1" 13185 14727 sources."run-parallel-1.2.0" 14728 + sources."rxjs-6.6.7" 13186 14729 sources."safe-buffer-5.1.2" 13187 14730 sources."safe-regex-test-1.0.0" 13188 14731 sources."safer-buffer-2.1.2" ··· 13196 14739 sources."select-hose-2.0.0" 13197 14740 sources."selfsigned-2.1.1" 13198 14741 sources."semver-7.3.7" 14742 + (sources."semver-diff-3.1.1" // { 14743 + dependencies = [ 14744 + sources."semver-6.3.0" 14745 + ]; 14746 + }) 13199 14747 (sources."send-0.18.0" // { 13200 14748 dependencies = [ 13201 14749 (sources."debug-2.6.9" // { ··· 13229 14777 sources."sisteransi-1.0.5" 13230 14778 sources."slash-3.0.0" 13231 14779 sources."sockjs-0.3.24" 13232 - sources."sortablejs-1.13.0" 14780 + sources."sortablejs-1.15.0" 13233 14781 sources."source-list-map-2.0.1" 13234 14782 sources."source-map-0.6.1" 13235 14783 sources."source-map-js-1.0.2" ··· 13240 14788 }) 13241 14789 sources."source-map-support-0.5.20" 13242 14790 sources."sourcemap-codec-1.4.8" 14791 + sources."spdx-correct-3.1.1" 14792 + sources."spdx-exceptions-2.3.0" 14793 + sources."spdx-expression-parse-3.0.1" 14794 + sources."spdx-license-ids-3.0.9" 13243 14795 sources."spdy-4.0.2" 13244 14796 sources."spdy-transport-3.0.0" 13245 14797 sources."sprintf-js-1.0.3" ··· 13273 14825 sources."strip-bom-4.0.0" 13274 14826 sources."strip-comments-2.0.1" 13275 14827 sources."strip-final-newline-2.0.0" 14828 + sources."strip-indent-3.0.0" 13276 14829 sources."strip-json-comments-3.1.1" 13277 14830 sources."style-loader-3.3.1" 13278 14831 sources."stylehacks-5.1.0" ··· 13305 14858 sources."type-fest-0.16.0" 13306 14859 ]; 13307 14860 }) 14861 + sources."term-size-2.2.1" 13308 14862 sources."terminal-link-2.1.1" 13309 14863 (sources."terser-5.15.0" // { 13310 14864 dependencies = [ ··· 13322 14876 sources."test-exclude-6.0.0" 13323 14877 sources."text-table-0.2.0" 13324 14878 sources."throat-6.0.1" 14879 + sources."through-2.3.8" 13325 14880 sources."thunky-1.1.0" 13326 14881 sources."tiny-invariant-1.1.0" 13327 14882 sources."tiny-warning-1.0.3" 14883 + sources."tmp-0.0.33" 13328 14884 sources."tmpl-1.0.5" 13329 14885 sources."to-fast-properties-2.0.0" 14886 + sources."to-readable-stream-1.0.0" 13330 14887 sources."to-regex-range-5.0.1" 13331 14888 sources."toidentifier-1.0.1" 13332 14889 (sources."tough-cookie-4.1.2" // { ··· 13335 14892 ]; 13336 14893 }) 13337 14894 sources."tr46-2.1.0" 14895 + sources."trim-newlines-3.0.1" 13338 14896 sources."tryer-1.0.1" 13339 14897 (sources."tsconfig-paths-3.14.1" // { 13340 14898 dependencies = [ 13341 - sources."json5-1.0.1" 14899 + sources."json5-1.0.2" 13342 14900 sources."strip-bom-3.0.0" 13343 14901 ]; 13344 14902 }) ··· 13346 14904 sources."tsutils-3.21.0" 13347 14905 sources."type-check-0.4.0" 13348 14906 sources."type-detect-4.0.8" 14907 + sources."type-fest-0.8.1" 13349 14908 sources."type-is-1.6.18" 13350 14909 sources."typedarray-to-buffer-3.1.5" 13351 14910 sources."typescript-4.8.4" ··· 13363 14922 sources."unquote-1.1.1" 13364 14923 sources."upath-1.2.0" 13365 14924 sources."update-browserslist-db-1.0.9" 14925 + sources."update-notifier-4.1.3" 13366 14926 sources."uri-js-4.4.1" 13367 14927 sources."url-parse-1.5.10" 14928 + (sources."url-parse-lax-3.0.0" // { 14929 + dependencies = [ 14930 + sources."prepend-http-2.0.0" 14931 + ]; 14932 + }) 13368 14933 sources."util-deprecate-1.0.2" 13369 14934 sources."util.promisify-1.0.1" 13370 14935 sources."utila-0.4.0" ··· 13375 14940 sources."source-map-0.7.4" 13376 14941 ]; 13377 14942 }) 14943 + sources."validate-npm-package-license-3.0.4" 13378 14944 sources."value-equal-1.0.1" 13379 14945 sources."vary-1.1.2" 13380 14946 sources."w3c-hr-time-1.0.2" ··· 13383 14949 sources."warning-4.0.3" 13384 14950 sources."watchpack-2.4.0" 13385 14951 sources."wbuf-1.7.3" 14952 + sources."wcwidth-1.0.1" 13386 14953 sources."webidl-conversions-6.1.0" 13387 14954 (sources."webpack-5.74.0" // { 13388 14955 dependencies = [ ··· 13424 14991 sources."whatwg-url-8.7.0" 13425 14992 sources."which-2.0.2" 13426 14993 sources."which-boxed-primitive-1.0.2" 14994 + sources."widest-line-3.1.0" 13427 14995 sources."word-wrap-1.2.3" 13428 14996 (sources."workbox-background-sync-6.5.4" // { 13429 14997 dependencies = [ ··· 13448 15016 ]; 13449 15017 }) 13450 15018 sources."workbox-cacheable-response-6.5.4" 15019 + (sources."workbox-cli-6.5.4" // { 15020 + dependencies = [ 15021 + sources."chalk-4.1.2" 15022 + ]; 15023 + }) 13451 15024 sources."workbox-core-6.5.4" 13452 15025 (sources."workbox-expiration-6.5.4" // { 13453 15026 dependencies = [ ··· 13472 15045 sources."wrappy-1.0.2" 13473 15046 sources."write-file-atomic-3.0.3" 13474 15047 sources."ws-7.5.9" 15048 + sources."xdg-basedir-4.0.0" 13475 15049 sources."xml-name-validator-3.0.0" 13476 15050 sources."xmlchars-2.2.0" 13477 15051 sources."xtend-4.0.2" ··· 13483 15057 sources."yargs-parser-20.2.9" 13484 15058 ]; 13485 15059 }) 15060 + (sources."yargs-parser-18.1.3" // { 15061 + dependencies = [ 15062 + sources."camelcase-5.3.1" 15063 + ]; 15064 + }) 13486 15065 sources."yocto-queue-0.1.0" 13487 15066 ]; 13488 15067 buildInputs = globalBuildInputs; 13489 15068 meta = { 13490 15069 homepage = "."; 13491 15070 }; 13492 - production = true; 15071 + production = false; 13493 15072 bypassCache = true; 13494 15073 reconstructLock = false; 13495 15074 };
+1 -1
pkgs/servers/misc/navidrome/update.nix
··· 22 22 tempDir=$(mktemp -d) 23 23 cp $src/ui/package.json $src/ui/package-lock.json $tempDir 24 24 cd $tempDir 25 - node2nix -l package-lock.json -c node-composition.nix 25 + node2nix -d -l package-lock.json -c node-composition.nix 26 26 cp *.nix $uiDir 27 27 rm -rf $tempDir 28 28 ''
+2 -2
pkgs/servers/nats-server/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "nats-server"; 9 - version = "2.9.12"; 9 + version = "2.9.14"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "nats-io"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - hash = "sha256-IhzbtTH8Vr+Z1Z9Xzz/CbmxDaR6ygdebEqz2ELa4N3E="; 15 + hash = "sha256-S9K/Cu/zJufA789D/F874c+KiXley93m/wOcXZGc1aI="; 16 16 }; 17 17 18 18 vendorHash = "sha256-tUqUB9M7doUmYRAKmzos93PCizGlHe61rpMVe0z3hVo=";
+3 -3
pkgs/servers/spicedb/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "spicedb"; 9 - version = "1.16.1"; 9 + version = "1.16.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "authzed"; 13 13 repo = "spicedb"; 14 14 rev = "v${version}"; 15 - hash = "sha256-v30F6JhLmPLuYVyegjMPOjUKQ51xxrNfYMqaEPmRuwI="; 15 + hash = "sha256-OH5O0wOg36sAKWr8sFPYU8RX/S9DbbSnGJvQ1v2pXmQ="; 16 16 }; 17 17 18 - vendorHash = "sha256-TMwijafZ5ILTr9ZA5CG5uFFIZe6EmnLAL2zD25l/1gs="; 18 + vendorHash = "sha256-drnVAWMj7x8HlEQXoichgl35qW07tsk3JvXU/d1ukAc="; 19 19 20 20 subPackages = [ "cmd/spicedb" ]; 21 21
+9 -31
pkgs/tools/compression/upx/default.nix
··· 1 - { lib, stdenv, fetchurl, ucl, zlib, perl, fetchpatch }: 1 + { lib, stdenv, fetchFromGitHub, cmake }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "upx"; 5 - version = "3.96"; 6 - src = fetchurl { 7 - url = "https://github.com/upx/upx/releases/download/v${version}/${pname}-${version}-src.tar.xz"; 8 - sha256 = "051pk5jk8fcfg5mpgzj43z5p4cn7jy5jbyshyn78dwjqr7slsxs7"; 5 + version = "4.0.2"; 6 + src = fetchFromGitHub { 7 + owner = "upx"; 8 + repo = pname; 9 + rev = "v${version}"; 10 + fetchSubmodules = true; 11 + sha256 = "sha256-5jqEdMlHmsD88kT/EGieL7DktppVdfWyJWGRNRKbRc4="; 9 12 }; 10 13 11 - buildInputs = [ ucl zlib perl ]; 12 - 13 - patches = [ 14 - (fetchpatch { 15 - url = "https://github.com/upx/upx/commit/13bc031163863cb3866aa6cdc018dff0697aa5d4.patch"; 16 - sha256 = "sha256-7uazgx1lOgHh2J7yn3yb1q9lTJsv4BbexdGlWRiAG/M="; 17 - name = "CVE-2021-20285.patch"; 18 - }) 19 - ]; 20 - 21 - preConfigure = '' 22 - export UPX_UCLDIR=${ucl} 23 - ''; 24 - 25 - makeFlags = [ 26 - "-C" "src" 27 - "CHECK_WHITESPACE=true" 28 - 29 - # Disable blanket -Werror. Triggers failues on minor gcc-11 warnings. 30 - "CXXFLAGS_WERROR=" 31 - ]; 32 - 33 - installPhase = '' 34 - mkdir -p $out/bin 35 - cp src/upx.out $out/bin/upx 36 - ''; 14 + nativeBuildInputs = [ cmake ]; 37 15 38 16 meta = with lib; { 39 17 homepage = "https://upx.github.io/";
+3 -3
pkgs/tools/filesystems/stratisd/default.nix
··· 25 25 26 26 stdenv.mkDerivation rec { 27 27 pname = "stratisd"; 28 - version = "3.5.0"; 28 + version = "3.5.1"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "stratis-storage"; 32 32 repo = pname; 33 33 rev = "v${version}"; 34 - hash = "sha256-1x6zVWFr4WNpYGVz/UGlP+lycVF2cbWJoiAmiXWzGT8="; 34 + hash = "sha256-PM+griFtuFT9g+Pqx33frWrucVCXSzfyWAJJXAzrMtI="; 35 35 }; 36 36 37 37 cargoDeps = rustPlatform.fetchCargoTarball { 38 38 inherit src; 39 - hash = "sha256-emsmdQY2od8XVjNY/rt0BbNsVy2XKtLpe8ydZGRil+Q="; 39 + hash = "sha256-P5GKMNifnEvGcsg0hGZn6hg3/S44fUIzqf5Qjp4R/EM="; 40 40 }; 41 41 42 42 postPatch = ''
+3 -3
pkgs/tools/misc/chezmoi/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "chezmoi"; 9 - version = "2.29.4"; 9 + version = "2.30.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "twpayne"; 13 13 repo = "chezmoi"; 14 14 rev = "v${version}"; 15 - hash = "sha256-pvSKLWek/nCVjlfvYQIefvTt+VMmNYs58/4bPQQdfNU="; 15 + hash = "sha256-Pp6QhOGG5nDc5wHIykEXIS0tQj7gPifYN5HM9tfKMR4="; 16 16 }; 17 17 18 - vendorHash = "sha256-hGYcfERYxSEg+j9EDDGYVar69HoApSqxWH8IWwHaOKs="; 18 + vendorHash = "sha256-EPFy9fgdVN0wdMm3zWXuLqxkmIP1Fg0hOTBbeI6w4gI="; 19 19 20 20 doCheck = false; 21 21
+37
pkgs/tools/misc/codevis/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , pkg-config 5 + , oniguruma 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "codevis"; 10 + version = "0.5.1"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "sloganking"; 14 + repo = "codevis"; 15 + rev = "v${version}"; 16 + hash = "sha256-dkzBLDZK0BJ069mlkXMGtuDodZr9sxFmpEXjp5Nf0Qk="; 17 + }; 18 + 19 + cargoHash = "sha256-/2sBd2RAOjGTgXMocuKea1qhkXj81vM8PlRhYsJKx5g="; 20 + 21 + nativeBuildInputs = [ 22 + pkg-config 23 + ]; 24 + 25 + buildInputs = [ 26 + oniguruma 27 + ]; 28 + 29 + RUSTONIG_SYSTEM_LIBONIG = true; 30 + 31 + meta = with lib; { 32 + description = "A tool to take all source code in a folder and render them to one image"; 33 + homepage = "https://github.com/sloganking/codevis"; 34 + license = licenses.mit; 35 + maintainers = with maintainers; [ figsoda ]; 36 + }; 37 + }
+3 -3
pkgs/tools/misc/opentelemetry-collector/default.nix
··· 12 12 in 13 13 buildGoModule rec { 14 14 pname = "opentelemetry-collector"; 15 - version = "0.70.0"; 15 + version = "0.71.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "open-telemetry"; 19 19 repo = "opentelemetry-collector"; 20 20 rev = "v${version}"; 21 - sha256 = "sha256-r7Pw2zBRwaDMXZ7j8hNT1+a9sSWZpl0+8Y4rtIveoPY="; 21 + sha256 = "sha256-Y6HSz81edWklXhTbaK9LvdwmgNPRMtI1BD0IfcjWl3I="; 22 22 }; 23 23 # there is a nested go.mod 24 24 sourceRoot = "source/cmd/otelcorecol"; 25 - vendorHash = "sha256-HyI3ETQQJE6bAhC2W7UfO9yqfoxu8aITcmIJmrOZpbM="; 25 + vendorHash = "sha256-Zi9Rkfm+y0jZySwMJxAa5Sx/r5WAYvOVez3J0yQza2w="; 26 26 27 27 preBuild = '' 28 28 # set the build version, can't be done via ldflags
+3 -3
pkgs/tools/networking/v2ray/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "v2ray-core"; 9 - version = "5.2.1"; 9 + version = "5.3.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "v2fly"; 13 13 repo = "v2ray-core"; 14 14 rev = "v${version}"; 15 - hash = "sha256-Q7yro9jHNr+HSJkoO7D+T05+AK26eLtw9NfvDTWeMw8="; 15 + hash = "sha256-LLvAoPA3rLGfhrWD37OVyWd4tC9mwgpE1WjK2pY27xU="; 16 16 }; 17 17 18 18 # `nix-update` doesn't support `vendorHash` yet. 19 19 # https://github.com/Mic92/nix-update/pull/95 20 - vendorSha256 = "sha256-uXxqqPNSa2s1KmBPzvYVdTmOLxaWer9+AupdvL3+qYU="; 20 + vendorSha256 = "sha256-xBNVyPN9PRkraPRzZXOguGemYPm+Jw8hl04vWV8TZaA="; 21 21 22 22 ldflags = [ "-s" "-w" "-buildid=" ]; 23 23
+6
pkgs/tools/security/gallia/default.nix
··· 17 17 hash = "sha256-McHzHK404kDB992T2f84dZHDxujpPIz4qglYMmv3kTw="; 18 18 }; 19 19 20 + pythonRelaxDeps = [ 21 + "msgspec" 22 + ]; 23 + 20 24 nativeBuildInputs = with python3.pkgs; [ 21 25 poetry-core 26 + pythonRelaxDepsHook 22 27 ]; 23 28 24 29 propagatedBuildInputs = with python3.pkgs; [ ··· 54 59 meta = with lib; { 55 60 description = "Extendable Pentesting Framework for the Automotive Domain"; 56 61 homepage = "https://github.com/Fraunhofer-AISEC/gallia"; 62 + changelog = "https://github.com/Fraunhofer-AISEC/gallia/releases/tag/v${version}"; 57 63 license = with licenses; [ asl20 ]; 58 64 maintainers = with maintainers; [ fab rumpelsepp ]; 59 65 platforms = platforms.linux;
+3 -1
pkgs/top-level/all-packages.nix
··· 2189 2189 2190 2190 pcsxr = callPackage ../applications/emulators/pcsxr { }; 2191 2191 2192 - ppsspp = libsForQt5.callPackage ../applications/emulators/ppsspp { }; 2192 + ppsspp = callPackage ../applications/emulators/ppsspp { }; 2193 2193 2194 2194 ppsspp-sdl = ppsspp; 2195 2195 ··· 6271 6271 }; 6272 6272 6273 6273 codebraid = callPackage ../tools/misc/codebraid { }; 6274 + 6275 + codevis = callPackage ../tools/misc/codevis { }; 6274 6276 6275 6277 compass = callPackage ../development/tools/compass { }; 6276 6278