Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 700540c4 bb64901d

+1576 -752
+11
maintainers/maintainer-list.nix
··· 8166 8166 githubId = 56316606; 8167 8167 name = "Amneesh Singh"; 8168 8168 }; 8169 + nazarewk = { 8170 + name = "Krzysztof Nazarewski"; 8171 + email = "3494992+nazarewk@users.noreply.github.com"; 8172 + matrix = "@nazarewk:matrix.org"; 8173 + github = "nazarewk"; 8174 + githubId = 3494992; 8175 + keys = [{ 8176 + longkeyid = "rsa4096/0x916D8B67241892AE"; 8177 + fingerprint = "4BFF 0614 03A2 47F0 AA0B 4BC4 916D 8B67 2418 92AE"; 8178 + }]; 8179 + }; 8169 8180 nbren12 = { 8170 8181 email = "nbren12@gmail.com"; 8171 8182 github = "nbren12";
+8
nixos/modules/programs/zsh/zsh-autosuggestions.nix
··· 36 36 ''; 37 37 }; 38 38 39 + async = mkOption { 40 + type = types.bool; 41 + default = true; 42 + description = "Whether to fetch suggestions asynchronously"; 43 + example = false; 44 + }; 45 + 39 46 extraConfig = mkOption { 40 47 type = with types; attrsOf str; 41 48 default = {}; ··· 56 63 57 64 export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="${cfg.highlightStyle}" 58 65 export ZSH_AUTOSUGGEST_STRATEGY=("${cfg.strategy}") 66 + ${optionalString (!cfg.async) "unset ZSH_AUTOSUGGEST_USE_ASYNC"} 59 67 60 68 ${concatStringsSep "\n" (mapAttrsToList (key: value: ''export ${key}="${value}"'') cfg.extraConfig)} 61 69 '';
+12
nixos/modules/security/acme.nix
··· 314 314 if [ -e renewed ]; then 315 315 rm renewed 316 316 ${data.postRun} 317 + ${optionalString (data.reloadServices != []) 318 + "systemctl --no-block try-reload-or-restart ${escapeShellArgs data.reloadServices}" 319 + } 317 320 fi 318 321 ''); 319 322 }; ··· 472 475 type = types.str; 473 476 default = "acme"; 474 477 description = "Group running the ACME client."; 478 + }; 479 + 480 + reloadServices = mkOption { 481 + type = types.listOf types.str; 482 + default = []; 483 + description = '' 484 + The list of systemd services to call <code>systemctl try-reload-or-restart</code> 485 + on. 486 + ''; 475 487 }; 476 488 477 489 postRun = mkOption {
+1 -1
pkgs/applications/misc/1password/default.nix
··· 51 51 downloadPage = "https://app-updates.agilebits.com/product_history/CLI"; 52 52 maintainers = with maintainers; [ joelburget marsam ]; 53 53 license = licenses.unfree; 54 - platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" "aarch64-linux" ]; 54 + platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; 55 55 }; 56 56 }
+26
pkgs/applications/misc/cfm/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "cfm"; 5 + version = "0.6.6"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "willeccles"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-uXL0RO9P+NYSZ0xCv91KzjHOJJI500YUT8IJkFS86pE="; 12 + }; 13 + 14 + makeFlags = [ 15 + "DESTDIR=${placeholder "out"}" 16 + "PREFIX=" 17 + ]; 18 + 19 + meta = with lib; { 20 + description = "Simple and fast TUI file manager with no dependencies"; 21 + license = licenses.mpl20; 22 + maintainers = with maintainers; [ legendofmiracles ]; 23 + homepage = "https://github.com/willeccles/cfm"; 24 + platforms = platforms.all; 25 + }; 26 + }
+41
pkgs/applications/misc/keepass-plugins/charactercopy/default.nix
··· 1 + { lib, stdenv, buildEnv, fetchurl, mono }: 2 + 3 + let 4 + version = "1.0.0"; 5 + 6 + drv = stdenv.mkDerivation { 7 + pname = "keepass-charactercopy"; 8 + inherit version; 9 + 10 + src = fetchurl { 11 + url = "https://github.com/SketchingDev/Character-Copy/releases/download/v${version}/CharacterCopy.plgx"; 12 + sha256 = "f8a81a60cd1aacc04c92a242479a8e4210452add019c52ebfbb1810b58d8800a"; 13 + }; 14 + 15 + dontUnpack = true; 16 + installPhase = '' 17 + mkdir -p $out/lib/dotnet/keepass/ 18 + cp $src $out/lib/dotnet/keepass/ 19 + ''; 20 + 21 + meta = with lib; { 22 + description = "Enables KeePass to copy individual characters by index"; 23 + longDescription = '' 24 + Character Copy is a lightweight KeePass plugin that integrates into KeePass' entry menu and 25 + allows users to securely copy individual characters from 26 + an entry's protected string fields, such as the password field 27 + ''; 28 + homepage = "https://github.com/SketchingDev/Character-Copy"; 29 + platforms = [ 30 + "aarch64-linux" 31 + "i686-linux" 32 + "x86_64-linux" 33 + ]; 34 + # licensing info was found in source files https://github.com/SketchingDev/Character-Copy/search?q=license 35 + license = licenses.gpl2; 36 + maintainers = with maintainers; [ nazarewk ]; 37 + }; 38 + }; 39 + in 40 + # Mono is required to compile plugin at runtime, after loading. 41 + buildEnv { name = drv.name; paths = [ mono drv ]; }
+40
pkgs/applications/misc/keepass-plugins/keetraytotp/default.nix
··· 1 + { lib, stdenv, buildEnv, fetchurl, mono }: 2 + 3 + let 4 + version = "0.108.0"; 5 + 6 + drv = stdenv.mkDerivation { 7 + pname = "keepass-keetraytotp"; 8 + inherit version; 9 + 10 + src = fetchurl { 11 + url = "https://github.com/KeeTrayTOTP/KeeTrayTOTP/releases/download/v${version}/KeeTrayTOTP.plgx"; 12 + sha256 = "4f7251a9bbb79cad04aee96d1809c6b36d43285a9f3834fef5330fc97ae8bc09"; 13 + }; 14 + 15 + dontUnpack = true; 16 + installPhase = '' 17 + mkdir -p $out/lib/dotnet/keepass/ 18 + cp $src $out/lib/dotnet/keepass/ 19 + ''; 20 + 21 + meta = with lib; { 22 + description = "Augments KeePass with TOTP user interface"; 23 + longDescription = '' 24 + This KeePass2 plugin adds advanced support for generating Time-based One-Time Passwords (TOTPs) 25 + from the KeePass tray icon. It also provides a column in the main entry list to display and/or use TOTPs. 26 + TOTPs can also be sent by auto-type. The plugin is compatible with Google, Dropbox, Steam, and many more services. 27 + ''; 28 + homepage = "https://github.com/KeeTrayTOTP/KeeTrayTOTP"; 29 + platforms = [ 30 + "aarch64-linux" 31 + "i686-linux" 32 + "x86_64-linux" 33 + ]; 34 + license = licenses.gpl3; 35 + maintainers = with maintainers; [ nazarewk ]; 36 + }; 37 + }; 38 + in 39 + # Mono is required to compile plugin at runtime, after loading. 40 + buildEnv { name = drv.name; paths = [ mono drv ]; }
+39
pkgs/applications/misc/keepass-plugins/qrcodeview/default.nix
··· 1 + { lib, stdenv, buildEnv, fetchurl, mono }: 2 + 3 + let 4 + version = "1.0.4"; 5 + 6 + drv = stdenv.mkDerivation { 7 + pname = "keepass-qrcodeview"; 8 + inherit version; 9 + 10 + src = fetchurl { 11 + url = "https://github.com/JanisEst/KeePassQRCodeView/releases/download/v${version}/KeePassQRCodeView.plgx"; 12 + sha256 = "e13c9f02bb0d79b479ca0e92490b822b5b88f49bb18ba2954d3bbe0808f46e6d"; 13 + }; 14 + 15 + dontUnpack = true; 16 + installPhase = '' 17 + mkdir -p $out/lib/dotnet/keepass/ 18 + cp $src $out/lib/dotnet/keepass/ 19 + ''; 20 + 21 + meta = with lib; { 22 + description = "Enables KeePass to display data as QR code images"; 23 + longDescription = '' 24 + KeePassQRCodeView is a plugin for KeePass 2.x which shows QR codes for entry fields. 25 + These codes can be scanned to copy the encoded data to the scanner (smartphone, ...) 26 + ''; 27 + homepage = "https://github.com/JanisEst/KeePassQRCodeView"; 28 + platforms = [ 29 + "aarch64-linux" 30 + "i686-linux" 31 + "x86_64-linux" 32 + ]; 33 + license = licenses.mit; 34 + maintainers = with maintainers; [ nazarewk ]; 35 + }; 36 + }; 37 + in 38 + # Mono is required to compile plugin at runtime, after loading. 39 + buildEnv { name = drv.name; paths = [ mono drv ]; }
+1
pkgs/applications/networking/cluster/terraform-providers/default.nix
··· 17 17 inherit (data) owner repo rev sha256; 18 18 }; 19 19 vendorSha256 = data.vendorSha256 or null; 20 + deleteVendor = data.deleteVendor or false; 20 21 21 22 # Terraform allow checking the provider versions, but this breaks 22 23 # if the versions are not provided via file paths.
+7 -4
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 34 34 "version": "1.8.0" 35 35 }, 36 36 "alicloud": { 37 - "owner": "terraform-providers", 37 + "deleteVendor": true, 38 + "owner": "aliyun", 39 + "provider-source-address": "registry.terraform.io/aliyun/alicloud", 38 40 "repo": "terraform-provider-alicloud", 39 - "rev": "v1.86.0", 40 - "sha256": "1hbv9ah7fd173sapwgsbg7790piwxw9zx90wfj5vz5b96ggbg28d", 41 - "version": "1.86.0" 41 + "rev": "v1.144.0", 42 + "sha256": "14nphpz15p83n6fsvvrnaz96nb87wvb10ri21hlhlsm2579zcbqd", 43 + "vendorSha256": "1k28fcfm7437i7gfbcbrigk2i50c1mix7z1rb2g617prih84wa6y", 44 + "version": "1.144.0" 42 45 }, 43 46 "archive": { 44 47 "owner": "hashicorp",
+35 -31
pkgs/applications/networking/p2p/tribler/default.nix
··· 1 - { stdenv, fetchurl, python3Packages, makeWrapper 2 - , enablePlayer ? true, libvlc, qt5, lib }: 1 + { stdenv, lib, fetchurl, python3, makeWrapper 2 + , libtorrent-rasterbar-1_2_x, qt5 3 + }: 4 + 5 + let 6 + libtorrent = (python3.pkgs.toPythonModule ( 7 + libtorrent-rasterbar-1_2_x.override { python = python3; })).python; 3 8 9 + aiohttp-apispec = python3.pkgs.callPackage 10 + ../../../../development/python-modules/aiohttp-apispec/unstable.nix { }; 11 + in 4 12 stdenv.mkDerivation rec { 5 13 pname = "tribler"; 6 - version = "7.4.4"; 14 + version = "7.10.0"; 7 15 8 16 src = fetchurl { 9 17 url = "https://github.com/Tribler/tribler/releases/download/v${version}/Tribler-v${version}.tar.xz"; 10 - sha256 = "0hxiyf1k07ngym2p8r1b5mcx1y2crkyz43gi9sgvsvsyijyaff3p"; 18 + sha256 = "1x45z23d1cqf0lai7wg5ki7gi2vba5hqk0swhggzplcjwma4wmh9"; 11 19 }; 12 20 13 21 nativeBuildInputs = [ 14 - python3Packages.wrapPython 22 + python3.pkgs.wrapPython 15 23 makeWrapper 16 24 ]; 17 25 18 26 buildInputs = [ 19 - python3Packages.python 27 + python3.pkgs.python 20 28 ]; 21 29 22 - pythonPath = with python3Packages; [ 23 - libtorrent-rasterbar 30 + pythonPath = [ 31 + libtorrent 32 + ] ++ (with python3.pkgs; [ 24 33 twisted 25 34 netifaces 26 35 pycrypto ··· 42 51 pony 43 52 lz4 44 53 pyqtgraph 54 + pyyaml 55 + aiohttp 56 + aiohttp-apispec 57 + faker 58 + sentry-sdk 59 + pytest-asyncio 60 + pytest-timeout 61 + asynctest 62 + yappi 45 63 46 64 # there is a BTC feature, but it requires some unclear version of 47 65 # bitcoinlib, so this doesn't work right now. 48 66 # bitcoinlib 49 - ]; 50 - 51 - postPatch = '' 52 - ${lib.optionalString enablePlayer '' 53 - substituteInPlace "./TriblerGUI/vlc.py" --replace "ctypes.CDLL(p)" "ctypes.CDLL('${libvlc}/lib/libvlc.so')" 54 - substituteInPlace "./TriblerGUI/widgets/videoplayerpage.py" \ 55 - --replace "if vlc and vlc.plugin_path" "if vlc" \ 56 - --replace "os.environ['VLC_PLUGIN_PATH'] = vlc.plugin_path" "os.environ['VLC_PLUGIN_PATH'] = '${libvlc}/lib/vlc/plugins'" 57 - ''} 58 - ''; 67 + ]); 59 68 60 69 installPhase = '' 61 70 mkdir -pv $out 62 71 # Nasty hack; call wrapPythonPrograms to set program_PYTHONPATH. 63 72 wrapPythonPrograms 64 73 cp -prvd ./* $out/ 65 - makeWrapper ${python3Packages.python}/bin/python $out/bin/tribler \ 74 + makeWrapper ${python3.pkgs.python}/bin/python $out/bin/tribler \ 66 75 --set QT_QPA_PLATFORM_PLUGIN_PATH ${qt5.qtbase.bin}/lib/qt-*/plugins/platforms \ 67 - --set _TRIBLERPATH $out \ 68 - --set PYTHONPATH $out:$program_PYTHONPATH \ 76 + --set _TRIBLERPATH $out/src \ 77 + --set PYTHONPATH $out/src/tribler-core:$out/src/tribler-common:$out/src/tribler-gui:$program_PYTHONPATH \ 69 78 --set NO_AT_BRIDGE 1 \ 70 79 --run 'cd $_TRIBLERPATH' \ 71 - --add-flags "-O $out/run_tribler.py" \ 72 - ${lib.optionalString enablePlayer '' 73 - --prefix LD_LIBRARY_PATH : ${libvlc}/lib 74 - ''} 80 + --add-flags "-O $out/src/run_tribler.py" 75 81 76 - mkdir -p $out/share/applications $out/share/icons $out/share/man/man1 77 - cp $out/Tribler/Main/Build/Ubuntu/tribler.desktop $out/share/applications/tribler.desktop 78 - cp $out/Tribler/Main/Build/Ubuntu/tribler_big.xpm $out/share/icons/tribler.xpm 79 - cp $out/Tribler/Main/Build/Ubuntu/tribler.1 $out/share/man/man1/tribler.1 82 + mkdir -p $out/share/applications $out/share/icons 83 + cp $out/build/debian/tribler/usr/share/applications/tribler.desktop $out/share/applications/tribler.desktop 84 + cp $out/build/debian/tribler/usr/share/pixmaps/tribler_big.xpm $out/share/icons/tribler.xpm 80 85 ''; 81 86 82 87 meta = with lib; { 83 - maintainers = with maintainers; [ xvapx ]; 88 + maintainers = with maintainers; [ xvapx viric ]; 84 89 homepage = "https://www.tribler.org/"; 85 90 description = "A completely decentralised P2P filesharing client based on the Bittorrent protocol"; 86 91 license = licenses.lgpl21; 87 92 platforms = platforms.linux; 88 - broken = true; # 2021-03-17 see https://github.com/NixOS/nixpkgs/issues/93053 89 93 }; 90 94 }
+32
pkgs/applications/office/notion-app-enhanced/default.nix
··· 1 + { appimageTools, lib, fetchurl }: 2 + let 3 + pname = "notion-app-enhanced"; 4 + version = "2.0.16-5"; 5 + name = "${pname}-v${version}"; 6 + 7 + src = fetchurl { 8 + url = "https://github.com/notion-enhancer/notion-repackaged/releases/download/v${version}/Notion-Enhanced-${version}.AppImage"; 9 + sha256 = "1v733b4clc9sjgb72fasmbqiyz26d09f3kmvd1nqshwp5d14dajz"; 10 + }; 11 + 12 + appimageContents = appimageTools.extract { inherit name src; }; 13 + in appimageTools.wrapType2 { 14 + inherit name src; 15 + 16 + extraInstallCommands = '' 17 + mv $out/bin/${name} $out/bin/${pname} 18 + 19 + install -m 444 -D ${appimageContents}/${pname}.desktop -t $out/share/applications 20 + substituteInPlace $out/share/applications/${pname}.desktop \ 21 + --replace 'Exec=AppRun' 'Exec=${pname}' 22 + cp -r ${appimageContents}/usr/share/icons $out/share 23 + ''; 24 + 25 + meta = with lib; { 26 + description = "Notion Desktop builds with Notion Enhancer for Windows, MacOS and Linux."; 27 + homepage = "https://github.com/notion-enhancer/desktop"; 28 + license = licenses.unfree; 29 + maintainers = with maintainers; [ sei40kr ]; 30 + platforms = [ "x86_64-linux" ]; 31 + }; 32 + }
+3 -3
pkgs/applications/version-management/git-and-tools/delta/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "delta"; 12 - version = "0.9.2"; 12 + version = "0.10.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "dandavison"; 16 16 repo = pname; 17 17 rev = version; 18 - sha256 = "sha256-DJG8C7oSTf4YKeSVytN4pVF4qVImg1bsTYbnfkR+U94="; 18 + sha256 = "sha256-PkVZag/h1KzOWsE6+61HIixs+DldrGk9khlZy7DEbC8="; 19 19 }; 20 20 21 - cargoSha256 = "sha256-mweH+ZIcNGGmoGUhnmZzaB5y14eO/XkHqrL8Nz/b3Jg="; 21 + cargoSha256 = "sha256-o1HyPJ81g9fLA7CKQNKg1EctoIh3W0uGzKF2YNE+Ado="; 22 22 23 23 nativeBuildInputs = [ installShellFiles ]; 24 24
+47
pkgs/applications/video/mpv/scripts/cutter.nix
··· 1 + { lib, stdenvNoCC, fetchFromGitHub, makeWrapper }: 2 + 3 + stdenvNoCC.mkDerivation { 4 + pname = "video-cutter"; 5 + version = "unstable-2021-02-03"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "rushmj"; 9 + repo = "mpv-video-cutter"; 10 + rev = "718d6ce9356e63fdd47208ec44f575a212b9068a"; 11 + sha256 = "sha256-ramID1DPl0UqEzevpqdYKb9aaW3CAy3Dy9CPb/oJ4eY="; 12 + }; 13 + 14 + dontBuild = true; 15 + dontCheck = true; 16 + 17 + nativeBuildInputs = [ makeWrapper ]; 18 + 19 + postPatch = '' 20 + substituteInPlace cutter.lua \ 21 + --replace '~/.config/mpv/scripts/c_concat.sh' '${placeholder "out"}/share/mpv/scripts/c_concat.sh' 22 + 23 + # needs to be ran separately so that we can replace everything, and not every single mention explicitly 24 + # original script places them in the scripts folder, just spawning unnecessary errors 25 + # i know that hardcoding .config and especially the .mpv directory isn't best practice, but I didn't want to deviate too much from upstream 26 + substituteInPlace cutter.lua \ 27 + --replace '~/.config/mpv/scripts' "''${XDG_CONFIG_HOME:-~/.config}/mpv/cutter" 28 + ''; 29 + 30 + installPhase = '' 31 + install -Dm755 c_concat.sh $out/share/mpv/scripts/c_concat.sh 32 + install cutter.lua $out/share/mpv/scripts/cutter.lua 33 + 34 + wrapProgram $out/share/mpv/scripts/c_concat.sh \ 35 + --run "mkdir -p ~/.config/mpv/cutter/" 36 + ''; 37 + 38 + passthru.scriptName = "cutter.lua"; 39 + 40 + meta = with lib; { 41 + description = "Cut videos and concat them automatically"; 42 + homepage = "https://github.com/rushmj/mpv-video-cutter"; 43 + # repo doesn't have a license 44 + license = licenses.unfree; 45 + maintainers = with maintainers; [ legendofmiracles ]; 46 + }; 47 + }
+4 -1
pkgs/applications/video/mpv/wrapper.nix
··· 80 80 makeWrapper "${mpv}/Applications/mpv.app/Contents/MacOS/mpv" "$out/Applications/mpv.app/Contents/MacOS/mpv" ${mostMakeWrapperArgs} 81 81 ''; 82 82 83 - meta.mainProgram = "mpv"; 83 + meta = { 84 + inherit (mpv.meta) homepage description longDescription maintainers; 85 + mainProgram = "mpv"; 86 + }; 84 87 }; 85 88 in 86 89 lib.makeOverridable wrapper
-4
pkgs/build-support/mono-dll-fixer/builder.sh
··· 1 - source $stdenv/setup 2 - 3 - substitute $dllFixer $out --subst-var-by perl $perl/bin/perl 4 - chmod +x $out
+5 -2
pkgs/build-support/mono-dll-fixer/default.nix
··· 1 1 {stdenv, perl}: 2 - 3 2 stdenv.mkDerivation { 4 3 name = "mono-dll-fixer"; 5 - builder = ./builder.sh; 6 4 dllFixer = ./dll-fixer.pl; 5 + dontUnpack = true; 6 + installPhase = '' 7 + substitute $dllFixer $out --subst-var-by perl $perl/bin/perl 8 + chmod +x $out 9 + ''; 7 10 inherit perl; 8 11 }
+15 -2
pkgs/build-support/rust/build-rust-package/sysroot/Cargo.lock pkgs/build-support/rust/sysroot/Cargo.lock
··· 10 10 11 11 [[package]] 12 12 name = "compiler_builtins" 13 - version = "0.1.36" 13 + version = "0.1.52" 14 14 source = "registry+https://github.com/rust-lang/crates.io-index" 15 - checksum = "7cd0782e0a7da7598164153173e5a5d4d9b1da094473c98dce0ff91406112369" 15 + checksum = "b6591c2442ee984e2b264638a8b5e7ae44fd47b32d28e3a08e2e9c3cdb0c2fb0" 16 16 dependencies = [ 17 17 "rustc-std-workspace-core", 18 18 ] ··· 22 22 version = "0.0.0" 23 23 24 24 [[package]] 25 + name = "nixpkgs-sysroot-stub-crate" 26 + version = "0.0.0" 27 + dependencies = [ 28 + "alloc", 29 + "compiler_builtins", 30 + "core", 31 + ] 32 + 33 + [[package]] 25 34 name = "rustc-std-workspace-core" 26 35 version = "1.99.0" 27 36 dependencies = [ 28 37 "core", 29 38 ] 39 + 40 + [[patch.unused]] 41 + name = "rustc-std-workspace-alloc" 42 + version = "1.99.0"
+9 -7
pkgs/build-support/rust/build-rust-package/sysroot/cargo.py pkgs/build-support/rust/sysroot/cargo.py
··· 6 6 7 7 base = { 8 8 'package': { 9 - 'name': 'alloc', 9 + 'name': 'nixpkgs-sysroot-stub-crate', 10 10 'version': '0.0.0', 11 11 'authors': ['The Rust Project Developers'], 12 12 'edition': '2018', ··· 17 17 'features': ['rustc-dep-of-std', 'mem'], 18 18 }, 19 19 'core': { 20 - 'path': os.path.join(rust_src, 'libcore'), 20 + 'path': os.path.join(rust_src, 'core'), 21 21 }, 22 - }, 23 - 'lib': { 24 - 'name': 'alloc', 25 - 'path': os.path.join(rust_src, 'liballoc/lib.rs'), 22 + 'alloc': { 23 + 'path': os.path.join(rust_src, 'alloc'), 24 + }, 26 25 }, 27 26 'patch': { 28 27 'crates-io': { 29 28 'rustc-std-workspace-core': { 30 - 'path': os.path.join(rust_src, 'tools/rustc-std-workspace-core'), 29 + 'path': os.path.join(rust_src, 'rustc-std-workspace-core'), 30 + }, 31 + 'rustc-std-workspace-alloc': { 32 + 'path': os.path.join(rust_src, 'rustc-std-workspace-alloc'), 31 33 }, 32 34 }, 33 35 },
+2 -11
pkgs/build-support/rust/build-rust-package/sysroot/default.nix
··· 3 3 { shortTarget, originalCargoToml, target, RUSTFLAGS }: 4 4 5 5 let 6 - cargoSrc = stdenv.mkDerivation { 7 - name = "cargo-src"; 8 - preferLocalBuild = true; 9 - phases = [ "installPhase" ]; 10 - installPhase = '' 11 - RUSTC_SRC=${rustPlatform.rustcSrc.override { minimalContent = false; }} ORIG_CARGO=${originalCargoToml} \ 12 - ${buildPackages.python3.withPackages (ps: with ps; [ toml ])}/bin/python3 ${./cargo.py} 13 - mkdir -p $out 14 - cp Cargo.toml $out/Cargo.toml 15 - cp ${./Cargo.lock} $out/Cargo.lock 16 - ''; 6 + cargoSrc = import ../../sysroot/src.nix { 7 + inherit stdenv rustPlatform buildPackages originalCargoToml; 17 8 }; 18 9 in rustPlatform.buildRustPackage { 19 10 inherit target RUSTFLAGS;
-21
pkgs/build-support/rust/build-rust-package/sysroot/update-lockfile.sh
··· 1 - #!/usr/bin/env nix-shell 2 - #!nix-shell -i bash -p python3 python3.pkgs.toml cargo 3 - 4 - set -e 5 - 6 - HERE=$(dirname "${BASH_SOURCE[0]}") 7 - NIXPKGS_ROOT="$HERE/../../../.." 8 - 9 - # https://unix.stackexchange.com/a/84980/390173 10 - tempdir=$(mktemp -d 2>/dev/null || mktemp -d -t 'update-lockfile') 11 - 12 - cd "$tempdir" 13 - nix-build -E "with import (/. + \"${NIXPKGS_ROOT}\") {}; pkgs.rustPlatform.rustcSrc.override { minimalContent = false; }" 14 - RUSTC_SRC="$(pwd)/result" python3 "$HERE/cargo.py" 15 - RUSTC_BOOTSTRAP=1 cargo build || echo "Build failure is expected. All that's needed is the lockfile." 16 - 17 - cp Cargo.lock "$HERE" 18 - 19 - rm -rf "$tempdir" 20 - 21 -
+26
pkgs/build-support/rust/sysroot/src.nix
··· 1 + { lib, stdenv, rustPlatform, buildPackages 2 + , originalCargoToml ? null 3 + }: 4 + 5 + stdenv.mkDerivation { 6 + name = "cargo-src"; 7 + preferLocalBuild = true; 8 + 9 + unpackPhase = "true"; 10 + dontConfigure = true; 11 + dontBuild = true; 12 + 13 + installPhase = '' 14 + export RUSTC_SRC=${rustPlatform.rustLibSrc.override { }} 15 + '' 16 + + lib.optionalString (originalCargoToml != null) '' 17 + export ORIG_CARGO=${originalCargoToml} 18 + '' 19 + + '' 20 + ${buildPackages.python3.withPackages (ps: with ps; [ toml ])}/bin/python3 ${./cargo.py} 21 + mkdir -p $out/src 22 + touch $out/src/lib.rs 23 + cp Cargo.toml $out/Cargo.toml 24 + cp ${./Cargo.lock} $out/Cargo.lock 25 + ''; 26 + }
+27
pkgs/build-support/rust/sysroot/update-lockfile.sh
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell -i bash -p python3 python3.pkgs.toml cargo 3 + 4 + set -eu pipefile 5 + 6 + HERE=$(readlink -e $(dirname "${BASH_SOURCE[0]}")) 7 + NIXPKGS_ROOT="$HERE/../../../.." 8 + 9 + # https://unix.stackexchange.com/a/84980/390173 10 + tempdir=$(mktemp -d 2>/dev/null || mktemp -d -t 'update-lockfile') 11 + cd "$tempdir" 12 + mkdir -p src 13 + touch src/lib.rs 14 + 15 + RUSTC_SRC=$(nix-build "${NIXPKGS_ROOT}" -A pkgs.rustPlatform.rustLibSrc --no-out-link) 16 + 17 + ln -s $RUSTC_SRC/{core,alloc} ./ 18 + 19 + export RUSTC_SRC 20 + python3 "$HERE/cargo.py" 21 + 22 + export RUSTC_BOOTSTRAP=1 23 + cargo generate-lockfile 24 + 25 + cp Cargo.lock "$HERE" 26 + 27 + rm -rf "$tempdir"
+6 -2
pkgs/desktops/gnome/core/sushi/default.nix
··· 8 8 , gnome 9 9 , gtksourceview4 10 10 , gjs 11 - , webkitgtk_4_1 11 + , libsoup 12 + , webkitgtk 12 13 , icu 13 14 , wrapGAppsHook 14 15 , gst_all_1 ··· 48 49 gtksourceview4 49 50 gdk-pixbuf 50 51 librsvg 51 - webkitgtk_4_1 52 + libsoup 53 + webkitgtk 52 54 libepoxy 53 55 gst_all_1.gstreamer 54 56 gst_all_1.gst-plugins-base 55 57 gst_all_1.gst-plugins-good 58 + gst_all_1.gst-plugins-bad 59 + gst_all_1.gst-plugins-ugly 56 60 ]; 57 61 58 62 # See https://github.com/NixOS/nixpkgs/issues/31168
+2 -2
pkgs/development/compilers/ghc/8.10.7.nix
··· 15 15 , # LLVM is conceptually a run-time-only depedendency, but for 16 16 # non-x86, we need LLVM to bootstrap later stages, so it becomes a 17 17 # build-time dependency too. 18 - buildLlvmPackages, llvmPackages 18 + buildTargetLlvmPackages, llvmPackages 19 19 20 20 , # If enabled, GHC will be built with the GPL-free but slower integer-simple 21 21 # library instead of the faster but GPLed integer-gmp library. ··· 122 122 123 123 toolsForTarget = [ 124 124 pkgsBuildTarget.targetPackages.stdenv.cc 125 - ] ++ lib.optional useLLVM buildLlvmPackages.llvm; 125 + ] ++ lib.optional useLLVM buildTargetLlvmPackages.llvm; 126 126 127 127 targetCC = builtins.head toolsForTarget; 128 128
+2 -2
pkgs/development/compilers/ghc/8.8.4.nix
··· 14 14 , # LLVM is conceptually a run-time-only depedendency, but for 15 15 # non-x86, we need LLVM to bootstrap later stages, so it becomes a 16 16 # build-time dependency too. 17 - buildLlvmPackages, llvmPackages 17 + buildTargetLlvmPackages, llvmPackages 18 18 19 19 , # If enabled, GHC will be built with the GPL-free but slower integer-simple 20 20 # library instead of the faster but GPLed integer-gmp library. ··· 130 130 131 131 toolsForTarget = [ 132 132 pkgsBuildTarget.targetPackages.stdenv.cc 133 - ] ++ lib.optional useLLVM buildLlvmPackages.llvm; 133 + ] ++ lib.optional useLLVM buildTargetLlvmPackages.llvm; 134 134 135 135 targetCC = builtins.head toolsForTarget; 136 136
+2 -2
pkgs/development/compilers/ghc/9.0.1.nix
··· 16 16 , # LLVM is conceptually a run-time-only depedendency, but for 17 17 # non-x86, we need LLVM to bootstrap later stages, so it becomes a 18 18 # build-time dependency too. 19 - buildLlvmPackages, llvmPackages 19 + buildTargetLlvmPackages, llvmPackages 20 20 21 21 , # If enabled, GHC will be built with the GPL-free but slower integer-simple 22 22 # library instead of the faster but GPLed integer-gmp library. ··· 117 117 118 118 toolsForTarget = [ 119 119 pkgsBuildTarget.targetPackages.stdenv.cc 120 - ] ++ lib.optional useLLVM buildLlvmPackages.llvm; 120 + ] ++ lib.optional useLLVM buildTargetLlvmPackages.llvm; 121 121 122 122 targetCC = builtins.head toolsForTarget; 123 123
+2 -2
pkgs/development/compilers/ghc/9.2.1.nix
··· 16 16 , # LLVM is conceptually a run-time-only depedendency, but for 17 17 # non-x86, we need LLVM to bootstrap later stages, so it becomes a 18 18 # build-time dependency too. 19 - buildLlvmPackages, llvmPackages 19 + buildTargetLlvmPackages, llvmPackages 20 20 21 21 , # If enabled, GHC will be built with the GPL-free but slower integer-simple 22 22 # library instead of the faster but GPLed integer-gmp library. ··· 117 117 118 118 toolsForTarget = [ 119 119 pkgsBuildTarget.targetPackages.stdenv.cc 120 - ] ++ lib.optional useLLVM buildLlvmPackages.llvm; 120 + ] ++ lib.optional useLLVM buildTargetLlvmPackages.llvm; 121 121 122 122 targetCC = builtins.head toolsForTarget; 123 123
+2 -2
pkgs/development/compilers/ghc/head.nix
··· 21 21 , # LLVM is conceptually a run-time-only depedendency, but for 22 22 # non-x86, we need LLVM to bootstrap later stages, so it becomes a 23 23 # build-time dependency too. 24 - buildLlvmPackages, llvmPackages 24 + buildTargetLlvmPackages, llvmPackages 25 25 26 26 , # If enabled, GHC will be built with the GPL-free but slightly slower native 27 27 # bignum backend instead of the faster but GPLed gmp backend. ··· 130 130 131 131 toolsForTarget = [ 132 132 pkgsBuildTarget.targetPackages.stdenv.cc 133 - ] ++ lib.optional useLLVM buildLlvmPackages.llvm; 133 + ] ++ lib.optional useLLVM buildTargetLlvmPackages.llvm; 134 134 135 135 targetCC = builtins.head toolsForTarget; 136 136
+16 -5
pkgs/development/compilers/rust/rust-src.nix
··· 1 - { stdenv, rustc, minimalContent ? true }: 1 + { lib, stdenv, rustc, minimalContent ? true }: 2 2 3 3 stdenv.mkDerivation { 4 4 name = "rust-src"; ··· 6 6 phases = [ "unpackPhase" "installPhase" ]; 7 7 installPhase = '' 8 8 mv src $out 9 - rm -rf $out/{${if minimalContent 10 - then "ci,doc,etc,grammar,llvm-project,llvm-emscripten,rtstartup,rustllvm,test,tools,vendor,stdarch" 11 - else "ci,doc,etc,grammar,llvm-project,llvm-emscripten,rtstartup,rustllvm,test,vendor" 12 - }} 9 + rm -rf $out/{${lib.concatStringsSep "," ([ 10 + "ci" 11 + "doc" 12 + "etc" 13 + "grammar" 14 + "llvm-project" 15 + "llvm-emscripten" 16 + "rtstartup" 17 + "rustllvm" 18 + "test" 19 + "vendor" 20 + ] ++ lib.optionals minimalContent [ 21 + "tools" 22 + "stdarch" 23 + ])}} 13 24 ''; 14 25 }
+2 -2
pkgs/development/dhall-modules/dhall-grafana.nix
··· 1 - { dhallPackages, buildDhallGitHubPackage }: 1 + { buildDhallGitHubPackage, Prelude }: 2 2 3 3 buildDhallGitHubPackage { 4 4 name = "grafana"; ··· 7 7 # 2021-11-12 8 8 rev = "d5630dc55deacf5100a99802a4df1d9680b263b3"; 9 9 sha256 = "01320hpqgr5r4grsydmdl9yznmly1ssnlc9gcwa8rj1ah0a8xlgz"; 10 - dependencies = [ dhallPackages.Prelude ]; 10 + dependencies = [ Prelude ]; 11 11 }
+16 -3
pkgs/development/nim-packages/nim_builder/nim_builder.nim
··· 64 64 if s.len > 0 and s[0] == '"': 65 65 s = s.unescape() 66 66 67 + proc getOutputDir(name: string): string = 68 + ## Return the output directory for output `name`. 69 + ## If `name` is not a valid output then the first output 70 + ## is returned as a default. 71 + let outputs = splitWhitespace getEnv("outputs") 72 + doAssert(outputs.len > 0) 73 + if outputs.contains name: 74 + result = getEnv(name) 75 + if result == "": 76 + result = getEnv("out") 77 + if result == "": 78 + result = getEnv(outputs[0], "/dev/null") 79 + 67 80 proc configurePhase*() = 68 81 ## Generate "config.nims" which will be read by the Nim 69 82 ## compiler during later phases. ··· 103 116 nf = getNimbleFilePath() 104 117 bins = nf.getNimbleValues("bin") 105 118 srcDir = nf.getNimbleValue("srcDir", ".") 106 - binDir = getenv("outputBin", getenv("out", "/dev/null")) / "bin" 119 + binDir = getOutputDir("bin") / "bin" 107 120 if bins != @[]: 108 121 for bin in bins: 109 122 cmds.add("nim compile $# --outdir:$# $#" % 110 123 [getenv"nimFlags", binDir, normalizedPath(srcDir / bin)]) 111 124 if getEnvBool"nimDoc": 112 125 echo "generating documentation" 113 - let docDir = getenv("outputDoc", (getenv("out", "/dev/null") / "doc")) 126 + let docDir = getOutputDir("doc") / "doc" 114 127 for path in walkFiles(srcDir / "*.nim"): 115 128 cmds.add("nim doc --outdir:$# $#" % [docDir, path]) 116 129 if cmds.len > 0: ··· 126 139 let 127 140 nf = getNimbleFilePath() 128 141 srcDir = nf.getNimbleValue("srcDir", ".") 129 - devDir = getenv("outputDev", getenv("out", "/dev/null")) 142 + devDir = getOutputDir "dev" 130 143 echo "Install ", srcDir, " to ", devDir 131 144 copyDir(normalizedPath(srcDir), normalizedPath(devDir / srcDir)) 132 145 copyFile(nf, devDir / nf.extractFilename)
+2
pkgs/development/node-packages/node-packages.json
··· 20 20 , "alex" 21 21 , "alloy" 22 22 , "asar" 23 + , "audiosprite" 23 24 , "autoprefixer" 24 25 , "aws-azure-login" 25 26 , "awesome-lint" ··· 209 210 , "npm-check-updates" 210 211 , "npm-merge-driver" 211 212 , {"npm2nix": "git://github.com/NixOS/npm2nix.git#5.12.0"} 213 + , "nrm" 212 214 , "ocaml-language-server" 213 215 , "parcel-bundler" 214 216 , "parsoid"
+584 -461
pkgs/development/node-packages/node-packages.nix
··· 346 346 sha512 = "IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA=="; 347 347 }; 348 348 }; 349 - "@babel/compat-data-7.16.0" = { 349 + "@babel/compat-data-7.16.4" = { 350 350 name = "_at_babel_slash_compat-data"; 351 351 packageName = "@babel/compat-data"; 352 - version = "7.16.0"; 352 + version = "7.16.4"; 353 353 src = fetchurl { 354 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.0.tgz"; 355 - sha512 = "DGjt2QZse5SGd9nfOSqO4WLJ8NN/oHkijbXbPrxuoJO3oIPJL3TciZs9FX+cOHNiY9E9l0opL8g7BmLe3T+9ew=="; 354 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz"; 355 + sha512 = "1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q=="; 356 356 }; 357 357 }; 358 358 "@babel/core-7.10.5" = { ··· 436 436 sha512 = "3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA=="; 437 437 }; 438 438 }; 439 - "@babel/helper-define-polyfill-provider-0.2.4" = { 439 + "@babel/helper-define-polyfill-provider-0.3.0" = { 440 440 name = "_at_babel_slash_helper-define-polyfill-provider"; 441 441 packageName = "@babel/helper-define-polyfill-provider"; 442 - version = "0.2.4"; 442 + version = "0.3.0"; 443 443 src = fetchurl { 444 - url = "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.4.tgz"; 445 - sha512 = "OrpPZ97s+aPi6h2n1OXzdhVis1SGSsMU2aMHgLcOKfsp4/v1NWpx3CWT3lBj5eeBq9cDkPkh+YCfdF7O12uNDQ=="; 444 + url = "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.0.tgz"; 445 + sha512 = "7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg=="; 446 446 }; 447 447 }; 448 448 "@babel/helper-explode-assignable-expression-7.16.0" = { ··· 535 535 sha512 = "/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ=="; 536 536 }; 537 537 }; 538 - "@babel/helper-remap-async-to-generator-7.16.0" = { 538 + "@babel/helper-remap-async-to-generator-7.16.4" = { 539 539 name = "_at_babel_slash_helper-remap-async-to-generator"; 540 540 packageName = "@babel/helper-remap-async-to-generator"; 541 - version = "7.16.0"; 541 + version = "7.16.4"; 542 542 src = fetchurl { 543 - url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.0.tgz"; 544 - sha512 = "MLM1IOMe9aQBqMWxcRw8dcb9jlM86NIw7KA0Wri91Xkfied+dE0QuBFSBjMNvqzmS0OSIDsMNC24dBEkPUi7ew=="; 543 + url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.4.tgz"; 544 + sha512 = "vGERmmhR+s7eH5Y/cp8PCVzj4XEjerq8jooMfxFdA5xVtAk9Sh4AQsrWgiErUEBjtGrBtOFKDUcWQFW4/dFwMA=="; 545 545 }; 546 546 }; 547 547 "@babel/helper-replace-supers-7.16.0" = { ··· 643 643 sha512 = "OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw=="; 644 644 }; 645 645 }; 646 - "@babel/parser-7.16.3" = { 646 + "@babel/parser-7.16.4" = { 647 647 name = "_at_babel_slash_parser"; 648 648 packageName = "@babel/parser"; 649 - version = "7.16.3"; 649 + version = "7.16.4"; 650 650 src = fetchurl { 651 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.16.3.tgz"; 652 - sha512 = "dcNwU1O4sx57ClvLBVFbEgx0UZWfd0JQX5X6fxFRCLHelFBGXFfSz6Y0FAq2PEwUqlqLkdVjVr4VASEOuUnLJw=="; 651 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.16.4.tgz"; 652 + sha512 = "6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng=="; 653 653 }; 654 654 }; 655 655 "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2" = { ··· 679 679 sha512 = "mx0WXDDiIl5DwzMtzWGRSPugXi9BxROS05GQrhLNbEamhBiicgn994ibwkyiBH+6png7bm/yA7AUsvHyCXi4Vw=="; 680 680 }; 681 681 }; 682 - "@babel/plugin-proposal-async-generator-functions-7.16.0" = { 682 + "@babel/plugin-proposal-async-generator-functions-7.16.4" = { 683 683 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 684 684 packageName = "@babel/plugin-proposal-async-generator-functions"; 685 - version = "7.16.0"; 685 + version = "7.16.4"; 686 686 src = fetchurl { 687 - url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.0.tgz"; 688 - sha512 = "nyYmIo7ZqKsY6P4lnVmBlxp9B3a96CscbLotlsNuktMHahkDwoPYEjXrZHU0Tj844Z9f1IthVxQln57mhkcExw=="; 687 + url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.4.tgz"; 688 + sha512 = "/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg=="; 689 689 }; 690 690 }; 691 691 "@babel/plugin-proposal-class-properties-7.16.0" = { ··· 1291 1291 sha512 = "Dgs8NNCehHSvXdhEhln8u/TtJxfVwGYCgP2OOr5Z3Ar+B+zXicEOKNTyc+eca2cuEOMtjW6m9P9ijOt8QdqWkg=="; 1292 1292 }; 1293 1293 }; 1294 - "@babel/plugin-transform-runtime-7.16.0" = { 1294 + "@babel/plugin-transform-runtime-7.16.4" = { 1295 1295 name = "_at_babel_slash_plugin-transform-runtime"; 1296 1296 packageName = "@babel/plugin-transform-runtime"; 1297 - version = "7.16.0"; 1297 + version = "7.16.4"; 1298 1298 src = fetchurl { 1299 - url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.0.tgz"; 1300 - sha512 = "zlPf1/XFn5+vWdve3AAhf+Sxl+MVa5VlwTwWgnLx23u4GlatSRQJ3Eoo9vllf0a9il3woQsT4SK+5Z7c06h8ag=="; 1299 + url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.4.tgz"; 1300 + sha512 = "pru6+yHANMTukMtEZGC4fs7XPwg35v8sj5CIEmE+gEkFljFiVJxEWxx/7ZDkTK+iZRYo1bFXBtfIN95+K3cJ5A=="; 1301 1301 }; 1302 1302 }; 1303 1303 "@babel/plugin-transform-shorthand-properties-7.16.0" = { ··· 1372 1372 sha512 = "jHLK4LxhHjvCeZDWyA9c+P9XH1sOxRd1RO9xMtDVRAOND/PczPqizEtVdx4TQF/wyPaewqpT+tgQFYMnN/P94A=="; 1373 1373 }; 1374 1374 }; 1375 - "@babel/preset-env-7.16.0" = { 1375 + "@babel/preset-env-7.16.4" = { 1376 1376 name = "_at_babel_slash_preset-env"; 1377 1377 packageName = "@babel/preset-env"; 1378 - version = "7.16.0"; 1378 + version = "7.16.4"; 1379 1379 src = fetchurl { 1380 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.0.tgz"; 1381 - sha512 = "cdTu/W0IrviamtnZiTfixPfIncr2M1VqRrkjzZWlr1B4TVYimCFK5jkyOdP4qw2MrlKHi+b3ORj6x8GoCew8Dg=="; 1380 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.4.tgz"; 1381 + sha512 = "v0QtNd81v/xKj4gNKeuAerQ/azeNn/G1B1qMLeXOcV8+4TWlD2j3NV1u8q29SDFBXx/NBq5kyEAO+0mpRgacjA=="; 1382 1382 }; 1383 1383 }; 1384 1384 "@babel/preset-flow-7.16.0" = { ··· 1480 1480 sha512 = "IAdDC7T0+wEB4y2gbIL0uOXEYpiZEeuFUTVbdGq+UwCcF35T/tS8KrmMomEwEc5wBbyfH3PJVpTSUqrhPDXFcQ=="; 1481 1481 }; 1482 1482 }; 1483 - "@babel/standalone-7.16.3" = { 1483 + "@babel/standalone-7.16.4" = { 1484 1484 name = "_at_babel_slash_standalone"; 1485 1485 packageName = "@babel/standalone"; 1486 - version = "7.16.3"; 1486 + version = "7.16.4"; 1487 1487 src = fetchurl { 1488 - url = "https://registry.npmjs.org/@babel/standalone/-/standalone-7.16.3.tgz"; 1489 - sha512 = "hoStDfHl2+EYUv1LNHhZTysa+lMSwIEkkT4HnDNX+F0zqvPdoE2QLF7qtkd45cgCGOwQjrvwe2mOKcX3f6Wr8A=="; 1488 + url = "https://registry.npmjs.org/@babel/standalone/-/standalone-7.16.4.tgz"; 1489 + sha512 = "FDRLwjeQfPm5jaHNuB+vwNyGCp24Ah3kEsbLzKmh0eSru+QCr4DmjgbRPoz71AwXLVtXU+l/i7MlVlIj5XO7Gw=="; 1490 1490 }; 1491 1491 }; 1492 1492 "@babel/template-7.16.0" = { ··· 2074 2074 sha512 = "zF/raM/lkhXeHf4I43OtK0gP9rBeEJFArscTVwLWOCIvNk21MJcNoTYoaGw+c056+Q+hJL0psGLO7QN+mxYH1A=="; 2075 2075 }; 2076 2076 }; 2077 - "@cspell/dict-public-licenses-1.0.3" = { 2077 + "@cspell/dict-public-licenses-1.0.4" = { 2078 2078 name = "_at_cspell_slash_dict-public-licenses"; 2079 2079 packageName = "@cspell/dict-public-licenses"; 2080 - version = "1.0.3"; 2080 + version = "1.0.4"; 2081 2081 src = fetchurl { 2082 - url = "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-1.0.3.tgz"; 2083 - sha512 = "sXjxOHJ9Q4rZvE1UbwpwJQ8EXO3fadKBjJIWmz0z+dZAbvTrmz5Ln1Ef9ruJvLPfwAps8m3TCV6Diz60RAQqHg=="; 2082 + url = "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-1.0.4.tgz"; 2083 + sha512 = "h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA=="; 2084 2084 }; 2085 2085 }; 2086 - "@cspell/dict-python-2.0.4" = { 2086 + "@cspell/dict-python-2.0.5" = { 2087 2087 name = "_at_cspell_slash_dict-python"; 2088 2088 packageName = "@cspell/dict-python"; 2089 - version = "2.0.4"; 2089 + version = "2.0.5"; 2090 2090 src = fetchurl { 2091 - url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-2.0.4.tgz"; 2092 - sha512 = "71X/VnyFPm6OPEkqmoVXCJz28RvBgktxy6zF6D5TLt97LbWg2JyRrWSXaf2+seVoLnJQ5CHACxcs+jyEyLhBJA=="; 2091 + url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-2.0.5.tgz"; 2092 + sha512 = "WkyGYtNmUsOHsWixck7AxNvveDgVPqw0H51hzIY+/5u3c94wZUweIj0vfFOGIfOBq8e1ZxpjumKBxVDGXTmQkw=="; 2093 2093 }; 2094 2094 }; 2095 - "@cspell/dict-ruby-1.0.14" = { 2095 + "@cspell/dict-ruby-1.0.15" = { 2096 2096 name = "_at_cspell_slash_dict-ruby"; 2097 2097 packageName = "@cspell/dict-ruby"; 2098 - version = "1.0.14"; 2098 + version = "1.0.15"; 2099 2099 src = fetchurl { 2100 - url = "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-1.0.14.tgz"; 2101 - sha512 = "XHBGN4U1y9rjRuqrCA+3yIm2TCdhwwHXpOEcWkNeyXm8K03yPnIrKFS+kap8GTTrLpfNDuFsrmkkQTa7ssXLRA=="; 2100 + url = "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-1.0.15.tgz"; 2101 + sha512 = "I76hJA///lc1pgmDTGUFHN/O8KLIZIU/8TgIYIGI6Ix/YzSEvWNdQYbANn6JbCynS0X+7IbZ2Ft+QqvmGtIWuA=="; 2102 2102 }; 2103 2103 }; 2104 2104 "@cspell/dict-rust-1.0.23" = { ··· 2119 2119 sha512 = "5V/R7PRbbminTpPS3ywgdAalI9BHzcEjEj9ug4kWYvBIGwSnS7T6QCFCiu+e9LvEGUqQC+NHgLY4zs1NaBj2vA=="; 2120 2120 }; 2121 2121 }; 2122 - "@cspell/dict-software-terms-2.0.9" = { 2122 + "@cspell/dict-software-terms-2.0.10" = { 2123 2123 name = "_at_cspell_slash_dict-software-terms"; 2124 2124 packageName = "@cspell/dict-software-terms"; 2125 - version = "2.0.9"; 2125 + version = "2.0.10"; 2126 2126 src = fetchurl { 2127 - url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-2.0.9.tgz"; 2128 - sha512 = "LhUmmJYD5Kzj04UgqPW7EvJ4eEVKkrPl4ki29ClwUg/uQNZh5JwcsxEMqh5+PHD7GggDqKPYcYZanytDELTZpg=="; 2127 + url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-2.0.10.tgz"; 2128 + sha512 = "/dosIEA8me3GcowzMxRE/H3rkEJ2cU8NgX6vlTf3hvdaqND3GAYZrzadlZQV1N3uCuroDq2YdoSr0uNVedmU9Q=="; 2129 2129 }; 2130 2130 }; 2131 2131 "@cspell/dict-swift-1.0.1" = { ··· 3100 3100 sha512 = "cdMaPZ8AiFz6ua6PUbP+LKbhwJbFXnrQ/mlnKGUyzDUZ3wp7vPLksnmLCBX6SHgSmjX7CbNVNLFYD5GmmjO4GQ=="; 3101 3101 }; 3102 3102 }; 3103 + "@grpc/proto-loader-0.6.7" = { 3104 + name = "_at_grpc_slash_proto-loader"; 3105 + packageName = "@grpc/proto-loader"; 3106 + version = "0.6.7"; 3107 + src = fetchurl { 3108 + url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.7.tgz"; 3109 + sha512 = "QzTPIyJxU0u+r2qGe8VMl3j/W2ryhEvBv7hc42OjYfthSj370fUrb7na65rG6w3YLZS/fb8p89iTBobfWGDgdw=="; 3110 + }; 3111 + }; 3103 3112 "@gulp-sourcemaps/identity-map-1.0.2" = { 3104 3113 name = "_at_gulp-sourcemaps_slash_identity-map"; 3105 3114 packageName = "@gulp-sourcemaps/identity-map"; ··· 3568 3577 sha512 = "s0jhnq/1X1IQQpKcAoUAd3KZ6X58nEjIi+vL4aC0iyDW6v2pmt8J5G/ilUZSbvplyJ2GdTMYi7NOCz2f3QAGZA=="; 3569 3578 }; 3570 3579 }; 3571 - "@jsii/check-node-1.44.0" = { 3580 + "@jsii/check-node-1.44.1" = { 3572 3581 name = "_at_jsii_slash_check-node"; 3573 3582 packageName = "@jsii/check-node"; 3574 - version = "1.44.0"; 3583 + version = "1.44.1"; 3575 3584 src = fetchurl { 3576 - url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.44.0.tgz"; 3577 - sha512 = "f5yHUWdhPWav5Bf3O0BtT89LYg1YjLQib6LzroHXJOwCgQZdK9A+eZZ0bTmtWSEKd5UDhZmrN1JCXpZ7UzgpnA=="; 3585 + url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.44.1.tgz"; 3586 + sha512 = "VMwVQ3UJlbzLqPHaNCSn4YGFvInmlXPz85v7LEiXUyAkeiVybFZIk8MDw1+cX3AeqhxEAmnPWyyrkvPjyzhtLg=="; 3578 3587 }; 3579 3588 }; 3580 - "@jsii/spec-1.44.0" = { 3589 + "@jsii/spec-1.44.1" = { 3581 3590 name = "_at_jsii_slash_spec"; 3582 3591 packageName = "@jsii/spec"; 3583 - version = "1.44.0"; 3592 + version = "1.44.1"; 3584 3593 src = fetchurl { 3585 - url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.44.0.tgz"; 3586 - sha512 = "q0hbiXrDqQ2FsM4RA/aKyB8Zy8oi7ukDBJt/kEMO8rN9RC5uQ5uxFoR6UTS3d3raQpyzXpAkfs7UQldvi65B3w=="; 3594 + url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.44.1.tgz"; 3595 + sha512 = "DyV/0mXsspMmqg0uUE39hGiNk2Jhm25fCa7bQwXQ5cowR4qBWXrPJgpvweFav1qvdBA4pI2zVWlO+0jEuM87ug=="; 3587 3596 }; 3588 3597 }; 3589 3598 "@kwsites/file-exists-1.1.1" = { ··· 4252 4261 sha512 = "/PT1P6DNf7vjEEiPkVIRJkvibbqWtqnyGaBz3nfRdcxclNSnSdaLU5tfAgcD7I8Yt5i+L19s406YLl1koLnLbg=="; 4253 4262 }; 4254 4263 }; 4255 - "@mapbox/node-pre-gyp-1.0.6" = { 4264 + "@mapbox/node-pre-gyp-1.0.7" = { 4256 4265 name = "_at_mapbox_slash_node-pre-gyp"; 4257 4266 packageName = "@mapbox/node-pre-gyp"; 4258 - version = "1.0.6"; 4267 + version = "1.0.7"; 4259 4268 src = fetchurl { 4260 - url = "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.6.tgz"; 4261 - sha512 = "qK1ECws8UxuPqOA8F5LFD90vyVU33W7N3hGfgsOVfrJaRVc8McC3JClTDHpeSbL9CBrOHly/4GsNPAvIgNZE+g=="; 4269 + url = "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.7.tgz"; 4270 + sha512 = "PplSvl4pJ5N3BkVjAdDzpPhVUPdC73JgttkR+LnBx2OORC1GCQsBjUeEuipf9uOaAM1SbxcdZFfR3KDTKm2S0A=="; 4262 4271 }; 4263 4272 }; 4264 4273 "@mapbox/point-geometry-0.1.0" = { ··· 4549 4558 sha512 = "ApwiSL2c9ObewdOE/sqt788P1C5lomBOHyO8nUBCr4ofErBCnYQ003NtJ8lS9OQZc11ximkbmgAZJjB8y6cCdA=="; 4550 4559 }; 4551 4560 }; 4552 - "@nestjs/schematics-8.0.4" = { 4561 + "@nestjs/schematics-8.0.5" = { 4553 4562 name = "_at_nestjs_slash_schematics"; 4554 4563 packageName = "@nestjs/schematics"; 4555 - version = "8.0.4"; 4564 + version = "8.0.5"; 4556 4565 src = fetchurl { 4557 - url = "https://registry.npmjs.org/@nestjs/schematics/-/schematics-8.0.4.tgz"; 4558 - sha512 = "uEmEfuNuIgsNr4m0wEkXIIG6usegehnpwhtOoxXWwvKO0CFO3POAx4pOazPgC4ky6pJ0XROhE/8O55JtmEw0UQ=="; 4566 + url = "https://registry.npmjs.org/@nestjs/schematics/-/schematics-8.0.5.tgz"; 4567 + sha512 = "nK1hWQeLNbdhsiJDX/XJXLqq7nC6/xxC8CN+seFTQmly+H3gG2xaFnl6JPHURumuQaYJX8JEpC8m0+4tz+wvOg=="; 4559 4568 }; 4560 4569 }; 4561 4570 "@netflix/nerror-1.1.3" = { ··· 5476 5485 sha512 = "I/gRlM2meKPKXFN/1fxLoigPXvAUsivxRCih7vgeO7o4qrNNsl6Ah85l3UBbFi0t7ttjMde2+bS1A32a1Hu0BA=="; 5477 5486 }; 5478 5487 }; 5479 - "@prisma/engines-3.4.1-2.57771c0558568c7d08bd34c7248af5244ae16bd9" = { 5488 + "@prisma/engines-3.5.0-38.78a5df6def6943431f4c022e1428dbc3e833cf8e" = { 5480 5489 name = "_at_prisma_slash_engines"; 5481 5490 packageName = "@prisma/engines"; 5482 - version = "3.4.1-2.57771c0558568c7d08bd34c7248af5244ae16bd9"; 5491 + version = "3.5.0-38.78a5df6def6943431f4c022e1428dbc3e833cf8e"; 5483 5492 src = fetchurl { 5484 - url = "https://registry.npmjs.org/@prisma/engines/-/engines-3.4.1-2.57771c0558568c7d08bd34c7248af5244ae16bd9.tgz"; 5485 - sha512 = "NO4Q88k3CfUpYzfpDD+0wSVCqhaeljCFAGSe1XyvmXAOlMU2AAjCwmRn6S4UXlT9yEGB/LwFjdvGjcgfUQ+Mtw=="; 5493 + url = "https://registry.npmjs.org/@prisma/engines/-/engines-3.5.0-38.78a5df6def6943431f4c022e1428dbc3e833cf8e.tgz"; 5494 + sha512 = "MqZUrxuLlIbjB3wu8LrRJOKcvR4k3dunKoI4Q2bPfAwLQY0XlpsLZ3TRVW1c32ooVk939p6iGNkaCUo63Et36g=="; 5486 5495 }; 5487 5496 }; 5488 5497 "@protobufjs/aspromise-1.1.2" = { ··· 5638 5647 sha512 = "y9qNj0//tZtWB2jfXNK3BX18BSBp9zNR7KE7lMysVHwbZtY392OJCjm6Rb/h4UHH2r1AqjNEHFD6bRn+DqU9Mw=="; 5639 5648 }; 5640 5649 }; 5641 - "@redocly/openapi-core-1.0.0-beta.68" = { 5650 + "@redocly/openapi-core-1.0.0-beta.69" = { 5642 5651 name = "_at_redocly_slash_openapi-core"; 5643 5652 packageName = "@redocly/openapi-core"; 5644 - version = "1.0.0-beta.68"; 5653 + version = "1.0.0-beta.69"; 5645 5654 src = fetchurl { 5646 - url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.68.tgz"; 5647 - sha512 = "ocvDC13Fr8USbBlBUgl8wQlRFBCNEqz6gVTNlQ8IFOglCKxmOeu4JqnFENNGow3ycKTl35c891clfCw1vPyPcQ=="; 5655 + url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.69.tgz"; 5656 + sha512 = "A05sPH8U26qQdZgkOQfHrL8dwY3twJ51/PY43WUuRqMdeZEu3SRcIdgLyXaIgR82ZnHC2Y/MnexE5QKtKObYJA=="; 5648 5657 }; 5649 5658 }; 5650 5659 "@redocly/react-dropdown-aria-2.0.12" = { ··· 6473 6482 src = fetchurl { 6474 6483 url = "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.1.tgz"; 6475 6484 sha512 = "a6bTJ21vFOGIkwM0kzh9Yr89ziVxq4vYH2fQ6N8AeipEzai/cFK6aGMArIkUeIdRIgpwQa+2bXiLuUJCpSf2Cg=="; 6485 + }; 6486 + }; 6487 + "@types/body-parser-1.19.2" = { 6488 + name = "_at_types_slash_body-parser"; 6489 + packageName = "@types/body-parser"; 6490 + version = "1.19.2"; 6491 + src = fetchurl { 6492 + url = "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz"; 6493 + sha512 = "ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g=="; 6476 6494 }; 6477 6495 }; 6478 6496 "@types/cacheable-request-6.0.2" = { ··· 9652 9670 sha512 = "SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw=="; 9653 9671 }; 9654 9672 }; 9655 - "ajv-8.8.0" = { 9673 + "ajv-8.8.1" = { 9656 9674 name = "ajv"; 9657 9675 packageName = "ajv"; 9658 - version = "8.8.0"; 9676 + version = "8.8.1"; 9659 9677 src = fetchurl { 9660 - url = "https://registry.npmjs.org/ajv/-/ajv-8.8.0.tgz"; 9661 - sha512 = "L+cJ/+pkdICMueKR6wIx3VP2fjIx3yAhuvadUv/osv9yFD7OVZy442xFF+Oeu3ZvmhBGQzoF6mTSt+LUWBmGQg=="; 9678 + url = "https://registry.npmjs.org/ajv/-/ajv-8.8.1.tgz"; 9679 + sha512 = "6CiMNDrzv0ZR916u2T+iRunnD60uWmNn8SkdB44/6stVORUg0aAkWO7PkOhpCmjmW8f2I/G/xnowD66fxGyQJg=="; 9662 9680 }; 9663 9681 }; 9664 9682 "ajv-errors-1.0.1" = { ··· 11875 11893 sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3"; 11876 11894 }; 11877 11895 }; 11878 - "aws-sdk-2.1029.0" = { 11896 + "aws-sdk-2.1030.0" = { 11879 11897 name = "aws-sdk"; 11880 11898 packageName = "aws-sdk"; 11881 - version = "2.1029.0"; 11899 + version = "2.1030.0"; 11882 11900 src = fetchurl { 11883 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1029.0.tgz"; 11884 - sha512 = "nCmaMPkJr3EATXaeqR3JeNC0GTDH2lJZ3Xq/ZCAW+yrfaPQWv8HqJJHBCNGtmk3FmcCoxc7ed/gEB8XSl0tocA=="; 11901 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1030.0.tgz"; 11902 + sha512 = "to0STOb8DsSGuSsUb/WCbg/UFnMGfIYavnJH5ZlRCHzvCFjTyR+vfE8ku+qIZvfFM4+5MNTQC/Oxfun2X/TuyA=="; 11885 11903 }; 11886 11904 }; 11887 11905 "aws-sdk-2.920.0" = { ··· 12262 12280 sha1 = "1bc6f15b87f7ab1085d42b330b717657a2156500"; 12263 12281 }; 12264 12282 }; 12265 - "babel-plugin-polyfill-corejs2-0.2.3" = { 12283 + "babel-plugin-polyfill-corejs2-0.3.0" = { 12266 12284 name = "babel-plugin-polyfill-corejs2"; 12267 12285 packageName = "babel-plugin-polyfill-corejs2"; 12268 - version = "0.2.3"; 12286 + version = "0.3.0"; 12269 12287 src = fetchurl { 12270 - url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.3.tgz"; 12271 - sha512 = "NDZ0auNRzmAfE1oDDPW2JhzIMXUk+FFe2ICejmt5T4ocKgiQx3e0VCRx9NCAidcMtL2RUZaWtXnmjTCkx0tcbA=="; 12288 + url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.0.tgz"; 12289 + sha512 = "wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA=="; 12272 12290 }; 12273 12291 }; 12274 - "babel-plugin-polyfill-corejs3-0.3.0" = { 12292 + "babel-plugin-polyfill-corejs3-0.4.0" = { 12275 12293 name = "babel-plugin-polyfill-corejs3"; 12276 12294 packageName = "babel-plugin-polyfill-corejs3"; 12277 - version = "0.3.0"; 12295 + version = "0.4.0"; 12278 12296 src = fetchurl { 12279 - url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.3.0.tgz"; 12280 - sha512 = "JLwi9vloVdXLjzACL80j24bG6/T1gYxwowG44dg6HN/7aTPdyPbJJidf6ajoA3RPHHtW0j9KMrSOLpIZpAnPpg=="; 12297 + url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.4.0.tgz"; 12298 + sha512 = "YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw=="; 12281 12299 }; 12282 12300 }; 12283 - "babel-plugin-polyfill-regenerator-0.2.3" = { 12301 + "babel-plugin-polyfill-regenerator-0.3.0" = { 12284 12302 name = "babel-plugin-polyfill-regenerator"; 12285 12303 packageName = "babel-plugin-polyfill-regenerator"; 12286 - version = "0.2.3"; 12304 + version = "0.3.0"; 12287 12305 src = fetchurl { 12288 - url = "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.3.tgz"; 12289 - sha512 = "JVE78oRZPKFIeUqFGrSORNzQnrDwZR16oiWeGM8ZyjBn2XAT5OjP+wXx5ESuo33nUsFUEJYjtklnsKbxW5L+7g=="; 12306 + url = "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.0.tgz"; 12307 + sha512 = "dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg=="; 12290 12308 }; 12291 12309 }; 12292 12310 "babel-plugin-styled-components-1.13.3" = { ··· 13360 13378 sha512 = "O1htyufFTYy3EO0JkHg2CLykdXEtV2ssqw47Gq9A0WByp662xpJnMEB9m43LZjsSDjIAOozWRExlFQk2hlV1XQ=="; 13361 13379 }; 13362 13380 }; 13363 - "bipf-1.5.1" = { 13381 + "bipf-1.5.2" = { 13364 13382 name = "bipf"; 13365 13383 packageName = "bipf"; 13366 - version = "1.5.1"; 13384 + version = "1.5.2"; 13367 13385 src = fetchurl { 13368 - url = "https://registry.npmjs.org/bipf/-/bipf-1.5.1.tgz"; 13369 - sha512 = "SrLwMzrpETJDiH9z12EMcqtApgcQo9XsPi+S9Aodezu53ALcGjBBQ7+C+IWbsSCBlSvNEec8sqfh3itO/j/QUw=="; 13386 + url = "https://registry.npmjs.org/bipf/-/bipf-1.5.2.tgz"; 13387 + sha512 = "SbFwhfGEhrH/sZMpMVRxurqCk662DXDqBG2P7/wS0eO72viI1f2SHd66IPDVW1eDqQ+F7nBPsDmQ/dlgC5Pvlw=="; 13370 13388 }; 13371 13389 }; 13372 13390 "bit-field-1.5.3" = { ··· 15674 15692 sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; 15675 15693 }; 15676 15694 }; 15677 - "cdk8s-1.1.35" = { 15695 + "cdk8s-1.1.36" = { 15678 15696 name = "cdk8s"; 15679 15697 packageName = "cdk8s"; 15680 - version = "1.1.35"; 15698 + version = "1.1.36"; 15681 15699 src = fetchurl { 15682 - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.1.35.tgz"; 15683 - sha512 = "6hhAP+XivkMFKiqenOuBX+7D+5Ae6s+X8KF0TEoiwrrRFa1Wt5LvM7JGsJT7F7+jMNF+UAF53kxpffNZMCpOJA=="; 15700 + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.1.36.tgz"; 15701 + sha512 = "LpjVRmypar0PCBxhbTOZ/nnWiI4L7pxSsQJ8k06uSjnVkcGVZLcPxF9kxoKCClp0/6+9MsEYdB6+GZ3h24JKZw=="; 15684 15702 }; 15685 15703 }; 15686 - "cdk8s-plus-22-1.0.0-beta.42" = { 15704 + "cdk8s-plus-22-1.0.0-beta.43" = { 15687 15705 name = "cdk8s-plus-22"; 15688 15706 packageName = "cdk8s-plus-22"; 15689 - version = "1.0.0-beta.42"; 15707 + version = "1.0.0-beta.43"; 15690 15708 src = fetchurl { 15691 - url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.42.tgz"; 15692 - sha512 = "aC9H+ulFxXIafMhIj5w5KxTY3Fknjxztc2/uEPWZqB9K+aUozhfTTeVcBsmFuOw3p6LvI6Xbs6cJuJ2h7zCiDQ=="; 15709 + url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.43.tgz"; 15710 + sha512 = "AADIPGiIyUKHFyEiOY7kFlMVqcyrkx9oXS1X7R/uAGHnHW0pQC5lcUCrNJxmTcfvDn4p0OckeQMoTZ7eM0VT4g=="; 15693 15711 }; 15694 15712 }; 15695 15713 "cdktf-0.7.0" = { ··· 17321 17339 sha512 = "3WQV/Fpa77nvzjUlc+0u53uIroJyyMB2Qwl++aXpAiDIsrsiAQq4uCURwdRBRX+eLkOTIAmT0L4qna3T7+2pUg=="; 17322 17340 }; 17323 17341 }; 17324 - "codemaker-1.44.0" = { 17342 + "codemaker-1.44.1" = { 17325 17343 name = "codemaker"; 17326 17344 packageName = "codemaker"; 17327 - version = "1.44.0"; 17345 + version = "1.44.1"; 17328 17346 src = fetchurl { 17329 - url = "https://registry.npmjs.org/codemaker/-/codemaker-1.44.0.tgz"; 17330 - sha512 = "GrUjFBFDbMyykrmL9aGf7Viv2I+wAH9mnkW/5qCHsZw51LuZKAidBHp5nS3oT1mdkcIorjqUJjRSJ3LzslgFEQ=="; 17347 + url = "https://registry.npmjs.org/codemaker/-/codemaker-1.44.1.tgz"; 17348 + sha512 = "HB5V5qv80ET5l4Bx2tX0mcKJp4vt4AQWOfrTB0ChEQLzbQtwi6MqLonkMAVCJy0ZcBpTJJBkY5h13gKIYoubmg=="; 17331 17349 }; 17332 17350 }; 17333 17351 "codepage-1.4.0" = { ··· 17897 17915 sha512 = "6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw=="; 17898 17916 }; 17899 17917 }; 17900 - "common-tags-1.8.1" = { 17918 + "common-tags-1.8.2" = { 17901 17919 name = "common-tags"; 17902 17920 packageName = "common-tags"; 17903 - version = "1.8.1"; 17921 + version = "1.8.2"; 17904 17922 src = fetchurl { 17905 - url = "https://registry.npmjs.org/common-tags/-/common-tags-1.8.1.tgz"; 17906 - sha512 = "uOZd85rJqrdEIE/JjhW5YAeatX8iqjjvVzIyfx7JL7G5r9Tep6YpYT9gEJWhWpVyDQEyzukWd6p2qULpJ8tmBw=="; 17923 + url = "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz"; 17924 + sha512 = "gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA=="; 17907 17925 }; 17908 17926 }; 17909 17927 "commondir-1.0.1" = { ··· 18798 18816 sha512 = "f13bPUj/gG/5mDr+xLmSxxDsB9DQiTIfhJS/sqjrmfAWiAN+x2O4i/XguTL9yDZ+/IFDanJ+5x7hC4CXT9Tdzw=="; 18799 18817 }; 18800 18818 }; 18819 + "cookie-parser-1.4.6" = { 18820 + name = "cookie-parser"; 18821 + packageName = "cookie-parser"; 18822 + version = "1.4.6"; 18823 + src = fetchurl { 18824 + url = "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.6.tgz"; 18825 + sha512 = "z3IzaNjdwUC2olLIB5/ITd0/setiaFMLYiZJle7xg5Fe9KWAceil7xszYfHHBtDFYLSgJduS2Ty0P1uJdPDJeA=="; 18826 + }; 18827 + }; 18801 18828 "cookie-session-2.0.0-rc.1" = { 18802 18829 name = "cookie-session"; 18803 18830 packageName = "cookie-session"; ··· 19230 19257 sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6"; 19231 19258 }; 19232 19259 }; 19233 - "create-gatsby-2.1.1" = { 19260 + "create-gatsby-2.2.0" = { 19234 19261 name = "create-gatsby"; 19235 19262 packageName = "create-gatsby"; 19236 - version = "2.1.1"; 19263 + version = "2.2.0"; 19237 19264 src = fetchurl { 19238 - url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.1.1.tgz"; 19239 - sha512 = "TyTrJD5Wa2WTa5PVY3ng1aIo7vqyR3rmQJuGRNPNeRZIfrYBrMGILWIh8TV+pofTKiZsRhPPMmHlpDD62tqPcw=="; 19265 + url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.2.0.tgz"; 19266 + sha512 = "nQ3t2+qpSnepqxFeBrkL6os5TR2TN4Nc1cCX/3YCWzbMQ7etc54Yjsw/PRFBUFtbt9RJk/7CURtJKFHDNsHtZw=="; 19240 19267 }; 19241 19268 }; 19242 19269 "create-graphback-1.0.1" = { ··· 23586 23613 sha512 = "9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw=="; 23587 23614 }; 23588 23615 }; 23589 - "electron-13.6.1" = { 23616 + "electron-13.6.2" = { 23590 23617 name = "electron"; 23591 23618 packageName = "electron"; 23592 - version = "13.6.1"; 23619 + version = "13.6.2"; 23593 23620 src = fetchurl { 23594 - url = "https://registry.npmjs.org/electron/-/electron-13.6.1.tgz"; 23595 - sha512 = "rZ6Y7RberigruefQpWOiI4bA9ppyT88GQF8htY6N1MrAgal5RrBc+Mh92CcGU7zT9QO+XO3DarSgZafNTepffQ=="; 23621 + url = "https://registry.npmjs.org/electron/-/electron-13.6.2.tgz"; 23622 + sha512 = "ZXx9t68yXftvNZVnQ7v2XHcnH+MPUF6LNStoz4MMXuWpkF9gq3qwjcYSqnbM4wiVkvWVHIyYvt1yemmStza9dQ=="; 23596 23623 }; 23597 23624 }; 23598 23625 "electron-notarize-1.1.1" = { ··· 23631 23658 sha512 = "U9dKi10V9w/BdIVB8a8dTKYLK3Q1d2WZ+Yo5qfM3XX/O4jI7KpnwgvWgGoVv0jTWPC2NlebF00ffWS/8NfUAtA=="; 23632 23659 }; 23633 23660 }; 23634 - "electron-to-chromium-1.3.899" = { 23661 + "electron-to-chromium-1.3.900" = { 23635 23662 name = "electron-to-chromium"; 23636 23663 packageName = "electron-to-chromium"; 23637 - version = "1.3.899"; 23664 + version = "1.3.900"; 23638 23665 src = fetchurl { 23639 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.899.tgz"; 23640 - sha512 = "w16Dtd2zl7VZ4N4Db+FIa7n36sgPGCKjrKvUUmp5ialsikvcQLjcJR9RWnlYNxIyEHLdHaoIZEqKsPxU9MdyBg=="; 23666 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.900.tgz"; 23667 + sha512 = "SuXbQD8D4EjsaBaJJxySHbC+zq8JrFfxtb4GIr4E9n1BcROyMcRrJCYQNpJ9N+Wjf5mFp7Wp0OHykd14JNEzzQ=="; 23641 23668 }; 23642 23669 }; 23643 23670 "electrum-client-git://github.com/janoside/electrum-client" = { ··· 28241 28268 sha1 = "cbed2d20a40c1f5679a35908e2b9415733e78db9"; 28242 28269 }; 28243 28270 }; 28244 - "gatsby-core-utils-3.1.3" = { 28271 + "gatsby-core-utils-3.2.0" = { 28245 28272 name = "gatsby-core-utils"; 28246 28273 packageName = "gatsby-core-utils"; 28247 - version = "3.1.3"; 28274 + version = "3.2.0"; 28248 28275 src = fetchurl { 28249 - url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.1.3.tgz"; 28250 - sha512 = "+pg2i3DYVLzmJ/67SVGM+zVxerilGCbcgVxDoN58Y+Htv5TwogUWzPymfoFrJEsWGhlVKlYq7I8jVWSXPzwMHw=="; 28276 + url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.2.0.tgz"; 28277 + sha512 = "gPz02QD1kOGQmu49TZL8Fdo9rX8QBsA7XID0oXyIkZqkK80Tm1Uq1pOOfPE3cWSMEkzc71M79iKISCntk/wNuw=="; 28251 28278 }; 28252 28279 }; 28253 - "gatsby-recipes-1.1.3" = { 28280 + "gatsby-recipes-1.2.0" = { 28254 28281 name = "gatsby-recipes"; 28255 28282 packageName = "gatsby-recipes"; 28256 - version = "1.1.3"; 28283 + version = "1.2.0"; 28257 28284 src = fetchurl { 28258 - url = "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-1.1.3.tgz"; 28259 - sha512 = "AdO9Y7vtpa0VSWXe3gZIeIUDJ6/j/MeAkpkuJHbbU8hix9gtbVPoOcmF8VFJUMALNRzhhFsgqRN2mK6jXJlang=="; 28285 + url = "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-1.2.0.tgz"; 28286 + sha512 = "v76Kt1EYBHwf5c9Ic8b0w/eEaDaRh3B/6spAVU6zN+VzEvQX3Oi/VckUyS2/anBOuSnOl3PJVWhFA3/aZpGuxw=="; 28260 28287 }; 28261 28288 }; 28262 - "gatsby-telemetry-3.1.3" = { 28289 + "gatsby-telemetry-3.2.0" = { 28263 28290 name = "gatsby-telemetry"; 28264 28291 packageName = "gatsby-telemetry"; 28265 - version = "3.1.3"; 28292 + version = "3.2.0"; 28266 28293 src = fetchurl { 28267 - url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.1.3.tgz"; 28268 - sha512 = "vZSj67F4vzoqqK5CyNIRTDTWOqhBYkMey+i6swY3H51tehGTHRyzzOhJorQOJa76cQOcOMXr1/vvxX1T84Y96g=="; 28294 + url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.2.0.tgz"; 28295 + sha512 = "nLs/PPTPn7xPOiJxRe1Lmd8C0EVaH4rPT3KRT36ftaJBVDT5XhKfhR/tW9zirADD1k6pYW6vYvAQNFfKG5dpDg=="; 28269 28296 }; 28270 28297 }; 28271 28298 "gauge-1.2.7" = { ··· 28293 28320 src = fetchurl { 28294 28321 url = "https://registry.npmjs.org/gauge/-/gauge-3.0.1.tgz"; 28295 28322 sha512 = "6STz6KdQgxO4S/ko+AbjlFGGdGcknluoqU+79GOFCDqqyYj5OanQf9AjxwN0jCidtT+ziPMmPSt9E4hfQ0CwIQ=="; 28323 + }; 28324 + }; 28325 + "gauge-4.0.0" = { 28326 + name = "gauge"; 28327 + packageName = "gauge"; 28328 + version = "4.0.0"; 28329 + src = fetchurl { 28330 + url = "https://registry.npmjs.org/gauge/-/gauge-4.0.0.tgz"; 28331 + sha512 = "F8sU45yQpjQjxKkm1UOAhf0U/O0aFt//Fl7hsrNVto+patMHjs7dPI9mFOGUKbhrgKm0S3EjW3scMFuQmWSROw=="; 28296 28332 }; 28297 28333 }; 28298 28334 "gaxios-2.3.4" = { ··· 31715 31751 src = fetchurl { 31716 31752 url = "https://registry.npmjs.org/humanize-string/-/humanize-string-1.0.2.tgz"; 31717 31753 sha512 = "PH5GBkXqFxw5+4eKaKRIkD23y6vRd/IXSl7IldyJxEXpDH9SEIXRORkBtkGni/ae2P7RVOw6Wxypd2tGXhha1w=="; 31754 + }; 31755 + }; 31756 + "humps-2.0.1" = { 31757 + name = "humps"; 31758 + packageName = "humps"; 31759 + version = "2.0.1"; 31760 + src = fetchurl { 31761 + url = "https://registry.npmjs.org/humps/-/humps-2.0.1.tgz"; 31762 + sha1 = "dd02ea6081bd0568dc5d073184463957ba9ef9aa"; 31718 31763 }; 31719 31764 }; 31720 31765 "hyperbeam-1.1.3" = { ··· 35687 35732 sha512 = "M+opnlcNb1Ne5igms/OJn/e2ZyQgcCwmqqljuOsHXBMFm7vMOVLSjEUcBYcW7ifJeM1+XYg8+wfuAoZhqY1zCg=="; 35688 35733 }; 35689 35734 }; 35690 - "jsii-1.44.0" = { 35735 + "jsii-1.44.1" = { 35691 35736 name = "jsii"; 35692 35737 packageName = "jsii"; 35693 - version = "1.44.0"; 35738 + version = "1.44.1"; 35694 35739 src = fetchurl { 35695 - url = "https://registry.npmjs.org/jsii/-/jsii-1.44.0.tgz"; 35696 - sha512 = "6CRoO+swOmTyvuYbMzZJ89pCn3cbCLUUo8qLN9JLZhT5Pc8uJgCdCn67rK9Vu5LRgwI7thOKP2ij9TG+8Ejyng=="; 35740 + url = "https://registry.npmjs.org/jsii/-/jsii-1.44.1.tgz"; 35741 + sha512 = "KlMGUJoI6C8vy4MTuO7HkReyshSvvnDzB3oU+HqdGHj5/R+AmdCneGwRILSgCadUCMnyb+37ZPx/7SgUOjis9w=="; 35697 35742 }; 35698 35743 }; 35699 35744 "jsii-pacmak-1.37.0" = { ··· 35705 35750 sha512 = "cXLXAOyCqd/QNBy+OfcmMgj8UdNVbJJsKoM/C3SvRgdi+fpQlxh1iDTOcKUwd3/QgMuDMDLvKCCpLmq/YRjreA=="; 35706 35751 }; 35707 35752 }; 35708 - "jsii-pacmak-1.44.0" = { 35753 + "jsii-pacmak-1.44.1" = { 35709 35754 name = "jsii-pacmak"; 35710 35755 packageName = "jsii-pacmak"; 35711 - version = "1.44.0"; 35756 + version = "1.44.1"; 35712 35757 src = fetchurl { 35713 - url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.44.0.tgz"; 35714 - sha512 = "m6x3xQM20vi0jIXCpW4lIOYK4dS8jdOIi4mQNQcreraoskYSsrv9d2G2THXGPojF5ozNjnPBNgsIXaH4XdkZKw=="; 35758 + url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.44.1.tgz"; 35759 + sha512 = "3n/LJ5SliVPJS0Ex8CIvputTm7Osye0EhOhqrIAc6zhx/g8Ds2a0IVVKoW/q2ZSzVhgXuNX36kPtCoWmKlukeA=="; 35715 35760 }; 35716 35761 }; 35717 - "jsii-reflect-1.44.0" = { 35762 + "jsii-reflect-1.44.1" = { 35718 35763 name = "jsii-reflect"; 35719 35764 packageName = "jsii-reflect"; 35720 - version = "1.44.0"; 35765 + version = "1.44.1"; 35721 35766 src = fetchurl { 35722 - url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.44.0.tgz"; 35723 - sha512 = "mgyCUYXqLbOxkNgiENDuRnDB0S0pIKZvqFZPW7fMBTOU8XxVPhZD3DhFGEIj6cPtbTUbz18Kc5qKk3l8mEkmfg=="; 35767 + url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.44.1.tgz"; 35768 + sha512 = "VBWV8BcOSi78dPVJcO+EAPNSlr0afjecrpD3D/nwnVSmuRWpcTS0JJzqWCX5fbWBVdyWJEAPMBGCblUmQjgi7w=="; 35724 35769 }; 35725 35770 }; 35726 - "jsii-rosetta-1.44.0" = { 35771 + "jsii-rosetta-1.44.1" = { 35727 35772 name = "jsii-rosetta"; 35728 35773 packageName = "jsii-rosetta"; 35729 - version = "1.44.0"; 35774 + version = "1.44.1"; 35730 35775 src = fetchurl { 35731 - url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.44.0.tgz"; 35732 - sha512 = "6loHTZdcNLYs4JNi2Uwe9xY9caFGpKC/OPtj5Je1+zLx/MyiJeAhd448T+Tg8SXRRIZ549ZZ6Xn4COYZQVU+AA=="; 35776 + url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.44.1.tgz"; 35777 + sha512 = "IUgsbPeOf9JFuIqhnHXRnFp3w0RdCTNlCvLIOMIA2fJYf4hBzVCPdZjmK/sPyiLBEZrrFzgVOK9KG295rtZ+JA=="; 35733 35778 }; 35734 35779 }; 35735 - "jsii-srcmak-0.1.400" = { 35780 + "jsii-srcmak-0.1.401" = { 35736 35781 name = "jsii-srcmak"; 35737 35782 packageName = "jsii-srcmak"; 35738 - version = "0.1.400"; 35783 + version = "0.1.401"; 35739 35784 src = fetchurl { 35740 - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.400.tgz"; 35741 - sha512 = "7FVK/c8VBb33mqUYDHJ5JnnW6xmGFyf7Z5LWf2yVAD1FXk3kj4BYpcnJ5K7eDHpY60PtNeivEzM8vJrrDqPIpQ=="; 35785 + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.401.tgz"; 35786 + sha512 = "fazX2Ry91rUV5fa6OGeq0fBGMCk1Y+ipXTQTq6YZ6GddAXLQ3Gt+5Jo5B1Rv427zV8ymb10fSKpJIRjLZtXvVg=="; 35742 35787 }; 35743 35788 }; 35744 35789 "json-bigint-1.0.0" = { ··· 36029 36074 sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A=="; 36030 36075 }; 36031 36076 }; 36032 - "json2jsii-0.2.53" = { 36077 + "json2jsii-0.2.54" = { 36033 36078 name = "json2jsii"; 36034 36079 packageName = "json2jsii"; 36035 - version = "0.2.53"; 36080 + version = "0.2.54"; 36036 36081 src = fetchurl { 36037 - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.53.tgz"; 36038 - sha512 = "mofX4sQEkIJWtFn6ZLZZwOpPd/T0KLgiVCN8jFgSxYiED36xp9CXkU+UV3lPRiUMGhDmo/brXRuQ8U7vRutgCg=="; 36082 + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.54.tgz"; 36083 + sha512 = "ZboprQFOxnPNsa62xt0ZbgAzCq2JJZoh1mU/gSgiB0Lx1PmScVp9/ByYo7lwU8OZ4r0DMSrGYdHnwV1PvOrbeg=="; 36039 36084 }; 36040 36085 }; 36041 36086 "json3-3.2.6" = { ··· 44807 44852 sha1 = "df7c3ed5a277c3f9d4b5d819b05311d10a200ae6"; 44808 44853 }; 44809 44854 }; 44855 + "npm-7.24.2" = { 44856 + name = "npm"; 44857 + packageName = "npm"; 44858 + version = "7.24.2"; 44859 + src = fetchurl { 44860 + url = "https://registry.npmjs.org/npm/-/npm-7.24.2.tgz"; 44861 + sha512 = "120p116CE8VMMZ+hk8IAb1inCPk4Dj3VZw29/n2g6UI77urJKVYb7FZUDW8hY+EBnfsjI/2yrobBgFyzo7YpVQ=="; 44862 + }; 44863 + }; 44810 44864 "npm-bundled-1.1.2" = { 44811 44865 name = "npm-bundled"; 44812 44866 packageName = "npm-bundled"; ··· 45066 45120 src = fetchurl { 45067 45121 url = "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz"; 45068 45122 sha512 = "AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw=="; 45123 + }; 45124 + }; 45125 + "npmlog-6.0.0" = { 45126 + name = "npmlog"; 45127 + packageName = "npmlog"; 45128 + version = "6.0.0"; 45129 + src = fetchurl { 45130 + url = "https://registry.npmjs.org/npmlog/-/npmlog-6.0.0.tgz"; 45131 + sha512 = "03ppFRGlsyUaQFbGC2C8QWJN/C/K7PsfyD9aQdhVKAQIH4sQBc8WASqFBP7O+Ut4d2oo5LoeoboB3cGdBZSp6Q=="; 45069 45132 }; 45070 45133 }; 45071 45134 "nprogress-0.2.0" = { ··· 45807 45870 sha512 = "kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="; 45808 45871 }; 45809 45872 }; 45873 + "only-0.0.2" = { 45874 + name = "only"; 45875 + packageName = "only"; 45876 + version = "0.0.2"; 45877 + src = fetchurl { 45878 + url = "https://registry.npmjs.org/only/-/only-0.0.2.tgz"; 45879 + sha1 = "2afde84d03e50b9a8edc444e30610a70295edfb4"; 45880 + }; 45881 + }; 45810 45882 "onml-2.1.0" = { 45811 45883 name = "onml"; 45812 45884 packageName = "onml"; ··· 45816 45888 sha512 = "fvaSZRzprpwLFge/mcwE0CItfniNisVNamDdMK1FQUjh4ArQZ8ZWSkDaJbZc3XaANKZHq0xIa8NJpZ2HSe3oXA=="; 45817 45889 }; 45818 45890 }; 45819 - "oo-ascii-tree-1.44.0" = { 45891 + "oo-ascii-tree-1.44.1" = { 45820 45892 name = "oo-ascii-tree"; 45821 45893 packageName = "oo-ascii-tree"; 45822 - version = "1.44.0"; 45894 + version = "1.44.1"; 45823 45895 src = fetchurl { 45824 - url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.44.0.tgz"; 45825 - sha512 = "31f6M3ID8HKIOOAlyQWlURL0koXyEgjF0U1fiu2BuV8TepwCUDUy6MnKHE/72H9cXAwnBXpJHf0dun4B8D3AlA=="; 45896 + url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.44.1.tgz"; 45897 + sha512 = "SUlqChjq2UkCeBwwf1CkBzVobv4ATbCa81VVf9+GbMrrG0T5NDOpeMvFrIWyofc49vTIpC3Akn24qDUB0cW2Og=="; 45826 45898 }; 45827 45899 }; 45828 45900 "opal-runtime-1.0.11" = { ··· 52450 52522 sha512 = "CdVAoFNNDn5uAgYOJ8J3ICSaFzaMOa95XnYcX+taj4jirJuRASiTyQSOGR+Z0K8ZkBGuj0A8ivyeRAWuxRCgQA=="; 52451 52523 }; 52452 52524 }; 52453 - "random-access-memory-3.1.3" = { 52525 + "random-access-memory-3.1.4" = { 52454 52526 name = "random-access-memory"; 52455 52527 packageName = "random-access-memory"; 52456 - version = "3.1.3"; 52528 + version = "3.1.4"; 52457 52529 src = fetchurl { 52458 - url = "https://registry.npmjs.org/random-access-memory/-/random-access-memory-3.1.3.tgz"; 52459 - sha512 = "PTNiZXth70psEIZpmCivnBWzRyAsVyU9wDOfcDn7HvSADP2q7IY5KeTFCJJ3N0+DU0OxhMbjWD5n9udiyu3qsg=="; 52530 + url = "https://registry.npmjs.org/random-access-memory/-/random-access-memory-3.1.4.tgz"; 52531 + sha512 = "rqgqd/8ec65gbpKaYHnDOW391OR39d+eXn8NI87G+f3sUKrtGib9jC+/5/9MBFBwwHAZIS8RLJ8yyB4etzbYTA=="; 52460 52532 }; 52461 52533 }; 52462 52534 "random-access-storage-1.3.0" = { ··· 52646 52718 src = fetchurl { 52647 52719 url = "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz"; 52648 52720 sha512 = "9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA=="; 52721 + }; 52722 + }; 52723 + "raw-body-2.4.2" = { 52724 + name = "raw-body"; 52725 + packageName = "raw-body"; 52726 + version = "2.4.2"; 52727 + src = fetchurl { 52728 + url = "https://registry.npmjs.org/raw-body/-/raw-body-2.4.2.tgz"; 52729 + sha512 = "RPMAFUJP19WIet/99ngh6Iv8fzAbqum4Li7AD6DtGaW2RpMB/11xDoalPiJMTbu6I3hkbMVkATvZrqb9EEqeeQ=="; 52649 52730 }; 52650 52731 }; 52651 52732 "raw-loader-3.1.0" = { ··· 53611 53692 sha512 = "pNqnf9q1hI5HHZRBkj3bAngGZW/JMCmexDlOxw4XagXY2o1327nHH54LoTjiPJ0gizoqPDRqWyX/00g0hD6w+A=="; 53612 53693 }; 53613 53694 }; 53614 - "redux-4.0.5" = { 53695 + "redux-4.1.2" = { 53615 53696 name = "redux"; 53616 53697 packageName = "redux"; 53617 - version = "4.0.5"; 53698 + version = "4.1.2"; 53618 53699 src = fetchurl { 53619 - url = "https://registry.npmjs.org/redux/-/redux-4.0.5.tgz"; 53620 - sha512 = "VSz1uMAH24DM6MF72vcojpYPtrTUu3ByVWfPL1nPfVRb5mZVTve5GnNCUV53QM/BZ66xfWrm0CTWoM+Xlz8V1w=="; 53700 + url = "https://registry.npmjs.org/redux/-/redux-4.1.2.tgz"; 53701 + sha512 = "SH8PglcebESbd/shgf6mii6EIoRM0zrQyjcuQ+ojmfxjTtE0z9Y8pa62iA/OJ58qjP6j27uyW4kUF4jl/jd6sw=="; 53621 53702 }; 53622 53703 }; 53623 53704 "reflect-metadata-0.1.13" = { ··· 58390 58471 sha512 = "WzZRUj1kUjrTIrUKpZLEzFZ1OLj5FwLlAFQs9kuZJzJi5DKdU7FsWc36SNmA8iDOtwBQyT8FkrriRM8vXLYz8g=="; 58391 58472 }; 58392 58473 }; 58393 - "socket.io-adapter-2.3.2" = { 58474 + "socket.io-adapter-2.3.3" = { 58394 58475 name = "socket.io-adapter"; 58395 58476 packageName = "socket.io-adapter"; 58396 - version = "2.3.2"; 58477 + version = "2.3.3"; 58397 58478 src = fetchurl { 58398 - url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.3.2.tgz"; 58399 - sha512 = "PBZpxUPYjmoogY0aoaTmo1643JelsaS1CiAwNjRVdrI0X9Seuc19Y2Wife8k88avW6haG8cznvwbubAZwH4Mtg=="; 58479 + url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.3.3.tgz"; 58480 + sha512 = "Qd/iwn3VskrpNO60BeRyCyr8ZWw9CPZyitW4AQwmRZ8zCiyDiL+znRnWX6tDHXnWn1sJrM1+b6Mn6wEDJJ4aYQ=="; 58400 58481 }; 58401 58482 }; 58402 58483 "socket.io-client-1.0.6" = { ··· 59758 59839 sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; 59759 59840 }; 59760 59841 }; 59761 - "sscaff-1.2.129" = { 59842 + "sscaff-1.2.130" = { 59762 59843 name = "sscaff"; 59763 59844 packageName = "sscaff"; 59764 - version = "1.2.129"; 59845 + version = "1.2.130"; 59765 59846 src = fetchurl { 59766 - url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.129.tgz"; 59767 - sha512 = "S9j7nQ83ETJv+NV9nV6Dr5gOAD/gnzMwlf9LLzDEPuwvDolXkIN9kFnzi+Sqxb0zoHxev7t+2342qbcsU0ORgg=="; 59847 + url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.130.tgz"; 59848 + sha512 = "wEjGj5n7bfN9VzufXm3xOqf2TqAbl3xJN5sEv64+ycT4BTR24Y9GygWzaKf3bbL48k+fNUhSg/7qgpbKyZevbg=="; 59768 59849 }; 59769 59850 }; 59770 59851 "ssh-config-1.1.6" = { ··· 72261 72342 }) 72262 72343 sources."queue-tick-1.0.0" 72263 72344 sources."random-access-file-2.2.0" 72264 - sources."random-access-memory-3.1.3" 72345 + sources."random-access-memory-3.1.4" 72265 72346 sources."random-access-storage-1.4.2" 72266 72347 sources."random-words-1.1.1" 72267 72348 sources."randombytes-2.1.0" ··· 72439 72520 sha512 = "7EpRhhrJqICbMGjLkdthQYLLGMXNCsrsq8/xxYX1cdRiNwoGb84yjL1WFBrnQtaM8rXShOvhf4lrM2W0K9m4lQ=="; 72440 72521 }; 72441 72522 dependencies = [ 72442 - sources."@babel/parser-7.16.3" 72523 + sources."@babel/parser-7.16.4" 72443 72524 sources."@medable/mdctl-api-1.0.62" 72444 72525 sources."@medable/mdctl-core-1.0.62" 72445 72526 sources."@medable/mdctl-core-schemas-1.0.62" ··· 73482 73563 sources."supports-color-5.5.0" 73483 73564 ]; 73484 73565 }) 73485 - sources."@nestjs/schematics-8.0.4" 73566 + (sources."@nestjs/schematics-8.0.5" // { 73567 + dependencies = [ 73568 + sources."@angular-devkit/core-13.0.2" 73569 + sources."@angular-devkit/schematics-13.0.2" 73570 + sources."ajv-8.6.3" 73571 + sources."ajv-formats-2.1.1" 73572 + ]; 73573 + }) 73486 73574 sources."@types/eslint-7.29.0" 73487 73575 sources."@types/eslint-scope-3.7.1" 73488 73576 sources."@types/estree-0.0.50" ··· 73547 73635 sources."cross-spawn-7.0.3" 73548 73636 sources."deepmerge-4.2.2" 73549 73637 sources."defaults-1.0.3" 73550 - sources."electron-to-chromium-1.3.899" 73638 + sources."electron-to-chromium-1.3.900" 73551 73639 sources."emoji-regex-8.0.0" 73552 73640 sources."end-of-stream-1.4.4" 73553 73641 (sources."enhanced-resolve-5.8.3" // { ··· 73861 73949 sources."@apollographql/graphql-playground-html-1.6.27" 73862 73950 sources."@apollographql/graphql-upload-8-fork-8.1.3" 73863 73951 sources."@babel/code-frame-7.16.0" 73864 - sources."@babel/compat-data-7.16.0" 73952 + sources."@babel/compat-data-7.16.4" 73865 73953 sources."@babel/core-7.16.0" 73866 73954 sources."@babel/generator-7.16.0" 73867 73955 sources."@babel/helper-annotate-as-pure-7.16.0" ··· 73869 73957 sources."@babel/helper-compilation-targets-7.16.3" 73870 73958 sources."@babel/helper-create-class-features-plugin-7.16.0" 73871 73959 sources."@babel/helper-create-regexp-features-plugin-7.16.0" 73872 - sources."@babel/helper-define-polyfill-provider-0.2.4" 73960 + sources."@babel/helper-define-polyfill-provider-0.3.0" 73873 73961 sources."@babel/helper-explode-assignable-expression-7.16.0" 73874 73962 sources."@babel/helper-function-name-7.16.0" 73875 73963 sources."@babel/helper-get-function-arity-7.16.0" ··· 73879 73967 sources."@babel/helper-module-transforms-7.16.0" 73880 73968 sources."@babel/helper-optimise-call-expression-7.16.0" 73881 73969 sources."@babel/helper-plugin-utils-7.14.5" 73882 - sources."@babel/helper-remap-async-to-generator-7.16.0" 73970 + sources."@babel/helper-remap-async-to-generator-7.16.4" 73883 73971 sources."@babel/helper-replace-supers-7.16.0" 73884 73972 sources."@babel/helper-simple-access-7.16.0" 73885 73973 sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0" ··· 73889 73977 sources."@babel/helper-wrap-function-7.16.0" 73890 73978 sources."@babel/helpers-7.16.3" 73891 73979 sources."@babel/highlight-7.16.0" 73892 - sources."@babel/parser-7.16.3" 73980 + sources."@babel/parser-7.16.4" 73893 73981 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2" 73894 73982 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0" 73895 - sources."@babel/plugin-proposal-async-generator-functions-7.16.0" 73983 + sources."@babel/plugin-proposal-async-generator-functions-7.16.4" 73896 73984 sources."@babel/plugin-proposal-class-properties-7.16.0" 73897 73985 sources."@babel/plugin-proposal-class-static-block-7.16.0" 73898 73986 sources."@babel/plugin-proposal-dynamic-import-7.16.0" ··· 73957 74045 sources."@babel/plugin-transform-typescript-7.16.1" 73958 74046 sources."@babel/plugin-transform-unicode-escapes-7.16.0" 73959 74047 sources."@babel/plugin-transform-unicode-regex-7.16.0" 73960 - sources."@babel/preset-env-7.16.0" 74048 + sources."@babel/preset-env-7.16.4" 73961 74049 sources."@babel/preset-flow-7.16.0" 73962 74050 sources."@babel/preset-modules-0.1.5" 73963 74051 sources."@babel/preset-typescript-7.16.0" ··· 74107 74195 sources."aws4-1.11.0" 74108 74196 sources."babel-core-7.0.0-bridge.0" 74109 74197 sources."babel-plugin-dynamic-import-node-2.3.3" 74110 - sources."babel-plugin-polyfill-corejs2-0.2.3" 74111 - sources."babel-plugin-polyfill-corejs3-0.3.0" 74112 - sources."babel-plugin-polyfill-regenerator-0.2.3" 74198 + sources."babel-plugin-polyfill-corejs2-0.3.0" 74199 + sources."babel-plugin-polyfill-corejs3-0.4.0" 74200 + sources."babel-plugin-polyfill-regenerator-0.3.0" 74113 74201 sources."backo2-1.0.2" 74114 74202 sources."balanced-match-1.0.2" 74115 74203 (sources."base-0.11.2" // { ··· 74290 74378 sources."ecc-jsbn-0.1.2" 74291 74379 sources."ee-first-1.1.1" 74292 74380 sources."ejs-2.7.4" 74293 - sources."electron-to-chromium-1.3.899" 74381 + sources."electron-to-chromium-1.3.900" 74294 74382 sources."emoji-regex-8.0.0" 74295 74383 sources."encodeurl-1.0.2" 74296 74384 sources."end-of-stream-1.4.4" ··· 75193 75281 sources."@babel/generator-7.16.0" 75194 75282 sources."@babel/helper-validator-identifier-7.15.7" 75195 75283 sources."@babel/highlight-7.16.0" 75196 - sources."@babel/parser-7.16.3" 75284 + sources."@babel/parser-7.16.4" 75197 75285 sources."@babel/template-7.16.0" 75198 75286 sources."@babel/types-7.16.0" 75199 75287 sources."@webassemblyjs/ast-1.11.1" ··· 75753 75841 }; 75754 75842 dependencies = [ 75755 75843 sources."@babel/code-frame-7.16.0" 75756 - sources."@babel/compat-data-7.16.0" 75844 + sources."@babel/compat-data-7.16.4" 75757 75845 (sources."@babel/core-7.16.0" // { 75758 75846 dependencies = [ 75759 75847 sources."source-map-0.5.7" ··· 75779 75867 sources."@babel/helper-validator-option-7.14.5" 75780 75868 sources."@babel/helpers-7.16.3" 75781 75869 sources."@babel/highlight-7.16.0" 75782 - sources."@babel/parser-7.16.3" 75870 + sources."@babel/parser-7.16.4" 75783 75871 sources."@babel/template-7.16.0" 75784 75872 sources."@babel/traverse-7.16.3" 75785 75873 sources."@babel/types-7.16.0" ··· 75800 75888 sources."convert-source-map-1.8.0" 75801 75889 sources."debug-4.3.2" 75802 75890 sources."ejs-3.1.6" 75803 - sources."electron-to-chromium-1.3.899" 75891 + sources."electron-to-chromium-1.3.900" 75804 75892 sources."ensure-posix-path-1.1.1" 75805 75893 sources."escalade-3.1.1" 75806 75894 sources."escape-string-regexp-1.0.5" ··· 75931 76019 dependencies = [ 75932 76020 sources."browserslist-4.18.1" 75933 76021 sources."caniuse-lite-1.0.30001280" 75934 - sources."electron-to-chromium-1.3.899" 76022 + sources."electron-to-chromium-1.3.900" 75935 76023 sources."escalade-3.1.1" 75936 76024 sources."fraction.js-4.1.2" 75937 76025 sources."node-releases-2.0.1" ··· 75966 76054 sources."ansi-regex-5.0.1" 75967 76055 sources."ansi-styles-4.3.0" 75968 76056 sources."ast-types-0.13.4" 75969 - (sources."aws-sdk-2.1029.0" // { 76057 + (sources."aws-sdk-2.1030.0" // { 75970 76058 dependencies = [ 75971 76059 sources."uuid-3.3.2" 75972 76060 ]; ··· 75983 76071 sources."brace-expansion-1.1.11" 75984 76072 sources."buffer-4.9.2" 75985 76073 sources."buffer-crc32-0.2.13" 75986 - sources."bytes-3.1.0" 76074 + sources."bytes-3.1.1" 75987 76075 sources."chalk-4.1.2" 75988 76076 sources."chardet-0.7.0" 75989 76077 sources."cheerio-1.0.0-rc.10" ··· 76043 76131 sources."graceful-fs-4.2.8" 76044 76132 sources."has-flag-4.0.0" 76045 76133 sources."htmlparser2-6.1.0" 76046 - sources."http-errors-1.7.3" 76134 + sources."http-errors-1.8.1" 76047 76135 sources."http-proxy-agent-4.0.1" 76048 76136 sources."https-proxy-agent-5.0.0" 76049 76137 sources."iconv-lite-0.4.24" ··· 76101 76189 ]; 76102 76190 }) 76103 76191 sources."querystring-0.2.0" 76104 - sources."raw-body-2.4.1" 76192 + sources."raw-body-2.4.2" 76105 76193 sources."readable-stream-3.6.0" 76106 76194 sources."restore-cursor-3.1.0" 76107 76195 sources."rimraf-3.0.2" ··· 76114 76202 sources."safe-buffer-5.2.1" 76115 76203 sources."safer-buffer-2.1.2" 76116 76204 sources."sax-1.2.1" 76117 - sources."setprototypeof-1.1.1" 76205 + sources."setprototypeof-1.2.0" 76118 76206 sources."signal-exit-3.0.5" 76119 76207 sources."smart-buffer-4.2.0" 76120 76208 sources."socks-2.6.1" ··· 76133 76221 sources."tar-stream-2.2.0" 76134 76222 sources."through-2.3.8" 76135 76223 sources."tmp-0.0.33" 76136 - sources."toidentifier-1.0.0" 76224 + sources."toidentifier-1.0.1" 76137 76225 sources."tslib-2.3.1" 76138 76226 sources."type-check-0.3.2" 76139 76227 sources."type-fest-0.21.3" ··· 76614 76702 sources."@protobufjs/utf8-1.1.0" 76615 76703 sources."@sindresorhus/is-0.14.0" 76616 76704 sources."@szmarczak/http-timer-1.1.2" 76617 - sources."@types/body-parser-1.19.1" 76705 + sources."@types/body-parser-1.19.2" 76618 76706 sources."@types/caseless-0.12.2" 76619 76707 sources."@types/connect-3.4.35" 76620 76708 sources."@types/express-4.17.13" ··· 76630 76718 sources."@types/ws-8.2.0" 76631 76719 sources."abort-controller-3.0.0" 76632 76720 sources."accepts-1.3.7" 76633 - sources."ajv-8.8.0" 76721 + sources."ajv-8.8.1" 76634 76722 sources."ansi-0.3.1" 76635 76723 (sources."ansi-align-3.0.1" // { 76636 76724 dependencies = [ ··· 77940 78028 sources."browser-sync-ui-2.27.7" 77941 78029 sources."bs-recipes-1.3.4" 77942 78030 sources."bs-snippet-injector-2.0.1" 77943 - sources."bytes-3.1.0" 78031 + sources."bytes-3.1.1" 77944 78032 sources."camelcase-5.3.1" 77945 78033 sources."chalk-1.1.3" 77946 78034 sources."chokidar-3.5.2" ··· 78005 78093 sources."has-ansi-2.0.0" 78006 78094 sources."has-binary2-1.0.3" 78007 78095 sources."has-cors-1.1.0" 78008 - (sources."http-errors-1.7.3" // { 78096 + (sources."http-errors-1.8.1" // { 78009 78097 dependencies = [ 78010 78098 sources."statuses-1.5.0" 78011 78099 ]; ··· 78058 78146 sources."portscanner-2.1.1" 78059 78147 sources."qs-6.2.3" 78060 78148 sources."range-parser-1.2.1" 78061 - sources."raw-body-2.4.1" 78149 + sources."raw-body-2.4.2" 78062 78150 sources."readdirp-3.6.0" 78063 78151 sources."require-directory-2.1.1" 78064 78152 sources."require-main-filename-2.0.0" ··· 78092 78180 sources."serve-static-1.13.2" 78093 78181 sources."server-destroy-1.0.1" 78094 78182 sources."set-blocking-2.0.0" 78095 - sources."setprototypeof-1.1.1" 78183 + sources."setprototypeof-1.2.0" 78096 78184 (sources."socket.io-2.4.0" // { 78097 78185 dependencies = [ 78098 78186 sources."component-emitter-1.2.1" ··· 78118 78206 sources."tfunk-4.0.0" 78119 78207 sources."to-array-0.1.4" 78120 78208 sources."to-regex-range-5.0.1" 78121 - sources."toidentifier-1.0.0" 78209 + sources."toidentifier-1.0.1" 78122 78210 sources."ua-parser-js-1.0.2" 78123 78211 sources."universalify-0.1.2" 78124 78212 sources."unpipe-1.0.0" ··· 78170 78258 sources."@babel/code-frame-7.16.0" 78171 78259 sources."@babel/helper-validator-identifier-7.15.7" 78172 78260 sources."@babel/highlight-7.16.0" 78173 - sources."@babel/parser-7.16.3" 78261 + sources."@babel/parser-7.16.4" 78174 78262 sources."@babel/types-7.16.0" 78175 78263 sources."@kwsites/file-exists-1.1.1" 78176 78264 sources."@kwsites/promise-deferred-1.1.1" ··· 78257 78345 sources."constantinople-4.0.1" 78258 78346 sources."content-disposition-0.5.3" 78259 78347 sources."content-type-1.0.4" 78260 - sources."cookie-0.4.0" 78261 - sources."cookie-parser-1.4.5" 78348 + sources."cookie-0.4.1" 78349 + sources."cookie-parser-1.4.6" 78262 78350 sources."cookie-signature-1.0.6" 78263 78351 sources."core-util-is-1.0.2" 78264 78352 sources."create-hash-1.2.0" ··· 78268 78356 sources."csrf-3.1.0" 78269 78357 (sources."csurf-1.11.0" // { 78270 78358 dependencies = [ 78359 + sources."cookie-0.4.0" 78271 78360 sources."http-errors-1.7.3" 78272 78361 ]; 78273 78362 }) ··· 78311 78400 sources."event-loop-stats-1.3.0" 78312 78401 (sources."express-4.17.1" // { 78313 78402 dependencies = [ 78403 + sources."cookie-0.4.0" 78314 78404 sources."debug-2.6.9" 78315 78405 ]; 78316 78406 }) 78317 78407 sources."express-async-handler-1.2.0" 78318 78408 (sources."express-session-1.17.2" // { 78319 78409 dependencies = [ 78320 - sources."cookie-0.4.1" 78321 78410 sources."debug-2.6.9" 78322 78411 sources."depd-2.0.0" 78323 78412 sources."safe-buffer-5.2.1" ··· 79098 79187 sources."buffer-crc32-0.2.13" 79099 79188 sources."buffer-equal-0.0.1" 79100 79189 sources."buffer-from-1.1.2" 79101 - sources."bytes-3.1.0" 79190 + sources."bytes-3.1.1" 79102 79191 sources."cache-base-1.0.1" 79103 79192 sources."call-me-maybe-1.0.1" 79104 79193 sources."camelcase-4.1.0" ··· 79260 79349 ]; 79261 79350 }) 79262 79351 sources."hosted-git-info-2.8.9" 79263 - sources."http-errors-1.7.3" 79352 + sources."http-errors-1.8.1" 79264 79353 (sources."https-proxy-agent-2.2.4" // { 79265 79354 dependencies = [ 79266 79355 sources."debug-3.2.7" ··· 79449 79538 }) 79450 79539 sources."query-string-6.14.1" 79451 79540 sources."quick-lru-1.1.0" 79452 - sources."raw-body-2.4.1" 79541 + sources."raw-body-2.4.2" 79453 79542 sources."rc-1.2.8" 79454 79543 sources."read-pkg-3.0.0" 79455 79544 sources."read-pkg-up-3.0.0" ··· 79478 79567 sources."extend-shallow-2.0.1" 79479 79568 ]; 79480 79569 }) 79481 - sources."setprototypeof-1.1.1" 79570 + sources."setprototypeof-1.2.0" 79482 79571 sources."shebang-command-1.2.0" 79483 79572 sources."shebang-regex-1.0.0" 79484 79573 sources."signal-exit-3.0.5" ··· 79577 79666 }) 79578 79667 sources."to-regex-3.0.2" 79579 79668 sources."to-regex-range-2.1.1" 79580 - sources."toidentifier-1.0.0" 79669 + sources."toidentifier-1.0.1" 79581 79670 sources."trim-newlines-2.0.0" 79582 79671 sources."tslib-1.14.1" 79583 79672 sources."typedarray-0.0.6" ··· 79636 79725 cdk8s-cli = nodeEnv.buildNodePackage { 79637 79726 name = "cdk8s-cli"; 79638 79727 packageName = "cdk8s-cli"; 79639 - version = "1.0.31"; 79728 + version = "1.0.32"; 79640 79729 src = fetchurl { 79641 - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.31.tgz"; 79642 - sha512 = "xaViO1Divm4/4v+oTlYV28MohHaoT4vNI2T4M9I/6oAHF1yNiSJWWd76mjOICVIoAi7OpjBj5YtyBrXcmq9pzA=="; 79730 + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.32.tgz"; 79731 + sha512 = "p+Z7vvQ8X5GHmdCI+LNv2ITNhH4OiZ4Tk32oQAfCwEeA04PRbu/sk/W8YLSsyd9eOWo0xs+elskMk0VUnUulGA=="; 79643 79732 }; 79644 79733 dependencies = [ 79645 - sources."@jsii/check-node-1.44.0" 79646 - sources."@jsii/spec-1.44.0" 79734 + sources."@jsii/check-node-1.44.1" 79735 + sources."@jsii/spec-1.44.1" 79647 79736 sources."@types/node-12.20.37" 79648 79737 sources."@xmldom/xmldom-0.7.5" 79649 - sources."ajv-8.8.0" 79738 + sources."ajv-8.8.1" 79650 79739 sources."ansi-regex-5.0.1" 79651 79740 sources."ansi-styles-4.3.0" 79652 79741 sources."at-least-node-1.0.0" ··· 79654 79743 sources."call-bind-1.0.2" 79655 79744 sources."camelcase-6.2.1" 79656 79745 sources."case-1.6.3" 79657 - sources."cdk8s-1.1.35" 79658 - sources."cdk8s-plus-22-1.0.0-beta.42" 79746 + sources."cdk8s-1.1.36" 79747 + sources."cdk8s-plus-22-1.0.0-beta.43" 79659 79748 sources."chalk-4.1.2" 79660 79749 sources."cliui-7.0.4" 79661 79750 sources."clone-2.1.2" 79662 - (sources."codemaker-1.44.0" // { 79751 + (sources."codemaker-1.44.1" // { 79663 79752 dependencies = [ 79664 79753 sources."fs-extra-9.1.0" 79665 79754 ]; ··· 79724 79813 sources."is-weakref-1.0.1" 79725 79814 sources."is-weakset-2.0.1" 79726 79815 sources."isarray-2.0.5" 79727 - (sources."jsii-1.44.0" // { 79816 + (sources."jsii-1.44.1" // { 79728 79817 dependencies = [ 79729 79818 sources."fs-extra-9.1.0" 79730 79819 sources."yargs-16.2.0" 79731 79820 ]; 79732 79821 }) 79733 - (sources."jsii-pacmak-1.44.0" // { 79822 + (sources."jsii-pacmak-1.44.1" // { 79734 79823 dependencies = [ 79735 79824 sources."fs-extra-9.1.0" 79736 79825 sources."yargs-16.2.0" 79737 79826 ]; 79738 79827 }) 79739 - (sources."jsii-reflect-1.44.0" // { 79828 + (sources."jsii-reflect-1.44.1" // { 79740 79829 dependencies = [ 79741 79830 sources."fs-extra-9.1.0" 79742 79831 sources."yargs-16.2.0" 79743 79832 ]; 79744 79833 }) 79745 - (sources."jsii-rosetta-1.44.0" // { 79834 + (sources."jsii-rosetta-1.44.1" // { 79746 79835 dependencies = [ 79747 79836 sources."fs-extra-9.1.0" 79748 79837 sources."yargs-16.2.0" 79749 79838 ]; 79750 79839 }) 79751 - (sources."jsii-srcmak-0.1.400" // { 79840 + (sources."jsii-srcmak-0.1.401" // { 79752 79841 dependencies = [ 79753 79842 sources."fs-extra-9.1.0" 79754 79843 ]; 79755 79844 }) 79756 79845 sources."json-schema-0.4.0" 79757 79846 sources."json-schema-traverse-1.0.0" 79758 - sources."json2jsii-0.2.53" 79847 + sources."json2jsii-0.2.54" 79759 79848 sources."jsonfile-6.1.0" 79760 79849 sources."jsonschema-1.4.0" 79761 79850 sources."locate-path-5.0.0" ··· 79771 79860 sources."object-is-1.1.5" 79772 79861 sources."object-keys-1.1.1" 79773 79862 sources."object.assign-4.1.2" 79774 - sources."oo-ascii-tree-1.44.0" 79863 + sources."oo-ascii-tree-1.44.1" 79775 79864 sources."p-limit-2.3.0" 79776 79865 sources."p-locate-4.1.0" 79777 79866 sources."p-try-2.2.0" ··· 79793 79882 sources."snake-case-3.0.4" 79794 79883 sources."sort-json-2.0.0" 79795 79884 sources."spdx-license-list-6.4.0" 79796 - sources."sscaff-1.2.129" 79885 + sources."sscaff-1.2.130" 79797 79886 (sources."streamroller-2.2.4" // { 79798 79887 dependencies = [ 79799 79888 sources."date-format-2.1.0" ··· 79871 79960 sources."chalk-2.4.2" 79872 79961 ]; 79873 79962 }) 79874 - sources."@babel/parser-7.16.3" 79963 + sources."@babel/parser-7.16.4" 79875 79964 sources."@babel/template-7.16.0" 79876 79965 sources."@babel/types-7.16.0" 79877 79966 sources."@cdktf/hcl2cdk-0.7.0" ··· 79915 80004 }) 79916 80005 sources."@graphql-typed-document-node/core-3.1.0" 79917 80006 sources."@josephg/resolvable-1.0.1" 79918 - sources."@jsii/check-node-1.44.0" 79919 - sources."@jsii/spec-1.44.0" 80007 + sources."@jsii/check-node-1.44.1" 80008 + sources."@jsii/spec-1.44.1" 79920 80009 sources."@nodelib/fs.scandir-2.1.5" 79921 80010 sources."@nodelib/fs.stat-2.0.5" 79922 80011 sources."@nodelib/fs.walk-1.2.8" ··· 80262 80351 (sources."jsii-pacmak-1.37.0" // { 80263 80352 dependencies = [ 80264 80353 sources."@jsii/check-node-1.37.0" 80265 - sources."codemaker-1.44.0" 80354 + sources."codemaker-1.44.1" 80266 80355 sources."escape-string-regexp-4.0.0" 80267 80356 sources."fs-extra-9.1.0" 80268 80357 sources."yargs-16.2.0" 80269 80358 ]; 80270 80359 }) 80271 - (sources."jsii-reflect-1.44.0" // { 80360 + (sources."jsii-reflect-1.44.1" // { 80272 80361 dependencies = [ 80273 80362 sources."fs-extra-9.1.0" 80274 80363 sources."yargs-16.2.0" 80275 80364 ]; 80276 80365 }) 80277 - (sources."jsii-rosetta-1.44.0" // { 80366 + (sources."jsii-rosetta-1.44.1" // { 80278 80367 dependencies = [ 80279 80368 sources."fs-extra-9.1.0" 80280 80369 sources."yargs-16.2.0" ··· 80341 80430 sources."on-finished-2.3.0" 80342 80431 sources."once-1.4.0" 80343 80432 sources."onetime-5.1.2" 80344 - sources."oo-ascii-tree-1.44.0" 80433 + sources."oo-ascii-tree-1.44.1" 80345 80434 sources."open-7.4.2" 80346 80435 sources."optimism-0.16.1" 80347 80436 sources."ora-5.4.1" ··· 80434 80523 sources."sort-json-2.0.0" 80435 80524 sources."source-map-0.5.7" 80436 80525 sources."spdx-license-list-6.4.0" 80437 - sources."sscaff-1.2.129" 80526 + sources."sscaff-1.2.130" 80438 80527 (sources."stack-utils-2.0.5" // { 80439 80528 dependencies = [ 80440 80529 sources."escape-string-regexp-2.0.0" ··· 81507 81596 sources."color-convert-1.9.3" 81508 81597 sources."color-name-1.1.3" 81509 81598 sources."commander-2.20.3" 81510 - sources."common-tags-1.8.1" 81599 + sources."common-tags-1.8.2" 81511 81600 sources."component-emitter-1.3.0" 81512 81601 sources."concat-map-0.0.1" 81513 81602 (sources."configstore-3.1.5" // { ··· 81553 81642 sources."domutils-1.7.0" 81554 81643 sources."dot-prop-5.3.0" 81555 81644 sources."duplexer3-0.1.4" 81556 - sources."electron-to-chromium-1.3.899" 81645 + sources."electron-to-chromium-1.3.900" 81557 81646 sources."emoji-regex-8.0.0" 81558 81647 sources."end-of-stream-1.4.4" 81559 81648 sources."enquirer-2.3.6" ··· 82219 82308 sources."svg-tags-1.0.0" 82220 82309 (sources."table-6.7.3" // { 82221 82310 dependencies = [ 82222 - sources."ajv-8.8.0" 82311 + sources."ajv-8.8.1" 82223 82312 sources."json-schema-traverse-1.0.0" 82224 82313 ]; 82225 82314 }) ··· 82508 82597 }; 82509 82598 dependencies = [ 82510 82599 sources."@babel/code-frame-7.16.0" 82511 - sources."@babel/compat-data-7.16.0" 82600 + sources."@babel/compat-data-7.16.4" 82512 82601 sources."@babel/core-7.16.0" 82513 82602 sources."@babel/generator-7.16.0" 82514 82603 sources."@babel/helper-compilation-targets-7.16.3" ··· 82530 82619 sources."chalk-2.4.2" 82531 82620 ]; 82532 82621 }) 82533 - sources."@babel/parser-7.16.3" 82622 + sources."@babel/parser-7.16.4" 82534 82623 sources."@babel/template-7.16.0" 82535 82624 sources."@babel/traverse-7.16.3" 82536 82625 sources."@babel/types-7.16.0" ··· 82544 82633 sources."@types/normalize-package-data-2.4.1" 82545 82634 sources."@types/parse-json-4.0.0" 82546 82635 sources."@types/unist-2.0.6" 82547 - sources."ajv-8.8.0" 82636 + sources."ajv-8.8.1" 82548 82637 sources."ansi-regex-5.0.1" 82549 82638 sources."ansi-styles-3.2.1" 82550 82639 sources."array-union-2.1.0" ··· 82604 82693 sources."domelementtype-1.3.1" 82605 82694 sources."domhandler-2.4.2" 82606 82695 sources."domutils-1.7.0" 82607 - sources."electron-to-chromium-1.3.899" 82696 + sources."electron-to-chromium-1.3.900" 82608 82697 sources."emoji-regex-8.0.0" 82609 82698 sources."entities-1.1.2" 82610 82699 sources."error-ex-1.3.2" ··· 83173 83262 sources."supports-color-5.5.0" 83174 83263 (sources."table-6.7.3" // { 83175 83264 dependencies = [ 83176 - sources."ajv-8.8.0" 83265 + sources."ajv-8.8.1" 83177 83266 sources."json-schema-traverse-1.0.0" 83178 83267 ]; 83179 83268 }) ··· 85220 85309 sources."@cspell/dict-npm-1.0.16" 85221 85310 sources."@cspell/dict-php-1.0.25" 85222 85311 sources."@cspell/dict-powershell-1.0.19" 85223 - sources."@cspell/dict-public-licenses-1.0.3" 85224 - sources."@cspell/dict-python-2.0.4" 85225 - sources."@cspell/dict-ruby-1.0.14" 85312 + sources."@cspell/dict-public-licenses-1.0.4" 85313 + sources."@cspell/dict-python-2.0.5" 85314 + sources."@cspell/dict-ruby-1.0.15" 85226 85315 sources."@cspell/dict-rust-1.0.23" 85227 85316 sources."@cspell/dict-scala-1.0.21" 85228 - sources."@cspell/dict-software-terms-2.0.9" 85317 + sources."@cspell/dict-software-terms-2.0.10" 85229 85318 sources."@cspell/dict-swift-1.0.1" 85230 85319 sources."@cspell/dict-typescript-1.0.19" 85231 85320 sources."@cspell/dict-vue-2.0.1" ··· 85393 85482 sources."atomic-batcher-1.0.2" 85394 85483 sources."aws-sign2-0.7.0" 85395 85484 sources."aws4-1.11.0" 85396 - sources."b4a-1.1.2" 85397 85485 sources."balanced-match-1.0.2" 85398 85486 (sources."base-0.11.2" // { 85399 85487 dependencies = [ ··· 85792 85880 sources."qs-6.5.2" 85793 85881 sources."queue-tick-1.0.0" 85794 85882 sources."random-access-file-2.2.0" 85795 - sources."random-access-memory-3.1.3" 85883 + sources."random-access-memory-3.1.4" 85796 85884 sources."random-access-storage-1.4.2" 85797 85885 sources."randombytes-2.1.0" 85798 85886 sources."range-parser-1.2.1" ··· 86048 86136 src = ../../applications/networking/instant-messengers/deltachat-desktop; 86049 86137 dependencies = [ 86050 86138 sources."@babel/code-frame-7.16.0" 86051 - sources."@babel/compat-data-7.16.0" 86139 + sources."@babel/compat-data-7.16.4" 86052 86140 (sources."@babel/core-7.16.0" // { 86053 86141 dependencies = [ 86054 86142 sources."source-map-0.5.7" ··· 86064 86152 sources."@babel/helper-compilation-targets-7.16.3" 86065 86153 sources."@babel/helper-create-class-features-plugin-7.16.0" 86066 86154 sources."@babel/helper-create-regexp-features-plugin-7.16.0" 86067 - sources."@babel/helper-define-polyfill-provider-0.2.4" 86155 + sources."@babel/helper-define-polyfill-provider-0.3.0" 86068 86156 sources."@babel/helper-explode-assignable-expression-7.16.0" 86069 86157 sources."@babel/helper-function-name-7.16.0" 86070 86158 sources."@babel/helper-get-function-arity-7.16.0" ··· 86074 86162 sources."@babel/helper-module-transforms-7.16.0" 86075 86163 sources."@babel/helper-optimise-call-expression-7.16.0" 86076 86164 sources."@babel/helper-plugin-utils-7.14.5" 86077 - sources."@babel/helper-remap-async-to-generator-7.16.0" 86165 + sources."@babel/helper-remap-async-to-generator-7.16.4" 86078 86166 sources."@babel/helper-replace-supers-7.16.0" 86079 86167 sources."@babel/helper-simple-access-7.16.0" 86080 86168 sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0" ··· 86084 86172 sources."@babel/helper-wrap-function-7.16.0" 86085 86173 sources."@babel/helpers-7.16.3" 86086 86174 sources."@babel/highlight-7.16.0" 86087 - sources."@babel/parser-7.16.3" 86175 + sources."@babel/parser-7.16.4" 86088 86176 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2" 86089 86177 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0" 86090 - sources."@babel/plugin-proposal-async-generator-functions-7.16.0" 86178 + sources."@babel/plugin-proposal-async-generator-functions-7.16.4" 86091 86179 sources."@babel/plugin-proposal-class-properties-7.16.0" 86092 86180 sources."@babel/plugin-proposal-class-static-block-7.16.0" 86093 86181 sources."@babel/plugin-proposal-dynamic-import-7.16.0" ··· 86153 86241 sources."@babel/plugin-transform-typeof-symbol-7.16.0" 86154 86242 sources."@babel/plugin-transform-unicode-escapes-7.16.0" 86155 86243 sources."@babel/plugin-transform-unicode-regex-7.16.0" 86156 - sources."@babel/preset-env-7.16.0" 86244 + sources."@babel/preset-env-7.16.4" 86157 86245 sources."@babel/preset-modules-0.1.5" 86158 86246 sources."@babel/preset-react-7.16.0" 86159 86247 sources."@babel/runtime-7.16.3" ··· 86216 86304 sources."asynckit-0.4.0" 86217 86305 sources."atob-2.1.2" 86218 86306 sources."babel-plugin-dynamic-import-node-2.3.3" 86219 - sources."babel-plugin-polyfill-corejs2-0.2.3" 86220 - sources."babel-plugin-polyfill-corejs3-0.3.0" 86221 - sources."babel-plugin-polyfill-regenerator-0.2.3" 86307 + sources."babel-plugin-polyfill-corejs2-0.3.0" 86308 + sources."babel-plugin-polyfill-corejs3-0.4.0" 86309 + sources."babel-plugin-polyfill-regenerator-0.3.0" 86222 86310 (sources."base-0.11.2" // { 86223 86311 dependencies = [ 86224 86312 sources."define-property-1.0.0" ··· 86309 86397 sources."dom4-2.1.6" 86310 86398 sources."duplexer3-0.1.4" 86311 86399 sources."earcut-2.2.3" 86312 - sources."electron-13.6.1" 86313 - sources."electron-to-chromium-1.3.899" 86400 + sources."electron-13.6.2" 86401 + sources."electron-to-chromium-1.3.900" 86314 86402 sources."emoji-js-clean-4.0.0" 86315 86403 sources."emoji-mart-3.0.1" 86316 86404 sources."emoji-regex-9.2.2" ··· 87697 87785 }; 87698 87786 dependencies = [ 87699 87787 sources."@babel/code-frame-7.16.0" 87700 - sources."@babel/compat-data-7.16.0" 87788 + sources."@babel/compat-data-7.16.4" 87701 87789 (sources."@babel/core-7.16.0" // { 87702 87790 dependencies = [ 87703 87791 sources."semver-6.3.0" ··· 87725 87813 sources."@babel/helper-validator-option-7.14.5" 87726 87814 sources."@babel/helpers-7.16.3" 87727 87815 sources."@babel/highlight-7.16.0" 87728 - sources."@babel/parser-7.16.3" 87816 + sources."@babel/parser-7.16.4" 87729 87817 sources."@babel/plugin-proposal-object-rest-spread-7.16.0" 87730 87818 sources."@babel/plugin-syntax-jsx-7.16.0" 87731 87819 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" ··· 87788 87876 ]; 87789 87877 }) 87790 87878 sources."dot-prop-5.3.0" 87791 - sources."electron-to-chromium-1.3.899" 87879 + sources."electron-to-chromium-1.3.900" 87792 87880 sources."emoji-regex-8.0.0" 87793 87881 sources."emojilib-2.4.0" 87794 87882 sources."end-of-stream-1.4.4" ··· 89970 90058 sources."supports-color-8.1.1" 89971 90059 (sources."table-6.7.3" // { 89972 90060 dependencies = [ 89973 - sources."ajv-8.8.0" 90061 + sources."ajv-8.8.1" 89974 90062 sources."json-schema-traverse-1.0.0" 89975 90063 ]; 89976 90064 }) ··· 90045 90133 sources."chalk-2.4.2" 90046 90134 ]; 90047 90135 }) 90048 - sources."@babel/parser-7.16.3" 90136 + sources."@babel/parser-7.16.4" 90049 90137 sources."@babel/runtime-7.9.0" 90050 90138 (sources."@babel/template-7.16.0" // { 90051 90139 dependencies = [ ··· 90640 90728 sources."duplexify-3.7.1" 90641 90729 sources."ecc-jsbn-0.1.2" 90642 90730 sources."ee-first-1.1.1" 90643 - sources."electron-to-chromium-1.3.899" 90731 + sources."electron-to-chromium-1.3.900" 90644 90732 (sources."elliptic-6.5.4" // { 90645 90733 dependencies = [ 90646 90734 sources."bn.js-4.12.0" ··· 92244 92332 }; 92245 92333 dependencies = [ 92246 92334 sources."@babel/code-frame-7.16.0" 92247 - sources."@babel/compat-data-7.16.0" 92335 + sources."@babel/compat-data-7.16.4" 92248 92336 sources."@babel/core-7.16.0" 92249 92337 sources."@babel/generator-7.16.0" 92250 92338 sources."@babel/helper-annotate-as-pure-7.16.0" ··· 92264 92352 sources."@babel/helper-validator-option-7.14.5" 92265 92353 sources."@babel/helpers-7.16.3" 92266 92354 sources."@babel/highlight-7.16.0" 92267 - sources."@babel/parser-7.16.3" 92355 + sources."@babel/parser-7.16.4" 92268 92356 sources."@babel/plugin-proposal-object-rest-spread-7.16.0" 92269 92357 sources."@babel/plugin-syntax-jsx-7.16.0" 92270 92358 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" ··· 92326 92414 }) 92327 92415 sources."delay-5.0.0" 92328 92416 sources."devtools-protocol-0.0.869402" 92329 - sources."electron-to-chromium-1.3.899" 92417 + sources."electron-to-chromium-1.3.900" 92330 92418 sources."emoji-regex-8.0.0" 92331 92419 sources."end-of-stream-1.4.4" 92332 92420 sources."error-ex-1.3.2" ··· 92974 93062 ]; 92975 93063 }) 92976 93064 sources."@grpc/grpc-js-1.4.4" 92977 - sources."@grpc/proto-loader-0.6.6" 93065 + sources."@grpc/proto-loader-0.6.7" 92978 93066 sources."@jsdevtools/ono-7.1.3" 92979 93067 (sources."@npmcli/fs-1.0.0" // { 92980 93068 dependencies = [ ··· 94847 94935 gatsby-cli = nodeEnv.buildNodePackage { 94848 94936 name = "gatsby-cli"; 94849 94937 packageName = "gatsby-cli"; 94850 - version = "4.1.4"; 94938 + version = "4.2.0"; 94851 94939 src = fetchurl { 94852 - url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.1.4.tgz"; 94853 - sha512 = "B8PYO0FPZMuaEJnvLDPPfEO+xHci7pWoS0NnEKKd+12kneObi4doQp0vqqAG+PS3oNtBRGy1nLglf8BTpCex8Q=="; 94940 + url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.2.0.tgz"; 94941 + sha512 = "WC8sIdMpzTSsLcbvrvrfYazq1exTM+lZBoibLTxCBqKVcQ3dNMCSbzIbGieLtKaPs4pOKKvkivOSWEfPqMOdug=="; 94854 94942 }; 94855 94943 dependencies = [ 94856 94944 (sources."@ardatan/aggregate-error-0.0.6" // { ··· 94859 94947 ]; 94860 94948 }) 94861 94949 sources."@babel/code-frame-7.16.0" 94862 - sources."@babel/compat-data-7.16.0" 94950 + sources."@babel/compat-data-7.16.4" 94863 94951 (sources."@babel/core-7.16.0" // { 94864 94952 dependencies = [ 94865 94953 sources."semver-6.3.0" ··· 94897 94985 sources."chalk-2.4.2" 94898 94986 ]; 94899 94987 }) 94900 - sources."@babel/parser-7.16.3" 94988 + sources."@babel/parser-7.16.4" 94901 94989 sources."@babel/plugin-proposal-object-rest-spread-7.10.4" 94902 94990 sources."@babel/plugin-proposal-optional-chaining-7.16.0" 94903 94991 sources."@babel/plugin-syntax-jsx-7.16.0" ··· 94906 94994 sources."@babel/plugin-transform-parameters-7.16.3" 94907 94995 sources."@babel/plugin-transform-react-jsx-7.16.0" 94908 94996 sources."@babel/runtime-7.16.3" 94909 - sources."@babel/standalone-7.16.3" 94997 + sources."@babel/standalone-7.16.4" 94910 94998 sources."@babel/template-7.16.0" 94911 94999 sources."@babel/traverse-7.16.3" 94912 95000 sources."@babel/types-7.16.0" ··· 95047 95135 sources."color-convert-1.9.3" 95048 95136 sources."color-name-1.1.3" 95049 95137 sources."combined-stream-1.0.8" 95050 - sources."common-tags-1.8.1" 95138 + sources."common-tags-1.8.2" 95051 95139 sources."concat-map-0.0.1" 95052 95140 sources."configstore-5.0.1" 95053 95141 (sources."content-disposition-0.5.3" // { ··· 95071 95159 sources."cookie-0.4.0" 95072 95160 sources."cookie-signature-1.0.6" 95073 95161 sources."cors-2.8.5" 95074 - sources."create-gatsby-2.1.1" 95162 + sources."create-gatsby-2.2.0" 95075 95163 (sources."cross-spawn-6.0.5" // { 95076 95164 dependencies = [ 95077 95165 sources."semver-5.7.1" ··· 95112 95200 sources."dotenv-8.6.0" 95113 95201 sources."duplexer3-0.1.4" 95114 95202 sources."ee-first-1.1.1" 95115 - sources."electron-to-chromium-1.3.899" 95203 + sources."electron-to-chromium-1.3.900" 95116 95204 sources."emoji-regex-8.0.0" 95117 95205 sources."encodeurl-1.0.2" 95118 95206 sources."end-of-stream-1.4.4" ··· 95147 95235 }) 95148 95236 (sources."express-graphql-0.12.0" // { 95149 95237 dependencies = [ 95238 + sources."bytes-3.1.1" 95150 95239 sources."http-errors-1.8.0" 95151 - (sources."raw-body-2.4.1" // { 95240 + (sources."raw-body-2.4.2" // { 95152 95241 dependencies = [ 95153 - sources."http-errors-1.7.3" 95154 - sources."setprototypeof-1.1.1" 95242 + sources."http-errors-1.8.1" 95155 95243 ]; 95156 95244 }) 95157 95245 sources."setprototypeof-1.2.0" 95246 + sources."toidentifier-1.0.1" 95158 95247 ]; 95159 95248 }) 95160 95249 sources."extend-3.0.2" ··· 95184 95273 sources."fs.realpath-1.0.0" 95185 95274 sources."fsevents-2.3.2" 95186 95275 sources."function-bind-1.1.1" 95187 - sources."gatsby-core-utils-3.1.3" 95188 - (sources."gatsby-recipes-1.1.3" // { 95276 + sources."gatsby-core-utils-3.2.0" 95277 + (sources."gatsby-recipes-1.2.0" // { 95189 95278 dependencies = [ 95190 95279 sources."strip-ansi-6.0.1" 95191 95280 ]; 95192 95281 }) 95193 - (sources."gatsby-telemetry-3.1.3" // { 95282 + (sources."gatsby-telemetry-3.2.0" // { 95194 95283 dependencies = [ 95195 95284 sources."ansi-styles-4.3.0" 95196 95285 sources."boxen-4.2.0" ··· 95483 95572 sources."readable-stream-3.6.0" 95484 95573 sources."readable-web-to-node-stream-3.0.2" 95485 95574 sources."readdirp-3.6.0" 95486 - sources."redux-4.0.5" 95575 + sources."redux-4.1.2" 95487 95576 sources."regenerator-runtime-0.13.9" 95488 95577 sources."registry-auth-token-4.2.1" 95489 95578 sources."registry-url-5.1.0" ··· 95603 95692 sources."strtok3-6.2.4" 95604 95693 sources."style-to-object-0.3.0" 95605 95694 sources."supports-color-5.5.0" 95606 - sources."symbol-observable-1.2.0" 95607 95695 sources."term-size-2.2.1" 95608 95696 sources."through-2.3.8" 95609 95697 sources."tmp-0.2.1" ··· 96293 96381 sources."@types/minimist-1.2.2" 96294 96382 sources."@types/normalize-package-data-2.4.1" 96295 96383 sources."agent-base-6.0.2" 96296 - sources."ajv-8.8.0" 96384 + sources."ajv-8.8.1" 96297 96385 sources."ajv-formats-2.1.1" 96298 96386 sources."ansi-align-3.0.1" 96299 96387 sources."ansi-escapes-4.3.2" ··· 96311 96399 ]; 96312 96400 }) 96313 96401 sources."buffer-5.7.1" 96314 - sources."bytes-3.1.0" 96402 + sources."bytes-3.1.1" 96315 96403 (sources."cacheable-request-6.1.0" // { 96316 96404 dependencies = [ 96317 96405 sources."get-stream-5.2.0" ··· 96399 96487 sources."has-yarn-2.1.0" 96400 96488 sources."hosted-git-info-4.0.2" 96401 96489 sources."http-cache-semantics-4.1.0" 96402 - sources."http-errors-1.7.3" 96490 + sources."http-errors-1.8.1" 96403 96491 sources."http-proxy-agent-4.0.1" 96404 96492 sources."https-proxy-agent-5.0.0" 96405 96493 sources."human-signals-2.1.0" ··· 96516 96604 sources."punycode-2.1.1" 96517 96605 sources."pupa-2.1.1" 96518 96606 sources."quick-lru-4.0.1" 96519 - sources."raw-body-2.4.1" 96607 + sources."raw-body-2.4.2" 96520 96608 (sources."rc-1.2.8" // { 96521 96609 dependencies = [ 96522 96610 sources."ini-1.3.8" ··· 96556 96644 sources."semver-6.3.0" 96557 96645 ]; 96558 96646 }) 96559 - sources."setprototypeof-1.1.1" 96647 + sources."setprototypeof-1.2.0" 96560 96648 sources."shebang-command-2.0.0" 96561 96649 sources."shebang-regex-3.0.0" 96562 96650 sources."signal-exit-3.0.5" ··· 96579 96667 sources."through-2.3.8" 96580 96668 sources."tmp-0.0.33" 96581 96669 sources."to-readable-stream-1.0.0" 96582 - sources."toidentifier-1.0.0" 96670 + sources."toidentifier-1.0.1" 96583 96671 sources."tr46-0.0.3" 96584 96672 sources."trim-newlines-3.0.1" 96585 96673 sources."tslib-2.1.0" ··· 98997 99085 sources."assert-plus-1.0.0" 98998 99086 sources."async-2.6.3" 98999 99087 sources."asynckit-0.4.0" 99000 - sources."aws-sdk-2.1029.0" 99088 + sources."aws-sdk-2.1030.0" 99001 99089 sources."aws-sign2-0.7.0" 99002 99090 sources."aws4-1.11.0" 99003 99091 sources."base64-js-1.5.1" ··· 99855 99943 sources."asynckit-0.4.0" 99856 99944 sources."balanced-match-1.0.2" 99857 99945 sources."brace-expansion-1.1.11" 99858 - sources."bytes-3.1.0" 99946 + sources."bytes-3.1.1" 99859 99947 sources."call-bind-1.0.2" 99860 99948 (sources."chalk-3.0.0" // { 99861 99949 dependencies = [ ··· 99933 100021 sources."has-1.0.3" 99934 100022 sources."has-flag-4.0.0" 99935 100023 sources."has-symbols-1.0.2" 99936 - sources."http-errors-1.7.3" 100024 + sources."http-errors-1.8.1" 99937 100025 sources."http-proxy-agent-4.0.1" 99938 100026 sources."https-proxy-agent-5.0.0" 99939 100027 sources."iconv-lite-0.4.24" ··· 100031 100119 sources."proxy-from-env-1.1.0" 100032 100120 sources."pump-3.0.0" 100033 100121 sources."qs-6.10.1" 100034 - sources."raw-body-2.4.1" 100122 + sources."raw-body-2.4.2" 100035 100123 sources."readable-stream-3.6.0" 100036 100124 sources."restore-cursor-2.0.0" 100037 100125 sources."rimraf-3.0.2" ··· 100042 100130 sources."safer-buffer-2.1.2" 100043 100131 sources."sax-1.1.4" 100044 100132 sources."semver-6.3.0" 100045 - sources."setprototypeof-1.1.1" 100133 + sources."setprototypeof-1.2.0" 100046 100134 sources."shebang-command-2.0.0" 100047 100135 sources."shebang-regex-3.0.0" 100048 100136 sources."side-channel-1.0.4" ··· 100093 100181 sources."through-2.3.8" 100094 100182 sources."through2-3.0.2" 100095 100183 sources."tmp-0.0.33" 100096 - sources."toidentifier-1.0.0" 100184 + sources."toidentifier-1.0.1" 100097 100185 sources."tree-kill-1.2.2" 100098 100186 sources."tslib-1.14.1" 100099 100187 sources."type-check-0.3.2" ··· 100527 100615 sources."async-mutex-0.1.4" 100528 100616 sources."asynckit-0.4.0" 100529 100617 sources."atob-2.1.2" 100530 - (sources."aws-sdk-2.1029.0" // { 100618 + (sources."aws-sdk-2.1030.0" // { 100531 100619 dependencies = [ 100532 100620 sources."sax-1.2.1" 100533 100621 sources."uuid-3.3.2" ··· 101290 101378 sha512 = "sxKt7h0vzCd+3Y81Ey2qinupL6DpRSZJclS04ugHDNmRUXGzqicMJ6iwayhSA0S0DwwX30c5ozyUthr1QKF6uw=="; 101291 101379 }; 101292 101380 dependencies = [ 101293 - sources."@babel/parser-7.16.3" 101381 + sources."@babel/parser-7.16.4" 101294 101382 sources."argparse-1.0.10" 101295 101383 sources."bluebird-3.7.2" 101296 101384 sources."catharsis-0.9.0" ··· 102573 102661 karma = nodeEnv.buildNodePackage { 102574 102662 name = "karma"; 102575 102663 packageName = "karma"; 102576 - version = "6.3.8"; 102664 + version = "6.3.9"; 102577 102665 src = fetchurl { 102578 - url = "https://registry.npmjs.org/karma/-/karma-6.3.8.tgz"; 102579 - sha512 = "10wBBU9S0lBHhbCNfmmbWQaY5C1bXlKdnvzN2QKThujCI/+DKaezrI08l6bfTlpJ92VsEboq3zYKpXwK6DOi3A=="; 102666 + url = "https://registry.npmjs.org/karma/-/karma-6.3.9.tgz"; 102667 + sha512 = "E/MqdLM9uVIhfuyVnrhlGBu4miafBdXEAEqCmwdEMh3n17C7UWC/8Kvm3AYKr91gc7scutekZ0xv6rxRaUCtnw=="; 102580 102668 }; 102581 102669 dependencies = [ 102582 102670 sources."@types/component-emitter-1.2.11" ··· 102688 102776 sources."ms-2.1.2" 102689 102777 ]; 102690 102778 }) 102691 - sources."socket.io-adapter-2.3.2" 102779 + sources."socket.io-adapter-2.3.3" 102692 102780 (sources."socket.io-parser-4.0.4" // { 102693 102781 dependencies = [ 102694 102782 sources."debug-4.3.2" ··· 102744 102832 dependencies = [ 102745 102833 sources."@babel/cli-7.16.0" 102746 102834 sources."@babel/code-frame-7.16.0" 102747 - sources."@babel/compat-data-7.16.0" 102835 + sources."@babel/compat-data-7.16.4" 102748 102836 (sources."@babel/core-7.16.0" // { 102749 102837 dependencies = [ 102750 102838 sources."semver-6.3.0" ··· 102773 102861 sources."@babel/helpers-7.16.3" 102774 102862 sources."@babel/highlight-7.16.0" 102775 102863 sources."@babel/node-7.16.0" 102776 - sources."@babel/parser-7.16.3" 102864 + sources."@babel/parser-7.16.4" 102777 102865 sources."@babel/plugin-syntax-jsx-7.16.0" 102778 102866 sources."@babel/plugin-transform-react-jsx-7.16.0" 102779 102867 sources."@babel/register-7.16.0" ··· 102896 102984 }) 102897 102985 sources."dotenv-8.6.0" 102898 102986 sources."ee-first-1.1.1" 102899 - sources."electron-to-chromium-1.3.899" 102987 + sources."electron-to-chromium-1.3.900" 102900 102988 sources."emoji-regex-8.0.0" 102901 102989 sources."encodeurl-1.0.2" 102902 102990 sources."enquirer-2.3.6" ··· 105447 105535 src = ../interpreters/clojurescript/lumo; 105448 105536 dependencies = [ 105449 105537 sources."@babel/code-frame-7.16.0" 105450 - sources."@babel/compat-data-7.16.0" 105538 + sources."@babel/compat-data-7.16.4" 105451 105539 sources."@babel/core-7.16.0" 105452 105540 sources."@babel/generator-7.16.0" 105453 105541 sources."@babel/helper-annotate-as-pure-7.16.0" ··· 105455 105543 sources."@babel/helper-compilation-targets-7.16.3" 105456 105544 sources."@babel/helper-create-class-features-plugin-7.16.0" 105457 105545 sources."@babel/helper-create-regexp-features-plugin-7.16.0" 105458 - sources."@babel/helper-define-polyfill-provider-0.2.4" 105546 + sources."@babel/helper-define-polyfill-provider-0.3.0" 105459 105547 sources."@babel/helper-explode-assignable-expression-7.16.0" 105460 105548 sources."@babel/helper-function-name-7.16.0" 105461 105549 sources."@babel/helper-get-function-arity-7.16.0" ··· 105465 105553 sources."@babel/helper-module-transforms-7.16.0" 105466 105554 sources."@babel/helper-optimise-call-expression-7.16.0" 105467 105555 sources."@babel/helper-plugin-utils-7.14.5" 105468 - sources."@babel/helper-remap-async-to-generator-7.16.0" 105556 + sources."@babel/helper-remap-async-to-generator-7.16.4" 105469 105557 sources."@babel/helper-replace-supers-7.16.0" 105470 105558 sources."@babel/helper-simple-access-7.16.0" 105471 105559 sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0" ··· 105479 105567 sources."chalk-2.4.2" 105480 105568 ]; 105481 105569 }) 105482 - sources."@babel/parser-7.16.3" 105570 + sources."@babel/parser-7.16.4" 105483 105571 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2" 105484 105572 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0" 105485 105573 sources."@babel/plugin-external-helpers-7.8.3" 105486 - sources."@babel/plugin-proposal-async-generator-functions-7.16.0" 105574 + sources."@babel/plugin-proposal-async-generator-functions-7.16.4" 105487 105575 sources."@babel/plugin-proposal-class-properties-7.16.0" 105488 105576 sources."@babel/plugin-proposal-class-static-block-7.16.0" 105489 105577 sources."@babel/plugin-proposal-dynamic-import-7.16.0" ··· 105539 105627 sources."@babel/plugin-transform-property-literals-7.16.0" 105540 105628 sources."@babel/plugin-transform-regenerator-7.16.0" 105541 105629 sources."@babel/plugin-transform-reserved-words-7.16.0" 105542 - sources."@babel/plugin-transform-runtime-7.16.0" 105630 + sources."@babel/plugin-transform-runtime-7.16.4" 105543 105631 sources."@babel/plugin-transform-shorthand-properties-7.16.0" 105544 105632 sources."@babel/plugin-transform-spread-7.16.0" 105545 105633 sources."@babel/plugin-transform-sticky-regex-7.16.0" ··· 105547 105635 sources."@babel/plugin-transform-typeof-symbol-7.16.0" 105548 105636 sources."@babel/plugin-transform-unicode-escapes-7.16.0" 105549 105637 sources."@babel/plugin-transform-unicode-regex-7.16.0" 105550 - sources."@babel/preset-env-7.16.0" 105638 + sources."@babel/preset-env-7.16.4" 105551 105639 sources."@babel/preset-modules-0.1.5" 105552 105640 sources."@babel/preset-stage-2-7.8.3" 105553 105641 sources."@babel/runtime-7.16.3" ··· 105663 105751 sources."babel-plugin-minify-replace-0.5.0" 105664 105752 sources."babel-plugin-minify-simplify-0.5.1" 105665 105753 sources."babel-plugin-minify-type-constructors-0.4.3" 105666 - sources."babel-plugin-polyfill-corejs2-0.2.3" 105667 - sources."babel-plugin-polyfill-corejs3-0.3.0" 105668 - sources."babel-plugin-polyfill-regenerator-0.2.3" 105754 + sources."babel-plugin-polyfill-corejs2-0.3.0" 105755 + sources."babel-plugin-polyfill-corejs3-0.4.0" 105756 + sources."babel-plugin-polyfill-regenerator-0.3.0" 105669 105757 sources."babel-plugin-syntax-flow-6.18.0" 105670 105758 sources."babel-plugin-transform-flow-strip-types-6.22.0" 105671 105759 sources."babel-plugin-transform-inline-consecutive-adds-0.4.3" ··· 105870 105958 sources."duplexer2-0.1.4" 105871 105959 sources."duplexify-3.7.1" 105872 105960 sources."ecc-jsbn-0.1.2" 105873 - sources."electron-to-chromium-1.3.899" 105961 + sources."electron-to-chromium-1.3.900" 105874 105962 (sources."elliptic-6.5.4" // { 105875 105963 dependencies = [ 105876 105964 sources."bn.js-4.12.0" ··· 108532 108620 }; 108533 108621 dependencies = [ 108534 108622 sources."@babel/runtime-7.16.3" 108535 - sources."@mapbox/node-pre-gyp-1.0.6" 108623 + sources."@mapbox/node-pre-gyp-1.0.7" 108536 108624 sources."@node-red/editor-api-2.1.3" 108537 108625 sources."@node-red/editor-client-2.1.3" 108538 108626 (sources."@node-red/nodes-2.1.3" // { ··· 108570 108658 }) 108571 108659 sources."ajv-8.6.3" 108572 108660 sources."ansi-colors-4.1.1" 108573 - sources."ansi-regex-3.0.0" 108661 + sources."ansi-regex-5.0.1" 108574 108662 sources."append-field-1.0.0" 108575 108663 sources."aproba-2.0.0" 108576 108664 (sources."are-we-there-yet-2.0.0" // { ··· 108673 108761 ]; 108674 108762 }) 108675 108763 sources."ee-first-1.1.1" 108764 + sources."emoji-regex-8.0.0" 108676 108765 sources."encodeurl-1.0.2" 108677 108766 sources."end-of-stream-1.4.4" 108678 108767 sources."enquirer-2.3.6" ··· 108705 108794 sources."fs-minipass-2.1.0" 108706 108795 sources."fs.notify-0.0.4" 108707 108796 sources."fs.realpath-1.0.0" 108708 - sources."gauge-3.0.1" 108797 + sources."gauge-4.0.0" 108709 108798 sources."get-stream-5.2.0" 108710 108799 sources."glob-7.2.0" 108711 108800 sources."got-11.8.2" ··· 108735 108824 sources."inflight-1.0.6" 108736 108825 sources."inherits-2.0.3" 108737 108826 sources."ipaddr.js-1.9.1" 108738 - sources."is-fullwidth-code-point-2.0.0" 108827 + sources."is-fullwidth-code-point-3.0.0" 108739 108828 sources."is-utf8-0.2.1" 108740 108829 sources."isarray-0.0.1" 108741 108830 sources."js-yaml-3.14.1" ··· 108811 108900 sources."node-red-admin-2.2.1" 108812 108901 sources."nopt-5.0.0" 108813 108902 sources."normalize-url-6.1.0" 108814 - sources."npmlog-5.0.1" 108903 + sources."npmlog-6.0.0" 108815 108904 sources."nth-check-2.0.1" 108816 108905 sources."oauth2orize-1.11.0" 108817 108906 sources."object-assign-4.1.1" ··· 108878 108967 sources."statuses-1.5.0" 108879 108968 sources."stream-shift-1.0.1" 108880 108969 sources."streamsearch-0.1.2" 108881 - sources."string-width-2.1.1" 108970 + sources."string-width-4.2.3" 108882 108971 sources."string_decoder-0.10.31" 108883 - sources."strip-ansi-4.0.0" 108972 + sources."strip-ansi-6.0.1" 108884 108973 (sources."tar-6.1.11" // { 108885 108974 dependencies = [ 108886 108975 sources."mkdirp-1.0.4" ··· 110171 110260 dependencies = [ 110172 110261 sources."abbrev-1.1.1" 110173 110262 sources."ajv-6.12.6" 110174 - sources."ansi-regex-3.0.0" 110263 + sources."ansi-regex-5.0.1" 110175 110264 sources."aproba-2.0.0" 110176 110265 sources."are-we-there-yet-2.0.0" 110177 110266 sources."argparse-0.1.15" ··· 110202 110291 sources."delayed-stream-1.0.0" 110203 110292 sources."delegates-1.0.0" 110204 110293 sources."ecc-jsbn-0.1.2" 110294 + sources."emoji-regex-8.0.0" 110205 110295 sources."extend-3.0.2" 110206 110296 sources."extsprintf-1.3.0" 110207 110297 sources."fast-deep-equal-3.1.3" ··· 110223 110313 sources."mkdirp-0.5.5" 110224 110314 ]; 110225 110315 }) 110226 - sources."gauge-3.0.1" 110316 + sources."gauge-4.0.0" 110227 110317 sources."getpass-0.1.7" 110228 110318 sources."glob-7.2.0" 110229 110319 sources."graceful-fs-2.0.3" ··· 110234 110324 sources."inflight-1.0.6" 110235 110325 sources."inherits-2.0.4" 110236 110326 sources."ini-1.1.0" 110237 - sources."is-fullwidth-code-point-2.0.0" 110327 + sources."is-fullwidth-code-point-3.0.0" 110238 110328 sources."is-typedarray-1.0.0" 110239 110329 sources."isstream-0.1.2" 110240 110330 sources."jsbn-0.1.1" ··· 110263 110353 sources."semver-2.3.2" 110264 110354 ]; 110265 110355 }) 110266 - sources."npmlog-5.0.1" 110356 + sources."npmlog-6.0.0" 110267 110357 sources."oauth-sign-0.9.0" 110268 - sources."object-assign-4.1.1" 110269 110358 sources."once-1.4.0" 110270 110359 sources."osenv-0.0.3" 110271 110360 sources."path-is-absolute-1.0.1" ··· 110285 110374 sources."signal-exit-3.0.5" 110286 110375 sources."slide-1.1.6" 110287 110376 sources."sshpk-1.16.1" 110288 - sources."string-width-2.1.1" 110377 + sources."string-width-4.2.3" 110289 110378 sources."string_decoder-1.3.0" 110290 - sources."strip-ansi-4.0.0" 110379 + sources."strip-ansi-6.0.1" 110291 110380 (sources."tar-0.1.17" // { 110292 110381 dependencies = [ 110293 110382 sources."inherits-1.0.2" ··· 110321 110410 bypassCache = true; 110322 110411 reconstructLock = true; 110323 110412 }; 110413 + nrm = nodeEnv.buildNodePackage { 110414 + name = "nrm"; 110415 + packageName = "nrm"; 110416 + version = "1.2.5"; 110417 + src = fetchurl { 110418 + url = "https://registry.npmjs.org/nrm/-/nrm-1.2.5.tgz"; 110419 + sha512 = "QOfdBSDsrSso87Lluacdp7fXqU68c1EcjdKOKsr2SRPGXHWsxr88BNjxxJEwSKHP0cXutgUjJevxPhuYEwobMA=="; 110420 + }; 110421 + dependencies = [ 110422 + sources."ajv-6.12.6" 110423 + sources."asn1-0.2.6" 110424 + sources."assert-plus-1.0.0" 110425 + sources."async-1.5.2" 110426 + sources."asynckit-0.4.0" 110427 + sources."aws-sign2-0.7.0" 110428 + sources."aws4-1.11.0" 110429 + sources."bcrypt-pbkdf-1.0.2" 110430 + sources."caseless-0.12.0" 110431 + sources."combined-stream-1.0.8" 110432 + sources."commander-2.20.3" 110433 + sources."core-util-is-1.0.2" 110434 + sources."dashdash-1.14.1" 110435 + sources."define-lazy-prop-2.0.0" 110436 + sources."delayed-stream-1.0.0" 110437 + sources."ecc-jsbn-0.1.2" 110438 + sources."extend-3.0.2" 110439 + sources."extsprintf-1.3.0" 110440 + sources."fast-deep-equal-3.1.3" 110441 + sources."fast-json-stable-stringify-2.1.0" 110442 + sources."forever-agent-0.6.1" 110443 + sources."form-data-2.3.3" 110444 + sources."getpass-0.1.7" 110445 + sources."har-schema-2.0.0" 110446 + sources."har-validator-5.1.5" 110447 + sources."http-signature-1.2.0" 110448 + sources."humps-2.0.1" 110449 + sources."ini-1.3.8" 110450 + sources."is-docker-2.2.1" 110451 + sources."is-typedarray-1.0.0" 110452 + sources."is-wsl-2.2.0" 110453 + sources."isstream-0.1.2" 110454 + sources."jsbn-0.1.1" 110455 + sources."json-schema-0.2.3" 110456 + sources."json-schema-traverse-0.4.1" 110457 + sources."json-stringify-safe-5.0.1" 110458 + sources."jsprim-1.4.1" 110459 + sources."mime-db-1.51.0" 110460 + sources."mime-types-2.1.34" 110461 + sources."npm-7.24.2" 110462 + sources."oauth-sign-0.9.0" 110463 + sources."only-0.0.2" 110464 + sources."open-8.4.0" 110465 + sources."performance-now-2.1.0" 110466 + sources."psl-1.8.0" 110467 + sources."punycode-2.1.1" 110468 + sources."qs-6.5.2" 110469 + sources."request-2.88.2" 110470 + sources."safe-buffer-5.2.1" 110471 + sources."safer-buffer-2.1.2" 110472 + sources."sshpk-1.16.1" 110473 + sources."tough-cookie-2.5.0" 110474 + sources."tunnel-agent-0.6.0" 110475 + sources."tweetnacl-0.14.5" 110476 + sources."uri-js-4.4.1" 110477 + sources."uuid-3.4.0" 110478 + sources."verror-1.10.0" 110479 + ]; 110480 + buildInputs = globalBuildInputs; 110481 + meta = { 110482 + description = "NPM registry manager can help you easy and fast switch between different npm registries, now include: cnpm, taobao, nj(nodejitsu), edunpm"; 110483 + homepage = "https://github.com/Pana/nrm"; 110484 + license = "MIT"; 110485 + }; 110486 + production = true; 110487 + bypassCache = true; 110488 + reconstructLock = true; 110489 + }; 110324 110490 ocaml-language-server = nodeEnv.buildNodePackage { 110325 110491 name = "ocaml-language-server"; 110326 110492 packageName = "ocaml-language-server"; ··· 110373 110539 }; 110374 110540 dependencies = [ 110375 110541 sources."@babel/code-frame-7.16.0" 110376 - sources."@babel/compat-data-7.16.0" 110542 + sources."@babel/compat-data-7.16.4" 110377 110543 (sources."@babel/core-7.16.0" // { 110378 110544 dependencies = [ 110379 110545 sources."json5-2.2.0" ··· 110395 110561 }) 110396 110562 sources."@babel/helper-create-class-features-plugin-7.16.0" 110397 110563 sources."@babel/helper-create-regexp-features-plugin-7.16.0" 110398 - (sources."@babel/helper-define-polyfill-provider-0.2.4" // { 110564 + (sources."@babel/helper-define-polyfill-provider-0.3.0" // { 110399 110565 dependencies = [ 110400 110566 sources."semver-6.3.0" 110401 110567 ]; ··· 110409 110575 sources."@babel/helper-module-transforms-7.16.0" 110410 110576 sources."@babel/helper-optimise-call-expression-7.16.0" 110411 110577 sources."@babel/helper-plugin-utils-7.14.5" 110412 - sources."@babel/helper-remap-async-to-generator-7.16.0" 110578 + sources."@babel/helper-remap-async-to-generator-7.16.4" 110413 110579 sources."@babel/helper-replace-supers-7.16.0" 110414 110580 sources."@babel/helper-simple-access-7.16.0" 110415 110581 sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0" ··· 110419 110585 sources."@babel/helper-wrap-function-7.16.0" 110420 110586 sources."@babel/helpers-7.16.3" 110421 110587 sources."@babel/highlight-7.16.0" 110422 - sources."@babel/parser-7.16.3" 110588 + sources."@babel/parser-7.16.4" 110423 110589 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2" 110424 110590 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0" 110425 - sources."@babel/plugin-proposal-async-generator-functions-7.16.0" 110591 + sources."@babel/plugin-proposal-async-generator-functions-7.16.4" 110426 110592 sources."@babel/plugin-proposal-class-properties-7.16.0" 110427 110593 sources."@babel/plugin-proposal-class-static-block-7.16.0" 110428 110594 sources."@babel/plugin-proposal-dynamic-import-7.16.0" ··· 110487 110653 sources."@babel/plugin-transform-typeof-symbol-7.16.0" 110488 110654 sources."@babel/plugin-transform-unicode-escapes-7.16.0" 110489 110655 sources."@babel/plugin-transform-unicode-regex-7.16.0" 110490 - (sources."@babel/preset-env-7.16.0" // { 110656 + (sources."@babel/preset-env-7.16.4" // { 110491 110657 dependencies = [ 110492 110658 sources."semver-6.3.0" 110493 110659 ]; ··· 110551 110717 sources."aws-sign2-0.7.0" 110552 110718 sources."aws4-1.11.0" 110553 110719 sources."babel-plugin-dynamic-import-node-2.3.3" 110554 - (sources."babel-plugin-polyfill-corejs2-0.2.3" // { 110720 + (sources."babel-plugin-polyfill-corejs2-0.3.0" // { 110555 110721 dependencies = [ 110556 110722 sources."semver-6.3.0" 110557 110723 ]; 110558 110724 }) 110559 - sources."babel-plugin-polyfill-corejs3-0.3.0" 110560 - sources."babel-plugin-polyfill-regenerator-0.2.3" 110725 + sources."babel-plugin-polyfill-corejs3-0.4.0" 110726 + sources."babel-plugin-polyfill-regenerator-0.3.0" 110561 110727 (sources."babel-runtime-6.26.0" // { 110562 110728 dependencies = [ 110563 110729 sources."regenerator-runtime-0.11.1" ··· 110755 110921 sources."duplexer2-0.1.4" 110756 110922 sources."ecc-jsbn-0.1.2" 110757 110923 sources."ee-first-1.1.1" 110758 - sources."electron-to-chromium-1.3.899" 110924 + sources."electron-to-chromium-1.3.900" 110759 110925 (sources."elliptic-6.5.4" // { 110760 110926 dependencies = [ 110761 110927 sources."bn.js-4.12.0" ··· 112686 112852 sources."brace-expansion-1.1.11" 112687 112853 sources."braces-3.0.2" 112688 112854 sources."buffer-from-1.1.2" 112689 - sources."bytes-3.1.0" 112855 + sources."bytes-3.1.1" 112690 112856 sources."chalk-3.0.0" 112691 112857 sources."charm-0.1.2" 112692 112858 sources."chokidar-3.5.2" ··· 112732 112898 sources."graceful-fs-4.2.8" 112733 112899 sources."has-1.0.3" 112734 112900 sources."has-flag-4.0.0" 112735 - sources."http-errors-1.7.3" 112901 + sources."http-errors-1.8.1" 112736 112902 sources."http-proxy-agent-4.0.1" 112737 112903 sources."https-proxy-agent-5.0.0" 112738 112904 sources."iconv-lite-0.4.24" ··· 112791 112957 sources."promptly-2.2.0" 112792 112958 sources."proxy-agent-5.0.0" 112793 112959 sources."proxy-from-env-1.1.0" 112794 - sources."raw-body-2.4.1" 112960 + sources."raw-body-2.4.2" 112795 112961 sources."read-1.0.7" 112796 112962 sources."readable-stream-1.1.14" 112797 112963 sources."readdirp-3.6.0" ··· 112807 112973 sources."yallist-4.0.0" 112808 112974 ]; 112809 112975 }) 112810 - sources."setprototypeof-1.1.1" 112976 + sources."setprototypeof-1.2.0" 112811 112977 sources."shimmer-1.2.1" 112812 112978 sources."signal-exit-3.0.5" 112813 112979 sources."smart-buffer-4.2.0" ··· 112821 112987 sources."supports-color-7.2.0" 112822 112988 sources."systeminformation-5.9.13" 112823 112989 sources."to-regex-range-5.0.1" 112824 - sources."toidentifier-1.0.0" 112990 + sources."toidentifier-1.0.1" 112825 112991 sources."tslib-2.3.1" 112826 112992 sources."tv4-1.3.0" 112827 112993 sources."tx2-1.0.4" ··· 113055 113221 prisma = nodeEnv.buildNodePackage { 113056 113222 name = "prisma"; 113057 113223 packageName = "prisma"; 113058 - version = "3.4.2"; 113224 + version = "3.5.0"; 113059 113225 src = fetchurl { 113060 - url = "https://registry.npmjs.org/prisma/-/prisma-3.4.2.tgz"; 113061 - sha512 = "wOD1lni7MfH/Qkp5SAkUthLKG+pQcpD31Nm8nAKj9ESgqId/dy+JDSTYOuk/pySvFyby/A+bsAPWIaVmo7qqhQ=="; 113226 + url = "https://registry.npmjs.org/prisma/-/prisma-3.5.0.tgz"; 113227 + sha512 = "WEYQ+H98O0yigG+lI0gfh4iyBChvnM6QTXPDtY9eFraLXAmyb6tf/T2mUdrUAU1AEvHLVzQA5A+RpONZlQozBg=="; 113062 113228 }; 113063 113229 dependencies = [ 113064 - sources."@prisma/engines-3.4.1-2.57771c0558568c7d08bd34c7248af5244ae16bd9" 113230 + sources."@prisma/engines-3.5.0-38.78a5df6def6943431f4c022e1428dbc3e833cf8e" 113065 113231 ]; 113066 113232 buildInputs = globalBuildInputs; 113067 113233 meta = { ··· 114080 114246 dependencies = [ 114081 114247 sources."@babel/cli-7.16.0" 114082 114248 sources."@babel/code-frame-7.16.0" 114083 - sources."@babel/compat-data-7.16.0" 114249 + sources."@babel/compat-data-7.16.4" 114084 114250 (sources."@babel/core-7.16.0" // { 114085 114251 dependencies = [ 114086 114252 sources."semver-6.3.0" ··· 114096 114262 }) 114097 114263 sources."@babel/helper-create-class-features-plugin-7.16.0" 114098 114264 sources."@babel/helper-create-regexp-features-plugin-7.16.0" 114099 - (sources."@babel/helper-define-polyfill-provider-0.2.4" // { 114265 + (sources."@babel/helper-define-polyfill-provider-0.3.0" // { 114100 114266 dependencies = [ 114101 114267 sources."semver-6.3.0" 114102 114268 ]; ··· 114110 114276 sources."@babel/helper-module-transforms-7.16.0" 114111 114277 sources."@babel/helper-optimise-call-expression-7.16.0" 114112 114278 sources."@babel/helper-plugin-utils-7.14.5" 114113 - sources."@babel/helper-remap-async-to-generator-7.16.0" 114279 + sources."@babel/helper-remap-async-to-generator-7.16.4" 114114 114280 sources."@babel/helper-replace-supers-7.16.0" 114115 114281 sources."@babel/helper-simple-access-7.16.0" 114116 114282 sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0" ··· 114120 114286 sources."@babel/helper-wrap-function-7.16.0" 114121 114287 sources."@babel/helpers-7.16.3" 114122 114288 sources."@babel/highlight-7.16.0" 114123 - sources."@babel/parser-7.16.3" 114289 + sources."@babel/parser-7.16.4" 114124 114290 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2" 114125 114291 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0" 114126 - sources."@babel/plugin-proposal-async-generator-functions-7.16.0" 114292 + sources."@babel/plugin-proposal-async-generator-functions-7.16.4" 114127 114293 sources."@babel/plugin-proposal-class-properties-7.16.0" 114128 114294 sources."@babel/plugin-proposal-class-static-block-7.16.0" 114129 114295 sources."@babel/plugin-proposal-dynamic-import-7.16.0" ··· 114184 114350 sources."@babel/plugin-transform-react-pure-annotations-7.16.0" 114185 114351 sources."@babel/plugin-transform-regenerator-7.16.0" 114186 114352 sources."@babel/plugin-transform-reserved-words-7.16.0" 114187 - (sources."@babel/plugin-transform-runtime-7.16.0" // { 114353 + (sources."@babel/plugin-transform-runtime-7.16.4" // { 114188 114354 dependencies = [ 114189 114355 sources."semver-6.3.0" 114190 114356 ]; ··· 114196 114362 sources."@babel/plugin-transform-typeof-symbol-7.16.0" 114197 114363 sources."@babel/plugin-transform-unicode-escapes-7.16.0" 114198 114364 sources."@babel/plugin-transform-unicode-regex-7.16.0" 114199 - (sources."@babel/preset-env-7.16.0" // { 114365 + (sources."@babel/preset-env-7.16.4" // { 114200 114366 dependencies = [ 114201 114367 sources."semver-6.3.0" 114202 114368 ]; ··· 114307 114473 }) 114308 114474 sources."babel-plugin-dynamic-import-node-2.3.3" 114309 114475 sources."babel-plugin-macros-2.8.0" 114310 - (sources."babel-plugin-polyfill-corejs2-0.2.3" // { 114476 + (sources."babel-plugin-polyfill-corejs2-0.3.0" // { 114311 114477 dependencies = [ 114312 114478 sources."semver-6.3.0" 114313 114479 ]; 114314 114480 }) 114315 - sources."babel-plugin-polyfill-corejs3-0.3.0" 114316 - sources."babel-plugin-polyfill-regenerator-0.2.3" 114481 + sources."babel-plugin-polyfill-corejs3-0.4.0" 114482 + sources."babel-plugin-polyfill-regenerator-0.3.0" 114317 114483 sources."babel-plugin-transform-react-remove-prop-types-0.4.24" 114318 114484 sources."babel-plugin-universal-import-4.0.2" 114319 114485 (sources."babel-runtime-6.26.0" // { ··· 114630 114796 sources."duplexify-3.7.1" 114631 114797 sources."ee-first-1.1.1" 114632 114798 sources."ejs-2.7.4" 114633 - sources."electron-to-chromium-1.3.899" 114799 + sources."electron-to-chromium-1.3.900" 114634 114800 (sources."elliptic-6.5.4" // { 114635 114801 dependencies = [ 114636 114802 sources."bn.js-4.12.0" ··· 116009 116175 sources."@babel/helper-split-export-declaration-7.16.0" 116010 116176 sources."@babel/helper-validator-identifier-7.15.7" 116011 116177 sources."@babel/highlight-7.16.0" 116012 - sources."@babel/parser-7.16.3" 116178 + sources."@babel/parser-7.16.4" 116013 116179 sources."@babel/runtime-7.16.3" 116014 116180 sources."@babel/template-7.16.0" 116015 116181 sources."@babel/traverse-7.16.3" ··· 116020 116186 sources."@emotion/unitless-0.7.5" 116021 116187 sources."@exodus/schemasafe-1.0.0-rc.6" 116022 116188 sources."@redocly/ajv-8.6.4" 116023 - sources."@redocly/openapi-core-1.0.0-beta.68" 116189 + sources."@redocly/openapi-core-1.0.0-beta.69" 116024 116190 sources."@redocly/react-dropdown-aria-2.0.12" 116025 116191 sources."@types/json-schema-7.0.9" 116026 116192 sources."@types/node-14.17.33" ··· 117173 117339 sources."supports-color-5.5.0" 117174 117340 (sources."table-6.7.3" // { 117175 117341 dependencies = [ 117176 - sources."ajv-8.8.0" 117342 + sources."ajv-8.8.1" 117177 117343 sources."json-schema-traverse-1.0.0" 117178 117344 ]; 117179 117345 }) ··· 117706 117872 sources."async-2.6.3" 117707 117873 sources."asynckit-0.4.0" 117708 117874 sources."at-least-node-1.0.0" 117709 - (sources."aws-sdk-2.1029.0" // { 117875 + (sources."aws-sdk-2.1030.0" // { 117710 117876 dependencies = [ 117711 117877 sources."buffer-4.9.2" 117712 117878 sources."ieee754-1.1.13" ··· 119112 119278 sources."ms-2.1.2" 119113 119279 sources."negotiator-0.6.2" 119114 119280 sources."object-assign-4.1.1" 119115 - sources."socket.io-adapter-2.3.2" 119281 + sources."socket.io-adapter-2.3.3" 119116 119282 sources."socket.io-parser-4.0.4" 119117 119283 sources."vary-1.1.2" 119118 119284 sources."ws-8.2.3" ··· 119366 119532 sources."atomic-file-rw-0.2.2" 119367 119533 sources."attach-ware-1.1.1" 119368 119534 sources."available-typed-arrays-1.0.5" 119369 - sources."b4a-1.1.2" 119370 119535 sources."bail-1.0.5" 119371 119536 sources."balanced-match-1.0.2" 119372 119537 (sources."base-0.11.2" // { ··· 119383 119548 sources."binary-search-1.3.6" 119384 119549 sources."binary-search-bounds-2.0.5" 119385 119550 sources."bindings-1.5.0" 119386 - sources."bipf-1.5.1" 119551 + sources."bipf-1.5.2" 119387 119552 sources."blake2s-1.1.0" 119388 119553 sources."brace-expansion-1.1.11" 119389 119554 sources."braces-1.8.5" ··· 119908 120073 sources."random-access-storage-1.3.0" 119909 120074 ]; 119910 120075 }) 119911 - sources."random-access-memory-3.1.3" 120076 + sources."random-access-memory-3.1.4" 119912 120077 sources."random-access-storage-1.4.2" 119913 120078 sources."random-access-web-2.0.3" 119914 120079 (sources."randomatic-3.1.1" // { ··· 120345 120510 sources."async-1.5.2" 120346 120511 sources."async-limiter-1.0.1" 120347 120512 sources."asynckit-0.4.0" 120348 - (sources."aws-sdk-2.1029.0" // { 120513 + (sources."aws-sdk-2.1030.0" // { 120349 120514 dependencies = [ 120350 120515 sources."uuid-3.3.2" 120351 120516 ]; ··· 121137 121302 sources."@types/minimist-1.2.2" 121138 121303 sources."@types/normalize-package-data-2.4.1" 121139 121304 sources."@types/parse-json-4.0.0" 121140 - sources."ajv-8.8.0" 121305 + sources."ajv-8.8.1" 121141 121306 sources."ansi-regex-5.0.1" 121142 121307 sources."ansi-styles-3.2.1" 121143 121308 sources."array-union-2.1.0" ··· 122437 122602 sources."@textlint/utils-12.0.2" 122438 122603 sources."@types/mdast-3.0.10" 122439 122604 sources."@types/unist-2.0.6" 122440 - sources."ajv-8.8.0" 122605 + sources."ajv-8.8.1" 122441 122606 sources."ansi-regex-2.1.1" 122442 122607 sources."ansi-styles-2.2.1" 122443 122608 sources."argparse-1.0.10" ··· 124592 124757 sources."concat-map-0.0.1" 124593 124758 sources."content-disposition-0.5.3" 124594 124759 sources."content-type-1.0.4" 124595 - sources."cookie-0.4.0" 124596 - sources."cookie-parser-1.4.5" 124760 + sources."cookie-0.4.1" 124761 + sources."cookie-parser-1.4.6" 124597 124762 sources."cookie-signature-1.0.6" 124598 124763 sources."core-util-is-1.0.3" 124599 124764 sources."cors-2.8.5" ··· 124616 124781 sources."end-of-stream-1.4.4" 124617 124782 (sources."engine.io-5.1.1" // { 124618 124783 dependencies = [ 124619 - sources."cookie-0.4.1" 124620 124784 sources."debug-4.3.2" 124621 124785 sources."ms-2.1.2" 124622 124786 ]; ··· 124626 124790 sources."escape-html-1.0.3" 124627 124791 sources."etag-1.8.1" 124628 124792 sources."eve-0.5.4" 124629 - sources."express-4.17.1" 124793 + (sources."express-4.17.1" // { 124794 + dependencies = [ 124795 + sources."cookie-0.4.0" 124796 + ]; 124797 + }) 124630 124798 (sources."express-session-1.17.2" // { 124631 124799 dependencies = [ 124632 - sources."cookie-0.4.1" 124633 124800 sources."depd-2.0.0" 124634 124801 sources."safe-buffer-5.2.1" 124635 124802 ]; ··· 124766 124933 sources."ms-2.1.2" 124767 124934 ]; 124768 124935 }) 124769 - sources."socket.io-adapter-2.3.2" 124936 + sources."socket.io-adapter-2.3.3" 124770 124937 (sources."socket.io-parser-4.0.4" // { 124771 124938 dependencies = [ 124772 124939 sources."debug-4.3.2" ··· 124985 125152 sha512 = "UuxW79x2n0bYBexa3vblI2o4CPhIJTBGvA0remuNm74RjkjMkDHMXDriCs5sYQ7jYyekvROmvmC9t/Pn0g0+6Q=="; 124986 125153 }; 124987 125154 dependencies = [ 124988 - sources."@mapbox/node-pre-gyp-1.0.6" 125155 + sources."@mapbox/node-pre-gyp-1.0.7" 124989 125156 sources."@types/estree-0.0.50" 124990 125157 sources."abbrev-1.1.1" 124991 125158 sources."agent-base-6.0.2" 124992 - sources."ansi-regex-3.0.0" 125159 + sources."ansi-regex-5.0.1" 124993 125160 sources."ansi-styles-4.3.0" 124994 125161 sources."aproba-2.0.0" 124995 125162 sources."are-we-there-yet-2.0.0" ··· 124997 125164 sources."brace-expansion-1.1.11" 124998 125165 sources."canvas-2.8.0" 124999 125166 sources."chownr-2.0.0" 125000 - (sources."cliui-7.0.4" // { 125001 - dependencies = [ 125002 - sources."ansi-regex-5.0.1" 125003 - sources."is-fullwidth-code-point-3.0.0" 125004 - sources."string-width-4.2.3" 125005 - sources."strip-ansi-6.0.1" 125006 - ]; 125007 - }) 125167 + sources."cliui-7.0.4" 125008 125168 sources."color-convert-2.0.1" 125009 125169 sources."color-name-1.1.4" 125010 125170 sources."color-support-1.1.3" ··· 125039 125199 sources."fs-minipass-2.1.0" 125040 125200 sources."fs.realpath-1.0.0" 125041 125201 sources."function-bind-1.1.1" 125042 - sources."gauge-3.0.1" 125202 + sources."gauge-4.0.0" 125043 125203 sources."get-caller-file-2.0.5" 125044 125204 sources."glob-7.2.0" 125045 125205 sources."has-1.0.3" ··· 125050 125210 sources."inherits-2.0.4" 125051 125211 sources."internmap-1.0.1" 125052 125212 sources."is-core-module-2.8.0" 125053 - sources."is-fullwidth-code-point-2.0.0" 125213 + sources."is-fullwidth-code-point-3.0.0" 125054 125214 sources."lru-cache-6.0.0" 125055 125215 (sources."make-dir-3.1.0" // { 125056 125216 dependencies = [ ··· 125066 125226 sources."nan-2.15.0" 125067 125227 sources."node-fetch-2.6.6" 125068 125228 sources."nopt-5.0.0" 125069 - sources."npmlog-5.0.1" 125070 - sources."object-assign-4.1.1" 125229 + sources."npmlog-6.0.0" 125071 125230 sources."once-1.4.0" 125072 125231 sources."path-is-absolute-1.0.1" 125073 125232 sources."path-parse-1.0.7" ··· 125083 125242 sources."signal-exit-3.0.5" 125084 125243 sources."simple-concat-1.0.1" 125085 125244 sources."simple-get-3.1.0" 125086 - sources."string-width-2.1.1" 125245 + sources."string-width-4.2.3" 125087 125246 sources."string_decoder-1.3.0" 125088 - sources."strip-ansi-4.0.0" 125247 + sources."strip-ansi-6.0.1" 125089 125248 sources."tar-6.1.11" 125090 125249 sources."topojson-client-3.1.0" 125091 125250 sources."tr46-0.0.3" ··· 125123 125282 sources."webidl-conversions-3.0.1" 125124 125283 sources."whatwg-url-5.0.0" 125125 125284 sources."wide-align-1.1.5" 125126 - (sources."wrap-ansi-7.0.0" // { 125127 - dependencies = [ 125128 - sources."ansi-regex-5.0.1" 125129 - sources."is-fullwidth-code-point-3.0.0" 125130 - sources."string-width-4.2.3" 125131 - sources."strip-ansi-6.0.1" 125132 - ]; 125133 - }) 125285 + sources."wrap-ansi-7.0.0" 125134 125286 sources."wrappy-1.0.2" 125135 125287 sources."y18n-5.0.8" 125136 125288 sources."yallist-4.0.0" 125137 - (sources."yargs-17.2.1" // { 125138 - dependencies = [ 125139 - sources."ansi-regex-5.0.1" 125140 - sources."is-fullwidth-code-point-3.0.0" 125141 - sources."string-width-4.2.3" 125142 - sources."strip-ansi-6.0.1" 125143 - ]; 125144 - }) 125289 + sources."yargs-17.2.1" 125145 125290 sources."yargs-parser-20.2.9" 125146 125291 ]; 125147 125292 buildInputs = globalBuildInputs; ··· 125500 125645 sources."supports-color-5.5.0" 125501 125646 (sources."table-6.7.3" // { 125502 125647 dependencies = [ 125503 - sources."ajv-8.8.0" 125648 + sources."ajv-8.8.1" 125504 125649 sources."json-schema-traverse-1.0.0" 125505 125650 ]; 125506 125651 }) ··· 125833 125978 sources."domelementtype-2.2.0" 125834 125979 sources."domhandler-4.2.2" 125835 125980 sources."domutils-2.8.0" 125836 - sources."electron-to-chromium-1.3.899" 125981 + sources."electron-to-chromium-1.3.900" 125837 125982 sources."emoji-regex-8.0.0" 125838 125983 sources."emojis-list-3.0.0" 125839 125984 sources."enhanced-resolve-5.8.3" ··· 126546 126691 }) 126547 126692 sources."comma-separated-tokens-1.0.8" 126548 126693 sources."commander-2.20.3" 126549 - sources."common-tags-1.8.1" 126694 + sources."common-tags-1.8.2" 126550 126695 sources."component-emitter-1.3.0" 126551 126696 sources."concat-map-0.0.1" 126552 126697 sources."concat-stream-1.6.2" ··· 127329 127474 }; 127330 127475 dependencies = [ 127331 127476 sources."@babel/runtime-corejs3-7.16.3" 127332 - sources."@mapbox/node-pre-gyp-1.0.6" 127477 + sources."@mapbox/node-pre-gyp-1.0.7" 127333 127478 sources."@tootallnate/once-1.1.2" 127334 127479 sources."@types/raf-3.4.0" 127335 127480 sources."abab-2.0.5" ··· 127342 127487 }) 127343 127488 sources."acorn-walk-7.2.0" 127344 127489 sources."agent-base-6.0.2" 127345 - sources."ansi-regex-3.0.0" 127490 + sources."ansi-regex-5.0.1" 127346 127491 sources."ansi-styles-4.3.0" 127347 127492 sources."aproba-2.0.0" 127348 127493 sources."are-we-there-yet-2.0.0" ··· 127356 127501 sources."canvas-2.8.0" 127357 127502 sources."canvg-3.0.7" 127358 127503 sources."chownr-2.0.0" 127359 - (sources."cliui-7.0.4" // { 127360 - dependencies = [ 127361 - sources."ansi-regex-5.0.1" 127362 - sources."is-fullwidth-code-point-3.0.0" 127363 - sources."string-width-4.2.3" 127364 - sources."strip-ansi-6.0.1" 127365 - ]; 127366 - }) 127504 + sources."cliui-7.0.4" 127367 127505 sources."color-convert-2.0.1" 127368 127506 sources."color-name-1.1.4" 127369 127507 sources."color-support-1.1.3" ··· 127407 127545 sources."fs-extra-10.0.0" 127408 127546 sources."fs-minipass-2.1.0" 127409 127547 sources."fs.realpath-1.0.0" 127410 - sources."gauge-3.0.1" 127548 + sources."gauge-4.0.0" 127411 127549 sources."get-caller-file-2.0.5" 127412 127550 sources."glob-7.2.0" 127413 127551 sources."graceful-fs-4.2.8" ··· 127418 127556 sources."iconv-lite-0.4.24" 127419 127557 sources."inflight-1.0.6" 127420 127558 sources."inherits-2.0.4" 127421 - sources."is-fullwidth-code-point-2.0.0" 127559 + sources."is-fullwidth-code-point-3.0.0" 127422 127560 sources."is-potential-custom-element-name-1.0.1" 127423 127561 (sources."jsdom-16.7.0" // { 127424 127562 dependencies = [ ··· 127450 127588 sources."nan-2.15.0" 127451 127589 sources."node-fetch-2.6.6" 127452 127590 sources."nopt-5.0.0" 127453 - sources."npmlog-5.0.1" 127591 + sources."npmlog-6.0.0" 127454 127592 sources."nwsapi-2.2.0" 127455 - sources."object-assign-4.1.1" 127456 127593 sources."once-1.4.0" 127457 127594 sources."onml-2.1.0" 127458 127595 sources."optionator-0.8.3" ··· 127479 127616 sources."simple-get-3.1.0" 127480 127617 sources."source-map-0.6.1" 127481 127618 sources."stackblur-canvas-2.5.0" 127482 - sources."string-width-2.1.1" 127619 + sources."string-width-4.2.3" 127483 127620 sources."string_decoder-1.3.0" 127484 - sources."strip-ansi-4.0.0" 127621 + sources."strip-ansi-6.0.1" 127485 127622 sources."svg-pathdata-5.0.5" 127486 127623 sources."svg2img-0.9.4" 127487 127624 sources."symbol-tree-3.2.4" ··· 127505 127642 sources."whatwg-url-5.0.0" 127506 127643 sources."wide-align-1.1.5" 127507 127644 sources."word-wrap-1.2.3" 127508 - (sources."wrap-ansi-7.0.0" // { 127509 - dependencies = [ 127510 - sources."ansi-regex-5.0.1" 127511 - sources."is-fullwidth-code-point-3.0.0" 127512 - sources."string-width-4.2.3" 127513 - sources."strip-ansi-6.0.1" 127514 - ]; 127515 - }) 127645 + sources."wrap-ansi-7.0.0" 127516 127646 sources."wrappy-1.0.2" 127517 127647 sources."ws-7.5.5" 127518 127648 sources."xml-name-validator-3.0.0" 127519 127649 sources."xmlchars-2.2.0" 127520 127650 sources."y18n-5.0.8" 127521 127651 sources."yallist-4.0.0" 127522 - (sources."yargs-17.2.1" // { 127523 - dependencies = [ 127524 - sources."ansi-regex-5.0.1" 127525 - sources."is-fullwidth-code-point-3.0.0" 127526 - sources."string-width-4.2.3" 127527 - sources."strip-ansi-6.0.1" 127528 - ]; 127529 - }) 127652 + sources."yargs-17.2.1" 127530 127653 sources."yargs-parser-20.2.9" 127531 127654 ]; 127532 127655 buildInputs = globalBuildInputs; ··· 128063 128186 sources."supports-color-7.2.0" 128064 128187 (sources."table-6.7.3" // { 128065 128188 dependencies = [ 128066 - sources."ajv-8.8.0" 128189 + sources."ajv-8.8.1" 128067 128190 sources."ansi-regex-5.0.1" 128068 128191 sources."json-schema-traverse-1.0.0" 128069 128192 sources."strip-ansi-6.0.1" ··· 128175 128298 sources."caniuse-lite-1.0.30001280" 128176 128299 sources."chrome-trace-event-1.0.3" 128177 128300 sources."commander-2.20.3" 128178 - sources."electron-to-chromium-1.3.899" 128301 + sources."electron-to-chromium-1.3.900" 128179 128302 sources."enhanced-resolve-5.8.3" 128180 128303 sources."es-module-lexer-0.9.3" 128181 128304 sources."escalade-3.1.1" ··· 128761 128884 sources."clone-2.1.2" 128762 128885 sources."color-convert-2.0.1" 128763 128886 sources."color-name-1.1.4" 128764 - sources."common-tags-1.8.1" 128887 + sources."common-tags-1.8.2" 128765 128888 sources."compact2string-1.4.1" 128766 128889 sources."concat-map-0.0.1" 128767 128890 (sources."concat-stream-1.6.2" // {
+2 -2
pkgs/development/python-modules/ailment/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "ailment"; 10 - version = "9.0.10576"; 10 + version = "9.0.10651"; 11 11 disabled = pythonOlder "3.6"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "angr"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-s8GZV+hcuAZJhKVoLAtC2mwHlqr/vJ6P5mwlNDczEyY="; 17 + sha256 = "sha256-Cgd6lT7iqpvY5OJgBFNMkDJVV7uF6WwVdzQwGGZo4Qc="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [ pyvex ];
+37
pkgs/development/python-modules/aiohttp-apispec/unstable.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, pythonOlder 2 + , aiohttp, webargs, fetchFromGitHub, callPackage 3 + }: 4 + 5 + let 6 + apispec3 = callPackage ../apispec/3.nix {}; 7 + jinja2 = callPackage ../jinja2/2.nix {}; 8 + in 9 + buildPythonPackage rec { 10 + pname = "aiohttp-apispec"; 11 + version = "unstable-2021-21-08"; 12 + 13 + # unstable so we can use latest webargs 14 + src = fetchFromGitHub { 15 + owner = "maximdanilchenko"; 16 + repo = "aiohttp-apispec"; 17 + rev = "cfa19646394480dda289f6b7af19b7d50f245d81"; 18 + sha256 = "uEgDRAlMjTa4rvdE3fkORCHIlCLzxPJJ2/m4ZRU3eIQ="; 19 + fetchSubmodules = false; 20 + }; 21 + 22 + propagatedBuildInputs = [ aiohttp webargs apispec3 jinja2 ]; 23 + 24 + pythonImportsCheck = [ 25 + "aiohttp_apispec" 26 + ]; 27 + 28 + # Requires pytest-sanic, currently broken in nixpkgs 29 + doCheck = false; 30 + 31 + meta = with lib; { 32 + description = "Build and document REST APIs with aiohttp and apispec"; 33 + homepage = "https://github.com/maximdanilchenko/aiohttp-apispec/"; 34 + license = licenses.mit; 35 + maintainers = [ maintainers.viric ]; 36 + }; 37 + }
+2 -2
pkgs/development/python-modules/angr/default.nix
··· 44 44 45 45 buildPythonPackage rec { 46 46 pname = "angr"; 47 - version = "9.0.10576"; 47 + version = "9.0.10651"; 48 48 disabled = pythonOlder "3.6"; 49 49 50 50 src = fetchFromGitHub { 51 51 owner = pname; 52 52 repo = pname; 53 53 rev = "v${version}"; 54 - sha256 = "sha256-lRoJZX7HPZE6y7v5AuU1C6sjOIXXefv8M/qPiNQtobw="; 54 + sha256 = "sha256-aywfB2oEPyh+MbN5jb+qA3DMUi8Pp/f2OhuUzoTAIoA="; 55 55 }; 56 56 57 57 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/angrop/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "angrop"; 12 - version = "9.0.10576"; 12 + version = "9.0.10651"; 13 13 disabled = pythonOlder "3.6"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "angr"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-i4F6VyJYJ6XON9G43Z2VwWAPHGRxR9DzxnEDGiJ8LSE="; 19 + sha256 = "sha256-tJ+yeaBI4eBxvvN2rqAfun3aSxDLrSFtfu00d4O1sak="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+47
pkgs/development/python-modules/apispec/3.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pyyaml 5 + , prance 6 + , marshmallow 7 + , pytestCheckHook 8 + , mock 9 + , openapi-spec-validator 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "apispec"; 14 + version = "3.3.2"; 15 + 16 + src = fetchPypi { 17 + inherit pname version; 18 + sha256 = "d23ebd5b71e541e031b02a19db10b5e6d5ef8452c552833e3e1afc836b40b1ad"; 19 + }; 20 + 21 + propagatedBuildInputs = [ 22 + pyyaml 23 + prance 24 + ]; 25 + 26 + postPatch = '' 27 + rm tests/test_ext_marshmallow.py 28 + ''; 29 + 30 + checkInputs = [ 31 + openapi-spec-validator 32 + marshmallow 33 + mock 34 + pytestCheckHook 35 + ]; 36 + 37 + pythonImportsCheck = [ 38 + "apispec" 39 + ]; 40 + 41 + meta = with lib; { 42 + description = "A pluggable API specification generator. Currently supports the OpenAPI Specification (f.k.a. the Swagger specification"; 43 + homepage = "https://github.com/marshmallow-code/apispec"; 44 + license = licenses.mit; 45 + maintainers = [ maintainers.viric ]; 46 + }; 47 + }
+2 -2
pkgs/development/python-modules/archinfo/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "archinfo"; 10 - version = "9.0.10576"; 10 + version = "9.0.10651"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "angr"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-K36tAsVfminDFK09jE6+ruROkaLfCTNPCL5ziZJOrVk="; 16 + sha256 = "sha256-Lvobjbjl1gfW3HllHfsxHnLOB4hRGbZ9Hhuf14zd94w="; 17 17 }; 18 18 19 19 checkInputs = [
+8 -11
pkgs/development/python-modules/buildbot/default.nix
··· 1 1 { stdenv, lib, buildPythonPackage, fetchPypi, makeWrapper, isPy3k 2 - , python, twisted, jinja2, zope_interface, sqlalchemy 3 - , sqlalchemy-migrate, python-dateutil, txaio, autobahn, pyjwt, pyyaml, unidiff, treq 4 - , txrequests, pypugjs, boto3, moto, mock, lz4, setuptoolsTrial 5 - , isort, pylint, flake8, buildbot-worker, buildbot-pkg, buildbot-plugins 6 - , parameterized, git, openssh, glibcLocales, ldap3, nixosTests 2 + , python, twisted, jinja2, zope_interface, sqlalchemy, alembic, python-dateutil 3 + , txaio, autobahn, pyjwt, pyyaml, unidiff, treq, txrequests, pypugjs, boto3 4 + , moto, mock, lz4, setuptoolsTrial, isort, pylint, flake8, buildbot-worker 5 + , buildbot-pkg, buildbot-plugins, parameterized, git, openssh, glibcLocales 6 + , nixosTests 7 7 }: 8 8 9 9 let ··· 31 31 32 32 package = buildPythonPackage rec { 33 33 pname = "buildbot"; 34 - version = "3.3.0"; 34 + version = "3.4.0"; 35 35 36 36 src = fetchPypi { 37 37 inherit pname version; 38 - sha256 = "sha256-FST+mCIQpzxc/5iQdsSNBlKxY985v+z6Xeh8ZQRu2FE="; 38 + sha256 = "sha256-14w1sF1aOpfUW76uhAIUpdrjAEhQkEWcRGg9Osc+qFk="; 39 39 }; 40 40 41 41 propagatedBuildInputs = [ ··· 44 44 jinja2 45 45 zope_interface 46 46 sqlalchemy 47 - sqlalchemy-migrate 47 + alembic 48 48 python-dateutil 49 49 txaio 50 50 autobahn ··· 74 74 git 75 75 openssh 76 76 glibcLocales 77 - # optional dependency that was accidentally made required for tests 78 - # https://github.com/buildbot/buildbot/pull/5857 79 - ldap3 80 77 ]; 81 78 82 79 patches = [
+1 -1
pkgs/development/python-modules/buildbot/pkg.nix
··· 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "sha256-PVmDJN3/PMsvZrrwSNaUUQLPkOMWO6edIEEfZSwspTs="; 9 + sha256 = "sha256-NAc85JomnxS052SjCu8+UQ/hik2gbq1u7/gc21Nj67Q="; 10 10 }; 11 11 12 12 postPatch = ''
+5 -5
pkgs/development/python-modules/buildbot/plugins.nix
··· 7 7 8 8 src = fetchPypi { 9 9 inherit pname version; 10 - sha256 = "sha256-KFGTNudUxjSV6406NV4QJP8t9t5p2ckMlntkqsf1x2U="; 10 + sha256 = "sha256-65ZbCiNtxH3YjAcdhv5cwSUNrLT65jlQh/2oL8342Tw="; 11 11 }; 12 12 13 13 # Remove unneccessary circular dependency on buildbot ··· 34 34 35 35 src = fetchPypi { 36 36 inherit pname version; 37 - sha256 = "sha256-UoKCRAnPAQjb7Fgm+YkGv1boXY+xSDkYA3E2EiEkNGE="; 37 + sha256 = "sha256-2wu6rE5tgjPXxlcIND8s+DAmX9CF29M3ElonV0L8WOs="; 38 38 }; 39 39 40 40 buildInputs = [ buildbot-pkg ]; ··· 56 56 57 57 src = fetchPypi { 58 58 inherit pname version; 59 - sha256 = "sha256-Ccmk8TPtMfGrlNaBKhos1s/G1pHzf+zSD+A88F+/8+c="; 59 + sha256 = "sha256-Vu4CouTuVyxpmx5C4fthQJPdFBAtN1jliQjy4pLYAzc="; 60 60 }; 61 61 62 62 buildInputs = [ buildbot-pkg ]; ··· 78 78 79 79 src = fetchPypi { 80 80 inherit pname version; 81 - sha256 = "sha256-oHvn7E4NS0RhTU2hDn1GgFjalYCoXUNCtGEz2lHel+M="; 81 + sha256 = "sha256-BDzI4VBbNGCKRxv6294IIVkDXZV0KHauvUYDjIVovvE="; 82 82 }; 83 83 84 84 buildInputs = [ buildbot-pkg ]; ··· 100 100 101 101 src = fetchPypi { 102 102 inherit pname version; 103 - sha256 = "sha256-HoiR2WF6EWebbb9c3WcLU2H17HMqkrF6JNOwpUk9CbU="; 103 + sha256 = "sha256-hkcxwZWFJOLHMIRJfzzMTEoH6oc2UblJEKFjYthFfDc="; 104 104 }; 105 105 106 106 buildInputs = [ buildbot-pkg ];
+1 -1
pkgs/development/python-modules/buildbot/worker.nix
··· 7 7 8 8 src = fetchPypi { 9 9 inherit pname version; 10 - sha256 = "sha256-nDP46rLWYXXKJktR6NTWLb0erC6FU8fXe9FAIX+MWuU="; 10 + sha256 = "sha256-SFZ0Q51hrBb7eBMGzvVOhc/ogFCIO/Mo7U9652WJ2GU="; 11 11 }; 12 12 13 13 propagatedBuildInputs = [ twisted future ];
+2 -2
pkgs/development/python-modules/claripy/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "claripy"; 16 - version = "9.0.10576"; 16 + version = "9.0.10651"; 17 17 disabled = pythonOlder "3.6"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "angr"; 21 21 repo = pname; 22 22 rev = "v${version}"; 23 - sha256 = "sha256-86ySQ/2l1h5vayMfAsr9ShyE8oRKL37sT3bfrgIGFHY="; 23 + sha256 = "sha256-ishKQ3BdY7sPRyhr04dB3gtGC/JqoJ/W0Cv/hxTkJXg="; 24 24 }; 25 25 26 26 # Use upstream z3 implementation
+2 -2
pkgs/development/python-modules/cle/default.nix
··· 15 15 16 16 let 17 17 # The binaries are following the argr projects release cycle 18 - version = "9.0.10576"; 18 + version = "9.0.10651"; 19 19 20 20 # Binary files from https://github.com/angr/binaries (only used for testing and only here) 21 21 binaries = fetchFromGitHub { ··· 35 35 owner = "angr"; 36 36 repo = pname; 37 37 rev = "v${version}"; 38 - sha256 = "sha256-ftaFISU37GcCFTybxV31PwUl2vrbKVm/S00Qo+pUxgo="; 38 + sha256 = "sha256-XhU0SS0zWPtI4t49oboc5/Fr34dR6oqm8hlI4f4q8Bk="; 39 39 }; 40 40 41 41 propagatedBuildInputs = [
+9 -10
pkgs/development/python-modules/flask-httpauth/default.nix
··· 1 - { lib, python, isPy3k, buildPythonPackage, fetchPypi, flask }: 1 + { lib, python, buildPythonPackage, fetchPypi, pytestCheckHook, flask }: 2 2 3 3 buildPythonPackage rec { 4 - pname = "Flask-HTTPAuth"; 5 - version = "4.4.0"; 4 + pname = "flask-httpauth"; 5 + version = "4.5.0"; 6 6 7 - disabled = !isPy3k; 7 + disabled = python.pythonOlder "3"; 8 8 9 9 src = fetchPypi { 10 - inherit pname version; 11 - sha256 = "0fl1if91hg2c92b6sic7h2vhxxvb06ri7wflmwp0pfiwbaisgamw"; 10 + pname = "Flask-HTTPAuth"; 11 + version = version; 12 + sha256 = "0ada63rkcvwkakjyx4ay98fjzwx5h55br12ys40ghkc5lbyl0l1r"; 12 13 }; 14 + 15 + checkInputs = [ pytestCheckHook ]; 13 16 14 17 propagatedBuildInputs = [ flask ]; 15 18 16 19 pythonImportsCheck = [ "flask_httpauth" ]; 17 - 18 - checkPhase = '' 19 - ${python.interpreter} -m unittest discover 20 - ''; 21 20 22 21 meta = with lib; { 23 22 description = "Extension that provides HTTP authentication for Flask routes";
+28
pkgs/development/python-modules/future-typing/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pytestCheckHook 5 + , typing-extensions 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "future-typing"; 10 + version = "0.4.1"; 11 + 12 + src = fetchPypi { 13 + pname = "future_typing"; 14 + inherit version; 15 + sha256 = "65fdc5034a95db212790fee5e977fb0a2df8deb60dccf3bac17d6d2b1a9bbacd"; 16 + }; 17 + 18 + doCheck = false; # No tests in pypi source. Did not get tests from GitHub source to work. 19 + 20 + pythonImportsCheck = [ "future_typing" ]; 21 + 22 + meta = with lib; { 23 + description = "Use generic type hints and new union syntax `|` with python 3.6+"; 24 + homepage = "https://github.com/PrettyWood/future-typing"; 25 + license = licenses.mit; 26 + maintainers = with maintainers; [ kfollesdal ]; 27 + }; 28 + }
+30 -9
pkgs/development/python-modules/glances-api/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , aiohttp 5 - , async-timeout 4 + , httpx 5 + , poetry-core 6 + , pytest-asyncio 7 + , pytest-httpx 8 + , pytestCheckHook 9 + , pythonOlder 6 10 }: 7 11 8 12 buildPythonPackage rec { 9 13 pname = "glances-api"; 10 - version = "0.2.1"; 14 + version = "0.3.2"; 15 + format = "pyproject"; 16 + 17 + disabled = pythonOlder "3.8"; 11 18 12 19 src = fetchFromGitHub { 13 20 owner = "home-assistant-ecosystem"; 14 21 repo = "python-glances-api"; 15 22 rev = version; 16 - sha256 = "sha256-mbkZZg2fmus4kOXFxHE/UV/nxemFAsoEZu8IUa7SPsg="; 23 + sha256 = "sha256-zVK63SI8ZeVrY2iEEkgp8pq6RDheKeApb9/RWgZCKGI="; 17 24 }; 18 25 26 + nativeBuildInputs = [ 27 + poetry-core 28 + ]; 29 + 19 30 propagatedBuildInputs = [ 20 - aiohttp 21 - async-timeout 31 + httpx 22 32 ]; 23 33 24 - # no tests are present 25 - doCheck = false; 26 - pythonImportsCheck = [ "glances_api" ]; 34 + checkInputs = [ 35 + pytest-asyncio 36 + pytest-httpx 37 + pytestCheckHook 38 + ]; 39 + 40 + postPatch = '' 41 + substituteInPlace pyproject.toml \ 42 + --replace 'httpx = ">=0.20,<1"' 'httpx = ">=0.19,<1"' 43 + ''; 44 + 45 + pythonImportsCheck = [ 46 + "glances_api" 47 + ]; 27 48 28 49 meta = with lib; { 29 50 description = "Python API for interacting with Glances";
+3 -1
pkgs/development/python-modules/hacking/default.nix
··· 35 35 ]; 36 36 37 37 checkPhase = '' 38 - stestr run 38 + stestr run -e <(echo " 39 + hacking.tests.test_doctest.HackingTestCase.test_flake8 40 + ") 39 41 ''; 40 42 41 43 pythonImportsCheck = [ "hacking" ];
+1 -1
pkgs/development/python-modules/jinja2/2.nix
··· 24 24 doCheck = !stdenv.is32bit || isPy3k; 25 25 26 26 checkPhase = '' 27 - pytest -v tests 27 + pytest -v tests -W ignore::ResourceWarning -W ignore::DeprecationWarning 28 28 ''; 29 29 30 30 meta = with lib; {
+2 -9
pkgs/development/python-modules/nbclient/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "nbclient"; 9 - version = "0.5.8"; 9 + version = "0.5.9"; 10 10 disabled = pythonOlder "3.6"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - sha256 = "sha256-NPUsycuDGl2MzXAxU341THXcYaJEh/mYcS0Sid4yCiU="; 14 + sha256 = "sha256-meRt2vrNC4YSk78kb+2FQKGErfo6p9ZB+JAx7AcHAeA="; 15 15 }; 16 16 17 17 inherit doCheck; 18 18 checkInputs = [ pytest xmltodict nbconvert ipywidgets ]; 19 19 propagatedBuildInputs = [ async_generator traitlets nbformat nest-asyncio jupyter-client ]; 20 - 21 - postFixup = '' 22 - # Remove until fixed by upstream 23 - # https://github.com/jupyter/nbclient/pull/173#issuecomment-968760082 24 - rm $out/bin/.jupyter-run-wrapped 25 - rm $out/bin/jupyter-run 26 - ''; 27 20 28 21 meta = with lib; { 29 22 homepage = "https://github.com/jupyter/nbclient";
+9 -4
pkgs/development/python-modules/pyeclib/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, liberasurecode, six }: 1 + { lib, stdenv, buildPythonPackage, fetchPypi, liberasurecode, six }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "pyeclib"; ··· 13 13 # patch dlopen call 14 14 substituteInPlace src/c/pyeclib_c/pyeclib_c.c \ 15 15 --replace "liberasurecode.so" "${liberasurecode}/lib/liberasurecode.so" 16 + # python's platform.platform() doesn't return "Darwin" (anymore?) 17 + substituteInPlace setup.py \ 18 + --replace '"Darwin"' '"macOS"' 16 19 ''; 17 20 18 - preBuild = '' 19 - # required for the custom find_library function in setup.py 20 - export LD_LIBRARY_PATH="${lib.makeLibraryPath [ liberasurecode ]}" 21 + preBuild = let 22 + ldLibraryPathEnvName = if stdenv.isDarwin then "DYLD_LIBRARY_PATH" else "LD_LIBRARY_PATH"; 23 + in '' 24 + # required for the custom _find_library function in setup.py 25 + export ${ldLibraryPathEnvName}="${lib.makeLibraryPath [ liberasurecode ]}" 21 26 ''; 22 27 23 28 buildInputs = [ liberasurecode ];
+13 -6
pkgs/development/python-modules/pyhaversion/default.nix
··· 1 1 { lib 2 2 , aiohttp 3 3 , aresponses 4 - , async-timeout 5 4 , awesomeversion 6 5 , buildPythonPackage 7 6 , fetchFromGitHub ··· 12 11 13 12 buildPythonPackage rec { 14 13 pname = "pyhaversion"; 15 - version = "21.10.0"; 14 + version = "21.11.1"; 15 + format = "setuptools"; 16 16 17 - # Only 3.8.0 and beyond are supported 18 17 disabled = pythonOlder "3.8"; 19 18 20 19 src = fetchFromGitHub { 21 20 owner = "ludeeus"; 22 21 repo = pname; 23 22 rev = version; 24 - sha256 = "sha256-EvVkewFgkfYL6BjmJ/IWeuCyR+0R0ZxI35i9sxKcqxo="; 23 + sha256 = "sha256-wh6NJRDgOrEHYEN3QlC4lOZHPnPeiPCJFF1xLoixQ14="; 25 24 }; 26 25 27 26 propagatedBuildInputs = [ 28 27 aiohttp 29 - async-timeout 30 28 awesomeversion 31 29 ]; 32 30 ··· 36 34 pytestCheckHook 37 35 ]; 38 36 39 - pythonImportsCheck = [ "pyhaversion" ]; 37 + postPatch = '' 38 + # Upstream doesn't set a version for the tagged releases 39 + substituteInPlace setup.py \ 40 + --replace "main" ${version} 41 + ''; 42 + 43 + 44 + pythonImportsCheck = [ 45 + "pyhaversion" 46 + ]; 40 47 41 48 meta = with lib; { 42 49 description = "Python module to the newest version number of Home Assistant";
+10 -3
pkgs/development/python-modules/pyramid_mako/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , fetchpatch 4 5 , webtest 5 6 , pyramid 6 7 , Mako ··· 15 16 sha256 = "0066c863441f1c3ddea60cee1ccc50d00a91a317a8052ca44131da1a12a840e2"; 16 17 }; 17 18 19 + patches = [ 20 + # Fix tests with pyramid >= 2.0 21 + # https://github.com/Pylons/pyramid_mako/pull/54 22 + (fetchpatch { 23 + url = "https://github.com/Pylons/pyramid_mako/commit/c0f9e7e0146a7f94e35a9401b1519ac8b7765f5b.patch"; 24 + sha256 = "15swfm0a07bdl32s85426rmjh72jwfasjcrl849ppg035z75q9fx"; 25 + }) 26 + ]; 27 + 18 28 buildInputs = [ webtest ]; 19 29 propagatedBuildInputs = [ pyramid Mako ]; 20 30 ··· 23 33 description = "Mako template bindings for the Pyramid web framework"; 24 34 license = licenses.bsd0; 25 35 maintainers = with maintainers; []; 26 - # broken on pyramid>=2.0 27 - # https://github.com/Pylons/pyramid_mako/issues/53 28 - broken = true; 29 36 }; 30 37 }
+9 -5
pkgs/development/python-modules/python-opendata-transport/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , aiohttp 5 - , async-timeout 6 5 , urllib3 6 + , pythonOlder 7 7 }: 8 8 9 9 buildPythonPackage rec { 10 10 pname = "python-opendata-transport"; 11 - version = "0.2.2"; 11 + version = "0.3.0"; 12 + format = "setuptools"; 13 + 14 + disabled = pythonOlder "3.8"; 12 15 13 16 src = fetchPypi { 14 17 pname = "python_opendata_transport"; 15 18 inherit version; 16 - sha256 = "sha256-Z0VHkKYHpwbBwwFrMtA5JRy0m7f0566IjCmGizoKEoo="; 19 + sha256 = "sha256-CpzMMp2C3UOiUna9EcUucD/PKv7AZlkaU8QJfWntoi8="; 17 20 }; 18 21 19 22 propagatedBuildInputs = [ 20 23 aiohttp 21 - async-timeout 22 24 urllib3 23 25 ]; 24 26 25 27 # no tests are present 26 28 doCheck = false; 27 29 28 - pythonImportsCheck = [ "opendata_transport" ]; 30 + pythonImportsCheck = [ 31 + "opendata_transport" 32 + ]; 29 33 30 34 meta = with lib; { 31 35 description = "Python client for interacting with transport.opendata.ch";
+2 -2
pkgs/development/python-modules/pyvex/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "pyvex"; 14 - version = "9.0.10576"; 14 + version = "9.0.10651"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "sha256-pOQZXymIuffUfShAUrXqlxwWCIRKZpkMZcJS1fad2bs="; 18 + sha256 = "sha256-GuZqaEI7y/kLNV7RfEMBXQgFsdVuRh1ouweTwlXE6r4="; 19 19 }; 20 20 21 21 postPatch = lib.optionalString stdenv.isDarwin ''
+2 -2
pkgs/development/python-modules/srpenergy/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "srpenergy"; 12 - version = "1.3.2"; 12 + version = "1.3.5"; 13 13 14 14 disabled = pythonOlder "3.6"; 15 15 ··· 17 17 owner = "lamoreauxlab"; 18 18 repo = "srpenergy-api-client-python"; 19 19 rev = version; 20 - sha256 = "03kldjk90mrnzf2hpd7xky0lpph853mjxc34kfa2m5mbpbpkxz9c"; 20 + sha256 = "sha256-s90+gzjcG27pUcMGpzf2rf+mR8/fmpvwBXGfvv3rNGI="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+69
pkgs/development/python-modules/typical/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pytestCheckHook 5 + , inflection 6 + , pendulum 7 + , fastjsonschema 8 + , typing-extensions 9 + , orjson 10 + , future-typing 11 + , poetry-core 12 + , pydantic 13 + , sqlalchemy 14 + , pandas 15 + , mypy 16 + }: 17 + 18 + buildPythonPackage rec { 19 + pname = "typical"; 20 + version = "2.7.9"; 21 + format = "pyproject"; 22 + 23 + src = fetchFromGitHub { 24 + owner = "seandstewart"; 25 + repo = "typical"; 26 + rev = "v${version}"; 27 + sha256 = "sha256-ITIsSM92zftnvqLiVGFl//IbBb8N3ffkkqohzOx2JO4="; 28 + }; 29 + 30 + patches = [ 31 + ./use-poetry-core.patch 32 + ]; 33 + 34 + nativeBuildInputs = [ poetry-core ]; 35 + 36 + propagatedBuildInputs = [ 37 + inflection 38 + pendulum 39 + fastjsonschema 40 + orjson 41 + typing-extensions 42 + future-typing 43 + ]; 44 + 45 + checkInputs = [ 46 + pytestCheckHook 47 + mypy 48 + pydantic 49 + sqlalchemy 50 + pandas 51 + ]; 52 + 53 + disabledTests = [ 54 + "test_ujson" # We use orjson 55 + ]; 56 + 57 + disabledTestPaths = [ 58 + "benchmark/" 59 + ]; 60 + 61 + pythonImportsCheck = [ "typic" ]; 62 + 63 + meta = with lib; { 64 + homepage = "https://python-typical.org/"; 65 + description = "Typical: Python's Typing Toolkit."; 66 + license = licenses.mit; 67 + maintainers = with maintainers; [ kfollesdal ]; 68 + }; 69 + }
+13
pkgs/development/python-modules/typical/use-poetry-core.patch
··· 1 + diff --git a/pyproject.toml b/pyproject.toml 2 + index a588a0d..43da394 100644 3 + --- a/pyproject.toml 4 + +++ b/pyproject.toml 5 + @@ -154,7 +154,7 @@ exclude = ''' 6 + 7 + [build-system] 8 + requires = ["poetry>=0.12"] 9 + -build-backend = "poetry.masonry.api" 10 + +build-backend = "poetry.core.masonry.api" 11 + 12 + [bumpver] 13 + current_version = "v2.7.5"
+5 -3
pkgs/development/python-modules/vilfo-api-client/default.nix
··· 4 4 , setuptools-scm 5 5 , getmac 6 6 , requests 7 + , semver 7 8 , pytestCheckHook 8 9 , responses 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "vilfo-api-client"; 13 - version = "0.3.3"; 14 + version = "0.4.1"; 14 15 15 16 src = fetchFromGitHub { 16 17 owner = "ManneW"; 17 18 repo = "vilfo-api-client-python"; 18 - rev = "v${version}"; 19 - sha256 = "1gy5gpsg99rcm1cc3m30232za00r9i46sp74zpd12p3vzz1wyyqf"; 19 + rev = version; 20 + sha256 = "sha256-j06Bbv0hWSmrlCv8RfgvfGTyOF+vSX+zZnX3AvG5Hys="; 20 21 }; 21 22 22 23 postPatch = '' ··· 33 34 propagatedBuildInputs = [ 34 35 getmac 35 36 requests 37 + semver 36 38 ]; 37 39 38 40 checkInputs = [
+1 -1
pkgs/development/python-modules/webargs/default.nix
··· 16 16 "webargs" 17 17 ]; 18 18 19 - 20 19 propagatedBuildInputs = [ marshmallow ]; 20 + 21 21 checkInputs = [ 22 22 pytestCheckHook 23 23 pytest-aiohttp
+9 -1
pkgs/development/tools/build-managers/bazel/bazel_4/default.nix
··· 1 - { stdenv, callPackage, lib, fetchurl, fetchFromGitHub, installShellFiles 1 + { stdenv, callPackage, lib, fetchurl, fetchpatch, fetchFromGitHub, installShellFiles 2 2 , runCommand, runCommandCC, makeWrapper, recurseIntoAttrs 3 3 # this package (through the fixpoint glass) 4 4 , bazel_self ··· 213 213 (substituteAll { 214 214 src = ../bazel_rc.patch; 215 215 bazelSystemBazelRCPath = bazelRC; 216 + }) 217 + 218 + # On macOS Monterey, protoc segfaults. 219 + # Issue: https://github.com/bazelbuild/bazel/issues/14216 220 + # Fix: https://github.com/bazelbuild/bazel/pull/14275 221 + (fetchpatch { 222 + url = "https://github.com/bazelbuild/bazel/commit/ae0a6c98d4f94abedbedb2d51c27de5febd7df67.patch"; 223 + sha256 = "sha256-YcdxqjTMGI86k1wgFqxJqghv0kknAjlFQFpt4VccCTE="; 216 224 }) 217 225 ] ++ lib.optional enableNixHacks ../nix-hacks.patch; 218 226
+2 -2
pkgs/development/web/postman/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "postman"; 10 - version = "9.1.1"; 10 + version = "9.1.4"; 11 11 12 12 src = fetchurl { 13 13 url = "https://dl.pstmn.io/download/version/${version}/linux64"; 14 - sha256 = "QqlA/8fEOwucs+nU6ahDh3GB64PdhY8JFWPiyEBxGsE="; 14 + sha256 = "bUhJ1vbesTibXF8rZuVWd5EY8uBbGaYGEbPKSXAVAsE="; 15 15 name = "${pname}.tar.gz"; 16 16 }; 17 17
+41
pkgs/misc/plasma-hud/default.nix
··· 1 + { lib, python3, fetchFromGitHub, rofi, gobject-introspection }: 2 + 3 + python3.pkgs.buildPythonApplication rec{ 4 + pname = "plasma-hud"; 5 + version = "19.10.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "Zren"; 9 + repo = pname; 10 + rev = version; 11 + sha256 = "19vlc156jfdamw7q1pc78fmlf0h3sff5ar3di9j316vbb60js16l"; 12 + }; 13 + 14 + propagatedBuildInputs = with python3.pkgs; [ 15 + rofi 16 + dbus-python 17 + setproctitle 18 + xlib 19 + pygobject3 20 + gobject-introspection 21 + ]; 22 + format = "other"; 23 + postPatch = '' 24 + sed -i "s:/usr/lib/plasma-hud:$out/bin:" etc/xdg/autostart/plasma-hud.desktop 25 + ''; 26 + 27 + installPhase = '' 28 + patchShebangs $out/bin/plasma-hud 29 + mkdir -p $out/bin $out/etc/xdg/autostart 30 + cp -r $src/usr/lib/plasma-hud/plasma-hud $out/bin/plasma-hud 31 + cp -r $src/etc $out/etc 32 + ''; 33 + 34 + meta = with lib;{ 35 + license = licenses.gpl2Only; 36 + homepage = "https://github.com/Zren/plasma-hud"; 37 + platforms = platforms.unix; 38 + description = "Run menubar commands, much like the Unity 7 Heads-Up Display (HUD)"; 39 + maintainers = with maintainers; [ pasqui23 ]; 40 + }; 41 + }
+3 -3
pkgs/servers/openvscode-server/default.nix
··· 26 26 27 27 in stdenv.mkDerivation rec { 28 28 pname = "openvscode-server"; 29 - version = "1.62.0"; 29 + version = "1.62.3"; 30 30 31 31 src = fetchFromGitHub { 32 32 owner = "gitpod-io"; 33 33 repo = "openvscode-server"; 34 34 rev = "openvscode-server-v${version}"; 35 - sha256 = "0lmka1hgf1703h70s7i2lx07535n2l867kmnc5h89c4vaswy6649"; 35 + sha256 = "0822181gbd6y8bzn65liv7prqv7pg067sbl8nac02zg7268qwi6j"; 36 36 }; 37 37 38 38 yarnCache = stdenv.mkDerivation { ··· 55 55 56 56 outputHashMode = "recursive"; 57 57 outputHashAlgo = "sha256"; 58 - outputHash = "142m0vkddzv09rbbqw7y7x19q7akkn00dn6az5ppr86k6bmhyk6p"; 58 + outputHash = "0rmcixcn7lmrndb2pq0x895qp34hc271h1j0n3xq9rv603v1ayvk"; 59 59 }; 60 60 61 61 # Extract the Node.js source code which is used to compile packages with
+3 -3
pkgs/shells/hilbish/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "hilbish"; 5 - version = "0.6.1"; 5 + version = "0.7.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Rosettea"; 9 9 repo = "Hilbish"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-3qU1gQSWxyKgQcHgT61Q+n6u0rGU0vqTdT/VwMN20yw="; 11 + sha256 = "sha256-YQNLv6/4I5WM/xhlWIjThgO23tN+ZCyJVZVatnIUllc="; 12 12 fetchSubmodules = true; 13 13 }; 14 14 15 - vendorSha256 = "sha256-xnq0CEfz9uVpDkqY5/Sw9O5uMTHV74vQBXrav3bbH7E="; 15 + vendorSha256 = "sha256-xzB6sqBnDuvqTFMmLcXdSj6UFWYzA54PxUBKrFKhyQk="; 16 16 17 17 buildInputs = [ readline ]; 18 18
+32
pkgs/tools/admin/google-cloud-sdk/data.nix
··· 1 + # DO NOT EDIT! This file is generated automatically by update.sh 2 + { }: 3 + { 4 + version = "365.0.0"; 5 + googleCloudSdkPkgs = { 6 + x86_64-linux = 7 + { 8 + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-365.0.0-linux-x86_64.tar.gz"; 9 + sha256 = "1h1z2ddhgrc74gnfaicvginl2yy7zjx8dlvkx017vsd3vijavl41"; 10 + }; 11 + x86_64-darwin = 12 + { 13 + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-365.0.0-darwin-x86_64.tar.gz"; 14 + sha256 = "0428pc85jlwsydn5nl7vya3rsbiww8z2jvc68wy1sdk7a1md01cy"; 15 + }; 16 + aarch64-linux = 17 + { 18 + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-365.0.0-linux-arm.tar.gz"; 19 + sha256 = "0ji29kd6cfyl59vlms77bnlqf95yh86g9c08wkx1f1kdavi78l0d"; 20 + }; 21 + aarch64-darwin = 22 + { 23 + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-365.0.0-darwin-arm.tar.gz"; 24 + sha256 = "1rg996y4r24aif5vv6cnl3g7g6fknz8zv6m87ayl8x7yljrqcy27"; 25 + }; 26 + i686-linux = 27 + { 28 + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-365.0.0-linux-x86.tar.gz"; 29 + sha256 = "0jvcridqlk2r5m6b22ldxi9g4mxfy120428ynw9rgpwx0chjmpi6"; 30 + }; 31 + }; 32 + }
+7 -30
pkgs/tools/admin/google-cloud-sdk/default.nix
··· 17 17 crcmod 18 18 ] ++ lib.optional (with-gce) google-compute-engine); 19 19 20 - baseUrl = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads"; 21 - sources = name: system: { 22 - x86_64-darwin = { 23 - url = "${baseUrl}/${name}-darwin-x86_64.tar.gz"; 24 - sha256 = "19s3nryngzv7zs7piwx92hii5p2y97fs7wngqrd9v8cxvgavp1dc"; 25 - }; 26 - 27 - aarch64-darwin = { 28 - url = "${baseUrl}/${name}-darwin-arm.tar.gz"; 29 - sha256 = "1iphpkxrrp0gdan7ikbjbhykdpazcs1fnlcwkfyv2m9baggkd53z"; 30 - }; 31 - 32 - x86_64-linux = { 33 - url = "${baseUrl}/${name}-linux-x86_64.tar.gz"; 34 - sha256 = "1z1ymvij9vi8jc05b004jhd08dqbk133wd03fdxnagd6nfr0bjqm"; 35 - }; 36 - 37 - i686-linux = { 38 - url = "${baseUrl}/${name}-linux-x86.tar.gz"; 39 - sha256 = "17i5pkwjmi38klgr12xqgza7iwkx459cbavlq0x33zaq2a4zanlc"; 40 - }; 41 - 42 - aarch64-linux = { 43 - url = "${baseUrl}/${name}-linux-arm.tar.gz"; 44 - sha256 = "17zjnab4ai5w6p3cbxys9zsg4bdlp0lh6pvmkvdz9hszxxch4yms"; 45 - }; 46 - }.${system} or (throw "Unsupported system: ${system}"); 20 + data = import ./data.nix { }; 21 + sources = system: 22 + data.googleCloudSdkPkgs.${system} or (throw "Unsupported system: ${system}"); 47 23 48 24 in stdenv.mkDerivation rec { 49 25 pname = "google-cloud-sdk"; 50 - version = "362.0.0"; 26 + inherit (data) version; 51 27 52 - src = fetchurl (sources "${pname}-${version}" stdenv.hostPlatform.system); 28 + src = fetchurl (sources stdenv.hostPlatform.system); 53 29 54 30 buildInputs = [ python ]; 55 31 ··· 135 111 # This package contains vendored dependencies. All have free licenses. 136 112 license = licenses.free; 137 113 homepage = "https://cloud.google.com/sdk/"; 114 + changelog = "https://cloud.google.com/sdk/docs/release-notes"; 138 115 maintainers = with maintainers; [ iammrinal0 pradyuman stephenmw zimbatm ]; 139 - platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; 116 + platforms = builtins.attrNames data.googleCloudSdkPkgs; 140 117 mainProgram = "gcloud"; 141 118 }; 142 119 }
+47
pkgs/tools/admin/google-cloud-sdk/update.sh
··· 1 + #!/usr/bin/env nix-shell 2 + #! nix-shell -i bash -p nix 3 + 4 + BASE_URL="https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk" 5 + 6 + # Version of Google Cloud SDK from 7 + # https://cloud.google.com/sdk/docs/release-notes 8 + VERSION="365.0.0" 9 + 10 + function genMainSrc() { 11 + local url="${BASE_URL}-${VERSION}-${1}-${2}.tar.gz" 12 + local sha256 13 + sha256=$(nix-prefetch-url "$url") 14 + echo " {" 15 + echo " url = \"${url}\";" 16 + echo " sha256 = \"${sha256}\";" 17 + echo " };" 18 + } 19 + 20 + { 21 + cat <<EOF 22 + # DO NOT EDIT! This file is generated automatically by update.sh 23 + { }: 24 + { 25 + version = "${VERSION}"; 26 + googleCloudSdkPkgs = { 27 + EOF 28 + 29 + echo " x86_64-linux =" 30 + genMainSrc "linux" "x86_64" 31 + 32 + echo " x86_64-darwin =" 33 + genMainSrc "darwin" "x86_64" 34 + 35 + echo " aarch64-linux =" 36 + genMainSrc "linux" "arm" 37 + 38 + echo " aarch64-darwin =" 39 + genMainSrc "darwin" "arm" 40 + 41 + echo " i686-linux =" 42 + genMainSrc "linux" "x86" 43 + 44 + echo " };" 45 + echo "}" 46 + 47 + } >data.nix
+44 -41
pkgs/tools/misc/pmbootstrap/default.nix
··· 1 - { lib, git, openssl, makeWrapper, buildPythonApplication, pytestCheckHook, ps 1 + { stdenv, lib, git, openssl, makeWrapper, buildPythonApplication, pytestCheckHook, ps 2 2 , fetchPypi, fetchFromGitLab }: 3 3 4 4 buildPythonApplication rec { 5 5 pname = "pmbootstrap"; 6 - version = "1.30.0"; 6 + version = "1.39.0"; 7 7 8 8 src = fetchPypi { 9 9 inherit pname version; 10 - sha256 = "sha256-uHN3nplQOMuBeQIxAocCVqwnmJUQZL67+iXLhQ7onps="; 10 + sha256 = "13krdb0xmwgldfn8izm1x3j6i6s4n9j8n8n0p4g5kd74ygkvfczz"; 11 11 }; 12 12 13 13 repo = fetchFromGitLab { ··· 15 15 owner = "postmarketOS"; 16 16 repo = pname; 17 17 rev = version; 18 - sha256 = "sha256-JunI/mqq+UvmzNVt3mdJN3+tKGN4uTrxkUU2imCNCNY="; 18 + sha256 = "0mrhgi5y3jwd922cmm2niy9ia0g8p6bsqjjxg523yandshpa3683"; 19 19 }; 20 20 21 21 pmb_test = "${repo}/test"; ··· 23 23 checkInputs = [ pytestCheckHook git openssl ps ]; 24 24 25 25 # Add test dependency in PATH 26 - checkPhase = "export PYTHONPATH=$PYTHONPATH:${pmb_test}"; 26 + preCheck = "export PYTHONPATH=$PYTHONPATH:${pmb_test}"; 27 27 28 28 # skip impure tests 29 29 disabledTests = [ 30 - "test_get_apkbuild" 31 - "test_check_build_for_arch" 32 - "test_get_depends" 33 - "test_build_depends_no_binary_error" 30 + "test_apk_static" 31 + "test_aportgen" 32 + "test_aportgen_device_wizard" 33 + "test_bootimg" 34 34 "test_build_depends_binary_outdated" 35 - "test_init_buildenv" 36 - "test_run_abuild" 37 - "test_finish" 38 - "test_package" 39 35 "test_build_depends_high_level" 36 + "test_build_depends_no_binary_error" 37 + "test_build_is_necessary" 40 38 "test_build_local_source_high_level" 39 + "test_build_src_invalid_path" 40 + "test_can_fast_forward" 41 + "test_check_build_for_arch" 42 + "test_chroot_arguments" 41 43 "test_chroot_interactive_shell" 42 44 "test_chroot_interactive_shell_user" 43 - "test_chroot_arguments" 44 - "test_switch_to_channel_branch" 45 - "test_read_config_channel" 46 - "test_cross_compile_distcc" 47 - "test_build_src_invalid_path" 48 - "test_can_fast_forward" 49 45 "test_clean_worktree" 50 - "test_get_upstream_remote" 51 - "test_pull" 52 - "test_helpers_package_get_apkindex" 53 - "test_filter_missing_packages_invalid" 54 - "test_filter_missing_packages_binary_exists" 55 - "test_filter_missing_packages_pmaports" 56 - "test_filter_aport_packages" 57 - "test_pmbootstrap_status" 58 - "test_print_checks_git_repo" 59 - "test_helpers_ui" 60 - "test_newapkbuild" 61 - "test_package_from_aports" 62 - "test_recurse_invalid" 63 - "test_questions_bootimg" 64 - "test_questions_keymaps" 65 - "test_questions_work_path" 66 - "test_questions_channel" 67 - "test_apk_static" 68 - "test_aportgen" 69 - "test_aportgen_device_wizard" 70 - "test_bootimg" 71 - "test_build_is_necessary" 72 46 "test_config_user" 47 + "test_cross_compile_distcc" 73 48 "test_crossdirect" 74 49 "test_file" 50 + "test_filter_aport_packages" 51 + "test_filter_missing_packages_binary_exists" 52 + "test_filter_missing_packages_invalid" 53 + "test_filter_missing_packages_pmaports" 54 + "test_finish" 75 55 "test_folder_size" 56 + "test_get_apkbuild" 57 + "test_get_depends" 58 + "test_get_upstream_remote" 76 59 "test_helpers_lint" 60 + "test_helpers_package_get_apkindex" 77 61 "test_helpers_repo" 62 + "test_helpers_ui" 63 + "test_init_buildenv" 78 64 "test_kconfig_check" 79 65 "test_keys" 66 + "test_newapkbuild" 67 + "test_package" 68 + "test_package_from_aports" 80 69 "test_pkgrel_bump" 70 + "test_pmbootstrap_status" 71 + "test_print_checks_git_repo" 72 + "test_pull" 81 73 "test_qemu_running_processes" 74 + "test_questions_additional_options" 75 + "test_questions_bootimg" 76 + "test_questions_channel" 77 + "test_questions_keymaps" 78 + "test_questions_work_path" 79 + "test_read_config_channel" 80 + "test_recurse_invalid" 81 + "test_run_abuild" 82 82 "test_run_core" 83 83 "test_shell_escape" 84 + "test_switch_to_channel_branch" 84 85 "test_version" 85 86 ]; 86 87 ··· 91 92 homepage = "https://gitlab.com/postmarketOS/pmbootstrap"; 92 93 license = licenses.gpl3Plus; 93 94 maintainers = with maintainers; [ payas ]; 95 + # https://github.com/NixOS/nixpkgs/pull/146576#issuecomment-974267651 96 + broken = stdenv.isDarwin && stdenv.isAarch64; 94 97 }; 95 98 }
+17 -6
pkgs/tools/networking/xh/default.nix
··· 1 - { stdenv, lib, openssl, pkg-config, rustPlatform, fetchFromGitHub, Security 2 - , libiconv, installShellFiles }: 1 + { stdenv 2 + , lib 3 + , pkg-config 4 + , rustPlatform 5 + , fetchFromGitHub 6 + , installShellFiles 7 + , withNativeTls ? true 8 + , Security 9 + , libiconv 10 + , openssl }: 3 11 4 12 rustPlatform.buildRustPackage rec { 5 13 pname = "xh"; 6 - version = "0.13.0"; 14 + version = "0.14.0"; 7 15 8 16 src = fetchFromGitHub { 9 17 owner = "ducaale"; 10 18 repo = "xh"; 11 19 rev = "v${version}"; 12 - sha256 = "sha256-fTd4VSUUj9Im+kCEuFgDsA7eofM1xQfrRzigr1vyJ3I="; 20 + sha256 = "sha256-G6uAHpptX+hvh0ND+mqgR3AG0GT/qily6Y8Pt5yVbxg="; 13 21 }; 14 22 15 - cargoSha256 = "sha256-yZdGw/6iVg8PaUyjTrxj6h/2yhBtqEqvMhdRHhMwDZc="; 23 + cargoSha256 = "sha256-W2l1kiD2yY6FFA29WYPlWCjxKzuSgCdPN8M8bE4QGMU="; 24 + 25 + buildFeatures = lib.optional withNativeTls "native-tls"; 16 26 17 27 nativeBuildInputs = [ installShellFiles pkg-config ]; 18 28 19 - buildInputs = if stdenv.isDarwin then [ Security libiconv ] else [ openssl ]; 29 + buildInputs = lib.optionals withNativeTls 30 + (if stdenv.isDarwin then [ Security libiconv ] else [ openssl ]); 20 31 21 32 # Get openssl-sys to use pkg-config 22 33 OPENSSL_NO_VENDOR = 1;
+2 -2
pkgs/tools/security/exploitdb/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "exploitdb"; 5 - version = "2021-11-23"; 5 + version = "2021-11-24"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "offensive-security"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-mYElt+KdeyRxr0Ef++/o47IWhPXBFmRIHbnw1UNXfr4="; 11 + sha256 = "sha256-pe4SQRVE4e6tNy5eF5uthI6AZ8BwaX72EpNxAU0+UmY="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ makeWrapper ];
+13
pkgs/top-level/all-packages.nix
··· 1087 1087 1088 1088 nimmm = callPackage ../applications/terminal-emulators/nimmm { }; 1089 1089 1090 + notion-app-enhanced = callPackage ../applications/office/notion-app-enhanced { }; 1091 + 1090 1092 pikchr = callPackage ../tools/graphics/pikchr { }; 1091 1093 1092 1094 roxterm = callPackage ../applications/terminal-emulators/roxterm { }; ··· 2428 2430 }; 2429 2431 2430 2432 cfdyndns = callPackage ../applications/networking/dyndns/cfdyndns { }; 2433 + 2434 + cfm = callPackage ../applications/misc/cfm { }; 2431 2435 2432 2436 charliecloud = callPackage ../applications/virtualization/charliecloud { }; 2433 2437 ··· 19210 19214 19211 19215 pyotherside = libsForQt5.callPackage ../development/libraries/pyotherside {}; 19212 19216 19217 + plasma-hud = callPackage ../misc/plasma-hud { }; 19218 + 19213 19219 re2 = callPackage ../development/libraries/re2 { }; 19214 19220 19215 19221 qbs = libsForQt5.callPackage ../development/tools/build-managers/qbs { }; ··· 24883 24889 24884 24890 keepass = callPackage ../applications/misc/keepass { }; 24885 24891 24892 + keepass-charactercopy = callPackage ../applications/misc/keepass-plugins/charactercopy { }; 24893 + 24886 24894 keepass-keeagent = callPackage ../applications/misc/keepass-plugins/keeagent { }; 24887 24895 24888 24896 keepass-keepasshttp = callPackage ../applications/misc/keepass-plugins/keepasshttp { }; 24889 24897 24890 24898 keepass-keepassrpc = callPackage ../applications/misc/keepass-plugins/keepassrpc { }; 24891 24899 24900 + keepass-keetraytotp = callPackage ../applications/misc/keepass-plugins/keetraytotp { }; 24901 + 24892 24902 keepass-otpkeyprov = callPackage ../applications/misc/keepass-plugins/otpkeyprov { }; 24903 + 24904 + keepass-qrcodeview = callPackage ../applications/misc/keepass-plugins/qrcodeview { }; 24893 24905 24894 24906 kerbrute = callPackage ../tools/security/kerbrute { }; 24895 24907 ··· 26964 26976 sponsorblock = callPackage ../applications/video/mpv/scripts/sponsorblock.nix {}; 26965 26977 thumbnail = callPackage ../applications/video/mpv/scripts/thumbnail.nix { }; 26966 26978 youtube-quality = callPackage ../applications/video/mpv/scripts/youtube-quality.nix { }; 26979 + cutter = callPackage ../applications/video/mpv/scripts/cutter.nix { }; 26967 26980 }; 26968 26981 26969 26982 mrpeach = callPackage ../applications/audio/pd-plugins/mrpeach { };
+6 -6
pkgs/top-level/haskell-packages.nix
··· 1 - { buildPackages, pkgs, newScope, stdenv }: 1 + { buildPackages, pkgsBuildTarget, pkgs, newScope, stdenv }: 2 2 3 3 let 4 4 # These are attributes in compiler and packages that don't support integer-simple. ··· 79 79 else 80 80 packages.ghc865Binary; 81 81 inherit (buildPackages.python3Packages) sphinx; 82 - buildLlvmPackages = buildPackages.llvmPackages_7; 82 + buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_7; 83 83 llvmPackages = pkgs.llvmPackages_7; 84 84 }; 85 85 ghc8107 = callPackage ../development/compilers/ghc/8.10.7.nix { ··· 96 96 # https://github.com/xattr/xattr/issues/44 and 97 97 # https://github.com/xattr/xattr/issues/55 are solved. 98 98 inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook; 99 - buildLlvmPackages = buildPackages.llvmPackages_9; 99 + buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_9; 100 100 llvmPackages = pkgs.llvmPackages_9; 101 101 }; 102 102 ghc901 = callPackage ../development/compilers/ghc/9.0.1.nix { ··· 109 109 packages.ghc8107Binary; 110 110 inherit (buildPackages.python3Packages) sphinx; 111 111 inherit (buildPackages.darwin) autoSignDarwinBinariesHook; 112 - buildLlvmPackages = buildPackages.llvmPackages_10; 112 + buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_10; 113 113 llvmPackages = pkgs.llvmPackages_10; 114 114 }; 115 115 ghc921 = callPackage ../development/compilers/ghc/9.2.1.nix { ··· 124 124 # https://github.com/xattr/xattr/issues/44 and 125 125 # https://github.com/xattr/xattr/issues/55 are solved. 126 126 inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook; 127 - buildLlvmPackages = buildPackages.llvmPackages_10; 127 + buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_10; 128 128 llvmPackages = pkgs.llvmPackages_10; 129 129 }; 130 130 ghcHEAD = callPackage ../development/compilers/ghc/head.nix { ··· 134 134 # https://github.com/xattr/xattr/issues/44 and 135 135 # https://github.com/xattr/xattr/issues/55 are solved. 136 136 inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook; 137 - buildLlvmPackages = buildPackages.llvmPackages_10; 137 + buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_10; 138 138 llvmPackages = pkgs.llvmPackages_10; 139 139 libffi = pkgs.libffi; 140 140 };
+6 -2
pkgs/top-level/python-packages.nix
··· 2984 2984 2985 2985 future-fstrings = callPackage ../development/python-modules/future-fstrings { }; 2986 2986 2987 + future-typing = callPackage ../development/python-modules/future-typing { }; 2988 + 2987 2989 fuzzyfinder = callPackage ../development/python-modules/fuzzyfinder { }; 2988 2990 2989 2991 fuzzywuzzy = callPackage ../development/python-modules/fuzzywuzzy { }; ··· 9613 9615 9614 9616 typesystem = callPackage ../development/python-modules/typesystem { }; 9615 9617 9618 + typical = callPackage ../development/python-modules/typical { }; 9619 + 9616 9620 typing = null; 9617 9621 9618 9622 typing-extensions = callPackage ../development/python-modules/typing-extensions { }; ··· 9937 9941 9938 9942 weasyprint = callPackage ../development/python-modules/weasyprint { }; 9939 9943 9944 + webargs = callPackage ../development/python-modules/webargs { }; 9945 + 9940 9946 webapp2 = callPackage ../development/python-modules/webapp2 { }; 9941 9947 9942 9948 webassets = callPackage ../development/python-modules/webassets { }; ··· 9954 9960 webexteamssdk = callPackage ../development/python-modules/webexteamssdk { }; 9955 9961 9956 9962 webhelpers = callPackage ../development/python-modules/webhelpers { }; 9957 - 9958 - webargs = callPackage ../development/python-modules/webargs { }; 9959 9963 9960 9964 webob = callPackage ../development/python-modules/webob { }; 9961 9965