lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
d8bfd0a0 44319c87

+555 -1145
+8 -3
nixos/tests/pantheon.nix
··· 20 20 enableOCR = true; 21 21 22 22 testScript = { nodes, ... }: let 23 - user = nodes.machine.config.users.users.alice; 24 - bob = nodes.machine.config.users.users.bob; 23 + user = nodes.machine.users.users.alice; 24 + bob = nodes.machine.users.users.bob; 25 25 in '' 26 26 machine.wait_for_unit("display-manager.service") 27 27 ··· 40 40 with subtest("Check that logging in has given the user ownership of devices"): 41 41 machine.succeed("getfacl -p /dev/snd/timer | grep -q ${user.name}") 42 42 43 - # TODO: DBus API could eliminate this? Pantheon uses Bamf. 44 43 with subtest("Check if pantheon session components actually start"): 45 44 machine.wait_until_succeeds("pgrep gala") 46 45 machine.wait_for_window("gala") ··· 48 47 machine.wait_for_window("io.elementary.wingpanel") 49 48 machine.wait_until_succeeds("pgrep plank") 50 49 machine.wait_for_window("plank") 50 + 51 + with subtest("Open system settings"): 52 + machine.execute("su - ${user.name} -c 'DISPLAY=:0 io.elementary.switchboard >&2 &'") 53 + # Wait for all plugins to be loaded before we check if the window is still there. 54 + machine.sleep(5) 55 + machine.wait_for_window("io.elementary.switchboard") 51 56 52 57 with subtest("Open elementary terminal"): 53 58 machine.execute("su - ${user.name} -c 'DISPLAY=:0 io.elementary.terminal >&2 &'")
+2 -2
pkgs/applications/blockchains/stellar-core/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "stellar-core"; 6 - version = "19.4.0"; 6 + version = "19.6.0"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "stellar"; 10 10 repo = pname; 11 11 rev = "v${version}"; 12 - sha256 = "sha256-pgwLCtlj2Ak34KfE+ffIxQ1Z4Epxm3f1Y2aqYOIlLUc="; 12 + sha256 = "sha256-lDefmPZM8ow6t5CpNBxef+9BoT773p5UgeMhgF+em2w="; 13 13 fetchSubmodules = true; 14 14 }; 15 15
+2 -2
pkgs/applications/blockchains/wasabiwallet/default.nix
··· 31 31 in 32 32 stdenv.mkDerivation rec { 33 33 pname = "wasabiwallet"; 34 - version = "2.0.2"; 34 + version = "2.0.2.1"; 35 35 36 36 src = fetchurl { 37 37 url = "https://github.com/zkSNACKs/WalletWasabi/releases/download/v${version}/Wasabi-${version}.tar.gz"; 38 - sha256 = "sha256-0DFl+UFxQckRM2qXFqDpKaRQ5sIMUbNj7l3zKPKAOnQ="; 38 + sha256 = "sha256-kvUwWRZZmalJQL65tRNdgTg7ZQHhmIbfmsfHbHBYz7w="; 39 39 }; 40 40 41 41 dontBuild = true;
+4 -4
pkgs/applications/editors/vim/macvim.nix
··· 11 11 , perl 12 12 , luajit 13 13 , darwin 14 - , python37 14 + , python3 15 15 }: 16 16 17 17 let ··· 41 41 42 42 nativeBuildInputs = [ pkg-config buildSymlinks ]; 43 43 buildInputs = [ 44 - gettext ncurses cscope luajit ruby tcl perl python37 44 + gettext ncurses cscope luajit ruby tcl perl python3 45 45 ]; 46 46 47 47 patches = [ ./macvim.patch ]; ··· 61 61 "--without-local-dir" 62 62 "--with-luajit" 63 63 "--with-lua-prefix=${luajit}" 64 - "--with-python3-command=${python37}/bin/python3" 64 + "--with-python3-command=${python3}/bin/python3" 65 65 "--with-ruby-command=${ruby}/bin/ruby" 66 66 "--with-tclsh=${tcl}/bin/tclsh" 67 67 "--with-tlib=ncurses" ··· 159 159 libperl=$(dirname $(find ${perl} -name "libperl.dylib")) 160 160 install_name_tool -add_rpath ${luajit}/lib $exe 161 161 install_name_tool -add_rpath ${tcl}/lib $exe 162 - install_name_tool -add_rpath ${python37}/lib $exe 162 + install_name_tool -add_rpath ${python3}/lib $exe 163 163 install_name_tool -add_rpath $libperl $exe 164 164 install_name_tool -add_rpath ${ruby}/lib $exe 165 165
+4 -4
pkgs/applications/emulators/rpcs3/default.nix
··· 9 9 10 10 let 11 11 # Keep these separate so the update script can regex them 12 - rpcs3GitVersion = "14568-1852b370d"; 13 - rpcs3Version = "0.0.26-14568-1852b370d"; 14 - rpcs3Revision = "1852b370d7a8310de092ca4132464c84192671cb"; 15 - rpcs3Sha256 = "0yqvn5w9b4lxb43lllqch0s1sdj5v274hhbysgblbc7nilzcgsq6"; 12 + rpcs3GitVersion = "14599-d3183708e"; 13 + rpcs3Version = "0.0.26-14599-d3183708e"; 14 + rpcs3Revision = "d3183708e81ba2707d39829cc1c0cb226dd9e50e"; 15 + rpcs3Sha256 = "0lx9v614r9afmfknw9qdwawwayg3z0fj6chbhnfghm2j2zgqqbpi"; 16 16 17 17 ittapi = fetchFromGitHub { 18 18 owner = "intel";
-2
pkgs/applications/graphics/shotwell/default.nix
··· 30 30 , wrapGAppsHook 31 31 , gobject-introspection 32 32 , itstool 33 - , libchamplain 34 33 , libsecret 35 34 , gsettings-desktop-schemas 36 35 , python3 ··· 86 85 librest 87 86 gcr 88 87 gnome.adwaita-icon-theme 89 - libchamplain 90 88 libsecret 91 89 ]; 92 90
+2 -2
pkgs/applications/misc/ablog/default.nix
··· 6 6 7 7 buildPythonApplication rec { 8 8 pname = "ablog"; 9 - version = "0.10.29"; 9 + version = "0.10.33"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - sha256 = "sha256-q2zoXCmnzzjXSBGFKzondOQRz7CjZp0wCiXxbgpXHIA="; 13 + sha256 = "sha256-vCkLX64aPAem0QvKI1iUNAHWEJZlAOIb1DA9U7xPJkU="; 14 14 }; 15 15 16 16 propagatedBuildInputs = [
+2 -2
pkgs/applications/misc/clight/clightd.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "clightd"; 13 - version = "5.6"; 13 + version = "5.7"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "FedeDP"; 17 17 repo = "Clightd"; 18 18 rev = version; 19 - sha256 = "sha256-PxYOI/2ZOz3JSGCPIXfm3WfGZ19D8JhhdNS3FVuXus8="; 19 + sha256 = "sha256-4daM6Z67d52v2LmzqSZ6RSAHznyZNEqvAdWCuVFi0Kw="; 20 20 }; 21 21 22 22 # dbus-1.pc has datadir=/etc
+2 -2
pkgs/applications/misc/clight/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "clight"; 9 - version = "4.8"; 9 + version = "4.9"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "FedeDP"; 13 13 repo = "Clight"; 14 14 rev = version; 15 - sha256 = "sha256-nDI5Rq1iPVkj25HRpxmS9zxNDUy+9YsSwbZnEwYt86E="; 15 + sha256 = "sha256-m1oKjyy7fMK6mIf5FRuWCbfAM8qlHXRR/rwHsCZADiY="; 16 16 }; 17 17 18 18 # dbus-1.pc has datadir=/etc
+2 -2
pkgs/applications/misc/klayout/default.nix
··· 5 5 6 6 mkDerivation rec { 7 7 pname = "klayout"; 8 - version = "0.27.11"; 8 + version = "0.28.3"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "KLayout"; 12 12 repo = "klayout"; 13 13 rev = "v${version}"; 14 - hash = "sha256-w3ag+TPUrjPbPIy6N4HPsfraOyoHqBbvjwB1M6+qh60="; 14 + hash = "sha256-keC+QLV/iEEGFDdy/Vt2pCr55qbqQzcx3HokdDi+xSU="; 15 15 }; 16 16 17 17 postPatch = ''
+8 -3
pkgs/applications/misc/p2pool/default.nix
··· 11 11 , openssl 12 12 , pkg-config 13 13 , zeromq 14 + , darwin 14 15 }: 15 16 17 + let 18 + inherit (darwin.apple_sdk.frameworks) Foundation; 19 + in 16 20 stdenv.mkDerivation rec { 17 21 pname = "p2pool"; 18 - version = "2.4"; 22 + version = "2.7"; 19 23 20 24 src = fetchFromGitHub { 21 25 owner = "SChernykh"; 22 26 repo = "p2pool"; 23 27 rev = "v${version}"; 24 - sha256 = "sha256-En2ogxAD61w7DRTsCGIp6fEP/cC2A+pTYIbjeJ1MktY="; 28 + sha256 = "sha256-j3SVwat/LGw/iGcyNn8acR29Ob/WXDKyeCfDTsH+gxA="; 25 29 fetchSubmodules = true; 26 30 }; 27 31 28 32 nativeBuildInputs = [ cmake pkg-config ]; 29 - buildInputs = [ libuv zeromq libsodium gss hwloc openssl curl ]; 33 + buildInputs = [ libuv zeromq libsodium gss hwloc openssl curl ] 34 + ++ lib.optionals stdenv.isDarwin [ Foundation ]; 30 35 31 36 installPhase = '' 32 37 runHook preInstall
+3 -3
pkgs/applications/misc/writefreely/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "writefreely"; 5 - version = "0.13.1"; 5 + version = "0.13.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "writeas"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-qYceijC/u8G9vr7uhApWWyWD9P65pLJCTjePEvh+oXA="; 11 + sha256 = "sha256-GnuqYgiwXdKM+os5RzuUYe9ADOhZaxou5dD7GCEE1Ns="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-CBPvtc3K9hr1oEmC+yUe3kPSWx20k6eMRqoxsf3NfCE="; 14 + vendorSha256 = "sha256-IBer+8FP+IWWJPnaugr8zzQA9mSVFzP0Nofgl/PhtzQ="; 15 15 16 16 nativeBuildInputs = [ go-bindata ]; 17 17
+2 -2
pkgs/applications/misc/xmrig/moneroocean.nix
··· 2 2 3 3 xmrig.overrideAttrs (oldAttrs: rec { 4 4 pname = "xmrig-mo"; 5 - version = "6.18.0-mo1"; 5 + version = "6.18.1-mo1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "MoneroOcean"; 9 9 repo = "xmrig"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-Ma5wXaQBAVWJsL2wVOHxQ2aSAG9wOywk/abtUi03JvY="; 11 + sha256 = "sha256-ZHSDJLZ+5WTqJwSWT05VuN7VAK/aD0dimVFiZ39IWvg="; 12 12 }; 13 13 14 14 meta = with lib; {
+3 -3
pkgs/applications/networking/cluster/civo/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "civo"; 5 - version = "1.0.41"; 5 + version = "1.0.45"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "civo"; 9 9 repo = "cli"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-dvbxxW+UyTA+EzBV6g9JRao8D6ZE5hhXLX4q/mmPIQg="; 11 + sha256 = "sha256-wYZC4eEvxvHgtb0l+kpP2msQgt8InJu59lgS5cwGxRI="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-gBVSpjoAfbxlJnlrFrsBupJgVQ59sh1ipOry0Mgppig="; 14 + vendorHash = "sha256-42ZTPl4kI+dgr78s9WvLFchQU9uvkMkkio53REjvpbw="; 15 15 16 16 nativeBuildInputs = [ installShellFiles ]; 17 17
+3 -3
pkgs/applications/networking/cluster/levant/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "levant"; 5 - version = "0.3.1"; 5 + version = "0.3.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "hashicorp"; 9 9 repo = "levant"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ujybD4nSHC/w2Pfu43eSO6rNJjXFAvc81T05icWFvbs="; 11 + sha256 = "sha256-UI8PVvTqk8D4S9kq3sgxrm8dkRokpgkLyTN6pzUXNV0="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-pKxj0qz7adSuPpiXu4+2KBO3JZu8zZ8ycPF5LosF4T8="; 14 + vendorSha256 = "sha256-MzKttGfuIg0Pp/iz68EpXuk4I+tFozhIabKlsWuvJ48="; 15 15 16 16 # The tests try to connect to a Nomad cluster. 17 17 doCheck = false;
+3 -3
pkgs/applications/networking/cluster/starboard/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "starboard"; 5 - version = "0.15.10"; 5 + version = "0.15.11"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "aquasecurity"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-SuOfRLCEASgiLsy0xeuA1z55+vSMb4VGZuk+OVLSWJA="; 11 + sha256 = "sha256-HgMGwumLL0z3l1/UEoJleoKsErFvznddFc9mJuco9fA="; 12 12 # populate values that require us to use git. By doing this in postFetch we 13 13 # can delete .git afterwards and maintain better reproducibility of the src. 14 14 leaveDotGit = true; ··· 20 20 find "$out" -name .git -print0 | xargs -0 rm -rf 21 21 ''; 22 22 }; 23 - vendorSha256 = "sha256-uTDeYzq8XyjHHXfPQzN/ipHfqsPweedKhQQ8CkvqKIM="; 23 + vendorSha256 = "sha256-WThZpum6sEYyDkwGKo3onMLy6hpmMJ/o6+5olX5nEjk="; 24 24 25 25 nativeBuildInputs = [ installShellFiles ]; 26 26
+3 -3
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 433 433 "vendorHash": null 434 434 }, 435 435 "gitlab": { 436 - "hash": "sha256-RCN4CRFffg1rhyNACo/5ebVzbvsUXf6otDRuxlF8RoM=", 436 + "hash": "sha256-bCF6BLuzjUZToZKerfsGcav4DD6AWwOrlELxQKygHv4=", 437 437 "homepage": "https://registry.terraform.io/providers/gitlabhq/gitlab", 438 438 "owner": "gitlabhq", 439 439 "repo": "terraform-provider-gitlab", 440 - "rev": "v15.7.1", 440 + "rev": "v15.8.0", 441 441 "spdx": "MPL-2.0", 442 - "vendorHash": "sha256-7XiZP51K/S5Al+VNJw4NcqzkMeqs2iSHCOlNAI4+id4=" 442 + "vendorHash": "sha256-aVbJT31IIgW0GYzwVX7kT4j7E+dadSbnttThh2lzGyE=" 443 443 }, 444 444 "google": { 445 445 "hash": "sha256-/UgxXHucsrt960zLQiPruqJLxjFriTrNKjeI1gNEWys=",
+2 -2
pkgs/applications/networking/cluster/tilt/default.nix
··· 5 5 /* Do not use "dev" as a version. If you do, Tilt will consider itself 6 6 running in development environment and try to serve assets from the 7 7 source tree, which is not there once build completes. */ 8 - version = "0.30.9"; 8 + version = "0.30.13"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "tilt-dev"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-vZthFaIsgpZ2aap9kRSH//AHHnOpekPIkwpz9Tt0lI4="; 14 + sha256 = "sha256-W67aQIXp2TOtZuccjQUGC9gNtvdyUNWuU7VM2LOFkCg="; 15 15 }; 16 16 vendorSha256 = null; 17 17
+2 -2
pkgs/applications/networking/cluster/vcluster/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "vcluster"; 5 - version = "0.12.2"; 5 + version = "0.12.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "loft-sh"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-PkayQ1sLjnA+1Xatgs0EvZTCTfWV5uoYYtnKX8OAwYQ="; 11 + sha256 = "sha256-7yyOpF/eIeJinTe0sHPWLLBUbKYDhphmW8qkOdYOdXM="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+3 -3
pkgs/applications/networking/feedreaders/goeland/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "goeland"; 8 - version = "0.12.3"; 8 + version = "0.13.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "slurdge"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-R3ZkGTq0g90DkflLXr2MUBIv5Qspi3OM+sdDGqJYjyw="; 14 + sha256 = "sha256-MD8wdXOZ8Kmun8AYv/zlRKwgAcGu2A349Xr8d7SVX4s="; 15 15 }; 16 16 17 - vendorSha256 = "sha256-iljGBe8c6dqEHRpMN5cz7wmminejoiXXDKuQDazDztA="; 17 + vendorHash = "sha256-BErLmtzgVqDKLFAnKugDBwj3Vgm8rM6BfWcMOhu4SWY="; 18 18 19 19 ldflags = [ 20 20 "-s"
+3 -1
pkgs/applications/office/fava/default.nix
··· 10 10 sha256 = "sha256-Uw8UIJa+Dtsy+o31I1ynLyhZrFNX42NFRXu1O2ISbzU="; 11 11 }; 12 12 13 - nativeBuildInputs = with python3.pkgs; [ setuptools-scm ]; 13 + pythonRelaxDeps = [ "cheroot" ]; 14 + 15 + nativeBuildInputs = with python3.pkgs; [ setuptools-scm pythonRelaxDepsHook ]; 14 16 15 17 propagatedBuildInputs = with python3.pkgs; [ 16 18 babel
+2 -2
pkgs/applications/science/biology/bowtie2/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "bowtie2"; 5 - version = "2.4.5"; 5 + version = "2.5.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "BenLangmead"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-xCsTkQXrZS+Njn0YfidhPln+OwVfTXOqbtB0dCfTP2U="; 11 + sha256 = "sha256-HaiZmWU6akHXJVWBmCvkG2E61NDrAP7UIxx9DNCEZqE="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/applications/science/math/gretl/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "gretl"; 6 - version = "2022b"; 6 + version = "2022c"; 7 7 8 8 src = fetchurl { 9 9 url = "mirror://sourceforge/gretl/${pname}-${version}.tar.xz"; 10 - sha256 = "sha256-A+LyWPSUBBvnnyBrVSAUCiny24UAztUwy1nmRoDaGjI="; 10 + sha256 = "sha256-4QAQTNqbfIX6K3CdtKcVONtCWrkTRvGl2ZXGR1eyQdA="; 11 11 }; 12 12 13 13 buildInputs = [
+9 -1
pkgs/applications/science/misc/megam/default.nix
··· 12 12 13 13 patches = [ ./ocaml-includes.patch ./ocaml-3.12.patch ]; 14 14 15 + postPatch = '' 16 + # Deprecated in ocaml 3.10 https://github.com/ocaml/ocaml/commit/f6190f3d0c49c5220d443ee8d03ca5072d68aa87 17 + # Deprecated in ocaml 3.08 https://github.com/ocaml/ocaml/commit/0c7aecb88dc696f66f49f3bed54a037361a26b8d 18 + substituteInPlace fastdot_c.c --replace copy_double caml_copy_double --replace Bigarray_val Caml_ba_array_val --replace caml_bigarray caml_ba_array 19 + # They were already deprecated in 3.12 https://v2.ocaml.org/releases/3.12/htmlman/libref/Array.html 20 + substituteInPlace abffs.ml main.ml --replace create_matrix make_matrix 21 + substituteInPlace intHashtbl.ml --replace Array.create Array.make 22 + ''; 15 23 strictDeps = true; 16 24 17 25 nativeBuildInputs = [ makeWrapper ocaml ]; ··· 20 28 21 29 makeFlags = [ 22 30 "CAML_INCLUDES=${ocaml}/lib/ocaml/caml" 23 - "WITHBIGARRAY=bigarray.cma" 31 + ("WITHBIGARRAY=" + lib.optionalString (lib.versionOlder ocaml.version "4.08.0") "bigarray.cma") 24 32 ]; 25 33 26 34 # see https://bugzilla.redhat.com/show_bug.cgi?id=435559
+1 -1
pkgs/applications/science/misc/megam/ocaml-includes.patch
··· 15 15 16 16 #WITHCLIBS =-I /usr/lib/ocaml/3.09.2/caml 17 17 -WITHCLIBS =-I /usr/lib/ocaml/caml 18 - +WITHCLIBS =-I $(CAML_INCLUDES) 18 + +WITHCLIBS =-I $(CAML_INCLUDES) -I +unix -I +str 19 19 20 20 ################ End of user's variables ##################### 21 21
+2 -2
pkgs/applications/science/robotics/mavproxy/default.nix
··· 4 4 5 5 buildPythonApplication rec { 6 6 pname = "MAVProxy"; 7 - version = "1.8.57"; 7 + version = "1.8.59"; 8 8 9 9 src = fetchPypi { 10 10 inherit pname version; 11 - sha256 = "sha256-tsx3oVXPIa3OtbLWj3QWrW9leL9/jsdbbLG+Wd3nxn4="; 11 + sha256 = "sha256-XY0d9q4nSuPflN4ZX+nT4RKFy6i4Cd2lNWvWaJQzWW8="; 12 12 }; 13 13 14 14 postPatch = ''
-147
pkgs/desktops/gnome/core/empathy/default.nix
··· 1 - { lib, stdenv 2 - , intltool 3 - , fetchurl 4 - , webkitgtk 5 - , pkg-config 6 - , gtk3 7 - , glib 8 - , file 9 - , librsvg 10 - , gnome 11 - , gdk-pixbuf 12 - , python3 13 - , telepathy-glib 14 - , telepathy-farstream 15 - , clutter-gtk 16 - , clutter-gst 17 - , gst_all_1 18 - , cogl 19 - , gnome-online-accounts 20 - , gcr 21 - , libsecret 22 - , folks 23 - , libpulseaudio 24 - , telepathy-mission-control 25 - , telepathy-logger 26 - , libnotify 27 - , clutter 28 - , libsoup 29 - , gnutls 30 - , evolution-data-server 31 - , yelp-xsl 32 - , libcanberra-gtk3 33 - , p11-kit 34 - , farstream 35 - , libtool 36 - , shared-mime-info 37 - , wrapGAppsHook 38 - , itstool 39 - , libxml2 40 - , libxslt 41 - , icu 42 - , libgee 43 - , gsettings-desktop-schemas 44 - , isocodes 45 - , enchant 46 - , libchamplain 47 - , geoclue2 48 - , geocode-glib 49 - , cheese 50 - , libgudev 51 - }: 52 - 53 - stdenv.mkDerivation rec { 54 - pname = "empathy"; 55 - version = "3.25.90"; 56 - 57 - src = fetchurl { 58 - url = "mirror://gnome/sources/empathy/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 59 - sha256 = "0sn10fcymc6lyrabk7vx8lpvlaxxkqnmcwj9zdkfa8qf3388k4nc"; 60 - }; 61 - 62 - propagatedBuildInputs = [ 63 - (folks.override { telepathySupport = true; }) 64 - telepathy-logger 65 - evolution-data-server 66 - telepathy-mission-control 67 - ]; 68 - 69 - nativeBuildInputs = [ 70 - pkg-config 71 - libtool 72 - intltool 73 - itstool 74 - file 75 - wrapGAppsHook 76 - libxml2 77 - libxslt 78 - yelp-xsl 79 - python3 80 - ]; 81 - 82 - buildInputs = [ 83 - gtk3 84 - glib 85 - webkitgtk 86 - icu 87 - gnome-online-accounts 88 - telepathy-glib 89 - clutter-gtk 90 - clutter-gst 91 - cogl 92 - gst_all_1.gstreamer 93 - gst_all_1.gst-plugins-base 94 - gcr 95 - libsecret 96 - libpulseaudio 97 - gdk-pixbuf 98 - libnotify 99 - clutter 100 - libsoup 101 - gnutls 102 - libgee 103 - p11-kit 104 - libcanberra-gtk3 105 - telepathy-farstream 106 - farstream 107 - gnome.adwaita-icon-theme 108 - gsettings-desktop-schemas 109 - librsvg 110 - 111 - # Spell-checking 112 - enchant 113 - isocodes 114 - 115 - # Display maps, location awareness, geocode support 116 - libchamplain 117 - geoclue2 118 - geocode-glib 119 - 120 - # Cheese webcam support, camera monitoring 121 - cheese 122 - libgudev 123 - ]; 124 - 125 - enableParallelBuilding = true; 126 - 127 - preFixup = '' 128 - gappsWrapperArgs+=( 129 - --prefix XDG_DATA_DIRS : "${shared-mime-info}/share" 130 - ) 131 - ''; 132 - 133 - passthru = { 134 - updateScript = gnome.updateScript { 135 - packageName = "empathy"; 136 - versionPolicy = "none"; 137 - }; 138 - }; 139 - 140 - meta = with lib; { 141 - homepage = "https://wiki.gnome.org/Apps/Empathy"; 142 - description = "Messaging program which supports text, voice, video chat, and file transfers over many different protocols"; 143 - maintainers = teams.gnome.members; 144 - license = [ licenses.gpl2 ]; 145 - platforms = platforms.linux; 146 - }; 147 - }
+1 -2
pkgs/desktops/gnome/default.nix
··· 23 23 24 24 dconf-editor = callPackage ./core/dconf-editor { }; 25 25 26 - empathy = callPackage ./core/empathy { }; 27 - 28 26 epiphany = callPackage ./core/epiphany { }; 29 27 30 28 evince = callPackage ./core/evince { }; # ToDo: dbus would prevent compilation, enable tests ··· 264 262 }) // lib.optionalAttrs config.allowAliases { 265 263 #### Legacy aliases. They need to be outside the scope or they will shadow the attributes from parent scope. 266 264 265 + empathy = throw "The ‘gnome.empathy’ package was removed as it is unmaintained and no longer launches due to libsoup3 migration."; # added 2023-01-20 267 266 gnome-desktop = throw "The ‘gnome.gnome-desktop’ alias was removed. Please use ‘pkgs.gnome-desktop’ directly."; # converted to throw on 2022-10-26 268 267 gnome-todo = pkgs.endeavour; # added 2022-07-30 269 268 libgnome-games-support = throw "The ‘gnome.libgnome-games-support’ alias was removed. Please use ‘pkgs.libgnome-games-support’ directly."; # converted to throw on 2022-10-26
+2 -2
pkgs/development/compilers/p4c/default.nix
··· 27 27 in 28 28 stdenv.mkDerivation rec { 29 29 pname = "p4c"; 30 - version = "1.2.3.2"; 30 + version = "1.2.3.5"; 31 31 32 32 src = fetchFromGitHub { 33 33 owner = "p4lang"; 34 34 repo = "p4c"; 35 35 rev = "v${version}"; 36 - sha256 = "sha256-EeTYH7CsmPPBL05zJ+g4aM677n0NqDD+H40lBuKpY6M="; 36 + sha256 = "sha256-5wDwHj+1X6HhhiLfEbOzijpZH6GwpTPEKgNh3iIGTWY="; 37 37 fetchSubmodules = true; 38 38 }; 39 39
+2 -2
pkgs/development/compilers/tvm/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "tvm"; 5 - version = "0.9.0"; 5 + version = "0.10.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "apache"; 9 9 repo = "incubator-tvm"; 10 10 rev = "v${version}"; 11 11 fetchSubmodules = true; 12 - sha256 = "sha256-lzLrd4vNK1c7BwWS0H5x1uDdZ3moUl+zWHb8G6gs8hw="; 12 + sha256 = "sha256-v3F+qncs3PFkRllrdWvrle/ofg9thX4BJlvILQz9B6A="; 13 13 }; 14 14 15 15 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/guile-modules/guile-sdl2/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "guile-sdl2"; 15 - version = "0.7.0"; 15 + version = "0.8.0"; 16 16 17 17 src = fetchurl { 18 18 url = "https://files.dthompson.us/${pname}/${pname}-${version}.tar.gz"; 19 - hash = "sha256-h0osCURnYTUQFrKw0i7Jd+QCI8piR1NUE2lbxPv87aQ="; 19 + hash = "sha256-V/XrpFrqOxS5mAphtIt2e3ewflK+HdLFEqOmix98p+w="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
-20
pkgs/development/interpreters/python/cpython/docs/3.7-html.nix
··· 1 - # This file was generated and will be overwritten by ./generate.sh 2 - 3 - { stdenv, fetchurl, lib }: 4 - 5 - stdenv.mkDerivation rec { 6 - pname = "python37-docs-html"; 7 - version = "3.7.2"; 8 - 9 - src = fetchurl { 10 - url = "http://docs.python.org/ftp/python/doc/${version}/python-${version}-docs-html.tar.bz2"; 11 - sha256 = "19wbrawpdam09fmyipfy92sxwn1rl93v8jkfqsfx028qhvzf0422"; 12 - }; 13 - installPhase = '' 14 - mkdir -p $out/share/doc/python37 15 - cp -R ./ $out/share/doc/python37/html 16 - ''; 17 - meta = { 18 - maintainers = [ ]; 19 - }; 20 - }
-20
pkgs/development/interpreters/python/cpython/docs/3.7-pdf-a4.nix
··· 1 - # This file was generated and will be overwritten by ./generate.sh 2 - 3 - { stdenv, fetchurl, lib }: 4 - 5 - stdenv.mkDerivation rec { 6 - pname = "python37-docs-pdf-a4"; 7 - version = "3.7.2"; 8 - 9 - src = fetchurl { 10 - url = "http://docs.python.org/ftp/python/doc/${version}/python-${version}-docs-pdf-a4.tar.bz2"; 11 - sha256 = "0vdx762m30hjaabn6w88awcj2qpbz0b6z59zn9wmamd35k59lfba"; 12 - }; 13 - installPhase = '' 14 - mkdir -p $out/share/doc/python37 15 - cp -R ./ $out/share/doc/python37/pdf-a4 16 - ''; 17 - meta = { 18 - maintainers = [ ]; 19 - }; 20 - }
-20
pkgs/development/interpreters/python/cpython/docs/3.7-pdf-letter.nix
··· 1 - # This file was generated and will be overwritten by ./generate.sh 2 - 3 - { stdenv, fetchurl, lib }: 4 - 5 - stdenv.mkDerivation rec { 6 - pname = "python37-docs-pdf-letter"; 7 - version = "3.7.2"; 8 - 9 - src = fetchurl { 10 - url = "http://docs.python.org/ftp/python/doc/${version}/python-${version}-docs-pdf-letter.tar.bz2"; 11 - sha256 = "17g57vlyvqx0k916q84q2pcx7y8myw0fda9fvg9kh0ph930c837x"; 12 - }; 13 - installPhase = '' 14 - mkdir -p $out/share/doc/python37 15 - cp -R ./ $out/share/doc/python37/pdf-letter 16 - ''; 17 - meta = { 18 - maintainers = [ ]; 19 - }; 20 - }
-20
pkgs/development/interpreters/python/cpython/docs/3.7-text.nix
··· 1 - # This file was generated and will be overwritten by ./generate.sh 2 - 3 - { stdenv, fetchurl, lib }: 4 - 5 - stdenv.mkDerivation rec { 6 - pname = "python37-docs-text"; 7 - version = "3.7.2"; 8 - 9 - src = fetchurl { 10 - url = "http://docs.python.org/ftp/python/doc/${version}/python-${version}-docs-text.tar.bz2"; 11 - sha256 = "0h50rlr8jclwfxa106b42q2vn2ynp219c4zsy5qz65n5m3b7y1g2"; 12 - }; 13 - installPhase = '' 14 - mkdir -p $out/share/doc/python37 15 - cp -R ./ $out/share/doc/python37/text 16 - ''; 17 - meta = { 18 - maintainers = [ ]; 19 - }; 20 - }
+2 -2
pkgs/development/libraries/alembic/default.nix
··· 3 3 stdenv.mkDerivation rec 4 4 { 5 5 pname = "alembic"; 6 - version = "1.8.3"; 6 + version = "1.8.4"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "alembic"; 10 10 repo = "alembic"; 11 11 rev = version; 12 - sha256 = "sha256-QnqUD8KmMDmEZ1REoKN70SwVICOdyGPZsB/lU9nojj4="; 12 + sha256 = "sha256-8dQhOQN0t2Y2kC2wOpQUqbu6Woy4DUmiLqXjf1D+mxE="; 13 13 }; 14 14 15 15 outputs = [ "bin" "dev" "out" "lib" ];
+2 -2
pkgs/development/libraries/gensio/default.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "gensio"; 11 - version = "2.5.5"; 11 + version = "2.6.2"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "cminyard"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-K2A61OflKdVVzdV8qH5x/ggZKa4i8yvs5bdPoOwmm7A="; 17 + sha256 = "sha256-lpP/pmM06zIw+9EZe+zywExLOcrN3K7IMK32XSrCmYs="; 18 18 }; 19 19 20 20 passthru = {
+1 -1
pkgs/development/libraries/gperftools/default.nix
··· 52 52 meta = with lib; { 53 53 homepage = "https://github.com/gperftools/gperftools"; 54 54 description = "Fast, multi-threaded malloc() and nifty performance analysis tools"; 55 - platforms = with platforms; linux ++ darwin; 55 + platforms = platforms.all; 56 56 license = licenses.bsd3; 57 57 maintainers = with maintainers; [ vcunat ]; 58 58 };
+2 -2
pkgs/development/libraries/hamlib/4.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "hamlib"; 23 - version = "4.4"; 23 + version = "4.5.2"; 24 24 25 25 src = fetchurl { 26 26 url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz"; 27 - sha256 = "sha256-i/AQewcfUvCFh/OOLe6KeEjeE0NDWzJvj2bZXh+KJIc="; 27 + sha256 = "sha256-Wg+eky/+LTlx4HtUSqYr7D5JTnP/HOPKM/oNiOGZsGE="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/libosmium/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libosmium"; 5 - version = "2.18.0"; 5 + version = "2.19.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "osmcode"; 9 9 repo = "libosmium"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-IPdaBT6hRNHo8kuOsiKdyiQkRxA/l+44U3qGGG89BTo="; 11 + sha256 = "sha256-R7kOhQFfGYuHNkIZV4BTE+WKjHnCJwKeIWjCJNrvyTQ="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/lyra/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "lyra"; 5 - version = "1.6"; 5 + version = "1.6.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "bfgroup"; 9 9 repo = "lyra"; 10 10 rev = version; 11 - sha256 = "sha256-5k4b1JVrGDmT65tSWo6AkqvNpN+6n8wZgqEuXLL7stI="; 11 + sha256 = "sha256-tS2SPLiKaL8C35AmOXyJPstFUfynkE/A53rurqiySbI="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ meson ninja ];
+2 -2
pkgs/development/libraries/nuraft/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "nuraft"; 5 - version = "1.3.0"; 5 + version = "2.1.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "eBay"; 9 9 repo = "NuRaft"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-Fyy9B5CXyMcDSOdqaeJ4ejo1svM90ESXuNL0rzsTZpE="; 11 + sha256 = "sha256-puO8E7tSLqB0oq/NlzEZqQgIZKm7ZUb4HhR0XuI9dco="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/redis-plus-plus/default.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "redis-plus-plus"; 11 - version = "1.3.5"; 11 + version = "1.3.7"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "sewenew"; 15 15 repo = "redis-plus-plus"; 16 16 rev = version; 17 - sha256 = "sha256-5tjadh3Ku7lrJn4tbi8TjTH6N0+QB2ER9xuO51cK/LU="; 17 + sha256 = "sha256-QCNN85syxw2EGPdyTV3bL0txcHl7t2YhsKwK9lgnexY="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/simgear/default.nix
··· 4 4 , curl 5 5 }: 6 6 let 7 - version = "2020.3.14"; 7 + version = "2020.3.17"; 8 8 shortVersion = builtins.substring 0 6 version; 9 9 in 10 10 stdenv.mkDerivation rec { ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://sourceforge/flightgear/release-${shortVersion}/${pname}-${version}.tar.bz2"; 16 - sha256 = "sha256-NbpHn1e9+TD+9/iSFBw16/CQMXYx3D/aSDhkSGdBT3Q="; 16 + sha256 = "sha256-TF6c0Nz/G9MRwkYKpgEjC9gKvbrsdRtVnB1xR3SfN3w="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/python-modules/airthings-ble/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "airthings-ble"; 12 - version = "0.5.4"; 12 + version = "0.5.5"; 13 13 format = "pyproject"; 14 14 15 15 disabled = pythonOlder "3.9"; ··· 18 18 owner = "vincegio"; 19 19 repo = pname; 20 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-eN0JSbzsB/KOkPTbjmc0X5IWf2yg004fNqGhdC2siFQ="; 21 + hash = "sha256-A1YsYOquDUDGeEI4xzQSjEk1H92Jjlhsb5IPRt0lM2c="; 22 22 }; 23 23 24 24 postPatch = ''
+4 -2
pkgs/development/python-modules/flux-led/default.nix
··· 1 1 { lib 2 + , async-timeout 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , webcolors ··· 8 9 9 10 buildPythonPackage rec { 10 11 pname = "flux-led"; 11 - version = "0.28.34"; 12 + version = "0.28.35"; 12 13 format = "setuptools"; 13 14 14 15 disabled = pythonOlder "3.7"; ··· 17 18 owner = "Danielhiversen"; 18 19 repo = "flux_led"; 19 20 rev = "refs/tags/${version}"; 20 - hash = "sha256-bIL9ivjCLKeTLK3n0ytgGkXQggsuDiMCY7kAtE81qfY="; 21 + hash = "sha256-+MbcI/gcoQOpfL77AyA0rZBP5OgP87gSDt4e5pjriqY="; 21 22 }; 22 23 23 24 propagatedBuildInputs = [ 25 + async-timeout 24 26 webcolors 25 27 ]; 26 28
+4 -3
pkgs/development/python-modules/python-bsblan/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "python-bsblan"; 18 - version = "0.5.8"; 18 + version = "0.5.9"; 19 19 format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.9"; ··· 23 23 src = fetchFromGitHub { 24 24 owner = "liudger"; 25 25 repo = pname; 26 - rev = "v${version}"; 27 - hash = "sha256-pLqX+gbY71OsLflTyDuL4revj5dXol//eTFVy8iT9O4="; 26 + rev = "refs/tags/v${version}"; 27 + hash = "sha256-9WXj/zFFzPr3YabdEYN+Xn/IwKplPFdHAFDB2S2JUEI="; 28 28 }; 29 29 30 30 nativeBuildInputs = [ ··· 58 58 meta = with lib; { 59 59 description = "Module to control and monitor an BSBLan device programmatically"; 60 60 homepage = "https://github.com/liudger/python-bsblan"; 61 + changelog = "https://github.com/liudger/python-bsblan/releases/tag/v${version}"; 61 62 license = with licenses; [ mit ]; 62 63 maintainers = with maintainers; [ fab ]; 63 64 };
+2 -2
pkgs/development/python-modules/pytrafikverket/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pytrafikverket"; 12 - version = "0.2.2"; 12 + version = "0.2.3"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-NWQHrdTKb3RQ7ZjXpHyQ5qPPXuZUU7G+FvBx1VQEbss="; 19 + hash = "sha256-bbg1FzzJ3cJIbV+u3Ih70hkgu23Joxc1xeLELiRYt8g="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/yalexs-ble/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "yalexs-ble"; 16 - version = "1.12.5"; 16 + version = "1.12.7"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.9"; ··· 22 22 owner = "bdraco"; 23 23 repo = pname; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-wofdqwgMbwxUgUVwBT44qbD4m0q0CtmGH7AxRNMBMbE="; 25 + hash = "sha256-f2JrUzgSPbko/H7n6IYiw3nLU9SkIH8BgSEyMlGppok="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+2 -2
pkgs/development/ruby-modules/bundler/default.nix
··· 4 4 inherit ruby; 5 5 name = "${gemName}-${version}"; 6 6 gemName = "bundler"; 7 - version = "2.4.4"; 8 - source.sha256 = "sha256-gwAxWVkd9nptMRtaZc++8PmJZdIDVr66wUv1xi1NPJ0="; 7 + version = "2.4.5"; 8 + source.sha256 = "sha256-Wvj6rwlmbVnM3xqORh8Xu8XE5Jutstyu4XRln4yH1Eo="; 9 9 dontPatchShebangs = true; 10 10 11 11 postFixup = ''
+4 -1
pkgs/development/ruby-modules/gem-config/default.nix
··· 370 370 # otherwise the gem will fail to link to the libv8 binary. 371 371 # see: https://github.com/cowboyd/libv8/pull/161 372 372 libv8 = attrs: { 373 - buildInputs = [ which v8 python3 ]; 373 + buildInputs = [ which v8 python2 ]; 374 374 buildFlags = [ "--with-system-v8=true" ]; 375 375 dontBuild = false; 376 376 # The gem includes broken symlinks which are ignored during unpacking, but ··· 384 384 --replace "location = Libv8::Location::Vendor.new" \ 385 385 "location = Libv8::Location::System.new" 386 386 ''; 387 + meta.broken = true; # At 2023-01-20, errors as: 388 + # "Failed to build gem native extension." 389 + # Requires Python 2. Project is abandoned. 387 390 }; 388 391 389 392 execjs = attrs: {
+2 -2
pkgs/development/tools/flyway/default.nix
··· 1 1 { lib, stdenv, fetchurl, jre_headless, makeWrapper }: 2 2 stdenv.mkDerivation rec{ 3 3 pname = "flyway"; 4 - version = "9.7.0"; 4 + version = "9.12.0"; 5 5 src = fetchurl { 6 6 url = "mirror://maven/org/flywaydb/flyway-commandline/${version}/flyway-commandline-${version}.tar.gz"; 7 - sha256 = "sha256-HXLwC5T+hPbUTf4grKjCnhIMpqsFAz5yK6kH4XicLG8="; 7 + sha256 = "sha256-8Zx+0lWaPAgPhxcvb84FzT2z58yAwDDLHegtXpRTr5M="; 8 8 }; 9 9 nativeBuildInputs = [ makeWrapper ]; 10 10 dontBuild = true;
+3 -3
pkgs/development/tools/goa/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "goa"; 8 - version = "3.10.0"; 8 + version = "3.10.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "goadesign"; 12 12 repo = "goa"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-Z/J1L6fYuim6LkVh+LDrr3FLTZO7uQwHXRg0YTofkWA="; 14 + sha256 = "sha256-cVCzuOZf2zFY01+t20sRArEFinWqvZ461jJIQIyf0yI="; 15 15 }; 16 - vendorSha256 = "sha256-r/1huS/6qqS6TuqPQkwqKuYwye5DYQWYfBS1IcXWRgk="; 16 + vendorSha256 = "sha256-xLn7qGmBtNSnIZ7Gn4h/Aa037V0lO1jT/8P9PB7bH5o="; 17 17 18 18 subPackages = [ "cmd/goa" ]; 19 19
+2 -2
pkgs/development/tools/misc/cli11/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "cli11"; 13 - version = "2.3.0"; 13 + version = "2.3.2"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "CLIUtils"; 17 17 repo = "CLI11"; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-J/hOgCDQPI0n2BGJK0+HIwlfNDVaZcxCC45uFAR7JUc="; 19 + sha256 = "sha256-x3/kBlf5LdzkTO4NYOKanZBfcU4oK+fJw9L7cf88LsY="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/tools/misc/libwhich/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libwhich"; 5 - version = "1.1.0"; 5 + version = "1.2.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "vtjnash"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "0s0pqai61jszmi495k621rdlf288ij67adkz72hwqqarqp54idhb"; 11 + sha256 = "sha256-JNIWdI12sL3TZqVA3GeH0KbgqFDbMsEdecea3392Goc="; 12 12 }; 13 13 14 14 installPhase = ''
+25
pkgs/development/tools/rust/cargo-careful/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "cargo-careful"; 8 + version = "0.2.4"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "RalfJung"; 12 + repo = "cargo-careful"; 13 + rev = "v${version}"; 14 + hash = "sha256-kKF/Fp6RCF9PUdgqeo2e4vLVhl8+5M4oa0Q18ZdXJRc="; 15 + }; 16 + 17 + cargoHash = "sha256-rhTi4rHfU+ZgNAMXSX7r5k3NfMUPNjHIUDs6FzeqcWk="; 18 + 19 + meta = with lib; { 20 + description = "A tool to execute Rust code carefully, with extra checking along the way"; 21 + homepage = "https://github.com/RalfJung/cargo-careful"; 22 + license = with licenses; [ asl20 mit ]; 23 + maintainers = with maintainers; [ figsoda ]; 24 + }; 25 + }
+2 -2
pkgs/games/legendary-gl/default.nix
··· 8 8 9 9 buildPythonApplication rec { 10 10 pname = "legendary-gl"; # Name in pypi 11 - version = "0.20.31"; 11 + version = "0.20.32"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "derrod"; 15 15 repo = "legendary"; 16 16 rev = "refs/tags/${version}"; 17 - sha256 = "sha256-XxCYL41xhtJ2z1Ps2ANTbzi4/PZu7lo78cRbr6R4iTM="; 17 + sha256 = "sha256-MsvhVS3lqhgBJ+S/cjXFP70I3rM5WBYT7TyVlRWhNWw="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [ requests ];
+17 -3
pkgs/games/rare/default.nix
··· 1 - { lib, fetchFromGitHub, buildPythonApplication, qt5 2 - , legendary-gl, pypresence, pyqt5, python, qtawesome, requests, typing-extensions }: 1 + { lib 2 + , fetchFromGitHub 3 + , buildPythonApplication 4 + , qt5 5 + , legendary-gl 6 + , pypresence 7 + , pyqt5 8 + , python 9 + , qtawesome 10 + , requests 11 + , typing-extensions 12 + }: 3 13 4 14 buildPythonApplication rec { 5 15 pname = "rare"; ··· 25 35 typing-extensions 26 36 ]; 27 37 28 - patches = [ ./fix-instance.patch ]; 38 + patches = [ 39 + ./fix-instance.patch 40 + # Not able to run pythonRelaxDepsHook because of https://github.com/NixOS/nixpkgs/issues/198342 41 + ./legendary-gl-version.patch 42 + ]; 29 43 30 44 dontWrapQtApps = true; 31 45
+13
pkgs/games/rare/legendary-gl-version.patch
··· 1 + diff --git a/setup.py b/setup.py 2 + index 2416360..08de818 100644 3 + --- a/setup.py 4 + +++ b/setup.py 5 + @@ -7,7 +7,7 @@ with open("README.md", "r") as fh: 6 + 7 + requirements = [ 8 + "requests<3.0", 9 + - "legendary-gl==0.20.31", 10 + + "legendary-gl~=0.20.31", 11 + "setuptools", 12 + "wheel", 13 + "PyQt5",
+2 -1
pkgs/os-specific/bsd/netbsd/default.nix
··· 54 54 mkDerivation = lib.makeOverridable (attrs: let 55 55 stdenv' = if attrs.noCC or false then stdenvNoCC else stdenv; 56 56 in stdenv'.mkDerivation ({ 57 - name = "${attrs.pname or (baseNameOf attrs.path)}-netbsd-${attrs.version}"; 57 + pname = "${attrs.pname or (baseNameOf attrs.path)}-netbsd"; 58 + inherit (attrs) version; 58 59 src = fetchNetBSD attrs.path attrs.version attrs.sha256; 59 60 60 61 extraPaths = [ ];
+2 -2
pkgs/os-specific/linux/cpuid/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "cpuid"; 9 - version = "20221201"; 9 + version = "20230120"; 10 10 11 11 src = fetchurl { 12 12 url = "http://etallen.com/cpuid/${pname}-${version}.src.tar.gz"; 13 - sha256 = "sha256-CP7cOCgQZnqdCkF9KXXeOrXYFXNFLP9Xst6rBtgvj24="; 13 + sha256 = "sha256-uJtB+IldDVj9uwpUECu0kLx8WCjbLNFb6C0U0ZRjpXk="; 14 14 }; 15 15 16 16 # For pod2man during the build process.
+2 -2
pkgs/os-specific/linux/ksmbd-tools/default.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "ksmbd-tools"; 16 - version = "3.4.5"; 16 + version = "3.4.6"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "cifsd-team"; 20 20 repo = pname; 21 21 rev = version; 22 - sha256 = "sha256-sSCLXNdVUAdk+GnFlVx/BsAzyfz0KDdugJ1isrOztgs="; 22 + sha256 = "sha256-zquHhr+Zf4jR/TlVA0Zea3eZ9JjRjYXefcYIQs76gSw="; 23 23 }; 24 24 25 25 buildInputs = [ glib libnl ] ++ lib.optional withKerberos libkrb5;
+3 -3
pkgs/os-specific/linux/mmc-utils/default.nix
··· 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "mmc-utils"; 5 - version = "unstable-2022-09-27"; 5 + version = "unstable-2022-11-09"; 6 6 7 7 src = fetchzip rec { 8 8 url = "https://git.kernel.org/pub/scm/utils/mmc/mmc-utils.git/snapshot/mmc-utils-${passthru.rev}.tar.gz"; 9 - passthru.rev = "dfc3b6ecda84d21418fb4408b39c5c71db4c6458"; 10 - sha256 = "G4sBwRW8NOq7CGTADvXgMbcVInStSueGfGsb4ApVaSk="; 9 + passthru.rev = "c62dd8e415b12cc7f9a362db23cd384caf77ff03"; 10 + sha256 = "zTrMounPmos+9Reyfa3xS5/5/tyMs0WapSmzqdXUBNk="; 11 11 }; 12 12 13 13 makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" "prefix=$(out)" ];
+3 -3
pkgs/os-specific/linux/sasutils/default.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "sasutils"; 5 - version = "0.3.12"; 5 + version = "0.3.13"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "stanford-rc"; 9 9 repo = pname; 10 - rev = "v${version}"; 11 - sha256 = "0kh5pcc2shdmrvqqi2y1zamzsfvk56pqgwqgqhjfz4r6yfpm04wl"; 10 + rev = "refs/tags/v${version}"; 11 + sha256 = "sha256-cPCmmJkhr4+STVHa7e3LZGZFd8KPkECMAVurhuG8H1s="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ installShellFiles ];
+2 -2
pkgs/servers/confluent-platform/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "confluent-platform"; 6 - version = "7.2.1"; 6 + version = "7.3.0"; 7 7 8 8 src = fetchurl { 9 9 url = "https://packages.confluent.io/archive/${lib.versions.majorMinor version}/confluent-${version}.tar.gz"; 10 - sha256 = "sha256-vflWZjW8RwaDOwEFy8GHRfcmsHcRKxs8WwFfT66SIM4="; 10 + sha256 = "sha256-j120gSIky0CHNgzaVnodMAniecRX0RpU6+il86nxdrQ="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/servers/gerbera/default.nix
··· 65 65 in 66 66 stdenv.mkDerivation rec { 67 67 pname = "gerbera"; 68 - version = "1.11.0"; 68 + version = "1.12.1"; 69 69 70 70 src = fetchFromGitHub { 71 71 repo = "gerbera"; 72 72 owner = "gerbera"; 73 73 rev = "v${version}"; 74 - sha256 = "sha256-pikzgbm962C7yFM67Z/LayLf4mpLV4HfqZJlBfebL8U="; 74 + sha256 = "sha256-j5J0u0zIjHY2kP5P8IzN2h+QQSCwsel/iTspad6V48s="; 75 75 }; 76 76 77 77 postPatch = lib.optionalString enableMysql ''
+2 -2
pkgs/servers/mattermost/matterircd.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "matterircd"; 5 - version = "0.25.1"; 5 + version = "0.26.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "42wim"; 9 9 repo = "matterircd"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-qglr0QN0ca6waxhwEFgYP9RHvTJ4YVn90vl+crcktao="; 11 + sha256 = "sha256-yC5b3OEylIOS4lWz+ZiHHy3ShLjkaNzDt4dX1E87iR0="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+3 -3
pkgs/servers/monitoring/mackerel-agent/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "mackerel-agent"; 5 - version = "0.73.1"; 5 + version = "0.74.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mackerelio"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-zbzTKMvadp9+KbHm2utJM84MPb80+zjR8hUHHTtzSdc="; 11 + sha256 = "sha256-c1CywtgvVORkDewFB9iz99aUT5gFi5vXWddGZGLFu7o="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ makeWrapper ]; 15 15 nativeCheckInputs = lib.optionals (!stdenv.isDarwin) [ nettools ]; 16 16 buildInputs = lib.optionals (!stdenv.isDarwin) [ iproute2 ]; 17 17 18 - vendorSha256 = "sha256-GuaBdqiqKUhYySYlJlJIR1NhUx7LuCqcUSXfLTkIvQI="; 18 + vendorHash = "sha256-281Qz57n5qAOoqLofTFv5UcLs0xVz8iyV9yxDdsuljE="; 19 19 20 20 subPackages = [ "." ]; 21 21
+4 -4
pkgs/servers/monitoring/prometheus/default.nix
··· 31 31 }: 32 32 33 33 let 34 - version = "2.40.3"; 34 + version = "2.41.0"; 35 35 webUiStatic = fetchurl { 36 36 url = "https://github.com/prometheus/prometheus/releases/download/v${version}/prometheus-web-ui-${version}.tar.gz"; 37 - sha256 = "sha256-dvMts9uJNLSp8Qho+yKMLPTy/1c2RgfeEn3UQLIZNc4="; 37 + sha256 = "sha256-0EFeAuhQUu+4TCoHsWHTbWTGJLjS37POacP1K42sGqI="; 38 38 }; 39 39 in 40 40 buildGoModule rec { ··· 45 45 rev = "v${version}"; 46 46 owner = "prometheus"; 47 47 repo = "prometheus"; 48 - sha256 = "sha256-Jg8loH0Sji1MmDXUnMtvLTHjNGmkrzZApxvpe2+OqtU="; 48 + sha256 = "sha256-J3KDN02m639bUGrnUrqeCLferrqIHaJ2VEBjIqfm/GY="; 49 49 }; 50 50 51 - vendorSha256 = "sha256-aRVoEgP84ITQ1D0PsFVJUKH/Uin7s80iQCwzgrfpjoM="; 51 + vendorSha256 = "sha256-4Of1euBp5Lka6Bb2UJYUQuRa7t2/B1HaXCWSOqCASYw="; 52 52 53 53 excludedPackages = [ "documentation/prometheus-mixin" ]; 54 54
+1 -1
pkgs/tools/backup/httrack/default.nix
··· 9 9 sha256 = "09a0gm67nml86qby1k1gh7rdxamnrnzwr6l9r5iiq94favjs0xrl"; 10 10 }; 11 11 12 - buildInputs = [ zlib openssl ] ++ lib.optional stdenv.isDarwin libiconv; 12 + buildInputs = [ libiconv openssl zlib ]; 13 13 14 14 enableParallelBuilding = true; 15 15
+2 -2
pkgs/tools/filesystems/ceph-csi/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "ceph-csi"; 5 - version = "3.7.1"; 5 + version = "3.7.2"; 6 6 7 7 nativeBuildInputs = [ go ]; 8 8 buildInputs = [ ceph ]; ··· 11 11 owner = "ceph"; 12 12 repo = "ceph-csi"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-VlOKN2PjHM0MdDz6t/AAjcFx4F15+7p3+25tLkRQH1Q="; 14 + sha256 = "sha256-8RbuM+lXkwO5Z1H+SKDGHyNNYYC8VVG9feX46SHC/Q0="; 15 15 }; 16 16 17 17 preConfigure = ''
+2 -2
pkgs/tools/misc/convimg/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "convimg"; 7 - version = "8.10.2"; 7 + version = "9.0"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "mateoconlechuga"; 11 11 repo = pname; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-mXwgTltYSBgBm2z1gDRCFqJbRoEuDbQAIoDlr2Kjmi0="; 13 + sha256 = "sha256-AfluBLuD//EJplzzIQymyRsmPQMFjVk33HO+Vwv8Wzo="; 14 14 fetchSubmodules = true; 15 15 }; 16 16
+21 -3
pkgs/tools/misc/jdupes/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub }: 1 + { lib, stdenv, fetchFromGitHub, fetchpatch }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "jdupes"; 5 - version = "1.21.1"; 5 + version = "1.21.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "jbruchon"; 9 9 repo = "jdupes"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-VtwEDw0BBcXO2NVka0pddJSOm8hnQ8iqL2fzGI8uVFM="; 11 + sha256 = "sha256-nDyRaV49bLVHlyqKJ7hf6OBWOLCfmHrTeHryK091c3w="; 12 12 # Unicode file names lead to different checksums on HFS+ vs. other 13 13 # filesystems because of unicode normalisation. The testdir 14 14 # directories have such files and will be removed. 15 15 postFetch = "rm -r $out/testdir"; 16 16 }; 17 + 18 + patches = [ 19 + (fetchpatch { 20 + name = "darwin-stack-size.patch"; 21 + url = "https://github.com/jbruchon/jdupes/commit/8f5b06109b44a9e4316f9445da3044590a6c63e2.patch"; 22 + sha256 = "0saq92v0mm5g979chr062psvwp3i3z23mgqrcliq4m07lvwc7i3s"; 23 + }) 24 + (fetchpatch { 25 + name = "linux-header-ioctl.patch"; 26 + url = "https://github.com/jbruchon/jdupes/commit/0d4d98f51c99999d2c6dbbb89d554af551b5b69b.patch"; 27 + sha256 = "sha256-lyuZeRp0Laa8I9nDl1HGdlKa59OvGRQJnRg2fTWv7mQ="; 28 + }) 29 + (fetchpatch { 30 + name = "darwin-apfs-comp.patch"; 31 + url = "https://github.com/jbruchon/jdupes/commit/517b7035945eacd82323392b13bc17b044bcc89d.patch"; 32 + sha256 = "sha256-lvOab6tyEyKUtik3JBdIs5SHpVjcQEDfN7n2bfUszBw="; 33 + }) 34 + ]; 17 35 18 36 dontConfigure = true; 19 37
+2 -2
pkgs/tools/misc/sharedown/default.nix
··· 17 17 18 18 stdenvNoCC.mkDerivation rec { 19 19 pname = "Sharedown"; 20 - version = "5.0.2"; 20 + version = "5.1.0"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "kylon"; 24 24 repo = pname; 25 25 rev = version; 26 - sha256 = "sha256-N5jnjiD3R+uTRgHHocVVxYQ7GzUTz0fZAQGIXzcVTtA="; 26 + sha256 = "sha256-cD+xq2LVaTZGjFj+SleQlNT3sAV6N4nG4RVbH015OOA="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+140 -363
pkgs/tools/misc/sharedown/yarn.lock
··· 44 44 minimatch "^3.0.4" 45 45 plist "^3.0.4" 46 46 47 + "@fortawesome/fontawesome-free@^6.2.0": 48 + version "6.2.0" 49 + resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-6.2.0.tgz#ba3510825b332816fe7190f28827f8cb33a298b5" 50 + integrity sha512-CNR7qRIfCwWHNN7FnKUniva94edPdyQzil/zCwk3v6k4R6rR2Fr8i4s3PM7n/lyfPA6Zfko9z5WDzFxG9SW1uQ== 51 + 47 52 "@malept/cross-spawn-promise@^1.1.0": 48 53 version "1.1.1" 49 54 resolved "https://registry.yarnpkg.com/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz#504af200af6b98e198bce768bc1730c6936ae01d" ··· 111 116 integrity sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA== 112 117 113 118 "@types/node@*": 114 - version "18.7.16" 115 - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.7.16.tgz#0eb3cce1e37c79619943d2fd903919fc30850601" 116 - integrity sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg== 119 + version "18.11.3" 120 + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.3.tgz#78a6d7ec962b596fc2d2ec102c4dd3ef073fea6a" 121 + integrity sha512-fNjDQzzOsZeKZu5NATgXUPsaFaTxeRgFXoosrHivTl8RGeV733OLawXsGfEk9a8/tySyZUyiZ6E8LcjPFZ2y1A== 117 122 118 123 "@types/node@^16.11.26": 119 - version "16.11.58" 120 - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.11.58.tgz#0a3698dee3492617a8d5fe7998d18d7520b63026" 121 - integrity sha512-uMVxJ111wpHzkx/vshZFb6Qni3BOMnlWLq7q9jrwej7Yw/KvjsEbpxCCxw+hLKxexFMc8YmpG8J9tnEe/rKsIg== 124 + version "16.11.68" 125 + resolved "https://registry.yarnpkg.com/@types/node/-/node-16.11.68.tgz#30ee923f4d940793e0380f5ce61c0bd4b7196b6c" 126 + integrity sha512-JkRpuVz3xCNCWaeQ5EHLR/6woMbHZz/jZ7Kmc63AkU+1HxnoUugzSWMck7dsR4DvNYX8jp9wTi9K7WvnxOIQZQ== 122 127 123 128 "@types/plist@^3.0.1": 124 129 version "3.0.2" ··· 139 144 integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== 140 145 141 146 "@types/yargs@^17.0.1": 142 - version "17.0.12" 143 - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.12.tgz#0745ff3e4872b4ace98616d4b7e37ccbd75f9526" 144 - integrity sha512-Nz4MPhecOFArtm81gFQvQqdV7XYCrWKx5uUt6GNHredFHn1i2mtWqXTON7EPXMtNi1qjtjEM/VCHDhcHsAMLXQ== 147 + version "17.0.13" 148 + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.13.tgz#34cced675ca1b1d51fcf4d34c3c6f0fa142a5c76" 149 + integrity sha512-9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg== 145 150 dependencies: 146 151 "@types/yargs-parser" "*" 147 152 ··· 174 179 json-schema-traverse "^0.4.1" 175 180 uri-js "^4.2.2" 176 181 177 - ansi-align@^3.0.0: 178 - version "3.0.1" 179 - resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.1.tgz#0cdf12e111ace773a86e9a1fad1225c43cb19a59" 180 - integrity sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w== 181 - dependencies: 182 - string-width "^4.1.0" 183 - 184 182 ansi-regex@^5.0.1: 185 183 version "5.0.1" 186 184 resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" ··· 198 196 resolved "https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-4.0.0.tgz#1df8e654bd1395e4a319d82545c98667d7eed2f0" 199 197 integrity sha512-xwdG0FJPQMe0M0UA4Tz0zEB8rBJTRA5a476ZawAqiBkMv16GRK5xpXThOjMaEOFnZ6zabejjG4J3da0SXG63KA== 200 198 201 - app-builder-lib@23.3.3: 202 - version "23.3.3" 203 - resolved "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-23.3.3.tgz#78b9dbb0bd8a69842461edd77a3226d0547c5939" 204 - integrity sha512-m0+M53+HYMzqKxwNQZT143K7WwXEGUy9LY31l8dJphXx2P/FQod615mVbxHyqbDCG4J5bHdWm21qZ0e2DVY6CQ== 199 + app-builder-lib@23.6.0: 200 + version "23.6.0" 201 + resolved "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-23.6.0.tgz#03cade02838c077db99d86212d61c5fc1d6da1a8" 202 + integrity sha512-dQYDuqm/rmy8GSCE6Xl/3ShJg6Ab4bZJMT8KaTKGzT436gl1DN4REP3FCWfXoh75qGTJ+u+WsdnnpO9Jl8nyMA== 205 203 dependencies: 206 204 "7zip-bin" "~5.1.1" 207 205 "@develar/schema-utils" "~2.6.5" ··· 209 207 "@malept/flatpak-bundler" "^0.4.0" 210 208 async-exit-hook "^2.0.1" 211 209 bluebird-lst "^1.0.9" 212 - builder-util "23.3.3" 213 - builder-util-runtime "9.0.3" 210 + builder-util "23.6.0" 211 + builder-util-runtime "9.1.1" 214 212 chromium-pickle-js "^0.2.0" 215 213 debug "^4.3.4" 216 214 ejs "^3.1.7" 217 215 electron-osx-sign "^0.6.0" 218 - electron-publish "23.3.3" 216 + electron-publish "23.6.0" 219 217 form-data "^4.0.0" 220 218 fs-extra "^10.1.0" 221 219 hosted-git-info "^4.1.0" ··· 282 280 resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" 283 281 integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== 284 282 285 - axios@^0.27.2: 286 - version "0.27.2" 287 - resolved "https://registry.yarnpkg.com/axios/-/axios-0.27.2.tgz#207658cc8621606e586c85db4b41a750e756d972" 288 - integrity sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ== 283 + axios@^1.1.3: 284 + version "1.1.3" 285 + resolved "https://registry.yarnpkg.com/axios/-/axios-1.1.3.tgz#8274250dada2edf53814ed7db644b9c2866c1e35" 286 + integrity sha512-00tXVRwKx/FZr/IDVFt4C+f9FYairX517WoGCL6dpOntqLkZofjhu43F/Xl44UOpqa+9sLFDrG/XAnFsUYgkDA== 289 287 dependencies: 290 - follow-redirects "^1.14.9" 288 + follow-redirects "^1.15.0" 291 289 form-data "^4.0.0" 290 + proxy-from-env "^1.1.0" 292 291 293 292 balanced-match@^1.0.0: 294 293 version "1.0.2" ··· 326 325 resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz#9e5294af4e98314494cbb17979fa54ca159f116b" 327 326 integrity sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw== 328 327 329 - bootstrap@5.2.1: 330 - version "5.2.1" 331 - resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.2.1.tgz#45f97ff05cbe828bad807b014d8425f3aeb8ec3a" 332 - integrity sha512-UQi3v2NpVPEi1n35dmRRzBJFlgvWHYwyem6yHhuT6afYF+sziEt46McRbT//kVXZ7b1YUYEVGdXEH74Nx3xzGA== 333 - 334 - boxen@^5.0.0: 335 - version "5.1.2" 336 - resolved "https://registry.yarnpkg.com/boxen/-/boxen-5.1.2.tgz#788cb686fc83c1f486dfa8a40c68fc2b831d2b50" 337 - integrity sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ== 338 - dependencies: 339 - ansi-align "^3.0.0" 340 - camelcase "^6.2.0" 341 - chalk "^4.1.0" 342 - cli-boxes "^2.2.1" 343 - string-width "^4.2.2" 344 - type-fest "^0.20.2" 345 - widest-line "^3.1.0" 346 - wrap-ansi "^7.0.0" 328 + bootstrap@5.2.2: 329 + version "5.2.2" 330 + resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.2.2.tgz#834e053eed584a65e244d8aa112a6959f56e27a0" 331 + integrity sha512-dEtzMTV71n6Fhmbg4fYJzQsw1N29hJKO1js5ackCgIpDcGid2ETMGC6zwSYw09v05Y+oRdQ9loC54zB1La3hHQ== 347 332 348 333 brace-expansion@^1.1.7: 349 334 version "1.1.11" ··· 401 386 base64-js "^1.3.1" 402 387 ieee754 "^1.1.13" 403 388 404 - builder-util-runtime@9.0.3: 405 - version "9.0.3" 406 - resolved "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.0.3.tgz#6c62c493ba2b73c2af92432db4013b5a327f02b2" 407 - integrity sha512-SfG2wnyjpUbbdtpnqDpWwklujofC6GarGpvdWrEkg9p5AD/xJmTF2buTNaqs3qtsNBEVQDDjZz9xc2GGpVyMfA== 389 + builder-util-runtime@9.1.1: 390 + version "9.1.1" 391 + resolved "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.1.1.tgz#2da7b34e78a64ad14ccd070d6eed4662d893bd60" 392 + integrity sha512-azRhYLEoDvRDR8Dhis4JatELC/jUvYjm4cVSj7n9dauGTOM2eeNn9KS0z6YA6oDsjI1xphjNbY6PZZeHPzzqaw== 408 393 dependencies: 409 394 debug "^4.3.4" 410 395 sax "^1.2.4" 411 396 412 - builder-util@23.3.3: 413 - version "23.3.3" 414 - resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-23.3.3.tgz#449ee57ec1ffc7e59f7a3a8a1a33d25cf5e39e43" 415 - integrity sha512-MJZlUiq2PY5hjYv9+XNaoYdsITqvLgRDoHSFg/4nzpInbNxNjLQOolL04Zsyp+hgfcbFvMC4h0KkR1CMPHLWbA== 397 + builder-util@23.6.0: 398 + version "23.6.0" 399 + resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-23.6.0.tgz#1880ec6da7da3fd6fa19b8bd71df7f39e8d17dd9" 400 + integrity sha512-QiQHweYsh8o+U/KNCZFSvISRnvRctb8m/2rB2I1JdByzvNKxPeFLlHFRPQRXab6aYeXc18j9LpsDLJ3sGQmWTQ== 416 401 dependencies: 417 402 "7zip-bin" "~5.1.1" 418 403 "@types/debug" "^4.1.6" 419 404 "@types/fs-extra" "^9.0.11" 420 405 app-builder-bin "4.0.0" 421 406 bluebird-lst "^1.0.9" 422 - builder-util-runtime "9.0.3" 407 + builder-util-runtime "9.1.1" 423 408 chalk "^4.1.1" 424 409 cross-spawn "^7.0.3" 425 410 debug "^4.3.4" ··· 445 430 normalize-url "^4.1.0" 446 431 responselike "^1.0.2" 447 432 448 - camelcase@^6.2.0: 449 - version "6.3.0" 450 - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" 451 - integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== 452 - 453 - chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1: 433 + chalk@^4.0.2, chalk@^4.1.1: 454 434 version "4.1.2" 455 435 resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 456 436 integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== ··· 473 453 resolved "https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz#04a106672c18b085ab774d983dfa3ea138f22205" 474 454 integrity sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw== 475 455 476 - ci-info@^2.0.0: 477 - version "2.0.0" 478 - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" 479 - integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== 480 - 481 456 ci-info@^3.2.0: 482 - version "3.4.0" 483 - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.4.0.tgz#b28484fd436cbc267900364f096c9dc185efb251" 484 - integrity sha512-t5QdPT5jq3o262DOQ8zA6E1tlH2upmUc4Hlvrbx1pGYJuiiHl7O7rvVNI+l8HTVhd/q3Qc9vqimkNk5yiXsAug== 485 - 486 - cli-boxes@^2.2.1: 487 - version "2.2.1" 488 - resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f" 489 - integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== 457 + version "3.5.0" 458 + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.5.0.tgz#bfac2a29263de4c829d806b1ab478e35091e171f" 459 + integrity sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw== 490 460 491 461 cli-truncate@^2.1.0: 492 462 version "2.1.0" ··· 505 475 execa "^1.0.0" 506 476 is-wsl "^2.1.1" 507 477 508 - cliui@^7.0.2: 509 - version "7.0.4" 510 - resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 511 - integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 478 + cliui@^8.0.1: 479 + version "8.0.1" 480 + resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" 481 + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== 512 482 dependencies: 513 483 string-width "^4.2.0" 514 - strip-ansi "^6.0.0" 484 + strip-ansi "^6.0.1" 515 485 wrap-ansi "^7.0.0" 516 486 517 487 clone-response@^1.0.2: ··· 575 545 ini "^1.3.4" 576 546 proto-list "~1.2.1" 577 547 578 - configstore@^5.0.1: 579 - version "5.0.1" 580 - resolved "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz#d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96" 581 - integrity sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA== 582 - dependencies: 583 - dot-prop "^5.2.0" 584 - graceful-fs "^4.1.2" 585 - make-dir "^3.0.0" 586 - unique-string "^2.0.0" 587 - write-file-atomic "^3.0.0" 588 - xdg-basedir "^4.0.0" 589 - 590 548 core-util-is@1.0.2: 591 549 version "1.0.2" 592 550 resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" ··· 626 584 shebang-command "^2.0.0" 627 585 which "^2.0.1" 628 586 629 - crypto-random-string@^2.0.0: 630 - version "2.0.0" 631 - resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" 632 - integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== 633 - 634 587 debug@4, debug@4.3.4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.4: 635 588 version "4.3.4" 636 589 resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" ··· 692 645 resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" 693 646 integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== 694 647 695 - devtools-protocol@0.0.1036444: 696 - version "0.0.1036444" 697 - resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.1036444.tgz#a570d3cdde61527c82f9b03919847b8ac7b1c2b9" 698 - integrity sha512-0y4f/T8H9lsESV9kKP1HDUXgHxCdniFeJh6Erq+FbdOEvp/Ydp9t8kcAAM5gOd17pMrTDlFWntoHtzzeTUWKNw== 648 + devtools-protocol@0.0.1045489: 649 + version "0.0.1045489" 650 + resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.1045489.tgz#f959ad560b05acd72d55644bc3fb8168a83abf28" 651 + integrity sha512-D+PTmWulkuQW4D1NTiCRCFxF7pQPn0hgp4YyX4wAQ6xYXKOadSWPR3ENGDQ47MW/Ewc9v2rpC/UEEGahgBYpSQ== 699 652 700 653 dir-compare@^2.4.0: 701 654 version "2.4.0" ··· 707 660 commander "2.9.0" 708 661 minimatch "3.0.4" 709 662 710 - dmg-builder@23.3.3: 711 - version "23.3.3" 712 - resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-23.3.3.tgz#b37547f8403c3e9f7c60265a93d902f5b0c395ea" 713 - integrity sha512-ECwAjt+ZWyOvddrkDx1xRD6IVUCZb5SV6vSMHZd+Va3G2sUXHrnglR1cGDKRF4oYRQm8SYVrpLZKbi8npyDcAQ== 663 + dmg-builder@23.6.0: 664 + version "23.6.0" 665 + resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-23.6.0.tgz#d39d3871bce996f16c07d2cafe922d6ecbb2a948" 666 + integrity sha512-jFZvY1JohyHarIAlTbfQOk+HnceGjjAdFjVn3n8xlDWKsYNqbO4muca6qXEZTfGXeQMG7TYim6CeS5XKSfSsGA== 714 667 dependencies: 715 - app-builder-lib "23.3.3" 716 - builder-util "23.3.3" 717 - builder-util-runtime "9.0.3" 668 + app-builder-lib "23.6.0" 669 + builder-util "23.6.0" 670 + builder-util-runtime "9.1.1" 718 671 fs-extra "^10.0.0" 719 672 iconv-lite "^0.6.2" 720 673 js-yaml "^4.1.0" ··· 734 687 plist "^3.0.4" 735 688 smart-buffer "^4.0.2" 736 689 verror "^1.10.0" 737 - 738 - dot-prop@^5.2.0: 739 - version "5.3.0" 740 - resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" 741 - integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== 742 - dependencies: 743 - is-obj "^2.0.0" 744 690 745 691 dotenv-expand@^5.1.0: 746 692 version "5.1.0" ··· 764 710 dependencies: 765 711 jake "^10.8.5" 766 712 767 - electron-builder@^23.3.3: 768 - version "23.3.3" 769 - resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-23.3.3.tgz#88d4e584a99b9e36ca4e8432b1163a1ef877355f" 770 - integrity sha512-mFYYdhoFPKevP6y5uaaF3dusmB2OtQ/HnwwpyOePeU7QDS0SEIAUokQsHUanAiJAZcBqtY7iyLBgX18QybdFFw== 713 + electron-builder@^23.6.0: 714 + version "23.6.0" 715 + resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-23.6.0.tgz#c79050cbdce90ed96c5feb67c34e9e0a21b5331b" 716 + integrity sha512-y8D4zO+HXGCNxFBV/JlyhFnoQ0Y0K7/sFH+XwIbj47pqaW8S6PGYQbjoObolKBR1ddQFPt4rwp4CnwMJrW3HAw== 771 717 dependencies: 772 718 "@types/yargs" "^17.0.1" 773 - app-builder-lib "23.3.3" 774 - builder-util "23.3.3" 775 - builder-util-runtime "9.0.3" 719 + app-builder-lib "23.6.0" 720 + builder-util "23.6.0" 721 + builder-util-runtime "9.1.1" 776 722 chalk "^4.1.1" 777 - dmg-builder "23.3.3" 723 + dmg-builder "23.6.0" 778 724 fs-extra "^10.0.0" 779 725 is-ci "^3.0.0" 780 726 lazy-val "^1.0.5" 781 727 read-config-file "6.2.0" 782 - update-notifier "^5.1.0" 783 - yargs "^17.0.1" 728 + simple-update-notifier "^1.0.7" 729 + yargs "^17.5.1" 784 730 785 731 electron-osx-sign@^0.6.0: 786 732 version "0.6.0" ··· 794 740 minimist "^1.2.0" 795 741 plist "^3.0.1" 796 742 797 - electron-publish@23.3.3: 798 - version "23.3.3" 799 - resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-23.3.3.tgz#c4125fbb00620acb854f6e994fd3ab3115662ddd" 800 - integrity sha512-1dX17eE5xVXedTxjC+gjsP74oC0+sIHgqysp0ryTlF9+yfQUyXjBk6kcK+zhtBA2SsHMSglDtM+JPxDD/WpPTQ== 743 + electron-publish@23.6.0: 744 + version "23.6.0" 745 + resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-23.6.0.tgz#ac9b469e0b07752eb89357dd660e5fb10b3d1ce9" 746 + integrity sha512-jPj3y+eIZQJF/+t5SLvsI5eS4mazCbNYqatv5JihbqOstIM13k0d1Z3vAWntvtt13Itl61SO6seicWdioOU5dg== 801 747 dependencies: 802 748 "@types/fs-extra" "^9.0.11" 803 - builder-util "23.3.3" 804 - builder-util-runtime "9.0.3" 749 + builder-util "23.6.0" 750 + builder-util-runtime "9.1.1" 805 751 chalk "^4.1.1" 806 752 fs-extra "^10.0.0" 807 753 lazy-val "^1.0.5" 808 754 mime "^2.5.2" 809 755 810 - electron@^20.1.2: 811 - version "20.1.3" 812 - resolved "https://registry.yarnpkg.com/electron/-/electron-20.1.3.tgz#8a4e3f6945fa7ed06ba54d0f987737b0e057ceb4" 813 - integrity sha512-DXBHzAwcpCor9MrxG9QA3Zt0sNcQbJ8ZJCYTC6xpuPe5wugBa6RF3hXqDUYdD2yOCUhjLbD3VASWn0+5LdYT3g== 756 + electron@^21.0.1: 757 + version "21.2.0" 758 + resolved "https://registry.yarnpkg.com/electron/-/electron-21.2.0.tgz#8eb65d69b36aa8dac0ee7330eab70181df211c8b" 759 + integrity sha512-oKV4fo8l6jlOZ1cYZ4RpZz02ZxLuBo3SO7DH+FrJ8uDyCirP+eVJ/qlzu23odtNe0P7S/mYAZbC6abZHWoqtLg== 814 760 dependencies: 815 761 "@electron/get" "^1.14.1" 816 762 "@types/node" "^16.11.26" ··· 847 793 version "3.1.1" 848 794 resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 849 795 integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 850 - 851 - escape-goat@^2.0.0: 852 - version "2.1.1" 853 - resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675" 854 - integrity sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== 855 796 856 797 escape-string-regexp@^4.0.0: 857 798 version "4.0.0" ··· 921 862 dependencies: 922 863 minimatch "^5.0.1" 923 864 924 - follow-redirects@^1.14.9: 925 - version "1.15.1" 926 - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.1.tgz#0ca6a452306c9b276e4d3127483e29575e207ad5" 927 - integrity sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA== 928 - 929 - font-awesome@^4.7.0: 930 - version "4.7.0" 931 - resolved "https://registry.yarnpkg.com/font-awesome/-/font-awesome-4.7.0.tgz#8fa8cf0411a1a31afd07b06d2902bb9fc815a133" 932 - integrity sha512-U6kGnykA/6bFmg1M/oT9EkFeIYv7JlX3bozwQJWiiLz6L0w3F5vBVPxHlwyX/vtNq1ckcpRKOB9f2Qal/VtFpg== 865 + follow-redirects@^1.15.0: 866 + version "1.15.2" 867 + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" 868 + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== 933 869 934 870 form-data@^4.0.0: 935 871 version "4.0.0" ··· 996 932 integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 997 933 998 934 get-intrinsic@^1.1.1: 999 - version "1.1.2" 1000 - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.2.tgz#336975123e05ad0b7ba41f152ee4aadbea6cf598" 1001 - integrity sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA== 935 + version "1.1.3" 936 + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" 937 + integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== 1002 938 dependencies: 1003 939 function-bind "^1.1.1" 1004 940 has "^1.0.3" ··· 1046 982 roarr "^2.15.3" 1047 983 semver "^7.3.2" 1048 984 serialize-error "^7.0.1" 1049 - 1050 - global-dirs@^3.0.0: 1051 - version "3.0.0" 1052 - resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.0.tgz#70a76fe84ea315ab37b1f5576cbde7d48ef72686" 1053 - integrity sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA== 1054 - dependencies: 1055 - ini "2.0.0" 1056 985 1057 986 global-tunnel-ng@^2.7.1: 1058 987 version "2.7.1" ··· 1088 1017 to-readable-stream "^1.0.0" 1089 1018 url-parse-lax "^3.0.0" 1090 1019 1091 - graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: 1020 + graceful-fs@^4.1.6, graceful-fs@^4.2.0: 1092 1021 version "4.2.10" 1093 1022 resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" 1094 1023 integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== ··· 1114 1043 version "1.0.3" 1115 1044 resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1116 1045 integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1117 - 1118 - has-yarn@^2.1.0: 1119 - version "2.1.0" 1120 - resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77" 1121 - integrity sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw== 1122 1046 1123 1047 has@^1.0.3: 1124 1048 version "1.0.3" ··· 1176 1100 resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" 1177 1101 integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== 1178 1102 1179 - import-lazy@^2.1.0: 1180 - version "2.1.0" 1181 - resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 1182 - integrity sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A== 1183 - 1184 - imurmurhash@^0.1.4: 1185 - version "0.1.4" 1186 - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1187 - integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1188 - 1189 1103 inflight@^1.0.4: 1190 1104 version "1.0.6" 1191 1105 resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" ··· 1199 1113 resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1200 1114 integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1201 1115 1202 - ini@2.0.0: 1203 - version "2.0.0" 1204 - resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5" 1205 - integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== 1206 - 1207 1116 ini@^1.3.4, ini@~1.3.0: 1208 1117 version "1.3.8" 1209 1118 resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 1210 1119 integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 1211 1120 1212 - is-ci@^2.0.0: 1213 - version "2.0.0" 1214 - resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" 1215 - integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== 1216 - dependencies: 1217 - ci-info "^2.0.0" 1218 - 1219 1121 is-ci@^3.0.0: 1220 1122 version "3.0.1" 1221 1123 resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" ··· 1233 1135 resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1234 1136 integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1235 1137 1236 - is-installed-globally@^0.4.0: 1237 - version "0.4.0" 1238 - resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520" 1239 - integrity sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ== 1240 - dependencies: 1241 - global-dirs "^3.0.0" 1242 - is-path-inside "^3.0.2" 1243 - 1244 - is-npm@^5.0.0: 1245 - version "5.0.0" 1246 - resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-5.0.0.tgz#43e8d65cc56e1b67f8d47262cf667099193f45a8" 1247 - integrity sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA== 1248 - 1249 - is-obj@^2.0.0: 1250 - version "2.0.0" 1251 - resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" 1252 - integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 1253 - 1254 - is-path-inside@^3.0.2: 1255 - version "3.0.3" 1256 - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 1257 - integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 1258 - 1259 1138 is-stream@^1.1.0: 1260 1139 version "1.1.0" 1261 1140 resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1262 1141 integrity sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ== 1263 - 1264 - is-typedarray@^1.0.0: 1265 - version "1.0.0" 1266 - resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1267 - integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== 1268 1142 1269 1143 is-wsl@^2.1.1: 1270 1144 version "2.2.0" ··· 1272 1146 integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== 1273 1147 dependencies: 1274 1148 is-docker "^2.0.0" 1275 - 1276 - is-yarn-global@^0.3.0: 1277 - version "0.3.0" 1278 - resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232" 1279 - integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw== 1280 1149 1281 1150 isbinaryfile@^3.0.2: 1282 1151 version "3.0.3" ··· 1368 1237 dependencies: 1369 1238 json-buffer "3.0.0" 1370 1239 1371 - latest-version@^5.1.0: 1372 - version "5.1.0" 1373 - resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face" 1374 - integrity sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== 1375 - dependencies: 1376 - package-json "^6.3.0" 1377 - 1378 1240 lazy-val@^1.0.4, lazy-val@^1.0.5: 1379 1241 version "1.0.5" 1380 1242 resolved "https://registry.yarnpkg.com/lazy-val/-/lazy-val-1.0.5.tgz#6cf3b9f5bc31cee7ee3e369c0832b7583dcd923d" ··· 1402 1264 dependencies: 1403 1265 yallist "^4.0.0" 1404 1266 1405 - make-dir@^3.0.0: 1406 - version "3.1.0" 1407 - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 1408 - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 1409 - dependencies: 1410 - semver "^6.0.0" 1411 - 1412 1267 matcher@^3.0.0: 1413 1268 version "3.0.0" 1414 1269 resolved "https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz#bd9060f4c5b70aa8041ccc6f80368760994f30ca" ··· 1465 1320 brace-expansion "^2.0.1" 1466 1321 1467 1322 minimist@^1.2.0, minimist@^1.2.3: 1468 - version "1.2.6" 1469 - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" 1470 - integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== 1323 + version "1.2.7" 1324 + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" 1325 + integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== 1471 1326 1472 1327 minipass@^3.0.0: 1473 1328 version "3.3.4" ··· 1515 1370 integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 1516 1371 1517 1372 node-abi@^3.3.0: 1518 - version "3.24.0" 1519 - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.24.0.tgz#b9d03393a49f2c7e147d0c99f180e680c27c1599" 1520 - integrity sha512-YPG3Co0luSu6GwOBsmIdGW6Wx0NyNDLg/hriIyDllVsNwnI6UeqaWShxC3lbH4LtEQUgoLP3XR1ndXiDAWvmRw== 1373 + version "3.28.0" 1374 + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.28.0.tgz#b0df8b317e1c4f2f323756c5fc8ffccc5bca4718" 1375 + integrity sha512-fRlDb4I0eLcQeUvGq7IY3xHrSb0c9ummdvDSYWfT9+LKP+3jCKw/tKoqaM7r1BAoiAC6GtwyjaGnOz6B3OtF+A== 1521 1376 dependencies: 1522 1377 semver "^7.3.5" 1523 1378 ··· 1580 1435 resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1581 1436 integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== 1582 1437 1583 - package-json@^6.3.0: 1584 - version "6.5.0" 1585 - resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz#6feedaca35e75725876d0b0e64974697fed145b0" 1586 - integrity sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ== 1587 - dependencies: 1588 - got "^9.6.0" 1589 - registry-auth-token "^4.0.0" 1590 - registry-url "^5.0.0" 1591 - semver "^6.2.0" 1592 - 1593 1438 path-is-absolute@^1.0.0: 1594 1439 version "1.0.1" 1595 1440 resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" ··· 1656 1501 resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 1657 1502 integrity sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA== 1658 1503 1659 - proxy-from-env@1.1.0: 1504 + proxy-from-env@1.1.0, proxy-from-env@^1.1.0: 1660 1505 version "1.1.0" 1661 1506 resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" 1662 1507 integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== ··· 1674 1519 resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1675 1520 integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1676 1521 1677 - pupa@^2.1.1: 1678 - version "2.1.1" 1679 - resolved "https://registry.yarnpkg.com/pupa/-/pupa-2.1.1.tgz#f5e8fd4afc2c5d97828faa523549ed8744a20d62" 1680 - integrity sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A== 1681 - dependencies: 1682 - escape-goat "^2.0.0" 1683 - 1684 - puppeteer@17.1.2: 1685 - version "17.1.2" 1686 - resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-17.1.2.tgz#1e8ea8b0eee0e6afc5d95e2db6ae828a51ad63c9" 1687 - integrity sha512-xgFOxUl4hRjwQpODZSeJlE/rUzi8OmHtc3T4ir4CRYGzVmaTVHAl8VGpI0ooy752u2DFeMxvQdHmxNnLqPImIg== 1522 + puppeteer-core@19.0.0: 1523 + version "19.0.0" 1524 + resolved "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-19.0.0.tgz#8d0198550e04c7d5e0847200ba257b2a777dbd3b" 1525 + integrity sha512-OljQ9W5M4cBX68vnOAGbcRkVENDHn6lfj6QYoGsnLQsxPAh6ExTQAhHauwdFdQkhYdDExZFWlKArnBONzeHY+g== 1688 1526 dependencies: 1689 1527 cross-fetch "3.1.5" 1690 1528 debug "4.3.4" 1691 - devtools-protocol "0.0.1036444" 1529 + devtools-protocol "0.0.1045489" 1692 1530 extract-zip "2.0.1" 1693 1531 https-proxy-agent "5.0.1" 1694 - progress "2.0.3" 1695 1532 proxy-from-env "1.1.0" 1696 1533 rimraf "3.0.2" 1697 1534 tar-fs "2.1.1" 1698 1535 unbzip2-stream "1.4.3" 1699 - ws "8.8.1" 1536 + ws "8.9.0" 1537 + 1538 + puppeteer@19.0.0: 1539 + version "19.0.0" 1540 + resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-19.0.0.tgz#848986e6ecec37b19cd5a7327ad2fcf1f1cb83fd" 1541 + integrity sha512-3Ga5IVerQQ2hKU9q7T28RmcUsd8F2kL6cYuPcPCzeclSjmHhGydPBZL/KJKC02sG6J6Wfry85uiWpbkjQ5qBiw== 1542 + dependencies: 1543 + https-proxy-agent "5.0.1" 1544 + progress "2.0.3" 1545 + proxy-from-env "1.1.0" 1546 + puppeteer-core "19.0.0" 1700 1547 1701 - rc@1.2.8, rc@^1.2.7, rc@^1.2.8: 1548 + rc@^1.2.7: 1702 1549 version "1.2.8" 1703 1550 resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 1704 1551 integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== ··· 1728 1575 string_decoder "^1.1.1" 1729 1576 util-deprecate "^1.0.1" 1730 1577 1731 - registry-auth-token@^4.0.0: 1732 - version "4.2.2" 1733 - resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.2.tgz#f02d49c3668884612ca031419491a13539e21fac" 1734 - integrity sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg== 1735 - dependencies: 1736 - rc "1.2.8" 1737 - 1738 - registry-url@^5.0.0: 1739 - version "5.1.0" 1740 - resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz#e98334b50d5434b81136b44ec638d9c2009c5009" 1741 - integrity sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw== 1742 - dependencies: 1743 - rc "^1.2.8" 1744 - 1745 1578 require-directory@^2.1.1: 1746 1579 version "2.1.1" 1747 1580 resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" ··· 1800 1633 resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" 1801 1634 integrity sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow== 1802 1635 1803 - semver-diff@^3.1.1: 1804 - version "3.1.1" 1805 - resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz#05f77ce59f325e00e2706afd67bb506ddb1ca32b" 1806 - integrity sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg== 1807 - dependencies: 1808 - semver "^6.3.0" 1809 - 1810 1636 semver@^5.5.0: 1811 1637 version "5.7.1" 1812 1638 resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1813 1639 integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1814 1640 1815 - semver@^6.0.0, semver@^6.2.0, semver@^6.3.0: 1641 + semver@^6.2.0: 1816 1642 version "6.3.0" 1817 1643 resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1818 1644 integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1819 1645 1820 - semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7: 1821 - version "7.3.7" 1822 - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" 1823 - integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== 1646 + semver@^7.3.2, semver@^7.3.5, semver@^7.3.7: 1647 + version "7.3.8" 1648 + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" 1649 + integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== 1824 1650 dependencies: 1825 1651 lru-cache "^6.0.0" 1826 1652 1653 + semver@~7.0.0: 1654 + version "7.0.0" 1655 + resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" 1656 + integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== 1657 + 1827 1658 serialize-error@^7.0.1: 1828 1659 version "7.0.1" 1829 1660 resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz#f1360b0447f61ffb483ec4157c737fab7d778e18" ··· 1855 1686 resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1856 1687 integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1857 1688 1858 - signal-exit@^3.0.0, signal-exit@^3.0.2: 1689 + signal-exit@^3.0.0: 1859 1690 version "3.0.7" 1860 1691 resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" 1861 1692 integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== ··· 1874 1705 once "^1.3.1" 1875 1706 simple-concat "^1.0.0" 1876 1707 1708 + simple-update-notifier@^1.0.7: 1709 + version "1.0.7" 1710 + resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-1.0.7.tgz#7edf75c5bdd04f88828d632f762b2bc32996a9cc" 1711 + integrity sha512-BBKgR84BJQJm6WjWFMHgLVuo61FBDSj1z/xSFUIozqO6wO7ii0JxCqlIud7Enr/+LhlbNI0whErq96P2qHNWew== 1712 + dependencies: 1713 + semver "~7.0.0" 1714 + 1877 1715 slice-ansi@^3.0.0: 1878 1716 version "3.0.0" 1879 1717 resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" ··· 1911 1749 resolved "https://registry.yarnpkg.com/stat-mode/-/stat-mode-1.0.0.tgz#68b55cb61ea639ff57136f36b216a291800d1465" 1912 1750 integrity sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg== 1913 1751 1914 - string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.2, string-width@^4.2.3: 1752 + string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: 1915 1753 version "4.2.3" 1916 1754 resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 1917 1755 integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== ··· 2052 1890 resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" 2053 1891 integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== 2054 1892 2055 - type-fest@^0.20.2: 2056 - version "0.20.2" 2057 - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 2058 - integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2059 - 2060 - typedarray-to-buffer@^3.1.5: 2061 - version "3.1.5" 2062 - resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 2063 - integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 2064 - dependencies: 2065 - is-typedarray "^1.0.0" 2066 - 2067 1893 unbzip2-stream@1.4.3: 2068 1894 version "1.4.3" 2069 1895 resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz#b0da04c4371311df771cdc215e87f2130991ace7" ··· 2072 1898 buffer "^5.2.1" 2073 1899 through "^2.3.8" 2074 1900 2075 - unique-string@^2.0.0: 2076 - version "2.0.0" 2077 - resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" 2078 - integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== 2079 - dependencies: 2080 - crypto-random-string "^2.0.0" 2081 - 2082 1901 universalify@^0.1.0: 2083 1902 version "0.1.2" 2084 1903 resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" ··· 2088 1907 version "2.0.0" 2089 1908 resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" 2090 1909 integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== 2091 - 2092 - update-notifier@^5.1.0: 2093 - version "5.1.0" 2094 - resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-5.1.0.tgz#4ab0d7c7f36a231dd7316cf7729313f0214d9ad9" 2095 - integrity sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw== 2096 - dependencies: 2097 - boxen "^5.0.0" 2098 - chalk "^4.1.0" 2099 - configstore "^5.0.1" 2100 - has-yarn "^2.1.0" 2101 - import-lazy "^2.1.0" 2102 - is-ci "^2.0.0" 2103 - is-installed-globally "^0.4.0" 2104 - is-npm "^5.0.0" 2105 - is-yarn-global "^0.3.0" 2106 - latest-version "^5.1.0" 2107 - pupa "^2.1.1" 2108 - semver "^7.3.4" 2109 - semver-diff "^3.1.1" 2110 - xdg-basedir "^4.0.0" 2111 1910 2112 1911 uri-js@^4.2.2: 2113 1912 version "4.4.1" ··· 2169 1968 dependencies: 2170 1969 isexe "^2.0.0" 2171 1970 2172 - widest-line@^3.1.0: 2173 - version "3.1.0" 2174 - resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" 2175 - integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== 2176 - dependencies: 2177 - string-width "^4.0.0" 2178 - 2179 1971 wrap-ansi@^7.0.0: 2180 1972 version "7.0.0" 2181 1973 resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" ··· 2190 1982 resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2191 1983 integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2192 1984 2193 - write-file-atomic@^3.0.0: 2194 - version "3.0.3" 2195 - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" 2196 - integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== 2197 - dependencies: 2198 - imurmurhash "^0.1.4" 2199 - is-typedarray "^1.0.0" 2200 - signal-exit "^3.0.2" 2201 - typedarray-to-buffer "^3.1.5" 2202 - 2203 - ws@8.8.1: 2204 - version "8.8.1" 2205 - resolved "https://registry.yarnpkg.com/ws/-/ws-8.8.1.tgz#5dbad0feb7ade8ecc99b830c1d77c913d4955ff0" 2206 - integrity sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA== 2207 - 2208 - xdg-basedir@^4.0.0: 2209 - version "4.0.0" 2210 - resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" 2211 - integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== 1985 + ws@8.9.0: 1986 + version "8.9.0" 1987 + resolved "https://registry.yarnpkg.com/ws/-/ws-8.9.0.tgz#2a994bb67144be1b53fe2d23c53c028adeb7f45e" 1988 + integrity sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg== 2212 1989 2213 1990 xmlbuilder@>=11.0.1, xmlbuilder@^15.1.1: 2214 1991 version "15.1.1" ··· 2230 2007 resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" 2231 2008 integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== 2232 2009 2233 - yargs@^17.0.1: 2234 - version "17.5.1" 2235 - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.5.1.tgz#e109900cab6fcb7fd44b1d8249166feb0b36e58e" 2236 - integrity sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA== 2010 + yargs@^17.5.1: 2011 + version "17.6.0" 2012 + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.0.tgz#e134900fc1f218bc230192bdec06a0a5f973e46c" 2013 + integrity sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g== 2237 2014 dependencies: 2238 - cliui "^7.0.2" 2015 + cliui "^8.0.1" 2239 2016 escalade "^3.1.1" 2240 2017 get-caller-file "^2.0.5" 2241 2018 require-directory "^2.1.1"
+120 -376
pkgs/tools/misc/sharedown/yarndeps.nix
··· 34 34 }; 35 35 } 36 36 { 37 + name = "_fortawesome_fontawesome_free___fontawesome_free_6.2.0.tgz"; 38 + path = fetchurl { 39 + name = "_fortawesome_fontawesome_free___fontawesome_free_6.2.0.tgz"; 40 + url = "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-6.2.0.tgz"; 41 + sha512 = "CNR7qRIfCwWHNN7FnKUniva94edPdyQzil/zCwk3v6k4R6rR2Fr8i4s3PM7n/lyfPA6Zfko9z5WDzFxG9SW1uQ=="; 42 + }; 43 + } 44 + { 37 45 name = "_malept_cross_spawn_promise___cross_spawn_promise_1.1.1.tgz"; 38 46 path = fetchurl { 39 47 name = "_malept_cross_spawn_promise___cross_spawn_promise_1.1.1.tgz"; ··· 114 122 }; 115 123 } 116 124 { 117 - name = "_types_node___node_18.7.16.tgz"; 125 + name = "_types_node___node_18.11.3.tgz"; 118 126 path = fetchurl { 119 - name = "_types_node___node_18.7.16.tgz"; 120 - url = "https://registry.yarnpkg.com/@types/node/-/node-18.7.16.tgz"; 121 - sha512 = "EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg=="; 127 + name = "_types_node___node_18.11.3.tgz"; 128 + url = "https://registry.yarnpkg.com/@types/node/-/node-18.11.3.tgz"; 129 + sha512 = "fNjDQzzOsZeKZu5NATgXUPsaFaTxeRgFXoosrHivTl8RGeV733OLawXsGfEk9a8/tySyZUyiZ6E8LcjPFZ2y1A=="; 122 130 }; 123 131 } 124 132 { 125 - name = "_types_node___node_16.11.58.tgz"; 133 + name = "_types_node___node_16.11.68.tgz"; 126 134 path = fetchurl { 127 - name = "_types_node___node_16.11.58.tgz"; 128 - url = "https://registry.yarnpkg.com/@types/node/-/node-16.11.58.tgz"; 129 - sha512 = "uMVxJ111wpHzkx/vshZFb6Qni3BOMnlWLq7q9jrwej7Yw/KvjsEbpxCCxw+hLKxexFMc8YmpG8J9tnEe/rKsIg=="; 135 + name = "_types_node___node_16.11.68.tgz"; 136 + url = "https://registry.yarnpkg.com/@types/node/-/node-16.11.68.tgz"; 137 + sha512 = "JkRpuVz3xCNCWaeQ5EHLR/6woMbHZz/jZ7Kmc63AkU+1HxnoUugzSWMck7dsR4DvNYX8jp9wTi9K7WvnxOIQZQ=="; 130 138 }; 131 139 } 132 140 { ··· 154 162 }; 155 163 } 156 164 { 157 - name = "_types_yargs___yargs_17.0.12.tgz"; 165 + name = "_types_yargs___yargs_17.0.13.tgz"; 158 166 path = fetchurl { 159 - name = "_types_yargs___yargs_17.0.12.tgz"; 160 - url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.12.tgz"; 161 - sha512 = "Nz4MPhecOFArtm81gFQvQqdV7XYCrWKx5uUt6GNHredFHn1i2mtWqXTON7EPXMtNi1qjtjEM/VCHDhcHsAMLXQ=="; 167 + name = "_types_yargs___yargs_17.0.13.tgz"; 168 + url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.13.tgz"; 169 + sha512 = "9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg=="; 162 170 }; 163 171 } 164 172 { ··· 194 202 }; 195 203 } 196 204 { 197 - name = "ansi_align___ansi_align_3.0.1.tgz"; 198 - path = fetchurl { 199 - name = "ansi_align___ansi_align_3.0.1.tgz"; 200 - url = "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.1.tgz"; 201 - sha512 = "IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w=="; 202 - }; 203 - } 204 - { 205 205 name = "ansi_regex___ansi_regex_5.0.1.tgz"; 206 206 path = fetchurl { 207 207 name = "ansi_regex___ansi_regex_5.0.1.tgz"; ··· 226 226 }; 227 227 } 228 228 { 229 - name = "app_builder_lib___app_builder_lib_23.3.3.tgz"; 229 + name = "app_builder_lib___app_builder_lib_23.6.0.tgz"; 230 230 path = fetchurl { 231 - name = "app_builder_lib___app_builder_lib_23.3.3.tgz"; 232 - url = "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-23.3.3.tgz"; 233 - sha512 = "m0+M53+HYMzqKxwNQZT143K7WwXEGUy9LY31l8dJphXx2P/FQod615mVbxHyqbDCG4J5bHdWm21qZ0e2DVY6CQ=="; 231 + name = "app_builder_lib___app_builder_lib_23.6.0.tgz"; 232 + url = "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-23.6.0.tgz"; 233 + sha512 = "dQYDuqm/rmy8GSCE6Xl/3ShJg6Ab4bZJMT8KaTKGzT436gl1DN4REP3FCWfXoh75qGTJ+u+WsdnnpO9Jl8nyMA=="; 234 234 }; 235 235 } 236 236 { ··· 306 306 }; 307 307 } 308 308 { 309 - name = "axios___axios_0.27.2.tgz"; 309 + name = "axios___axios_1.1.3.tgz"; 310 310 path = fetchurl { 311 - name = "axios___axios_0.27.2.tgz"; 312 - url = "https://registry.yarnpkg.com/axios/-/axios-0.27.2.tgz"; 313 - sha512 = "t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ=="; 311 + name = "axios___axios_1.1.3.tgz"; 312 + url = "https://registry.yarnpkg.com/axios/-/axios-1.1.3.tgz"; 313 + sha512 = "00tXVRwKx/FZr/IDVFt4C+f9FYairX517WoGCL6dpOntqLkZofjhu43F/Xl44UOpqa+9sLFDrG/XAnFsUYgkDA=="; 314 314 }; 315 315 } 316 316 { ··· 362 362 }; 363 363 } 364 364 { 365 - name = "bootstrap___bootstrap_5.2.1.tgz"; 366 - path = fetchurl { 367 - name = "bootstrap___bootstrap_5.2.1.tgz"; 368 - url = "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.2.1.tgz"; 369 - sha512 = "UQi3v2NpVPEi1n35dmRRzBJFlgvWHYwyem6yHhuT6afYF+sziEt46McRbT//kVXZ7b1YUYEVGdXEH74Nx3xzGA=="; 370 - }; 371 - } 372 - { 373 - name = "boxen___boxen_5.1.2.tgz"; 365 + name = "bootstrap___bootstrap_5.2.2.tgz"; 374 366 path = fetchurl { 375 - name = "boxen___boxen_5.1.2.tgz"; 376 - url = "https://registry.yarnpkg.com/boxen/-/boxen-5.1.2.tgz"; 377 - sha512 = "9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ=="; 367 + name = "bootstrap___bootstrap_5.2.2.tgz"; 368 + url = "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.2.2.tgz"; 369 + sha512 = "dEtzMTV71n6Fhmbg4fYJzQsw1N29hJKO1js5ackCgIpDcGid2ETMGC6zwSYw09v05Y+oRdQ9loC54zB1La3hHQ=="; 378 370 }; 379 371 } 380 372 { ··· 450 442 }; 451 443 } 452 444 { 453 - name = "builder_util_runtime___builder_util_runtime_9.0.3.tgz"; 445 + name = "builder_util_runtime___builder_util_runtime_9.1.1.tgz"; 454 446 path = fetchurl { 455 - name = "builder_util_runtime___builder_util_runtime_9.0.3.tgz"; 456 - url = "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.0.3.tgz"; 457 - sha512 = "SfG2wnyjpUbbdtpnqDpWwklujofC6GarGpvdWrEkg9p5AD/xJmTF2buTNaqs3qtsNBEVQDDjZz9xc2GGpVyMfA=="; 447 + name = "builder_util_runtime___builder_util_runtime_9.1.1.tgz"; 448 + url = "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.1.1.tgz"; 449 + sha512 = "azRhYLEoDvRDR8Dhis4JatELC/jUvYjm4cVSj7n9dauGTOM2eeNn9KS0z6YA6oDsjI1xphjNbY6PZZeHPzzqaw=="; 458 450 }; 459 451 } 460 452 { 461 - name = "builder_util___builder_util_23.3.3.tgz"; 453 + name = "builder_util___builder_util_23.6.0.tgz"; 462 454 path = fetchurl { 463 - name = "builder_util___builder_util_23.3.3.tgz"; 464 - url = "https://registry.yarnpkg.com/builder-util/-/builder-util-23.3.3.tgz"; 465 - sha512 = "MJZlUiq2PY5hjYv9+XNaoYdsITqvLgRDoHSFg/4nzpInbNxNjLQOolL04Zsyp+hgfcbFvMC4h0KkR1CMPHLWbA=="; 455 + name = "builder_util___builder_util_23.6.0.tgz"; 456 + url = "https://registry.yarnpkg.com/builder-util/-/builder-util-23.6.0.tgz"; 457 + sha512 = "QiQHweYsh8o+U/KNCZFSvISRnvRctb8m/2rB2I1JdByzvNKxPeFLlHFRPQRXab6aYeXc18j9LpsDLJ3sGQmWTQ=="; 466 458 }; 467 459 } 468 460 { ··· 474 466 }; 475 467 } 476 468 { 477 - name = "camelcase___camelcase_6.3.0.tgz"; 478 - path = fetchurl { 479 - name = "camelcase___camelcase_6.3.0.tgz"; 480 - url = "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz"; 481 - sha512 = "Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="; 482 - }; 483 - } 484 - { 485 469 name = "chalk___chalk_4.1.2.tgz"; 486 470 path = fetchurl { 487 471 name = "chalk___chalk_4.1.2.tgz"; ··· 514 498 }; 515 499 } 516 500 { 517 - name = "ci_info___ci_info_2.0.0.tgz"; 501 + name = "ci_info___ci_info_3.5.0.tgz"; 518 502 path = fetchurl { 519 - name = "ci_info___ci_info_2.0.0.tgz"; 520 - url = "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz"; 521 - sha512 = "5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="; 522 - }; 523 - } 524 - { 525 - name = "ci_info___ci_info_3.4.0.tgz"; 526 - path = fetchurl { 527 - name = "ci_info___ci_info_3.4.0.tgz"; 528 - url = "https://registry.yarnpkg.com/ci-info/-/ci-info-3.4.0.tgz"; 529 - sha512 = "t5QdPT5jq3o262DOQ8zA6E1tlH2upmUc4Hlvrbx1pGYJuiiHl7O7rvVNI+l8HTVhd/q3Qc9vqimkNk5yiXsAug=="; 530 - }; 531 - } 532 - { 533 - name = "cli_boxes___cli_boxes_2.2.1.tgz"; 534 - path = fetchurl { 535 - name = "cli_boxes___cli_boxes_2.2.1.tgz"; 536 - url = "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz"; 537 - sha512 = "y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw=="; 503 + name = "ci_info___ci_info_3.5.0.tgz"; 504 + url = "https://registry.yarnpkg.com/ci-info/-/ci-info-3.5.0.tgz"; 505 + sha512 = "yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw=="; 538 506 }; 539 507 } 540 508 { ··· 554 522 }; 555 523 } 556 524 { 557 - name = "cliui___cliui_7.0.4.tgz"; 525 + name = "cliui___cliui_8.0.1.tgz"; 558 526 path = fetchurl { 559 - name = "cliui___cliui_7.0.4.tgz"; 560 - url = "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz"; 561 - sha512 = "OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ=="; 527 + name = "cliui___cliui_8.0.1.tgz"; 528 + url = "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz"; 529 + sha512 = "BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ=="; 562 530 }; 563 531 } 564 532 { ··· 642 610 }; 643 611 } 644 612 { 645 - name = "configstore___configstore_5.0.1.tgz"; 646 - path = fetchurl { 647 - name = "configstore___configstore_5.0.1.tgz"; 648 - url = "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz"; 649 - sha512 = "aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA=="; 650 - }; 651 - } 652 - { 653 613 name = "core_util_is___core_util_is_1.0.2.tgz"; 654 614 path = fetchurl { 655 615 name = "core_util_is___core_util_is_1.0.2.tgz"; ··· 690 650 }; 691 651 } 692 652 { 693 - name = "crypto_random_string___crypto_random_string_2.0.0.tgz"; 694 - path = fetchurl { 695 - name = "crypto_random_string___crypto_random_string_2.0.0.tgz"; 696 - url = "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz"; 697 - sha512 = "v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA=="; 698 - }; 699 - } 700 - { 701 653 name = "debug___debug_4.3.4.tgz"; 702 654 path = fetchurl { 703 655 name = "debug___debug_4.3.4.tgz"; ··· 778 730 }; 779 731 } 780 732 { 781 - name = "devtools_protocol___devtools_protocol_0.0.1036444.tgz"; 733 + name = "devtools_protocol___devtools_protocol_0.0.1045489.tgz"; 782 734 path = fetchurl { 783 - name = "devtools_protocol___devtools_protocol_0.0.1036444.tgz"; 784 - url = "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.1036444.tgz"; 785 - sha512 = "0y4f/T8H9lsESV9kKP1HDUXgHxCdniFeJh6Erq+FbdOEvp/Ydp9t8kcAAM5gOd17pMrTDlFWntoHtzzeTUWKNw=="; 735 + name = "devtools_protocol___devtools_protocol_0.0.1045489.tgz"; 736 + url = "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.1045489.tgz"; 737 + sha512 = "D+PTmWulkuQW4D1NTiCRCFxF7pQPn0hgp4YyX4wAQ6xYXKOadSWPR3ENGDQ47MW/Ewc9v2rpC/UEEGahgBYpSQ=="; 786 738 }; 787 739 } 788 740 { ··· 794 746 }; 795 747 } 796 748 { 797 - name = "dmg_builder___dmg_builder_23.3.3.tgz"; 749 + name = "dmg_builder___dmg_builder_23.6.0.tgz"; 798 750 path = fetchurl { 799 - name = "dmg_builder___dmg_builder_23.3.3.tgz"; 800 - url = "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-23.3.3.tgz"; 801 - sha512 = "ECwAjt+ZWyOvddrkDx1xRD6IVUCZb5SV6vSMHZd+Va3G2sUXHrnglR1cGDKRF4oYRQm8SYVrpLZKbi8npyDcAQ=="; 751 + name = "dmg_builder___dmg_builder_23.6.0.tgz"; 752 + url = "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-23.6.0.tgz"; 753 + sha512 = "jFZvY1JohyHarIAlTbfQOk+HnceGjjAdFjVn3n8xlDWKsYNqbO4muca6qXEZTfGXeQMG7TYim6CeS5XKSfSsGA=="; 802 754 }; 803 755 } 804 756 { ··· 807 759 name = "dmg_license___dmg_license_1.0.11.tgz"; 808 760 url = "https://registry.yarnpkg.com/dmg-license/-/dmg-license-1.0.11.tgz"; 809 761 sha512 = "ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q=="; 810 - }; 811 - } 812 - { 813 - name = "dot_prop___dot_prop_5.3.0.tgz"; 814 - path = fetchurl { 815 - name = "dot_prop___dot_prop_5.3.0.tgz"; 816 - url = "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz"; 817 - sha512 = "QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q=="; 818 762 }; 819 763 } 820 764 { ··· 850 794 }; 851 795 } 852 796 { 853 - name = "electron_builder___electron_builder_23.3.3.tgz"; 797 + name = "electron_builder___electron_builder_23.6.0.tgz"; 854 798 path = fetchurl { 855 - name = "electron_builder___electron_builder_23.3.3.tgz"; 856 - url = "https://registry.yarnpkg.com/electron-builder/-/electron-builder-23.3.3.tgz"; 857 - sha512 = "mFYYdhoFPKevP6y5uaaF3dusmB2OtQ/HnwwpyOePeU7QDS0SEIAUokQsHUanAiJAZcBqtY7iyLBgX18QybdFFw=="; 799 + name = "electron_builder___electron_builder_23.6.0.tgz"; 800 + url = "https://registry.yarnpkg.com/electron-builder/-/electron-builder-23.6.0.tgz"; 801 + sha512 = "y8D4zO+HXGCNxFBV/JlyhFnoQ0Y0K7/sFH+XwIbj47pqaW8S6PGYQbjoObolKBR1ddQFPt4rwp4CnwMJrW3HAw=="; 858 802 }; 859 803 } 860 804 { ··· 866 810 }; 867 811 } 868 812 { 869 - name = "electron_publish___electron_publish_23.3.3.tgz"; 813 + name = "electron_publish___electron_publish_23.6.0.tgz"; 870 814 path = fetchurl { 871 - name = "electron_publish___electron_publish_23.3.3.tgz"; 872 - url = "https://registry.yarnpkg.com/electron-publish/-/electron-publish-23.3.3.tgz"; 873 - sha512 = "1dX17eE5xVXedTxjC+gjsP74oC0+sIHgqysp0ryTlF9+yfQUyXjBk6kcK+zhtBA2SsHMSglDtM+JPxDD/WpPTQ=="; 815 + name = "electron_publish___electron_publish_23.6.0.tgz"; 816 + url = "https://registry.yarnpkg.com/electron-publish/-/electron-publish-23.6.0.tgz"; 817 + sha512 = "jPj3y+eIZQJF/+t5SLvsI5eS4mazCbNYqatv5JihbqOstIM13k0d1Z3vAWntvtt13Itl61SO6seicWdioOU5dg=="; 874 818 }; 875 819 } 876 820 { 877 - name = "electron___electron_20.1.3.tgz"; 821 + name = "electron___electron_21.2.0.tgz"; 878 822 path = fetchurl { 879 - name = "electron___electron_20.1.3.tgz"; 880 - url = "https://registry.yarnpkg.com/electron/-/electron-20.1.3.tgz"; 881 - sha512 = "DXBHzAwcpCor9MrxG9QA3Zt0sNcQbJ8ZJCYTC6xpuPe5wugBa6RF3hXqDUYdD2yOCUhjLbD3VASWn0+5LdYT3g=="; 823 + name = "electron___electron_21.2.0.tgz"; 824 + url = "https://registry.yarnpkg.com/electron/-/electron-21.2.0.tgz"; 825 + sha512 = "oKV4fo8l6jlOZ1cYZ4RpZz02ZxLuBo3SO7DH+FrJ8uDyCirP+eVJ/qlzu23odtNe0P7S/mYAZbC6abZHWoqtLg=="; 882 826 }; 883 827 } 884 828 { ··· 927 871 name = "escalade___escalade_3.1.1.tgz"; 928 872 url = "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz"; 929 873 sha512 = "k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="; 930 - }; 931 - } 932 - { 933 - name = "escape_goat___escape_goat_2.1.1.tgz"; 934 - path = fetchurl { 935 - name = "escape_goat___escape_goat_2.1.1.tgz"; 936 - url = "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz"; 937 - sha512 = "8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q=="; 938 874 }; 939 875 } 940 876 { ··· 1018 954 }; 1019 955 } 1020 956 { 1021 - name = "follow_redirects___follow_redirects_1.15.1.tgz"; 957 + name = "follow_redirects___follow_redirects_1.15.2.tgz"; 1022 958 path = fetchurl { 1023 - name = "follow_redirects___follow_redirects_1.15.1.tgz"; 1024 - url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.1.tgz"; 1025 - sha512 = "yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA=="; 1026 - }; 1027 - } 1028 - { 1029 - name = "font_awesome___font_awesome_4.7.0.tgz"; 1030 - path = fetchurl { 1031 - name = "font_awesome___font_awesome_4.7.0.tgz"; 1032 - url = "https://registry.yarnpkg.com/font-awesome/-/font-awesome-4.7.0.tgz"; 1033 - sha512 = "U6kGnykA/6bFmg1M/oT9EkFeIYv7JlX3bozwQJWiiLz6L0w3F5vBVPxHlwyX/vtNq1ckcpRKOB9f2Qal/VtFpg=="; 959 + name = "follow_redirects___follow_redirects_1.15.2.tgz"; 960 + url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz"; 961 + sha512 = "VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA=="; 1034 962 }; 1035 963 } 1036 964 { ··· 1106 1034 }; 1107 1035 } 1108 1036 { 1109 - name = "get_intrinsic___get_intrinsic_1.1.2.tgz"; 1037 + name = "get_intrinsic___get_intrinsic_1.1.3.tgz"; 1110 1038 path = fetchurl { 1111 - name = "get_intrinsic___get_intrinsic_1.1.2.tgz"; 1112 - url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.2.tgz"; 1113 - sha512 = "Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA=="; 1039 + name = "get_intrinsic___get_intrinsic_1.1.3.tgz"; 1040 + url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz"; 1041 + sha512 = "QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A=="; 1114 1042 }; 1115 1043 } 1116 1044 { ··· 1151 1079 name = "global_agent___global_agent_3.0.0.tgz"; 1152 1080 url = "https://registry.yarnpkg.com/global-agent/-/global-agent-3.0.0.tgz"; 1153 1081 sha512 = "PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q=="; 1154 - }; 1155 - } 1156 - { 1157 - name = "global_dirs___global_dirs_3.0.0.tgz"; 1158 - path = fetchurl { 1159 - name = "global_dirs___global_dirs_3.0.0.tgz"; 1160 - url = "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.0.tgz"; 1161 - sha512 = "v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA=="; 1162 1082 }; 1163 1083 } 1164 1084 { ··· 1226 1146 }; 1227 1147 } 1228 1148 { 1229 - name = "has_yarn___has_yarn_2.1.0.tgz"; 1230 - path = fetchurl { 1231 - name = "has_yarn___has_yarn_2.1.0.tgz"; 1232 - url = "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz"; 1233 - sha512 = "UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw=="; 1234 - }; 1235 - } 1236 - { 1237 1149 name = "has___has_1.0.3.tgz"; 1238 1150 path = fetchurl { 1239 1151 name = "has___has_1.0.3.tgz"; ··· 1298 1210 }; 1299 1211 } 1300 1212 { 1301 - name = "import_lazy___import_lazy_2.1.0.tgz"; 1302 - path = fetchurl { 1303 - name = "import_lazy___import_lazy_2.1.0.tgz"; 1304 - url = "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz"; 1305 - sha512 = "m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A=="; 1306 - }; 1307 - } 1308 - { 1309 - name = "imurmurhash___imurmurhash_0.1.4.tgz"; 1310 - path = fetchurl { 1311 - name = "imurmurhash___imurmurhash_0.1.4.tgz"; 1312 - url = "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz"; 1313 - sha512 = "JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="; 1314 - }; 1315 - } 1316 - { 1317 1213 name = "inflight___inflight_1.0.6.tgz"; 1318 1214 path = fetchurl { 1319 1215 name = "inflight___inflight_1.0.6.tgz"; ··· 1327 1223 name = "inherits___inherits_2.0.4.tgz"; 1328 1224 url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz"; 1329 1225 sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; 1330 - }; 1331 - } 1332 - { 1333 - name = "ini___ini_2.0.0.tgz"; 1334 - path = fetchurl { 1335 - name = "ini___ini_2.0.0.tgz"; 1336 - url = "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz"; 1337 - sha512 = "7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA=="; 1338 1226 }; 1339 1227 } 1340 1228 { ··· 1346 1234 }; 1347 1235 } 1348 1236 { 1349 - name = "is_ci___is_ci_2.0.0.tgz"; 1350 - path = fetchurl { 1351 - name = "is_ci___is_ci_2.0.0.tgz"; 1352 - url = "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz"; 1353 - sha512 = "YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w=="; 1354 - }; 1355 - } 1356 - { 1357 1237 name = "is_ci___is_ci_3.0.1.tgz"; 1358 1238 path = fetchurl { 1359 1239 name = "is_ci___is_ci_3.0.1.tgz"; ··· 1378 1258 }; 1379 1259 } 1380 1260 { 1381 - name = "is_installed_globally___is_installed_globally_0.4.0.tgz"; 1382 - path = fetchurl { 1383 - name = "is_installed_globally___is_installed_globally_0.4.0.tgz"; 1384 - url = "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz"; 1385 - sha512 = "iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ=="; 1386 - }; 1387 - } 1388 - { 1389 - name = "is_npm___is_npm_5.0.0.tgz"; 1390 - path = fetchurl { 1391 - name = "is_npm___is_npm_5.0.0.tgz"; 1392 - url = "https://registry.yarnpkg.com/is-npm/-/is-npm-5.0.0.tgz"; 1393 - sha512 = "WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA=="; 1394 - }; 1395 - } 1396 - { 1397 - name = "is_obj___is_obj_2.0.0.tgz"; 1398 - path = fetchurl { 1399 - name = "is_obj___is_obj_2.0.0.tgz"; 1400 - url = "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz"; 1401 - sha512 = "drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w=="; 1402 - }; 1403 - } 1404 - { 1405 - name = "is_path_inside___is_path_inside_3.0.3.tgz"; 1406 - path = fetchurl { 1407 - name = "is_path_inside___is_path_inside_3.0.3.tgz"; 1408 - url = "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz"; 1409 - sha512 = "Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ=="; 1410 - }; 1411 - } 1412 - { 1413 1261 name = "is_stream___is_stream_1.1.0.tgz"; 1414 1262 path = fetchurl { 1415 1263 name = "is_stream___is_stream_1.1.0.tgz"; ··· 1418 1266 }; 1419 1267 } 1420 1268 { 1421 - name = "is_typedarray___is_typedarray_1.0.0.tgz"; 1422 - path = fetchurl { 1423 - name = "is_typedarray___is_typedarray_1.0.0.tgz"; 1424 - url = "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz"; 1425 - sha512 = "cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA=="; 1426 - }; 1427 - } 1428 - { 1429 1269 name = "is_wsl___is_wsl_2.2.0.tgz"; 1430 1270 path = fetchurl { 1431 1271 name = "is_wsl___is_wsl_2.2.0.tgz"; 1432 1272 url = "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz"; 1433 1273 sha512 = "fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww=="; 1434 - }; 1435 - } 1436 - { 1437 - name = "is_yarn_global___is_yarn_global_0.3.0.tgz"; 1438 - path = fetchurl { 1439 - name = "is_yarn_global___is_yarn_global_0.3.0.tgz"; 1440 - url = "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz"; 1441 - sha512 = "VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw=="; 1442 1274 }; 1443 1275 } 1444 1276 { ··· 1554 1386 }; 1555 1387 } 1556 1388 { 1557 - name = "latest_version___latest_version_5.1.0.tgz"; 1558 - path = fetchurl { 1559 - name = "latest_version___latest_version_5.1.0.tgz"; 1560 - url = "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz"; 1561 - sha512 = "weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA=="; 1562 - }; 1563 - } 1564 - { 1565 1389 name = "lazy_val___lazy_val_1.0.5.tgz"; 1566 1390 path = fetchurl { 1567 1391 name = "lazy_val___lazy_val_1.0.5.tgz"; ··· 1599 1423 name = "lru_cache___lru_cache_6.0.0.tgz"; 1600 1424 url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz"; 1601 1425 sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 1602 - }; 1603 - } 1604 - { 1605 - name = "make_dir___make_dir_3.1.0.tgz"; 1606 - path = fetchurl { 1607 - name = "make_dir___make_dir_3.1.0.tgz"; 1608 - url = "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz"; 1609 - sha512 = "g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="; 1610 1426 }; 1611 1427 } 1612 1428 { ··· 1682 1498 }; 1683 1499 } 1684 1500 { 1685 - name = "minimist___minimist_1.2.6.tgz"; 1501 + name = "minimist___minimist_1.2.7.tgz"; 1686 1502 path = fetchurl { 1687 - name = "minimist___minimist_1.2.6.tgz"; 1688 - url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz"; 1689 - sha512 = "Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="; 1503 + name = "minimist___minimist_1.2.7.tgz"; 1504 + url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz"; 1505 + sha512 = "bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g=="; 1690 1506 }; 1691 1507 } 1692 1508 { ··· 1754 1570 }; 1755 1571 } 1756 1572 { 1757 - name = "node_abi___node_abi_3.24.0.tgz"; 1573 + name = "node_abi___node_abi_3.28.0.tgz"; 1758 1574 path = fetchurl { 1759 - name = "node_abi___node_abi_3.24.0.tgz"; 1760 - url = "https://registry.yarnpkg.com/node-abi/-/node-abi-3.24.0.tgz"; 1761 - sha512 = "YPG3Co0luSu6GwOBsmIdGW6Wx0NyNDLg/hriIyDllVsNwnI6UeqaWShxC3lbH4LtEQUgoLP3XR1ndXiDAWvmRw=="; 1575 + name = "node_abi___node_abi_3.28.0.tgz"; 1576 + url = "https://registry.yarnpkg.com/node-abi/-/node-abi-3.28.0.tgz"; 1577 + sha512 = "fRlDb4I0eLcQeUvGq7IY3xHrSb0c9ummdvDSYWfT9+LKP+3jCKw/tKoqaM7r1BAoiAC6GtwyjaGnOz6B3OtF+A=="; 1762 1578 }; 1763 1579 } 1764 1580 { ··· 1842 1658 }; 1843 1659 } 1844 1660 { 1845 - name = "package_json___package_json_6.5.0.tgz"; 1846 - path = fetchurl { 1847 - name = "package_json___package_json_6.5.0.tgz"; 1848 - url = "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz"; 1849 - sha512 = "k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ=="; 1850 - }; 1851 - } 1852 - { 1853 1661 name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; 1854 1662 path = fetchurl { 1855 1663 name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; ··· 1954 1762 }; 1955 1763 } 1956 1764 { 1957 - name = "pupa___pupa_2.1.1.tgz"; 1765 + name = "puppeteer_core___puppeteer_core_19.0.0.tgz"; 1958 1766 path = fetchurl { 1959 - name = "pupa___pupa_2.1.1.tgz"; 1960 - url = "https://registry.yarnpkg.com/pupa/-/pupa-2.1.1.tgz"; 1961 - sha512 = "l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A=="; 1767 + name = "puppeteer_core___puppeteer_core_19.0.0.tgz"; 1768 + url = "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-19.0.0.tgz"; 1769 + sha512 = "OljQ9W5M4cBX68vnOAGbcRkVENDHn6lfj6QYoGsnLQsxPAh6ExTQAhHauwdFdQkhYdDExZFWlKArnBONzeHY+g=="; 1962 1770 }; 1963 1771 } 1964 1772 { 1965 - name = "puppeteer___puppeteer_17.1.2.tgz"; 1773 + name = "puppeteer___puppeteer_19.0.0.tgz"; 1966 1774 path = fetchurl { 1967 - name = "puppeteer___puppeteer_17.1.2.tgz"; 1968 - url = "https://registry.yarnpkg.com/puppeteer/-/puppeteer-17.1.2.tgz"; 1969 - sha512 = "xgFOxUl4hRjwQpODZSeJlE/rUzi8OmHtc3T4ir4CRYGzVmaTVHAl8VGpI0ooy752u2DFeMxvQdHmxNnLqPImIg=="; 1775 + name = "puppeteer___puppeteer_19.0.0.tgz"; 1776 + url = "https://registry.yarnpkg.com/puppeteer/-/puppeteer-19.0.0.tgz"; 1777 + sha512 = "3Ga5IVerQQ2hKU9q7T28RmcUsd8F2kL6cYuPcPCzeclSjmHhGydPBZL/KJKC02sG6J6Wfry85uiWpbkjQ5qBiw=="; 1970 1778 }; 1971 1779 } 1972 1780 { ··· 1991 1799 name = "readable_stream___readable_stream_3.6.0.tgz"; 1992 1800 url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz"; 1993 1801 sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; 1994 - }; 1995 - } 1996 - { 1997 - name = "registry_auth_token___registry_auth_token_4.2.2.tgz"; 1998 - path = fetchurl { 1999 - name = "registry_auth_token___registry_auth_token_4.2.2.tgz"; 2000 - url = "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.2.tgz"; 2001 - sha512 = "PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg=="; 2002 - }; 2003 - } 2004 - { 2005 - name = "registry_url___registry_url_5.1.0.tgz"; 2006 - path = fetchurl { 2007 - name = "registry_url___registry_url_5.1.0.tgz"; 2008 - url = "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz"; 2009 - sha512 = "8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw=="; 2010 1802 }; 2011 1803 } 2012 1804 { ··· 2082 1874 }; 2083 1875 } 2084 1876 { 2085 - name = "semver_diff___semver_diff_3.1.1.tgz"; 2086 - path = fetchurl { 2087 - name = "semver_diff___semver_diff_3.1.1.tgz"; 2088 - url = "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz"; 2089 - sha512 = "GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg=="; 2090 - }; 2091 - } 2092 - { 2093 1877 name = "semver___semver_5.7.1.tgz"; 2094 1878 path = fetchurl { 2095 1879 name = "semver___semver_5.7.1.tgz"; ··· 2106 1890 }; 2107 1891 } 2108 1892 { 2109 - name = "semver___semver_7.3.7.tgz"; 1893 + name = "semver___semver_7.3.8.tgz"; 2110 1894 path = fetchurl { 2111 - name = "semver___semver_7.3.7.tgz"; 2112 - url = "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz"; 2113 - sha512 = "QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g=="; 1895 + name = "semver___semver_7.3.8.tgz"; 1896 + url = "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz"; 1897 + sha512 = "NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A=="; 1898 + }; 1899 + } 1900 + { 1901 + name = "semver___semver_7.0.0.tgz"; 1902 + path = fetchurl { 1903 + name = "semver___semver_7.0.0.tgz"; 1904 + url = "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz"; 1905 + sha512 = "+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A=="; 2114 1906 }; 2115 1907 } 2116 1908 { ··· 2175 1967 name = "simple_get___simple_get_4.0.1.tgz"; 2176 1968 url = "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz"; 2177 1969 sha512 = "brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA=="; 1970 + }; 1971 + } 1972 + { 1973 + name = "simple_update_notifier___simple_update_notifier_1.0.7.tgz"; 1974 + path = fetchurl { 1975 + name = "simple_update_notifier___simple_update_notifier_1.0.7.tgz"; 1976 + url = "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-1.0.7.tgz"; 1977 + sha512 = "BBKgR84BJQJm6WjWFMHgLVuo61FBDSj1z/xSFUIozqO6wO7ii0JxCqlIud7Enr/+LhlbNI0whErq96P2qHNWew=="; 2178 1978 }; 2179 1979 } 2180 1980 { ··· 2386 2186 }; 2387 2187 } 2388 2188 { 2389 - name = "type_fest___type_fest_0.20.2.tgz"; 2390 - path = fetchurl { 2391 - name = "type_fest___type_fest_0.20.2.tgz"; 2392 - url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz"; 2393 - sha512 = "Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="; 2394 - }; 2395 - } 2396 - { 2397 - name = "typedarray_to_buffer___typedarray_to_buffer_3.1.5.tgz"; 2398 - path = fetchurl { 2399 - name = "typedarray_to_buffer___typedarray_to_buffer_3.1.5.tgz"; 2400 - url = "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz"; 2401 - sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; 2402 - }; 2403 - } 2404 - { 2405 2189 name = "unbzip2_stream___unbzip2_stream_1.4.3.tgz"; 2406 2190 path = fetchurl { 2407 2191 name = "unbzip2_stream___unbzip2_stream_1.4.3.tgz"; ··· 2410 2194 }; 2411 2195 } 2412 2196 { 2413 - name = "unique_string___unique_string_2.0.0.tgz"; 2414 - path = fetchurl { 2415 - name = "unique_string___unique_string_2.0.0.tgz"; 2416 - url = "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz"; 2417 - sha512 = "uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg=="; 2418 - }; 2419 - } 2420 - { 2421 2197 name = "universalify___universalify_0.1.2.tgz"; 2422 2198 path = fetchurl { 2423 2199 name = "universalify___universalify_0.1.2.tgz"; ··· 2431 2207 name = "universalify___universalify_2.0.0.tgz"; 2432 2208 url = "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz"; 2433 2209 sha512 = "hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ=="; 2434 - }; 2435 - } 2436 - { 2437 - name = "update_notifier___update_notifier_5.1.0.tgz"; 2438 - path = fetchurl { 2439 - name = "update_notifier___update_notifier_5.1.0.tgz"; 2440 - url = "https://registry.yarnpkg.com/update-notifier/-/update-notifier-5.1.0.tgz"; 2441 - sha512 = "ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw=="; 2442 2210 }; 2443 2211 } 2444 2212 { ··· 2514 2282 }; 2515 2283 } 2516 2284 { 2517 - name = "widest_line___widest_line_3.1.0.tgz"; 2518 - path = fetchurl { 2519 - name = "widest_line___widest_line_3.1.0.tgz"; 2520 - url = "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz"; 2521 - sha512 = "NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg=="; 2522 - }; 2523 - } 2524 - { 2525 2285 name = "wrap_ansi___wrap_ansi_7.0.0.tgz"; 2526 2286 path = fetchurl { 2527 2287 name = "wrap_ansi___wrap_ansi_7.0.0.tgz"; ··· 2538 2298 }; 2539 2299 } 2540 2300 { 2541 - name = "write_file_atomic___write_file_atomic_3.0.3.tgz"; 2542 - path = fetchurl { 2543 - name = "write_file_atomic___write_file_atomic_3.0.3.tgz"; 2544 - url = "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz"; 2545 - sha512 = "AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q=="; 2546 - }; 2547 - } 2548 - { 2549 - name = "ws___ws_8.8.1.tgz"; 2301 + name = "ws___ws_8.9.0.tgz"; 2550 2302 path = fetchurl { 2551 - name = "ws___ws_8.8.1.tgz"; 2552 - url = "https://registry.yarnpkg.com/ws/-/ws-8.8.1.tgz"; 2553 - sha512 = "bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA=="; 2554 - }; 2555 - } 2556 - { 2557 - name = "xdg_basedir___xdg_basedir_4.0.0.tgz"; 2558 - path = fetchurl { 2559 - name = "xdg_basedir___xdg_basedir_4.0.0.tgz"; 2560 - url = "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz"; 2561 - sha512 = "PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q=="; 2303 + name = "ws___ws_8.9.0.tgz"; 2304 + url = "https://registry.yarnpkg.com/ws/-/ws-8.9.0.tgz"; 2305 + sha512 = "Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg=="; 2562 2306 }; 2563 2307 } 2564 2308 { ··· 2594 2338 }; 2595 2339 } 2596 2340 { 2597 - name = "yargs___yargs_17.5.1.tgz"; 2341 + name = "yargs___yargs_17.6.0.tgz"; 2598 2342 path = fetchurl { 2599 - name = "yargs___yargs_17.5.1.tgz"; 2600 - url = "https://registry.yarnpkg.com/yargs/-/yargs-17.5.1.tgz"; 2601 - sha512 = "t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA=="; 2343 + name = "yargs___yargs_17.6.0.tgz"; 2344 + url = "https://registry.yarnpkg.com/yargs/-/yargs-17.6.0.tgz"; 2345 + sha512 = "8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g=="; 2602 2346 }; 2603 2347 } 2604 2348 {
+2 -2
pkgs/tools/networking/igmpproxy/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "igmpproxy"; 5 - version = "0.3"; 5 + version = "0.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "pali"; 9 9 repo = "igmpproxy"; 10 10 rev = version; 11 - sha256 = "sha256-B7mq+5pKWMO4dJeFPB7tiyjDQjj90g/kmYB2ApBE3Ic="; 11 + sha256 = "sha256-kv8XtZ/z8zPHYSZ4k4arn2Y+L2xegr2DwhvlguJV820="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoreconfHook ];
+2 -2
pkgs/tools/networking/xl2tpd/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "xl2tpd"; 5 - version = "1.3.17"; 5 + version = "1.3.18"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "xelerance"; 9 9 repo = "xl2tpd"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ibHiQn6YBd80rXIxZeUSTNs9KOJXVGRlUIr753mLURk="; 11 + sha256 = "sha256-Uc3PeTf/ow9p8noPcMLdT6S5dks9igDU6CC9koy+ff4="; 12 12 }; 13 13 14 14 buildInputs = [ libpcap ];
+27
pkgs/tools/security/cdxgen/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , buildNpmPackage 4 + }: 5 + 6 + buildNpmPackage rec { 7 + pname = "cdxgen"; 8 + version = "6.0.14"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "AppThreat"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + sha256 = "sha256-ddeX2EwA2g6wgfsNxf/5ZVsQOHlINGhxif/y6368wCw="; 15 + }; 16 + 17 + npmDepsHash = "sha256-CJ939wT9dKUzMDH2yHKgT056F2AVBevJlS/NhUBjx0E="; 18 + 19 + dontNpmBuild = true; 20 + 21 + meta = with lib; { 22 + description = "Creates CycloneDX Software Bill-of-Materials (SBOM) for your projects from source and container images"; 23 + homepage = "https://github.com/AppThreat/cdxgen"; 24 + license = licenses.asl20; 25 + maintainers = with maintainers; [ dit7ya ]; 26 + }; 27 + }
+2 -2
pkgs/tools/security/duo-unix/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "duo-unix"; 5 - version = "1.12.1"; 5 + version = "2.0.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://dl.duosecurity.com/duo_unix-${version}.tar.gz"; 9 - sha256 = "sha256-oufVgjJHV4ew50gd529b3MvVtBoebcDUGZUn0rHP4ZE="; 9 + sha256 = "sha256-D5D3SJdKxv5iccNypfshcvrnHdk2D+h8c1Gnm87lzgY="; 10 10 }; 11 11 12 12 buildInputs = [ pam openssl zlib ];
+2 -2
pkgs/tools/security/proxmark3/proxmark3-rrg.nix
··· 7 7 8 8 mkDerivation rec { 9 9 pname = "proxmark3-rrg"; 10 - version = "4.14831"; 10 + version = "4.15864"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "RfidResearchGroup"; 14 14 repo = "proxmark3"; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-s0D04V6vlGW7SVkJwzMKaVfXQoT3Wi0lu7RC61Es89A="; 16 + sha256 = "sha256-vFebyXKC/vf8W8fGkTpSGTA0ZmfwnXSuuiOjV/u9240="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ pkg-config gcc-arm-embedded ];
+3 -3
pkgs/tools/security/step-ca/default.nix
··· 12 12 13 13 buildGoModule rec { 14 14 pname = "step-ca"; 15 - version = "0.23.0"; 15 + version = "0.23.1"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "smallstep"; 19 19 repo = "certificates"; 20 20 rev = "v${version}"; 21 - sha256 = "sha256-upi0EL6iviLV7hrLkh5PUAhx3/98kMISqHdy7NFODwI="; 21 + sha256 = "sha256-zIF7R0zIoqQx0epTJAVdesT6IOoNek7Blt7W3Ulng4A="; 22 22 }; 23 23 24 - vendorSha256 = "sha256-2uxDQVNTNBTj40vYMlCuwMPCQDGQfkdUc67qmP5+j7g="; 24 + vendorHash = "sha256-JX5jUIMwd+eCYRytaf+EXV/xHh6CCS2Ia0K+UQZxG7E="; 25 25 26 26 ldflags = [ "-buildid=" ]; 27 27
+3 -3
pkgs/tools/system/bottom/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "bottom"; 11 - version = "0.7.1"; 11 + version = "0.8.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "ClementTsang"; 15 15 repo = pname; 16 16 rev = version; 17 - sha256 = "sha256-g9MkS1ps4RTEvuZP9oJize+Uz7W6uCNNks+HjO771QU="; 17 + sha256 = "sha256-UbzWI3f1ewFwg7BsqcvPZFeJt5E6alShxNuIKy+Tno0="; 18 18 }; 19 19 20 - cargoHash = "sha256-wVvGj58dmpLH+zMu9e/TQ7gTvwmgYIYX5MrVcnOMu/A="; 20 + cargoHash = "sha256-ihCgaB+vP5YyqMIg8qrkCEvSQdc6Eq00D1r3PGc2WpA="; 21 21 22 22 nativeBuildInputs = [ installShellFiles ]; 23 23
+4 -4
pkgs/tools/virtualization/linode-cli/default.nix
··· 11 11 }: 12 12 13 13 let 14 - sha256 = "0lngwmb9j3nzwhkhq4r9sy82gwjry14lvjjgm8vfivbbakjdl7xp"; 14 + sha256 = "0r5by5d6wr5zbsaj211s99qg28nr7wm8iri6jxnksx5b375dah6g"; 15 15 # specVersion taken from: https://www.linode.com/docs/api/openapi.yaml at `info.version`. 16 - specVersion = "4.139.0"; 17 - specSha256 = "1z050vm049gb8vynp34iz9jpxwbpmbf5vbs1jsirwqbfhr1skslz"; 16 + specVersion = "4.140.0"; 17 + specSha256 = "0ay54m4aa8bmmpjc7s66rfzqzk4w25h48b9a665y29g67ybb432g"; 18 18 spec = fetchurl { 19 19 url = "https://raw.githubusercontent.com/linode/linode-api-docs/v${specVersion}/openapi.yaml"; 20 20 sha256 = specSha256; ··· 24 24 25 25 buildPythonApplication rec { 26 26 pname = "linode-cli"; 27 - version = "5.25.0"; 27 + version = "5.26.1"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "linode";
+1
pkgs/top-level/aliases.nix
··· 419 419 emacsPackagesNgGen = throw "'emacsPackagesNgGen' has been renamed to/replaced by 'emacsPackagesFor'"; # Converted to throw 2022-02-22 420 420 emacsWithPackages = emacs.pkgs.withPackages; # Added 2020-12-18 421 421 422 + empathy = throw "empathy was removed as it is unmaintained and no longer launches due to libsoup3 migration"; # Added 2023-01-20 422 423 enblendenfuse = throw "'enblendenfuse' has been renamed to/replaced by 'enblend-enfuse'"; # Converted to throw 2022-02-22 423 424 enchant1 = throw "enchant1 has been removed from nixpkgs, as it was unmaintained"; # Added 2023-01-18 424 425 encryptr = throw "encryptr was removed because it reached end of life"; # Added 2022-02-06
+7 -13
pkgs/top-level/all-packages.nix
··· 1874 1874 git-town = callPackage ../applications/version-management/git-town { }; 1875 1875 1876 1876 git-trim = callPackage ../applications/version-management/git-trim { 1877 - openssl = openssl_1_1; 1878 1877 inherit (darwin.apple_sdk.frameworks) Security; 1879 1878 }; 1880 1879 ··· 3896 3895 cawbird = callPackage ../applications/networking/cawbird { }; 3897 3896 3898 3897 cde = callPackage ../tools/package-management/cde { }; 3898 + 3899 + cdxgen = callPackage ../tools/security/cdxgen { }; 3899 3900 3900 3901 ceres-solver = callPackage ../development/libraries/ceres-solver { 3901 3902 gflags = null; # only required for examples/tests ··· 8546 8547 8547 8548 jot = callPackage ../applications/misc/jot { }; 8548 8549 8549 - journaldriver = callPackage ../tools/misc/journaldriver { 8550 - openssl = openssl_1_1; 8551 - }; 8550 + journaldriver = callPackage ../tools/misc/journaldriver { }; 8552 8551 8553 8552 jp = callPackage ../development/tools/jp { }; 8554 8553 ··· 15565 15564 }; 15566 15565 cargo-bisect-rustc = callPackage ../development/tools/rust/cargo-bisect-rustc { 15567 15566 inherit (darwin.apple_sdk.frameworks) Security; 15568 - openssl = openssl_1_1; 15569 15567 }; 15570 15568 cargo-bitbake = callPackage ../development/tools/rust/cargo-bitbake { }; 15571 15569 cargo-c = callPackage ../development/tools/rust/cargo-c { ··· 15620 15618 cargo-cache = callPackage ../development/tools/rust/cargo-cache { 15621 15619 inherit (darwin.apple_sdk.frameworks) Security; 15622 15620 }; 15621 + cargo-careful = callPackage ../development/tools/rust/cargo-careful { }; 15623 15622 cargo-chef = callPackage ../development/tools/rust/cargo-chef { }; 15624 15623 cargo-crev = callPackage ../development/tools/rust/cargo-crev { 15625 15624 inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration CoreFoundation; ··· 16114 16113 16115 16114 cliscord = callPackage ../misc/cliscord { 16116 16115 inherit (darwin.apple_sdk.frameworks) Security; 16117 - openssl = openssl_1_1; 16118 16116 }; 16119 16117 16120 16118 clisp = callPackage ../development/interpreters/clisp { ··· 21187 21185 # We also provide `libiconvReal`, which will always be a standalone libiconv, 21188 21186 # just in case you want it regardless of platform. 21189 21187 libiconv = 21190 - if lib.elem stdenv.hostPlatform.libc ["glibc" "musl" "wasilibc"] 21191 - then glibcIconv (if stdenv.hostPlatform != stdenv.buildPlatform 21188 + if lib.elem stdenv.hostPlatform.libc [ "glibc" "musl" "nblibc" "wasilibc" ] 21189 + then libcIconv (if stdenv.hostPlatform != stdenv.buildPlatform 21192 21190 then libcCross 21193 21191 else stdenv.cc.libc) 21194 21192 else if stdenv.hostPlatform.isDarwin 21195 21193 then darwin.libiconv 21196 - else if stdenv.hostPlatform.isNetBSD 21197 - then null 21198 21194 else libiconvReal; 21199 21195 21200 - glibcIconv = libc: let 21196 + libcIconv = libc: let 21201 21197 inherit (libc) pname version; 21202 21198 libcDev = lib.getDev libc; 21203 21199 in runCommand "${pname}-iconv-${version}" { strictDeps = true; } '' ··· 28832 28828 # This alias should live in aliases.nix but that would cause Hydra not to evaluate/build the packages. 28833 28829 # If you turn this into "real" alias again, please add it to pkgs/top-level/packages-config.nix again too 28834 28830 emacsPackages = emacs.pkgs; 28835 - 28836 - inherit (gnome) empathy; 28837 28831 28838 28832 emptty = callPackage ../applications/display-managers/emptty {}; 28839 28833