From 268db320794c93e632614a88d77955085c823007 Mon Sep 17 00:00:00 2001 From: diniamo Date: Mon, 2 Sep 2024 16:47:25 +0200 Subject: [PATCH 01/52] ani-skip: init at 1.0.1 --- pkgs/by-name/an/ani-skip/package.nix | 55 ++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 pkgs/by-name/an/ani-skip/package.nix diff --git a/pkgs/by-name/an/ani-skip/package.nix b/pkgs/by-name/an/ani-skip/package.nix new file mode 100644 index 000000000000..6302ec58ec2e --- /dev/null +++ b/pkgs/by-name/an/ani-skip/package.nix @@ -0,0 +1,55 @@ +{ + stdenvNoCC, + fetchFromGitHub, + makeWrapper, + gnugrep, + gnused, + curl, + fzf, + lib, +}: +stdenvNoCC.mkDerivation (finalAttrs: { + pname = "ani-skip"; + version = "1.0.1"; + + src = fetchFromGitHub { + owner = "synacktraa"; + repo = "ani-skip"; + rev = "refs/tags/${finalAttrs.version}"; + hash = "sha256-VEEG3d6rwTAS7/+gBKHFKIg9zFfBu5eBOu6Z23621gM="; + }; + + nativeBuildInputs = [ makeWrapper ]; + runtimeInputs = [ + gnugrep + gnused + curl + fzf + ]; + + installPhase = '' + runHook preInstall + + install -D skip.lua $out/share/mpv/scripts/skip.lua + install -Dm 755 ani-skip $out/bin/ani-skip + + runHook postInstall + ''; + + postFixup = '' + substituteInPlace $out/bin/ani-skip \ + --replace-fail '--script-opts=%s' "--script=$out/share/mpv/scripts/skip.lua --script-opts=%s" + + wrapProgram $out/bin/ani-skip \ + --prefix PATH : ${lib.makeBinPath finalAttrs.runtimeInputs} + ''; + + meta = { + homepage = "https://github.com/synacktraa/ani-skip"; + description = "Automated solution to bypassing anime opening and ending sequences"; + mainProgram = "ani-skip"; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.diniamo ]; + platforms = lib.platforms.unix; + }; +}) From 0769507dfd160d94f9af3e115d43ff03e4c12e82 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Fri, 20 Sep 2024 21:54:04 +0100 Subject: [PATCH 02/52] libzip: 1.10.1 -> 1.11.1 Changes: https://github.com/nih-at/libzip/releases/tag/v1.11.1 --- pkgs/development/libraries/libzip/default.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/pkgs/development/libraries/libzip/default.nix b/pkgs/development/libraries/libzip/default.nix index 453722ccf49b..759edc288e47 100644 --- a/pkgs/development/libraries/libzip/default.nix +++ b/pkgs/development/libraries/libzip/default.nix @@ -1,6 +1,5 @@ { lib, stdenv , cmake -, fetchpatch2 , fetchurl , perl , zlib @@ -18,22 +17,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "libzip"; - version = "1.10.1"; + version = "1.11.1"; src = fetchurl { url = "https://libzip.org/download/libzip-${finalAttrs.version}.tar.gz"; - sha256 = "sha256-lmmuXf46xbOJdTbchGaodMjPLA47H90I11snOIQpk2M="; + hash = "sha256-wOb6UqYroR79MCYikNxpcJR67zLgzClO5Q6QBc6sCSo="; }; - patches = [ - # https://github.com/nih-at/libzip/issues/404 - (fetchpatch2 { - name = "Check-for-zstd_TARGET-before-using-it-in-a-regex.patch"; - url = "https://github.com/nih-at/libzip/commit/c719428916b4d19e838f873b1a177b126a080d61.patch"; - hash = "sha256-4ksbXEM8kNvs3wtbIaXLEQNSKaxl0es/sIg0EINaTHE="; - }) - ]; - outputs = [ "out" "dev" "man" ]; nativeBuildInputs = [ cmake perl groff ]; From 95c13a1dc1afccf6620ada5e6ec3e7ff80512ccc Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sun, 22 Sep 2024 11:33:46 +0100 Subject: [PATCH 03/52] pax-utils: 1.3.7 -> 1.3.8 --- pkgs/os-specific/linux/pax-utils/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/pax-utils/default.nix b/pkgs/os-specific/linux/pax-utils/default.nix index dcecfa4c13b8..eab7d3db4b43 100644 --- a/pkgs/os-specific/linux/pax-utils/default.nix +++ b/pkgs/os-specific/linux/pax-utils/default.nix @@ -16,12 +16,12 @@ stdenv.mkDerivation rec { pname = "pax-utils"; - version = "1.3.7"; + version = "1.3.8"; src = fetchgit { url = "https://anongit.gentoo.org/git/proj/pax-utils.git"; rev = "v${version}"; - hash = "sha256-WyNng+UtfRz1+Eu4gwXLxUvBAg+m3mdrc8GdEPYRKVE="; + hash = "sha256-fOdiZcS1ZWGN8U5v65LzGIZJD6hCl5dbLMHDpSyms+8="; }; strictDeps = true; From 1c88e6d36de04fe93aa6baedffa77c6ffd91a597 Mon Sep 17 00:00:00 2001 From: kittydoor Date: Fri, 4 Oct 2024 19:52:40 +0200 Subject: [PATCH 04/52] 1password-gui: 8.10.40 -> 8.10.46 (beta 8.10.44-21 -> 8.10.48-17) --- .../misc/1password-gui/default.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/misc/1password-gui/default.nix b/pkgs/applications/misc/1password-gui/default.nix index cecb229ce13f..d91f48f82de5 100644 --- a/pkgs/applications/misc/1password-gui/default.nix +++ b/pkgs/applications/misc/1password-gui/default.nix @@ -10,43 +10,43 @@ let pname = "1password"; - version = if channel == "stable" then "8.10.40" else "8.10.44-21.BETA"; + version = if channel == "stable" then "8.10.46" else "8.10.48-17.BETA"; sources = { stable = { x86_64-linux = { url = "https://downloads.1password.com/linux/tar/stable/x86_64/1password-${version}.x64.tar.gz"; - hash = "sha256-viY0SOUhrOvmue6Nolau356rIqwDo2nLzMilFFmNb9g="; + hash = "sha256-oewS90rSBqxA0V+ttcmUXznUZ3+mb5FKtmYD4kUDmTk="; }; aarch64-linux = { url = "https://downloads.1password.com/linux/tar/stable/aarch64/1password-${version}.arm64.tar.gz"; - hash = "sha256-7lUZiS3TSsIVqPoN5A6YqyVaaaRI9BliT51FHkwOPyw="; + hash = "sha256-tHQIhLPTD2dFRK542kFnpExg36paaNuzyOED8ZKyIYk="; }; x86_64-darwin = { url = "https://downloads.1password.com/mac/1Password-${version}-x86_64.zip"; - hash = "sha256-xK/B8J3VP8y1xw3KorzZzPf/LjYmYdOIjDECMJnVv6I="; + hash = "sha256-pnAE1UTMXX89wshEI/wzhySb1NZY5ke5bSYmUjvU/pc="; }; aarch64-darwin = { url = "https://downloads.1password.com/mac/1Password-${version}-aarch64.zip"; - hash = "sha256-iqdK6K7dcypZFGseYal2KjOaqJtUjXeCzbDdx7pDv8A="; + hash = "sha256-MmHUa96keBV9+E2GQdgz/aCTXeFkVNqHV0eH8/WhvhY="; }; }; beta = { x86_64-linux = { url = "https://downloads.1password.com/linux/tar/beta/x86_64/1password-${version}.x64.tar.gz"; - hash = "sha256-enorJfbn+xJVy1fG3wjhO3LkSsMncHA9/yA13kG+h4Y="; + hash = "sha256-4SPZJP/ebnyAMEWrIGonb+5nYXuM8KCPK9modC/Cr/Y="; }; aarch64-linux = { url = "https://downloads.1password.com/linux/tar/beta/aarch64/1password-${version}.arm64.tar.gz"; - hash = "sha256-EUnIIi6DB5kBVid9ExBpNApKItHnRKQziBy/GFt0xag="; + hash = "sha256-V5Nt81Trw6l7DAUtCX2Yv/fL2wBJpJER0iaOBmMfQ5o="; }; x86_64-darwin = { url = "https://downloads.1password.com/mac/1Password-${version}-x86_64.zip"; - hash = "sha256-U14CjoUJUpd4wWidZz6xGErhHI/VPChqG8cwBTBYoYc="; + hash = "sha256-UfSUPqZgbYdWyrfw41SdnnI1IeA+dYsfBAu/UQl0vVI="; }; aarch64-darwin = { url = "https://downloads.1password.com/mac/1Password-${version}-aarch64.zip"; - hash = "sha256-DD1M2EFSHqG9OHX5Q/CmZLZIKYrBMS4cnX/6tLVi7H0="; + hash = "sha256-ynkDnJtoKMAtegeilB0XIH+YrSS9EKYV1ceN0Ecls+A="; }; }; }; From 750afb7250756e56deddc15fff3754ba3642f3a8 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Wed, 25 Sep 2024 22:22:38 +0100 Subject: [PATCH 05/52] lowdown: 1.1.0 -> 1.1.2 Changes: - https://github.com/kristapsdz/lowdown/releases/tag/VERSION_1_1_1 - https://github.com/kristapsdz/lowdown/releases/tag/VERSION_1_1_2 --- pkgs/tools/typesetting/lowdown/default.nix | 48 +++++----------------- 1 file changed, 11 insertions(+), 37 deletions(-) diff --git a/pkgs/tools/typesetting/lowdown/default.nix b/pkgs/tools/typesetting/lowdown/default.nix index 7449be94e12c..d5b529b75594 100644 --- a/pkgs/tools/typesetting/lowdown/default.nix +++ b/pkgs/tools/typesetting/lowdown/default.nix @@ -1,5 +1,4 @@ { lib, stdenv, fetchurl, fixDarwinDylibNames, which, dieHook -, fetchpatch , enableShared ? !stdenv.hostPlatform.isStatic , enableStatic ? stdenv.hostPlatform.isStatic , enableDarwinSandbox ? true @@ -9,49 +8,15 @@ stdenv.mkDerivation rec { pname = "lowdown${lib.optionalString (stdenv.hostPlatform.isDarwin && !enableDarwinSandbox) "-unsandboxed"}"; - version = "1.1.0"; + version = "1.1.2"; outputs = [ "out" "lib" "dev" "man" ]; src = fetchurl { url = "https://kristaps.bsd.lv/lowdown/snapshots/lowdown-${version}.tar.gz"; - hash = "sha512-EpAWTz7Zy+2qqJGgzLrt0tK7WEZ+hHbdyqzAmMiaqc6uNXscR88git6/UbTjvB9Yanvetvw9huSuyhcORCEIug=="; + hash = "sha512-KHQi5NpMU6Kw4Ij+BoGE52aU0vIP1pgMhjnBAUdMh6GV/xHCxfTXJduqh9bSfVMeOim08aZSIM7iq1io0VS8LA=="; }; - patches = [ - # Improve UTF-8 handling on macOS by not treating bytes >=0x80, which tend to be - # UTF-8 continuation bytes, as control characters. - # - # This leaves control characters U+0080 through U+009F in the output - # (incorrectly) but doesn't mangle other UTF-8 characters, so it's a net - # win. - # - # See: https://github.com/kristapsdz/lowdown/pull/140 - (fetchpatch { - url = "https://github.com/kristapsdz/lowdown/commit/5a02866dd682363a8e4f6b344c223cfe8b597da9.diff"; - hash = "sha256-7tGhZJQQySeBv4h6A4r69BBbQkPRX/3JTw/80A8YXjQ="; - }) - (fetchpatch { - url = "https://github.com/kristapsdz/lowdown/commit/c033a6886e4d6efb948782fbc389fe5f673acf36.diff"; - hash = "sha256-7DvKFerAMoPifuTn7rOX4ru888HfBkpspH1opIbzj08="; - }) - - # Don't output a newline after .SH - # - # This fixes `makewhatis` output on macOS and (as a result) `man` - # completions for `fish` on macOS. - # - # See: https://github.com/kristapsdz/lowdown/pull/138 - (fetchpatch { - url = "https://github.com/kristapsdz/lowdown/commit/e05929a09a697de3d2eb14d0f0a087a6fae22e11.diff"; - hash = "sha256-P03W+hFeBKwfJB+DhGCPq0DtiOiLLc+0ZvWrWqXFvVU="; - }) - (fetchpatch { - url = "https://github.com/kristapsdz/lowdown/commit/9906f8ceac586c54eb39ae78105fd84653a89c33.diff"; - hash = "sha256-nBnAgTb8RDe/QpUhow3lyeR7UIVJX2o4lmP78e2fw/E="; - }) - ]; - nativeBuildInputs = [ which dieHook ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ fixDarwinDylibNames ]; @@ -70,6 +35,13 @@ stdenv.mkDerivation rec { runHook postConfigure ''; + # Fix rpath change on darwin to avoid failure like: + # error: install_name_tool: changing install names or + # rpaths can't be redone for: liblowdown.1.dylib (for architecture + # arm64) because larger + # https://github.com/NixOS/nixpkgs/pull/344532#issuecomment-238475791 + env.NIX_CFLAGS_LINK = lib.optionalString stdenv.hostPlatform.isDarwin "-headerpad_max_install_names"; + makeFlags = [ "bins" # prevents shared object from being built unnecessarily ]; @@ -109,8 +81,10 @@ stdenv.mkDerivation rec { installCheckPhase = lib.optionalString (!stdenv.hostPlatform.isDarwin || !enableDarwinSandbox) '' runHook preInstallCheck + echo '# TEST' > test.md $out/bin/lowdown test.md + runHook postInstallCheck ''; From fedeefb48a62bd36f69ff7a0ed219ffa8c2d6356 Mon Sep 17 00:00:00 2001 From: Moritz Sanft <58110325+msanft@users.noreply.github.com> Date: Fri, 11 Oct 2024 09:37:00 +0200 Subject: [PATCH 06/52] libnvidia-container: move to pkgs/by-name --- .../li}/libnvidia-container/inline-c-struct.patch | 0 .../libnvidia-container/libnvc-ldconfig-and-path-fixes.patch | 0 .../li}/libnvidia-container/modprobe.patch | 0 .../default.nix => by-name/li/libnvidia-container/package.nix} | 0 pkgs/top-level/all-packages.nix | 2 -- 5 files changed, 2 deletions(-) rename pkgs/{applications/virtualization => by-name/li}/libnvidia-container/inline-c-struct.patch (100%) rename pkgs/{applications/virtualization => by-name/li}/libnvidia-container/libnvc-ldconfig-and-path-fixes.patch (100%) rename pkgs/{applications/virtualization => by-name/li}/libnvidia-container/modprobe.patch (100%) rename pkgs/{applications/virtualization/libnvidia-container/default.nix => by-name/li/libnvidia-container/package.nix} (100%) diff --git a/pkgs/applications/virtualization/libnvidia-container/inline-c-struct.patch b/pkgs/by-name/li/libnvidia-container/inline-c-struct.patch similarity index 100% rename from pkgs/applications/virtualization/libnvidia-container/inline-c-struct.patch rename to pkgs/by-name/li/libnvidia-container/inline-c-struct.patch diff --git a/pkgs/applications/virtualization/libnvidia-container/libnvc-ldconfig-and-path-fixes.patch b/pkgs/by-name/li/libnvidia-container/libnvc-ldconfig-and-path-fixes.patch similarity index 100% rename from pkgs/applications/virtualization/libnvidia-container/libnvc-ldconfig-and-path-fixes.patch rename to pkgs/by-name/li/libnvidia-container/libnvc-ldconfig-and-path-fixes.patch diff --git a/pkgs/applications/virtualization/libnvidia-container/modprobe.patch b/pkgs/by-name/li/libnvidia-container/modprobe.patch similarity index 100% rename from pkgs/applications/virtualization/libnvidia-container/modprobe.patch rename to pkgs/by-name/li/libnvidia-container/modprobe.patch diff --git a/pkgs/applications/virtualization/libnvidia-container/default.nix b/pkgs/by-name/li/libnvidia-container/package.nix similarity index 100% rename from pkgs/applications/virtualization/libnvidia-container/default.nix rename to pkgs/by-name/li/libnvidia-container/package.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index fff5e8a232b1..09ecc11f02af 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5386,8 +5386,6 @@ with pkgs; libnvme = callPackage ../os-specific/linux/libnvme { }; - libnvidia-container = callPackage ../applications/virtualization/libnvidia-container { }; - librenms = callPackage ../servers/monitoring/librenms { }; libxnd = callPackage ../development/libraries/libxnd { }; From b8b67383867765ec2317d920c6285379da494164 Mon Sep 17 00:00:00 2001 From: Tristan Ross Date: Fri, 11 Oct 2024 10:46:26 -0700 Subject: [PATCH 07/52] OWNERS: make the LLVM team own all of LLVM --- ci/OWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/OWNERS b/ci/OWNERS index 97eae12a2d65..cf8eeaf80ac9 100644 --- a/ci/OWNERS +++ b/ci/OWNERS @@ -167,7 +167,7 @@ nixos/modules/installer/tools/nix-fallback-paths.nix @NixOS/nix-team @raitobeza # C compilers /pkgs/development/compilers/gcc -/pkgs/development/compilers/llvm @alyssais @RossComputerGuy +/pkgs/development/compilers/llvm @alyssais @RossComputerGuy @NixOS/llvm /pkgs/development/compilers/emscripten @raitobezarius /doc/languages-frameworks/emscripten.section.md @raitobezarius From 4aa8864c1ef8f715794c2685522fd41e7f980ebf Mon Sep 17 00:00:00 2001 From: Tristan Ross Date: Fri, 11 Oct 2024 10:28:41 -0700 Subject: [PATCH 08/52] teams: create the stdenv team --- ci/OWNERS | 10 +++++----- maintainers/team-list.nix | 15 +++++++++++++++ 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/ci/OWNERS b/ci/OWNERS index 97eae12a2d65..734daf71e657 100644 --- a/ci/OWNERS +++ b/ci/OWNERS @@ -27,7 +27,7 @@ # Libraries /lib @infinisil -/lib/systems @alyssais @ericson2314 +/lib/systems @alyssais @ericson2314 @NixOS/stdenv /lib/generators.nix @infinisil @Profpatsch /lib/cli.nix @infinisil @Profpatsch /lib/debug.nix @infinisil @Profpatsch @@ -49,10 +49,10 @@ /pkgs/top-level/splice.nix @Ericson2314 /pkgs/top-level/release-cross.nix @Ericson2314 /pkgs/top-level/by-name-overlay.nix @infinisil @philiptaron -/pkgs/stdenv @philiptaron -/pkgs/stdenv/generic @Ericson2314 -/pkgs/stdenv/generic/check-meta.nix @Ericson2314 -/pkgs/stdenv/cross @Ericson2314 +/pkgs/stdenv @philiptaron @NixOS/stdenv +/pkgs/stdenv/generic @Ericson2314 @NixOS/stdenv +/pkgs/stdenv/generic/check-meta.nix @Ericson2314 @NixOS/stdenv +/pkgs/stdenv/cross @Ericson2314 @NixOS/stdenv /pkgs/build-support @philiptaron /pkgs/build-support/cc-wrapper @Ericson2314 /pkgs/build-support/bintools-wrapper @Ericson2314 diff --git a/maintainers/team-list.nix b/maintainers/team-list.nix index 546c944e0c53..84d301815e6a 100644 --- a/maintainers/team-list.nix +++ b/maintainers/team-list.nix @@ -950,6 +950,21 @@ with lib.maintainers; shortName = "Serokell employees"; }; + stdenv = { + members = [ + artturin + emily + ericson2314 + philiptaron + reckenrode + RossComputerGuy + ]; + scope = "Maintain the standard environment and its surrounding logic."; + shortName = "stdenv"; + enableFeatureFreezePing = true; + githubTeams = [ "stdenv" ]; + }; + steam = { members = [ atemu From 60b56abc6df0c712626ac21f3f5ccbfaa5cff3c9 Mon Sep 17 00:00:00 2001 From: Moritz Sanft <58110325+msanft@users.noreply.github.com> Date: Fri, 11 Oct 2024 09:40:20 +0200 Subject: [PATCH 09/52] libnvidia-container: 1.9.0 -> 1.16.2 --- ...ixes.patch => fix-library-resolving.patch} | 77 ++++++++++------- .../li/libnvidia-container/modprobe.patch | 17 ++-- .../li/libnvidia-container/package.nix | 85 +++++++++++++------ 3 files changed, 113 insertions(+), 66 deletions(-) rename pkgs/by-name/li/libnvidia-container/{libnvc-ldconfig-and-path-fixes.patch => fix-library-resolving.patch} (76%) diff --git a/pkgs/by-name/li/libnvidia-container/libnvc-ldconfig-and-path-fixes.patch b/pkgs/by-name/li/libnvidia-container/fix-library-resolving.patch similarity index 76% rename from pkgs/by-name/li/libnvidia-container/libnvc-ldconfig-and-path-fixes.patch rename to pkgs/by-name/li/libnvidia-container/fix-library-resolving.patch index d4638791a01c..9bae2b87e61f 100644 --- a/pkgs/by-name/li/libnvidia-container/libnvc-ldconfig-and-path-fixes.patch +++ b/pkgs/by-name/li/libnvidia-container/fix-library-resolving.patch @@ -1,9 +1,22 @@ +From 8799541f99785d2bd881561386676fb0985e939e Mon Sep 17 00:00:00 2001 +From: Moritz Sanft <58110325+msanft@users.noreply.github.com> +Date: Thu, 10 Oct 2024 14:32:42 +0200 +Subject: [PATCH] fix library resolving + +Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> +--- + src/ldcache.c | 46 +++++++++++++++++----------------------------- + src/ldcache.h | 2 +- + src/nvc_info.c | 10 +++------- + src/nvc_ldcache.c | 2 +- + 4 files changed, 22 insertions(+), 38 deletions(-) + diff --git a/src/ldcache.c b/src/ldcache.c -index 38bab05..e1abc89 100644 +index 38bab055..8cd30a0f 100644 --- a/src/ldcache.c +++ b/src/ldcache.c -@@ -108,40 +108,27 @@ ldcache_close(struct ldcache *ctx) - +@@ -108,40 +108,28 @@ ldcache_close(struct ldcache *ctx) + int ldcache_resolve(struct ldcache *ctx, uint32_t arch, const char *root, const char * const libs[], - char *paths[], size_t size, ldcache_select_fn select, void *select_ctx) @@ -14,26 +27,17 @@ index 38bab05..e1abc89 100644 - int override; + char dir[PATH_MAX]; + char lib[PATH_MAX]; - + - h = (struct header_libc6 *)ctx->ptr; memset(paths, 0, size * sizeof(*paths)); - + - for (uint32_t i = 0; i < h->nlibs; ++i) { - int32_t flags = h->libs[i].flags; - char *key = (char *)ctx->ptr + h->libs[i].key; - char *value = (char *)ctx->ptr + h->libs[i].value; - - if (!(flags & LD_ELF) || (flags & LD_ARCH_MASK) != arch) -+ for (size_t j = 0; j < size; ++j) { -+ snprintf(dir, 100, "/run/opengl-driver%s/lib", -+ arch == LD_I386_LIB32 ? "-32" : ""); -+ if (!strncmp(libs[j], "libvdpau_nvidia.so", 100)) -+ strcat(dir, "/vdpau"); -+ snprintf(lib, 100, "%s/%s.%s", dir, libs[j], version); -+ if (path_resolve_full(ctx->err, path, "/", lib) < 0) -+ return (-1); -+ if (!file_exists(ctx->err, path)) - continue; +- continue; - - for (size_t j = 0; j < size; ++j) { - if (!str_has_prefix(key, libs[j])) @@ -52,6 +56,17 @@ index 38bab05..e1abc89 100644 - } - break; - } ++ for (size_t j = 0; j < size; ++j) { ++ snprintf(dir, 100, "@driverLink@/lib"); ++ ++ if (!strncmp(libs[j], "libvdpau_nvidia.so", 100)) ++ strcat(dir, "/vdpau"); ++ snprintf(lib, 100, "%s/%s.%s", dir, libs[j], version); ++ if (path_resolve_full(ctx->err, path, "/", lib) < 0) ++ return (-1); ++ if (!file_exists(ctx->err, path)) ++ continue; ++ + paths[j] = xstrdup(ctx->err, path); + if (paths[j] == NULL) + return (-1); @@ -59,7 +74,7 @@ index 38bab05..e1abc89 100644 return (0); } diff --git a/src/ldcache.h b/src/ldcache.h -index 33d78dd..2b087db 100644 +index 33d78dd7..2b087dbc 100644 --- a/src/ldcache.h +++ b/src/ldcache.h @@ -50,6 +50,6 @@ void ldcache_init(struct ldcache *, struct error *, const char *); @@ -68,19 +83,19 @@ index 33d78dd..2b087db 100644 int ldcache_resolve(struct ldcache *, uint32_t, const char *, const char * const [], - char *[], size_t, ldcache_select_fn, void *); + char *[], size_t, const char*); - + #endif /* HEADER_LDCACHE_H */ diff --git a/src/nvc_info.c b/src/nvc_info.c -index 30e3cfd..6d12a50 100644 +index b7b8adfa..d42f2beb 100644 --- a/src/nvc_info.c +++ b/src/nvc_info.c -@@ -167,15 +167,13 @@ find_library_paths(struct error *err, struct nvc_driver_info *info, const char * +@@ -217,15 +217,13 @@ find_library_paths(struct error *err, struct dxcore_context *dxcore, struct nvc_ if (path_resolve_full(err, path, root, ldcache) < 0) return (-1); ldcache_init(&ld, err, path); - if (ldcache_open(&ld) < 0) - return (-1); - + info->nlibs = size; info->libs = array_new(err, size); if (info->libs == NULL) @@ -89,9 +104,9 @@ index 30e3cfd..6d12a50 100644 - info->libs, info->nlibs, select_libraries_fn, info) < 0) + info->libs, info->nlibs, info->nvrm_version) < 0) goto fail; - + info->nlibs32 = size; -@@ -183,13 +181,11 @@ find_library_paths(struct error *err, struct nvc_driver_info *info, const char * +@@ -233,13 +231,11 @@ find_library_paths(struct error *err, struct dxcore_context *dxcore, struct nvc_ if (info->libs32 == NULL) goto fail; if (ldcache_resolve(&ld, LIB32_ARCH, root, libs, @@ -99,32 +114,34 @@ index 30e3cfd..6d12a50 100644 + info->libs32, info->nlibs32, info->nvrm_version) < 0) goto fail; rv = 0; - + fail: - if (ldcache_close(&ld) < 0) - return (-1); return (rv); } - -@@ -203,7 +199,7 @@ find_binary_paths(struct error *err, struct nvc_driver_info *info, const char *r + +@@ -253,7 +249,7 @@ find_binary_paths(struct error *err, struct dxcore_context* dxcore, struct nvc_d char path[PATH_MAX]; int rv = -1; - + - if ((env = secure_getenv("PATH")) == NULL) { + if ((env = "/run/nvidia-docker/bin:/run/nvidia-docker/extras/bin") == NULL) { error_setx(err, "environment variable PATH not found"); return (-1); } diff --git a/src/nvc_ldcache.c b/src/nvc_ldcache.c -index 6ff380f..cbe6a69 100644 +index db3b2f69..ae5def43 100644 --- a/src/nvc_ldcache.c +++ b/src/nvc_ldcache.c -@@ -340,7 +340,7 @@ nvc_ldcache_update(struct nvc_context *ctx, const struct nvc_container *cnt) +@@ -367,7 +367,7 @@ nvc_ldcache_update(struct nvc_context *ctx, const struct nvc_container *cnt) if (validate_args(ctx, cnt != NULL) < 0) return (-1); - -- argv = (char * []){cnt->cfg.ldconfig, cnt->cfg.libs_dir, cnt->cfg.libs32_dir, NULL}; + +- argv = (char * []){cnt->cfg.ldconfig, "-f", "/etc/ld.so.conf", "-C", "/etc/ld.so.cache", cnt->cfg.libs_dir, cnt->cfg.libs32_dir, NULL}; + argv = (char * []){cnt->cfg.ldconfig, "-f", "/tmp/ld.so.conf.nvidia-host", "-C", "/tmp/ld.so.cache.nvidia-host", cnt->cfg.libs_dir, cnt->cfg.libs32_dir, NULL}; if (*argv[0] == '@') { /* * We treat this path specially to be relative to the host filesystem. +-- +2.46.0 diff --git a/pkgs/by-name/li/libnvidia-container/modprobe.patch b/pkgs/by-name/li/libnvidia-container/modprobe.patch index c28b6bad291d..1e0f8bdddc22 100644 --- a/pkgs/by-name/li/libnvidia-container/modprobe.patch +++ b/pkgs/by-name/li/libnvidia-container/modprobe.patch @@ -1,7 +1,7 @@ diff -ruN nvidia-modprobe-@modprobeVersion@/modprobe-utils/nvidia-modprobe-utils.c nvidia-modprobe-@modprobeVersion@/modprobe-utils/nvidia-modprobe-utils.c ---- nvidia-modprobe-@modprobeVersion@/modprobe-utils/nvidia-modprobe-utils.c 2020-07-09 17:06:05.000000000 +0000 -+++ nvidia-modprobe-@modprobeVersion@/modprobe-utils/nvidia-modprobe-utils.c 2020-08-18 12:43:03.223871514 +0000 -@@ -840,10 +840,10 @@ +--- nvidia-modprobe-@modprobeVersion@/modprobe-utils/nvidia-modprobe-utils.c 2021-11-13 14:36:58.096684602 +0000 ++++ nvidia-modprobe-@modprobeVersion@-patched/modprobe-utils/nvidia-modprobe-utils.c 2021-11-13 14:43:40.965146390 +0000 +@@ -959,10 +959,10 @@ return mknod_helper(major, minor_num, vgpu_dev_name, NV_PROC_REGISTRY_PATH); } @@ -17,13 +17,14 @@ diff -ruN nvidia-modprobe-@modprobeVersion@/modprobe-utils/nvidia-modprobe-utils char field[32]; FILE *fp; diff -ruN nvidia-modprobe-@modprobeVersion@/modprobe-utils/nvidia-modprobe-utils.h nvidia-modprobe-@modprobeVersion@/modprobe-utils/nvidia-modprobe-utils.h ---- nvidia-modprobe-@modprobeVersion@/modprobe-utils/nvidia-modprobe-utils.h 2020-07-09 17:06:05.000000000 +0000 -+++ nvidia-modprobe-@modprobeVersion@/modprobe-utils/nvidia-modprobe-utils.h 2020-08-18 12:43:44.227745050 +0000 -@@ -81,6 +81,7 @@ +--- nvidia-modprobe-@modprobeVersion@/modprobe-utils/nvidia-modprobe-utils.h 2021-11-13 14:36:58.096684602 +0000 ++++ nvidia-modprobe-@modprobeVersion@-patched/modprobe-utils/nvidia-modprobe-utils.h 2021-11-13 14:38:34.078700961 +0000 +@@ -87,6 +87,7 @@ int nvidia_nvswitch_get_file_state(int minor); int nvidia_cap_mknod(const char* cap_file_path, int *minor); int nvidia_cap_get_file_state(const char* cap_file_path); +int nvidia_cap_get_device_file_attrs(const char* cap_file_path, int *major, int *minor, char *name); + int nvidia_cap_imex_channel_mknod(int minor); + int nvidia_cap_imex_channel_file_state(int minor); int nvidia_get_chardev_major(const char *name); - - #endif /* NV_LINUX */ + int nvidia_msr_modprobe(void); diff --git a/pkgs/by-name/li/libnvidia-container/package.nix b/pkgs/by-name/li/libnvidia-container/package.nix index 28ea0a675b17..9b3023813c3f 100644 --- a/pkgs/by-name/li/libnvidia-container/package.nix +++ b/pkgs/by-name/li/libnvidia-container/package.nix @@ -1,25 +1,27 @@ -{ stdenv -, lib -, addDriverRunpath -, fetchFromGitHub -, pkg-config -, elfutils -, libcap -, libseccomp -, rpcsvc-proto -, libtirpc -, makeWrapper -, substituteAll -, removeReferencesTo -, go +{ + stdenv, + lib, + addDriverRunpath, + fetchFromGitHub, + pkg-config, + elfutils, + libcap, + libseccomp, + rpcsvc-proto, + libtirpc, + makeWrapper, + substituteAll, + removeReferencesTo, + replaceVars, + go, }: let - modprobeVersion = "495.44"; + modprobeVersion = "550.54.14"; nvidia-modprobe = fetchFromGitHub { owner = "NVIDIA"; repo = "nvidia-modprobe"; rev = modprobeVersion; - sha256 = "sha256-Y3ZOfge/EcmhqI19yWO7UfPqkvY1CHHvFC5l9vYyGuU="; + sha256 = "sha256-iBRMkvOXacs/llTtvc/ZC5i/q9gc8lMuUHxMbu8A+Kg="; }; modprobePatch = substituteAll { src = ./modprobe.patch; @@ -28,21 +30,25 @@ let in stdenv.mkDerivation rec { pname = "libnvidia-container"; - version = "1.9.0"; + version = "1.16.2"; src = fetchFromGitHub { owner = "NVIDIA"; - repo = pname; + repo = "libnvidia-container"; rev = "v${version}"; - sha256 = "sha256-7OTawWwjeKU8wIa8I/+aSvAJli4kEua94nJSNyCajpE="; + sha256 = "sha256-hX+2B+0kHiAC2lyo6kwe7DctPLJWgRdbhlc316OO3r8="; }; patches = [ - # locations of nvidia-driver libraries are not resolved via ldconfig which - # doesn't get used on NixOS. Additional support binaries like nvidia-smi + # Locations of nvidia driver libraries are not resolved via ldconfig which + # doesn't get used on NixOS. + # TODO: The latter doesn't really apply anymore. + # Additional support binaries like nvidia-smi # are not resolved via the environment PATH but via the derivation output # path. - ./libnvc-ldconfig-and-path-fixes.patch + (replaceVars ./fix-library-resolving.patch { + inherit (addDriverRunpath) driverLink; + }) # fix bogus struct declaration ./inline-c-struct.patch @@ -54,6 +60,11 @@ stdenv.mkDerivation rec { -e 's/^COMPILER :=.*/COMPILER = $(CC)/' \ mk/common.mk + sed -i \ + -e 's/^GIT_TAG ?=.*/GIT_TAG = ${version}/' \ + -e 's/^GIT_COMMIT ?=.*/GIT_COMMIT = ${src.rev}/' \ + versions.mk + mkdir -p deps/src/nvidia-modprobe-${modprobeVersion} cp -r ${nvidia-modprobe}/* deps/src/nvidia-modprobe-${modprobeVersion} chmod -R u+w deps/src @@ -84,12 +95,26 @@ stdenv.mkDerivation rec { HOME="$(mktemp -d)" ''; - env.NIX_CFLAGS_COMPILE = toString [ "-I${libtirpc.dev}/include/tirpc" ]; - NIX_LDFLAGS = [ "-L${libtirpc.dev}/lib" "-ltirpc" ]; + env.NIX_CFLAGS_COMPILE = toString [ "-I${lib.getInclude libtirpc}/include/tirpc" ]; + NIX_LDFLAGS = [ + "-L${lib.getLib libtirpc}/lib" + "-ltirpc" + ]; - nativeBuildInputs = [ pkg-config go rpcsvc-proto makeWrapper removeReferencesTo ]; + nativeBuildInputs = [ + pkg-config + go + rpcsvc-proto + makeWrapper + removeReferencesTo + ]; - buildInputs = [ elfutils libcap libseccomp libtirpc ]; + buildInputs = [ + elfutils + libcap + libseccomp + libtirpc + ]; makeFlags = [ "WITH_LIBELF=yes" @@ -103,10 +128,14 @@ stdenv.mkDerivation rec { postInstall = let inherit (addDriverRunpath) driverLink; - libraryPath = lib.makeLibraryPath [ "$out" driverLink "${driverLink}-32" ]; + libraryPath = lib.makeLibraryPath [ + "$out" + driverLink + "${driverLink}-32" + ]; in '' - remove-references-to -t "${go}" $out/lib/libnvidia-container-go.so.1.9.0 + remove-references-to -t "${go}" $out/lib/libnvidia-container-go.so.${version} wrapProgram $out/bin/nvidia-container-cli --prefix LD_LIBRARY_PATH : ${libraryPath} ''; disallowedReferences = [ go ]; From 797ff48ef55efc010647e017105e302ea83cb82d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 14 Oct 2024 15:17:13 +0000 Subject: [PATCH 10/52] libjcat: 0.2.1 -> 0.2.2 --- pkgs/development/libraries/libjcat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libjcat/default.nix b/pkgs/development/libraries/libjcat/default.nix index 79a419451de2..fac097e0d6b0 100644 --- a/pkgs/development/libraries/libjcat/default.nix +++ b/pkgs/development/libraries/libjcat/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { pname = "libjcat"; - version = "0.2.1"; + version = "0.2.2"; outputs = [ "bin" "out" "dev" "devdoc" "man" "installedTests" ]; @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { owner = "hughsie"; repo = "libjcat"; rev = version; - sha256 = "sha256-tCXz62MEqYBnrx2RxlTBwKGTahfhUCVdet4VnXw5klQ="; + sha256 = "sha256-Vn5Qjyo2FHCmQC2pmb1qgU81VaFKsXnSIwlSYk/8Rig="; }; patches = [ From 731002442edb554b9c8874e3652758a5d12679fe Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 14 Oct 2024 16:39:38 +0000 Subject: [PATCH 11/52] risor: 1.6.0 -> 1.7.0 --- pkgs/development/interpreters/risor/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/interpreters/risor/default.nix b/pkgs/development/interpreters/risor/default.nix index c16eebf1e626..cbac6e69e03b 100644 --- a/pkgs/development/interpreters/risor/default.nix +++ b/pkgs/development/interpreters/risor/default.nix @@ -7,17 +7,17 @@ buildGoModule rec { pname = "risor"; - version = "1.6.0"; + version = "1.7.0"; src = fetchFromGitHub { owner = "risor-io"; repo = "risor"; rev = "v${version}"; - hash = "sha256-IUmkb23Fx+bjzXrXWfKPOo0HFt7HjtjQoCRtH77HGBg="; + hash = "sha256-QtYqepNH+c0WDGKTLtMz/VUz0oDOgCbwe4D9I4wal5s="; }; proxyVendor = true; - vendorHash = "sha256-+XYwFYbvZvk0TWoRtCKQIzbQeznQkolB+NFqUiZMkpA="; + vendorHash = "sha256-JrBuHA+u5bI2kcbWaY6/894kh5Xdix0ov6nN5r9rJRE="; subPackages = [ "cmd/risor" From db1b484d986440256b32c898dd44985bf98401c0 Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Wed, 16 Oct 2024 08:34:44 -0700 Subject: [PATCH 12/52] flake.nix: exclude armv6-linux and riscv64-linux from checks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise, `nix flake check --all-systems --json` fails with: error: … while calling the 'head' builtin at /nix/store/0jy5khqx0rfw8avcq6z5zaxaj2ppz8d3-source/lib/attrsets.nix:1575:11: 1574| || pred here (elemAt values 1) (head values) then 1575| head values | ^ 1576| else … while evaluating the attribute 'value' at /nix/store/0jy5khqx0rfw8avcq6z5zaxaj2ppz8d3-source/lib/modules.nix:816:9: 815| in warnDeprecation opt // 816| { value = addErrorContext "while evaluating the option `${showOption loc}':" value; | ^ 817| inherit (res.defsFinal') highestPrio; … while evaluating the option `system.build.toplevel': … while evaluating definitions from `/nix/store/0jy5khqx0rfw8avcq6z5zaxaj2ppz8d3-source/nixos/modules/system/activation/top-level.nix': … while evaluating the option `system.systemBuilderArgs': … while evaluating definitions from `/nix/store/0jy5khqx0rfw8avcq6z5zaxaj2ppz8d3-source/nixos/modules/system/activation/activatable-system.nix': … while evaluating the option `system.activationScripts.etc.text': … while evaluating definitions from `/nix/store/0jy5khqx0rfw8avcq6z5zaxaj2ppz8d3-source/nixos/modules/system/etc/etc-activation.nix': … while evaluating definitions from `/nix/store/0jy5khqx0rfw8avcq6z5zaxaj2ppz8d3-source/nixos/modules/system/etc/etc.nix': … while evaluating the option `environment.etc.dbus-1.source': (stack trace truncated; use '--show-trace' to show the full, detailed trace) error: cannot bootstrap GHC on this platform ('riscv64-linux' with libc 'defaultLibc') --- flake.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 950eb2b5c4d1..f67d2724bce8 100644 --- a/flake.nix +++ b/flake.nix @@ -80,8 +80,17 @@ checks = forAllSystems (system: { tarball = jobs.${system}.tarball; - # Exclude power64 due to "libressl is not available on the requested hostPlatform" with hostPlatform being power64 - } // lib.optionalAttrs (self.legacyPackages.${system}.stdenv.hostPlatform.isLinux && !self.legacyPackages.${system}.targetPlatform.isPower64) { + } // lib.optionalAttrs + ( + self.legacyPackages.${system}.stdenv.hostPlatform.isLinux + # Exclude power64 due to "libressl is not available on the requested hostPlatform" with hostPlatform being power64 + && !self.legacyPackages.${system}.targetPlatform.isPower64 + # Exclude armv6l-linux due to "cannot bootstrap GHC on this platform ('armv6l-linux' with libc 'defaultLibc')" + && system != "armv6l-linux" + # Exclude riscv64-linux due to "cannot bootstrap GHC on this platform ('riscv64-linux' with libc 'defaultLibc')" + && system != "riscv64-linux" + ) + { # Test that ensures that the nixosSystem function can accept a lib argument # Note: prefer not to extend or modify `lib`, especially if you want to share reusable modules # alternatives include: `import` a file, or put a custom library in an option or in `_module.args.` From ccb779782ccb471954971697fcdf1c2331cd906b Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Wed, 16 Oct 2024 08:46:44 -0700 Subject: [PATCH 13/52] flake.nix: exclude armv6-linux, riscv64-linux, and FreeBSD from devShells MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit nixfmt-rfc-style is built with Haskell, and the packaged GHC compiler does not support any of these platforms (currently?). error: … while checking flake output 'devShells' at /nix/store/p36amaznf46ic90fb2rw5c952mgj6mfi-source/flake.nix:123:7: 122| 123| devShells = forAllSystems (system: { } // lib.optionalAttrs (system != "armv6l-linux" && system != "riscv64-linux") { | ^ 124| /** A shell to get tooling for Nixpkgs development. See nixpkgs/shell.nix. */ … while checking the derivation 'devShells.x86_64-freebsd.default' at /nix/store/p36amaznf46ic90fb2rw5c952mgj6mfi-source/flake.nix:125:9: 124| /** A shell to get tooling for Nixpkgs development. See nixpkgs/shell.nix. */ 125| default = import ./shell.nix { inherit system; }; | ^ 126| }); (stack trace truncated; use '--show-trace' to show the full, detailed trace) error: Package ‘ghc-9.6.6’ in /nix/store/8akjd9ngyzhzi1412nxmw26rnj93l3gp-source/pkgs/development/compilers/ghc/common-hadrian.nix:579 is not available on the requested hostPlatform: hostPlatform.config = "x86_64-unknown-freebsd" package.meta.platforms = [ "aarch64-darwin" "aarch64-linux" "i686-linux" "x86_64-darwin" "x86_64-linux" ] package.meta.badPlatforms = [ ] , refusing to evaluate. --- flake.nix | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index f67d2724bce8..9873c1c94971 100644 --- a/flake.nix +++ b/flake.nix @@ -120,10 +120,20 @@ }).nixos.manual; }; - devShells = forAllSystems (system: { - /** A shell to get tooling for Nixpkgs development. See nixpkgs/shell.nix. */ - default = import ./shell.nix { inherit system; }; - }); + devShells = forAllSystems (system: + { } // lib.optionalAttrs + ( + # Exclude armv6l-linux because "Package ‘ghc-9.6.6’ in .../pkgs/development/compilers/ghc/common-hadrian.nix:579 is not available on the requested hostPlatform" + system != "armv6l-linux" + # Exclude riscv64-linux because "Package ‘ghc-9.6.6’ in .../pkgs/development/compilers/ghc/common-hadrian.nix:579 is not available on the requested hostPlatform" + && system != "riscv64-linux" + # Exclude FreeBSD because "Package ‘ghc-9.6.6’ in .../pkgs/development/compilers/ghc/common-hadrian.nix:579 is not available on the requested hostPlatform" + && !self.legacyPackages.${system}.stdenv.hostPlatform.isFreeBSD + ) + { + /** A shell to get tooling for Nixpkgs development. See nixpkgs/shell.nix. */ + default = import ./shell.nix { inherit system; }; + }); /** A nested structure of [packages](https://nix.dev/manual/nix/latest/glossary#package-attribute-set) and other values. From 705fdd9ccc0f8dccade08344cdfb75593b7f91d0 Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Wed, 16 Oct 2024 08:49:28 -0700 Subject: [PATCH 14/52] ci/basic-eval: check that flake outputs are valid --- .github/workflows/basic-eval.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/basic-eval.yml b/.github/workflows/basic-eval.yml index 5a8f20eb711d..b3a85c297925 100644 --- a/.github/workflows/basic-eval.yml +++ b/.github/workflows/basic-eval.yml @@ -26,5 +26,6 @@ jobs: # This cache is for the nixpkgs repo checks and should not be trusted or used elsewhere. name: nixpkgs-ci signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' + - run: nix --experimental-features 'nix-command flakes' flake check --all-systems --no-build # explicit list of supportedSystems is needed until aarch64-darwin becomes part of the trunk jobset - run: nix-build pkgs/top-level/release.nix -A release-checks --arg supportedSystems '[ "aarch64-darwin" "aarch64-linux" "x86_64-linux" "x86_64-darwin" ]' From 096186d8744c8c69d4b9f71374ca76ac4e97ab88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Thu, 17 Oct 2024 15:04:01 -0600 Subject: [PATCH 15/52] glycin-loaders: 1.0.1 -> 1.1.1 https://gitlab.gnome.org/sophie-h/glycin/-/compare/1.0.1...1.1.1 https://gitlab.gnome.org/sophie-h/glycin/-/blob/main/NEWS --- pkgs/by-name/gl/glycin-loaders/package.nix | 33 ++++++++++++++-------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/pkgs/by-name/gl/glycin-loaders/package.nix b/pkgs/by-name/gl/glycin-loaders/package.nix index 7804acd778f7..80ea584a6389 100644 --- a/pkgs/by-name/gl/glycin-loaders/package.nix +++ b/pkgs/by-name/gl/glycin-loaders/package.nix @@ -3,29 +3,31 @@ , fetchurl , substituteAll , bubblewrap +, cairo , cargo , git +, gnome +, gtk4 +, lcms2 +, libheif +, libjxl +, librsvg +, libseccomp +, libxml2 , meson , ninja , pkg-config , rustc , rustPlatform -, gtk4 -, cairo -, libheif -, libxml2 -, libseccomp -, libjxl -, gnome }: stdenv.mkDerivation (finalAttrs: { pname = "glycin-loaders"; - version = "1.0.1"; + version = "1.1.1"; src = fetchurl { - url = "mirror://gnome/sources/glycin-loaders/${lib.versions.majorMinor finalAttrs.version}/glycin-loaders-${finalAttrs.version}.tar.xz"; - hash = "sha256-0PAiRi/1VYVuheqUBHRHC7NrN8n/y8umOgP+XpVDcM8="; + url = "mirror://gnome/sources/glycin/${lib.versions.majorMinor finalAttrs.version}/glycin-${finalAttrs.version}.tar.xz"; + hash = "sha256-Vg7kIWfB7SKCZhjmHYPkkUDbW/R6Zam6js4s1z0qSqg="; }; patches = [ @@ -49,15 +51,24 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = [ gtk4 # for GdkTexture cairo + lcms2 libheif libxml2 # for librsvg crate + librsvg libseccomp libjxl ]; + mesonFlags = [ + "-Dglycin-loaders=true" + "-Dlibglycin=false" + "-Dvapi=false" + ]; + passthru = { updateScript = gnome.updateScript { - packageName = "glycin-loaders"; + attrPath = "glycin-loaders"; + packageName = "glycin"; }; glycinPathsPatch = substituteAll { From 45e21d7f2cfae7353f1c15e9f9e1c9a48f1e9f60 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 20 Oct 2024 07:41:17 +0000 Subject: [PATCH 16/52] pupdate: 3.18.0 -> 3.19.0 --- pkgs/by-name/pu/pupdate/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/pu/pupdate/package.nix b/pkgs/by-name/pu/pupdate/package.nix index b89d472dfb7b..decad3e4f75c 100644 --- a/pkgs/by-name/pu/pupdate/package.nix +++ b/pkgs/by-name/pu/pupdate/package.nix @@ -11,13 +11,13 @@ buildDotnetModule rec { pname = "pupdate"; - version = "3.18.0"; + version = "3.19.0"; src = fetchFromGitHub { owner = "mattpannella"; repo = "pupdate"; rev = "${version}"; - hash = "sha256-GTdca47Jp/q1IpX1IAMZgOgHjBPNSotFSL9O6bfTfnM="; + hash = "sha256-ogQ7pYLfeyoxg0p7nxUvYhmgDw5xtd7qkFM08B4FDBU="; }; buildInputs = [ From a7ad1c182b0452bdb62dda9994a9562ec0cc6119 Mon Sep 17 00:00:00 2001 From: "PAEPCKE, Michael" Date: Sun, 20 Oct 2024 08:49:16 +0000 Subject: [PATCH 17/52] tlsinfo: init at 0.1.41 --- pkgs/by-name/tl/tlsinfo/package.nix | 33 +++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pkgs/by-name/tl/tlsinfo/package.nix diff --git a/pkgs/by-name/tl/tlsinfo/package.nix b/pkgs/by-name/tl/tlsinfo/package.nix new file mode 100644 index 000000000000..197367dd3a21 --- /dev/null +++ b/pkgs/by-name/tl/tlsinfo/package.nix @@ -0,0 +1,33 @@ +{ + lib, + buildGoModule, + fetchFromGitHub, +}: + +buildGoModule rec { + pname = "tlsinfo"; + version = "0.1.41"; + + src = fetchFromGitHub { + owner = "paepckehh"; + repo = "tlsinfo"; + rev = "refs/tags/v${version}"; + hash = "sha256-II5/UDWVeEoupM1Ijty2A9M/qwWA2/b4Y68lTkxnJ9o="; + }; + + vendorHash = "sha256-IyinAjgK4vm+TkSGQq+XnY9BESsNvXgz84BRzNyZtJY="; + + ldflags = [ + "-s" + "-w" + ]; + + meta = { + changelog = "https://github.com/paepckehh/tlsinfo/releases/tag/v${version}"; + homepage = "https://paepcke.de/tlsinfo"; + description = "Tool to analyze and troubleshoot TLS connections"; + license = lib.licenses.bsd3; + mainProgram = "tlsinfo"; + maintainers = with lib.maintainers; [ paepcke ]; + }; +} From e0605c03698f978e8b67ed899e5920e3787c1be8 Mon Sep 17 00:00:00 2001 From: Julius de Bruijn Date: Sun, 20 Oct 2024 16:10:01 +0200 Subject: [PATCH 18/52] bcache-tools: fix udev patch to use bash from explicit path --- .../filesystems/bcache-tools/bcache-udev-modern.patch | 2 +- pkgs/tools/filesystems/bcache-tools/default.nix | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/filesystems/bcache-tools/bcache-udev-modern.patch b/pkgs/tools/filesystems/bcache-tools/bcache-udev-modern.patch index bdf78dcc3cd4..1791f8a22bd1 100644 --- a/pkgs/tools/filesystems/bcache-tools/bcache-udev-modern.patch +++ b/pkgs/tools/filesystems/bcache-tools/bcache-udev-modern.patch @@ -24,7 +24,7 @@ index 9cc7f0d..6a52893 100644 LABEL="bcache_backing_found" RUN{builtin}+="kmod load bcache" -RUN+="bcache-register $tempnode" -+RUN+="/bin/sh -c 'echo $tempnode > /sys/fs/bcache/register_quiet'" ++RUN+="@shell@ -c 'echo $tempnode > /sys/fs/bcache/register_quiet'" LABEL="bcache_backing_end" # Cached devices: symlink diff --git a/pkgs/tools/filesystems/bcache-tools/default.nix b/pkgs/tools/filesystems/bcache-tools/default.nix index d73d17905432..84ecc7ebd9f5 100644 --- a/pkgs/tools/filesystems/bcache-tools/default.nix +++ b/pkgs/tools/filesystems/bcache-tools/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchFromGitHub, pkg-config, util-linux, bash }: +{ lib, stdenv, fetchFromGitHub, pkg-config, util-linux, bash, substituteAll }: stdenv.mkDerivation rec { pname = "bcache-tools"; @@ -26,7 +26,10 @@ stdenv.mkDerivation rec { ''; patches = [ - ./bcache-udev-modern.patch + (substituteAll { + src = ./bcache-udev-modern.patch; + shell = "${bash}/bin/sh"; + }) ./fix-static.patch ]; From ff43d55fd4033ba0ef57ffceffd5497cf5456ba5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 20 Oct 2024 09:24:11 -0700 Subject: [PATCH 19/52] immich: 1.118.1 -> 1.118.2 Changelog: https://github.com/immich-app/immich/releases/tag/v1.118.2 --- pkgs/by-name/im/immich/sources.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pkgs/by-name/im/immich/sources.json b/pkgs/by-name/im/immich/sources.json index fb2e715428b3..b39c08613c49 100644 --- a/pkgs/by-name/im/immich/sources.json +++ b/pkgs/by-name/im/immich/sources.json @@ -1,22 +1,22 @@ { - "version": "1.118.1", - "hash": "sha256-rWBW0EwehuWnKk6qEte+dPd9l7FbLzwdkCSKMm22Orw=", + "version": "1.118.2", + "hash": "sha256-u2/Xs1SdAzmQ02pyXD9+ncamIKFcq8qMijnx7KFtrmU=", "components": { "cli": { - "npmDepsHash": "sha256-0je82BtDH6cUzoMrmeIS0jLmWPbmkdIQJ/SnmbAMtbw=", - "version": "2.2.25" + "npmDepsHash": "sha256-RwfGq0fDPYo+ZP2xv+sMKmr3Tf8szbB8506c1PqiMM0=", + "version": "2.2.26" }, "server": { - "npmDepsHash": "sha256-Jxb47Y4x9A6s4zGODIp6rze7iQ/w8Gvt31NHSATLYCM=", - "version": "1.118.1" + "npmDepsHash": "sha256-4jPvLCsI2gz+maBU3ZtrWZzJ6Zp2PTQwaCuCKr1hK/o=", + "version": "1.118.2" }, "web": { - "npmDepsHash": "sha256-BUgkdsC6raURkyy6eN31uCMKmBbL+fCbGabfHJgJn8g=", - "version": "1.118.1" + "npmDepsHash": "sha256-j6+EkcfwpaCP048v/kZv1xthp0DSylraJTeU4+LcDbw=", + "version": "1.118.2" }, "open-api/typescript-sdk": { - "npmDepsHash": "sha256-Ga/aU5hojd3SgtoiM5QLsmzS5k7CRvh13a4lkC0BZA8=", - "version": "1.118.1" + "npmDepsHash": "sha256-e+7BEFc46scLZDqCJNRhrczOEydSoiK9m7vSj/2ECaE=", + "version": "1.118.2" } } } From d586a185ffd5f0810c166ae1961bb4f4d0c04316 Mon Sep 17 00:00:00 2001 From: happysalada Date: Sun, 20 Oct 2024 14:59:07 -0400 Subject: [PATCH 20/52] wyoming-fastper-whisper: 2.1.0 -> 2.2.0 --- pkgs/tools/audio/wyoming/faster-whisper.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/audio/wyoming/faster-whisper.nix b/pkgs/tools/audio/wyoming/faster-whisper.nix index 4807e50adb42..3ed21f60d158 100644 --- a/pkgs/tools/audio/wyoming/faster-whisper.nix +++ b/pkgs/tools/audio/wyoming/faster-whisper.nix @@ -5,14 +5,14 @@ python3Packages.buildPythonApplication rec { pname = "wyoming-faster-whisper"; - version = "2.1.0"; + version = "2.2.0"; pyproject = true; src = fetchFromGitHub { owner = "rhasspy"; repo = "wyoming-faster-whisper"; rev = "refs/tags/v${version}"; - hash = "sha256-zWa872YkPh8B7dE//leth+ixIa1wHSRcjkvH2lXzolc="; + hash = "sha256-G46ycjpRu4MD00FiBM1H0DrPpXaaPlZ8yeoyZ7WYD48="; }; nativeBuildInputs = with python3Packages; [ From 97b7c11d88610721a346913aecc3a26cbdf30eb4 Mon Sep 17 00:00:00 2001 From: happysalada Date: Sun, 20 Oct 2024 14:59:33 -0400 Subject: [PATCH 21/52] python312Modules.faster-whisper: 1.0.3 -> unstable-2024-07-26 --- .../python-modules/faster-whisper/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/faster-whisper/default.nix b/pkgs/development/python-modules/faster-whisper/default.nix index 8dff7f5a3944..ec14d3b0dfd3 100644 --- a/pkgs/development/python-modules/faster-whisper/default.nix +++ b/pkgs/development/python-modules/faster-whisper/default.nix @@ -19,13 +19,14 @@ buildPythonPackage rec { pname = "faster-whisper"; - version = "1.0.3"; + version = "unstable-2024-07-26"; pyproject = true; src = fetchFromGitHub { owner = "SYSTRAN"; repo = "faster-whisper"; - rev = "refs/tags/v${version}"; + # rev = "refs/tags/v${version}"; + rev = "d57c5b40b06e59ec44240d93485a95799548af50"; hash = "sha256-C/O+wt3dykQJmH+VsVkpQwEAdyW8goMUMKR0Z3Y7jdo="; }; @@ -33,7 +34,10 @@ buildPythonPackage rec { setuptools ]; - pythonRelaxDeps = [ "tokenizers" ]; + pythonRelaxDeps = [ + "tokenizers" + "av" + ]; dependencies = [ av From b51e2591bcbf94f92ec2643d7ac7961a442aaa60 Mon Sep 17 00:00:00 2001 From: FliegendeWurst <2012gdwu+github@posteo.de> Date: Fri, 11 Oct 2024 12:51:30 +0200 Subject: [PATCH 22/52] bun: fix cross-compilation --- pkgs/development/web/bun/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/web/bun/default.nix b/pkgs/development/web/bun/default.nix index 6e187aa3fe03..8e5250b5e1ef 100644 --- a/pkgs/development/web/bun/default.nix +++ b/pkgs/development/web/bun/default.nix @@ -33,8 +33,8 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - postPhases = [ "postPatchelf" ]; - postPatchelf = lib.optionalString (stdenvNoCC.buildPlatform.canExecute stdenvNoCC.hostPlatform) '' + postPhases = lib.optionals (stdenvNoCC.buildPlatform.canExecute stdenvNoCC.hostPlatform) [ "postPatchelf" ]; + postPatchelf = '' completions_dir=$(mktemp -d) SHELL="bash" $out/bin/bun completions $completions_dir From d5262c269ee23bd70d7ef61ab43bc9eda0d80bef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 20 Oct 2024 16:06:57 -0700 Subject: [PATCH 23/52] electron_33-bin: init at 33.0.0 --- pkgs/development/tools/electron/binary/info.json | 11 +++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 13 insertions(+) diff --git a/pkgs/development/tools/electron/binary/info.json b/pkgs/development/tools/electron/binary/info.json index a51217873b5b..98d0b01eb978 100644 --- a/pkgs/development/tools/electron/binary/info.json +++ b/pkgs/development/tools/electron/binary/info.json @@ -75,5 +75,16 @@ "x86_64-linux": "b51e5f1296f8971d7eb4ca86606b6f5d31fb3dab8caa91dcfbfa522be5679691" }, "version": "32.1.2" + }, + "33": { + "hashes": { + "aarch64-darwin": "75f3267e5517bb35cbfc11f2d5673947cfa8a510dc3a78c46356a948650027f2", + "aarch64-linux": "6c321b5f8f8fc694c09f6c904ad0a40a0eff1b84b2b771f6eae292e197e3a8c1", + "armv7l-linux": "d54e4820ab965acaa21940e15b79278fdbff4df083f162cd2a192541cf5a7063", + "headers": "0hzlsjay23hl6sn2gk87cqx8mra13y1ldjq6lgxy041xwfingv7f", + "x86_64-darwin": "945a07cec9eb2bdfa6a7ae6971f1df564447a5eeea3d533abae3ef5eac1966a1", + "x86_64-linux": "497ff71b2cacfc0a001fcfd3d852fd758e20604622ddfa2932dc32074c48af66" + }, + "version": "33.0.0" } } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 122bfdc21701..ef922bd6592b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16916,6 +16916,7 @@ with pkgs; electron_30-bin electron_31-bin electron_32-bin + electron_33-bin ; inherit (callPackages ../development/tools/electron/chromedriver { }) @@ -16931,6 +16932,7 @@ with pkgs; electron_30 = if lib.meta.availableOn stdenv.hostPlatform electron-source.electron_30 then electron-source.electron_30 else electron_30-bin; electron_31 = if lib.meta.availableOn stdenv.hostPlatform electron-source.electron_31 then electron-source.electron_31 else electron_31-bin; electron_32 = if lib.meta.availableOn stdenv.hostPlatform electron-source.electron_32 then electron-source.electron_32 else electron_32-bin; + electron_33 = electron_33-bin; electron = electron_32; electron-bin = electron_32-bin; electron-chromedriver = electron-chromedriver_32; From 34c5e9c983b61b8ccaf54f7ce11c5885a84cf61a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 20 Oct 2024 16:07:42 -0700 Subject: [PATCH 24/52] electron-chromedriver_33: init at 33.0.0 --- .../development/tools/electron/chromedriver/info.json | 11 +++++++++++ pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/pkgs/development/tools/electron/chromedriver/info.json b/pkgs/development/tools/electron/chromedriver/info.json index 3cb6b6a756c5..19d501b36dd1 100644 --- a/pkgs/development/tools/electron/chromedriver/info.json +++ b/pkgs/development/tools/electron/chromedriver/info.json @@ -42,5 +42,16 @@ "x86_64-linux": "d98aa7a90ebfe519700e47fa6bcb94a157483fac615920c5ee467dcc41c46702" }, "version": "32.1.2" + }, + "33": { + "hashes": { + "aarch64-darwin": "c0717f7dc5a2e3f99688389e643e9dc2e513a948df537abadc24230e1c93a1a3", + "aarch64-linux": "32887c18a8acb0d36eba6e3d9d9f763dda9155f98a948958b446681b9da63ed3", + "armv7l-linux": "c52961bcc5d2764d8a144a4fc2b9c25e904c8345deec9253dcaca7d560508a56", + "headers": "0hzlsjay23hl6sn2gk87cqx8mra13y1ldjq6lgxy041xwfingv7f", + "x86_64-darwin": "13086ff2417512f9c87982857e67f25ee05f55e3bb18b5d373264c153a50e166", + "x86_64-linux": "b07f166b53bdf64282e8ba73bf6a6bc86844dd38c183ee7ecbad5d281ee380ea" + }, + "version": "33.0.0" } } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ef922bd6592b..fd678535cd0f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16923,7 +16923,9 @@ with pkgs; electron-chromedriver_29 electron-chromedriver_30 electron-chromedriver_31 - electron-chromedriver_32; + electron-chromedriver_32 + electron-chromedriver_33 + ; electron_24 = electron_24-bin; electron_27 = electron_27-bin; From 1463bbcc8c5195b7305b991da8f13fa018f68002 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 20 Oct 2024 16:13:50 -0700 Subject: [PATCH 25/52] electron_32-bin: 32.1.2 -> 32.2.1 --- pkgs/development/tools/electron/binary/info.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/tools/electron/binary/info.json b/pkgs/development/tools/electron/binary/info.json index 98d0b01eb978..2ed339ff7943 100644 --- a/pkgs/development/tools/electron/binary/info.json +++ b/pkgs/development/tools/electron/binary/info.json @@ -67,14 +67,14 @@ }, "32": { "hashes": { - "aarch64-darwin": "b5f6db900997ba931c98addaef28744a0a6af0f2ec2e8e5755f7f50db2fe8bbc", - "aarch64-linux": "702326c51679ed705bc22d7e4049b29cef2d66366d3387c401836aaae0fa450c", - "armv7l-linux": "d9511449c328f90f47e499f44c6d84c6204d4a3a2caec5c5d52f176cfc77f50d", - "headers": "19x1hyrzkakcrq49sfvzhhz05hi1iagzl2i3h4rfijrhy9jcv4sk", - "x86_64-darwin": "150ac6a59e31ad516685bdbb9cee67c7e927b872ad94ffc900fbf6616433f8ab", - "x86_64-linux": "b51e5f1296f8971d7eb4ca86606b6f5d31fb3dab8caa91dcfbfa522be5679691" + "aarch64-darwin": "906fbf9e7a5ee6d49ea107fdfd0e98bc80884fbf1f6ff38d824453f58c6ec259", + "aarch64-linux": "6500fdbff988e0cda909643ba8439660a207c9a2d393fa63f680a0337e530342", + "armv7l-linux": "7ffcce19ebdb30a9db78671c7f222edde66181a37c895834682d224e459200fc", + "headers": "1z2khnsi8ngg762zfbdvy8g6vn87nj211xvv808isfca0lsd1fxm", + "x86_64-darwin": "56e2e4252b4d4e92075345f0b9dbefc8db49bdc6a4c45a87000f3cc705057907", + "x86_64-linux": "4fc58e6e79e5b5793ec9b5d35c8926fcad5352b6a1b21b3edf42343487c90185" }, - "version": "32.1.2" + "version": "32.2.1" }, "33": { "hashes": { From b01aa67a3855198ec983ec0ec5951abef4489abb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 20 Oct 2024 16:14:17 -0700 Subject: [PATCH 26/52] electron-chromedriver_32: 32.1.2 -> 32.2.1 --- .../tools/electron/chromedriver/info.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/tools/electron/chromedriver/info.json b/pkgs/development/tools/electron/chromedriver/info.json index 19d501b36dd1..55e31c5b1641 100644 --- a/pkgs/development/tools/electron/chromedriver/info.json +++ b/pkgs/development/tools/electron/chromedriver/info.json @@ -34,14 +34,14 @@ }, "32": { "hashes": { - "aarch64-darwin": "7fb7b8736fcd9dbde92628e4aa951fd2c54d3136bf20c1821ce2a1b85fef3046", - "aarch64-linux": "405664c1b6529cd6c2af65778f2c84bfe262ad0b8d9d044a39d2eff2ed218828", - "armv7l-linux": "32682f487ed9307d0f40d35c4b998cee75272effd228093be3e008ca7b39e16e", - "headers": "19x1hyrzkakcrq49sfvzhhz05hi1iagzl2i3h4rfijrhy9jcv4sk", - "x86_64-darwin": "a9e43916cbe91c9a905f2bf38d326d5dc462c3d8a7d88f52c25c1e7c1b9ce7cc", - "x86_64-linux": "d98aa7a90ebfe519700e47fa6bcb94a157483fac615920c5ee467dcc41c46702" + "aarch64-darwin": "29acb63bb116a08e97797042505d48eecfa396f5d84a12114573aa70acaa48ec", + "aarch64-linux": "6b311318f5a537e21d2d832609ce8306b4806e4c62aaa132ee87e063d45f5b00", + "armv7l-linux": "ac1529a8f6e4c77fdae3bc92bc5bfcb40c3b19def0772de9d1874da7223517b7", + "headers": "1z2khnsi8ngg762zfbdvy8g6vn87nj211xvv808isfca0lsd1fxm", + "x86_64-darwin": "a1fd00f8634c6b4d9e28ce8ac69684ea24f5274c9f17c0e39bd149b34568b84b", + "x86_64-linux": "2329d1307729c714bef71d9f8250ed510b5a1ae07beefddee2371af70f712297" }, - "version": "32.1.2" + "version": "32.2.1" }, "33": { "hashes": { From 6900650847809fe479d6f4518fb83b1072e92878 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 20 Oct 2024 17:30:43 -0700 Subject: [PATCH 27/52] electron-source.electron_32: 32.1.2 -> 32.2.1 --- pkgs/development/tools/electron/info.json | 38 +++++++++++------------ 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/pkgs/development/tools/electron/info.json b/pkgs/development/tools/electron/info.json index 3999b50e9888..2cd3361e03b2 100644 --- a/pkgs/development/tools/electron/info.json +++ b/pkgs/development/tools/electron/info.json @@ -1858,7 +1858,7 @@ "version": "31.6.0" }, "32": { - "chrome": "128.0.6613.162", + "chrome": "128.0.6613.186", "chromium": { "deps": { "gn": { @@ -1868,15 +1868,15 @@ "version": "2024-06-11" } }, - "version": "128.0.6613.162" + "version": "128.0.6613.186" }, "chromium_npm_hash": "sha256-OBUYgjfoEZly8JLTtprfU+hlKNFSnHLheaVWhrirGJk=", "deps": { "src": { "fetcher": "fetchFromGitiles", - "hash": "sha256-52pb9e5XYaiIpUlazoXbmEJ/3l4uPWt9sVmF0+cVBKQ=", + "hash": "sha256-6Rtd3eu9z7yvzmMaSGjvTCXt29f9cAXFc1IVT0otQ2I=", "postFetch": "rm -r $out/third_party/blink/web_tests; rm -r $out/third_party/hunspell/tests; rm -r $out/content/test/data; rm -r $out/courgette/testdata; rm -r $out/extensions/test/data; rm -r $out/media/test/data; ", - "rev": "128.0.6613.162", + "rev": "128.0.6613.186", "url": "https://chromium.googlesource.com/chromium/src.git" }, "src/chrome/test/data/perf/canvas_bench": { @@ -1905,10 +1905,10 @@ }, "src/electron": { "fetcher": "fetchFromGitHub", - "hash": "sha256-RkSdNjEmXO4xsCRzp5y5suG8svNT5LSI/eVbAUDbi5c=", + "hash": "sha256-6Yt3fz2XqFoSh+V/tI9ygFdHf76p2vGOR7+6FgTnfWg=", "owner": "electron", "repo": "electron", - "rev": "v32.1.2" + "rev": "v32.2.1" }, "src/media/cdm/api": { "fetcher": "fetchFromGitiles", @@ -2080,14 +2080,14 @@ }, "src/third_party/dawn": { "fetcher": "fetchFromGitiles", - "hash": "sha256-6ljZh99QPH8/9JAV1tVm6BVAYsJWqkJjzlM2AG2m01g=", - "rev": "5f86f5a316f4e082b2419d8b954ebb79c2be590d", + "hash": "sha256-UTtU0GIlkOtXA3vJy0MA99wLARHl7WMM7IBNmXxE6d4=", + "rev": "a79093138c06b0ca942f99ddc39b225dafa4776d", "url": "https://dawn.googlesource.com/dawn.git" }, "src/third_party/dawn/third_party/dxc": { "fetcher": "fetchFromGitiles", - "hash": "sha256-oIByfTUMy1EY3J0/m0iOqJbHd+DzpVAmZbaIdllcF04=", - "rev": "3ea0e7f6b5f464814d6b896eaf69cbd5ebe7fac4", + "hash": "sha256-p4DZNVQ8C4YB52BfBKEFXCqenQk0ONkzkctM9vyz4aw=", + "rev": "ee5422d3f33c0bfd8643ce7782eb3a216cf15dea", "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectXShaderCompiler" }, "src/third_party/dawn/third_party/dxheaders": { @@ -2152,10 +2152,10 @@ }, "src/third_party/electron_node": { "fetcher": "fetchFromGitHub", - "hash": "sha256-fYx771gbZTsgEmHQf4mj3qSqmFHs8YVg4sVyUnfsmqI=", + "hash": "sha256-gm0mJNq6RVWfSsy7vxz44zz0OKjoH50APKOkOnI+Is8=", "owner": "nodejs", "repo": "node", - "rev": "v20.17.0" + "rev": "v20.18.0" }, "src/third_party/emoji-segmenter/src": { "fetcher": "fetchFromGitiles", @@ -2569,8 +2569,8 @@ }, "src/third_party/skia": { "fetcher": "fetchFromGitiles", - "hash": "sha256-B5zb35NkwR3yT58344iAOM1Kywn8Yr/TuNBSJcrxwh4=", - "rev": "938144dd79c6e3664a3c0bbd019daedddf655ffa", + "hash": "sha256-vclLETDkiiBinfvse++0CF9/1+qZeG5vcukTTmqPYiU=", + "rev": "cd98397d0c2c3eb1d5a8d76aade3c87c2e0d28ac", "url": "https://skia.googlesource.com/skia.git" }, "src/third_party/smhasher/src": { @@ -2788,14 +2788,14 @@ }, "src/v8": { "fetcher": "fetchFromGitiles", - "hash": "sha256-weN8PR9qaRcws9T5PhWyJntrJJ4sKoLwP3gTSLHU574=", - "rev": "485b9d9f88ef1c4787b183b8ccc6cdcfbc07ab1a", + "hash": "sha256-VwRVnondH9YM8pYRQo0l0jM0Zb531kpQTo6ngvEPOBg=", + "rev": "d213b3bbc0ecf17ccd2849fdef3bccb1946b01b3", "url": "https://chromium.googlesource.com/v8/v8.git" } }, - "electron_yarn_hash": "0jb1rs1in1bp71syim7a7p0n669kbc6as90y3zi6nd0q340cwgqa", + "electron_yarn_hash": "19iw16qs4h6b1bcmkkqxhhcgxnl2r6qf57w7dr76vbl0zhmhlyf9", "modules": "128", - "node": "20.17.0", - "version": "32.1.2" + "node": "20.18.0", + "version": "32.2.1" } } From 439625a0f6c69c84c74dd1e32512e6e11cfb0872 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 21 Oct 2024 09:19:54 +0200 Subject: [PATCH 28/52] python312Packages.praw: 7.7.1 -> 7.8.0 Diff: https://github.com/praw-dev/praw/compare/refs/tags/v7.8.0...v7.8.0 Changelog: https://github.com/praw-dev/praw/blob/v7.8.0/CHANGES.rst --- .../development/python-modules/praw/default.nix | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/praw/default.nix b/pkgs/development/python-modules/praw/default.nix index 08fb2795bd17..c2e34a316578 100644 --- a/pkgs/development/python-modules/praw/default.nix +++ b/pkgs/development/python-modules/praw/default.nix @@ -1,10 +1,11 @@ { lib, - betamax, betamax-matchers, betamax-serializers, + betamax, buildPythonPackage, fetchFromGitHub, + flit-core, mock, prawcore, pytestCheckHook, @@ -16,19 +17,21 @@ buildPythonPackage rec { pname = "praw"; - version = "7.7.1"; - format = "setuptools"; + version = "7.8.0"; + pyproject = true; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "praw-dev"; - repo = pname; + repo = "praw"; rev = "refs/tags/v${version}"; - hash = "sha256-L7wTHD/ypXVc8GMfl9u16VNb9caLJoXpaMEIzaVVUgo="; + hash = "sha256-oJkpFGJswG//5dnfdwkUdAkn8FOuqT/tDoTT5UncOGA="; }; - propagatedBuildInputs = [ + build-system = [ flit-core ]; + + dependencies = [ mock prawcore update-checker From b01da391b7e51feeca65d428ff16570f1249fc29 Mon Sep 17 00:00:00 2001 From: mksafavi Date: Sat, 19 Oct 2024 02:46:09 +0330 Subject: [PATCH 29/52] inspector: init at 0.2.0 --- pkgs/by-name/in/inspector/package.nix | 67 +++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 pkgs/by-name/in/inspector/package.nix diff --git a/pkgs/by-name/in/inspector/package.nix b/pkgs/by-name/in/inspector/package.nix new file mode 100644 index 000000000000..c9d0957f7225 --- /dev/null +++ b/pkgs/by-name/in/inspector/package.nix @@ -0,0 +1,67 @@ +{ + lib, + stdenv, + fetchFromGitHub, + meson, + ninja, + gettext, + wrapGAppsHook4, + desktop-file-utils, + gobject-introspection, + libadwaita, + python3Packages, + iproute2, + util-linux, + coreutils, + usbutils, + pciutils, +}: + +python3Packages.buildPythonApplication rec { + pname = "inspector"; + version = "0.2.0"; + format = "other"; + + src = fetchFromGitHub { + owner = "Nokse22"; + repo = "inspector"; + rev = "v${version}"; + hash = "sha256-tjQCF2Tyv7/NWgrwHu+JPpnLECfDmQS77EVLBt+cRTs="; + }; + + nativeBuildInputs = [ + meson + ninja + gettext + wrapGAppsHook4 + desktop-file-utils + gobject-introspection + ]; + + buildInputs = [ + libadwaita + ]; + + dependencies = [ + python3Packages.pygobject3 + iproute2 + util-linux + coreutils + usbutils + pciutils + ]; + + strictDeps = true; + + meta = { + homepage = "https://github.com/Nokse22/inspector"; + description = "Gtk4 Libadwaita wrapper for various system info cli commands"; + license = with lib.licenses; [ + gpl3Plus + cc0 + ]; + platforms = lib.platforms.linux; + mainProgram = "inspector"; + maintainers = with lib.maintainers; [ mksafavi ]; + }; +} From f295624943867145a153e2793abc010deb3b805b Mon Sep 17 00:00:00 2001 From: "Aaron Hall, MBA" Date: Thu, 14 Jul 2022 01:26:00 -0400 Subject: [PATCH 30/52] nixos/doc/configuration/wayland: add link to Sway wiki page Co-authored-by: teutat3s <10206665+teutat3s@users.noreply.github.com> --- nixos/doc/manual/configuration/wayland.chapter.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/doc/manual/configuration/wayland.chapter.md b/nixos/doc/manual/configuration/wayland.chapter.md index 27c027d38514..8c085670ba13 100644 --- a/nixos/doc/manual/configuration/wayland.chapter.md +++ b/nixos/doc/manual/configuration/wayland.chapter.md @@ -29,3 +29,6 @@ able to share your screen, you might want to activate this option: and configure Pipewire using [](#opt-services.pipewire.enable) and related options. + +For more helpful tips and tricks, see the +[wiki page about Sway](https://wiki.nixos.org/wiki/Sway). From ff40e745b8f9f6166a4eb280158a7d420fb3bada Mon Sep 17 00:00:00 2001 From: teutat3s <10206665+teutat3s@users.noreply.github.com> Date: Mon, 21 Oct 2024 14:00:47 +0200 Subject: [PATCH 31/52] nixos/doc/configuration/wayland: remove redundant snippet We already configure the wlr portal by default in wayland-session.nix. --- nixos/doc/manual/configuration/wayland.chapter.md | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/nixos/doc/manual/configuration/wayland.chapter.md b/nixos/doc/manual/configuration/wayland.chapter.md index 8c085670ba13..2d32f06987df 100644 --- a/nixos/doc/manual/configuration/wayland.chapter.md +++ b/nixos/doc/manual/configuration/wayland.chapter.md @@ -18,15 +18,7 @@ This installs the sway compositor along with some essential utilities. Now you can start sway from the TTY console. If you are using a wlroots-based compositor, like sway, and want to be -able to share your screen, you might want to activate this option: - -```nix -{ - xdg.portal.wlr.enable = true; -} -``` - -and configure Pipewire using +able to share your screen, make sure to configure Pipewire using [](#opt-services.pipewire.enable) and related options. From 1e301371090ad01bc41ad51393fd87a1db09becd Mon Sep 17 00:00:00 2001 From: John Ericson Date: Mon, 21 Oct 2024 12:06:05 -0400 Subject: [PATCH 32/52] doc: Improve CMake setup hook docs, following Meson's See also #342868 --- doc/hooks/cmake.section.md | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/doc/hooks/cmake.section.md b/doc/hooks/cmake.section.md index b5dc5a914434..5bcc3c980fc5 100644 --- a/doc/hooks/cmake.section.md +++ b/doc/hooks/cmake.section.md @@ -1,3 +1,35 @@ # cmake {#cmake} -Overrides the default configure phase to run the CMake command. By default, we use the Make generator of CMake. In addition, dependencies are added automatically to `CMAKE_PREFIX_PATH` so that packages are correctly detected by CMake. Some additional flags are passed in to give similar behavior to configure-based packages. You can disable this hook’s behavior by setting `configurePhase` to a custom value, or by setting `dontUseCmakeConfigure`. `cmakeFlags` controls flags passed only to CMake. By default, parallel building is enabled as CMake supports parallel building almost everywhere. When Ninja is also in use, CMake will detect that and use the ninja generator. +Overrides the default configure phase to run the CMake command. + +By default, we use the Make generator of CMake. +But when Ninja is also available as a `nativeBuildInput`, this setup hook will detect that and use the ninja generator. + +Dependencies are added automatically to `CMAKE_PREFIX_PATH` so that packages are correctly detected by CMake. +Some additional flags are passed in to give similar behavior to configure-based packages. + +By default, parallel building is enabled as CMake supports parallel building almost everywhere. + +You can disable this hook’s behavior by setting `configurePhase` to a custom value, or by setting `dontUseCmakeConfigure`. + +## Variables controlling CMake {#cmake-variables-controlling} + +### CMake Exclusive Variables {#cmake-exclusive-variables} + +#### `cmakeFlags` {#cmake-flags} + +Controls the flags passed to `cmake setup` during configure phase. + +#### `cmakeBuildDir` {#cmake-build-dir} + +Directory where CMake will put intermediate files. + +Setting this can be useful for debugging multiple CMake builds while in the same source directory, for example, when building for different platforms. +Different values for each build will prevent build artefacts from interefering with each other. +This setting has no tangible effect when running the build in a sandboxed derivation. + +The default value is `build`. + +#### `dontUseCmakeConfigure` {#dont-use-cmake-configure} + +When set to true, don't use the predefined `cmakeConfigurePhase`. From 1cacb713a4b9bb379a68d2a08d8283df266670d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Mon, 21 Oct 2024 11:52:00 -0600 Subject: [PATCH 33/52] Reapply "aliases: cleanup old throw aliases" This reverts commit 8a70e31a6e52b4ab19ba7d531ccf94dd2022a112. --- pkgs/top-level/aliases.nix | 508 ------------------------------------- 1 file changed, 508 deletions(-) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 7b07e7b1ce1b..5c6c10b9c23b 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -88,55 +88,30 @@ mapAliases { adoptopenjdk-openj9-bin-15 = throw "adoptopenjdk has been removed as the upstream project is deprecated. JDK 15 is also EOL. Consider using `semeru-bin-17`."; # Added 2024-05-09 adoptopenjdk-openj9-bin-16 = throw "adoptopenjdk has been removed as the upstream project is deprecated. JDK 16 is also EOL. Consider using `semeru-bin-17`."; # Added 2024-05-09 adoptopenjdk-openj9-bin-8 = throw "adoptopenjdk has been removed as the upstream project is deprecated. Consider using `semeru-bin-8`."; # Added 2024-05-09 - advcpmv = throw "'advcpmv' has been removed, as it is not being actively maintained and break recent coreutils."; # Added 2024-03-29 # Post 24.11 branch-off, this should throw an error addOpenGLRunpath = addDriverRunpath; # Added 2024-05-25 - aether = throw "aether has been removed from nixpkgs; upstream unmaintained, security issues"; # Added 2023-10-03 aeon = throw "aeon has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2024-07-15 afl = throw "afl has been removed as the upstream project was archived. Consider using 'aflplusplus'"; # Added 2024-04-21 agda-pkg = throw "agda-pkg has been removed due to being unmaintained"; # Added 2024-09-10" - airfield = throw "airfield has been removed due to being unmaintained"; # Added 2023-05-19 - alertmanager-bot = throw "alertmanager-bot is broken and has been archived by upstream"; # Added 2023-07-28 - alsa-project = throw "alsa-project was removed and its sub-attributes were promoted to top-level."; # Added 2023-11-12 alsaLib = throw "'alsaLib' has been renamed to/replaced by 'alsa-lib'"; # Converted to throw 2024-10-17 alsaOss = throw "'alsaOss' has been renamed to/replaced by 'alsa-oss'"; # Converted to throw 2024-10-17 alsaPluginWrapper = throw "'alsaPluginWrapper' has been renamed to/replaced by 'alsa-plugins-wrapper'"; # Converted to throw 2024-10-17 alsaPlugins = throw "'alsaPlugins' has been renamed to/replaced by 'alsa-plugins'"; # Converted to throw 2024-10-17 alsaTools = throw "'alsaTools' has been renamed to/replaced by 'alsa-tools'"; # Converted to throw 2024-10-17 alsaUtils = throw "'alsaUtils' has been renamed to/replaced by 'alsa-utils'"; # Converted to throw 2024-10-17 - amtk = throw "amtk has been renamed to libgedit-amtk and is now maintained by Gedit Technology"; # Added 2023-12-31 angelfish = throw "'angelfish' has been renamed to/replaced by 'libsForQt5.kdeGear.angelfish'"; # Converted to throw 2024-10-17 - ansible_2_12 = throw "Ansible 2.12 goes end of life in 2023/05 and can't be supported throughout the 23.05 release cycle"; # Added 2023-05-16 - ansible_2_13 = throw "Ansible 2.13 goes end of life in 2023/11"; # Added 2023-12-30 ansible_2_14 = throw "Ansible 2.14 goes end of life in 2024/05 and can't be supported throughout the 24.05 release cycle"; # Added 2024-04-11 antennas = throw "antennas has been removed as it only works with tvheadend, which nobody was willing to maintain and was stuck on an unmaintained version that required FFmpeg 4; please see https://github.com/NixOS/nixpkgs/pull/332259 if you are interested in maintaining a newer version"; # Added 2024-08-21 androidndkPkgs_23b = lib.warn "The package set `androidndkPkgs_23b` has been renamed to `androidndkPkgs_23`." androidndkPkgs_23; # Added 2024-07-21 ankisyncd = throw "ankisyncd is dead, use anki-sync-server instead"; # Added 2024-08-10 ao = libfive; # Added 2024-10-11 - apacheAnt_1_9 = throw "Ant 1.9 has been removed since it's not used in nixpkgs anymore"; # Added 2023-11-12 - apacheKafka_2_8 = throw "apacheKafka_2_8 through _3_5 have been removed from nixpkgs as outdated"; # Added 2024-02-12 - apacheKafka_3_0 = throw "apacheKafka_2_8 through _3_5 have been removed from nixpkgs as outdated"; # Added 2024-02-12 - apacheKafka_3_1 = throw "apacheKafka_2_8 through _3_5 have been removed from nixpkgs as outdated"; # Added 2024-02-12 - apacheKafka_3_2 = throw "apacheKafka_2_8 through _3_5 have been removed from nixpkgs as outdated"; # Added 2024-02-12 - apacheKafka_3_3 = throw "apacheKafka_2_8 through _3_5 have been removed from nixpkgs as outdated"; # Added 2024-02-12 - apacheKafka_3_4 = throw "apacheKafka_2_8 through _3_5 have been removed from nixpkgs as outdated"; # Added 2024-02-12 apacheKafka_3_5 = throw "apacheKafka_2_8 through _3_5 have been removed from nixpkgs as outdated"; # Added 2024-06-13 antimicroX = throw "'antimicroX' has been renamed to/replaced by 'antimicrox'"; # Converted to throw 2024-10-17 appthreat-depscan = dep-scan; # Added 2024-04-10 arcanist = throw "arcanist was removed as phabricator is not supported and does not accept fixes"; # Added 2024-06-07 - arcanPackages = throw "arcanPackages was removed and its sub-attributes were promoted to top-level"; # Added 2023-11-26 - archiveopteryx = throw "archiveopteryx depended on an unsupported version of OpenSSL and was unmaintained"; # Added 2024-01-03 - ardour_6 = throw "ardour_6 has been removed in favor of newer versions"; # Added 2023-10-13 aria = aria2; # Added 2024-03-26 armcord = throw "ArmCord was renamed to legcord by the upstream developers. Action is required to migrate configurations between the two applications. Please see this PR for more details: https://github.com/NixOS/nixpkgs/pull/347971"; # Added 2024-10-11 aseprite-unfree = aseprite; # Added 2023-08-26 - asls = throw "asls has been removed: abandoned by upstream"; # Added 2023-03-16 - asterisk_16 = throw "asterisk_16: Asterisk 16 is end of life and has been removed"; # Added 2023-04-19 - asterisk_19 = throw "asterisk_19: Asterisk 19 is end of life and has been removed"; # Added 2023-04-19 - atom = throw "'atom' has been removed because discontinued and deprecated. Consider using 'pulsar', a maintained fork"; # Added 2023-10-01 - atom-beta = throw "'atom-beta' has been removed because discontinued and deprecated. Consider using 'pulsar', a maintained fork"; # Added 2023-10-01 - atomEnv = throw "'atomEnv' has been removed because 'atom' is discontinued and deprecated. Consider using 'pulsar', a maintained fork"; # Added 2023-10-01 - atomPackages = throw "'atomPackages' has been removed because 'atom' is discontinued and deprecated. Consider using 'pulsar', a maintained fork"; # Added 2023-10-01 audaciousQt5 = throw "'audaciousQt5' has been removed, since audacious is built with Qt 6 now"; # Added 2024-07-06 auditBlasHook = throw "'auditBlasHook' has been removed since it never worked"; # Added 2024-04-02 aumix = throw "'aumix' has been removed due to lack of maintenance upstream. Consider using 'pamixer' for CLI or 'pavucontrol' for GUI"; # Added 2024-09-14 @@ -151,55 +126,31 @@ mapAliases { badtouch = authoscope; # Project was renamed, added 20210626 baget = throw "'baget' has been removed due to being unmaintained"; - ballAndPaddle = throw "'ballAndPaddle' has been removed because it was broken and abandoned upstream"; # Added 2023-10-16 bashInteractive_5 = throw "'bashInteractive_5' has been renamed to/replaced by 'bashInteractive'"; # Converted to throw 2024-10-17 bash_5 = throw "'bash_5' has been renamed to/replaced by 'bash'"; # Converted to throw 2024-10-17 - bazel_3 = throw "bazel 3 is past end of life as it is not an lts version"; # Added 2023-02-02 - bazel_4 = throw "'bazel_4' has been removed from nixpkgs as it has reached end of life"; # Added 2024-01-23 BeatSaberModManager = beatsabermodmanager; # Added 2024-06-12 - bedup = throw "bedup was removed because it was broken and abandoned upstream"; # added 2023-02-04 - bee-unstable = throw "bee-unstable has been removed, use 'bee' instead"; # Added 2024-02-12 - bee-clef = throw "bee-clef has been removed as the upstream project was archived"; # Added 2024-02-12 - beignet = throw "beignet was removed as it was never ported from old llvmPackages_6 upstream"; # added 2024-01-08 bibata-extra-cursors = throw "bibata-cursors has been removed as it was broken"; # Added 2024-07-15 bitcoin-unlimited = throw "bitcoin-unlimited has been removed as it was broken and unmaintained"; # Added 2024-07-15 bitcoind-unlimited = throw "bitcoind-unlimited has been removed as it was broken and unmaintained"; # Added 2024-07-15 - binance = throw "binance has been removed, because it depends on a very outdated and insecure version of electron"; # Added 2023-11-09 bird2 = bird; # Added 2022-02-21 bitwarden = bitwarden-desktop; # Added 2024-02-25 - bitwig-studio1 = throw "bitwig-studio1 has been removed, you can upgrade to 'bitwig-studio'"; # Added 2023-01-03 - bitwig-studio2 = throw "bitwig-studio2 has been removed, you can upgrade to 'bitwig-studio'"; # Added 2023-01-03 blender-with-packages = args: lib.warn "blender-with-packages is deprecated in favor of blender.withPackages, e.g. `blender.withPackages(ps: [ ps.foobar ])`" (blender.withPackages (_: args.packages)).overrideAttrs (lib.optionalAttrs (args ? name) { pname = "blender-" + args.name; }); # Added 2023-10-30 bless = throw "'bless' has been removed due to lack of maintenance upstream and depending on gtk2. Consider using 'imhex' or 'ghex' instead"; # Added 2024-09-15 blockbench-electron = blockbench; # Added 2024-03-16 - bluezFull = throw "'bluezFull' has been renamed to/replaced by 'bluez'"; # Converted to throw 2023-09-10 bmap-tools = bmaptool; # Added 2024-08-05 - bookletimposer = throw "bookletimposer has been removed from nixpkgs; upstream unmaintained and broke with pypdf3"; # Added 2024-01-01 - boost168 = throw "boost168 has been deprecated in favor of the latest version"; # Added 2023-06-08 - boost169 = throw "boost169 has been deprecated in favor of the latest version"; # Added 2023-06-08 - boost16x = throw "boost16x has been deprecated in favor of the latest version"; # Added 2023-06-08 - boost170 = throw "boost170 has been deprecated in favor of the latest version"; # Added 2023-06-08 - boost172 = throw "boost172 has been deprecated in favor of the latest version"; # Added 2023-06-08 - boost173 = throw "boost173 has been deprecated in favor of the latest version"; # Added 2023-06-08 - boost174 = throw "boost174 has been deprecated in favor of the latest version"; # Added 2023-06-08 - boost17x = throw "boost17x has been deprecated in favor of the latest version"; # Added 2023-07-13 - boost18x = throw "boost18x has been deprecated in favor of the latest version"; # Added 2023-07-13 boost_process = throw "boost_process has been removed as it is included in regular boost"; # Added 2024-05-01 bpb = throw "bpb has been removed as it is unmaintained and not compatible with recent Rust versions"; # Added 2024-04-30 bpftool = throw "'bpftool' has been renamed to/replaced by 'bpftools'"; # Converted to throw 2024-10-17 - bpytop = throw "bpytop has been deprecated by btop"; # Added 2023-02-16 brasero-original = lib.warn "Use 'brasero-unwrapped' instead of 'brasero-original'" brasero-unwrapped; # Added 2024-09-29 - bro = throw "'bro' has been renamed to/replaced by 'zeek'"; # Converted to throw 2023-09-10 bs-platform = throw "'bs-platform' was removed as it was broken, development ended and 'melange' has superseded it"; # Added 2024-07-29 budgie = throw "The `budgie` scope has been removed and all packages moved to the top-level"; # Added 2024-07-14 budgiePlugins = throw "The `budgiePlugins` scope has been removed and all packages moved to the top-level"; # Added 2024-07-14 inherit (libsForQt5.mauiPackages) buho; # added 2022-05-17 - bukut = throw "bukut has been removed since it has been archived by upstream"; # Added 2023-05-24 butler = throw "butler was removed because it was broken and abandoned upstream"; # added 2024-06-18 # Shorter names; keep the longer name for back-compat. Added 2023-04-11 buildFHSUserEnv = buildFHSEnv; @@ -219,17 +170,11 @@ mapAliases { calligra = kdePackages.calligra; # Added 2024-09-27 callPackage_i686 = pkgsi686Linux.callPackage; - cadence = throw "cadence has been removed from nixpkgs, as it was archived upstream"; # Added 2023-10-28 cask = emacs.pkgs.cask; # Added 2022-11-12 canonicalize-jars-hook = stripJavaArchivesHook; # Added 2024-03-17 cargo-deps = throw "cargo-deps has been removed as the repository is deleted"; # Added 2024-04-09 - cargo-embed = throw "cargo-embed is now part of the probe-rs package"; # Added 2023-07-03 cargo-espflash = espflash; - cargo-flash = throw "cargo-flash is now part of the probe-rs package"; # Added 2023-07-03 - cargo-graph = throw "cargo-graph has been removed as it is broken and archived upstream"; # Added 2024-03-16 - catfish = throw "'catfish' has been renamed to/replaced by 'xfce.catfish'"; # Converted to throw 2023-09-10 cawbird = throw "cawbird has been abandoned upstream and is broken anyways due to Twitter closing its API"; - ccloud-cli = throw "ccloud-cli has been removed, please use confluent-cli instead"; # Added 2023-06-09 certmgr-selfsigned = certmgr; # Added 2023-11-30 challenger = taler-challenger; # Added 2024-09-04 check_smartmon = throw "'check_smartmon' has been renamed to 'nagiosPlugins.check_smartmon'"; # Added 2024-05-03 @@ -243,69 +188,43 @@ mapAliases { check-uptime = throw "'check-uptime' has been renamed to 'nagiosPlugins.check_uptime'"; # Added 2024-05-03 check-wmiplus = throw "'check-wmiplus' has been renamed to 'nagiosPlugins.check_wmi_plus'"; # Added 2024-05-03 checkSSLCert = throw "'checkSSLCert' has been renamed to 'nagiosPlugins.check_ssl_cert'"; # Added 2024-05-03 - chefdk = throw "chefdk has been removed due to being deprecated upstream by Chef Workstation"; # Added 2023-03-22 - chia = throw "chia has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # Added 2023-11-30 - chia-dev-tools = throw "chia-dev-tools has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # Added 2023-11-30 - chia-plotter = throw "chia-plotter has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # Added 2023-11-30 chiaki4deck = chiaki-ng; # Added 2024-08-04 - chkservice = throw "chkservice has been removed from nixpkgs, as it has been deleted upstream"; # Added 2024-01-08 chocolateDoom = chocolate-doom; # Added 2023-05-01 ChowCentaur = chow-centaur; # Added 2024-06-12 ChowPhaser = chow-phaser; # Added 2024-06-12 ChowKick = chow-kick; # Added 2024-06-12 CHOWTapeModel = chow-tape-model; # Added 2024-06-12 chrome-gnome-shell = gnome-browser-connector; # Added 2022-07-27 - chromiumBeta = throw "'chromiumBeta' has been removed due to the lack of maintenance in nixpkgs. Consider using 'chromium' instead."; # Added 2023-10-18 - chromiumDev = throw "'chromiumDev' has been removed due to the lack of maintenance in nixpkgs. Consider using 'chromium' instead."; # Added 2023-10-18 - citra = throw "citra has been removed from nixpkgs, as it has been taken down upstream"; # added 2024-03-04 - citra-nightly = throw "citra-nightly has been removed from nixpkgs, as it has been taken down upstream"; # added 2024-03-04 - citra-canary = throw "citra-canary has been removed from nixpkgs, as it has been taken down upstream"; # added 2024-03-04 cloog = throw "cloog has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-09-13 cloog_0_18_0 = throw "cloog_0_18_0 has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-09-13 cloogppl = throw "cloogppl has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-09-13 - clang-ocl = throw "'clang-ocl' has been replaced with 'rocmPackages.clang-ocl'"; # Added 2023-10-08 clang-sierraHack = throw "clang-sierraHack has been removed because it solves a problem that no longer seems to exist. Hey, what were you even doing with that thing anyway?"; # Added 2024-10-05 clang-sierraHack-stdenv = clang-sierraHack; # Added 2024-10-05 inherit (libsForQt5.mauiPackages) clip; # added 2022-05-17 - clpm = throw "'clpm' has been removed from nixpkgs"; # Added 2024-04-01 clwrapperFunction = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 CoinMP = coinmp; # Added 2024-06-12 collada-dom = opencollada; # added 2024-02-21 - composable_kernel = throw "'composable_kernel' has been replaced with 'rocmPackages.composable_kernel'"; # Added 2023-10-08 coriander = throw "'coriander' has been removed because it depends on GNOME 2 libraries"; # Added 2024-06-27 corretto19 = throw "Corretto 19 was removed as it has reached its end of life"; # Added 2024-08-01 cosmic-tasks = tasks; # Added 2024-07-04 cpp-ipfs-api = cpp-ipfs-http-client; # Project has been renamed. Added 2022-05-15 crispyDoom = crispy-doom; # Added 2023-05-01 crossLibcStdenv = stdenvNoLibc; # Added 2024-09-06 - cryptowatch-desktop = throw "Cryptowatch Desktop was sunset on September 30th 2023 and has been removed from nixpkgs"; # Added 2023-12-22 - clash = throw "'clash' has been removed, upstream gone. Consider using 'mihomo' instead."; # added 2023-11-10 clash-geoip = throw "'clash-geoip' has been removed. Consider using 'dbip-country-lite' instead."; # added 2024-10-19 clash-verge = throw "'clash-verge' has been removed, as it was broken and unmaintained. Consider using 'clash-verge-rev' or 'clash-nyanpasu' instead"; # Added 2024-09-17 clasp = clingo; # added 2022-12-22 claws-mail-gtk3 = throw "'claws-mail-gtk3' has been renamed to/replaced by 'claws-mail'"; # Converted to throw 2024-10-17 - clucene_core_1 = throw "'clucene_core_1' has been renamed to/replaced by 'clucene_core'"; # Added 2023-12-09 - cntk = throw "'cntk' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-10-09 cockroachdb-bin = cockroachdb; # 2024-03-15 codimd = throw "'codimd' has been renamed to/replaced by 'hedgedoc'"; # Converted to throw 2024-10-17 inherit (libsForQt5.mauiPackages) communicator; # added 2022-05-17 - compton = throw "'compton' has been renamed to/replaced by 'picom'"; # Converted to throw 2023-09-10 concurrencykit = throw "'concurrencykit' has been renamed to/replaced by 'libck'"; # Converted to throw 2024-10-17 - connmanPackages = throw "'connmanPackages' was removed and their subpackages/attributes were promoted to top level."; # Added 2023-10-08 containerpilot = throw "'containerpilot' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2024-06-09 - convoy = throw "'convoy' has been removed from nixpkgs, as it was archived upstream"; # Added 2023-12-27 crackmapexec = throw "'crackmapexec' has been removed as it was unmaintained. Use 'netexec' instead"; # 2024-08-11 - crda = throw "'crda' has been removed from nixpkgs, as it is needed only for kernels before 4.16"; # Added 2024-02-06 cups-kyodialog3 = cups-kyodialog; # Added 2022-11-12 cvs_fast_export = throw "'cvs_fast_export' has been renamed to/replaced by 'cvs-fast-export'"; # Converted to throw 2024-10-17 # these are for convenience, not for backward compat and shouldn't expire - clang6Stdenv = throw "clang6Stdenv has been removed from nixpkgs"; # Added 2024-01-08 - clang7Stdenv = throw "clang7Stdenv has been removed from nixpkgs"; # Added 2023-11-19 - clang8Stdenv = throw "clang8Stdenv has been removed from nixpkgs"; # Added 2024-01-24 clang9Stdenv = throw "clang9Stdenv has been removed from nixpkgs"; # Added 2024-04-08 - clang10Stdenv = throw "clang10Stdenv has been removed from nixpkgs"; # Added 2024-01-26 - clang11Stdenv = throw "clang11Stdenv has been removed from nixpkgs"; # Added 2023-01-24 clang12Stdenv = lowPrio llvmPackages_12.stdenv; clang13Stdenv = lowPrio llvmPackages_13.stdenv; clang14Stdenv = lowPrio llvmPackages_14.stdenv; @@ -315,18 +234,8 @@ mapAliases { clang18Stdenv = lowPrio llvmPackages_18.stdenv; clang19Stdenv = lowPrio llvmPackages_19.stdenv; - clang-tools_6 = throw "clang-tools_6 has been removed from nixpkgs"; # Added 2024-01-08 - clang-tools_7 = throw "clang-tools_7 has been removed from nixpkgs"; # Added 2023-11-19 - clang-tools_8 = throw "clang-tools_8 has been removed from nixpkgs"; # Added 2024-01-24 clang-tools_9 = throw "clang-tools_9 has been removed from nixpkgs"; # Added 2024-04-08 - clang-tools_10 = throw "clang-tools_10 has been removed from nixpkgs"; # Added 2023-01-26 - clang-tools_11 = throw "clang-tools_11 has been removed from nixpkgs"; # Added 2023-01-24 - clang_6 = throw "clang_6 has been removed from nixpkgs"; # Added 2024-01-08 - clang_7 = throw "clang_7 has been removed from nixpkgs"; # Added 2023-11-19 - clang_8 = throw "clang_8 has been removed from nixpkgs"; # Added 2024-01-24 clang_9 = throw "clang_9 has been removed from nixpkgs"; # Added 2024-04-08 - clang_10 = throw "clang_10 has been removed from nixpkgs"; # Added 2024-01-26 - clang_11 = throw "clang_11 has been removed from nixpkgs"; # Added 2023-01-24 clang-tools_12 = llvmPackages_12.clang-tools; # Added 2024-04-22 clang-tools_13 = llvmPackages_13.clang-tools; # Added 2024-04-22 @@ -341,45 +250,31 @@ mapAliases { ### D ### - dagger = throw "'dagger' has been removed from nixpkgs, as the trademark policy of the upstream project is incompatible"; # Added 2023-10-16 dart_stable = throw "'dart_stable' has been renamed to/replaced by 'dart'"; # Converted to throw 2024-10-17 dart-sass-embedded = throw "dart-sass-embedded has been removed from nixpkgs, as is now included in Dart Sass itself."; dat = nodePackages.dat; dbeaver = throw "'dbeaver' has been renamed to/replaced by 'dbeaver-bin'"; # Added 2024-05-16 - deadcode = throw "'deadcode' has been removed, as upstream is abandoned since 2019-04-27. Use the official deadcode from 'gotools' package."; # Added 2023-12-28 deadpixi-sam = deadpixi-sam-unstable; debugedit-unstable = throw "'debugedit-unstable' has been renamed to/replaced by 'debugedit'"; # Converted to throw 2024-10-17 deltachat-electron = throw "'deltachat-electron' has been renamed to/replaced by 'deltachat-desktop'"; # Converted to throw 2024-10-17 demjson = with python3Packages; toPythonApplication demjson; # Added 2022-01-18 - dep = throw "'dep' has been removed, because it is deprecated and archived in favor of Go modules"; # Added 2023-12-26 - devserver = throw "'devserver' has been removed in favor of 'miniserve' or other alternatives"; # Added 2023-01-13 - dfeet = throw "'dfeet' has been removed because it is archived upstream. Please use 'd-spy' instead"; # Added 2024-03-07 dgsh = throw "'dgsh' has been removed, as it was broken and unmaintained"; # added 2024-05-09 - dhcp = throw "dhcp (ISC DHCP) has been removed from nixpkgs, because it reached its end of life"; # Added 2023-04-04 dibbler = throw "dibbler was removed because it is not maintained anymore"; # Added 2024-05-14 dillong = throw "'dillong' has been removed, as upstream is abandoned since 2021-12-13. Use either 'dillo' or 'dillo-plus'. The latter integrates features from dillong."; # Added 2024-10-07 dnnl = throw "'dnnl' has been renamed to/replaced by 'oneDNN'"; # Converted to throw 2024-10-17 dnscrypt-wrapper = throw "dnscrypt-wrapper was removed because it has been effectively unmaintained since 2018. Use DNSCcrypt support in dnsdist instead"; # Added 2024-09-14 docker-compose_1 = throw "'docker-compose_1' has been removed because it has been unmaintained since May 2021. Use docker-compose instead."; # Added 2024-07-29 docker-distribution = distribution; # Added 2023-12-26 - docker-machine = throw "'docker-machine' has been removed, because the upstream project was archived"; # Added 2023-12-27 - docker-machine-kvm = throw "'docker-machine-kvm' has been removed, because 'docker-machine' was archived upstream and removed"; # Added 2023-12-27 - docker-machine-xhyve = throw "'docker-machine-xhyve' has been removed, because 'docker-machine' was archived upstream and removed"; # Added 2023-12-27 - docker-proxy = throw "`docker-proxy` has been merged to the main repo of Moby since Docker 22.06"; # Added 2024-03-14 - dogecoin = throw "'dogecoin' has been removed, as it was broken and unmaintained"; # Added 2024-03-11 - dogecoind = throw "'dogecoind' has been removed, as it was broken and unmaintained"; # Added 2024-03-11 dolphin-emu-beta = dolphin-emu; # Added 2023-02-11 dolphinEmu = throw "'dolphinEmu' has been renamed to/replaced by 'dolphin-emu'"; # Converted to throw 2024-10-17 dolphinEmuMaster = throw "'dolphinEmuMaster' has been renamed to/replaced by 'dolphin-emu-beta'"; # Converted to throw 2024-10-17 - dot-http = throw "'dot-http' has been removed: abandoned by upstream. Use hurl instead."; # Added 2023-01-16 dotty = scala_3; # Added 2023-08-20 dotnet-netcore = throw "'dotnet-netcore' has been renamed to/replaced by 'dotnet-runtime'"; # Converted to throw 2024-10-17 dotnet-sdk_2 = throw "'dotnet-sdk_2' has been renamed to/replaced by 'dotnetCorePackages.sdk_2_1'"; # Converted to throw 2024-10-17 dotnet-sdk_3 = throw "'dotnet-sdk_3' has been renamed to/replaced by 'dotnetCorePackages.sdk_3_1'"; # Converted to throw 2024-10-17 dotnet-sdk_5 = throw "'dotnet-sdk_5' has been renamed to/replaced by 'dotnetCorePackages.sdk_5_0'"; # Converted to throw 2024-10-17 - drgeo = throw "'drgeo' has been removed as it is outdated and unmaintained"; # Added 2023-10-15 drush = throw "drush as a standalone package has been removed because it's no longer supported as a standalone tool"; dtv-scan-tables_linuxtv = dtv-scan-tables; # Added 2023-03-03 dtv-scan-tables_tvheadend = dtv-scan-tables; # Added 2023-03-03 @@ -398,39 +293,7 @@ mapAliases { elasticsearch7Plugins = elasticsearchPlugins; # Electron - electron_9 = throw "electron_9 has been removed in favor of newer versions"; # added 2023-09-11 - electron_10 = throw "electron_10 has been removed in favor of newer versions"; # added 2024-03-20 - electron_10-bin = throw "electron_10-bin has been removed in favor of newer versions"; # added 2024-03-20 - electron_11 = throw "electron_11 has been removed in favor of newer versions"; # added 2024-03-20 - electron_11-bin = throw "electron_11-bin has been removed in favor of newer versions"; # added 2024-03-20 - electron_12 = throw "electron_12 has been removed in favor of newer versions"; # added 2024-03-20 - electron_12-bin = throw "electron_12-bin has been removed in favor of newer versions"; # added 2024-03-20 - electron_13 = throw "electron_13 has been removed in favor of newer versions"; # added 2024-03-20 - electron_13-bin = throw "electron_13-bin has been removed in favor of newer versions"; # added 2024-03-20 - electron_14 = throw "electron_14 has been removed in favor of newer versions"; # added 2024-03-20 - electron_14-bin = throw "electron_14-bin has been removed in favor of newer versions"; # added 2024-03-20 - electron_15 = throw "electron_15 has been removed in favor of newer versions"; # added 2024-03-20 - electron_15-bin = throw "electron_15-bin has been removed in favor of newer versions"; # added 2024-03-20 - electron_16 = throw "electron_16 has been removed in favor of newer versions"; # added 2024-03-20 - electron_16-bin = throw "electron_16-bin has been removed in favor of newer versions"; # added 2024-03-20 - electron_17 = throw "electron_17 has been removed in favor of newer versions"; # added 2024-03-20 - electron_17-bin = throw "electron_17-bin has been removed in favor of newer versions"; # added 2024-03-20 - electron_18 = throw "electron_18 has been removed in favor of newer versions"; # added 2024-03-20 - electron_18-bin = throw "electron_18-bin has been removed in favor of newer versions"; # added 2024-03-20 - electron_19 = throw "electron_19 has been removed in favor of newer versions"; # added 2024-03-20 - electron_19-bin = throw "electron_19-bin has been removed in favor of newer versions"; # added 2024-03-20 - electron_20 = throw "electron_20 has been removed in favor of newer versions"; # added 2024-03-20 - electron_20-bin = throw "electron_20-bin has been removed in favor of newer versions"; # added 2024-03-20 - electron_21 = throw "electron_21 has been removed in favor of newer versions"; # added 2024-03-20 - electron_21-bin = throw "electron_21-bin has been removed in favor of newer versions"; # added 2024-03-20 - electron_22 = throw "electron_22 has been removed in favor of newer versions"; # added 2024-03-20 - electron_22-bin = throw "electron_22-bin has been removed in favor of newer versions"; # added 2024-03-20 - electron_23 = throw "electron_23 has been removed in favor of newer versions"; # added 2024-03-20 - electron_23-bin = throw "electron_23-bin has been removed in favor of newer versions"; # added 2024-03-20 - electron_26 = throw "electron_26 has been removed in favor of newer versions"; # added 2024-03-20 - electron_26-bin = throw "electron_26-bin has been removed in favor of newer versions"; # added 2024-03-20 - elementary-planner = throw "elementary-planner has been renamed to planify"; # Added 2023-06-24 elixir_ls = elixir-ls; # Added 2023-03-20 @@ -441,13 +304,9 @@ mapAliases { emacs28WithPackages = throw "'emacs28WithPackages' has been renamed to/replaced by 'emacs28.pkgs.withPackages'"; # Converted to throw 2024-10-17 emacsMacport = emacs-macport; # Added 2023-08-10 emacsNativeComp = emacs28NativeComp; # Added 2022-06-08 - emacsPackagesNg = throw "'emacsPackagesNg' has been renamed to/replaced by 'emacs.pkgs'"; # Converted to throw 2023-09-10 - emacsPackagesNgFor = throw "'emacsPackagesNgFor' has been renamed to/replaced by 'emacsPackagesFor'"; # Converted to throw 2023-09-10 emacsWithPackages = throw "'emacsWithPackages' has been renamed to/replaced by 'emacs.pkgs.withPackages'"; # Converted to throw 2024-10-17 - empathy = throw "empathy was removed as it is unmaintained and no longer launches due to libsoup3 migration"; # Added 2023-01-20 EmptyEpsilon = empty-epsilon; # Added 2024-07-14 - enchant1 = throw "enchant1 has been removed from nixpkgs, as it was unmaintained"; # Added 2023-01-18 enyo-doom = enyo-launcher; # Added 2022-09-09 epoxy = throw "'epoxy' has been renamed to/replaced by 'libepoxy'"; # Converted to throw 2024-10-17 @@ -465,12 +324,7 @@ mapAliases { erlangR26_javac = throw "erlangR26_javac has been removed in favor of erlang_26_javac"; # added 2024-05-24 erlangR26_odbc_javac = throw "erlangR26_odbc_javac has been removed in favor of erlang_26_odbc_javac"; # added 2024-05-24 - etcd_3_3 = throw "etcd_3_3 has been removed because upstream no longer maintains it"; # Added 2023-09-29 - etcher = throw "'etcher' has been removed because it depended on an insecure version of Electron"; # Added 2024-03-14 - eterm = throw "eterm was removed because it is still insecure: https://github.com/mej/Eterm/issues/7"; # Added 2023-09-10 ethabi = throw "ethabi has been removed due to lack of maintainence upstream and no updates in Nixpkgs"; # Added 2024-07-16 - exa = throw "'exa' has been removed because it is unmaintained upstream. Consider using 'eza', a maintained fork"; # Added 2023-09-07 - exhibitor = throw "'exhibitor' has been removed because it is unmaintained upstream"; # Added 2023-06-20 eww-wayland = lib.warn "eww now can build for X11 and wayland simultaneously, so `eww-wayland` is deprecated, use the normal `eww` package instead." eww; ### F ### @@ -478,7 +332,6 @@ mapAliases { fahcontrol = throw "fahcontrol has been removed because the download is no longer available"; # added 2024-09-24 fahviewer = throw "fahviewer has been removed because the download is no longer available"; # added 2024-09-24 fam = throw "'fam' (aliased to 'gamin') has been removed as it is unmaintained upstream"; # Added 2024-04-19 - fancypp = throw "'fancypp' was removed because it and its dependants are unmaintained"; # Added 2024-02-14 faustStk = faustPhysicalModeling; # Added 2023-05-16 fastnlo = throw "'fastnlo' has been renamed to/replaced by 'fastnlo-toolkit'"; # Converted to throw 2024-10-17 fastnlo_toolkit = fastnlo-toolkit; # Added 2024-01-03 @@ -491,7 +344,6 @@ mapAliases { ffmpeg_5-full = throw "ffmpeg_5-full has been removed, please use another version"; # Added 2024-07-12 FIL-plugins = fil-plugins; # Added 2024-06-12 fileschanged = throw "'fileschanged' has been removed as it is unmaintained upstream"; # Added 2024-04-19 - findimagedupes = throw "findimagedupes has been removed because the perl bindings are no longer compatible"; # Added 2023-07-10 finger_bsd = bsd-finger; fingerd_bsd = bsd-fingerd; firefox-esr-115 = throw "The Firefox 115 ESR series has reached its end of life. Upgrade to `firefox-esr` or `firefox-esr-128` instead."; @@ -499,13 +351,9 @@ mapAliases { firefox-wayland = firefox; # Added 2022-11-15 firmwareLinuxNonfree = linux-firmware; # Added 2022-01-09 fishfight = jumpy; # Added 2022-08-03 - fitnesstrax = throw "fitnesstrax was removed from nixpkgs because it disappeared upstream and no longer compiles"; # added 2023-07-04 fit-trackee = fittrackee; # added 2024-09-03 flashrom-stable = flashprog; # Added 2024-03-01 flatbuffers_2_0 = flatbuffers; # Added 2022-05-12 - flintqs = throw "FlintQS has been removed due to lack of maintenance and security issues; use SageMath or FLINT instead"; # Added 2024-03-21 - flutter2 = throw "flutter2 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2023-07-03 - flutter37 = throw "flutter37 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2023-07-03 flutter313 = throw "flutter313 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2024-10-05 flutter316 = throw "flutter316 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2024-10-05 flutter322 = throw "flutter322 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2024-10-05 @@ -513,23 +361,14 @@ mapAliases { foldingathome = throw "'foldingathome' has been renamed to/replaced by 'fahclient'"; # Converted to throw 2024-10-17 forgejo-actions-runner = forgejo-runner; # Added 2024-04-04 - foundationdb51 = throw "foundationdb51 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06 - foundationdb52 = throw "foundationdb52 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06 - foundationdb60 = throw "foundationdb60 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06 - foundationdb61 = throw "foundationdb61 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06 - foxitreader = throw "foxitreader has been removed because it had vulnerabilities and was unmaintained"; # added 2023-02-20 fractal-next = fractal; # added 2023-11-25 framework-system-tools = framework-tool; # added 2023-12-09 francis = kdePackages.francis; # added 2024-07-13 - fritzprofiles = throw "fritzprofiles was removed from nixpkgs, because it was removed as dependency of home-assistant for which it was pacakged."; # added 2024-01-05 frostwire = throw "frostwire was removed, as it was broken due to reproducibility issues, use `frostwire-bin` package instead."; # added 2024-05-17 fuse2fs = if stdenv.hostPlatform.isLinux then e2fsprogs.fuse2fs else null; # Added 2022-03-27 preserve, reason: convenience, arch has a package named fuse2fs too. futuresql = libsForQt5.futuresql; # added 2023-11-11 fx_cast_bridge = fx-cast-bridge; # added 2023-07-26 - fcitx = throw "fcitx is deprecated, please use fcitx5 instead."; # Added 2023-03-13 - fcitx-engines = throw "fcitx-engines is deprecated, please use fcitx5 instead."; # Added 2023-03-13 - fcitx-configtool = throw "fcitx-configtool is deprecated, please use fcitx5 instead."; # Added 2023-03-13 fcitx5-chinese-addons = libsForQt5.fcitx5-chinese-addons; # Added 2024-03-01 fcitx5-configtool = libsForQt5.fcitx5-configtool; # Added 2024-03-01 @@ -542,10 +381,6 @@ mapAliases { g4music = gapless; # Added 2024-07-26 g4py = throw "'g4py' has been renamed to/replaced by 'python3Packages.geant4'"; # Converted to throw 2024-10-17 gamin = throw "'gamin' has been removed as it is unmaintained upstream"; # Added 2024-04-19 - garage_0_7 = throw "garage 0.7.x has been removed as it is EOL. Please upgrade to 0.8 series."; # Added 2023-10-10 - garage_0_7_3 = throw "garage 0.7.x has been removed as it is EOL. Please upgrade to 0.8 series."; # Added 2023-10-10 - garmin-plugin = throw "garmin-plugin has been removed, as it is unmaintained upstream and no longer works with modern browsers."; # Added 2024-01-12 - garmindev = throw "'garmindev' has been removed as the dependent software 'qlandkartegt' has been removed"; # Added 2023-04-17 gcc48 = throw "gcc48 has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-09-10 gcc49 = throw "gcc49 has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-09-11 gcc49Stdenv = throw "gcc49Stdenv has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-09-11 @@ -554,10 +389,7 @@ mapAliases { gcc10StdenvCompat = if stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "11" then gcc10Stdenv else stdenv; # Added 2024-03-21 gcj = gcj6; # Added 2024-09-13 gcj6 = throw "gcj6 has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-09-13 - gcl_2_6_13_pre = throw "'gcl_2_6_13_pre' has been removed in favor of 'gcl'"; # Added 2024-01-11 gcolor2 = throw "'gcolor2' has been removed due to lack of maintenance upstream and depending on gtk2. Consider using 'gcolor3' or 'eyedropper' instead"; # Added 2024-09-15 - geekbench4 = throw "'geekbench4' has been renamed to 'geekbench_4'"; # Added 2023-03-10 - geekbench5 = throw "'geekbench5' has been renamed to 'geekbench_5'"; # Added 2023-03-10 gfortran48 = throw "'gfortran48' has been removed from nixpkgs"; # Added 2024-09-10 gfortran49 = throw "'gfortran49' has been removed from nixpkgs"; # Added 2024-09-11 ghostwriter = libsForQt5.kdeGear.ghostwriter; # Added 2023-03-18 @@ -572,11 +404,8 @@ mapAliases { Consider migrating to forgejo or gitea. ''; # Added 2024-10-12 - go-dependency-manager = throw "'go-dependency-manager' is unmaintained and the go community now uses 'go.mod' mostly instead"; # Added 2023-10-04 - gotktrix = throw "'gotktrix' has been removed, as it was broken and unmaintained"; # Added 2023-12-06 git-backup = throw "git-backup has been removed, as it has been abandoned upstream. Consider using git-backup-go instead."; git-credential-1password = throw "'git-credential-1password' has been removed, as the upstream project is deleted."; # Added 2024-05-20 - git-subset = throw "'git-subset' has been removed in favor of 'git-filter-repo'"; # Added 2023-01-13 gitAndTools = self // { darcsToGit = darcs-to-git; @@ -588,15 +417,12 @@ mapAliases { topGit = top-git; }; # Added 2021-01-14 - gitter = throw "gitter has been removed since the client has been abandoned by upstream with the backend migration to Matrix"; # Added 2023-09-18 glew-egl = lib.warn "'glew-egl' is now provided by 'glew' directly" glew; # Added 2024-08-11 - glide = throw "'glide' has been removed as it is unmaintained, please use Go modules instead"; # Added 2023-12-26 glfw-wayland = glfw; # Added 2024-04-19 glfw-wayland-minecraft = glfw3-minecraft; # Added 2024-05-08 globalprotect-openconnect = throw "'globalprotect-openconnect' has been renamed to/replaced by 'gpauth' and 'gpclient'"; # Added 2024-09-21 glxinfo = mesa-demos; # Added 2024-07-04 gmailieer = throw "'gmailieer' has been renamed to/replaced by 'lieer'"; # Converted to throw 2024-10-17 - gmic-qt-krita = throw "gmic-qt-krita was removed as it's no longer supported upstream."; # Converted to throw 2023-02-02 gnatboot11 = gnat-bootstrap11; gnatboot12 = gnat-bootstrap12; gnatboot = gnat-bootstrap; @@ -620,9 +446,7 @@ mapAliases { gnome-hexgl = throw "'gnome-hexgl' has been removed due to lack of maintenance upstream"; # Added 2024-09-14 gnome-passwordsafe = gnome-secrets; # added 2022-01-30 gnome_mplayer = throw "'gnome_mplayer' has been removed due to lack of maintenance upstream. Consider using 'celluloid' instead"; # Added 2024-09-14 - gnome-mpv = throw "'gnome-mpv' has been renamed to/replaced by 'celluloid'"; # Converted to throw 2023-09-10 gnome-resources = resources; # added 2023-12-10 - gnome_user_docs = throw "'gnome_user_docs' has been renamed to/replaced by 'gnome-user-docs'"; # Converted to throw 2023-09-10 gnuradio-with-packages = gnuradio3_7.override { extraPackages = lib.attrVals [ @@ -639,123 +463,57 @@ mapAliases { gmock = throw "'gmock' has been renamed to/replaced by 'gtest'"; # Converted to throw 2024-10-17 gnome3 = throw "'gnome3' has been renamed to/replaced by 'gnome'"; # Converted to throw 2024-10-17 - gnuradio3_7 = throw "gnuradio3_7 has been removed because it required Python 2"; # Added 2022-01-16 gnuradio3_9 = throw "gnuradio3_9 has been removed because it is not compatible with the latest volk and it had no dependent packages which justified it's distribution"; # Added 2024-07-28 gnuradio3_9Minimal = throw "gnuradio3_9Minimal has been removed because it is not compatible with the latest volk and it had no dependent packages which justified it's distribution"; # Added 2024-07-28 gnuradio3_9Packages = throw "gnuradio3_9Minimal has been removed because it is not compatible with the latest volk and it had no dependent packages which justified it's distribution"; # Added 2024-07-28 - gnuradio-ais = throw "'gnuradio-ais' has been renamed to/replaced by 'gnuradio3_7.pkgs.ais'"; # Converted to throw 2023-09-10 - gnuradio-gsm = throw "'gnuradio-gsm' has been renamed to/replaced by 'gnuradio3_7.pkgs.gsm'"; # Converted to throw 2023-09-10 - gnuradio-limesdr = throw "'gnuradio-limesdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.limesdr'"; # Converted to throw 2023-09-10 - gnuradio-nacl = throw "'gnuradio-nacl' has been renamed to/replaced by 'gnuradio3_7.pkgs.nacl'"; # Converted to throw 2023-09-10 - gnuradio-osmosdr = throw "'gnuradio-osmosdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.osmosdr'"; # Converted to throw 2023-09-10 - gnuradio-rds = throw "'gnuradio-rds' has been renamed to/replaced by 'gnuradio3_7.pkgs.rds'"; # Converted to throw 2023-09-10 - go2nix = throw "'go2nix' has been removed as it was archived upstream"; # Added 2023-12-27 gobby5 = throw "'gobby5' has been renamed to/replaced by 'gobby'"; # Converted to throw 2024-10-17 #godot - godot = throw "godot has been renamed to godot3 to distinguish from version 4"; # Added 2023-07-16 - godot-export-templates = throw "godot-export-templates has been renamed to godot3-export-templates to distinguish from version 4"; # Added 2023-07-16 - godot-headless = throw "godot-headless has been renamed to godot3-headless to distinguish from version 4"; # Added 2023-07-16 - godot-server = throw "godot-server has been renamed to godot3-server to distinguish from version 4"; # Added 2023-07-16 - gdtoolkit = throw "gdtoolkit has been renamed to gdtoolkit_3 to distinguish from version 4"; # Added 2024-02-17 - google-chrome-beta = throw "'google-chrome-beta' has been removed due to the lack of maintenance in nixpkgs. Consider using 'google-chrome' instead."; # Added 2023-10-18 - google-chrome-dev = throw "'google-chrome-dev' has been removed due to the lack of maintenance in nixpkgs. Consider using 'google-chrome' instead."; # Added 2023-10-18 - google-gflags = throw "'google-gflags' has been renamed to/replaced by 'gflags'"; # Converted to throw 2023-09-10 go-thumbnailer = thud; # Added 2023-09-21 go-upower-notify = upower-notify; # Added 2024-07-21 - gocode = throw "'gocode' has been removed as the upstream project was archived. 'gopls' is suggested as replacement"; # Added 2023-12-26 - govendor = throw "'govendor' has been removed as it is no longer maintained upstream, please use Go modules instead"; # Added 2023-12-26 - gometer = throw "gometer has been removed from nixpkgs because goLance stopped offering Linux support"; # Added 2023-02-10 gpicview = throw "'gpicview' has been removed due to lack of maintenance upstream and depending on gtk2. Consider using 'loupe', 'gthumb' or 'image-roll' instead"; # Added 2024-09-15 gprbuild-boot = gnatPackages.gprbuild-boot; # Added 2024-02-25; - gpt4all-chat = throw "gpt4all-chat has been renamed to gpt4all"; # Added 2024-02-27 gqview = throw "'gqview' has been removed due to lack of maintenance upstream and depending on gtk2. Consider using 'gthumb' instead"; - graalvm11-ce = throw "graalvm11-ce has been removed because upstream dropped support to different JDK versions for each GraalVM release. Please use graalvm-ce instead"; # Added 2023-09-26 - graalvm17-ce = throw "graalvm17-ce has been removed because upstream dropped support to different JDK versions for each GraalVM release. Please use graalvm-ce instead"; # Added 2023-09-26 - graalvm19-ce = throw "graalvm19-ce has been removed because upstream dropped support to different JDK versions for each GraalVM release. Please use graalvm-ce instead"; # Added 2023-09-26 - grab-site = throw "grab-site has been removed because it's unmaintained and broken"; # Added 2023-11-12 - gradle_4 = throw "gradle_4 has been removed because it's no longer being updated"; # Added 2023-01-17 - gradle_5 = throw "gradle_5 has been removed because it's no longer being updated"; # Added 2023-01-17 grafana_reporter = grafana-reporter; # Added 2024-06-09 - gr-ais = throw "'gr-ais' has been renamed to/replaced by 'gnuradio3_7.pkgs.ais'"; # Converted to throw 2023-09-10 grapefruit = throw "'grapefruit' was removed due to being blocked by Roblox, rendering the package useless"; # Added 2024-08-23 - graylog = throw "graylog is now available in versions 3.3 up to 5.0. Please mind the upgrade path and choose the appropriate version. Direct upgrading from 3.3 to 4.3 or above is not supported"; # Added 2023-04-24 graylog-3_3 = throw "graylog 3.x is EOL. Please consider downgrading nixpkgs if you need an upgrade from 3.x to latest series."; # Added 2023-10-09 graylog-4_0 = throw "graylog 4.x is EOL. Please consider downgrading nixpkgs if you need an upgrade from 4.x to latest series."; # Added 2023-10-09 graylog-4_3 = throw "graylog 4.x is EOL. Please consider downgrading nixpkgs if you need an upgrade from 4.x to latest series."; # Added 2023-10-09 graylog-5_0 = throw "graylog 5.0.x is EOL. Please consider downgrading nixpkgs if you need an upgrade from 5.0.x to latest series."; # Added 2024-02-15 - gr-gsm = throw "'gr-gsm' has been renamed to/replaced by 'gnuradio3_7.pkgs.gsm'"; # Converted to throw 2023-09-10 gringo = clingo; # added 2022-11-27 - gr-limesdr = throw "'gr-limesdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.limesdr'"; # Converted to throw 2023-09-10 - gr-nacl = throw "'gr-nacl' has been renamed to/replaced by 'gnuradio3_7.pkgs.nacl'"; # Converted to throw 2023-09-10 - gr-osmosdr = throw "'gr-osmosdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.osmosdr'"; # Converted to throw 2023-09-10 - gr-rds = throw "'gr-rds' has been renamed to/replaced by 'gnuradio3_7.pkgs.rds'"; # Converted to throw 2023-09-10 grub2_full = grub2; # Added 2022-11-18 - grub = throw "grub1 was removed after not being maintained upstream for a decade. Please switch to another bootloader"; # Added 2023-04-11 gtetrinet = throw "'gtetrinet' has been removed because it depends on GNOME 2 libraries"; # Added 2024-06-27 gtkcord4 = dissent; # Added 2024-03-10 gtkperf = throw "'gtkperf' has been removed due to lack of maintenance upstream"; # Added 2024-09-14 - gtkpod = throw "'gtkpod' was removed due to one of its dependencies, 'anjuta' being unmaintained"; # Added 2024-01-16 guardian-agent = throw "'guardian-agent' has been removed, as it hasn't been maintained upstream in years and accumulated many vulnerabilities"; # Added 2024-06-09 guile-disarchive = disarchive; # Added 2023-10-27 - guile-lint = throw "'guile-lint' has been removed, please use 'guild lint' instead"; # Added 2023-10-16 ### H ### - haxe_3_2 = throw "'haxe_3_2' has been removed because it is old and no longer used by any packages in nixpkgs"; # Added 2023-03-15 - haxe_3_4 = throw "'haxe_3_4' has been removed because it is old and no longer used by any packages in nixpkgs"; # Added 2023-03-15 HentaiAtHome = hentai-at-home; # Added 2024-06-12 - hepmc = throw "'hepmc' has been renamed to/replaced by 'hepmc2'"; # Converted to throw 2023-09-10 - hikari = throw "hikari has been removed from nixpkgs, it was unmaintained and required wlroots_0_15 at the time of removal"; # Added 2024-03-28 - hip = throw "'hip' has been removed in favor of 'rocmPackages.clr'"; # Added 2023-10-08 - hipcc = throw "'hipcc' has been replaced with 'rocmPackages.hipcc'"; # Added 2023-10-08 - hipchat = throw "'hipchat' has been discontinued since 2019; upstream recommends Slack."; # Added 2023-12-02 - hipify = throw "'hipify' has been replaced with 'rocmPackages.hipify'"; # Added 2023-10-08 - hipcub = throw "'hipcub' has been replaced with 'rocmPackages.hipcub'"; # Added 2023-10-08 - hipsparse = throw "'hipsparse' has been replaced with 'rocmPackages.hipsparse'"; # Added 2023-10-08 - hipfort = throw "'hipfort' has been replaced with 'rocmPackages.hipfort'"; # Added 2023-10-08 - hipfft = throw "'hipfft' has been replaced with 'rocmPackages.hipfft'"; # Added 2023-10-08 - hipsolver = throw "'hipsolver' has been replaced with 'rocmPackages.hipsolver'"; # Added 2023-10-08 - hipblas = throw "'hipblas' has been replaced with 'rocmPackages.hipblas'"; # Added 2023-10-08 - hip-amd = throw "'hip-amd' has been removed in favor of 'rocmPackages.clr'"; # Added 2023-10-08 - hip-common = throw "'hip-common' has been replaced with 'rocmPackages.hip-common'"; # Added 2023-10-08 - hip-nvidia = throw "'hip-nvidia' has been removed in favor of 'rocmPackages.clr'"; # Added 2023-10-08 hll2390dw-cups = throw "The hll2390dw-cups package was dropped since it was unmaintained."; # Added 2024-06-21 hop-cli = throw "hop-cli has been removed as the service has been shut-down"; # Added 2024-08-13 ht-rust = throw "'ht-rust' has been renamed to/replaced by 'xh'"; # Converted to throw 2024-10-17 hydra_unstable = hydra; # Added 2024-08-22 hydron = throw "hydron has been removed as the project has been archived upstream since 2022 and is affected by a severe remote code execution vulnerability"; - hyper-haskell = throw "'hyper-haskell' has been removed. reason: has been broken for a long time and depends on an insecure electron version"; # Added 2024-03-14 - hyper-haskell-server-with-packages = throw "'hyper-haskell-server-with-packages' has been removed. reason: has been broken for a long time"; # Added 2024-03-14 ### I ### i3-gaps = i3; # Added 2023-01-03 ib-tws = throw "ib-tws has been removed from nixpkgs as it was broken"; # Added 2024-07-15 ib-controller = throw "ib-controller has been removed from nixpkgs as it was broken"; # Added 2024-07-15 - icedtea8_web = throw "'icedtea8_web' has been renamed to/replaced by 'adoptopenjdk-icedtea-web'"; # Converted to throw 2023-09-10 - icedtea_web = throw "'icedtea_web' has been renamed to/replaced by 'adoptopenjdk-icedtea-web'"; # Converted to throw 2023-09-10 - ignite = throw "'ignite' has been removed as the upstream project was archived, please use 'flintlock' instead"; # Added 2024-01-07 - imag = throw "'imag' has been removed, upstream gone"; # Added 2023-01-13 imagemagick7Big = throw "'imagemagick7Big' has been renamed to/replaced by 'imagemagickBig'"; # Converted to throw 2024-10-17 imagemagick7 = throw "'imagemagick7' has been renamed to/replaced by 'imagemagick'"; # Converted to throw 2024-10-17 imagemagick7_light = throw "'imagemagick7_light' has been renamed to/replaced by 'imagemagick_light'"; # Converted to throw 2024-10-17 - imlib = throw "imlib has been dropped due to the lack of maintenance from upstream since 2004"; # Added 2023-01-04 immersed-vr = lib.warn "'immersed-vr' has been renamed to 'immersed'" immersed; # Added 2024-08-11 - indiepass-desktop = throw "indiepass-desktop has been dropped because it does not work with recent Electron versions"; # Added 2024-03-14 - indigenous-desktop = throw "'indigenous-desktop' has been renamed to/replaced by 'indiepass-desktop'"; # Added 2023-11-08 input-utils = throw "The input-utils package was dropped since it was unmaintained."; # Added 2024-06-21 - instead-launcher = throw "instead-launcher has been removed, because it depended on qt4"; # Added 2023-07-26 - insync-v3 = throw "insync-v3 has been merged into the insync package; use insync instead"; #Added 2023-05-13 index-fm = libsForQt5.mauiPackages.index; # added 2022-05-17 - infiniband-diags = throw "'infiniband-diags' has been renamed to/replaced by 'rdma-core'"; # Converted to throw 2023-09-10 inotifyTools = inotify-tools; inter-ui = throw "'inter-ui' has been renamed to/replaced by 'inter'"; # Converted to throw 2024-10-17 - iouyap = throw "'iouyap' is deprecated and archived by upstream, use 'ubridge' instead"; # Added 2023-09-21 ipfs = kubo; # Added 2022-09-27 ipfs-migrator-all-fs-repo-migrations = kubo-migrator-all-fs-repo-migrations; # Added 2022-09-27 ipfs-migrator-unwrapped = kubo-migrator-unwrapped; # Added 2022-09-27 @@ -773,23 +531,15 @@ mapAliases { jami-client-qt = jami-client; # Added 2022-11-06 jami-client = jami; # Added 2023-02-10 jami-daemon = jami.daemon; # Added 2023-02-10 - jfbpdf = throw "'jfbpdf' has been removed, because it depends on an outdated and insecure version of mupdf"; # Added 2023-06-27 - jfbview = throw "'jfbview' has been removed, because it depends on an outdated and insecure version of mupdf"; # Added 2023-06-27 - jira-cli = throw "jira-cli was removed because it is no longer maintained"; # Added 2023-02-28 - join-desktop = throw "'join-desktop' has been removed because it is unmaintained upstream"; # Added 2023-10-04 jsawk = throw "'jsawk' has been removed because it is unmaintained upstream"; # Added 2028-08-07 # Julia julia_16-bin = throw "'julia_16-bin' has been removed from nixpkgs as it has reached end of life"; # Added 2024-10-08 - julia_18 = throw "'julia_18' has been removed from nixpkgs as it has reached end of life"; # Added 2024-01-11 - julia_18-bin = throw "'julia_18-bin' has been removed from nixpkgs as it has reached end of life"; # Added 2024-01-11 jush = throw "jush has been removed from nixpkgs because it is unmaintained"; # Added 2024-05-28 ### K ### - k3s_1_24 = throw "'k3s_1_24' has been removed from nixpkgs as it has reached end of life"; # Added 2024-03-14 - k3s_1_25 = throw "'k3s_1_25' has been removed from nixpkgs as it has reached end of life"; # Added 2024-03-14 k3s_1_26 = throw "'k3s_1_26' has been removed from nixpkgs as it has reached end of life"; # Added 2024-05-20 k3s_1_27 = throw "'k3s_1_27' has been removed from nixpkgs as it has reached end of life on 2024-06-28"; # Added 2024-06-01 # k3d was a 3d editing software k-3d - "k3d has been removed because it was broken and has seen no release since 2016" Added 2022-01-04 @@ -800,18 +550,14 @@ mapAliases { kargo = throw "kargo was removed as it is deprecated upstream and depends on the removed boto package"; # Added 2024-09-22 kdbplus = throw "'kdbplus' has been removed from nixpkgs"; # Added 2024-05-06 kdeconnect = throw "'kdeconnect' has been renamed to/replaced by 'plasma5Packages.kdeconnect-kde'"; # Converted to throw 2024-10-17 - keepassx = throw "KeePassX is no longer actively developed. Please consider KeePassXC as a maintained alternative."; # Added 2023-02-17 - keepassx2 = throw "KeePassX is no longer actively developed. Please consider KeePassXC as a maintained alternative."; # Added 2023-02-17 keepkey_agent = keepkey-agent; # added 2024-01-06 kerberos = throw "'kerberos' has been renamed to/replaced by 'krb5'"; # Converted to throw 2024-10-17 kexectools = throw "'kexectools' has been renamed to/replaced by 'kexec-tools'"; # Converted to throw 2024-10-17 keyfinger = throw "keyfinder has been removed as it was abandoned upstream and did not build; consider using mixxx or keyfinder-cli"; # Addd 2024-08-25 keysmith = throw "'keysmith' has been renamed to/replaced by 'libsForQt5.kdeGear.keysmith'"; # Converted to throw 2024-10-17 - kfctl = throw "kfctl is broken and has been archived by upstream"; # Added 2023-08-21 kgx = gnome-console; # Added 2022-02-19 kibana7 = throw "Kibana 7.x has been removed from nixpkgs as it depends on an end of life Node.js version and received no maintenance in time."; # Added 2023-30-10 kibana = kibana7; - kicad-with-packages3d = throw "'kicad-with-packages3d' has been renamed to/replaced by 'kicad'"; # Converted to throw 2023-09-10 kio-admin = libsForQt5.kdeGear.kio-admin; # Added 2023-03-18 kiwitalk = throw "KiwiTalk has been removed because the upstream has been deprecated at the request of Kakao and it's now obsolete."; # Added 2024-10-10 kodiGBM = kodi-gbm; @@ -822,7 +568,6 @@ mapAliases { krb5Full = krb5; krita-beta = throw "'krita-beta' has been renamed to/replaced by 'krita'"; # Converted to throw 2024-10-17 kubei = kubeclarity; # Added 2023-05-20 - kuma-prometheus-sd = throw "kuma-prometheus-sd has been deprecated upstream"; # Added 2023-07-02 ### L ### @@ -831,10 +576,8 @@ mapAliases { LASzip = laszip; # Added 2024-06-12 LASzip2 = laszip_2; # Added 2024-06-12 latinmodern-math = lmmath; - ldgallery = throw "'ldgallery' has been removed from nixpkgs. Use the Flake provided by ldgallery instead"; # Added 2023-07-26 ledger_agent = ledger-agent; # Added 2024-01-07 lfs = dysk; # Added 2023-07-03 - llvmPackages_rocm = throw "'llvmPackages_rocm' has been replaced with 'rocmPackages.llvm'"; # Added 2023-10-08 libAfterImage = throw "'libAfterImage' has been removed from nixpkgs, as it's no longer in development for a long time"; # Added 2024-06-01 libav = throw "libav has been removed as it was insecure and abandoned upstream for over half a decade; please use FFmpeg"; # Added 2024-08-25 libav_0_8 = libav; # Added 2024-08-25 @@ -846,33 +589,25 @@ mapAliases { libbencodetools = bencodetools; # Added 2022-07-30 libbpf_1 = libbpf; # Added 2022-12-06 libbson = mongoc; # Added 2024-03-11 - libcap_pam = throw "'libcap_pam' has been replaced with 'libcap'"; # Converted to throw 2023-09-10 - libcxxabi = throw "'libcxxabi' was merged into 'libcxx'"; # Converted to throw 2024-03-08 - libdwarf_20210528 = throw "'libdwarf_20210528' has been removed because it is not used in nixpkgs, move to libdwarf"; # Added 2024-03-23 libgme = game-music-emu; # Added 2022-07-20 libgnome-keyring3 = libgnome-keyring; # Added 2024-06-22 libgpgerror = throw "'libgpgerror' has been renamed to/replaced by 'libgpg-error'"; # Converted to throw 2024-10-17 libheimdal = heimdal; # Added 2022-11-18 - libintlOrEmpty = throw "'libintlOrEmpty' has been replaced by gettext"; # Converted to throw 2023-09-10 libixp_hg = libixp; libjpeg_drop = throw "'libjpeg_drop' has been renamed to/replaced by 'libjpeg_original'"; # Converted to throw 2024-10-17 liblastfm = throw "'liblastfm' has been renamed to/replaced by 'libsForQt5.liblastfm'"; # Converted to throw 2024-10-17 - libmongo-client = throw "'libmongo-client' has been removed, upstream gone"; # Added 2023-06-22 liboop = throw "liboop has been removed as it is unmaintained upstream."; # Added 2024-08-14 libpqxx_6 = throw "libpqxx_6 has been removed, please use libpqxx"; # Added 2024-10-02 libpulseaudio-vanilla = libpulseaudio; # Added 2022-04-20 libquotient = libsForQt5.libquotient; # Added 2023-11-11 librarian-puppet-go = throw "'librarian-puppet-go' has been removed, as it's upstream is unmaintained"; # Added 2024-06-10 - libraw_unstable = throw "'libraw_unstable' has been removed, please use libraw"; # Added 2023-01-30 librdf = throw "'librdf' has been renamed to/replaced by 'lrdf'"; # Converted to throw 2024-10-17 LibreArp = librearp; # Added 2024-06-12 LibreArp-lv2 = librearp-lv2; # Added 2024-06-12 libreddit = throw "'libreddit' has been removed because it is unmaintained upstream. Consider using 'redlib', a maintained fork"; # Added 2024-07-17 - libressl_3_5 = throw "'libressl_3_5' has reached end-of-life "; # Added 2023-05-07 librtlsdr = rtl-sdr; # Added 2023-02-18 librewolf-wayland = librewolf; # Added 2022-11-15 libseat = throw "'libseat' has been renamed to/replaced by 'seatd'"; # Converted to throw 2024-10-17 - libsigcxx12 = throw "'libsigcxx12' has been removed, please use newer versions"; # Added 2023-10-20 libsForQt515 = libsForQt5; # Added 2022-11-24 libtensorflow-bin = libtensorflow; # Added 2022-09-25 libtorrentRasterbar = throw "'libtorrentRasterbar' has been renamed to/replaced by 'libtorrent-rasterbar'"; # Converted to throw 2024-10-17 @@ -884,7 +619,6 @@ mapAliases { libwnck3 = libwnck; libyamlcpp = yaml-cpp; # Added 2023-01-29 libyamlcpp_0_3 = yaml-cpp_0_3; # Added 2023-01-29 - libxkbcommon_7 = throw "libxkbcommon_7 has been removed because it is impacted by security issues and not used in nixpkgs, move to 'libxkbcommon'"; # Added 2023-01-03 lightdm_gtk_greeter = lightdm-gtk-greeter; # Added 2022-08-01 lightstep-tracer-cpp = throw "lightstep-tracer-cpp is deprecated since 2022-08-29; the upstream recommends migration to opentelemetry projects."; linux_wallpaperengine = throw "linux_wallpaperengine was removed due to freeimage dependency"; # Added 2024-07-19 @@ -970,34 +704,13 @@ mapAliases { llvmPackages_git = (callPackages ../development/compilers/llvm { }).git; - lld_6 = throw "lld_6 has been removed from nixpkgs"; # Added 2024-01-08 - lld_7 = throw "lld_7 has been removed from nixpkgs"; # Added 2023-11-19 - lld_8 = throw "lld_8 has been removed from nixpkgs"; # Added 2024-01-24 lld_9 = throw "lld_9 has been removed from nixpkgs"; # Added 2024-04-08 - lld_10 = throw "lld_10 has been removed from nixpkgs"; # Added 2024-01-26 - lld_11 = throw "lld_11 has been removed from nixpkgs"; # Added 2024-01-24 - lldb_6 = throw "lldb_6 has been removed from nixpkgs"; # Added 2024-01-08 - lldb_7 = throw "lldb_7 has been removed from nixpkgs"; # Added 2023-11-19 - lldb_8 = throw "lldb_8 has been removed from nixpkgs"; # Added 2024-01-24 lldb_9 = throw "lldb_9 has been removed from nixpkgs"; # Added 2024-04-08 - lldb_10 = throw "lldb_10 has been removed from nixpkgs"; # Added 2024-01-26 - lldb_11 = throw "lldb_11 has been removed from nixpkgs"; # Added 2024-01-24 - llvmPackages_6 = throw "llvmPackages_6 has been removed from nixpkgs"; # Added 2024-01-09 - llvmPackages_7 = throw "llvmPackages_7 has been removed from nixpkgs"; # Added 2023-11-19 - llvmPackages_8 = throw "llvmPackages_8 has been removed from nixpkgs"; # Added 2024-01-24 llvmPackages_9 = throw "llvmPackages_9 has been removed from nixpkgs"; # Added 2024-04-08 - llvmPackages_10 = throw "llvmPackages_10 has been removed from nixpkgs"; # Added 2024-01-26 - llvmPackages_11 = throw "llvmPackages_11 has been removed from nixpkgs"; # Added 2024-01-24 - llvm_6 = throw "llvm_6 has been removed from nixpkgs"; # Added 2024-01-08 - llvm_7 = throw "llvm_7 has been removed from nixpkgs"; # Added 2023-11-19 - llvm_8 = throw "llvm_8 has been removed from nixpkgs"; # Added 2024-01-24 llvm_9 = throw "llvm_9 has been removed from nixpkgs"; # Added 2024-04-08 - llvm_10 = throw "llvm_10 has been removed from nixpkgs"; # Added 2024-01-26 - llvm_11 = throw "llvm_11 has been removed from nixpkgs"; # Added 2024-01-24 lobster-two = throw "'lobster-two' has been renamed to/replaced by 'google-fonts'"; # Converted to throw 2024-10-17 lsh = throw "lsh has been removed as it had no maintainer in Nixpkgs and hasn't seen an upstream release in over a decade"; # Added 2024-08-14 - luxcorerender = throw "'luxcorerender' has been removed as it's unmaintained and broken in nixpkgs since a while ago"; # Added 2023-06-07 lv_img_conv = throw "'lv_img_conv' has been removed from nixpkgs as it is broken"; # Added 2024-06-18 lxd = lib.warn "lxd has been renamed to lxd-lts" lxd-lts; # Added 2024-04-01 lxd-unwrapped = lib.warn "lxd-unwrapped has been renamed to lxd-unwrapped-lts" lxd-unwrapped-lts; # Added 2024-04-01 @@ -1009,12 +722,8 @@ mapAliases { MACS2 = macs2; # Added 2023-06-12 mailctl = throw "mailctl has been renamed to oama"; # Added 2024-08-19 mailman-rss = throw "The mailman-rss package was dropped since it was unmaintained."; # Added 2024-06-21 - mariadb_104 = throw "mariadb_104 has been removed from nixpkgs, please switch to another version like mariadb_106"; # Added 2023-09-11 - mariadb_1010 = throw "mariadb_1010 has been removed from nixpkgs, please switch to another version like mariadb_1011"; # Added 2023-11-14 mariadb_110 = throw "mariadb_110 has been removed from nixpkgs, please switch to another version like mariadb_114"; # Added 2024-08-15 mariadb-client = hiPrio mariadb.client; #added 2019.07.28 - markdown-pp = throw "markdown-pp was removed from nixpkgs, because the upstream archived it on 2021-09-02"; # Added 2023-07-22 - markmind = throw "markmind has been removed from nixpkgs, because it depended on an old version of electron"; # Added 2023-09-12 maligned = throw "maligned was deprecated upstream in favor of x/tools/go/analysis/passes/fieldalignment"; # Added 20204-08-24 marwaita-manjaro = lib.warn "marwaita-manjaro has been renamed to marwaita-teal" marwaita-teal; # Added 2024-07-08 marwaita-peppermint = lib.warn "marwaita-peppermint has been renamed to marwaita-red" marwaita-red; # Added 2024-07-01 @@ -1024,35 +733,23 @@ mapAliases { mathematica10 = throw "mathematica10 has been removed as it was obsolete, broken, and depended on OpenCV 2"; # Added 2024-08-20 mathematica11 = throw "mathematica11 has been removed as it was obsolete, broken, and depended on OpenCV 2"; # Added 2024-08-20 matrique = throw "'matrique' has been renamed to/replaced by 'spectral'"; # Converted to throw 2024-10-17 - matrixcli = throw "'matrixcli' has been removed due to being unmaintained and broken functionality. Recommend 'matrix-commander' as an alternative"; # Added 2024-03-09 - matrix-recorder = throw "matrix-recorder has been removed due to being unmaintained"; # Added 2023-05-21 matrix-sliding-sync = throw "matrix-sliding-sync has been removed as matrix-synapse 114.0 and later covers its functionality"; # Added 2024-10-20 maui-nota = libsForQt5.mauiPackages.nota; # added 2022-05-17 maui-shell = throw "maui-shell has been removed from nixpkgs, it was broken"; # Added 2024-07-15 - mbox = throw "'mbox' has been removed, as it was broken and unmaintained"; # Added 2023-12-21 mcomix3 = mcomix; # Added 2022-06-05 mdt = md-tui; # Added 2024-09-03 meme = throw "'meme' has been renamed to/replaced by 'meme-image-generator'"; # Converted to throw 2024-10-17 - mess = throw "'mess' has been renamed to/replaced by 'mame'"; # Converted to throw 2023-09-10 mhwaveedit = throw "'mkwaveedit' has been removed due to lack of maintenance upstream. Consider using 'audacity' or 'tenacity' instead"; microcodeAmd = microcode-amd; # Added 2024-09-08 microcodeIntel = microcode-intel; # Added 2024-09-08 microsoft_gsl = microsoft-gsl; # Added 2023-05-26 MIDIVisualizer = midivisualizer; # Added 2024-06-12 - migraphx = throw "'migraphx' has been replaced with 'rocmPackages.migraphx'"; # Added 2023-10-08 mikutter = throw "'mikutter' has been removed because the package was broken and had no maintainers"; # Added 2024-10-01 - minishift = throw "'minishift' has been removed as it was discontinued upstream. Use 'crc' to setup a microshift cluster instead"; # Added 2023-12-30 - miopen = throw "'miopen' has been replaced with 'rocmPackages.miopen'"; # Added 2023-10-08 - miopengemm = throw "'miopengemm' has been replaced with 'rocmPackages_5.miopengemm'"; # Added 2023-10-08 - miopen-hip = throw "'miopen-hip' has been replaced with 'rocmPackages.miopen-hip'"; # Added 2023-10-08 - miopen-opencl = throw "'miopen-opencl' has been replaced with 'rocmPackages.miopen-opencl'"; # Added 2023-10-08 mime-types = mailcap; # Added 2022-01-21 minetest-touch = minetestclient; # Added 2024-08-12 minetestclient_5 = minetestclient; # Added 2023-12-11 minetestserver_5 = minetestserver; # Added 2023-12-11 minizip2 = pkgs.minizip-ng; # Added 2022-12-28 - mirage-im = throw "'mirage-im' has been removed, as it was broken and unmaintained"; # Added 2023-11-26 - mlton20210107 = throw "'mlton20210107' has been renamed to 'mlton20210117', correcting the version number"; # Added 2024-03-31 mod_dnssd = throw "'mod_dnssd' has been renamed to/replaced by 'apacheHttpdPackages.mod_dnssd'"; # Converted to throw 2024-10-17 mod_fastcgi = throw "'mod_fastcgi' has been renamed to/replaced by 'apacheHttpdPackages.mod_fastcgi'"; # Converted to throw 2024-10-17 mod_python = throw "'mod_python' has been renamed to/replaced by 'apacheHttpdPackages.mod_python'"; # Converted to throw 2024-10-17 @@ -1066,24 +763,16 @@ mapAliases { mod_pkcs12 = throw "'mod_pkcs12' has been renamed to/replaced by 'apacheHttpdPackages.mod_pkcs12'"; # Converted to throw 2024-10-17 mod_timestamp = throw "'mod_timestamp' has been renamed to/replaced by 'apacheHttpdPackages.mod_timestamp'"; # Converted to throw 2024-10-17 monero = throw "'monero' has been renamed to/replaced by 'monero-cli'"; # Converted to throw 2024-10-17 - moneyplex = throw "'moneyplex' has been removed, as it was broken and unmaintained"; # Added 2024-02-28 - mongodb-4_0 = throw "mongodb-4_0 has been removed, it's end of life since April 2022"; # Added 2023-01-05 - mongodb-4_2 = throw "mongodb-4_2 has been removed, it's end of life since April 2023"; # Added 2023-06-06 mongodb-4_4 = throw "mongodb-4_4 has been removed, it's end of life since April 2024"; # Added 2024-04-11 mongodb-5_0 = throw "mongodb-5_0 has been removed, it's end of life since October 2024"; # Added 2024-10-01 - moonlander = throw "'moonlander' has been removed due to it being broken and unmaintained"; # Added 2023-11-26 moz-phab = mozphab; # Added 2022-08-09 - mozart-binary = throw "'mozart-binary' has been renamed to/replaced by 'mozart2-binary'"; # Converted to throw 2023-09-10 - mozart = throw "'mozart' has been renamed to/replaced by 'mozart2-binary'"; # Converted to throw 2023-09-10 mp3info = throw "'mp3info' has been removed due to lack of maintenance upstream. Consider using 'eartag' or 'tagger' instead"; # Added 2024-09-14 mpc_cli = mpc-cli; # moved from top-level 2022-01-24 mpd_clientlib = throw "'mpd_clientlib' has been renamed to/replaced by 'libmpdclient'"; # Converted to throw 2024-10-17 mpdevil = plattenalbum; # Added 2024-05-22 mpg321 = throw "'mpg321' has been removed due to it being unmaintained by upstream. Consider using mpg123 instead."; # Added 2024-05-10 msp430NewlibCross = msp430Newlib; # Added 2024-09-06 - mumble_git = throw "'mumble_git' has been renamed to/replaced by 'pkgs.mumble'"; # Converted to throw 2023-09-10 mupdf_1_17 = throw "'mupdf_1_17' has been removed due to being outdated and insecure. Consider using 'mupdf' instead."; # Added 2024-08-22 - murmur_git = throw "'murmur_git' has been renamed to/replaced by 'pkgs.murmur'"; # Converted to throw 2023-09-10 mutt-with-sidebar = mutt; # Added 2022-09-17 mysql-client = hiPrio mariadb.client; mysql = throw "'mysql' has been renamed to/replaced by 'mariadb'"; # Converted to throw 2024-10-17 @@ -1093,11 +782,6 @@ mapAliases { ncdu_2 = ncdu; # Added 2022-07-22 neocities-cli = neocities; # Added 2024-07-31 - nestopia = throw "nestopia was forked; use nestopia-ue instead"; # Added 2024-01-24 - net_snmp = throw "'net_snmp' has been renamed to/replaced by 'net-snmp'"; # Converted to throw 2023-09-10 - netbox_3_3 = throw "netbox 3.3 series has been removed as it was EOL"; # Added 2023-09-02 - netbox_3_5 = throw "netbox 3.5 series has been removed as it was EOL"; # Added 2024-01-22 - netease-music-tui = throw "netease-music-tui has been removed due to unmaintained by upstream and broken functionality"; # Added 2024-03-03 nextcloud27 = throw '' Nextcloud v27 has been removed from `nixpkgs` as the support for is dropped by upstream in 2024-06. Please upgrade to at least Nextcloud v28 by declaring @@ -1112,7 +796,6 @@ mapAliases { nextcloud27Packages = throw "Nextcloud27 is EOL!"; # Added 2024-06-25 nagiosPluginsOfficial = monitoring-plugins; neochat = libsForQt5.kdeGear.neochat; # added 2022-05-10 - neoload = throw "'neoload' has been removed as it is broken and unmaintained"; # Added 2024-03-02 newlibCross = newlib; # Added 2024-09-06 newlib-nanoCross = newlib-nano; # Added 2024-09-06 nitrokey-udev-rules = libnitrokey; # Added 2023-03-25 @@ -1123,36 +806,25 @@ mapAliases { "nix-repl has been removed because it's not maintained anymore, " + "use `nix repl` instead. Also see https://github.com/NixOS/nixpkgs/pull/44903" ); - nix-review = throw "'nix-review' has been renamed to/replaced by 'nixpkgs-review'"; # Converted to throw 2023-09-10 nix-simple-deploy = throw "'nix-simple-deploy' has been removed as it is broken and unmaintained"; # Added 2024-08-17 - nix-template-rpm = throw "'nix-template-rpm' has been removed as it is broken and unmaintained"; # Added 2023-11-20 nix-universal-prefetch = throw "The nix-universal-prefetch package was dropped since it was unmaintained."; # Added 2024-06-21 nixFlakes = throw "'nixFlakes' has been renamed to/replaced by 'nixVersions.stable'"; # Converted to throw 2024-10-17 nixStable = nixVersions.stable; # Added 2022-01-24 nixUnstable = throw "nixUnstable has been removed. For bleeding edge (Nix master, roughly weekly updated) use nixVersions.git, otherwise use nixVersions.latest."; # Converted to throw 2024-04-22 nix_2_3 = nixVersions.nix_2_3; nixfmt = lib.warn "nixfmt was renamed to nixfmt-classic. The nixfmt attribute may be used for the new RFC 166-style formatter in the future, which is currently available as nixfmt-rfc-style" nixfmt-classic; # Added 2024-03-31 - nixops = throw "'nixops' has been removed. Please use 'nixops_unstable_minimal' for the time being. E.g. nixops_unstable_minimal.withPlugins (ps: [ ps.nixops-gce ])"; # Added 2023-10-26 nixopsUnstable = nixops_unstable; # Added 2022-03-03 # When the nixops_unstable alias is removed, nixops_unstable_minimal can be renamed to nixops_unstable. - nixops_unstable = throw "nixops_unstable has been replaced. Please use for example 'nixops_unstable_minimal.withPlugins (ps: [ ps.nixops-gce ps.nixops-encrypted-links ])' instead"; # Added 2024-02-28 nixosTest = testers.nixosTest; # Added 2022-05-05 nmap-unfree = throw "'nmap-unfree' has been renamed to/replaced by 'nmap'"; # Converted to throw 2024-10-17 - nodejs_14 = throw "nodejs_14 has been removed as it is EOL."; # Added 2023-10-30 - nodejs-slim_14 = throw "nodejs-slim_14 has been removed as it is EOL."; # Added 2023-10-30 nodejs-14_x = nodejs_14; # Added 2022-11-06 nodejs-slim-14_x = nodejs-slim_14; # Added 2022-11-06 - nodejs_16 = throw "nodejs_16 has been removed as it is EOL."; # Added 2023-10-30 nodejs-16_x = nodejs_16; # Added 2022-11-06 - nodejs-16_x-openssl_1_1 = throw "nodejs-16_x-openssl_1_1 has been removed."; # Added 2023-02-04 - nodejs-slim_16 = throw "nodejs-slim_16 has been removed as it is EOL."; # Added 2022-11-06 nodejs-slim-16_x = nodejs-slim_16; # Added 2022-11-06 nodejs-18_x = nodejs_18; # Added 2022-11-06 nodejs-slim-18_x = nodejs-slim_18; # Added 2022-11-06 - nomad_1_2 = throw "nomad_1_2 has been removed because it's outdated. Use a a newer version instead"; # Added 2023-09-02 - nomad_1_3 = throw "nomad_1_3 has been removed because it's outdated. Use a a newer version instead"; # Added 2023-09-02 noto-fonts-cjk = throw "'noto-fonts-cjk' has been renamed to/replaced by 'noto-fonts-cjk-sans'"; # Converted to throw 2024-10-17 noto-fonts-emoji = noto-fonts-color-emoji; # Added 2023-09-09 noto-fonts-extra = noto-fonts; # Added 2023-04-08 @@ -1171,33 +843,19 @@ mapAliases { o = orbiton; # Added 2023-04-09 oathToolkit = oath-toolkit; # Added 2022-04-04 oauth2_proxy = throw "'oauth2_proxy' has been renamed to/replaced by 'oauth2-proxy'"; # Converted to throw 2024-10-17 - obinskit = throw "'obinskit' has been removed from nixpkgs, because the package was unmaintained and depended on an insecure version of electron"; # Added 2024-03-20 - octant = throw "octant has been dropped due to being archived and vulnerable"; # Added 2023-09-29 - octant-desktop = throw "octant-desktop has been dropped due to being archived and vulnerable"; # Added 2023-09-29 - octorpki = throw "octorpki has been removed, upstream says to use rpki-client instead"; # Added 2024-03-19 - ogre1_9 = throw "ogre1_9 has been removed, use ogre instead"; # Added 2023-03-22 - ogre1_10 = throw "ogre1_10 has been removed, use ogre instead"; # Added 2023-07-20 onevpl-intel-gpu = lib.warn "onevpl-intel-gpu has been renamed to vpl-gpu-rt" vpl-gpu-rt; # Added 2024-06-04 - opa = throw "opa has been removed from nixpkgs as upstream has abandoned the project"; # Added 2023-03-21 - opam_1_2 = throw "'opam_1_2' has been renamed to/replaced by 'opam'"; # Added 2023-03-08 opencv2 = throw "opencv2 has been removed as it is obsolete and was not used by any other package; please migrate to OpenCV 4"; # Added 2024-08-20 opencv3 = throw "opencv3 has been removed as it is obsolete and was not used by any other package; please migrate to OpenCV 4"; # Added 2024-08-20 openafs_1_8 = openafs; # Added 2022-08-22 - openapi-generator-cli-unstable = throw "openapi-generator-cli-unstable was removed as it was not being updated; consider openapi-generator-cli instead"; # Added 2024-01-02 - openbangla-keyboard = throw "openbangla-keyboard has been replaced by ibus-engines.openbangla-keyboard and fcitx5-openbangla-keyboard"; # added 2023-10-10 - opencascade = throw "'opencascade' has been removed as it is unmaintained; consider opencascade-occt instead'"; # Added 2023-09-18 opencl-info = throw "opencl-info has been removed, as the upstream is unmaintained; consider using 'clinfo' instead"; # Added 2024-06-12 opencomposite-helper = throw "opencomposite-helper has been removed from nixpkgs as it causes issues with some applications. See https://wiki.nixos.org/wiki/VR#OpenComposite for the recommended setup"; # Added 2024-09-07 openconnect_head = openconnect_unstable; # Added 2022-03-29 openconnect_gnutls = openconnect; # Added 2022-03-29 - openconnect_unstable = throw "openconnect_unstable was removed from nixpkgs as it was not being updated"; # Added 2023-06-01 opendylan = throw "opendylan has been removed from nixpkgs as it was broken"; # Added 2024-07-15 opendylan_bin = throw "opendylan_bin has been removed from nixpkgs as it was broken"; # Added 2024-07-15 openelec-dvb-firmware = throw "'openelec-dvb-firmware' has been renamed to/replaced by 'libreelec-dvb-firmware'"; # Converted to throw 2024-10-17 openethereum = throw "openethereum development has ceased by upstream. Use alternate clients such as go-ethereum, erigon, or nethermind"; # Added 2024-05-13 - openimagedenoise_1_2_x = throw "'openimagedenoise_1_2_x' has been renamed to/replaced by 'openimagedenoise'"; # Added 2023-06-07 openimageio2 = openimageio; # Added 2023-01-05 - openimageio_1 = throw "'openimageio_1' has been removed, please update to 'openimageio' 2"; # Added 2023-06-14 openisns = throw "'openisns' has been renamed to/replaced by 'open-isns'"; # Converted to throw 2024-10-17 openjdk19 = throw "OpenJDK 19 was removed as it has reached its end of life"; # Added 2024-08-01 openjdk19_headless = openjdk19; # Added 2024-08-01 @@ -1215,20 +873,15 @@ mapAliases { openlp = throw "openlp has been removed for now because the outdated version depended on insecure and removed packages and it needs help to upgrade and maintain it; see https://github.com/NixOS/nixpkgs/pull/314882"; # Added 2024-07-29 openmpt123 = throw "'openmpt123' has been renamed to/replaced by 'libopenmpt'"; # Converted to throw 2024-10-17 openssl_3_0 = openssl_3; # Added 2022-06-27 - openvpn_24 = throw "openvpn_24 has been removed, because it went EOL. 2.5.x or newer is still available"; # Added 2023-01-23 - optparse-bash = throw "'optparse-bash' (GitHub: nk412/optparse) has been removed. Use 'argparse' instead"; # Added 2024-01-12 orchis = throw "'orchis' has been renamed to/replaced by 'orchis-theme'"; # Converted to throw 2024-10-17 - oni2 = throw "oni2 was removed, because it is unmaintained and was abandoned years ago."; #Added 2024-01-15 onlyoffice-bin = onlyoffice-desktopeditors; # Added 2024-09-20 onlyoffice-bin_latest = onlyoffice-bin; # Added 2024-07-03 onlyoffice-bin_7_2 = throw "onlyoffice-bin_7_2 has been removed. Please use the latest version available under onlyoffice-bin"; # Added 2024-07-03 onlyoffice-bin_7_5 = throw "onlyoffice-bin_7_5 has been removed. Please use the latest version available under onlyoffice-bin"; # Added 2024-07-03 openvswitch-lts = throw "openvswitch-lts has been removed. Please use the latest version available under openvswitch"; # Added 2024-08-24 - oroborus = throw "oroborus was removed, because it was abandoned years ago."; #Added 2023-09-10 OSCAR = oscar; # Added 2024-06-12 osxfuse = throw "'osxfuse' has been renamed to/replaced by 'macfuse-stubs'"; # Converted to throw 2024-10-17 ovn-lts = throw "ovn-lts has been removed. Please use the latest version available under ovn"; # Added 2024-08-24 - oxen = throw "'oxen' has been removed, because it was broken, outdated and unmaintained"; # Added 2023-12-09 oysttyer = throw "oysttyer has been removed; it is no longer maintained because of Twitter disabling free API access"; # Added 2024-09-23 ### P ### @@ -1237,18 +890,12 @@ mapAliases { p2pvc = throw "p2pvc has been removed as it is unmaintained upstream and depends on OpenCV 2"; # Added 2024-08-20 packet-cli = throw "'packet-cli' has been renamed to/replaced by 'metal-cli'"; # Converted to throw 2024-10-17 paperoni = throw "paperoni has been removed, because it is unmaintained"; # Added 2024-07-14 - packet = throw "packet has been removed as it is no longer working and unmaintained"; # Added 2024-03-29 - palemoon = throw "palemoon has been dropped due to python2 being EOL and marked insecure. Use 'palemoon-bin' instead"; # Added 2023-05-18 - pam_usb = throw "'pam_usb' has been removed: abandoned by upstream since 2015."; # Added 2023-10-30 - paper-note = throw "paper-note has been removed: abandoned by upstream"; # Added 2023-05-03 paperless = throw "'paperless' has been renamed to/replaced by 'paperless-ngx'"; # Converted to throw 2024-10-17 paperless-ng = paperless-ngx; # Added 2022-04-11 partition-manager = libsForQt5.partitionmanager; # Added 2024-01-08 - pash = throw "'pash' has been removed: abandoned by upstream. Use 'powershell' instead"; # Added 2023-09-16 patchelfStable = patchelf; # Added 2024-01-25 pcsctools = pcsc-tools; # Added 2023-12-07 pcsxr = throw "pcsxr was removed as it has been abandoned for over a decade; please use DuckStation, Mednafen, or the RetroArch PCSX ReARMed core"; # Added 2024-08-20 - pdf2xml = throw "'pdf2xml' was removed: abandoned for years."; # Added 2023-10-22 peach = asouldocs; # Added 2022-08-28 percona-server_innovation = lib.warn "Percona upstream has decided to skip all Innovation releases of MySQL and only release LTS versions." percona-server; # Added 2024-10-13 percona-server_lts = percona-server; # Added 2024-10-13 @@ -1260,26 +907,18 @@ mapAliases { petrinizer = throw "'petrinizer' has been removed, as it was broken and unmaintained"; # added 2024-05-09 pgadmin = pgadmin4; pharo-spur64 = pharo; # Added 2022-08-03 - phodav_2_0 = throw "'phodav_2_0' has been renamed to/replaced by 'phodav'"; # Added 2023-02-21 - photoflow = throw "photoflow was removed because it was broken and unmaintained by upstream"; # Added 2023-03-10 - picom-allusive = throw "picom-allusive was renamed to compfy and is being abandoned by upstream"; # Added 2024-02-13 - picom-jonaburg = throw "picom-jonaburg was removed because it is unmaintained by upstream"; # Added 2024-02-13 picom-next = picom; # Added 2024-02-13 pict-rs_0_3 = throw "pict-rs_0_3 has been removed, as it was an outdated version and no longer compiled"; # Added 2024-08-20 # Obsolete PHP version aliases - php80 = throw "php80 has been dropped due to the lack of maintenance from upstream for future releases"; # Added 2023-06-21 php80Packages = php80; # Added 2023-06-21 php80Extensions = php80; # Added 2023-06-21 pipewire_0_2 = throw "pipewire_0_2 has been removed as it is outdated and no longer used"; # Added 2024-07-28 pipewire-media-session = throw "pipewire-media-session is no longer maintained and has been removed. Please use Wireplumber instead."; - pkgconfig = throw "'pkgconfig' has been renamed to/replaced by 'pkg-config'"; # Converted to throw 2023-09-10 playwright = lib.warn "'playwright' will reference playwright-driver in 25.05. Reference 'python3Packages.playwright' for the python test launcher" python3Packages.toPythonApplication python3Packages.playwright; # Added 2024-10-04 pleroma-otp = throw "'pleroma-otp' has been renamed to/replaced by 'pleroma'"; # Converted to throw 2024-10-17 pltScheme = racket; # just to be sure - pmdk = throw "'pmdk' is discontinued, no further support or maintenance is planned by upstream"; # Added 2023-02-06 - pomotroid = throw "pomotroid has been removed from nixpkgs, because it depended on an insecure version of electron"; # Added 2023-09-12 poretools = throw "poretools has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2024-06-03 powerdns = pdns; # Added 2022-03-28 @@ -1311,50 +950,31 @@ mapAliases { tty = pinentry-tty; flavors = [ "curses" "emacs" "gnome3" "gtk2" "qt" "tty" ]; }; # added 2024-01-15 - pinentry_curses = throw "'pinentry_curses' has been renamed to/replaced by 'pinentry-curses'"; # Converted to throw 2023-09-10 - pinentry_emacs = throw "'pinentry_emacs' has been renamed to/replaced by 'pinentry-emacs'"; # Converted to throw 2023-09-10 - pinentry_gnome = throw "'pinentry_gnome' has been renamed to/replaced by 'pinentry-gnome'"; # Converted to throw 2023-09-10 - pinentry_gtk2 = throw "'pinentry_gtk2' has been renamed to/replaced by 'pinentry-gtk2'"; # Converted to throw 2023-09-10 - pinentry_qt = throw "'pinentry_qt' has been renamed to/replaced by 'pinentry-qt'"; # Converted to throw 2023-09-10 pinentry_qt5 = throw "'pinentry_qt5' has been renamed to/replaced by 'pinentry-qt'"; # Converted to throw 2024-10-17 pivx = throw "pivx has been removed as it was marked as broken"; # Added 2024-07-15 pivxd = throw "pivxd has been removed as it was marked as broken"; # Added 2024-07-15 PlistCpp = plistcpp; # Added 2024-01-05 pocket-updater-utility = pupdate; # Added 2024-01-25 - poetry2nix = throw "poetry2nix is now maintained out-of-tree. Please use https://github.com/nix-community/poetry2nix/"; # Added 2023-10-26 - prayer = throw "prayer has been removed from nixpkgs"; # Added 2023-11-09 prismlauncher-qt5 = throw "'prismlauncher-qt5' has been removed from nixpkgs. Please use 'prismlauncher'"; # Added 2024-04-20 prismlauncher-qt5-unwrapped = throw "'prismlauncher-qt5-unwrapped' has been removed from nixpkgs. Please use 'prismlauncher-unwrapped'"; # Added 2024-04-20 - privacyidea = throw "privacyidea has been removed from nixpkgs"; # Added 2023-10-31 probe-rs = probe-rs-tools; # Added 2024-05-23 - probe-rs-cli = throw "probe-rs-cli is now part of the probe-rs package"; # Added 2023-07-03 probe-run = throw "probe-run is deprecated upstream. Use probe-rs instead."; # Added 2024-05-23 - processing3 = throw "'processing3' has been renamed to/replaced by 'processing'"; # Converted to throw 2023-09-10 prometheus-dmarc-exporter = dmarc-metrics-exporter; # added 2022-05-31 prometheus-dovecot-exporter = dovecot_exporter; # Added 2024-06-10 prometheus-openldap-exporter = throw "'prometheus-openldap-exporter' has been removed from nixpkgs, as it was unmaintained"; # Added 2024-09-01 - prometheus-openvpn-exporter = throw "'prometheus-openvpn-exporter' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-12-23 prometheus-minio-exporter = throw "'prometheus-minio-exporter' has been removed from nixpkgs, use Minio's built-in Prometheus integration instead"; # Added 2024-06-10 - prometheus-speedtest-exporter = throw "prometheus-speedtest-exporter was removed as unmaintained"; # Added 2023-07-31 - protobuf3_17 = throw "protobuf3_17 does not receive updates anymore and has been removed"; # Added 2023-05-21 - protobuf3_19 = throw "protobuf3_19 does not receive updates anymore and has been removed"; # Added 2023-10-01 protobuf3_24 = protobuf_24; protobuf3_23 = protobuf_23; protobuf3_21 = protobuf_21; protonup = protonup-ng; # Added 2022-11-06 protonvpn-gui_legacy = throw "protonvpn-gui_legacy source code was removed from upstream. Use protonvpn-gui instead."; # Added 2024-10-12 proxmark3-rrg = proxmark3; # Added 2023-07-25 - proxmark3-unstable = throw "removed in favor of rfidresearchgroup fork"; # Added 2023-07-25 psensor = throw "'psensor' has been removed due to lack of maintenance upstream. Consider using 'mission-center', 'resources' or 'monitorets' instead"; # Added 2024-09-14 - pyls-black = throw "pyls-black has been removed from nixpkgs. Use python-lsp-black instead."; # Added 2023-01-09 - pyls-mypy = throw "pyls-mypy has been removed from nixpkgs. Use pylsp-mypy instead."; # Added 2023-01-09 - pygmentex = throw "'pygmentex' has been renamed to/replaced by 'texlive.bin.pygmentex'"; # Converted to throw 2023-09-10 pyo3-pack = maturin; pypi2nix = throw "pypi2nix has been removed due to being unmaintained"; pypolicyd-spf = spf-engine; # Added 2022-10-09 python = python2; # Added 2022-01-11 - python-language-server = throw "python-language-server has been removed as it is no longer maintained. Use e.g. python-lsp-server instead"; # Added 2023-01-07 python-swiftclient = throw "'python-swiftclient' has been renamed to/replaced by 'swiftclient'"; # Converted to throw 2024-10-17 pythonFull = python2Full; # Added 2022-01-11 pythonPackages = python.pkgs; # Added 2022-01-11 @@ -1363,9 +983,7 @@ mapAliases { qbittorrent-qt5 = throw "'qbittorrent-qt5' has been removed as qBittorrent 5 dropped support for Qt 5. Please use 'qbittorrent'"; # Added 2024-09-30 qcsxcad = throw "'qcsxcad' has been renamed to/replaced by 'libsForQt5.qcsxcad'"; # Converted to throw 2024-10-17 - qtcreator-qt6 = throw "'qtcreator-qt6' has been renamed to/replaced by 'qtcreator', since qt5 version has been removed"; # Added 2023-07-25 qflipper = qFlipper; # Added 2022-02-11 - qlandkartegt = throw "'qlandkartegt' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-04-17 qscintilla = libsForQt5.qscintilla; # Added 2023-09-20 qscintilla-qt6 = qt6Packages.qscintilla; # Added 2023-09-20 qt515 = qt5; # Added 2022-11-24 @@ -1382,8 +1000,6 @@ mapAliases { quicklispPackagesFor = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 quicklispPackagesGCL = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 quicklispPackagesSBCL = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 - qutebrowser-qt6 = throw "'qutebrowser-qt6' has been replaced by 'qutebrowser', since the the qt5 version has been removed"; # Added 2023-08-19 - quvi = throw "'quvi' has been removed, as it was broken and unmaintained"; # Added 2023-11-25 ### R ### @@ -1394,58 +1010,18 @@ mapAliases { railway-travel = diebahn; # Added 2024-04-01 rambox-pro = rambox; # Added 2022-12-12 rapidjson-unstable = lib.warn "'rapidjson-unstable' has been renamed to 'rapidjson'" rapidjson; # Added 2024-07-28 - rarian = throw "rarian has been removed as unused"; # Added 2023-07-05 - rccl = throw "'rccl' has been replaced with 'rocmPackages.rccl'"; # Added 2023-10-08 - rdc = throw "'rdc' has been replaced with 'rocmPackages.rdc'"; # Added 2023-10-08 - readline63 = throw "'readline63' has been replaced with 'readline'"; # Added 2024-02-10 redocly-cli = redocly; # Added 2024-04-14 redpanda = redpanda-client; # Added 2023-10-14 redpanda-server = throw "'redpanda-server' has been removed because it was broken for a long time"; # Added 2024-06-10 relibc = throw "relibc has been removed due to lack of maintenance"; # Added 2024-09-02 replay-sorcery = throw "replay-sorcery has been removed as it is unmaintained upstream. Consider using gpu-screen-recorder or obs-studio instead."; # Added 2024-07-13 restinio_0_6 = throw "restinio_0_6 has been removed from nixpkgs as it's not needed by downstream packages"; # Added 2024-07-04 - restya-board = throw "'restya-board' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2024-01-22 - retdec-full = throw "'retdec-full' is no longer needed, please use 'retdec'"; # Added 2024-02-05 retroshare06 = retroshare; - ricochet = throw "ricochet has been deprecated in favor of ricochet-refresh"; # Added 2024-02-26 rigsofrods = rigsofrods-bin; # Added 2023-03-22 ring-daemon = throw "'ring-daemon' has been renamed to/replaced by 'jami-daemon'"; # Converted to throw 2024-10-17 - rnix-lsp = throw "'rnix-lsp' has been removed as it is unmaintained"; # Added 2024-03-09 rockbox_utility = rockbox-utility; # Added 2022-03-17 - rocalution = throw "'rocalution' has been replaced with 'rocmPackages.rocalution'"; # Added 2023-10-08 - rocblas = throw "'rocblas' has been replaced with 'rocmPackages.rocblas'"; # Added 2023-10-08 - rocfft = throw "'rocfft' has been replaced with 'rocmPackages.rocfft'"; # Added 2023-10-08 - rocprim = throw "'rocprim' has been replaced with 'rocmPackages.rocprim'"; # Added 2023-10-08 - rocrand = throw "'rocrand' has been replaced with 'rocmPackages.rocrand'"; # Added 2023-10-08 - rocsparse = throw "'rocsparse' has been replaced with 'rocmPackages.rocsparse'"; # Added 2023-10-08 - rocthrust = throw "'rocthrust' has been replaced with 'rocmPackages.rocthrust'"; # Added 2023-10-08 - roctracer = throw "'roctracer' has been replaced with 'rocmPackages.roctracer'"; # Added 2023-10-08 - rocwmma = throw "'rocwmma' has been replaced with 'rocmPackages.rocwmma'"; # Added 2023-10-08 - rocclr = throw "'rocclr' has been removed in favor of 'rocmPackages.clr'"; # Added 2023-10-08 - rocdbgapi = throw "'rocdbgapi' has been replaced with 'rocmPackages.rocdbgapi'"; # Added 2023-10-08 - rocgdb = throw "'rocgdb' has been replaced with 'rocmPackages.rocgdb'"; # Added 2023-10-08 - rocprofiler = throw "'rocprofiler' has been replaced with 'rocmPackages.rocprofiler'"; # Added 2023-10-08 - rocsolver = throw "'rocsolver' has been replaced with 'rocmPackages.rocsolver'"; # Added 2023-10-08 - rocmClangStdenv = throw "'rocmClangStdenv' has been moved to 'rocmPackages' and is no longer public"; # Added 2023-10-08 - rocmUpdateScript = throw "'rocmUpdateScript' has been moved to 'rocmPackages' and is no longer public"; # Added 2023-10-08 - rocminfo = throw "'rocminfo' has been replaced with 'rocmPackages.rocminfo'"; # Added 2023-10-08 - rocmlir = throw "'rocmlir' has been replaced with 'rocmPackages.rocmlir'"; # Added 2023-10-08 - rocmlir-rock = throw "'rocmlir-rock' has been replaced with 'rocmPackages.rocmlir-rock'"; # Added 2023-10-08 - rocm-cmake = throw "'rocm-cmake' has been replaced with 'rocmPackages.rocm-cmake'"; # Added 2023-10-08 - rocm-comgr = throw "'rocm-comgr' has been replaced with 'rocmPackages.rocm-comgr'"; # Added 2023-10-08 - rocm-core = throw "'rocm-core' has been replaced with 'rocmPackages.rocm-core'"; # Added 2023-10-08 - rocm-device-libs = throw "'rccl' has been replaced with 'rocmPackages.rocm-device-libs'"; # Added 2023-10-08 - rocm-opencl-icd = rocmPackages.clr.icd; # Added 2023-10-08 Convert to throw after 23.11 is released - rocm-opencl-runtime = rocmPackages.clr; # Added 2023-10-08 Convert to throw after 23.11 is released - rocm-runtime = throw "'rocm-runtime' has been replaced with 'rocmPackages.rocm-runtime'"; # Added 2023-10-08 - rocm-smi = throw "'rocm-smi' has been replaced with 'rocmPackages.rocm-smi'"; # Added 2023-10-08 - rocm-thunk = throw "'rocm-thunk' has been replaced with 'rocmPackages.rocm-thunk'"; # Added 2023-10-08 - rocr-debug-agent = throw "'rocr-debug-agent' has been replaced with 'rocmPackages.rocr-debug-agent'"; # Added 2023-10-08 - rome = throw "rome is no longer maintained, consider using biome instead"; # Added 2023-09-12 rpiboot-unstable = throw "'rpiboot-unstable' has been renamed to/replaced by 'rpiboot'"; # Converted to throw 2024-10-17 rr-unstable = rr; # Added 2022-09-17 - rtl8723bs-firmware = throw "rtl8723bs-firmware was added in mainline kernel version 4.12"; # Added 2023-07-03 - rtsp-simple-server = throw "rtsp-simple-server is rebranded as mediamtx, including default config path update"; # Added 2023-04-11 rtx = mise; # Added 2024-01-05 runCommandNoCC = runCommand; runCommandNoCCLocal = runCommandLocal; @@ -1458,7 +1034,6 @@ mapAliases { # due to it being inside the linuxPackagesFor function. rtlwifi_new-firmware = throw "'rtlwifi_new-firmware' has been renamed to/replaced by 'rtw88-firmware'"; # Converted to throw 2024-10-17 rtw88-firmware = throw "rtw88-firmware has been removed because linux-firmware now contains it."; # Added 2024-06-28 - rtw89-firmware = throw "rtw89-firmware has been removed because linux-firmware now contains it."; # Added 2023-02-19 ### S ### @@ -1475,44 +1050,23 @@ mapAliases { schildichat-desktop = schildichat-web; schildichat-desktop-wayland = schildichat-web; scitoken-cpp = scitokens-cpp; # Added 2024-02-12 - scylladb = throw "'scylladb' has been removed due to being unmaintained"; # Added 2024-03-17 - sdlmame = throw "'sdlmame' has been renamed to/replaced by 'mame'"; # Converted to throw 2023-09-10 - searx = throw "'searx' has been removed as it is unmaintained. Please switch to searxng"; # Added 2023-10-03 semeru-bin-16 = throw "Semeru 16 has been removed as it has reached its end of life"; # Added 2024-08-01 semeru-jre-bin-16 = throw "Semeru 16 has been removed as it has reached its end of life"; # Added 2024-08-01 - semver-cpp = throw "'semver-cpp' was removed because no packages in nixpkgs use it anymore"; # Added 2024-02-14 session-desktop-appimage = session-desktop; - setupcfg2nix = throw "'setupcfg2nix' has been removed. Please switch to buildPythonPackage"; # Added 2023-12-12 sequoia = sequoia-sq; # Added 2023-06-26 sexp = sexpp; # Added 2023-07-03 - sget = throw "sget has been removed from nixpkgs, as it is not supported upstream anymore see https://github.com/sigstore/sget/issues/145"; # Added 2023-05-26 - sgtpuzzles = throw "'sgtpuzzles' has been renamed to 'sgt-puzzles'"; # Added 2023-10-06 - sgtpuzzles-mobile = throw "'sgtpuzzles-mobile' has been renamed to 'sgt-puzzles-mobile'"; # Added 2023-10-06 inherit (libsForQt5.mauiPackages) shelf; # added 2022-05-17 - shhgit = throw "shhgit is broken and is no longer maintained. See https://github.com/eth0izzle/shhgit#-shhgit-is-no-longer-maintained-"; # Added 2023-08-08 shipyard = jumppad; # Added 2023-06-06 shout = nodePackages.shout; # Added unknown; moved 2024-10-19 - signumone-ks = throw "signumone-ks has been removed from nixpkgs because the developers stopped offering the binaries"; # Added 2023-08-17 - simplenote = throw "'simplenote' has been removed because it is no longer maintained and insecure"; # Added 2023-10-09 - skk-dicts = throw "'skk-dicts' has been split into multiple packages under 'skkDictionaries'"; # Added 2023-11-08 sky = throw "'sky' has been removed because its upstream website disappeared"; # Added 2024-07-21 SkypeExport = skypeexport; # Added 2024-06-12 slack-dark = throw "'slack-dark' has been renamed to/replaced by 'slack'"; # Converted to throw 2024-10-17 - slmenu = throw "slmenu has been removed (upstream is gone)"; # Added 2023-04-06 slurm-llnl = slurm; # renamed July 2017 - smesh = throw "'smesh' has been removed as it's unmaintained and depends on opencascade-oce, which is also unmaintained"; # Added 2023-09-18 snapTools = throw "snapTools was removed because makeSnap produced broken snaps and it was the only function in snapTools. See https://github.com/NixOS/nixpkgs/issues/100618 for more details."; # 2024-03-04; soldat-unstable = opensoldat; # Added 2022-07-02 - solr_8 = throw "'solr' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-03-16 - solr = throw "'solr' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-03-16 soundOfSorting = sound-of-sorting; # Added 2023-07-07 - soundux = throw "'soundux' has been removed, as it is unmaintained."; # Added on 2024-02-14 SP800-90B_EntropyAssessment = sp800-90b-entropyassessment; # Added on 2024-06-12 SPAdes = spades; # Added 2024-06-12 - spark2 = throw "'spark2' is no longer supported nixpkgs, please use 'spark'"; # Added 2023-05-08 - spark_2_4 = throw "'spark_2_4' is no longer supported nixpkgs, please use 'spark'"; # Added 2023-05-08 - spark_3_1 = throw "'spark_3_1' is no longer supported nixpkgs, please use 'spark'"; # Added 2023-05-08 - spark_3_3 = throw "'spark_3_3' is no longer supported nixpkgs, please use 'spark'"; # Added 2024-03-23 spark2014 = gnatprove; # Added 2024-02-25 # Added 2020-02-10 @@ -1538,21 +1092,14 @@ mapAliases { source-han-serif-traditional-chinese = source-han-serif; - spacegun = throw "'spacegun' has been removed as unmaintained"; # Added 2023-05-20 spectral = throw "'spectral' has been renamed to/replaced by 'neochat'"; # Converted to throw 2024-10-17 - speedtest-exporter = throw "'speedtest-exporter' has been removed as unmaintained"; # Added 2023-07-31 - spice-gtk_libsoup2 = throw "'spice-gtk_libsoup2' has been renamed to/replaced by 'spice-gtk'"; # Added 2023-02-21 # spidermonkey is not ABI upwards-compatible, so only allow this for nix-shell spidermonkey = throw "'spidermonkey' has been renamed to/replaced by 'spidermonkey_78'"; # Converted to throw 2024-10-17 spidermonkey_102 = throw "'spidermonkey_102' is EOL since 2023/03"; # Added 2024-08-07 - spotify-tui = throw "'spotify-tui' has been removed, as it was broken and unmaintained"; # Added 2024-03-12 spotify-unwrapped = spotify; # added 2022-11-06 spring-boot = throw "'spring-boot' has been renamed to/replaced by 'spring-boot-cli'"; # Converted to throw 2024-10-17 - squid4 = throw "'squid4' has been renamed to/replaced by 'squid'"; # Converted to throw 2023-09-10 srvc = throw "'srvc' has been removed, as it was broken and unmaintained"; # Added 2024-09-09 - ssb = throw "'ssb' has been removed, as it was broken and unmaintained"; # Added 2023-12-21 ssm-agent = amazon-ssm-agent; # Added 2023-10-17 - starboard-octant-plugin = throw "starboard-octant-plugin has been dropped due to needing octant which is archived"; # Added 2023-09-29 starspace = throw "starspace has been removed from nixpkgs, as it was broken"; # Added 2024-07-15 steamPackages = { steamArch = throw "`steamPackages.steamArch` has been removed as it's no longer applicable"; @@ -1565,10 +1112,8 @@ mapAliases { steam-run-native = steam-run; # added 2022-02-21 StormLib = stormlib; # Added 2024-01-21 sumneko-lua-language-server = lua-language-server; # Added 2023-02-07 - supertux-editor = throw "'supertux-editor' has been removed, as it was broken and unmaintained"; # Added 2023-12-22 swiProlog = lib.warn "swiProlog has been renamed to swi-prolog" swi-prolog; # Added 2024-09-07 swiPrologWithGui = lib.warn "swiPrologWithGui has been renamed to swi-prolog-gui" swi-prolog-gui; # Added 2024-09-07 - swift-im = throw "swift-im has been removed as it is unmaintained and depends on deprecated Python 2 / Qt WebKit"; # Added 2023-01-06 swig1 = throw "swig1 has been removed as it is obsolete"; # Added 2024-08-23 swig2 = throw "swig2 has been removed as it is obsolete"; # Added 2024-08-23 swig3 = throw "swig3 has been removed as it is obsolete"; # Added 2024-09-12 @@ -1591,12 +1136,8 @@ mapAliases { taro = taproot-assets; # Added 2023-07-04 tdesktop = telegram-desktop; # Added 2023-04-07 teck-programmer = throw "teck-programmer was removed because it was broken and unmaintained"; # added 2024-08-23 - telegram-cli = throw "telegram-cli was removed because it was broken and abandoned upstream"; # Added 2023-07-28 - teleport_11 = throw "teleport 11 has been removed as it is EOL. Please upgrade to Teleport 12 or later"; # Added 2023-11-27 - teleport_12 = throw "teleport 12 has been removed as it is EOL. Please upgrade to Teleport 13 or later"; # Added 2024-02-04 teleport_13 = throw "teleport 13 has been removed as it is EOL. Please upgrade to Teleport 14 or later"; # Added 2024-05-26 teleport_14 = throw "teleport 14 has been removed as it is EOL. Please upgrade to Teleport 15 or later"; # Added 2024-10-18 - teleprompter = throw "teleprompter has been removed. reason: upstream dead and does not work with recent electron versions"; # Added 2024-03-14 temurin-bin-20 = throw "Temurin 20 has been removed as it has reached its end of life"; # Added 2024-08-01 temurin-jre-bin-20 = throw "Temurin 20 has been removed as it has reached its end of life"; # Added 2024-08-01 temurin-bin-19 = throw "Temurin 19 has been removed as it has reached its end of life"; # Added 2024-08-01 @@ -1604,22 +1145,17 @@ mapAliases { temurin-bin-18 = throw "Temurin 18 has been removed as it has reached its end of life"; # Added 2024-08-01 temurin-jre-bin-18 = throw "Temurin 18 has been removed as it has reached its end of life"; # Added 2024-08-01 temurin-bin-16 = throw "Temurin 16 has been removed as it has reached its end of life"; # Added 2024-08-01 - tensile = throw "'tensile' has been replaced with 'rocmPackages.tensile'"; # Added 2023-10-08 tepl = libgedit-tepl; # Added 2024-04-29 testVersion = testers.testVersion; # Added 2022-04-20 tfplugindocs = terraform-plugin-docs; # Added 2023-11-01 - thrift-0_10 = throw "'thrift-0_10' has been removed because it is impacted by security issues and not used in nixpkgs, move to 'thrift'"; # Added 2024-03-17 invalidateFetcherByDrvHash = testers.invalidateFetcherByDrvHash; # Added 2022-05-05 timescale-prometheus = throw "'timescale-prometheus' has been renamed to/replaced by 'promscale'"; # Converted to throw 2024-10-17 - tinygltf = throw "TinyglTF has been embedded in draco due to lack of other users and compatibility breaks."; # Added 2023-06-25 tightvnc = throw "'tightvnc' has been removed as the version 1.3 is not maintained upstream anymore and is insecure"; # Added 2024-08-22 - tixati = throw "'tixati' has been removed from nixpkgs as it is unfree and unmaintained"; # Added 2023-03-17 tkcvs = tkrev; # Added 2022-03-07 toil = throw "toil was removed as it was broken and requires obsolete versions of libraries"; # Added 2024-09-22 tokodon = plasma5Packages.tokodon; tokyo-night-gtk = tokyonight-gtk-theme; # Added 2024-01-28 tomcat_connectors = apacheHttpdPackages.mod_jk; # Added 2024-06-07 - tootle = throw "'tootle' has been removed as it is not maintained upstream. Consider using 'tuba' instead"; # Added 2024-02-11 tor-browser-bundle-bin = tor-browser; # Added 2023-09-23 transmission = lib.warn (transmission3Warning {}) transmission_3; # Added 2024-06-10 transmission-gtk = lib.warn (transmission3Warning {suffix = "-gtk";}) transmission_3-gtk; # Added 2024-06-10 @@ -1632,8 +1168,6 @@ mapAliases { trezor_agent = trezor-agent; # Added 2024-01-07 openai-triton-llvm = triton-llvm; # added 2024-07-18 trust-dns = hickory-dns; # Added 2024-08-07 - trustedGrub = throw "trustedGrub has been removed, because it is not maintained upstream anymore"; # Added 2023-05-10 - trustedGrub-for-HP = throw "trustedGrub-for-HP has been removed, because it is not maintained upstream anymore"; # Added 2023-05-10 tumpa = throw "tumpa has been removed, as it is broken"; # Added 2024-07-15 turbogit = throw "turbogit has been removed as it is unmaintained upstream and depends on an insecure version of libgit2"; # Added 2024-08-25 tvbrowser-bin = tvbrowser; # Added 2023-03-02 @@ -1649,10 +1183,7 @@ mapAliases { ubuntu_font_family = ubuntu-classic; # Added 2024-02-19 uclibc = uclibc-ng; # Added 2022-06-16 uclibcCross = uclibc-ng; # Added 2022-06-16 - ue4 = throw "ue4 has been removed, because the package was broken for years"; # Added 2023-11-22 uefi-firmware-parser = throw "The uefi-firmware-parser package was dropped since it was unmaintained."; # Added 2024-06-21 - uhd3_5 = throw "uhd3_5 has been removed, because it was no longer needed"; # Added 2023-10-07 - uhhyou.lv2 = throw "'uhhyou.lv2' has been removed, upstream gone"; # Added 2023-06-21 unicorn-emu = throw "'unicorn-emu' has been renamed to/replaced by 'unicorn'"; # Converted to throw 2024-10-17 uniffi-bindgen = throw "uniffi-bindgen has been removed since upstream no longer provides a standalone package for the CLI"; unifi-poller = unpoller; # Added 2022-11-24 @@ -1663,7 +1194,6 @@ mapAliases { unifiLTS = throw "'unifiLTS' has been removed since UniFi no longer has LTS and stable releases. Use `pkgs.unifi` instead."; # Added 2024-04-11 unifiStable = throw "'unifiStable' has been removed since UniFi no longer has LTS and stable releases. Use `pkgs.unifi` instead."; # Converted to throw 2024-04-11 untrunc = throw "'untrunc' has been renamed to/replaced by 'untrunc-anthwlock'"; # Converted to throw 2024-10-17 - urlview = throw "'urlview' has been dropped because it's unmaintained. Consider switching to an alternative such as `pkgs.extract_url` or `pkgs.urlscan`."; # Added 2023-12-14 urxvt_autocomplete_all_the_things = throw "'urxvt_autocomplete_all_the_things' has been renamed to/replaced by 'rxvt-unicode-plugins.autocomplete-all-the-things'"; # Converted to throw 2024-10-17 urxvt_bidi = throw "'urxvt_bidi' has been renamed to/replaced by 'rxvt-unicode-plugins.bidi'"; # Converted to throw 2024-10-17 urxvt_font_size = throw "'urxvt_font_size' has been renamed to/replaced by 'rxvt-unicode-plugins.font-size'"; # Converted to throw 2024-10-17 @@ -1672,14 +1202,11 @@ mapAliases { urxvt_tabbedex = throw "'urxvt_tabbedex' has been renamed to/replaced by 'rxvt-unicode-plugins.tabbedex'"; # Converted to throw 2024-10-17 urxvt_theme_switch = throw "'urxvt_theme_switch' has been renamed to/replaced by 'rxvt-unicode-plugins.theme-switch'"; # Converted to throw 2024-10-17 urxvt_vtwheel = throw "'urxvt_vtwheel' has been renamed to/replaced by 'rxvt-unicode-plugins.vtwheel'"; # Converted to throw 2024-10-17 - usbguard-nox = throw "'usbguard-nox' has been renamed to/replaced by 'usbguard'"; # Converted to throw 2023-09-10 - utahfs = throw "utahfs has been removed, as it is broken and lack of maintenance from upstream"; # Added 2023-09-29 util-linuxCurses = util-linux; # Added 2022-04-12 utillinux = util-linux; # Added 2020-11-24, keep until node2nix is phased out, see https://github.com/NixOS/nixpkgs/issues/229475 ### V ### - v4l_utils = throw "'v4l_utils' has been renamed to/replaced by 'v4l-utils'"; # Converted to throw 2023-09-10 validphys2 = throw "validphys2 has been removed, since it has a broken dependency that was removed"; # Added 2024-08-21 vamp = { vampSDK = vamp-plugin-sdk; }; # Added 2020-03-26 vaapiIntel = intel-vaapi-driver; # Added 2023-05-31 @@ -1690,31 +1217,18 @@ mapAliases { ventoy-bin-full = ventoy-full; # Added 2023-04-12 verilog = iverilog; # Added 2024-07-12 ViennaRNA = viennarna; # Added 2023-08-23 - vikunja-api = throw "'vikunja-api' has been replaced by 'vikunja'"; # Added 2024-02-19 - vikunja-frontend = throw "'vikunja-frontend' has been replaced by 'vikunja'"; # Added 2024-02-19 vimHugeX = vim-full; # Added 2022-12-04 vim_configurable = vim-full; # Added 2022-12-04 vinagre = throw "'vinagre' has been removed as it has been archived upstream. Consider using 'gnome-connections' or 'remmina' instead"; # Added 2024-09-14 vinegar = throw "'vinegar' was removed due to being blocked by Roblox, rendering the package useless"; # Added 2024-08-23 - virtmanager = throw "'virtmanager' has been renamed to/replaced by 'virt-manager'"; # Converted to throw 2023-09-10 - virtmanager-qt = throw "'virtmanager-qt' has been renamed to/replaced by 'virt-manager-qt'"; # Converted to throw 2023-09-10 virtscreen = throw "'virtscreen' has been removed, as it was broken and unmaintained"; # Added 2024-10-17 - vivaldi-widevine = throw "'vivaldi-widevine' has been renamed to/replaced by 'widevine-cdm'"; # Added 2023-02-25 vkBasalt = vkbasalt; # Added 2022-11-22 vkdt-wayland = vkdt; # Added 2024-04-19 - vsmtp = throw "'vsmtp' has been removed, upstream gone"; # Added 2023-12-18 - vte_290 = throw "'vte_290' has been renamed to/replaced by 'vte'"; # Added 2023-01-05 - varnish72 = throw "varnish 7.2 is EOL. Either use the LTS or upgrade."; # Added 2023-10-09 - varnish73 = throw "varnish 7.3 is EOL. Either use the LTS or upgrade."; # Added 2023-10-09 - varnish72Packages = throw "varnish 7.2 is EOL. Either use the LTS or upgrade."; # Added 2023-10-09 - varnish73Packages = throw "varnish 7.3 is EOL. Either use the LTS or upgrade."; # Added 2023-10-09 inherit (libsForQt5.mauiPackages) vvave; # added 2022-05-17 - volatility = throw "'volatility' has been removed, as it was broken and unmaintained"; # Added 2023-12-10 ### W ### wakatime = wakatime-cli; # 2024-05-30 wal_e = throw "wal_e was removed as it is unmaintained upstream and depends on the removed boto package; upstream recommends using wal-g or pgbackrest"; # Added 2024-09-22 - waybar-hyprland = throw "waybar-hyprland has been removed: hyprland support is now built into waybar by default."; # Added 2023-08-21 wayfireApplications-unwrapped = throw '' 'wayfireApplications-unwrapped.wayfire' has been renamed to/replaced by 'wayfire' 'wayfireApplications-unwrapped.wayfirePlugins' has been renamed to/replaced by 'wayfirePlugins' @@ -1722,20 +1236,12 @@ mapAliases { 'wayfireApplications-unwrapped.wlroots' has been removed ''; # Add 2023-07-29 waypoint = throw "waypoint has been removed from nixpkgs as the upstream project was archived"; # Added 2024-04-24 - wcm = throw "'wcm' has been renamed to/replaced by 'wayfirePlugins.wcm'"; # Add 2023-07-29 - webkitgtk_5_0 = throw "'webkitgtk_5_0' has been superseded by 'webkitgtk_6_0'"; # Added 2023-02-25 webkitgtk = lib.warn "Explicitly set the ABI version of 'webkitgtk'" webkitgtk_4_0; wineWayland = wine-wayland; - win-qemu = throw "'win-qemu' has been replaced by 'virtio-win'"; # Added 2023-08-16 win-virtio = virtio-win; # Added 2023-10-17 - win-signed-gplpv-drivers = throw "win-signed-gplpv-drivers has been removed from nixpkgs, as it's unmaintained: https://help.univention.com/t/installing-signed-gplpv-drivers/21828"; # Added 2023-08-17 wkhtmltopdf-bin = wkhtmltopdf; # Added 2024-07-17 - wlroots_0_14 = throw "'wlroots_0_14' has been removed in favor of newer versions"; # Added 2023-07-29 - wlroots_0_15 = throw "'wlroots_0_15' has been removed in favor of newer versions"; # Added 2024-03-28 wlroots_0_16 = throw "'wlroots_0_16' has been removed in favor of newer versions"; # Added 2024-07-14 wlroots = wlroots_0_18; # wlroots is unstable, we must keep depending on 'wlroots_0_*', convert to package after a stable(1.x) release - wordpress6_1 = throw "'wordpress6_1' has been removed in favor of the latest version"; # Added 2023-10-10 - wordpress6_2 = throw "'wordpress6_2' has been removed in favor of the latest version"; # Added 2023-10-10 wordpress6_3 = throw "'wordpress6_3' has been removed in favor of the latest version"; # Added 2024-08-03 wordpress6_4 = throw "'wordpress6_4' has been removed in favor of the latest version"; # Added 2024-08-03 wordpress6_5 = wordpress_6_5; # Added 2024-08-03 @@ -1745,7 +1251,6 @@ mapAliases { wmii_hg = wmii; wrapGAppsHook = wrapGAppsHook3; # Added 2024-03-26 write_stylus = styluslabs-write-bin; # Added 2024-10-09 - wxGTK30 = throw "wxGTK30 has been removed from nixpkgs as it has reached end of life"; # Added 2023-03-22 wxGTK30-gtk2 = wxGTK30; # Added 2022-12-03 wxGTK30-gtk3 = wxGTK30; # Added 2022-12-03 wxmac = wxGTK30; # Added 2023-03-22 @@ -1753,8 +1258,6 @@ mapAliases { ### X ### xbmc-retroarch-advanced-launchers = throw "'xbmc-retroarch-advanced-launchers' has been renamed to/replaced by 'kodi-retroarch-advanced-launchers'"; # Converted to throw 2024-10-17 - xcbuild6Hook = throw "'xcbuild6Hook has been renamed to/replaced by 'xcbuildHook'"; # Added 2023-12-10 - xcodebuild6 = throw "'xcodebuild6' has been renamed to/replaced by 'xcodebuild'"; # Added 2023-12-10 xdg_utils = throw "'xdg_utils' has been renamed to/replaced by 'xdg-utils'"; # Converted to throw 2024-10-17 xen-light = throw "'xen-light' has been renamed to/replaced by 'xen-slim'"; # Added 2024-06-30 xen-slim = throw "'xen-slim' has been renamed to 'xen'. The old Xen package with built-in components no longer exists"; # Added 2024-10-05 @@ -1770,7 +1273,6 @@ mapAliases { xmake-core-sv = throw "'xmake-core-sv' has been removed, use 'libsv' instead"; # Added 2024-10-10 xonsh-unwrapped = python3Packages.xonsh; # Added 2024-06-18 xprite-editor = throw "'xprite-editor' has been removed due to lack of maintenance upstream. Consider using 'pablodraw' or 'aseprite' instead"; # Added 2024-09-14 - xtrt = throw "xtrt has been removed due to being abandoned"; # Added 2023-05-25 xulrunner = firefox-unwrapped; # Added 2023-11-03 xvfb_run = throw "'xvfb_run' has been renamed to/replaced by 'xvfb-run'"; # Converted to throw 2024-10-17 xwaylandvideobridge = libsForQt5.xwaylandvideobridge; # Added 2024-09-27 @@ -1779,19 +1281,11 @@ mapAliases { yacc = throw "'yacc' has been renamed to/replaced by 'bison'"; # Converted to throw 2024-10-17 yafaray-core = libyafaray; # Added 2022-09-23 - yarn2nix-moretea-openssl_1_1 = throw "'yarn2nix-moretea-openssl_1_1' has been removed."; # Added 2023-02-04 yi = throw "'yi' has been removed, as it was broken and unmaintained"; # added 2024-05-09 yrd = throw "'yrd' has been removed, as it was broken and unmaintained"; # added 2024-05-27 - yubikey-manager4 = throw "yubikey-manager4 has been removed, since it is no longer required by yubikey-manager-qt. Please update to yubikey-manager."; # Added 2024-01-14 - yuzu-ea = throw "yuzu-ea has been removed from nixpkgs, as it has been taken down upstream"; # Added 2024-03-04 - yuzu-early-access = throw "yuzu-early-access has been removed from nixpkgs, as it has been taken down upstream"; # Added 2024-03-04 - yuzu = throw "yuzu has been removed from nixpkgs, as it has been taken down upstream"; # Added 2024-03-04 - yuzu-mainline = throw "yuzu-mainline has been removed from nixpkgs, as it has been taken down upstream"; # Added 2024-03-04 - yuzuPackages = throw "yuzuPackages has been removed from nixpkgs, as it has been taken down upstream"; # Added 2024-03-04 ### Z ### - zabbix40 = throw "'zabbix40' has been removed as it has reached end of life"; # Added 2024-01-07 zfsStable = zfs; # Added 2024-02-26 zfsUnstable = zfs_unstable; # Added 2024-02-26 zinc = zincsearch; # Added 2023-05-28 @@ -1802,11 +1296,9 @@ mapAliases { ### UNSORTED ### - zeroc_ice = throw "'zeroc_ice' has been renamed to/replaced by 'zeroc-ice'"; # Converted to throw 2023-09-10 dina-font-pcf = throw "'dina-font-pcf' has been renamed to/replaced by 'dina-font'"; # Converted to throw 2024-10-17 dnscrypt-proxy2 = dnscrypt-proxy; # Added 2023-02-02 - gnatsd = throw "'gnatsd' has been renamed to/replaced by 'nats-server'"; # Converted to throw 2023-09-10 posix_man_pages = throw "'posix_man_pages' has been renamed to/replaced by 'man-pages-posix'"; # Converted to throw 2024-10-17 ttyrec = throw "'ttyrec' has been renamed to/replaced by 'ovh-ttyrec'"; # Converted to throw 2024-10-17 From a50fe7c812019d8e53f6b360b74e08b4b5b66a3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Mon, 21 Oct 2024 11:55:41 -0600 Subject: [PATCH 34/52] Reapply "aliases: manual cleanup of nodejs-{14,16} variants that were left by previous script" This reverts commit 390b4514b66260bf6ee8f71c4b432c1208569b30. --- pkgs/top-level/aliases.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 5c6c10b9c23b..c57dd6b6a557 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -819,10 +819,6 @@ mapAliases { nixosTest = testers.nixosTest; # Added 2022-05-05 nmap-unfree = throw "'nmap-unfree' has been renamed to/replaced by 'nmap'"; # Converted to throw 2024-10-17 - nodejs-14_x = nodejs_14; # Added 2022-11-06 - nodejs-slim-14_x = nodejs-slim_14; # Added 2022-11-06 - nodejs-16_x = nodejs_16; # Added 2022-11-06 - nodejs-slim-16_x = nodejs-slim_16; # Added 2022-11-06 nodejs-18_x = nodejs_18; # Added 2022-11-06 nodejs-slim-18_x = nodejs-slim_18; # Added 2022-11-06 noto-fonts-cjk = throw "'noto-fonts-cjk' has been renamed to/replaced by 'noto-fonts-cjk-sans'"; # Converted to throw 2024-10-17 From 9d1796f1506dbb1d40de1a28c7530351cb332563 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Mon, 21 Oct 2024 11:33:40 -0600 Subject: [PATCH 35/52] aliases: manual cleanup of gnuradio-with-packages that depended on gnuradio3_7 which was already a throw --- pkgs/top-level/aliases.nix | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index c57dd6b6a557..e6f70c531b1c 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -448,18 +448,6 @@ mapAliases { gnome_mplayer = throw "'gnome_mplayer' has been removed due to lack of maintenance upstream. Consider using 'celluloid' instead"; # Added 2024-09-14 gnome-resources = resources; # added 2023-12-10 - gnuradio-with-packages = gnuradio3_7.override { - extraPackages = lib.attrVals [ - "osmosdr" - "ais" - "gsm" - "nacl" - "rds" - "limesdr" - ] - gnuradio3_7Packages; - }; # Added 2020-10-16 - gmock = throw "'gmock' has been renamed to/replaced by 'gtest'"; # Converted to throw 2024-10-17 gnome3 = throw "'gnome3' has been renamed to/replaced by 'gnome'"; # Converted to throw 2024-10-17 From 6d7b5fc78cf20ce4de18437502d96e561ad14522 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Mon, 21 Oct 2024 11:36:25 -0600 Subject: [PATCH 36/52] aliases: manual cleanup of nixopsUnstable that depended on nixops_unstable which was already a throw --- pkgs/top-level/aliases.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index e6f70c531b1c..ebe0a7ff23c4 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -801,7 +801,6 @@ mapAliases { nixUnstable = throw "nixUnstable has been removed. For bleeding edge (Nix master, roughly weekly updated) use nixVersions.git, otherwise use nixVersions.latest."; # Converted to throw 2024-04-22 nix_2_3 = nixVersions.nix_2_3; nixfmt = lib.warn "nixfmt was renamed to nixfmt-classic. The nixfmt attribute may be used for the new RFC 166-style formatter in the future, which is currently available as nixfmt-rfc-style" nixfmt-classic; # Added 2024-03-31 - nixopsUnstable = nixops_unstable; # Added 2022-03-03 # When the nixops_unstable alias is removed, nixops_unstable_minimal can be renamed to nixops_unstable. From bf6aebdab821e5eb0aedb7d6689859bc49f8cdd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Mon, 21 Oct 2024 11:39:19 -0600 Subject: [PATCH 37/52] aliases: manual cleanup of openconnect_head that depended on openconnect_unstable which was already a throw --- pkgs/top-level/aliases.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index ebe0a7ff23c4..3adb6d4e07f7 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -832,7 +832,6 @@ mapAliases { openafs_1_8 = openafs; # Added 2022-08-22 opencl-info = throw "opencl-info has been removed, as the upstream is unmaintained; consider using 'clinfo' instead"; # Added 2024-06-12 opencomposite-helper = throw "opencomposite-helper has been removed from nixpkgs as it causes issues with some applications. See https://wiki.nixos.org/wiki/VR#OpenComposite for the recommended setup"; # Added 2024-09-07 - openconnect_head = openconnect_unstable; # Added 2022-03-29 openconnect_gnutls = openconnect; # Added 2022-03-29 opendylan = throw "opendylan has been removed from nixpkgs as it was broken"; # Added 2024-07-15 opendylan_bin = throw "opendylan_bin has been removed from nixpkgs as it was broken"; # Added 2024-07-15 From 585642fda14c94c6c901aa7334548268a8299763 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Mon, 21 Oct 2024 11:41:28 -0600 Subject: [PATCH 38/52] aliases: manual cleanup of php80{Packages,Extensions} that depended on php80 which was already a throw --- pkgs/top-level/aliases.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 3adb6d4e07f7..9630bb0f78ec 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -892,10 +892,6 @@ mapAliases { picom-next = picom; # Added 2024-02-13 pict-rs_0_3 = throw "pict-rs_0_3 has been removed, as it was an outdated version and no longer compiled"; # Added 2024-08-20 - # Obsolete PHP version aliases - php80Packages = php80; # Added 2023-06-21 - php80Extensions = php80; # Added 2023-06-21 - pipewire_0_2 = throw "pipewire_0_2 has been removed as it is outdated and no longer used"; # Added 2024-07-28 pipewire-media-session = throw "pipewire-media-session is no longer maintained and has been removed. Please use Wireplumber instead."; playwright = lib.warn "'playwright' will reference playwright-driver in 25.05. Reference 'python3Packages.playwright' for the python test launcher" python3Packages.toPythonApplication python3Packages.playwright; # Added 2024-10-04 From e547554122130faee45b4c9aa5def4a8c677f72d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Mon, 21 Oct 2024 11:45:12 -0600 Subject: [PATCH 39/52] aliases: manual cleanup of wx{GTK30,mac} that depended on wxGTK30 which was already a throw --- pkgs/top-level/aliases.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 9630bb0f78ec..2014b9ce30fc 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1229,9 +1229,6 @@ mapAliases { wmii_hg = wmii; wrapGAppsHook = wrapGAppsHook3; # Added 2024-03-26 write_stylus = styluslabs-write-bin; # Added 2024-10-09 - wxGTK30-gtk2 = wxGTK30; # Added 2022-12-03 - wxGTK30-gtk3 = wxGTK30; # Added 2022-12-03 - wxmac = wxGTK30; # Added 2023-03-22 ### X ### From 6dad3ab2f7acc3633bf22e4ce589d571a1ada819 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Mon, 21 Oct 2024 19:27:49 +0200 Subject: [PATCH 40/52] weston: 14.0.0 -> 14.0.1 --- pkgs/applications/window-managers/weston/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/window-managers/weston/default.nix b/pkgs/applications/window-managers/weston/default.nix index e0a76e219535..8cd8ba35e31b 100644 --- a/pkgs/applications/window-managers/weston/default.nix +++ b/pkgs/applications/window-managers/weston/default.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { pname = "weston"; - version = "14.0.0"; + version = "14.0.1"; src = fetchurl { url = "https://gitlab.freedesktop.org/wayland/weston/-/releases/${version}/downloads/weston-${version}.tar.xz"; - hash = "sha256-R/0DJbC5SOmwA6OP306zqFgfP9x0C4kys1roeTv05KU="; + hash = "sha256-qBUFBbEmpZ33gf6MMMjm+H2nAT4XkDnrhEpbu8x8ebM="; }; depsBuildBuild = [ pkg-config ]; From 3f30412c0fd39d1ee2c03ef4ed6f377fcf121af0 Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Sat, 19 Oct 2024 20:10:11 +0200 Subject: [PATCH 41/52] bluespec: 2024.01 -> 2024.07 Signed-off-by: Felix Singer --- pkgs/development/compilers/bluespec/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/bluespec/default.nix b/pkgs/development/compilers/bluespec/default.nix index e761c8609e8b..720dbe84743b 100644 --- a/pkgs/development/compilers/bluespec/default.nix +++ b/pkgs/development/compilers/bluespec/default.nix @@ -28,13 +28,13 @@ let in stdenv.mkDerivation rec { pname = "bluespec"; - version = "2024.01"; + version = "2024.07"; src = fetchFromGitHub { owner = "B-Lang-org"; repo = "bsc"; rev = version; - sha256 = "sha256-yqmtydv94p7qhps0t4EdPaSZNh/9XCuUwOzLqz0gjxE="; + sha256 = "sha256-gA/vfAkkM2cuArN99JZVYEWTIJqg82HlC+BHNVS5Ot0="; }; yices-src = fetchurl { From 2d88282897c0e74b7ef8d042059212c5703adc4e Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Sun, 20 Oct 2024 18:53:30 +0200 Subject: [PATCH 42/52] bluespec: Move package definition into by-name structure Signed-off-by: Felix Singer --- .../bl}/bluespec/libstp_stub_makefile.patch | 0 .../bluespec/default.nix => by-name/bl/bluespec/package.nix} | 0 pkgs/top-level/all-packages.nix | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename pkgs/{development/compilers => by-name/bl}/bluespec/libstp_stub_makefile.patch (100%) rename pkgs/{development/compilers/bluespec/default.nix => by-name/bl/bluespec/package.nix} (100%) diff --git a/pkgs/development/compilers/bluespec/libstp_stub_makefile.patch b/pkgs/by-name/bl/bluespec/libstp_stub_makefile.patch similarity index 100% rename from pkgs/development/compilers/bluespec/libstp_stub_makefile.patch rename to pkgs/by-name/bl/bluespec/libstp_stub_makefile.patch diff --git a/pkgs/development/compilers/bluespec/default.nix b/pkgs/by-name/bl/bluespec/package.nix similarity index 100% rename from pkgs/development/compilers/bluespec/default.nix rename to pkgs/by-name/bl/bluespec/package.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 181ac0979518..86a7f82855fa 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14313,7 +14313,7 @@ with pkgs; inherit (python3Packages) filecheck; }; - bluespec = callPackage ../development/compilers/bluespec { + bluespec = callPackage ../by-name/bl/bluespec/package.nix { gmp-static = gmp.override { withStatic = true; }; }; From 563d006e88eab91a5cb8994817d52444d65af6c5 Mon Sep 17 00:00:00 2001 From: Pyrox Date: Thu, 17 Oct 2024 14:48:55 -0400 Subject: [PATCH 43/52] astro-language-server: 2.15.0 -> 2.15.3 --- pkgs/by-name/as/astro-language-server/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/as/astro-language-server/package.nix b/pkgs/by-name/as/astro-language-server/package.nix index d51829c07858..a979dafd8a24 100644 --- a/pkgs/by-name/as/astro-language-server/package.nix +++ b/pkgs/by-name/as/astro-language-server/package.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "astro-language-server"; - version = "2.15.0"; + version = "2.15.3"; src = fetchFromGitHub { owner = "withastro"; repo = "language-tools"; rev = "@astrojs/language-server@${finalAttrs.version}"; - hash = "sha256-2MaoW04mX016VIrtfnBX/jzMNCOXE10lSInSyhqot5E="; + hash = "sha256-PJTcr/FIA0haatLFNHMJV24j6eK+c2DR9zpnR8aReHo="; }; pnpmDeps = pnpm.fetchDeps { @@ -25,7 +25,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmWorkspace prePnpmInstall ; - hash = "sha256-WSnXMVWuE6VC75a1bhZHGyUg6r1yMBvoQZeKdIYE7QI="; + hash = "sha256-/X8ZoWK5kBPm/8clBDP+B9A5ofXnH2svmy4kMc2t5iA="; }; nativeBuildInputs = [ From 9dcad2b0b5caf4f80d80032d088f186804648130 Mon Sep 17 00:00:00 2001 From: Abhishek Singh Date: Sun, 20 Oct 2024 15:22:57 +0530 Subject: [PATCH 44/52] vimPlugins.nvim-treesitter-pairs: init at 2024-10-20 --- pkgs/applications/editors/vim/plugins/generated.nix | 12 ++++++++++++ .../editors/vim/plugins/vim-plugin-names | 1 + 2 files changed, 13 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index b40c1ebbd49b..c671d738425a 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -9401,6 +9401,18 @@ final: prev: meta.homepage = "https://github.com/RRethy/nvim-treesitter-endwise/"; }; + nvim-treesitter-pairs = buildVimPlugin { + pname = "nvim-treesitter-pairs"; + version = "2024-10-20"; + src = fetchFromGitHub { + owner = "theHamsta"; + repo = "nvim-treesitter-pairs"; + rev = "f8c195d4d8464cba6971bf8de2d6a5c8c109b37a"; + sha256 = "sha256-VHq7ohBDThkBwqUIEVBb4RujBkftu96DQe/y6l7egzM="; + }; + meta.homepage = "https://github.com/theHamsta/nvim-treesitter-pairs/"; + }; + nvim-treesitter-pyfold = buildVimPlugin { pname = "nvim-treesitter-pyfold"; version = "2023-04-11"; diff --git a/pkgs/applications/editors/vim/plugins/vim-plugin-names b/pkgs/applications/editors/vim/plugins/vim-plugin-names index 2405a025b282..1eb8909aabec 100644 --- a/pkgs/applications/editors/vim/plugins/vim-plugin-names +++ b/pkgs/applications/editors/vim/plugins/vim-plugin-names @@ -789,6 +789,7 @@ https://github.com/nvim-tree/nvim-tree.lua/,, https://github.com/nvim-treesitter/nvim-treesitter/,, https://github.com/nvim-treesitter/nvim-treesitter-context/,, https://github.com/RRethy/nvim-treesitter-endwise/,HEAD, +https://github.com/theHamsta/nvim-treesitter-pairs/,HEAD, https://github.com/eddiebergman/nvim-treesitter-pyfold/,, https://github.com/nvim-treesitter/nvim-treesitter-refactor/,, https://github.com/nvim-treesitter/nvim-treesitter-textobjects/,, From 83429e7cc9f3e0a5b4eb212e813044cc7af10024 Mon Sep 17 00:00:00 2001 From: Abhishek Singh Date: Sun, 20 Oct 2024 14:57:46 +0530 Subject: [PATCH 45/52] vimPlugins.scretch-nvim: init at 2024-10-20 --- pkgs/applications/editors/vim/plugins/generated.nix | 12 ++++++++++++ pkgs/applications/editors/vim/plugins/overrides.nix | 4 ++++ .../editors/vim/plugins/vim-plugin-names | 1 + 3 files changed, 17 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index c671d738425a..d7d6593b8f67 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -18684,6 +18684,18 @@ final: prev: meta.homepage = "https://github.com/samodostal/image.nvim/"; }; + scretch-nvim = buildVimPlugin { + pname = "scretch.nvim"; + version = "2024-10-20"; + src = fetchFromGitHub { + owner = "0xJohnnyboy"; + repo = "scretch.nvim"; + rev = "0b2fbd0ed285f74baab7396a4a08c7bb7a3653c1"; + sha256 = "sha256-BqCVe7dY6WNJZS2XTNcnvB9d+HoM0wUItmmVskEaVHQ="; + }; + meta.homepage = "https://github.com/0xJohnnyboy/scretch.nvim/"; + }; + tinykeymap = buildVimPlugin { pname = "tinykeymap"; version = "2024-02-17"; diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index 3dc4109ab99a..a334c28d1ef8 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -1861,6 +1861,10 @@ in nvimRequireCheck = "rustaceanvim"; }; + scretch-nvim = super.scretch-nvim.overrideAttrs { + nvimRequireCheck = "scretch"; + }; + sg-nvim = super.sg-nvim.overrideAttrs ( old: let diff --git a/pkgs/applications/editors/vim/plugins/vim-plugin-names b/pkgs/applications/editors/vim/plugins/vim-plugin-names index 1eb8909aabec..c7c7e0925399 100644 --- a/pkgs/applications/editors/vim/plugins/vim-plugin-names +++ b/pkgs/applications/editors/vim/plugins/vim-plugin-names @@ -905,6 +905,7 @@ https://github.com/vmware-archive/salt-vim/,, https://github.com/lewis6991/satellite.nvim/,HEAD, https://github.com/davidgranstrom/scnvim/,HEAD, https://github.com/tiagovla/scope.nvim/,HEAD, +https://github.com/0xJohnnyboy/scretch.nvim/,HEAD, https://github.com/Xuyuanp/scrollbar.nvim/,, https://github.com/cakebaker/scss-syntax.vim/,, https://github.com/VonHeikemen/searchbox.nvim/,, From 0003fd75d8defb755d3593dfe810d3767cd6e605 Mon Sep 17 00:00:00 2001 From: Tomo Date: Fri, 18 Oct 2024 23:41:34 +0000 Subject: [PATCH 46/52] {nodePackages,vimPlugins}.coc-tslint{,-plugin}: drop Both deprecated upstream: https://github.com/neoclide/coc-tslint https://github.com/neoclide/coc-tslint-plugin coc-eslint provides comparable features and is maintained. Part of #229475 --- .../manual/release-notes/rl-2411.section.md | 5 + .../editors/vim/plugins/overrides.nix | 2 - pkgs/development/node-packages/aliases.nix | 2 + .../node-packages/node-packages.json | 2 - .../node-packages/node-packages.nix | 96 ------------------- 5 files changed, 7 insertions(+), 100 deletions(-) diff --git a/nixos/doc/manual/release-notes/rl-2411.section.md b/nixos/doc/manual/release-notes/rl-2411.section.md index 527922434033..d0c1e1af6f29 100644 --- a/nixos/doc/manual/release-notes/rl-2411.section.md +++ b/nixos/doc/manual/release-notes/rl-2411.section.md @@ -367,6 +367,11 @@ - `matrix-sliding-sync` was removed because it has been replaced by the simplified sliding sync functionality introduced in matrix-synapse 114.0. +- `nodePackages.coc-tslint`, `vimPlugins.coc-tslint`, `nodePackages.coc-tslint-plugin`, + and `vimPlugins.coc-tslint-plugin` were removed due to being deprecated upstream. The + `nodePackages.coc-eslint` and `vimPlugins.coc-eslint` packages offer comparable + features for `eslint`, which replaced `tslint`. + - `teleport` has been upgraded from major version 15 to major version 16. Refer to upstream [upgrade instructions](https://goteleport.com/docs/management/operations/upgrading/) and [release notes for v16](https://goteleport.com/docs/changelog/#1600-061324). diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index 3dc4109ab99a..811146d7eff7 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -2757,8 +2757,6 @@ in "coc-tabnine" "coc-texlab" "coc-toml" - "coc-tslint" - "coc-tslint-plugin" "coc-tsserver" "coc-ultisnips" "coc-vetur" diff --git a/pkgs/development/node-packages/aliases.nix b/pkgs/development/node-packages/aliases.nix index c0ac63577954..566a3ff6582e 100644 --- a/pkgs/development/node-packages/aliases.nix +++ b/pkgs/development/node-packages/aliases.nix @@ -76,6 +76,8 @@ mapAliases { inherit (pkgs) coc-pyright; # added 2024-07-14 coc-metals = throw "coc-metals was removed because it was deprecated upstream. vimPlugins.nvim-metals is its official replacement."; # Added 2024-10-16 coc-python = throw "coc-python was removed because it was abandoned upstream on 2020-12-24. Upstream now recommends using coc-pyright or coc-jedi instead."; # added 2024-10-15 + coc-tslint = throw "coc-tslint was removed because it was deprecated upstream; coc-eslint offers comparable features for eslint, which replaced tslint"; # Added 2024-10-18 + coc-tslint-plugin = throw "coc-tslint-plugin was removed because it was deprecated upstream; coc-eslint offers comparable features for eslint, which replaced tslint"; # Added 2024-10-18 coinmon = throw "coinmon was removed since it was abandoned upstream"; # added 2024-03-19 coffee-script = pkgs.coffeescript; # added 2023-08-18 inherit (pkgs) concurrently; # added 2024-08-05 diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json index 446c0d4fe6cb..aa5f90bb265a 100644 --- a/pkgs/development/node-packages/node-packages.json +++ b/pkgs/development/node-packages/node-packages.json @@ -60,8 +60,6 @@ , "coc-tabnine" , "coc-texlab" , "coc-toml" -, "coc-tslint" -, "coc-tslint-plugin" , "coc-tsserver" , "coc-ultisnips" , "coc-vetur" diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index 0d5ce792d47b..c3d77b4cdc01 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -61714,102 +61714,6 @@ in bypassCache = true; reconstructLock = true; }; - coc-tslint = nodeEnv.buildNodePackage { - name = "coc-tslint"; - packageName = "coc-tslint"; - version = "1.0.17"; - src = fetchurl { - url = "https://registry.npmjs.org/coc-tslint/-/coc-tslint-1.0.17.tgz"; - sha512 = "5Zxv2Adtb6Mlpv2YdKErhf8ntxiBl1UyrbEqo7gR9nFIAfi3o0Ue6TJTpZfOhQViFQxLjJAS65IQVRaNlbhkxw=="; - }; - dependencies = [ - sources."@babel/code-frame-7.24.7" - sources."@babel/helper-validator-identifier-7.24.7" - sources."@babel/highlight-7.24.7" - sources."ansi-styles-3.2.1" - sources."argparse-1.0.10" - sources."balanced-match-1.0.2" - sources."brace-expansion-1.1.11" - sources."builtin-modules-1.1.1" - sources."chalk-2.4.2" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."commander-2.20.3" - sources."concat-map-0.0.1" - sources."diff-4.0.2" - sources."escape-string-regexp-1.0.5" - sources."esprima-4.0.1" - sources."fs.realpath-1.0.0" - sources."function-bind-1.1.2" - sources."glob-7.2.3" - sources."has-flag-3.0.0" - sources."hasown-2.0.2" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."is-core-module-2.15.1" - sources."js-tokens-4.0.0" - sources."js-yaml-3.14.1" - sources."minimatch-3.1.2" - sources."minimist-1.2.8" - sources."mkdirp-0.5.6" - sources."once-1.4.0" - sources."path-is-absolute-1.0.1" - sources."path-parse-1.0.7" - sources."picocolors-1.1.0" - sources."resolve-1.22.8" - sources."semver-5.7.2" - sources."sprintf-js-1.0.3" - sources."supports-color-5.5.0" - sources."supports-preserve-symlinks-flag-1.0.0" - sources."tslib-1.14.1" - sources."tslint-5.20.1" - sources."tsutils-2.29.0" - sources."typescript-3.9.10" - sources."wrappy-1.0.2" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "tslint extension for coc.nvim"; - homepage = "https://github.com/neoclide/coc-tslint#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - coc-tslint-plugin = nodeEnv.buildNodePackage { - name = "coc-tslint-plugin"; - packageName = "coc-tslint-plugin"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/coc-tslint-plugin/-/coc-tslint-plugin-1.2.0.tgz"; - sha512 = "WEl0FM8ui0Oip6YqyOYApf8vErXFudj2ftjSYqm5WNLNuPq53JSNi+5w+WNqHwX2UWE8MOB2mQszqwU2fyE8Ag=="; - }; - dependencies = [ - sources."balanced-match-1.0.2" - sources."brace-expansion-1.1.11" - sources."concat-map-0.0.1" - sources."get-caller-file-1.0.3" - sources."minimatch-3.1.2" - sources."mock-require-3.0.3" - sources."normalize-path-2.1.1" - sources."remove-trailing-separator-1.1.0" - sources."typescript-tslint-plugin-0.5.4" - sources."vscode-jsonrpc-4.0.0" - sources."vscode-languageserver-5.2.1" - sources."vscode-languageserver-protocol-3.14.1" - sources."vscode-languageserver-types-3.14.0" - sources."vscode-uri-1.0.8" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "TSLint extension for coc.nvim as tsserver plugin"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; coc-tsserver = nodeEnv.buildNodePackage { name = "coc-tsserver"; packageName = "coc-tsserver"; From b09d2fa0d9811ce31fd01391574e1cdc7bf00be2 Mon Sep 17 00:00:00 2001 From: Astro Date: Mon, 21 Oct 2024 00:08:24 +0200 Subject: [PATCH 47/52] openvmm: init at 0-unstable-2024-10-19 --- pkgs/by-name/op/openvmm/Cargo.lock | 8750 +++++++++++++++++++++++++++ pkgs/by-name/op/openvmm/package.nix | 57 + 2 files changed, 8807 insertions(+) create mode 100644 pkgs/by-name/op/openvmm/Cargo.lock create mode 100644 pkgs/by-name/op/openvmm/package.nix diff --git a/pkgs/by-name/op/openvmm/Cargo.lock b/pkgs/by-name/op/openvmm/Cargo.lock new file mode 100644 index 000000000000..f2d618b44fd2 --- /dev/null +++ b/pkgs/by-name/op/openvmm/Cargo.lock @@ -0,0 +1,8750 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "aarch64defs" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "open_enum", + "zerocopy", +] + +[[package]] +name = "aarch64emu" +version = "0.0.0" +dependencies = [ + "aarch64defs", + "futures", + "getrandom", + "inspect", + "pal_async", + "parking_lot", + "thiserror", + "tracing", +] + +[[package]] +name = "acpi" +version = "0.0.0" +dependencies = [ + "acpi_spec", + "memory_range", + "x86defs", + "zerocopy", +] + +[[package]] +name = "acpi_spec" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "open_enum", + "static_assertions", + "thiserror", + "zerocopy", +] + +[[package]] +name = "addr2line" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + +[[package]] +name = "aho-corasick" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" +dependencies = [ + "memchr", +] + +[[package]] +name = "anes" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" + +[[package]] +name = "anstream" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87" + +[[package]] +name = "anstyle-parse" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" +dependencies = [ + "windows-sys 0.52.0", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" +dependencies = [ + "anstyle", + "windows-sys 0.52.0", +] + +[[package]] +name = "anyhow" +version = "1.0.79" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" + +[[package]] +name = "arbitrary" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" +dependencies = [ + "derive_arbitrary", +] + +[[package]] +name = "arc_cyclic_builder" +version = "0.0.0" +dependencies = [ + "futures-executor", +] + +[[package]] +name = "arrayvec" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" + +[[package]] +name = "async-channel" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" +dependencies = [ + "concurrent-queue", + "event-listener-strategy", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-task" +version = "4.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799" + +[[package]] +name = "async-trait" +version = "0.1.77" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + +[[package]] +name = "autocfg" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" + +[[package]] +name = "awaitgroup" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a872ceb3db05a391fbe7cf8eba07a1239b2d946eee66f9e942be9bff06206302" + +[[package]] +name = "azure_profiler_proto" +version = "0.0.0" +dependencies = [ + "inspect", + "mesh", + "mesh_build", + "mesh_rpc", + "prost", + "prost-build", +] + +[[package]] +name = "backtrace" +version = "0.3.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" +dependencies = [ + "addr2line", + "cc", + "cfg-if", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", +] + +[[package]] +name = "base64" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" + +[[package]] +name = "base64" +version = "0.21.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" + +[[package]] +name = "base64-serde" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba368df5de76a5bea49aaf0cf1b39ccfbbef176924d1ba5db3e4135216cbe3c7" +dependencies = [ + "base64 0.21.7", + "serde", +] + +[[package]] +name = "bincode" +version = "1.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" +dependencies = [ + "serde", +] + +[[package]] +name = "bit_field" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61" + +[[package]] +name = "bitfield-struct" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c2ce686adbebce0ee484a502c440b4657739adbad65eadf06d64f5816ee9765" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" + +[[package]] +name = "bitvec" +version = "1.1.0" +source = "git+https://github.com/smalis-msft/bitvec?branch=set-aliased-previous-val#d0aea0cf9e71323f41f1732634edb3aff2bf70f2" +dependencies = [ + "funty", + "radium", + "tap", + "wyz", +] + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "blocking" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" +dependencies = [ + "async-channel", + "async-task", + "futures-io", + "futures-lite", + "piper", +] + +[[package]] +name = "bootloader_fdt_parser" +version = "0.0.0" +dependencies = [ + "anyhow", + "fdt", + "fs-err", + "igvm_defs", + "inspect", + "loader_defs", + "memory_range", + "vm_topology", +] + +[[package]] +name = "bstr" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc" +dependencies = [ + "memchr", + "regex-automata 0.4.3", + "serde", +] + +[[package]] +name = "build_info" +version = "0.0.0" +dependencies = [ + "inspect", + "vergen", +] + +[[package]] +name = "build_rs_guest_arch" +version = "0.0.0" + +[[package]] +name = "bytemuck" +version = "1.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "byteorder_slice" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b294e30387378958e8bf8f4242131b930ea615ff81e8cac2440cea0a6013190" +dependencies = [ + "byteorder", +] + +[[package]] +name = "bytes" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" + +[[package]] +name = "cache_topology" +version = "0.0.0" +dependencies = [ + "fs-err", + "thiserror", + "windows-sys 0.52.0", +] + +[[package]] +name = "caps" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "190baaad529bcfbde9e1a19022c42781bdb6ff9de25721abdb8fd98c0807730b" +dependencies = [ + "libc", + "thiserror", +] + +[[package]] +name = "cargo_toml" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "802b755090e39835a4b0440fb0bbee0df7495a8b337f63db21e616f7821c7e8c" +dependencies = [ + "serde", + "toml", +] + +[[package]] +name = "cast" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" + +[[package]] +name = "cc" +version = "1.0.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" +dependencies = [ + "jobserver", + "libc", +] + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "chipset" +version = "0.0.0" +dependencies = [ + "async-trait", + "bitfield-struct", + "chipset_device", + "chipset_device_resources", + "chipset_resources", + "futures", + "input_core", + "inspect", + "inspect_counters", + "local_clock", + "mesh", + "open_enum", + "pal_async", + "power_resources", + "test_with_tracing", + "thiserror", + "time", + "tracelimit", + "tracing", + "vm_resource", + "vmcore", + "x86defs", +] + +[[package]] +name = "chipset_arc_mutex_device" +version = "0.0.0" +dependencies = [ + "arc_cyclic_builder", + "chipset_device", + "closeable_mutex", + "parking_lot", + "range_map_vec", + "thiserror", + "tracing", +] + +[[package]] +name = "chipset_device" +version = "0.0.0" +dependencies = [ + "inspect", + "mesh", +] + +[[package]] +name = "chipset_device_fuzz" +version = "0.0.0" +dependencies = [ + "arbitrary", + "chipset_arc_mutex_device", + "chipset_device", + "closeable_mutex", + "futures", + "parking_lot", + "range_map_vec", + "tracing", + "zerocopy", +] + +[[package]] +name = "chipset_device_resources" +version = "0.0.0" +dependencies = [ + "async-trait", + "chipset_device", + "guestmem", + "inspect", + "vm_resource", + "vmcore", +] + +[[package]] +name = "chipset_legacy" +version = "0.0.0" +dependencies = [ + "chipset", + "chipset_device", + "floppy", + "floppy_pcat_stub", + "guestmem", + "inspect", + "local_clock", + "memory_range", + "mesh", + "open_enum", + "pal_async", + "pci_bus", + "pci_core", + "thiserror", + "tracelimit", + "tracing", + "vmcore", +] + +[[package]] +name = "chipset_resources" +version = "0.0.0" +dependencies = [ + "arbitrary", + "inspect", + "mesh", + "vm_resource", +] + +[[package]] +name = "chrono" +version = "0.4.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" +dependencies = [ + "num-traits", +] + +[[package]] +name = "ci_logger" +version = "0.0.0" +dependencies = [ + "env_logger", + "log", +] + +[[package]] +name = "ciborium" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" +dependencies = [ + "ciborium-io", + "ciborium-ll", + "serde", +] + +[[package]] +name = "ciborium-io" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" + +[[package]] +name = "ciborium-ll" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" +dependencies = [ + "ciborium-io", + "half", +] + +[[package]] +name = "clap" +version = "4.4.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e578d6ec4194633722ccf9544794b71b1385c3c027efe0c55db226fc880865c" +dependencies = [ + "clap_builder", + "clap_derive", +] + +[[package]] +name = "clap_builder" +version = "4.4.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4df4df40ec50c46000231c914968278b1eb05098cf8f1b3a518a95030e71d1c7" +dependencies = [ + "anstream", + "anstyle", + "clap_lex", + "strsim", +] + +[[package]] +name = "clap_derive" +version = "4.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "clap_dyn_complete" +version = "0.0.0" +dependencies = [ + "async-trait", + "clap", + "futures", + "log", +] + +[[package]] +name = "clap_lex" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" + +[[package]] +name = "clipboard-win" +version = "5.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c57002a5d9be777c1ef967e33674dac9ebd310d8893e4e3437b14d5f0f6372cc" +dependencies = [ + "error-code", +] + +[[package]] +name = "closeable_mutex" +version = "0.0.0" +dependencies = [ + "parking_lot", +] + +[[package]] +name = "cobs" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67ba02a97a2bd10f4b59b25c7973101c79642302776489e030cd13cdab09ed15" + +[[package]] +name = "color_quant" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" + +[[package]] +name = "colorchoice" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" + +[[package]] +name = "concurrent-queue" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "consomme" +version = "0.0.0" +dependencies = [ + "futures", + "getrandom", + "inspect", + "libc", + "mesh", + "pal_async", + "resolv-conf", + "smoltcp", + "socket2", + "thiserror", + "tracing", + "windows-sys 0.52.0", +] + +[[package]] +name = "const-oid" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" + +[[package]] +name = "core-foundation" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" + +[[package]] +name = "cpufeatures" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" +dependencies = [ + "libc", +] + +[[package]] +name = "crc" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe" +dependencies = [ + "crc-catalog", +] + +[[package]] +name = "crc-catalog" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" + +[[package]] +name = "crc32fast" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "criterion" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f" +dependencies = [ + "anes", + "cast", + "ciborium", + "clap", + "criterion-plot", + "futures", + "is-terminal", + "itertools", + "num-traits", + "once_cell", + "oorandom", + "rayon", + "regex", + "serde", + "serde_derive", + "serde_json", + "tinytemplate", + "walkdir", +] + +[[package]] +name = "criterion-plot" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" +dependencies = [ + "cast", + "itertools", +] + +[[package]] +name = "crossbeam-deque" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" +dependencies = [ + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" + +[[package]] +name = "crossterm" +version = "0.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" +dependencies = [ + "bitflags 2.4.2", + "crossterm_winapi", + "libc", + "mio", + "parking_lot", + "signal-hook", + "signal-hook-mio", + "winapi", +] + +[[package]] +name = "crossterm_winapi" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" +dependencies = [ + "winapi", +] + +[[package]] +name = "crypto-common" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "ctrlc" +version = "3.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b467862cc8610ca6fc9a1532d7777cee0804e678ab45410897b9396495994a0b" +dependencies = [ + "nix 0.27.1", + "windows-sys 0.52.0", +] + +[[package]] +name = "cvm_tracing" +version = "0.0.0" +dependencies = [ + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "debug_ptr" +version = "0.0.0" + +[[package]] +name = "debug_worker" +version = "0.0.0" +dependencies = [ + "anyhow", + "debug_worker_defs", + "futures", + "gdbstub", + "inspect", + "mesh", + "mesh_worker", + "pal_async", + "socket2", + "tracelimit", + "tracing", + "vmm_core_defs", + "vmsocket", +] + +[[package]] +name = "debug_worker_defs" +version = "0.0.0" +dependencies = [ + "mesh", + "mesh_worker", + "vmm_core_defs", + "vmsocket", +] + +[[package]] +name = "der" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c" +dependencies = [ + "const-oid", + "der_derive", + "zeroize", +] + +[[package]] +name = "der_derive" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fe87ce4529967e0ba1dcf8450bab64d97dfd5010a6256187ffe2e43e6f0e049" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "deranged" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" +dependencies = [ + "powerfmt", +] + +[[package]] +name = "derive-into-owned" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c9d94d81e3819a7b06a8638f448bc6339371ca9b6076a99d4a43eece3c4c923" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "derive_arbitrary" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "device_emulators" +version = "0.0.0" + +[[package]] +name = "diag_client" +version = "0.0.0" +dependencies = [ + "anyhow", + "diag_proto", + "fs-err", + "futures", + "guid", + "inspect", + "inspect_proto", + "mesh", + "mesh_rpc", + "pal_async", + "socket2", + "thiserror", + "unix_socket", + "vmsocket", + "windows-sys 0.52.0", +] + +[[package]] +name = "diag_proto" +version = "0.0.0" +dependencies = [ + "inspect", + "mesh", + "mesh_build", + "mesh_rpc", + "prost", + "prost-build", +] + +[[package]] +name = "diag_server" +version = "0.0.0" +dependencies = [ + "anyhow", + "azure_profiler_proto", + "build_rs_guest_arch", + "diag_proto", + "fs-err", + "futures", + "futures-concurrency", + "hvdef", + "inspect", + "inspect_proto", + "libc", + "mesh", + "mesh_rpc", + "net_packet_capture", + "pal", + "pal_async", + "parking_lot", + "profiler_worker", + "safe_x86_intrinsics", + "socket2", + "tracing", + "underhill_confidentiality", + "unix_socket", + "vmsocket", +] + +[[package]] +name = "diff" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "crypto-common", +] + +[[package]] +name = "dirs" +version = "5.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" +dependencies = [ + "dirs-sys", +] + +[[package]] +name = "dirs-sys" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" +dependencies = [ + "libc", + "option-ext", + "redox_users", + "windows-sys 0.48.0", +] + +[[package]] +name = "disk_backend" +version = "0.0.0" +dependencies = [ + "async-trait", + "futures", + "guestmem", + "inspect", + "scsi_buffers", + "stackfuture", + "thiserror", + "vm_resource", +] + +[[package]] +name = "disk_backend_resources" +version = "0.0.0" +dependencies = [ + "mesh", + "vm_resource", +] + +[[package]] +name = "disk_blob" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "blocking", + "disk_backend", + "disk_backend_resources", + "guestmem", + "http", + "http-body-util", + "hyper", + "hyper-tls", + "hyper-util", + "inspect", + "once_cell", + "scsi_buffers", + "stackfuture", + "thiserror", + "tokio", + "vhd1_defs", + "vm_resource", + "zerocopy", +] + +[[package]] +name = "disk_blockdevice" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "bitfield-struct", + "blocking", + "disk_backend", + "event-listener", + "fs-err", + "futures", + "guestmem", + "hvdef", + "inspect", + "io-uring", + "libc", + "mesh", + "nix 0.26.4", + "nvme_common", + "nvme_spec", + "once_cell", + "open_enum", + "pal", + "pal_async", + "pal_uring", + "scsi_buffers", + "stackfuture", + "tempfile", + "thiserror", + "tracing", + "uevent", + "vm_resource", + "zerocopy", +] + +[[package]] +name = "disk_file" +version = "0.0.0" +dependencies = [ + "blocking", + "disk_backend", + "disk_backend_resources", + "guestmem", + "inspect", + "scsi_buffers", + "stackfuture", + "vm_resource", +] + +[[package]] +name = "disk_nvme" +version = "0.0.0" +dependencies = [ + "async-trait", + "disk_backend", + "inspect", + "nvme_common", + "nvme_driver", + "nvme_spec", + "pal", + "scsi_buffers", + "stackfuture", +] + +[[package]] +name = "disk_prwrap" +version = "0.0.0" +dependencies = [ + "async-trait", + "disk_backend", + "disk_backend_resources", + "inspect", + "parking_lot", + "scsi_buffers", + "stackfuture", + "tracing", + "vm_resource", +] + +[[package]] +name = "disk_ramdisk" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "disk_backend", + "disk_backend_resources", + "event-listener", + "guestmem", + "inspect", + "pal_async", + "parking_lot", + "scsi_buffers", + "stackfuture", + "thiserror", + "tracing", + "vm_resource", + "zerocopy", +] + +[[package]] +name = "disk_striped" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "disk_backend", + "disk_backend_resources", + "disk_ramdisk", + "futures", + "guestmem", + "hvdef", + "inspect", + "pal_async", + "scsi_buffers", + "stackfuture", + "thiserror", + "tracelimit", + "tracing", + "vm_resource", +] + +[[package]] +name = "disk_vhd1" +version = "0.0.0" +dependencies = [ + "disk_backend", + "disk_backend_resources", + "disk_file", + "guestmem", + "guid", + "inspect", + "pal_async", + "scsi_buffers", + "stackfuture", + "tempfile", + "thiserror", + "vhd1_defs", + "vm_resource", + "zerocopy", +] + +[[package]] +name = "disk_vhdmp" +version = "0.0.0" +dependencies = [ + "disk_backend", + "disk_file", + "disk_vhd1", + "futures", + "guid", + "inspect", + "mesh", + "scsi_buffers", + "stackfuture", + "tempfile", + "thiserror", + "vm_resource", + "winapi", +] + +[[package]] +name = "either" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" + +[[package]] +name = "elfcore" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "051a3f44a8f1d574d13116351c3f2bc466801495d52578d1d34ac4ddbcd6ecb4" +dependencies = [ + "libc", + "nix 0.26.4", + "smallvec", + "thiserror", + "tracing", + "zerocopy", +] + +[[package]] +name = "embed-resource" +version = "2.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6985554d0688b687c5cb73898a34fbe3ad6c24c58c238a4d91d5e840670ee9d" +dependencies = [ + "cc", + "memchr", + "rustc_version", + "toml", + "vswhom", + "winreg", +] + +[[package]] +name = "embedded-io" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" + +[[package]] +name = "encoding_rs" +version = "0.8.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "encoding_rs_io" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cc3c5651fb62ab8aa3103998dade57efdd028544bd300516baa31840c252a83" +dependencies = [ + "encoding_rs", +] + +[[package]] +name = "endian-type" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d" + +[[package]] +name = "enumflags2" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939" +dependencies = [ + "enumflags2_derive", +] + +[[package]] +name = "enumflags2_derive" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "env_logger" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" +dependencies = [ + "humantime", + "is-terminal", + "log", + "regex", + "termcolor", +] + +[[package]] +name = "equivalent" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" + +[[package]] +name = "errno" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" +dependencies = [ + "libc", + "windows-sys 0.52.0", +] + +[[package]] +name = "error-code" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "281e452d3bad4005426416cdba5ccfd4f5c1280e10099e21db27f7c1c28347fc" + +[[package]] +name = "event-listener" +version = "5.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" +dependencies = [ + "concurrent-queue", + "parking", + "pin-project-lite", +] + +[[package]] +name = "event-listener-strategy" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" +dependencies = [ + "event-listener", + "pin-project-lite", +] + +[[package]] +name = "fast_select" +version = "0.0.0" +dependencies = [ + "futures", + "pal_async", + "parking_lot", +] + +[[package]] +name = "fastrand" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" + +[[package]] +name = "fatfs" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05669f8e7e2d7badc545c513710f0eba09c2fbef683eb859fd79c46c355048e0" +dependencies = [ + "bitflags 1.3.2", + "byteorder", + "log", +] + +[[package]] +name = "fd-lock" +version = "4.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e5768da2206272c81ef0b5e951a41862938a6070da63bcea197899942d3b947" +dependencies = [ + "cfg-if", + "rustix", + "windows-sys 0.52.0", +] + +[[package]] +name = "fdeflate" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" +dependencies = [ + "simd-adler32", +] + +[[package]] +name = "fdt" +version = "0.0.0" +dependencies = [ + "zerocopy", + "zerocopy_helpers", +] + +[[package]] +name = "filepath" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7faa16fcec147281a1719947edb44af4f9124964bf7476bd5f5356a48e44dcc" +dependencies = [ + "libc", + "winapi", +] + +[[package]] +name = "firmware_pcat" +version = "0.0.0" +dependencies = [ + "chipset_device", + "generation_id", + "getrandom", + "guestmem", + "guid", + "inspect", + "memory_range", + "mesh", + "open_enum", + "static_assertions", + "thiserror", + "tracelimit", + "tracing", + "vm_topology", + "vmcore", + "zerocopy", +] + +[[package]] +name = "firmware_uefi" +version = "0.0.0" +dependencies = [ + "async-trait", + "bitfield-struct", + "chipset_device", + "der", + "firmware_uefi_custom_vars", + "generation_id", + "getrandom", + "guestmem", + "guid", + "inspect", + "local_clock", + "mesh", + "open_enum", + "openssl", + "pal_async", + "test_with_tracing", + "thiserror", + "time", + "tracelimit", + "tracing", + "ucs2 0.0.0", + "uefi_nvram_specvars", + "uefi_nvram_storage", + "uefi_specs", + "vmcore", + "watchdog_core", + "wchar", + "zerocopy", +] + +[[package]] +name = "firmware_uefi_custom_vars" +version = "0.0.0" +dependencies = [ + "guid", + "mesh_protobuf", + "thiserror", + "uefi_specs", +] + +[[package]] +name = "fixedbitset" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" + +[[package]] +name = "flate2" +version = "1.0.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" +dependencies = [ + "crc32fast", + "miniz_oxide", +] + +[[package]] +name = "floppy" +version = "0.0.0" +dependencies = [ + "arrayvec", + "bitfield-struct", + "chipset_device", + "disk_backend", + "guestmem", + "inspect", + "mesh", + "open_enum", + "scsi_buffers", + "thiserror", + "tracelimit", + "tracing", + "vmcore", +] + +[[package]] +name = "floppy_pcat_stub" +version = "0.0.0" +dependencies = [ + "arrayvec", + "bitfield-struct", + "chipset_device", + "inspect", + "mesh", + "open_enum", + "tracelimit", + "tracing", + "vmcore", +] + +[[package]] +name = "floppy_resources" +version = "0.0.0" +dependencies = [ + "mesh", + "vm_resource", +] + +[[package]] +name = "flowey" +version = "0.0.0" +dependencies = [ + "anyhow", + "flowey_core", + "fs-err", + "log", + "serde", +] + +[[package]] +name = "flowey_cli" +version = "0.0.0" +dependencies = [ + "anyhow", + "ci_logger", + "clap", + "flowey_core", + "fs-err", + "log", + "parking_lot", + "petgraph", + "schema_ado_yaml", + "serde", + "serde_json", + "serde_yaml", + "toml_edit", + "xshell", +] + +[[package]] +name = "flowey_core" +version = "0.0.0" +dependencies = [ + "anyhow", + "fs-err", + "linkme", + "serde", + "serde_json", + "serde_yaml", +] + +[[package]] +name = "flowey_hvlite" +version = "0.0.0" +dependencies = [ + "anyhow", + "clap", + "flowey", + "flowey_cli", + "flowey_lib_common", + "flowey_lib_hvlite", + "log", + "serde", + "target-lexicon", +] + +[[package]] +name = "flowey_lib_common" +version = "0.0.0" +dependencies = [ + "anyhow", + "dirs", + "flowey", + "fs-err", + "home", + "log", + "rlimit", + "rustc-hash", + "serde", + "target-lexicon", + "toml_edit", + "which 6.0.0", + "xshell", +] + +[[package]] +name = "flowey_lib_hvlite" +version = "0.0.0" +dependencies = [ + "anyhow", + "flowey", + "flowey_lib_common", + "fs-err", + "igvmfilegen_config", + "log", + "serde", + "serde_json", + "target-lexicon", + "vmm_test_images", + "which 6.0.0", + "xshell", +] + +[[package]] +name = "flowey_trampoline" +version = "0.0.0" + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + +[[package]] +name = "framebuffer" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "chipset_device", + "guestmem", + "inspect", + "memory_range", + "mesh", + "parking_lot", + "sparse_mmap", + "tracing", + "video_core", + "vm_resource", + "vmcore", +] + +[[package]] +name = "fs-err" +version = "2.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41" +dependencies = [ + "autocfg", +] + +[[package]] +name = "fscommon" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "315ce685aca5ddcc5a3e7e436ef47d4a5d0064462849b6f0f628c28140103531" +dependencies = [ + "log", +] + +[[package]] +name = "funty" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" + +[[package]] +name = "fuse" +version = "0.0.0" +dependencies = [ + "libc", + "lx", + "parking_lot", + "tempfile", + "test_with_tracing", + "thiserror", + "tracing", + "zerocopy", +] + +[[package]] +name = "futures" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-concurrency" +version = "7.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef6712e11cdeed5c8cf21ea0b90fec40fbe64afc9bbf2339356197eeca829fc3" +dependencies = [ + "bitvec", + "futures-core", + "pin-project", + "slab", + "smallvec", +] + +[[package]] +name = "futures-core" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" + +[[package]] +name = "futures-executor" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" + +[[package]] +name = "futures-lite" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" +dependencies = [ + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "futures-macro" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "futures-sink" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" + +[[package]] +name = "futures-task" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" + +[[package]] +name = "futures-util" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "slab", +] + +[[package]] +name = "fuzz_chipset" +version = "0.0.0" +dependencies = [ + "arbitrary", + "chipset", + "chipset_device_fuzz", + "chipset_resources", + "libfuzzer-sys", + "local_clock", + "mesh", + "pal_async", + "vmcore", + "xtask_fuzz", +] + +[[package]] +name = "fuzz_firmware_uefi" +version = "0.0.0" +dependencies = [ + "arbitrary", + "firmware_uefi", + "guid", + "libfuzzer-sys", + "openssl", + "ucs2 0.0.0", + "uefi_nvram_specvars", + "xtask_fuzz", + "zerocopy", +] + +[[package]] +name = "fuzz_guestmem" +version = "0.0.0" +dependencies = [ + "arbitrary", + "guestmem", + "libfuzzer-sys", + "smallvec", + "sparse_mmap", + "xtask_fuzz", +] + +[[package]] +name = "fuzz_ide" +version = "0.0.0" +dependencies = [ + "arbitrary", + "chipset_arc_mutex_device", + "chipset_device", + "chipset_device_fuzz", + "disk_ramdisk", + "guestmem", + "ide", + "libfuzzer-sys", + "pci_core", + "scsidisk", + "vmcore", + "xtask_fuzz", +] + +[[package]] +name = "fuzz_inspect" +version = "0.0.0" +dependencies = [ + "arbitrary", + "futures", + "inspect", + "libfuzzer-sys", + "xtask_fuzz", +] + +[[package]] +name = "fuzz_mesh_ttrpc" +version = "0.0.0" +dependencies = [ + "futures", + "libfuzzer-sys", + "mesh", + "mesh_build", + "mesh_rpc", + "pal_async", + "prost", + "prost-build", + "tempfile", + "unix_socket", + "xtask_fuzz", +] + +[[package]] +name = "fuzz_scsi_buffers" +version = "0.0.0" +dependencies = [ + "arbitrary", + "guestmem", + "libfuzzer-sys", + "scsi_buffers", + "xtask_fuzz", +] + +[[package]] +name = "fuzz_sparse_mmap" +version = "0.0.0" +dependencies = [ + "arbitrary", + "libfuzzer-sys", + "sparse_mmap", + "xtask_fuzz", +] + +[[package]] +name = "fuzz_ucs2" +version = "0.0.0" +dependencies = [ + "arbitrary", + "libfuzzer-sys", + "ucs2 0.0.0", + "xtask_fuzz", +] + +[[package]] +name = "fuzz_x86emu" +version = "0.0.0" +dependencies = [ + "arbitrary", + "futures", + "libfuzzer-sys", + "x86defs", + "x86emu", + "xtask_fuzz", +] + +[[package]] +name = "gdbstub" +version = "0.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4e02bf1b1a624d96925c608f1b268d82a76cbc587ce9e59f7c755e9ea11c75c" +dependencies = [ + "bitflags 1.3.2", + "cfg-if", + "log", + "managed", + "num-traits", + "paste", +] + +[[package]] +name = "gdma" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "chipset_device", + "device_emulators", + "futures", + "gdma_defs", + "gdma_resources", + "guestmem", + "inspect", + "net_backend", + "net_backend_resources", + "parking_lot", + "pci_core", + "pci_resources", + "slab", + "task_control", + "thiserror", + "tracing", + "vm_resource", + "vmcore", + "zerocopy", +] + +[[package]] +name = "gdma_defs" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "guestmem", + "inspect", + "open_enum", + "zerocopy", +] + +[[package]] +name = "gdma_resources" +version = "0.0.0" +dependencies = [ + "mesh", + "net_backend_resources", + "vm_resource", +] + +[[package]] +name = "generation_id" +version = "0.0.0" +dependencies = [ + "getrandom", + "guestmem", + "inspect", + "mesh", + "tracelimit", + "tracing", + "vmcore", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "get_helpers" +version = "0.0.0" +dependencies = [ + "get_protocol", + "guid", + "zerocopy", +] + +[[package]] +name = "get_protocol" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "guid", + "open_enum", + "serde", + "serde_helpers", + "serde_json", + "static_assertions", + "zerocopy", +] + +[[package]] +name = "get_resources" +version = "0.0.0" +dependencies = [ + "mesh", + "thiserror", + "vm_resource", +] + +[[package]] +name = "getrandom" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "gimli" +version = "0.28.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" + +[[package]] +name = "glob" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" + +[[package]] +name = "globset" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1" +dependencies = [ + "aho-corasick", + "bstr", + "log", + "regex-automata 0.4.3", + "regex-syntax 0.8.2", +] + +[[package]] +name = "gptman" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b6ee4a804a77da3ec5d3738c44fbe34c0ecc7f0fdc0ab3a96d989f78a57fe74" +dependencies = [ + "bincode", + "crc", + "nix 0.26.4", + "serde", + "thiserror", +] + +[[package]] +name = "grep-matcher" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47a3141a10a43acfedc7c98a60a834d7ba00dfe7bec9071cbfc19b55b292ac02" +dependencies = [ + "memchr", +] + +[[package]] +name = "grep-regex" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f748bb135ca835da5cbc67ca0e6955f968db9c5df74ca4f56b18e1ddbc68230d" +dependencies = [ + "bstr", + "grep-matcher", + "log", + "regex-automata 0.4.3", + "regex-syntax 0.8.2", +] + +[[package]] +name = "grep-searcher" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba536ae4f69bec62d8839584dd3153d3028ef31bb229f04e09fb5a9e5a193c54" +dependencies = [ + "bstr", + "encoding_rs", + "encoding_rs_io", + "grep-matcher", + "log", + "memchr", + "memmap2", +] + +[[package]] +name = "guest_crash_device" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "get_protocol", + "get_resources", + "guid", + "inspect", + "mesh", + "task_control", + "tracing", + "vm_resource", + "vmbus_async", + "vmbus_channel", + "vmcore", + "zerocopy", +] + +[[package]] +name = "guest_emulation_device" +version = "0.0.0" +dependencies = [ + "async-trait", + "futures", + "get_protocol", + "get_resources", + "guid", + "inspect", + "mesh", + "pal_async", + "parking_lot", + "power_resources", + "serde_json", + "task_control", + "thiserror", + "time", + "tracing", + "video_core", + "vm_resource", + "vmbus_async", + "vmbus_channel", + "vmbus_ring", + "vmcore", + "zerocopy", + "zerocopy_helpers", +] + +[[package]] +name = "guest_emulation_log" +version = "0.0.0" +dependencies = [ + "async-trait", + "get_protocol", + "get_resources", + "inspect", + "serde", + "serde_json", + "task_control", + "thiserror", + "tracing", + "vm_resource", + "vmbus_async", + "vmbus_channel", + "vmbus_ring", + "vmcore", + "zerocopy", + "zerocopy_helpers", +] + +[[package]] +name = "guest_emulation_transport" +version = "0.0.0" +dependencies = [ + "chipset_resources", + "futures", + "futures-concurrency", + "get_protocol", + "getrandom", + "guest_emulation_device", + "guestmem", + "guid", + "hvdef", + "inspect", + "inspect_counters", + "mesh", + "pal_async", + "parking_lot", + "power_resources", + "serde_json", + "shared_pool_alloc", + "test_with_tracing", + "thiserror", + "tracing", + "tracing_helpers", + "underhill_config", + "unicycle", + "vm_resource", + "vmbus_async", + "vmbus_ring", + "vmbus_user_channel", + "vpci", + "zerocopy", + "zerocopy_helpers", +] + +[[package]] +name = "guest_test_uefi" +version = "0.0.0" +dependencies = [ + "uefi", +] + +[[package]] +name = "guest_watchdog" +version = "0.0.0" +dependencies = [ + "chipset_device", + "inspect", + "mesh", + "open_enum", + "tracelimit", + "vmcore", + "watchdog_core", +] + +[[package]] +name = "guestmem" +version = "0.0.0" +dependencies = [ + "inspect", + "pal_event", + "sparse_mmap", + "thiserror", + "zerocopy", +] + +[[package]] +name = "guid" +version = "0.0.0" +dependencies = [ + "getrandom", + "inspect", + "mesh_protobuf", + "thiserror", + "winapi", + "windows-sys 0.52.0", + "zerocopy", +] + +[[package]] +name = "h2" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205" +dependencies = [ + "atomic-waker", + "bytes", + "fnv", + "futures-core", + "futures-sink", + "http", + "indexmap", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "half" +version = "1.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" + +[[package]] +name = "hashbrown" +version = "0.14.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" + +[[package]] +name = "hcl" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "build_rs_guest_arch", + "getrandom", + "hvdef", + "libc", + "memory_range", + "nix 0.26.4", + "open_enum", + "pal", + "parking_lot", + "safe_x86_intrinsics", + "sidecar_client", + "signal-hook", + "tdcall", + "thiserror", + "tracelimit", + "tracing", + "vtl_array", + "x86defs", + "zerocopy", +] + +[[package]] +name = "hcl_compat_uefi_nvram_storage" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "guid", + "inspect", + "open_enum", + "pal_async", + "static_assertions", + "thiserror", + "tracing", + "ucs2 0.0.0", + "uefi_nvram_storage", + "wchar", + "zerocopy", + "zerocopy_helpers", +] + +[[package]] +name = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" + +[[package]] +name = "hermit-abi" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" +dependencies = [ + "serde", +] + +[[package]] +name = "home" +version = "0.5.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" +dependencies = [ + "windows-sys 0.52.0", +] + +[[package]] +name = "host_fdt_parser" +version = "0.0.0" +dependencies = [ + "arrayvec", + "fdt", + "hvdef", + "igvm_defs", + "inspect", + "memory_range", + "tracing", +] + +[[package]] +name = "http" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http", +] + +[[package]] +name = "http-body-util" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" +dependencies = [ + "bytes", + "futures-util", + "http", + "http-body", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" + +[[package]] +name = "humantime" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" + +[[package]] +name = "hv1_emulator" +version = "0.0.0" +dependencies = [ + "build_rs_guest_arch", + "guestmem", + "hvdef", + "inspect", + "parking_lot", + "tracelimit", + "tracing", + "virt", + "vm_topology", + "vmcore", + "vtl_array", + "x86defs", + "zerocopy", +] + +[[package]] +name = "hv1_hypercall" +version = "0.0.0" +dependencies = [ + "guestmem", + "hvdef", + "open_enum", + "sparse_mmap", + "test_with_tracing", + "thiserror", + "tracelimit", + "tracing", + "zerocopy", +] + +[[package]] +name = "hvdef" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "open_enum", + "static_assertions", + "zerocopy", +] + +[[package]] +name = "hvlite_core" +version = "0.0.0" +dependencies = [ + "aarch64defs", + "acpi", + "anyhow", + "async-trait", + "build_rs_guest_arch", + "cache_topology", + "cfg-if", + "chipset_device_resources", + "chipset_legacy", + "debug_ptr", + "disk_backend", + "fdt", + "firmware_pcat", + "firmware_uefi", + "firmware_uefi_custom_vars", + "floppy", + "floppy_resources", + "framebuffer", + "futures", + "futures-concurrency", + "get_resources", + "getrandom", + "guestmem", + "guid", + "hcl_compat_uefi_nvram_storage", + "hvdef", + "hvlite_defs", + "hvlite_pcat_locator", + "ide", + "ide_resources", + "igvm", + "igvm_defs", + "input_core", + "inspect", + "loader", + "local_clock", + "membacking", + "memory_range", + "mesh", + "mesh_worker", + "missing_dev", + "page_table", + "pal", + "pal_async", + "pci_bus", + "pci_core", + "range_map_vec", + "scsi_core", + "scsidisk", + "serial_16550_resources", + "sparse_mmap", + "state_unit", + "storvsp", + "thiserror", + "tracing", + "tracing_helpers", + "uefi_nvram_storage", + "virt", + "virt_hvf", + "virt_kvm", + "virt_mshv", + "virt_whp", + "virtio", + "virtio_serial", + "vm_loader", + "vm_resource", + "vm_topology", + "vmbus_channel", + "vmbus_server", + "vmcore", + "vmgs", + "vmgs_broker", + "vmm_core", + "vmm_core_defs", + "vmotherboard", + "vmswitch", + "vpci", + "watchdog_core", + "watchdog_vmgs_format", + "zerocopy", +] + +[[package]] +name = "hvlite_defs" +version = "0.0.0" +dependencies = [ + "anyhow", + "build_rs_guest_arch", + "firmware_uefi_custom_vars", + "floppy_resources", + "framebuffer", + "get_resources", + "guid", + "hvlite_pcat_locator", + "ide_resources", + "input_core", + "memory_range", + "mesh", + "mesh_worker", + "net_backend_resources", + "thiserror", + "unix_socket", + "virt", + "virt_whp", + "vm_resource", + "vmbus_proxy", + "vmm_core_defs", + "vmotherboard", +] + +[[package]] +name = "hvlite_entry" +version = "0.0.0" +dependencies = [ + "anyhow", + "awaitgroup", + "build_rs_guest_arch", + "chipset_resources", + "clap", + "clap_dyn_complete", + "debug_worker_defs", + "diag_client", + "dirs", + "disk_backend_resources", + "firmware_uefi_custom_vars", + "floppy_resources", + "framebuffer", + "fs-err", + "futures", + "futures-concurrency", + "gdma_resources", + "get_resources", + "getrandom", + "guid", + "hvlite_defs", + "hvlite_helpers", + "hvlite_pcat_locator", + "hvlite_ttrpc_vmservice", + "hyperv_ic_resources", + "hyperv_secure_boot_templates", + "hyperv_uefi_custom_vars_json", + "ide_resources", + "input_core", + "inspect", + "inspect_proto", + "macaddr", + "mcr_resources", + "mesh", + "mesh_process", + "mesh_rpc", + "mesh_worker", + "net_backend_resources", + "netvsp_resources", + "nvme_resources", + "openssl", + "pal", + "pal_async", + "parking_lot", + "prost", + "rustyline", + "scsidisk_resources", + "serial_16550_resources", + "serial_socket", + "shell-words", + "sparse_mmap", + "storvsp_resources", + "term", + "thiserror", + "tpm_resources", + "tracelimit", + "tracing", + "tracing-subscriber", + "tracing_helpers", + "uidevices_resources", + "unix_socket", + "video_core", + "virt_whp", + "virtio_resources", + "vm_manifest_builder", + "vm_resource", + "vmbfs_resources", + "vmbus_core", + "vmbus_proxy", + "vmbus_serial_resources", + "vmcore", + "vmgs_format", + "vmgs_resources", + "vmm_core_defs", + "vmotherboard", + "vmswitch", + "vnc_worker_defs", + "vtl2_settings_proto", + "whp", + "win_etw_tracing", + "winapi", +] + +[[package]] +name = "hvlite_helpers" +version = "0.0.0" +dependencies = [ + "anyhow", + "disk_backend_resources", + "disk_vhd1", + "disk_vhdmp", + "futures", + "futures-concurrency", + "get_resources", + "hvlite_defs", + "mesh", + "pal_async", + "tempfile", + "tracing", + "unicycle", + "vm_resource", +] + +[[package]] +name = "hvlite_pcat_locator" +version = "0.0.0" +dependencies = [ + "anyhow", + "fs-err", + "mesh", + "object", + "tracing", +] + +[[package]] +name = "hvlite_ttrpc_vmservice" +version = "0.0.0" +dependencies = [ + "mesh", + "mesh_build", + "mesh_rpc", + "prost", + "prost-build", +] + +[[package]] +name = "hyper" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "h2", + "http", + "http-body", + "httparse", + "itoa", + "pin-project-lite", + "smallvec", + "tokio", + "want", +] + +[[package]] +name = "hyper-tls" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" +dependencies = [ + "bytes", + "http-body-util", + "hyper", + "hyper-util", + "native-tls", + "tokio", + "tokio-native-tls", + "tower-service", +] + +[[package]] +name = "hyper-util" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cde7055719c54e36e95e8719f95883f22072a48ede39db7fc17a4e1d5281e9b9" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http", + "http-body", + "hyper", + "pin-project-lite", + "socket2", + "tokio", + "tower", + "tower-service", + "tracing", +] + +[[package]] +name = "hyperv_ic" +version = "0.0.0" +dependencies = [ + "async-trait", + "futures", + "futures-concurrency", + "hyperv_ic_protocol", + "hyperv_ic_resources", + "inspect", + "mesh", + "task_control", + "thiserror", + "tracing", + "vm_resource", + "vmbus_async", + "vmbus_channel", + "vmcore", + "zerocopy", + "zerocopy_helpers", +] + +[[package]] +name = "hyperv_ic_guest" +version = "0.0.0" +dependencies = [ + "guid", + "hyperv_ic_protocol", + "hyperv_ic_resources", + "inspect", + "mesh", + "task_control", + "thiserror", + "tracelimit", + "tracing", + "vmbus_async", + "vmbus_channel", + "vmbus_core", + "vmbus_relay_intercept_device", + "vmbus_ring", + "vmcore", + "zerocopy", + "zerocopy_helpers", +] + +[[package]] +name = "hyperv_ic_protocol" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "guid", + "open_enum", + "zerocopy", +] + +[[package]] +name = "hyperv_ic_resources" +version = "0.0.0" +dependencies = [ + "mesh", + "vm_resource", +] + +[[package]] +name = "hyperv_secure_boot_templates" +version = "0.0.0" +dependencies = [ + "firmware_uefi_custom_vars", + "hyperv_uefi_custom_vars_json", + "serde_json", +] + +[[package]] +name = "hyperv_uefi_custom_vars_json" +version = "0.0.0" +dependencies = [ + "base64 0.21.7", + "firmware_uefi_custom_vars", + "guid", + "serde", + "serde_helpers", + "serde_json", + "thiserror", + "zerocopy", +] + +[[package]] +name = "iced-x86" +version = "1.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdd366a53278429c028367e0ba22a46cab6d565a57afb959f06e92c7a69e7828" +dependencies = [ + "lazy_static", +] + +[[package]] +name = "ide" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "bitflags 1.3.2", + "chipset_device", + "disk_backend", + "disk_file", + "guestmem", + "ide_resources", + "inspect", + "mesh", + "open_enum", + "pal_async", + "pci_core", + "safeatomic", + "scsi_buffers", + "scsi_core", + "scsi_defs", + "scsidisk", + "static_assertions", + "tempfile", + "test_with_tracing", + "thiserror", + "tracelimit", + "tracing", + "tracing_helpers", + "vmcore", + "zerocopy", +] + +[[package]] +name = "ide_resources" +version = "0.0.0" +dependencies = [ + "inspect", + "mesh", + "scsidisk_resources", + "vm_resource", +] + +[[package]] +name = "ignore" +version = "0.4.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b46810df39e66e925525d6e38ce1e7f6e1d208f72dc39757880fcb66e2c58af1" +dependencies = [ + "crossbeam-deque", + "globset", + "log", + "memchr", + "regex-automata 0.4.3", + "same-file", + "walkdir", + "winapi-util", +] + +[[package]] +name = "igvm" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7984b10433b50e06a06bd50c69bca4888a5d7de8975f64ea4c2a7687eb99b09d" +dependencies = [ + "bitfield-struct", + "crc32fast", + "hex", + "igvm_defs", + "open-enum", + "range_map_vec", + "thiserror", + "tracing", + "zerocopy", +] + +[[package]] +name = "igvm_defs" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b64ec5588c475372ae830475d3ee9a7bd255407dcb9f03faf6d493556eb6105a" +dependencies = [ + "bitfield-struct", + "open-enum", + "static_assertions", + "zerocopy", +] + +[[package]] +name = "igvmfilegen" +version = "0.0.0" +dependencies = [ + "anyhow", + "clap", + "fs-err", + "hex", + "hvdef", + "igvm", + "igvm_defs", + "igvmfilegen_config", + "loader", + "loader_defs", + "memory_range", + "range_map_vec", + "serde", + "serde_json", + "sha2", + "thiserror", + "tracing", + "tracing-subscriber", + "underhill_confidentiality", + "vbs_defs", + "x86defs", + "zerocopy", +] + +[[package]] +name = "igvmfilegen_config" +version = "0.0.0" +dependencies = [ + "serde", + "serde_json", +] + +[[package]] +name = "image" +version = "0.24.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "034bbe799d1909622a74d1193aa50147769440040ff36cb2baa947609b0a4e23" +dependencies = [ + "bytemuck", + "byteorder", + "color_quant", + "num-traits", + "png", +] + +[[package]] +name = "indexmap" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" +dependencies = [ + "equivalent", + "hashbrown", +] + +[[package]] +name = "input_core" +version = "0.0.0" +dependencies = [ + "futures", + "mesh", + "vm_resource", +] + +[[package]] +name = "inspect" +version = "0.0.0" +dependencies = [ + "arbitrary", + "base64 0.21.7", + "bitfield-struct", + "filepath", + "futures", + "inspect_derive", + "mesh", + "pal_async", + "parking_lot", + "thiserror", +] + +[[package]] +name = "inspect_counters" +version = "0.0.0" +dependencies = [ + "inspect", +] + +[[package]] +name = "inspect_derive" +version = "0.0.0" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "inspect_proto" +version = "0.0.0" +dependencies = [ + "inspect", + "mesh", + "mesh_build", + "mesh_protobuf", + "mesh_rpc", + "prost", + "prost-build", +] + +[[package]] +name = "inspect_rlimit" +version = "0.0.0" +dependencies = [ + "cfg-if", + "inspect", + "libc", + "thiserror", +] + +[[package]] +name = "inspect_task" +version = "0.0.0" +dependencies = [ + "inspect", + "pal_async", +] + +[[package]] +name = "io-uring" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "460648e47a07a43110fbfa2e0b14afb2be920093c31e5dccc50e49568e099762" +dependencies = [ + "bitflags 1.3.2", + "libc", +] + +[[package]] +name = "is-terminal" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455" +dependencies = [ + "hermit-abi", + "rustix", + "windows-sys 0.52.0", +] + +[[package]] +name = "itertools" +version = "0.10.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "1.0.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" + +[[package]] +name = "jobserver" +version = "0.1.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" +dependencies = [ + "libc", +] + +[[package]] +name = "kmsg" +version = "0.0.0" +dependencies = [ + "thiserror", +] + +[[package]] +name = "kmsg_defs" +version = "0.0.0" + +[[package]] +name = "kvm" +version = "0.0.0" +dependencies = [ + "kvm-bindings", + "libc", + "nix 0.26.4", + "pal", + "parking_lot", + "signal-hook", + "thiserror", +] + +[[package]] +name = "kvm-bindings" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "081fbd8164229a990fbf24a1f35d287740db110c2b5d42addf460165f1b0e032" + +[[package]] +name = "landlock" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9baa9eeb6e315942429397e617a190f4fdc696ef1ee0342939d641029cbb4ea7" +dependencies = [ + "enumflags2", + "libc", + "thiserror", +] + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + +[[package]] +name = "libc" +version = "0.2.152" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" + +[[package]] +name = "libfuzzer-sys" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7" +dependencies = [ + "arbitrary", + "cc", + "once_cell", +] + +[[package]] +name = "libmimalloc-sys" +version = "0.1.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3979b5c37ece694f1f5e51e7ecc871fdb0f517ed04ee45f88d15d6d553cb9664" +dependencies = [ + "cc", + "libc", +] + +[[package]] +name = "libredox" +version = "0.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" +dependencies = [ + "bitflags 2.4.2", + "libc", + "redox_syscall", +] + +[[package]] +name = "linkme" +version = "0.3.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b53ad6a33de58864705954edb5ad5d571a010f9e296865ed43dc72a5621b430" +dependencies = [ + "linkme-impl", +] + +[[package]] +name = "linkme-impl" +version = "0.3.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04e542a18c94a9b6fcc7adb090fa3ba6b79ee220a16404f325672729f32a66ff" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "linux-raw-sys" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" + +[[package]] +name = "linux_net_bindings" +version = "0.0.0" +dependencies = [ + "nix 0.26.4", +] + +[[package]] +name = "loader" +version = "0.0.0" +dependencies = [ + "aarch64defs", + "anyhow", + "bitfield-struct", + "build_rs_guest_arch", + "crc32fast", + "guid", + "hvdef", + "igvm", + "loader_defs", + "memory_range", + "object", + "open_enum", + "page_table", + "thiserror", + "tracing", + "vm_topology", + "x86defs", + "zerocopy", +] + +[[package]] +name = "loader_defs" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "hvdef", + "inspect", + "open_enum", + "static_assertions", + "zerocopy", +] + +[[package]] +name = "local_clock" +version = "0.0.0" +dependencies = [ + "inspect", + "parking_lot", + "time", +] + +[[package]] +name = "lock_api" +version = "0.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" +dependencies = [ + "autocfg", + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" + +[[package]] +name = "lx" +version = "0.0.0" +dependencies = [ + "thiserror", +] + +[[package]] +name = "lxutil" +version = "0.0.0" +dependencies = [ + "libc", + "lx", + "ntapi", + "pal", + "parking_lot", + "tempfile", + "tracing", + "widestring", + "winapi", + "zerocopy", +] + +[[package]] +name = "macaddr" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baee0bbc17ce759db233beb01648088061bf678383130602a298e6998eedb2d8" + +[[package]] +name = "make_imc_hive" +version = "0.0.0" +dependencies = [ + "anyhow", + "windows-sys 0.52.0", +] + +[[package]] +name = "mana_driver" +version = "0.0.0" +dependencies = [ + "anyhow", + "chipset_device", + "futures", + "gdma", + "gdma_defs", + "getrandom", + "inspect", + "mesh", + "net_backend", + "net_backend_resources", + "pal_async", + "parking_lot", + "pci_core", + "test_with_tracing", + "tracing", + "user_driver", + "vmcore", + "zerocopy", +] + +[[package]] +name = "managed" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ca88d725a0a943b096803bd34e73a4437208b6077654cc4ecb2947a5f91618d" + +[[package]] +name = "matchers" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" +dependencies = [ + "regex-automata 0.1.10", +] + +[[package]] +name = "mbrman" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c487024623ae38584610237dd1be8932bb2b324474b23c37a25f9fbe6bf5e9e" +dependencies = [ + "bincode", + "bitvec", + "serde", + "serde-big-array", + "thiserror", +] + +[[package]] +name = "mcr_resources" +version = "0.0.0" +dependencies = [ + "guid", + "mesh", + "vm_resource", +] + +[[package]] +name = "membacking" +version = "0.0.0" +dependencies = [ + "futures", + "getrandom", + "guestmem", + "hvdef", + "inspect", + "memory_range", + "mesh", + "pal_async", + "parking_lot", + "slab", + "sparse_mmap", + "thiserror", + "tracing", + "virt", + "vm_topology", + "vmcore", +] + +[[package]] +name = "memchr" +version = "2.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" + +[[package]] +name = "memmap2" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45fd3a57831bf88bc63f8cebc0cf956116276e97fef3966103e96416209f7c92" +dependencies = [ + "libc", +] + +[[package]] +name = "memory_range" +version = "0.0.0" +dependencies = [ + "inspect", + "mesh_protobuf", + "thiserror", +] + +[[package]] +name = "mesh" +version = "0.0.0" +dependencies = [ + "mesh_channel", + "mesh_derive", + "mesh_node", + "mesh_protobuf", +] + +[[package]] +name = "mesh_build" +version = "0.0.0" +dependencies = [ + "heck", + "proc-macro2", + "prost-build", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "mesh_channel" +version = "0.0.0" +dependencies = [ + "futures", + "futures-concurrency", + "futures-core", + "futures-io", + "mesh_node", + "mesh_protobuf", + "pal_async", + "pal_event", + "parking_lot", + "test_with_tracing", + "thiserror", + "tracing", +] + +[[package]] +name = "mesh_derive" +version = "0.0.0" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "mesh_node" +version = "0.0.0" +dependencies = [ + "futures-channel", + "getrandom", + "mesh_derive", + "mesh_protobuf", + "open_enum", + "pal", + "pal_async", + "parking_lot", + "test_with_tracing", + "thiserror", + "tracing", + "zerocopy", +] + +[[package]] +name = "mesh_process" +version = "0.0.0" +dependencies = [ + "anyhow", + "base64 0.21.7", + "debug_ptr", + "futures", + "futures-concurrency", + "inspect", + "inspect_rlimit", + "inspect_task", + "mesh", + "mesh_remote", + "pal", + "pal_async", + "slab", + "tracing", + "unicycle", +] + +[[package]] +name = "mesh_protobuf" +version = "0.0.0" +dependencies = [ + "diff", + "fs-err", + "heck", + "mesh_derive", + "prost", + "prost-build", + "prost-types", + "socket2", + "thiserror", + "zerocopy", +] + +[[package]] +name = "mesh_remote" +version = "0.0.0" +dependencies = [ + "futures", + "futures-concurrency", + "libc", + "mesh_channel", + "mesh_node", + "mesh_protobuf", + "ntapi", + "open_enum", + "pal", + "pal_async", + "pal_event", + "parking_lot", + "socket2", + "test_with_tracing", + "thiserror", + "tracing", + "tracing_helpers", + "unicycle", + "unix_socket", + "zerocopy", +] + +[[package]] +name = "mesh_rpc" +version = "0.0.0" +dependencies = [ + "anyhow", + "base64 0.21.7", + "env_logger", + "futures", + "futures-concurrency", + "h2", + "http", + "mesh", + "mesh_build", + "pal_async", + "parking_lot", + "prost", + "prost-build", + "prost-types", + "test_with_tracing", + "thiserror", + "tokio", + "tracing", + "unicycle", + "unix_socket", + "urlencoding", + "zerocopy", +] + +[[package]] +name = "mesh_tracing" +version = "0.0.0" +dependencies = [ + "anyhow", + "futures", + "guid", + "inspect", + "mesh", + "pal_async", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "mesh_worker" +version = "0.0.0" +dependencies = [ + "anyhow", + "futures", + "futures-concurrency", + "inspect", + "linkme", + "mesh", + "pal_async", + "test_with_tracing", + "tracing", + "unicycle", +] + +[[package]] +name = "mimalloc" +version = "0.1.39" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa01922b5ea280a911e323e4d2fd24b7fe5cc4042e0d2cda3c40775cdc4bdc9c" +dependencies = [ + "libmimalloc-sys", +] + +[[package]] +name = "minimal_rt" +version = "0.0.0" +dependencies = [ + "arrayvec", + "cfg-if", + "hvdef", + "minimal_rt_build", + "zerocopy", +] + +[[package]] +name = "minimal_rt_build" +version = "0.0.0" + +[[package]] +name = "miniz_oxide" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" +dependencies = [ + "adler", + "simd-adler32", +] + +[[package]] +name = "mio" +version = "0.8.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" +dependencies = [ + "libc", + "log", + "wasi", + "windows-sys 0.48.0", +] + +[[package]] +name = "missing_dev" +version = "0.0.0" +dependencies = [ + "chipset_device", + "chipset_device_resources", + "inspect", + "missing_dev_resources", + "pci_core", + "vm_resource", + "vmcore", +] + +[[package]] +name = "missing_dev_resources" +version = "0.0.0" +dependencies = [ + "mesh", + "vm_resource", +] + +[[package]] +name = "ms-tpm-20-ref" +version = "0.1.0" +source = "git+https://github.com/microsoft/ms-tpm-20-ref-rs.git?branch=main#3e9d3874fe9273056c8e6806fc1f35493e7bdfad" +dependencies = [ + "cc", + "once_cell", + "openssl-sys", + "postcard", + "serde", + "tracing", + "walkdir", +] + +[[package]] +name = "mshv-bindings" +version = "0.1.1" +source = "git+https://github.com/rust-vmm/mshv?branch=main#7bacc75e3612fcb9c11bc7526414d70d04aa158e" +dependencies = [ + "libc", + "serde", + "serde_derive", + "vmm-sys-util", + "zerocopy", +] + +[[package]] +name = "mshv-ioctls" +version = "0.1.1" +source = "git+https://github.com/rust-vmm/mshv?branch=main#7bacc75e3612fcb9c11bc7526414d70d04aa158e" +dependencies = [ + "libc", + "mshv-bindings", + "vmm-sys-util", +] + +[[package]] +name = "multimap" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" + +[[package]] +name = "native-tls" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" +dependencies = [ + "lazy_static", + "libc", + "log", + "openssl", + "openssl-probe", + "openssl-sys", + "schannel", + "security-framework", + "security-framework-sys", + "tempfile", +] + +[[package]] +name = "net_backend" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "futures", + "futures-concurrency", + "guestmem", + "inspect", + "memory_range", + "mesh", + "net_backend_resources", + "pal_async", + "parking_lot", + "tracing", + "vm_resource", + "vm_topology", +] + +[[package]] +name = "net_backend_resources" +version = "0.0.0" +dependencies = [ + "guid", + "inspect", + "mesh", + "thiserror", + "vm_resource", +] + +[[package]] +name = "net_consomme" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "consomme", + "inspect", + "inspect_counters", + "net_backend", + "net_backend_resources", + "pal_async", + "parking_lot", + "tracing", + "vm_resource", +] + +[[package]] +name = "net_dio" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "guid", + "inspect", + "net_backend", + "net_backend_resources", + "pal_async", + "parking_lot", + "tracing", + "vm_resource", + "vmswitch", +] + +[[package]] +name = "net_mana" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "chipset_device", + "futures", + "gdma", + "gdma_defs", + "guestmem", + "inspect", + "mana_driver", + "mesh", + "net_backend", + "pal_async", + "pci_core", + "test_with_tracing", + "tracelimit", + "tracing", + "user_driver", + "vmcore", + "zerocopy", +] + +[[package]] +name = "net_packet_capture" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "futures", + "futures-concurrency", + "guestmem", + "inspect", + "mesh", + "net_backend", + "parking_lot", + "pcap-file", + "tracing", +] + +[[package]] +name = "net_tap" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "futures", + "inspect", + "libc", + "linux_net_bindings", + "net_backend", + "net_backend_resources", + "pal_async", + "parking_lot", + "thiserror", + "tracing", + "vm_resource", +] + +[[package]] +name = "netvsp" +version = "0.0.0" +dependencies = [ + "anyhow", + "arrayvec", + "async-trait", + "bitfield-struct", + "event-listener", + "futures", + "futures-concurrency", + "guestmem", + "guid", + "hvdef", + "inspect", + "inspect_counters", + "mesh", + "net_backend", + "net_backend_resources", + "netvsp_resources", + "open_enum", + "pal_async", + "parking_lot", + "safeatomic", + "task_control", + "test_with_tracing", + "thiserror", + "tracelimit", + "tracing", + "vm_resource", + "vmbus_async", + "vmbus_channel", + "vmbus_core", + "vmbus_ring", + "vmcore", + "zerocopy", +] + +[[package]] +name = "netvsp_resources" +version = "0.0.0" +dependencies = [ + "guid", + "mesh", + "net_backend_resources", + "vm_resource", +] + +[[package]] +name = "nibble_vec" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43" +dependencies = [ + "smallvec", +] + +[[package]] +name = "nix" +version = "0.26.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" +dependencies = [ + "bitflags 1.3.2", + "cfg-if", + "libc", +] + +[[package]] +name = "nix" +version = "0.27.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" +dependencies = [ + "bitflags 2.4.2", + "cfg-if", + "libc", +] + +[[package]] +name = "ntapi" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" +dependencies = [ + "winapi", +] + +[[package]] +name = "nu-ansi-term" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" +dependencies = [ + "overload", + "winapi", +] + +[[package]] +name = "num-conv" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" + +[[package]] +name = "num-traits" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" +dependencies = [ + "autocfg", +] + +[[package]] +name = "num_cpus" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" +dependencies = [ + "hermit-abi", + "libc", +] + +[[package]] +name = "num_threads" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" +dependencies = [ + "libc", +] + +[[package]] +name = "nvme" +version = "0.0.0" +dependencies = [ + "async-trait", + "chipset_device", + "device_emulators", + "disk_backend", + "event-listener", + "futures", + "futures-concurrency", + "guestmem", + "guid", + "inspect", + "mesh", + "nvme_common", + "nvme_resources", + "nvme_spec", + "pal_async", + "parking_lot", + "pci_core", + "pci_resources", + "scsi_buffers", + "task_control", + "thiserror", + "tracelimit", + "tracing", + "unicycle", + "user_driver", + "vm_resource", + "vmcore", + "zerocopy", +] + +[[package]] +name = "nvme_common" +version = "0.0.0" +dependencies = [ + "disk_backend", + "nvme_spec", + "thiserror", +] + +[[package]] +name = "nvme_driver" +version = "0.0.0" +dependencies = [ + "anyhow", + "chipset_device", + "disk_ramdisk", + "event-listener", + "futures", + "guestmem", + "guid", + "inspect", + "inspect_counters", + "mesh", + "nvme", + "nvme_spec", + "pal_async", + "parking_lot", + "pci_core", + "safeatomic", + "scsi_buffers", + "slab", + "task_control", + "test_with_tracing", + "thiserror", + "tracing", + "user_driver", + "vmcore", + "zerocopy", +] + +[[package]] +name = "nvme_resources" +version = "0.0.0" +dependencies = [ + "guid", + "mesh", + "vm_resource", +] + +[[package]] +name = "nvme_spec" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "inspect", + "open_enum", + "storage_string", + "zerocopy", +] + +[[package]] +name = "object" +version = "0.32.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" +dependencies = [ + "memchr", +] + +[[package]] +name = "ohcldiag-dev" +version = "0.0.0" +dependencies = [ + "anyhow", + "clap", + "clap_dyn_complete", + "ctrlc", + "diag_client", + "env_logger", + "fs-err", + "futures", + "futures-concurrency", + "inspect", + "kmsg", + "mesh", + "pal", + "pal_async", + "socket2", + "term", + "thiserror", + "unicycle", +] + +[[package]] +name = "once_cell" +version = "1.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" + +[[package]] +name = "oorandom" +version = "11.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" + +[[package]] +name = "open-enum" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2eb2508143a400b3361812094d987dd5adc81f0f5294a46491be648d6c94cab5" +dependencies = [ + "open-enum-derive", +] + +[[package]] +name = "open-enum-derive" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d1296fab5231654a5aec8bf9e87ba4e3938c502fc4c3c0425a00084c78944be" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "open_enum" +version = "0.0.0" + +[[package]] +name = "openhcl_boot" +version = "0.0.0" +dependencies = [ + "aarch64defs", + "arrayvec", + "cfg-if", + "crc32fast", + "fdt", + "host_fdt_parser", + "hvdef", + "igvm_defs", + "loader_defs", + "memory_range", + "minimal_rt", + "minimal_rt_build", + "safe_x86_intrinsics", + "sha2", + "sidecar_defs", + "tdcall", + "underhill_confidentiality", + "x86defs", + "zerocopy", +] + +[[package]] +name = "openssl" +version = "0.10.66" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1" +dependencies = [ + "bitflags 2.4.2", + "cfg-if", + "foreign-types", + "libc", + "once_cell", + "openssl-macros", + "openssl-sys", +] + +[[package]] +name = "openssl-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "openssl-probe" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" + +[[package]] +name = "openssl-src" +version = "300.2.1+3.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fe476c29791a5ca0d1273c697e96085bbabbbea2ef7afd5617e78a4b40332d3" +dependencies = [ + "cc", +] + +[[package]] +name = "openssl-sys" +version = "0.9.103" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6" +dependencies = [ + "cc", + "libc", + "openssl-src", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "openssl_crypto_only" +version = "0.0.0" + +[[package]] +name = "openssl_kdf" +version = "0.0.0" +dependencies = [ + "libc", + "openssl", + "openssl-sys", + "thiserror", +] + +[[package]] +name = "openvmm" +version = "0.0.0" +dependencies = [ + "hvlite_entry", + "openvmm_resources", + "win_prng_support", +] + +[[package]] +name = "openvmm_hcl" +version = "0.0.0" +dependencies = [ + "openvmm_hcl_resources", + "underhill_entry", +] + +[[package]] +name = "openvmm_hcl_resources" +version = "0.0.0" +dependencies = [ + "build_rs_guest_arch", + "chipset", + "debug_worker", + "disk_striped", + "hyperv_ic", + "mesh_worker", + "missing_dev", + "nvme", + "scsidisk", + "serial_16550", + "serial_core", + "serial_pl011", + "storvsp", + "tpm", + "uidevices", + "vm_resource", + "vmbus_serial_guest", + "vmcore", + "vmsocket", + "vnc_worker", +] + +[[package]] +name = "openvmm_resources" +version = "0.0.0" +dependencies = [ + "build_rs_guest_arch", + "chipset", + "debug_worker", + "disk_blob", + "disk_file", + "disk_prwrap", + "disk_ramdisk", + "disk_vhd1", + "disk_vhdmp", + "gdma", + "guest_crash_device", + "guest_emulation_device", + "guest_emulation_log", + "hvlite_core", + "hyperv_ic", + "mesh_worker", + "missing_dev", + "net_backend", + "net_consomme", + "net_dio", + "net_tap", + "netvsp", + "nvme", + "scsidisk", + "serial_16550", + "serial_core", + "serial_pl011", + "serial_socket", + "storvsp", + "tpm", + "uidevices", + "virtio_net", + "virtio_p9", + "virtio_pmem", + "virtiofs", + "vm_resource", + "vmbfs", + "vmbus_serial_host", + "vmcore", + "vnc_worker", +] + +[[package]] +name = "option-ext" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" + +[[package]] +name = "overload" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" + +[[package]] +name = "oversized_box" +version = "0.0.0" + +[[package]] +name = "page_table" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "tracing", + "zerocopy", +] + +[[package]] +name = "pal" +version = "0.0.0" +dependencies = [ + "caps", + "fs-err", + "getrandom", + "landlock", + "libc", + "ntapi", + "pal_event", + "seccompiler", + "socket2", + "thiserror", + "tracing", + "widestring", + "win_import_lib", + "winapi", +] + +[[package]] +name = "pal_async" +version = "0.0.0" +dependencies = [ + "async-channel", + "async-task", + "cfg-if", + "futures", + "getrandom", + "libc", + "once_cell", + "pal", + "pal_async_test", + "pal_event", + "parking_lot", + "slab", + "smallbox", + "socket2", + "tempfile", + "tempfile_helpers", + "unicycle", + "unix_socket", + "winapi", + "windows-sys 0.52.0", + "zerocopy", +] + +[[package]] +name = "pal_async_test" +version = "0.0.0" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "pal_event" +version = "0.0.0" +dependencies = [ + "getrandom", + "libc", + "mesh_protobuf", + "windows-sys 0.52.0", +] + +[[package]] +name = "pal_uring" +version = "0.0.0" +dependencies = [ + "futures", + "inspect", + "io-uring", + "libc", + "once_cell", + "pal", + "pal_async", + "parking_lot", + "slab", + "smallbox", + "tempfile", + "test_with_tracing", + "tracing", +] + +[[package]] +name = "parking" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" + +[[package]] +name = "parking_lot" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-targets 0.48.5", +] + +[[package]] +name = "paste" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" + +[[package]] +name = "pbjson" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "048f9ac93c1eab514f9470c4bc8d97ca2a0a236b84f45cc19d69a59fc11467f6" +dependencies = [ + "base64 0.13.1", + "serde", +] + +[[package]] +name = "pbjson-build" +version = "0.5.1" +source = "git+https://github.com/jstarks/pbjson?branch=aliases#8896d740a44ef46a3bad8cbfccedb87ea8e7b0d3" +dependencies = [ + "heck", + "itertools", + "prost", + "prost-types", +] + +[[package]] +name = "pbjson-types" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a88c8d87f99a4ac14325e7a4c24af190fca261956e3b82dd7ed67e77e6c7043" +dependencies = [ + "bytes", + "chrono", + "pbjson", + "pbjson-build", + "prost", + "prost-build", + "serde", +] + +[[package]] +name = "pcap-file" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fc1f139757b058f9f37b76c48501799d12c9aa0aa4c0d4c980b062ee925d1b2" +dependencies = [ + "byteorder_slice", + "derive-into-owned", + "thiserror", +] + +[[package]] +name = "pci_bus" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "chipset_device", + "inspect", + "mesh", + "thiserror", + "tracelimit", + "tracing", + "vmcore", + "zerocopy", +] + +[[package]] +name = "pci_core" +version = "0.0.0" +dependencies = [ + "bitflags 1.3.2", + "chipset_device", + "guestmem", + "inspect", + "mesh", + "open_enum", + "parking_lot", + "thiserror", + "tracelimit", + "tracing", + "vmcore", + "zerocopy", +] + +[[package]] +name = "pci_resources" +version = "0.0.0" +dependencies = [ + "chipset_device", + "chipset_device_resources", + "guestmem", + "pci_core", + "vm_resource", + "vmcore", +] + +[[package]] +name = "petgraph" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" +dependencies = [ + "fixedbitset", + "indexmap", +] + +[[package]] +name = "petri" +version = "0.0.0" +dependencies = [ + "anyhow", + "chipset_resources", + "diag_client", + "disk_backend_resources", + "fatfs", + "framebuffer", + "fs-err", + "fscommon", + "futures", + "futures-concurrency", + "get_resources", + "gptman", + "guid", + "hvlite_defs", + "hvlite_helpers", + "hvlite_pcat_locator", + "hyperv_ic_resources", + "hyperv_secure_boot_templates", + "ide_resources", + "image", + "inspect", + "mbrman", + "mesh", + "mesh_process", + "mesh_worker", + "nvme_resources", + "pal", + "pal_async", + "petri_artifacts_common", + "petri_artifacts_core", + "petri_artifacts_vmm_test", + "pipette_client", + "prost", + "scsidisk_resources", + "serial_16550_resources", + "serial_core", + "serial_socket", + "sparse_mmap", + "storvsp_resources", + "tempfile", + "tempfile_helpers", + "tpm_resources", + "tracing", + "tracing-subscriber", + "uidevices_resources", + "underhill_confidentiality", + "unix_socket", + "video_core", + "vm_manifest_builder", + "vm_resource", + "vmbfs_resources", + "vmbus_serial_resources", + "vmcore", + "vmm_core_defs", + "vmotherboard", + "vtl2_settings_proto", +] + +[[package]] +name = "petri_artifact_resolver_openvmm_known_paths" +version = "0.0.0" +dependencies = [ + "anyhow", + "petri_artifacts_common", + "petri_artifacts_core", + "petri_artifacts_vmm_test", + "tempfile", + "vmm_test_images", +] + +[[package]] +name = "petri_artifacts_common" +version = "0.0.0" +dependencies = [ + "petri_artifacts_core", +] + +[[package]] +name = "petri_artifacts_core" +version = "0.0.0" +dependencies = [ + "anyhow", + "paste", +] + +[[package]] +name = "petri_artifacts_vmm_test" +version = "0.0.0" +dependencies = [ + "petri_artifacts_common", + "petri_artifacts_core", +] + +[[package]] +name = "pin-project" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" +dependencies = [ + "pin-project-internal", +] + +[[package]] +name = "pin-project-internal" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "piper" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4" +dependencies = [ + "atomic-waker", + "fastrand", + "futures-io", +] + +[[package]] +name = "pipette" +version = "0.0.0" +dependencies = [ + "anyhow", + "fs-err", + "futures", + "futures-concurrency", + "mesh", + "mesh_remote", + "pal_async", + "pipette_protocol", + "tracing", + "tracing-subscriber", + "unicycle", + "vmsocket", + "windows-service", + "windows-sys 0.52.0", +] + +[[package]] +name = "pipette_client" +version = "0.0.0" +dependencies = [ + "anyhow", + "fs-err", + "futures", + "futures-concurrency", + "mesh", + "mesh_remote", + "pal_async", + "pipette_protocol", + "tracing", + "typed-path", + "xshell-macros", +] + +[[package]] +name = "pipette_protocol" +version = "0.0.0" +dependencies = [ + "mesh", +] + +[[package]] +name = "pkg-config" +version = "0.3.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb" + +[[package]] +name = "plan9" +version = "0.0.0" +dependencies = [ + "lx", + "lxutil", + "parking_lot", + "tracing", +] + +[[package]] +name = "png" +version = "0.17.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f6c3c3e617595665b8ea2ff95a86066be38fb121ff920a9c0eb282abcd1da5a" +dependencies = [ + "bitflags 1.3.2", + "crc32fast", + "fdeflate", + "flate2", + "miniz_oxide", +] + +[[package]] +name = "postcard" +version = "1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8" +dependencies = [ + "cobs", + "embedded-io", + "serde", +] + +[[package]] +name = "power_resources" +version = "0.0.0" +dependencies = [ + "mesh", + "vm_resource", +] + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "prettyplease" +version = "0.1.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86" +dependencies = [ + "proc-macro2", + "syn 1.0.109", +] + +[[package]] +name = "proc-macro2" +version = "1.0.76" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "profiler_worker" +version = "0.0.0" +dependencies = [ + "anyhow", + "fs-err", + "futures", + "mesh", + "mesh_worker", + "pal_async", + "socket2", + "tracing", +] + +[[package]] +name = "prost" +version = "0.11.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" +dependencies = [ + "bytes", + "prost-derive", +] + +[[package]] +name = "prost-build" +version = "0.11.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270" +dependencies = [ + "bytes", + "heck", + "itertools", + "lazy_static", + "log", + "multimap", + "petgraph", + "prettyplease", + "prost", + "prost-types", + "regex", + "syn 1.0.109", + "tempfile", + "which 4.4.2", +] + +[[package]] +name = "prost-derive" +version = "0.11.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" +dependencies = [ + "anyhow", + "itertools", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "prost-types" +version = "0.11.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13" +dependencies = [ + "prost", +] + +[[package]] +name = "ptr_meta" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bcada80daa06c42ed5f48c9a043865edea5dc44cbf9ac009fda3b89526e28607" +dependencies = [ + "ptr_meta_derive", +] + +[[package]] +name = "ptr_meta_derive" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bca9224df2e20e7c5548aeb5f110a0f3b77ef05f8585139b7148b59056168ed2" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "quick-error" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" + +[[package]] +name = "quote" +version = "1.0.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "radium" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" + +[[package]] +name = "radix_trie" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd" +dependencies = [ + "endian-type", + "nibble_vec", +] + +[[package]] +name = "range_map_vec" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cc2191ec1fd850e3ede4cf09ccfd40a33df561111f73e96e1b7c3f9eee31328" + +[[package]] +name = "rayon" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051" +dependencies = [ + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" +dependencies = [ + "crossbeam-deque", + "crossbeam-utils", +] + +[[package]] +name = "redox_syscall" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" +dependencies = [ + "bitflags 1.3.2", +] + +[[package]] +name = "redox_users" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" +dependencies = [ + "getrandom", + "libredox", + "thiserror", +] + +[[package]] +name = "regex" +version = "1.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata 0.4.3", + "regex-syntax 0.8.2", +] + +[[package]] +name = "regex-automata" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" +dependencies = [ + "regex-syntax 0.6.29", +] + +[[package]] +name = "regex-automata" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax 0.8.2", +] + +[[package]] +name = "regex-syntax" +version = "0.6.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" + +[[package]] +name = "regex-syntax" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" + +[[package]] +name = "resolv-conf" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" +dependencies = [ + "quick-error", +] + +[[package]] +name = "rlimit" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3560f70f30a0f16d11d01ed078a07740fe6b489667abc7c7b029155d9f21c3d8" +dependencies = [ + "libc", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" + +[[package]] +name = "rustc-hash" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" + +[[package]] +name = "rustc_version" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" +dependencies = [ + "semver", +] + +[[package]] +name = "rustix" +version = "0.38.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca" +dependencies = [ + "bitflags 2.4.2", + "errno", + "libc", + "linux-raw-sys", + "windows-sys 0.52.0", +] + +[[package]] +name = "rustversion" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" + +[[package]] +name = "rustyline" +version = "13.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02a2d683a4ac90aeef5b1013933f6d977bd37d51ff3f4dad829d4931a7e6be86" +dependencies = [ + "bitflags 2.4.2", + "cfg-if", + "clipboard-win", + "fd-lock", + "home", + "libc", + "log", + "memchr", + "nix 0.27.1", + "radix_trie", + "rustyline-derive", + "unicode-segmentation", + "unicode-width", + "utf8parse", + "winapi", +] + +[[package]] +name = "rustyline-derive" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5af959c8bf6af1aff6d2b463a57f71aae53d1332da58419e30ad8dc7011d951" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "ryu" +version = "1.0.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" + +[[package]] +name = "safe_x86_intrinsics" +version = "0.0.0" + +[[package]] +name = "safeatomic" +version = "0.0.0" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "same-file" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "save_restore_derive" +version = "0.0.0" +dependencies = [ + "quote", + "syn 2.0.48", +] + +[[package]] +name = "schannel" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" +dependencies = [ + "windows-sys 0.52.0", +] + +[[package]] +name = "schema_ado_yaml" +version = "0.0.0" +dependencies = [ + "serde", + "serde_yaml", +] + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "scsi_buffers" +version = "0.0.0" +dependencies = [ + "event-listener", + "guestmem", + "safeatomic", + "smallvec", + "zerocopy", +] + +[[package]] +name = "scsi_core" +version = "0.0.0" +dependencies = [ + "inspect", + "mesh", + "scsi_buffers", + "scsi_defs", + "stackfuture", + "vm_resource", + "vmcore", +] + +[[package]] +name = "scsi_defs" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "open_enum", + "zerocopy", +] + +[[package]] +name = "scsidisk" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "disk_backend", + "disk_prwrap", + "futures", + "getrandom", + "guestmem", + "guid", + "hvdef", + "inspect", + "mesh", + "pal_async", + "parking_lot", + "scsi_buffers", + "scsi_core", + "scsi_defs", + "scsidisk_resources", + "stackfuture", + "thiserror", + "tracelimit", + "tracing", + "tracing_helpers", + "vm_resource", + "vmcore", + "zerocopy", +] + +[[package]] +name = "scsidisk_resources" +version = "0.0.0" +dependencies = [ + "inspect", + "mesh", + "storage_string", + "vm_resource", +] + +[[package]] +name = "seccompiler" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "345a3e4dddf721a478089d4697b83c6c0a8f5bf16086f6c13397e4534eb6e2e5" +dependencies = [ + "libc", +] + +[[package]] +name = "security-framework" +version = "2.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" +dependencies = [ + "bitflags 1.3.2", + "core-foundation", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "semver" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" + +[[package]] +name = "serde" +version = "1.0.195" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde-big-array" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3323f09a748af288c3dc2474ea6803ee81f118321775bffa3ac8f7e65c5e90e7" +dependencies = [ + "serde", +] + +[[package]] +name = "serde_derive" +version = "1.0.195" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "serde_helpers" +version = "0.0.0" +dependencies = [ + "base64 0.21.7", + "guid", + "serde", + "serde_json", +] + +[[package]] +name = "serde_json" +version = "1.0.111" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4" +dependencies = [ + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serde_spanned" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" +dependencies = [ + "serde", +] + +[[package]] +name = "serde_yaml" +version = "0.9.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1bf28c79a99f70ee1f1d83d10c875d2e70618417fda01ad1785e027579d9d38" +dependencies = [ + "indexmap", + "itoa", + "ryu", + "serde", + "unsafe-libyaml", +] + +[[package]] +name = "serial_16550" +version = "0.0.0" +dependencies = [ + "async-trait", + "bitfield-struct", + "chipset_device", + "chipset_device_resources", + "futures", + "inspect", + "inspect_counters", + "mesh", + "open_enum", + "serial_16550_resources", + "serial_core", + "thiserror", + "tracelimit", + "tracing", + "vm_resource", + "vmcore", +] + +[[package]] +name = "serial_16550_resources" +version = "0.0.0" +dependencies = [ + "mesh", + "vm_resource", +] + +[[package]] +name = "serial_core" +version = "0.0.0" +dependencies = [ + "futures", + "inspect", + "mesh", + "pal_async", + "parking_lot", + "vm_resource", +] + +[[package]] +name = "serial_pl011" +version = "0.0.0" +dependencies = [ + "async-trait", + "bitfield-struct", + "chipset_device", + "chipset_device_resources", + "futures", + "inspect", + "inspect_counters", + "mesh", + "open_enum", + "pal_async", + "serial_core", + "serial_pl011_resources", + "thiserror", + "tracelimit", + "tracing", + "vm_resource", + "vmcore", +] + +[[package]] +name = "serial_pl011_resources" +version = "0.0.0" +dependencies = [ + "mesh", + "vm_resource", +] + +[[package]] +name = "serial_socket" +version = "0.0.0" +dependencies = [ + "futures", + "inspect", + "mesh", + "pal", + "pal_async", + "serial_core", + "tracing", + "unix_socket", + "vm_resource", +] + +[[package]] +name = "sev_guest_device" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "nix 0.26.4", + "static_assertions", + "thiserror", + "zerocopy", +] + +[[package]] +name = "sha2" +version = "0.10.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "sharded-slab" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" +dependencies = [ + "lazy_static", +] + +[[package]] +name = "shared_pool_alloc" +version = "0.0.0" +dependencies = [ + "anyhow", + "hcl", + "hvdef", + "inspect", + "parking_lot", + "sparse_mmap", + "thiserror", + "tracing", + "user_driver", + "vm_topology", +] + +[[package]] +name = "shell-words" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" + +[[package]] +name = "sidecar" +version = "0.0.0" +dependencies = [ + "arrayvec", + "hvdef", + "memory_range", + "minimal_rt", + "minimal_rt_build", + "sidecar_defs", + "x86defs", + "zerocopy", +] + +[[package]] +name = "sidecar_client" +version = "0.0.0" +dependencies = [ + "fs-err", + "hvdef", + "libc", + "nix 0.26.4", + "pal_async", + "parking_lot", + "sidecar_defs", + "thiserror", + "tracing", + "zerocopy", +] + +[[package]] +name = "sidecar_defs" +version = "0.0.0" +dependencies = [ + "hvdef", + "open_enum", + "x86defs", + "zerocopy", +] + +[[package]] +name = "signal-hook" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" +dependencies = [ + "libc", + "signal-hook-registry", +] + +[[package]] +name = "signal-hook-mio" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" +dependencies = [ + "libc", + "mio", + "signal-hook", +] + +[[package]] +name = "signal-hook-registry" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" +dependencies = [ + "libc", +] + +[[package]] +name = "simd-adler32" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" + +[[package]] +name = "slab" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" +dependencies = [ + "autocfg", +] + +[[package]] +name = "smallbox" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d92359f97e6b417da4328a970cf04a044db104fbd57f7d72cb7ff665bb8806af" + +[[package]] +name = "smallvec" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b187f0231d56fe41bfb12034819dd2bf336422a5866de41bc3fec4b2e3883e8" + +[[package]] +name = "smoltcp" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee34c1e1bfc7e9206cc0fb8030a90129b4e319ab53856249bb27642cab914fb3" +dependencies = [ + "bitflags 1.3.2", + "byteorder", + "managed", +] + +[[package]] +name = "socket2" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" +dependencies = [ + "libc", + "windows-sys 0.48.0", +] + +[[package]] +name = "sparse_mmap" +version = "0.0.0" +dependencies = [ + "cc", + "criterion", + "getrandom", + "libc", + "pal", + "parking_lot", + "thiserror", + "windows-sys 0.52.0", + "zerocopy", +] + +[[package]] +name = "stackfuture" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6eae92052b72ef70dafa16eddbabffc77e5ca3574be2f7bc1127b36f0a7ad7f2" + +[[package]] +name = "state_unit" +version = "0.0.0" +dependencies = [ + "anyhow", + "event-listener", + "futures", + "futures-concurrency", + "inspect", + "mesh", + "pal_async", + "parking_lot", + "test_with_tracing", + "thiserror", + "tracing", + "vmcore", +] + +[[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + +[[package]] +name = "storage_string" +version = "0.0.0" +dependencies = [ + "inspect", + "mesh_protobuf", + "thiserror", + "zerocopy", +] + +[[package]] +name = "storvsp" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "criterion", + "disk_backend", + "disk_ramdisk", + "event-listener", + "fast_select", + "futures", + "guestmem", + "guid", + "inspect", + "inspect_counters", + "mesh", + "open_enum", + "oversized_box", + "pal_async", + "parking_lot", + "scsi_buffers", + "scsi_core", + "scsi_defs", + "scsidisk", + "slab", + "storvsp_resources", + "task_control", + "test_with_tracing", + "thiserror", + "tracelimit", + "tracing", + "tracing_helpers", + "unicycle", + "vm_resource", + "vmbus_async", + "vmbus_channel", + "vmbus_core", + "vmbus_ring", + "vmcore", + "zerocopy", +] + +[[package]] +name = "storvsp_resources" +version = "0.0.0" +dependencies = [ + "guid", + "mesh", + "vm_resource", +] + +[[package]] +name = "strsim" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "tap" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" + +[[package]] +name = "target-lexicon" +version = "0.12.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae" +dependencies = [ + "serde", +] + +[[package]] +name = "task_control" +version = "0.0.0" +dependencies = [ + "fast_select", + "futures", + "inspect", + "pal_async", + "parking_lot", +] + +[[package]] +name = "tdcall" +version = "0.0.0" +dependencies = [ + "hvdef", + "memory_range", + "tracing", + "x86defs", +] + +[[package]] +name = "tdx_guest_device" +version = "0.0.0" +dependencies = [ + "nix 0.26.4", + "static_assertions", + "thiserror", + "zerocopy", +] + +[[package]] +name = "tee_call" +version = "0.0.0" +dependencies = [ + "sev_guest_device", + "static_assertions", + "tdx_guest_device", + "thiserror", + "zerocopy", +] + +[[package]] +name = "tempfile" +version = "3.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa" +dependencies = [ + "cfg-if", + "fastrand", + "redox_syscall", + "rustix", + "windows-sys 0.52.0", +] + +[[package]] +name = "tempfile_helpers" +version = "0.0.0" +dependencies = [ + "tempfile", +] + +[[package]] +name = "term" +version = "0.0.0" +dependencies = [ + "crossterm", + "libc", + "winapi", +] + +[[package]] +name = "termcolor" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "test_with_tracing" +version = "0.0.0" +dependencies = [ + "log", + "test_with_tracing_macro", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "test_with_tracing_macro" +version = "0.0.0" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "thiserror" +version = "1.0.56" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.56" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "thread_local" +version = "1.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" +dependencies = [ + "cfg-if", + "once_cell", +] + +[[package]] +name = "time" +version = "0.3.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" +dependencies = [ + "deranged", + "itoa", + "libc", + "num-conv", + "num_threads", + "powerfmt", + "serde", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" + +[[package]] +name = "time-macros" +version = "0.2.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" +dependencies = [ + "num-conv", + "time-core", +] + +[[package]] +name = "tinytemplate" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" +dependencies = [ + "serde", + "serde_json", +] + +[[package]] +name = "tokio" +version = "1.35.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104" +dependencies = [ + "backtrace", + "bytes", + "libc", + "mio", + "num_cpus", + "pin-project-lite", + "socket2", + "windows-sys 0.48.0", +] + +[[package]] +name = "tokio-native-tls" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" +dependencies = [ + "native-tls", + "tokio", +] + +[[package]] +name = "tokio-util" +version = "0.7.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", + "tracing", +] + +[[package]] +name = "toml" +version = "0.8.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35" +dependencies = [ + "serde", + "serde_spanned", + "toml_datetime", + "toml_edit", +] + +[[package]] +name = "toml_datetime" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" +dependencies = [ + "serde", +] + +[[package]] +name = "toml_edit" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" +dependencies = [ + "indexmap", + "serde", + "serde_spanned", + "toml_datetime", + "winnow", +] + +[[package]] +name = "tower" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" +dependencies = [ + "futures-core", + "futures-util", + "pin-project", + "pin-project-lite", + "tokio", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" + +[[package]] +name = "tower-service" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" + +[[package]] +name = "tpm" +version = "0.0.0" +dependencies = [ + "async-trait", + "bitfield-struct", + "chipset_device", + "chipset_device_resources", + "getrandom", + "guestmem", + "inspect", + "mesh", + "ms-tpm-20-ref", + "open_enum", + "pal_async", + "parking_lot", + "thiserror", + "tpm_resources", + "tracelimit", + "tracing", + "vm_resource", + "vmcore", + "zerocopy", +] + +[[package]] +name = "tpm_resources" +version = "0.0.0" +dependencies = [ + "inspect", + "mesh", + "vm_resource", +] + +[[package]] +name = "tracelimit" +version = "0.0.0" +dependencies = [ + "parking_lot", + "tracing", +] + +[[package]] +name = "tracing" +version = "0.1.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" +dependencies = [ + "cfg-if", + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "tracing-core" +version = "0.1.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" +dependencies = [ + "once_cell", + "valuable", +] + +[[package]] +name = "tracing-log" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f751112709b4e791d8ce53e32c4ed2d353565a795ce84da2285393f41557bdf2" +dependencies = [ + "log", + "once_cell", + "tracing-core", +] + +[[package]] +name = "tracing-log" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" +dependencies = [ + "log", + "once_cell", + "tracing-core", +] + +[[package]] +name = "tracing-serde" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1" +dependencies = [ + "serde", + "tracing-core", +] + +[[package]] +name = "tracing-subscriber" +version = "0.3.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" +dependencies = [ + "matchers", + "nu-ansi-term", + "once_cell", + "regex", + "serde", + "serde_json", + "sharded-slab", + "smallvec", + "thread_local", + "tracing", + "tracing-core", + "tracing-log 0.2.0", + "tracing-serde", +] + +[[package]] +name = "tracing_helpers" +version = "0.0.0" +dependencies = [ + "anyhow", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "typed-path" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a90726108dab678edab76459751e1cc7c597c3484a6384d6423191255fa641b" + +[[package]] +name = "typenum" +version = "1.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" + +[[package]] +name = "ucs2" +version = "0.0.0" +dependencies = [ + "mesh_protobuf", + "thiserror", +] + +[[package]] +name = "ucs2" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df79298e11f316400c57ec268f3c2c29ac3c4d4777687955cd3d4f3a35ce7eba" +dependencies = [ + "bit_field", +] + +[[package]] +name = "uefi" +version = "0.32.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91f17ea8502a6bd414acb2bf5194f90ca4c48e33a2d18cb57eab3294d2050d99" +dependencies = [ + "bitflags 2.4.2", + "cfg-if", + "log", + "ptr_meta", + "ucs2 0.3.3", + "uefi-macros", + "uefi-raw", + "uguid", +] + +[[package]] +name = "uefi-macros" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c19ee3a01d435eda42cb9931269b349d28a1762f91ddf01c68d276f74b957cc3" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "uefi-raw" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b463030b802e1265a3800fab24df95d3229c202c2e408832a206f05b4d1496ca" +dependencies = [ + "bitflags 2.4.2", + "ptr_meta", + "uguid", +] + +[[package]] +name = "uefi_nvram_specvars" +version = "0.0.0" +dependencies = [ + "guid", + "thiserror", + "ucs2 0.0.0", + "uefi_specs", + "zerocopy", + "zerocopy_helpers", +] + +[[package]] +name = "uefi_nvram_storage" +version = "0.0.0" +dependencies = [ + "async-trait", + "guid", + "inspect", + "pal_async", + "thiserror", + "ucs2 0.0.0", + "uefi_specs", + "wchar", + "zerocopy", +] + +[[package]] +name = "uefi_specs" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "guid", + "inspect", + "open_enum", + "static_assertions", + "ucs2 0.0.0", + "wchar", + "zerocopy", +] + +[[package]] +name = "uevent" +version = "0.0.0" +dependencies = [ + "anyhow", + "fs-err", + "futures", + "futures-concurrency", + "libc", + "mesh", + "pal_async", + "socket2", + "thiserror", + "tracing", +] + +[[package]] +name = "uguid" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab14ea9660d240e7865ce9d54ecdbd1cd9fa5802ae6f4512f093c7907e921533" + +[[package]] +name = "uidevices" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "futures", + "guestmem", + "guid", + "input_core", + "inspect", + "mesh", + "pal_async", + "static_assertions", + "task_control", + "test_with_tracing", + "thiserror", + "tracelimit", + "tracing", + "tracing_helpers", + "uidevices_resources", + "video_core", + "vm_resource", + "vmbus_async", + "vmbus_channel", + "vmbus_ring", + "vmcore", + "zerocopy", + "zerocopy_helpers", +] + +[[package]] +name = "uidevices_resources" +version = "0.0.0" +dependencies = [ + "mesh", + "vm_resource", +] + +[[package]] +name = "underhill_attestation" +version = "0.0.0" +dependencies = [ + "base64 0.21.7", + "base64-serde", + "get_protocol", + "getrandom", + "guest_emulation_transport", + "guid", + "hex", + "mesh", + "open_enum", + "openssl", + "openssl_kdf", + "pal_async", + "serde", + "serde_json", + "sev_guest_device", + "static_assertions", + "tdx_guest_device", + "tee_call", + "thiserror", + "time", + "tracing", + "vmgs", + "zerocopy", +] + +[[package]] +name = "underhill_confidentiality" +version = "0.0.0" + +[[package]] +name = "underhill_config" +version = "0.0.0" +dependencies = [ + "guid", + "inspect", + "mesh", + "prost", + "serde", + "serde_json", + "thiserror", + "vtl2_settings_proto", +] + +[[package]] +name = "underhill_core" +version = "0.0.0" +dependencies = [ + "aarch64defs", + "acpi_spec", + "anyhow", + "async-trait", + "blocking", + "bootloader_fdt_parser", + "build_info", + "build_rs_guest_arch", + "cfg-if", + "chipset", + "chipset_device", + "chipset_device_resources", + "chipset_legacy", + "closeable_mutex", + "cvm_tracing", + "debug_ptr", + "debug_worker_defs", + "diag_proto", + "diag_server", + "disk_backend", + "disk_backend_resources", + "disk_blockdevice", + "disk_nvme", + "firmware_pcat", + "firmware_uefi", + "firmware_uefi_custom_vars", + "framebuffer", + "fs-err", + "futures", + "futures-concurrency", + "get_helpers", + "get_protocol", + "getrandom", + "guest_emulation_transport", + "guestmem", + "guid", + "hcl", + "hcl_compat_uefi_nvram_storage", + "hvdef", + "hyperv_ic_guest", + "hyperv_ic_resources", + "hyperv_secure_boot_templates", + "hyperv_uefi_custom_vars_json", + "ide", + "ide_resources", + "igvm", + "igvm_defs", + "input_core", + "inspect", + "kmsg", + "kmsg_defs", + "libc", + "loader", + "loader_defs", + "local_clock", + "mana_driver", + "mcr_resources", + "memory_range", + "mesh", + "mesh_process", + "mesh_tracing", + "mesh_worker", + "net_backend", + "net_backend_resources", + "net_mana", + "net_packet_capture", + "netvsp", + "nvme_driver", + "nvme_resources", + "pal", + "pal_async", + "pal_uring", + "parking_lot", + "profiler_worker", + "safe_x86_intrinsics", + "scsi_buffers", + "scsi_core", + "scsidisk", + "scsidisk_resources", + "serde", + "serde_helpers", + "serde_json", + "serial_16550_resources", + "shared_pool_alloc", + "sidecar_client", + "socket2", + "sparse_mmap", + "state_unit", + "storage_string", + "storvsp", + "storvsp_resources", + "tee_call", + "thiserror", + "time", + "tpm", + "tpm_resources", + "tracelimit", + "tracing", + "tracing-subscriber", + "tracing_helpers", + "uevent", + "uidevices_resources", + "underhill_attestation", + "underhill_confidentiality", + "underhill_config", + "underhill_mem", + "underhill_threadpool", + "user_driver", + "vga_proxy", + "video_core", + "virt", + "virt_mshv_vtl", + "vm_loader", + "vm_manifest_builder", + "vm_resource", + "vm_topology", + "vmbus_async", + "vmbus_channel", + "vmbus_core", + "vmbus_relay", + "vmbus_relay_intercept_device", + "vmbus_serial_guest", + "vmbus_server", + "vmbus_user_channel", + "vmcore", + "vmgs", + "vmgs_broker", + "vmgs_resources", + "vmm_core", + "vmm_core_defs", + "vmotherboard", + "vmsocket", + "vnc_worker_defs", + "vpci", + "watchdog_core", + "watchdog_vmgs_format", + "x86defs", + "zerocopy", +] + +[[package]] +name = "underhill_crash" +version = "0.0.0" +dependencies = [ + "anyhow", + "fs-err", + "futures", + "get_protocol", + "guid", + "libc", + "pal_async", + "thiserror", + "tracing", + "tracing-subscriber", + "vergen", + "vmbus_async", + "vmbus_user_channel", + "zerocopy", +] + +[[package]] +name = "underhill_dump" +version = "0.0.0" +dependencies = [ + "anyhow", + "elfcore", + "libc", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "underhill_entry" +version = "0.0.0" +dependencies = [ + "anyhow", + "mimalloc", + "openssl_crypto_only", + "underhill_core", + "underhill_crash", + "underhill_dump", + "underhill_init", +] + +[[package]] +name = "underhill_init" +version = "0.0.0" +dependencies = [ + "anyhow", + "fs-err", + "kmsg_defs", + "libc", + "log", + "nix 0.26.4", + "underhill_confidentiality", + "vergen", + "walkdir", +] + +[[package]] +name = "underhill_mem" +version = "0.0.0" +dependencies = [ + "anyhow", + "build_rs_guest_arch", + "futures", + "guestmem", + "hcl", + "hvdef", + "inspect", + "memory_range", + "pal_async", + "parking_lot", + "sparse_mmap", + "thiserror", + "tracing", + "underhill_threadpool", + "virt_mshv_vtl", + "vm_topology", + "x86defs", +] + +[[package]] +name = "underhill_threadpool" +version = "0.0.0" +dependencies = [ + "fs-err", + "inspect", + "pal", + "pal_async", + "pal_uring", + "parking_lot", + "thiserror", + "tracing", +] + +[[package]] +name = "unicode-ident" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" + +[[package]] +name = "unicode-segmentation" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" + +[[package]] +name = "unicode-width" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" + +[[package]] +name = "unicycle" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0edfa5ca2452d3fbf68f7078c5e7f42b96f0c0c7def017994147f8acd8c4264d" +dependencies = [ + "futures-core", + "lock_api", + "parking_lot", + "pin-project", + "uniset", +] + +[[package]] +name = "uniset" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c9f21fe154ca4d5d06fc2ebb8c58cc80e338eacc372ec794943f69e535c131c" + +[[package]] +name = "unix_socket" +version = "0.0.0" +dependencies = [ + "getrandom", + "mesh_protobuf", + "socket2", + "windows-sys 0.52.0", +] + +[[package]] +name = "unsafe-libyaml" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab4c90930b95a82d00dc9e9ac071b4991924390d46cbd0dfe566148667605e4b" + +[[package]] +name = "urlencoding" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" + +[[package]] +name = "user_driver" +version = "0.0.0" +dependencies = [ + "anyhow", + "chipset_device", + "fs-err", + "futures", + "futures-concurrency", + "guestmem", + "inspect", + "inspect_counters", + "libc", + "mesh", + "pal_async", + "pal_event", + "parking_lot", + "pci_core", + "safeatomic", + "sparse_mmap", + "tracing", + "uevent", + "vfio-bindings", + "vfio_sys", + "vmcore", + "zerocopy", +] + +[[package]] +name = "utf8parse" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" + +[[package]] +name = "valuable" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" + +[[package]] +name = "vbs_defs" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "igvm_defs", + "open_enum", + "static_assertions", + "zerocopy", +] + +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + +[[package]] +name = "vergen" +version = "8.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e27d6bdd219887a9eadd19e1c34f32e47fa332301184935c6d9bca26f3cca525" +dependencies = [ + "anyhow", + "cfg-if", + "rustversion", + "time", +] + +[[package]] +name = "version_check" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" + +[[package]] +name = "vfio-bindings" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43449b404c488f70507dca193debd4bea361fe8089869b947adc19720e464bce" + +[[package]] +name = "vfio_sys" +version = "0.0.0" +dependencies = [ + "anyhow", + "bitfield-struct", + "libc", + "nix 0.26.4", + "tracing", + "vfio-bindings", +] + +[[package]] +name = "vga" +version = "0.0.0" +dependencies = [ + "chipset_device", + "framebuffer", + "guestmem", + "inspect", + "memory_range", + "open_enum", + "pal_async", + "parking_lot", + "pci_core", + "task_control", + "thiserror", + "tracing", + "video_core", + "vmcore", + "zerocopy", +] + +[[package]] +name = "vga_proxy" +version = "0.0.0" +dependencies = [ + "async-trait", + "chipset_device", + "inspect", + "tracelimit", + "tracing", + "vmcore", +] + +[[package]] +name = "vhd1_defs" +version = "0.0.0" +dependencies = [ + "guid", + "zerocopy", +] + +[[package]] +name = "video_core" +version = "0.0.0" +dependencies = [ + "async-trait", + "inspect", + "mesh", + "vm_resource", +] + +[[package]] +name = "virt" +version = "0.0.0" +dependencies = [ + "aarch64defs", + "anyhow", + "build_rs_guest_arch", + "guestmem", + "hvdef", + "inspect", + "memory_range", + "mesh_protobuf", + "pal_event", + "parking_lot", + "pci_core", + "slab", + "thiserror", + "tracelimit", + "tracing", + "vm_topology", + "vmcore", + "x86defs", + "zerocopy", +] + +[[package]] +name = "virt_hvf" +version = "0.0.0" +dependencies = [ + "aarch64defs", + "anyhow", + "guestmem", + "hv1_emulator", + "hv1_hypercall", + "hvdef", + "inspect", + "memory_range", + "open_enum", + "parking_lot", + "thiserror", + "tracelimit", + "tracing", + "virt", + "virt_support_gic", + "vmcore", +] + +[[package]] +name = "virt_kvm" +version = "0.0.0" +dependencies = [ + "aarch64defs", + "bitfield-struct", + "build_rs_guest_arch", + "cfg-if", + "guestmem", + "hv1_emulator", + "hv1_hypercall", + "hvdef", + "inspect", + "kvm", + "memory_range", + "open_enum", + "pal_event", + "parking_lot", + "pci_core", + "safe_x86_intrinsics", + "thiserror", + "tracelimit", + "tracing", + "virt", + "vm_topology", + "vmcore", + "x86defs", + "zerocopy", +] + +[[package]] +name = "virt_mshv" +version = "0.0.0" +dependencies = [ + "arrayvec", + "build_rs_guest_arch", + "guestmem", + "hv1_emulator", + "hv1_hypercall", + "hvdef", + "inspect", + "libc", + "mshv-bindings", + "mshv-ioctls", + "pal", + "pal_event", + "parking_lot", + "signal-hook", + "static_assertions", + "thiserror", + "tracelimit", + "tracing", + "virt", + "virt_support_x86emu", + "vmcore", + "vmm-sys-util", + "x86defs", + "x86emu", + "zerocopy", +] + +[[package]] +name = "virt_mshv_vtl" +version = "0.0.0" +dependencies = [ + "aarch64defs", + "aarch64emu", + "anyhow", + "bitfield-struct", + "bitvec", + "build_rs_guest_arch", + "cfg-if", + "fs-err", + "guestmem", + "hcl", + "hv1_emulator", + "hv1_hypercall", + "hvdef", + "inspect", + "inspect_counters", + "libc", + "memory_range", + "mesh", + "pal", + "pal_async", + "pal_uring", + "parking_lot", + "pci_core", + "safe_x86_intrinsics", + "shared_pool_alloc", + "sidecar_client", + "thiserror", + "tracelimit", + "tracing", + "virt", + "virt_support_aarch64emu", + "virt_support_apic", + "virt_support_x86emu", + "vm_topology", + "vmcore", + "vtl_array", + "x86defs", + "x86emu", + "zerocopy", +] + +[[package]] +name = "virt_support_aarch64emu" +version = "0.0.0" +dependencies = [ + "aarch64defs", + "aarch64emu", + "guestmem", + "hvdef", + "thiserror", + "tracing", + "virt", + "vm_topology", + "zerocopy", +] + +[[package]] +name = "virt_support_apic" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "hvdef", + "inspect", + "inspect_counters", + "parking_lot", + "thiserror", + "tracelimit", + "tracing", + "virt", + "vm_topology", + "vmcore", + "x86defs", +] + +[[package]] +name = "virt_support_gic" +version = "0.0.0" +dependencies = [ + "inspect", + "open_enum", + "parking_lot", + "tracing", + "vm_topology", +] + +[[package]] +name = "virt_support_x86emu" +version = "0.0.0" +dependencies = [ + "guestmem", + "hvdef", + "iced-x86", + "pal_async", + "thiserror", + "tracelimit", + "tracing", + "virt", + "vm_topology", + "x86defs", + "x86emu", + "zerocopy", +] + +[[package]] +name = "virt_whp" +version = "0.0.0" +dependencies = [ + "aarch64defs", + "anyhow", + "arrayvec", + "build_rs_guest_arch", + "chipset_device", + "guestmem", + "hv1_emulator", + "hv1_hypercall", + "hvdef", + "inspect", + "inspect_counters", + "memory_range", + "mesh", + "pal_event", + "parking_lot", + "pci_core", + "range_map_vec", + "sparse_mmap", + "thiserror", + "tracelimit", + "tracing", + "tracing_helpers", + "virt", + "virt_support_aarch64emu", + "virt_support_apic", + "virt_support_x86emu", + "vm_topology", + "vmcore", + "vtl_array", + "whp", + "winapi", + "x86defs", + "x86emu", + "zerocopy", +] + +[[package]] +name = "virtio" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "bitfield-struct", + "chipset_device", + "device_emulators", + "event-listener", + "futures", + "guestmem", + "inspect", + "mesh", + "pal_async", + "pal_event", + "parking_lot", + "pci_core", + "task_control", + "test_with_tracing", + "thiserror", + "tracelimit", + "tracing", + "vm_resource", + "vmcore", + "zerocopy", +] + +[[package]] +name = "virtio_net" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "bitfield-struct", + "futures", + "futures-concurrency", + "guestmem", + "inspect", + "inspect_counters", + "mesh", + "net_backend", + "net_backend_resources", + "open_enum", + "pal_async", + "parking_lot", + "task_control", + "thiserror", + "tracing", + "virtio", + "virtio_resources", + "vm_resource", + "vmcore", + "zerocopy", +] + +[[package]] +name = "virtio_p9" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "guestmem", + "plan9", + "tracing", + "virtio", + "virtio_resources", + "vm_resource", +] + +[[package]] +name = "virtio_pmem" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "event-listener", + "fs-err", + "guestmem", + "pal_async", + "sparse_mmap", + "task_control", + "tracing", + "virtio", + "virtio_resources", + "vm_resource", + "vmcore", +] + +[[package]] +name = "virtio_resources" +version = "0.0.0" +dependencies = [ + "mesh", + "net_backend_resources", + "vm_resource", +] + +[[package]] +name = "virtio_serial" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "guestmem", + "parking_lot", + "tracing", + "virtio", +] + +[[package]] +name = "virtiofs" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "event-listener", + "fuse", + "futures", + "guestmem", + "lx", + "lxutil", + "ntapi", + "pal", + "pal_async", + "parking_lot", + "task_control", + "tracing", + "virtio", + "virtio_resources", + "vm_resource", + "vmcore", + "zerocopy", +] + +[[package]] +name = "vm_loader" +version = "0.0.0" +dependencies = [ + "anyhow", + "build_rs_guest_arch", + "guestmem", + "hvdef", + "loader", + "memory_range", + "range_map_vec", + "tracing", + "virt", + "vm_topology", +] + +[[package]] +name = "vm_manifest_builder" +version = "0.0.0" +dependencies = [ + "chipset_resources", + "input_core", + "mesh", + "missing_dev_resources", + "serial_16550_resources", + "serial_core", + "serial_pl011_resources", + "thiserror", + "vm_resource", + "vmotherboard", +] + +[[package]] +name = "vm_resource" +version = "0.0.0" +dependencies = [ + "async-trait", + "inspect", + "linkme", + "mesh", + "pal_async", + "thiserror", +] + +[[package]] +name = "vm_topology" +version = "0.0.0" +dependencies = [ + "aarch64defs", + "build_rs_guest_arch", + "cfg-if", + "inspect", + "memory_range", + "mesh_protobuf", + "safe_x86_intrinsics", + "thiserror", + "x86defs", +] + +[[package]] +name = "vmbfs" +version = "0.0.0" +dependencies = [ + "async-trait", + "bitfield-struct", + "guid", + "inspect", + "open_enum", + "task_control", + "thiserror", + "tracing", + "vm_resource", + "vmbfs_resources", + "vmbus_async", + "vmbus_channel", + "vmcore", + "zerocopy", + "zerocopy_helpers", +] + +[[package]] +name = "vmbfs_resources" +version = "0.0.0" +dependencies = [ + "mesh", + "vm_resource", +] + +[[package]] +name = "vmbus_async" +version = "0.0.0" +dependencies = [ + "futures", + "guestmem", + "inspect", + "inspect_counters", + "pal_async", + "smallvec", + "thiserror", + "vmbus_channel", + "vmbus_ring", + "zerocopy", +] + +[[package]] +name = "vmbus_channel" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "futures", + "guestmem", + "guid", + "inspect", + "mesh", + "pal_async", + "pal_event", + "parking_lot", + "task_control", + "thiserror", + "tracelimit", + "tracing", + "vm_resource", + "vmbus_core", + "vmbus_ring", + "vmcore", +] + +[[package]] +name = "vmbus_client" +version = "0.0.0" +dependencies = [ + "anyhow", + "futures", + "guid", + "inspect", + "mesh", + "pal_async", + "parking_lot", + "thiserror", + "tracing", + "vmbus_async", + "vmbus_channel", + "vmbus_core", + "zerocopy", +] + +[[package]] +name = "vmbus_core" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "futures", + "guid", + "hvdef", + "inspect", + "mesh", + "open_enum", + "static_assertions", + "thiserror", + "zerocopy", + "zerocopy_helpers", +] + +[[package]] +name = "vmbus_proxy" +version = "0.0.0" +dependencies = [ + "guestmem", + "mesh", + "ntapi", + "pal", + "pal_async", + "pal_event", + "vmbus_core", + "winapi", + "zerocopy", +] + +[[package]] +name = "vmbus_relay" +version = "0.0.0" +dependencies = [ + "anyhow", + "futures", + "guid", + "hcl", + "hvdef", + "inspect", + "mesh", + "mesh_protobuf", + "once_cell", + "pal_async", + "pal_event", + "parking_lot", + "tracelimit", + "tracing", + "vmbus_async", + "vmbus_channel", + "vmbus_client", + "vmbus_core", + "vmbus_server", + "vmcore", + "zerocopy", +] + +[[package]] +name = "vmbus_relay_intercept_device" +version = "0.0.0" +dependencies = [ + "anyhow", + "futures", + "guid", + "hcl", + "hvdef", + "inspect", + "mesh", + "pal_async", + "safeatomic", + "task_control", + "tracelimit", + "tracing", + "user_driver", + "virt", + "vmbus_channel", + "vmbus_client", + "vmbus_core", + "vmbus_relay", + "vmbus_ring", + "vmbus_server", + "vmcore", + "zerocopy", +] + +[[package]] +name = "vmbus_ring" +version = "0.0.0" +dependencies = [ + "criterion", + "guestmem", + "inspect", + "safeatomic", + "smallvec", + "thiserror", + "zerocopy", +] + +[[package]] +name = "vmbus_serial_guest" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "futures", + "guid", + "inspect", + "inspect_counters", + "mesh", + "pal_async", + "serial_core", + "test_with_tracing", + "thiserror", + "tracing", + "unix_socket", + "vm_resource", + "vmbus_async", + "vmbus_serial_host", + "vmbus_serial_protocol", + "vmbus_user_channel", + "zerocopy", +] + +[[package]] +name = "vmbus_serial_host" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "inspect", + "inspect_counters", + "serial_core", + "task_control", + "thiserror", + "tracing", + "vm_resource", + "vmbus_async", + "vmbus_channel", + "vmbus_ring", + "vmbus_serial_protocol", + "vmbus_serial_resources", + "vmcore", + "zerocopy", +] + +[[package]] +name = "vmbus_serial_protocol" +version = "0.0.0" +dependencies = [ + "guid", + "open_enum", + "static_assertions", + "zerocopy", +] + +[[package]] +name = "vmbus_serial_resources" +version = "0.0.0" +dependencies = [ + "mesh", + "vm_resource", +] + +[[package]] +name = "vmbus_server" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "futures", + "futures-concurrency", + "guestmem", + "guid", + "hvdef", + "inspect", + "mesh", + "pal_async", + "pal_event", + "parking_lot", + "safeatomic", + "slab", + "test_with_tracing", + "thiserror", + "tracelimit", + "tracing", + "unicycle", + "unix_socket", + "vmbus_async", + "vmbus_channel", + "vmbus_core", + "vmbus_proxy", + "vmbus_ring", + "vmcore", + "zerocopy", + "zerocopy_helpers", +] + +[[package]] +name = "vmbus_user_channel" +version = "0.0.0" +dependencies = [ + "filepath", + "fs-err", + "guid", + "libc", + "pal_async", + "parking_lot", + "safeatomic", + "sparse_mmap", + "thiserror", + "tracing", + "vmbus_async", + "vmbus_channel", + "vmbus_ring", + "zerocopy", +] + +[[package]] +name = "vmcore" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "futures", + "futures-concurrency", + "hvdef", + "inspect", + "linkme", + "mesh", + "pal_async", + "pal_event", + "parking_lot", + "save_restore_derive", + "slab", + "thiserror", + "time", + "tracelimit", + "tracing", + "vm_resource", + "zerocopy", +] + +[[package]] +name = "vmfirmwareigvm_dll" +version = "0.0.0" +dependencies = [ + "embed-resource", +] + +[[package]] +name = "vmgs" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "cfg-if", + "crc32fast", + "getrandom", + "guid", + "inspect", + "inspect_counters", + "mesh_protobuf", + "openssl", + "pal_async", + "tempfile_helpers", + "thiserror", + "tracing", + "vhd1_defs", + "vmgs_format", + "windows", + "zerocopy", +] + +[[package]] +name = "vmgs_broker" +version = "0.0.0" +dependencies = [ + "async-trait", + "inspect", + "mesh_channel", + "pal_async", + "thiserror", + "tracing", + "vm_resource", + "vmcore", + "vmgs", + "vmgs_format", + "vmgs_resources", +] + +[[package]] +name = "vmgs_format" +version = "0.0.0" +dependencies = [ + "bitfield-struct", + "inspect", + "open_enum", + "static_assertions", + "zerocopy", +] + +[[package]] +name = "vmgs_lib" +version = "0.0.0" +dependencies = [ + "futures", + "vmgs", + "vmgs_format", +] + +[[package]] +name = "vmgs_resources" +version = "0.0.0" +dependencies = [ + "mesh", + "vm_resource", + "vmgs_format", +] + +[[package]] +name = "vmgstool" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "clap", + "fs-err", + "guid", + "hcl_compat_uefi_nvram_storage", + "hex", + "pal_async", + "serde", + "serde_json", + "tempfile", + "thiserror", + "ucs2 0.0.0", + "uefi_nvram_specvars", + "uefi_nvram_storage", + "uefi_specs", + "vmgs", + "vmgs_format", +] + +[[package]] +name = "vmm-sys-util" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d1435039746e20da4f8d507a72ee1b916f7b4b05af7a91c093d2c6561934ede" +dependencies = [ + "bitflags 1.3.2", + "libc", +] + +[[package]] +name = "vmm_core" +version = "0.0.0" +dependencies = [ + "aarch64defs", + "acpi", + "acpi_spec", + "anyhow", + "async-trait", + "build_rs_guest_arch", + "cache_topology", + "chipset", + "futures", + "futures-concurrency", + "guestmem", + "hcl_compat_uefi_nvram_storage", + "hvdef", + "iced-x86", + "input_core", + "inspect", + "memory_range", + "mesh", + "pal_async", + "parking_lot", + "pci_core", + "pci_resources", + "power_resources", + "slab", + "state_unit", + "thiserror", + "tracing", + "virt", + "virt_support_x86emu", + "vm_resource", + "vm_topology", + "vmbus_channel", + "vmbus_server", + "vmcore", + "vmm_core_defs", + "vmotherboard", + "vpci", + "x86defs", + "zerocopy", +] + +[[package]] +name = "vmm_core_defs" +version = "0.0.0" +dependencies = [ + "inspect", + "mesh", + "virt", +] + +[[package]] +name = "vmm_test_images" +version = "0.0.0" +dependencies = [ + "clap", + "petri_artifacts_vmm_test", + "serde", +] + +[[package]] +name = "vmm_test_macros" +version = "0.0.0" +dependencies = [ + "petri_artifacts_common", + "petri_artifacts_vmm_test", + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "vmm_test_petri_support" +version = "0.0.0" +dependencies = [ + "anyhow", + "parking_lot", + "petri", + "petri_artifacts_common", + "petri_artifacts_vmm_test", +] + +[[package]] +name = "vmm_tests" +version = "0.0.0" +dependencies = [ + "anyhow", + "build_rs_guest_arch", + "disk_backend_resources", + "gdma_resources", + "guid", + "hvlite_defs", + "hvlite_ttrpc_vmservice", + "mesh", + "mesh_rpc", + "net_backend_resources", + "nvme_resources", + "pal_async", + "petri", + "petri_artifact_resolver_openvmm_known_paths", + "petri_artifacts_common", + "petri_artifacts_vmm_test", + "scsidisk_resources", + "storvsp_resources", + "test_with_tracing", + "tracing", + "unix_socket", + "vm_resource", + "vmm_core_defs", + "vmm_test_macros", + "vmm_test_petri_support", + "vtl2_settings_proto", +] + +[[package]] +name = "vmotherboard" +version = "0.0.0" +dependencies = [ + "anyhow", + "arc_cyclic_builder", + "async-trait", + "chipset", + "chipset_device", + "chipset_device_resources", + "chipset_legacy", + "chipset_resources", + "closeable_mutex", + "firmware_pcat", + "firmware_uefi", + "floppy", + "floppy_pcat_stub", + "framebuffer", + "futures", + "generation_id", + "guest_watchdog", + "guestmem", + "ide", + "inspect", + "inspect_counters", + "local_clock", + "mesh", + "missing_dev", + "pal_async", + "parking_lot", + "paste", + "pci_bus", + "range_map_vec", + "state_unit", + "thiserror", + "tracelimit", + "tracing", + "uefi_nvram_storage", + "vga", + "vga_proxy", + "vm_resource", + "vmcore", + "watchdog_core", +] + +[[package]] +name = "vmsocket" +version = "0.0.0" +dependencies = [ + "cfg-if", + "guid", + "libc", + "mesh", + "pal_async", + "socket2", + "windows-sys 0.52.0", +] + +[[package]] +name = "vmswitch" +version = "0.0.0" +dependencies = [ + "futures", + "getrandom", + "guid", + "pal", + "pal_async", + "pal_event", + "thiserror", + "tracing", + "widestring", + "winapi", + "zerocopy", + "zerocopy_helpers", +] + +[[package]] +name = "vnc" +version = "0.0.0" +dependencies = [ + "futures", + "pal_async", + "socket2", + "thiserror", + "zerocopy", +] + +[[package]] +name = "vnc_worker" +version = "0.0.0" +dependencies = [ + "anyhow", + "framebuffer", + "futures", + "input_core", + "inspect", + "mesh", + "mesh_worker", + "pal_async", + "tracing", + "tracing_helpers", + "vmsocket", + "vnc", + "vnc_worker_defs", +] + +[[package]] +name = "vnc_worker_defs" +version = "0.0.0" +dependencies = [ + "framebuffer", + "input_core", + "mesh", + "mesh_worker", + "vmsocket", +] + +[[package]] +name = "vpci" +version = "0.0.0" +dependencies = [ + "anyhow", + "async-trait", + "bitfield-struct", + "chipset_arc_mutex_device", + "chipset_device", + "closeable_mutex", + "device_emulators", + "guestmem", + "guid", + "hvdef", + "inspect", + "mesh", + "open_enum", + "pal_async", + "parking_lot", + "pci_core", + "task_control", + "test_with_tracing", + "thiserror", + "tracelimit", + "tracing", + "vmbus_async", + "vmbus_channel", + "vmbus_ring", + "vmcore", + "zerocopy", +] + +[[package]] +name = "vswhom" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" +dependencies = [ + "libc", + "vswhom-sys", +] + +[[package]] +name = "vswhom-sys" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3b17ae1f6c8a2b28506cd96d412eebf83b4a0ff2cbefeeb952f2f9dfa44ba18" +dependencies = [ + "cc", + "libc", +] + +[[package]] +name = "vtl2_settings_proto" +version = "0.0.0" +dependencies = [ + "pbjson", + "pbjson-build", + "pbjson-types", + "prost", + "prost-build", + "serde", +] + +[[package]] +name = "vtl_array" +version = "0.0.0" +dependencies = [ + "bitvec", + "hvdef", + "inspect", +] + +[[package]] +name = "w32-error" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa7c61a6bd91e168c12fc170985725340f6b458eb6f971d1cf6c34f74ffafb43" +dependencies = [ + "winapi", +] + +[[package]] +name = "walkdir" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" +dependencies = [ + "same-file", + "winapi-util", +] + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.11.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + +[[package]] +name = "watchdog_core" +version = "0.0.0" +dependencies = [ + "async-trait", + "bitfield-struct", + "inspect", + "mesh", + "pal_async", + "thiserror", + "tracing", + "vmcore", +] + +[[package]] +name = "watchdog_vmgs_format" +version = "0.0.0" +dependencies = [ + "thiserror", + "vmcore", +] + +[[package]] +name = "wchar" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1ca6ea80317e76471c3aa6d47efb151ef04538960ab810845a1c854f5cd7d8c" +dependencies = [ + "wchar-impl", +] + +[[package]] +name = "wchar-impl" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "075c93156fed21f9dab57af5e81604d0fdb67432c919a8c1f78bb979f06a3d25" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "which" +version = "4.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" +dependencies = [ + "either", + "home", + "once_cell", + "rustix", +] + +[[package]] +name = "which" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fa5e0c10bf77f44aac573e498d1a82d5fbd5e91f6fc0a99e7be4b38e85e101c" +dependencies = [ + "either", + "home", + "once_cell", + "rustix", + "windows-sys 0.52.0", +] + +[[package]] +name = "whp" +version = "0.0.0" +dependencies = [ + "criterion", + "win_import_lib", + "winapi", + "zerocopy", +] + +[[package]] +name = "widestring" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" + +[[package]] +name = "win_etw_metadata" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e50d0fa665033a19ecefd281b4fb5481eba2972dedbb5ec129c9392a206d652f" +dependencies = [ + "bitflags 1.3.2", +] + +[[package]] +name = "win_etw_provider" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7f61e9dfafedf5eb4348902f2a32d326f2371245d05f012cdc67b9251ad6ea3" +dependencies = [ + "w32-error", + "widestring", + "win_etw_metadata", + "winapi", + "zerocopy", +] + +[[package]] +name = "win_etw_tracing" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d81ad6b448007f4445466a7aed270c56f05e64f5f996dc9a650b3d38c73e921" +dependencies = [ + "bytes", + "tracing", + "tracing-log 0.1.4", + "tracing-subscriber", + "win_etw_metadata", + "win_etw_provider", +] + +[[package]] +name = "win_import_lib" +version = "0.0.0" +dependencies = [ + "anyhow", + "cc", +] + +[[package]] +name = "win_prng_support" +version = "0.0.0" +dependencies = [ + "widestring", + "win_import_lib", +] + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" +dependencies = [ + "winapi", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1de69df01bdf1ead2f4ac895dc77c9351aefff65b2f3db429a343f9cbf05e132" +dependencies = [ + "windows-core", + "windows-targets 0.52.5", +] + +[[package]] +name = "windows-core" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4698e52ed2d08f8658ab0c39512a7c00ee5fe2688c65f8c0a4f06750d729f2a6" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-result", + "windows-targets 0.52.5", +] + +[[package]] +name = "windows-implement" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6fc35f58ecd95a9b71c4f2329b911016e6bec66b3f2e6a4aad86bd2e99e2f9b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "windows-interface" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08990546bf4edef8f431fa6326e032865f27138718c587dc21bc0265bbcb57cc" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "windows-result" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "749f0da9cc72d82e600d8d2e44cadd0b9eedb9038f71a1c58556ac1c5791813b" +dependencies = [ + "windows-targets 0.52.5", +] + +[[package]] +name = "windows-service" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d24d6bcc7f734a4091ecf8d7a64c5f7d7066f45585c1861eba06449909609c8a" +dependencies = [ + "bitflags 2.4.2", + "widestring", + "windows-sys 0.52.0", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.5", +] + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.5", +] + +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", +] + +[[package]] +name = "windows-targets" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" +dependencies = [ + "windows_aarch64_gnullvm 0.52.5", + "windows_aarch64_msvc 0.52.5", + "windows_i686_gnu 0.52.5", + "windows_i686_gnullvm", + "windows_i686_msvc 0.52.5", + "windows_x86_64_gnu 0.52.5", + "windows_x86_64_gnullvm 0.52.5", + "windows_x86_64_msvc 0.52.5", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" + +[[package]] +name = "winnow" +version = "0.5.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7cf47b659b318dccbd69cc4797a39ae128f533dce7902a1096044d1967b9c16" +dependencies = [ + "memchr", +] + +[[package]] +name = "winreg" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" +dependencies = [ + "cfg-if", + "windows-sys 0.48.0", +] + +[[package]] +name = "wyz" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" +dependencies = [ + "tap", +] + +[[package]] +name = "x86defs" +version = "0.0.0" +dependencies = [ + "arbitrary", + "bitfield-struct", + "open_enum", + "zerocopy", +] + +[[package]] +name = "x86emu" +version = "0.0.0" +dependencies = [ + "arbitrary", + "futures", + "iced-x86", + "thiserror", + "tracing", + "x86defs", + "zerocopy", +] + +[[package]] +name = "xshell" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d47097dc5c85234b1e41851b3422dd6d19b3befdd35b4ae5ce386724aeca981" +dependencies = [ + "xshell-macros", +] + +[[package]] +name = "xshell-macros" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88301b56c26dd9bf5c43d858538f82d6f3f7764767defbc5d34e59459901c41a" + +[[package]] +name = "xtask" +version = "0.0.0" +dependencies = [ + "anyhow", + "cargo_toml", + "ci_logger", + "clap", + "clap_dyn_complete", + "fatfs", + "fs-err", + "futures", + "glob", + "gptman", + "grep-regex", + "grep-searcher", + "guid", + "ignore", + "log", + "mbrman", + "rayon", + "serde", + "serde_json", + "toml_edit", + "vmm_test_images", + "walkdir", + "which 6.0.0", + "xshell", + "zerocopy", +] + +[[package]] +name = "xtask_fuzz" +version = "0.0.0" +dependencies = [ + "libfuzzer-sys", + "tracing-subscriber", +] + +[[package]] +name = "zerocopy" +version = "0.7.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" +dependencies = [ + "byteorder", + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.7.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.48", +] + +[[package]] +name = "zerocopy_helpers" +version = "0.0.0" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "zeroize" +version = "1.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" diff --git a/pkgs/by-name/op/openvmm/package.nix b/pkgs/by-name/op/openvmm/package.nix new file mode 100644 index 000000000000..14e659cc1459 --- /dev/null +++ b/pkgs/by-name/op/openvmm/package.nix @@ -0,0 +1,57 @@ +{ + lib, + fetchFromGitHub, + rustPlatform, + pkg-config, + openssl, + protobuf, +}: + +rustPlatform.buildRustPackage rec { + pname = "openvmm"; + version = "0-unstable-2024-10-19"; + + src = fetchFromGitHub { + owner = "microsoft"; + repo = "openvmm"; + rev = "2e5acb8ab89b75d6ff59d537e9f21445d830386d"; + hash = "sha256-Fi5hDFV2SfpqJjXSc7YwlNDnoL5TTgiqmFMt+ls2Uu4="; + }; + + separateDebugInfo = true; + + env = { + # Needed to get openssl-sys to use pkg-config. + OPENSSL_NO_VENDOR = 1; + PROTOC = "protoc"; + }; + nativeBuildInputs = [ + pkg-config + protobuf + ]; + buildInputs = [ + openssl + ]; + + cargoLock = { + lockFile = ./Cargo.lock; + outputHashes = { + "bitvec-1.1.0" = "sha256-uXOTbrGCSnl/F6IJPZuViZKXg4BEMG4+lVcLxK5KIwc="; + "ms-tpm-20-ref-0.1.0" = "sha256-eB3MWRlOPtxG55sLH7HIWzSjVEY05IIBZOltTpsGpnE="; + "mshv-bindings-0.1.1" = "sha256-CZEhFb9qDR260OFA/mlTldEMFlF8bhawVAxXFWqPIcU="; + "pbjson-build-0.5.1" = "sha256-itmY3c35O7j0Otb1qyr2IDUw1MBWOCB3WwyU60ajBO4="; + }; + }; + + meta = with lib; { + homepage = "https://github.com/microsoft/openvmm"; + description = "modular, cross-platform Virtual Machine Monitor (VMM), written in Rust"; + license = licenses.mit; + mainProgram = "openvmm"; + maintainers = with maintainers; [ astro ]; + platforms = [ + "aarch64-linux" + "x86_64-linux" + ]; + }; +} From 17fcf9cfed9b2f195985f8827f60ea5f08c05821 Mon Sep 17 00:00:00 2001 From: Reinis Taukulis Date: Sat, 12 Oct 2024 23:47:53 +0300 Subject: [PATCH 48/52] vimPlugins.avante-nvim: 2024-09-30 -> 2024-10-18 --- .../editors/vim/plugins/avante-nvim/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/editors/vim/plugins/avante-nvim/default.nix b/pkgs/applications/editors/vim/plugins/avante-nvim/default.nix index 936d12af0434..d31ce3e661c8 100644 --- a/pkgs/applications/editors/vim/plugins/avante-nvim/default.nix +++ b/pkgs/applications/editors/vim/plugins/avante-nvim/default.nix @@ -10,13 +10,13 @@ }: let - version = "2024-09-30"; + version = "2024-10-18"; src = fetchFromGitHub { owner = "yetone"; repo = "avante.nvim"; - rev = "0705234991d03170a72582085dc508600a03a779"; - hash = "sha256-tAigYqS3ZAtZJp7RaarbXrDxrjiYu2wjNHq6GP/BMfk="; + rev = "36b23cef16c2c624c34bea213f01c06782d2ca40"; + hash = "sha256-QUFcJMbfr5BAS04ig1IHLCMLACeQhFVH9ZCH/VD8i8Y="; }; meta = with lib; { @@ -71,6 +71,5 @@ vimUtils.buildVimPlugin { ''; doInstallCheck = true; - # TODO: enable after https://github.com/NixOS/nixpkgs/pull/342240 merged - # nvimRequireCheck = "avante"; + nvimRequireCheck = "avante"; } From c51b9a630fdf8451dd1cb741b0a75a62ac2d0e24 Mon Sep 17 00:00:00 2001 From: wxt <3264117476@qq.com> Date: Fri, 18 Oct 2024 20:50:13 +0800 Subject: [PATCH 49/52] epic: run nixfmt --- .../networking/irc/epic5/default.nix | 33 +++++++++++++++---- 1 file changed, 26 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/networking/irc/epic5/default.nix b/pkgs/applications/networking/irc/epic5/default.nix index c3a10cc39e9d..349ae8c0c834 100644 --- a/pkgs/applications/networking/irc/epic5/default.nix +++ b/pkgs/applications/networking/irc/epic5/default.nix @@ -1,4 +1,15 @@ -{ lib, stdenv, fetchurl, openssl, ncurses, libiconv, tcl, coreutils, fetchpatch, libxcrypt }: +{ + lib, + stdenv, + fetchurl, + openssl, + ncurses, + libiconv, + tcl, + coreutils, + fetchpatch, + libxcrypt, +}: stdenv.mkDerivation rec { pname = "epic5"; @@ -10,8 +21,16 @@ stdenv.mkDerivation rec { }; # Darwin needs libiconv, tcl; while Linux build don't - buildInputs = [ openssl ncurses libxcrypt ] - ++ lib.optionals stdenv.hostPlatform.isDarwin [ libiconv tcl ]; + buildInputs = + [ + openssl + ncurses + libxcrypt + ] + ++ lib.optionals stdenv.hostPlatform.isDarwin [ + libiconv + tcl + ]; patches = [ (fetchpatch { @@ -20,7 +39,10 @@ stdenv.mkDerivation rec { }) ]; - configureFlags = [ "--disable-debug" "--with-ipv6" ]; + configureFlags = [ + "--disable-debug" + "--with-ipv6" + ]; postConfigure = '' substituteInPlace bsdinstall \ @@ -36,6 +58,3 @@ stdenv.mkDerivation rec { maintainers = [ ]; }; } - - - From 1b2eb552be105468da2ab4fb542034599bcc9bf3 Mon Sep 17 00:00:00 2001 From: wxt <3264117476@qq.com> Date: Fri, 18 Oct 2024 20:51:06 +0800 Subject: [PATCH 50/52] epic: move to by-name --- .../irc/epic5/default.nix => by-name/ep/epic5/package.nix} | 0 pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 2 deletions(-) rename pkgs/{applications/networking/irc/epic5/default.nix => by-name/ep/epic5/package.nix} (100%) diff --git a/pkgs/applications/networking/irc/epic5/default.nix b/pkgs/by-name/ep/epic5/package.nix similarity index 100% rename from pkgs/applications/networking/irc/epic5/default.nix rename to pkgs/by-name/ep/epic5/package.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 982de17fe824..c5a4fba39e3c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -28879,8 +28879,6 @@ with pkgs; ephemeral = callPackage ../applications/networking/browsers/ephemeral { }; - epic5 = callPackage ../applications/networking/irc/epic5 { }; - epick = callPackage ../applications/graphics/epick { inherit (darwin.apple_sdk.frameworks) AppKit; }; From 23142ecd11ac992c176e09624694606343391932 Mon Sep 17 00:00:00 2001 From: wxt <3264117476@qq.com> Date: Fri, 18 Oct 2024 21:07:59 +0800 Subject: [PATCH 51/52] epic: 2.0.1 -> 3.0 --- pkgs/by-name/ep/epic5/package.nix | 43 ++++++++++++------------------- 1 file changed, 17 insertions(+), 26 deletions(-) diff --git a/pkgs/by-name/ep/epic5/package.nix b/pkgs/by-name/ep/epic5/package.nix index 349ae8c0c834..a73b64043b5c 100644 --- a/pkgs/by-name/ep/epic5/package.nix +++ b/pkgs/by-name/ep/epic5/package.nix @@ -1,60 +1,51 @@ { lib, stdenv, + ruby, fetchurl, openssl, ncurses, libiconv, tcl, - coreutils, - fetchpatch, libxcrypt, + perl, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "epic5"; - version = "2.0.1"; + version = "3.0"; src = fetchurl { - url = "http://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/${pname}-${version}.tar.xz"; - sha256 = "1ap73d5f4vccxjaaq249zh981z85106vvqmxfm4plvy76b40y9jm"; + url = "https://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/epic5-${finalAttrs.version}.tar.xz"; + hash = "sha256-ltRzUME6PZkBnaDmoEsMf4Datt26WQvMZ527iswXeaE="; }; - # Darwin needs libiconv, tcl; while Linux build don't buildInputs = [ openssl ncurses libxcrypt + ruby ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ libiconv tcl ]; - patches = [ - (fetchpatch { - url = "https://sources.debian.net/data/main/e/epic5/2.0.1-1/debian/patches/openssl-1.1.patch"; - sha256 = "03bpsyv1sr5icajs2qkdvv8nnn6rz6yvvj7pgiq8gz9sbp6siyfv"; - }) - ]; - configureFlags = [ - "--disable-debug" "--with-ipv6" ]; - postConfigure = '' - substituteInPlace bsdinstall \ - --replace /bin/cp ${coreutils}/bin/cp \ - --replace /bin/rm ${coreutils}/bin/rm \ - --replace /bin/chmod ${coreutils}/bin/chmod \ - ''; + nativeBuildInputs = [ + perl + ]; - meta = with lib; { - homepage = "http://epicsol.org"; + meta = { + homepage = "https://epicsol.org"; description = "IRC client that offers a great ircII interface"; - license = licenses.bsd3; - maintainers = [ ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bot-wxt1221 ]; + platforms = lib.platforms.unix; + mainProgram = "epic5"; }; -} +}) From 50db3b6fbb23087df9984f380a83bd0fed13146b Mon Sep 17 00:00:00 2001 From: Birdee <85372418+BirdeeHub@users.noreply.github.com> Date: Mon, 21 Oct 2024 17:31:01 -0700 Subject: [PATCH 52/52] neovim.rubyEnv: 0.9.0 -> 0.10.0 (#332256) --- .../editors/neovim/ruby_provider/Gemfile.lock | 6 +++--- pkgs/applications/editors/neovim/ruby_provider/gemset.nix | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/editors/neovim/ruby_provider/Gemfile.lock b/pkgs/applications/editors/neovim/ruby_provider/Gemfile.lock index 9a8aaeeb56c4..dc0140032066 100644 --- a/pkgs/applications/editors/neovim/ruby_provider/Gemfile.lock +++ b/pkgs/applications/editors/neovim/ruby_provider/Gemfile.lock @@ -1,9 +1,9 @@ GEM remote: https://rubygems.org/ specs: - msgpack (1.5.1) + msgpack (1.7.2) multi_json (1.15.0) - neovim (0.9.0) + neovim (0.10.0) msgpack (~> 1.1) multi_json (~> 1.0) @@ -14,4 +14,4 @@ DEPENDENCIES neovim BUNDLED WITH - 2.1.4 + 2.3.27 diff --git a/pkgs/applications/editors/neovim/ruby_provider/gemset.nix b/pkgs/applications/editors/neovim/ruby_provider/gemset.nix index 1a4f517412fe..e2df8d535c47 100644 --- a/pkgs/applications/editors/neovim/ruby_provider/gemset.nix +++ b/pkgs/applications/editors/neovim/ruby_provider/gemset.nix @@ -4,10 +4,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "sha256-fPWiGi0w4OFlMZOIf3gd21jyeYhg5t/VdLz7kK9fD8Q="; + sha256 = "1a5adcb7bwan09mqhj3wi9ib52hmdzmqg7q08pggn3adibyn5asr"; type = "gem"; }; - version = "1.5.1"; + version = "1.7.2"; }; multi_json = { groups = ["default"]; @@ -25,9 +25,9 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "sha256-hRI43XGHGeqxMvpFjp0o79GGReiLXTkhwh5LYq6AQL4="; + sha256 = "0gl34rriwwmj6p1s6ms0b311wmqaqiyc510svq31283jk0kp0qcd"; type = "gem"; }; - version = "0.9.0"; + version = "0.10.0"; }; }