From f8db37f3a1bbd05f8594b13d11228ca6f7fb3327 Mon Sep 17 00:00:00 2001 From: seth Date: Sat, 14 Dec 2024 06:44:37 -0400 Subject: [PATCH 01/57] sdl3: init at 3.1.8 --- nixos/tests/all-tests.nix | 1 + nixos/tests/sdl3.nix | 28 ++++ pkgs/by-name/sd/sdl3/package.nix | 230 +++++++++++++++++++++++++++++++ 3 files changed, 259 insertions(+) create mode 100644 nixos/tests/sdl3.nix create mode 100644 pkgs/by-name/sd/sdl3/package.nix diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index afb1730955ef..222b27ed7992 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -921,6 +921,7 @@ in { scion-freestanding-deployment = handleTest ./scion/freestanding-deployment {}; scrutiny = handleTest ./scrutiny.nix {}; sddm = handleTest ./sddm.nix {}; + sdl3 = handleTest ./sdl3.nix { }; seafile = handleTest ./seafile.nix {}; searx = runTest ./searx.nix; seatd = handleTest ./seatd.nix {}; diff --git a/nixos/tests/sdl3.nix b/nixos/tests/sdl3.nix new file mode 100644 index 000000000000..d07f342fe8b2 --- /dev/null +++ b/nixos/tests/sdl3.nix @@ -0,0 +1,28 @@ +import ./make-test-python.nix ( + { pkgs, ... }: + { + name = "sdl3"; + meta.maintainers = pkgs.sdl3.meta.maintainers; + + nodes.machine = + { pkgs, ... }: + { + imports = [ ./common/x11.nix ]; + + environment.systemPackages = [ pkgs.sdl3.passthru.debug-text-example ]; + }; + + enableOCR = true; + + testScript = '' + machine.wait_for_x() + + machine.execute("debug-text >&2 &") + + machine.wait_for_window("examples/renderer/debug-text") + machine.wait_for_text("Hello world") + + machine.screenshot("screen") + ''; + } +) diff --git a/pkgs/by-name/sd/sdl3/package.nix b/pkgs/by-name/sd/sdl3/package.nix new file mode 100644 index 000000000000..a215f75c1889 --- /dev/null +++ b/pkgs/by-name/sd/sdl3/package.nix @@ -0,0 +1,230 @@ +{ + lib, + stdenv, + config, + alsa-lib, + apple-sdk_11, + cmake, + darwinMinVersionHook, + dbus, + fcitx5, + fetchFromGitHub, + ibus, + installShellFiles, + libGL, + libayatana-appindicator, + libdecor, + libdrm, + libjack2, + libpulseaudio, + libusb1, + libxkbcommon, + mesa, + ninja, + nix-update-script, + nixosTests, + pipewire, + sndio, + systemdLibs, + testers, + validatePkgConfig, + wayland, + wayland-scanner, + xorg, + zenity, + alsaSupport ? stdenv.hostPlatform.isLinux && !stdenv.hostPlatform.isAndroid, + dbusSupport ? stdenv.hostPlatform.isLinux && !stdenv.hostPlatform.isAndroid, + drmSupport ? stdenv.hostPlatform.isLinux && !stdenv.hostPlatform.isAndroid, + ibusSupport ? stdenv.hostPlatform.isUnix && !stdenv.hostPlatform.isDarwin, + jackSupport ? stdenv.hostPlatform.isLinux && !stdenv.hostPlatform.isAndroid, + libdecorSupport ? stdenv.hostPlatform.isLinux && !stdenv.hostPlatform.isAndroid, + openglSupport ? lib.meta.availableOn stdenv.hostPlatform mesa, + pipewireSupport ? stdenv.hostPlatform.isLinux && !stdenv.hostPlatform.isAndroid, + pulseaudioSupport ? + config.pulseaudio or stdenv.hostPlatform.isLinux && !stdenv.hostPlatform.isAndroid, + libudevSupport ? stdenv.hostPlatform.isLinux && !stdenv.hostPlatform.isAndroid, + sndioSupport ? false, + testSupport ? true, + waylandSupport ? stdenv.isLinux && !stdenv.hostPlatform.isAndroid, + x11Support ? !stdenv.hostPlatform.isAndroid && !stdenv.hostPlatform.isWindows, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "sdl3"; + version = "3.1.8"; + + outputs = [ + "lib" + "dev" + "out" + ]; + + src = fetchFromGitHub { + owner = "libsdl-org"; + repo = "SDL"; + tag = "preview-${finalAttrs.version}"; + hash = "sha256-yfnW5y99EegifRavvZWmXPH2NFPKWoe90RmGDGk6PI4="; + }; + + postPatch = + # Tests timeout on Darwin + lib.optionalString testSupport '' + substituteInPlace test/CMakeLists.txt \ + --replace-fail 'set(noninteractive_timeout 10)' 'set(noninteractive_timeout 30)' + '' + + lib.optionalString waylandSupport '' + substituteInPlace src/video/wayland/SDL_waylandmessagebox.c \ + --replace-fail '"zenity"' '"${lib.getExe zenity}"' + ''; + + strictDeps = true; + + nativeBuildInputs = [ + cmake + ninja + validatePkgConfig + ] ++ lib.optional waylandSupport wayland-scanner; + + buildInputs = + finalAttrs.dlopenBuildInputs + ++ lib.optionals stdenv.hostPlatform.isDarwin [ + # error: 'MTLPixelFormatASTC_4x4_LDR' is unavailable: not available on macOS + (darwinMinVersionHook "11.0") + + apple-sdk_11 + ] + ++ lib.optionals ibusSupport [ + fcitx5 + ibus + ] + ++ lib.optional waylandSupport zenity; + + dlopenBuildInputs = + lib.optionals stdenv.hostPlatform.isLinux [ + libusb1 + ] + ++ lib.optional ( + stdenv.hostPlatform.isUnix && !stdenv.hostPlatform.isDarwin + ) libayatana-appindicator + ++ lib.optional alsaSupport alsa-lib + ++ lib.optional dbusSupport dbus + ++ lib.optionals drmSupport [ + libdrm + mesa # libgbm + ] + ++ lib.optional jackSupport libjack2 + ++ lib.optional libdecorSupport libdecor + ++ lib.optional libudevSupport systemdLibs + ++ lib.optional openglSupport libGL + ++ lib.optional pipewireSupport pipewire + ++ lib.optional pulseaudioSupport libpulseaudio + ++ lib.optional sndioSupport sndio + ++ lib.optionals waylandSupport [ + libxkbcommon + wayland + ] + ++ lib.optionals x11Support [ + xorg.libX11 + xorg.libXScrnSaver + xorg.libXcursor + xorg.libXext + xorg.libXfixes + xorg.libXi + xorg.libXrandr + ]; + + propagatedBuildInputs = finalAttrs.dlopenPropagatedBuildInputs; + + dlopenPropagatedBuildInputs = + lib.optional (openglSupport && !stdenv.hostPlatform.isDarwin) libGL + ++ lib.optional x11Support xorg.libX11; + + cmakeFlags = [ + (lib.cmakeBool "SDL_ALSA" alsaSupport) + (lib.cmakeBool "SDL_DBUS" dbusSupport) + (lib.cmakeBool "SDL_IBUS" ibusSupport) + (lib.cmakeBool "SDL_JACK" jackSupport) + (lib.cmakeBool "SDL_KMSDRM" drmSupport) + (lib.cmakeBool "SDL_LIBUDEV" libudevSupport) + (lib.cmakeBool "SDL_OPENGL" openglSupport) + (lib.cmakeBool "SDL_PIPEWIRE" pipewireSupport) + (lib.cmakeBool "SDL_PULSEAUDIO" pulseaudioSupport) + (lib.cmakeBool "SDL_SNDIO" sndioSupport) + (lib.cmakeBool "SDL_TEST_LIBRARY" testSupport) + (lib.cmakeBool "SDL_WAYLAND" waylandSupport) + (lib.cmakeBool "SDL_WAYLAND_LIBDECOR" libdecorSupport) + (lib.cmakeBool "SDL_X11" x11Support) + + (lib.cmakeBool "SDL_TESTS" finalAttrs.finalPackage.doCheck) + ]; + + doCheck = testSupport && stdenv.buildPlatform.canExecute stdenv.hostPlatform; + + # See comment below. We actually *do* need these RPATH entries + dontPatchELF = true; + + env = { + # Many dependencies are not directly linked to, but dlopen()'d at runtime. Adding them to the RPATH + # helps them be found + NIX_LDFLAGS = + lib.optionalString (stdenv.hostPlatform.extensions.sharedLibrary == ".so") + "-rpath ${ + lib.makeLibraryPath (finalAttrs.dlopenBuildInputs ++ finalAttrs.dlopenPropagatedBuildInputs) + }"; + }; + + passthru = { + # Building this in its own derivation to make sure the rpath hack above propagate to users + debug-text-example = stdenv.mkDerivation (finalAttrs': { + pname = "sdl3-debug-text-example"; + inherit (finalAttrs) version src; + + sourceRoot = "${finalAttrs'.src.name}/examples/renderer/18-debug-text"; + + nativeBuildInputs = [ + installShellFiles + ]; + + buildInputs = [ finalAttrs.finalPackage ]; + + postBuild = '' + $CC -lSDL3 -o debug-text{,.c} + ''; + + postInstall = '' + installBin debug-text + ''; + + meta = { + inherit (finalAttrs.meta) maintainers platforms; + mainProgram = "debug-text"; + }; + }); + + tests = + { + pkg-config = testers.hasPkgConfigModules { package = finalAttrs.finalPackage; }; + inherit (finalAttrs.passthru) debug-text-example; + } + // lib.optionalAttrs stdenv.hostPlatform.isLinux { + nixosTest = nixosTests.sdl3; + }; + + updateScript = nix-update-script { + extraArgs = [ + "--version-regex" + "'preview-(.*)'" + ]; + }; + }; + + meta = { + description = "Cross-platform development library (Preview version)"; + homepage = "https://libsdl.org"; + changelog = "https://github.com/libsdl-org/SDL/releases/tag/${finalAttrs.src.tag}"; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ getchoo ]; + platforms = lib.platforms.unix; + pkgConfigModules = [ "sdl3" ]; + }; +}) From 32b0c77a7e67ae0d5fc9a6741089e8075a496780 Mon Sep 17 00:00:00 2001 From: Moritz Sanft <58110325+msanft@users.noreply.github.com> Date: Fri, 10 Jan 2025 15:24:49 +0100 Subject: [PATCH 02/57] syzkaller: init at 0-unstable-2024-01-09 --- pkgs/by-name/sy/syzkaller/package.nix | 60 +++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 pkgs/by-name/sy/syzkaller/package.nix diff --git a/pkgs/by-name/sy/syzkaller/package.nix b/pkgs/by-name/sy/syzkaller/package.nix new file mode 100644 index 000000000000..a2f1d4fdd272 --- /dev/null +++ b/pkgs/by-name/sy/syzkaller/package.nix @@ -0,0 +1,60 @@ +{ + lib, + stdenv, + fetchFromGitHub, + go, + ncurses, +}: +stdenv.mkDerivation (finalAttrs: { + pname = "syzkaller"; + version = "0-unstable-2024-01-09"; + + src = fetchFromGitHub { + owner = "google"; + repo = "syzkaller"; + rev = "67d7ec0a69193b2acbb8cdb5109d5505a9128ac5"; + hash = "sha256-hXYyomTPR7T2zJi49xylQdEXALYV6IbNXdHZo/JHqz8="; + }; + + nativeBuildInputs = [ + go + ncurses + ]; + + postPatch = + let + commitDate = lib.concatStringsSep "" ( + builtins.tail (lib.splitString "-" (lib.removePrefix "0-" finalAttrs.version)) + ); + dateString = "${commitDate}-133700"; # commit date + dummy time + in + '' + substituteInPlace Makefile \ + --replace-fail '$(shell git rev-parse HEAD)' '${finalAttrs.src.rev}' \ + --replace-fail '$(shell git diff --shortstat)' "" \ + --replace-fail '$(shell git log -n 1 --format="%cd" --date=format:%Y%m%d-%H%M%S)' '${dateString}' \ + --replace-fail './bin' "$out/bin" + ''; + + configurePhase = '' + runHook preConfigure + + mkdir -p $out/bin + + export GOCACHE=$TMPDIR/go-cache + export GOPATH="$TMPDIR/go" + + runHook postConfigure + ''; + + dontInstall = true; + + meta = { + description = "Unsupervised, coverage-guided kernel fuzzer"; + homepage = "https://github.com/google/syzkaller"; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.msanft ]; + platforms = lib.platforms.linux; + mainProgram = "syz-manager"; + }; +}) From e70ebc824a25ef566e53a51c0336ec3be6188459 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Sat, 11 Jan 2025 16:45:20 +0100 Subject: [PATCH 03/57] mongoose: 3.3.3 -> 3.3.4 --- pkgs/by-name/mo/mongoose/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/mo/mongoose/package.nix b/pkgs/by-name/mo/mongoose/package.nix index 7e1068164b56..8679c07c1a44 100644 --- a/pkgs/by-name/mo/mongoose/package.nix +++ b/pkgs/by-name/mo/mongoose/package.nix @@ -8,11 +8,11 @@ }: let - suitesparseVersion = "7.7.0"; + suitesparseVersion = "7.8.3"; in stdenv.mkDerivation { pname = "mongoose"; - version = "3.3.3"; + version = "3.3.4"; outputs = [ "bin" @@ -24,7 +24,7 @@ stdenv.mkDerivation { owner = "DrTimothyAldenDavis"; repo = "SuiteSparse"; rev = "v${suitesparseVersion}"; - hash = "sha256-wE1DKC0Hn3Q9X1FzKH7Kev26ICNWH0LEKQIQP98AGuo="; + hash = "sha256-ai3Xne1ByP2hcM9L236pUyVsVohW6k0BX0DRXPq/jhw="; }; nativeBuildInputs = [ From a4bea0f35f9619ac76a9887b714089221dde66c4 Mon Sep 17 00:00:00 2001 From: Mihai Fufezan Date: Sun, 12 Jan 2025 15:13:42 +0200 Subject: [PATCH 04/57] greetd.regreet: 0.1.3 -> 0.2.0 --- pkgs/applications/display-managers/greetd/regreet.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/display-managers/greetd/regreet.nix b/pkgs/applications/display-managers/greetd/regreet.nix index b1eeeb6f5bf3..6ff8d7e3587a 100644 --- a/pkgs/applications/display-managers/greetd/regreet.nix +++ b/pkgs/applications/display-managers/greetd/regreet.nix @@ -12,16 +12,16 @@ rustPlatform.buildRustPackage rec { pname = "regreet"; - version = "0.1.3"; + version = "0.2.0"; src = fetchFromGitHub { owner = "rharish101"; repo = "ReGreet"; rev = version; - hash = "sha256-PYBRfBdy6+cv3VKBFu5RUec/yfuKrAEkRxpanihIt1E="; + hash = "sha256-f8Xvno5QqmWz4SUiFYDvs8lFU1ZaqQ8gpTaVzWxW4T8="; }; - cargoHash = "sha256-SUIyekcuDbPIh/9+EKaAoep9hZDJv8BW+ovtWyDqiCI="; + cargoHash = "sha256-XdJbghHT2NR+pWAsgayz748C8yw/Rv86lNfvjABwJws="; buildFeatures = [ "gtk4_8" ]; From 91956156120622fecc38947ca02d0d0eb20a3620 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Fri, 17 Jan 2025 08:02:47 +0000 Subject: [PATCH 05/57] ode: 0.16.5 -> 0.16.6 --- pkgs/by-name/od/ode/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/od/ode/package.nix b/pkgs/by-name/od/ode/package.nix index 75d3441b8670..cdef316b45a2 100644 --- a/pkgs/by-name/od/ode/package.nix +++ b/pkgs/by-name/od/ode/package.nix @@ -7,11 +7,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "ode"; - version = "0.16.5"; + version = "0.16.6"; src = fetchurl { url = "https://bitbucket.org/odedevs/ode/downloads/ode-${finalAttrs.version}.tar.gz"; - hash = "sha256-uode3RZFcJWHle6qcPFIU7/DTMmHH4rd6NpH4SvVRnk="; + hash = "sha256-yRooxv8mUChHhKeccmo4DWr+yH7PejXDKmvgxbdFE+g="; }; buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ From b90638c68d93a23a06f0f0ad76f612c7be15c450 Mon Sep 17 00:00:00 2001 From: James Ward Date: Fri, 17 Jan 2025 09:12:59 -0700 Subject: [PATCH 06/57] jetbrains: 2024.3.1 -> 2024.3.3 jetbrains.clion: 2024.3.1.1 -> 2024.3.2 jetbrains.goland: 2024.3.1 -> 2024.3.2 jetbrains.idea-community: 2024.3.1.1 -> 2024.3.2 jetbrains.idea-ultimate: 2024.3.1.1 -> 2024.3.2 jetbrains.phpstorm: 2024.3.1.1 -> 2024.3.2 jetbrains.ruby-mine: 2024.3.1.1 -> 2024.3.2 jetbrains.rust-rover: 2024.3.2 -> 2024.3.3 jetbrains.webstorm: 2024.3.1.1 -> 2024.3.2 --- .../editors/jetbrains/bin/versions.json | 256 +++++++++--------- 1 file changed, 128 insertions(+), 128 deletions(-) diff --git a/pkgs/applications/editors/jetbrains/bin/versions.json b/pkgs/applications/editors/jetbrains/bin/versions.json index a5a884fcb2d4..6ac306823db8 100644 --- a/pkgs/applications/editors/jetbrains/bin/versions.json +++ b/pkgs/applications/editors/jetbrains/bin/versions.json @@ -11,10 +11,10 @@ "clion": { "update-channel": "CLion RELEASE", "url-template": "https://download.jetbrains.com/cpp/CLion-{version}.tar.gz", - "version": "2024.3.1.1", - "sha256": "054eff2dcdb7779b97d940b5425ae7c56bfafd657367e3a749275ef6a0a40368", - "url": "https://download.jetbrains.com/cpp/CLion-2024.3.1.1.tar.gz", - "build_number": "243.22562.225" + "version": "2024.3.2", + "sha256": "f21d72269bc0f3ce618f925ded44b5da440bcf1ec4ef3d83335acd90d020b6fa", + "url": "https://download.jetbrains.com/cpp/CLion-2024.3.2.tar.gz", + "build_number": "243.23654.114" }, "datagrip": { "update-channel": "DataGrip RELEASE", @@ -43,26 +43,26 @@ "goland": { "update-channel": "GoLand RELEASE", "url-template": "https://download.jetbrains.com/go/goland-{version}.tar.gz", - "version": "2024.3.1", - "sha256": "028cb0c004c1f0d6e46ce897784ea37291900a85ea49df47678c86aaea1ea681", - "url": "https://download.jetbrains.com/go/goland-2024.3.1.tar.gz", - "build_number": "243.22562.186" + "version": "2024.3.2", + "sha256": "6700ec71240cbde6002e9b28680b02f3a4b9ee0a7bd7a4d3bf5a13f67b8d53af", + "url": "https://download.jetbrains.com/go/goland-2024.3.2.tar.gz", + "build_number": "243.23654.119" }, "idea-community": { "update-channel": "IntelliJ IDEA RELEASE", "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}.tar.gz", - "version": "2024.3.1.1", - "sha256": "b183b126de2cd457475eea184874b5da2fa33ba5ae2ff874bdc8c1d534156428", - "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.1.1.tar.gz", - "build_number": "243.22562.218" + "version": "2024.3.2", + "sha256": "ad9d587b704806d9a21dfebe5c51415df94699bba958d7133763cfd56934ced8", + "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.2.tar.gz", + "build_number": "243.23654.117" }, "idea-ultimate": { "update-channel": "IntelliJ IDEA RELEASE", "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}.tar.gz", - "version": "2024.3.1.1", - "sha256": "d80684aa73fe9dee14ea405058d54a34340266cf675bfbaf4c760da6eb2d3fe9", - "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.1.1.tar.gz", - "build_number": "243.22562.218" + "version": "2024.3.2", + "sha256": "05f30fff53c1b73f9c261e812c236134e203bf7d847424a27d9409fd6b0b6fcb", + "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.2.tar.gz", + "build_number": "243.23654.117" }, "mps": { "update-channel": "MPS RELEASE", @@ -75,10 +75,10 @@ "phpstorm": { "update-channel": "PhpStorm RELEASE", "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}.tar.gz", - "version": "2024.3.1.1", - "sha256": "8bb909b6322f296d4e44265223cffca2649e4344d1233b670f751c5b2d7ae698", - "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.1.1.tar.gz", - "build_number": "243.22562.233", + "version": "2024.3.2", + "sha256": "922f11f877b66d1815d5440b4891421269d2d235112e2fa6270b61096db36c2f", + "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.2.tar.gz", + "build_number": "243.23654.115", "version-major-minor": "2022.3" }, "pycharm-community": { @@ -108,26 +108,26 @@ "ruby-mine": { "update-channel": "RubyMine RELEASE", "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}.tar.gz", - "version": "2024.3.1.1", - "sha256": "fe849fd90725f12c6dabb20973f1d5eb6fc9baddd692961197527326639d7def", - "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.1.1.tar.gz", - "build_number": "243.22562.213" + "version": "2024.3.2", + "sha256": "8c064b6119062ae568df795c45054cbdf608951e9c59957d95879fed7c30714e", + "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.2.tar.gz", + "build_number": "243.23654.112" }, "rust-rover": { "update-channel": "RustRover RELEASE", "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}.tar.gz", - "version": "2024.3.2", - "sha256": "c6549572baa913c9842b0227257f7477531269393d5989622a3d0b802b999bf8", - "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.2.tar.gz", - "build_number": "243.22562.230" + "version": "2024.3.3", + "sha256": "abb5738327c0530c05be26b65abaead342e6aedb409b481dd537274d3dfd33f0", + "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.3.tar.gz", + "build_number": "243.23654.116" }, "webstorm": { "update-channel": "WebStorm RELEASE", "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}.tar.gz", - "version": "2024.3.1.1", - "sha256": "275999ca069658257d6f06875f283abf9c0b102bdf812cf7eefe86a1dda90c1b", - "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.1.1.tar.gz", - "build_number": "243.22562.222" + "version": "2024.3.2", + "sha256": "2e9054ae506e578cf89e4cea017d953c416281470a4a5728b157e43ac4888d4e", + "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.2.tar.gz", + "build_number": "243.23654.120" }, "writerside": { "update-channel": "Writerside EAP", @@ -150,10 +150,10 @@ "clion": { "update-channel": "CLion RELEASE", "url-template": "https://download.jetbrains.com/cpp/CLion-{version}-aarch64.tar.gz", - "version": "2024.3.1.1", - "sha256": "dacd54a45145ed65b2c40520706432449e4bc3ff2bb23be6cb1fb4c73d9db223", - "url": "https://download.jetbrains.com/cpp/CLion-2024.3.1.1-aarch64.tar.gz", - "build_number": "243.22562.225" + "version": "2024.3.2", + "sha256": "95c19bbc97ebac6e61db214548a547dd3892e0e3520682a443006b4a682451df", + "url": "https://download.jetbrains.com/cpp/CLion-2024.3.2-aarch64.tar.gz", + "build_number": "243.23654.114" }, "datagrip": { "update-channel": "DataGrip RELEASE", @@ -182,26 +182,26 @@ "goland": { "update-channel": "GoLand RELEASE", "url-template": "https://download.jetbrains.com/go/goland-{version}-aarch64.tar.gz", - "version": "2024.3.1", - "sha256": "9292d1502e3fada094469c590a59465d105fb6c81988f5414dac792ef3ae9dc5", - "url": "https://download.jetbrains.com/go/goland-2024.3.1-aarch64.tar.gz", - "build_number": "243.22562.186" + "version": "2024.3.2", + "sha256": "46a83f45cbc7193483d19cacd79ab310adb7b88af859903c2dc7713835d53f6c", + "url": "https://download.jetbrains.com/go/goland-2024.3.2-aarch64.tar.gz", + "build_number": "243.23654.119" }, "idea-community": { "update-channel": "IntelliJ IDEA RELEASE", "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}-aarch64.tar.gz", - "version": "2024.3.1.1", - "sha256": "8e82e9c1ff8bc561df88d9c6ef3b83498aecdac6f980b9df0cb183bc6dca0c90", - "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.1.1-aarch64.tar.gz", - "build_number": "243.22562.218" + "version": "2024.3.2", + "sha256": "0135027b97fcabd8f9e31d34cd2444323c63c894ef3f8c6eaf734fbecb8694ef", + "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.2-aarch64.tar.gz", + "build_number": "243.23654.117" }, "idea-ultimate": { "update-channel": "IntelliJ IDEA RELEASE", "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}-aarch64.tar.gz", - "version": "2024.3.1.1", - "sha256": "b3487662edf0904de4bfcd069231068350f7d8e964c0718b88ecbc18a83e5f47", - "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.1.1-aarch64.tar.gz", - "build_number": "243.22562.218" + "version": "2024.3.2", + "sha256": "d41082d25ec1639d399a5cbbabf29afa8082d6eddff8b24e56107f159dbe85b4", + "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.2-aarch64.tar.gz", + "build_number": "243.23654.117" }, "mps": { "update-channel": "MPS RELEASE", @@ -214,10 +214,10 @@ "phpstorm": { "update-channel": "PhpStorm RELEASE", "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}-aarch64.tar.gz", - "version": "2024.3.1.1", - "sha256": "d6f0cb476f3a83636b14e7b678d2e0a7f47e060c63bf31a5d645ee7e18adb0fa", - "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.1.1-aarch64.tar.gz", - "build_number": "243.22562.233", + "version": "2024.3.2", + "sha256": "b01643f20e9db333baa5204f8e0cf7da2eb952ca9e5a526290daf8cb4b14b74f", + "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.2-aarch64.tar.gz", + "build_number": "243.23654.115", "version-major-minor": "2022.3" }, "pycharm-community": { @@ -247,26 +247,26 @@ "ruby-mine": { "update-channel": "RubyMine RELEASE", "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}-aarch64.tar.gz", - "version": "2024.3.1.1", - "sha256": "af3cf7b5e8ac4306a4f5f03bcfc3425aa7ed3aa71f61213d85fd4f5a3d425b75", - "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.1.1-aarch64.tar.gz", - "build_number": "243.22562.213" + "version": "2024.3.2", + "sha256": "8d6981e056bfded160b2a14d81aaa3ca45d1b102a9f58c11578389988c8c6441", + "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.2-aarch64.tar.gz", + "build_number": "243.23654.112" }, "rust-rover": { "update-channel": "RustRover RELEASE", "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}-aarch64.tar.gz", - "version": "2024.3.2", - "sha256": "d5187d7d449d1b1ec6ff2699c0ccdb3c3280841360d3f43c0318a41b865064c8", - "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.2-aarch64.tar.gz", - "build_number": "243.22562.230" + "version": "2024.3.3", + "sha256": "7e002489c7167f39744d746127dc7a3f06d5cfbf9d63aa6a2835b0a80a261155", + "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.3-aarch64.tar.gz", + "build_number": "243.23654.116" }, "webstorm": { "update-channel": "WebStorm RELEASE", "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}-aarch64.tar.gz", - "version": "2024.3.1.1", - "sha256": "b136ec6696a47511a7396eb5416ff055964a040d72ed29eb6c362e1b37ce0ab5", - "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.1.1-aarch64.tar.gz", - "build_number": "243.22562.222" + "version": "2024.3.2", + "sha256": "9914fe6e6b5f0a7e87c9628fdf70b5083b68ec14b8873ad6847e4ea8e8c80a96", + "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.2-aarch64.tar.gz", + "build_number": "243.23654.120" }, "writerside": { "update-channel": "Writerside EAP", @@ -289,10 +289,10 @@ "clion": { "update-channel": "CLion RELEASE", "url-template": "https://download.jetbrains.com/cpp/CLion-{version}.dmg", - "version": "2024.3.1.1", - "sha256": "276ae335421b6eddd1d7fbdc27fc826bf7ffa68e32a23f9335ff8be88d89b747", - "url": "https://download.jetbrains.com/cpp/CLion-2024.3.1.1.dmg", - "build_number": "243.22562.225" + "version": "2024.3.2", + "sha256": "ecfb07f2ed3985a82faa940df4bbf195c421ba9a32c2c85dd56f057f40b9af38", + "url": "https://download.jetbrains.com/cpp/CLion-2024.3.2.dmg", + "build_number": "243.23654.114" }, "datagrip": { "update-channel": "DataGrip RELEASE", @@ -321,26 +321,26 @@ "goland": { "update-channel": "GoLand RELEASE", "url-template": "https://download.jetbrains.com/go/goland-{version}.dmg", - "version": "2024.3.1", - "sha256": "ec442f7a42cd95a7956d0ff4eb039f856e99451685a537dda9d67fbcd5b729e6", - "url": "https://download.jetbrains.com/go/goland-2024.3.1.dmg", - "build_number": "243.22562.186" + "version": "2024.3.2", + "sha256": "a8a0567d571f5bb94fe48cba6035db054f07db87c353765c823c90cb2f9783a1", + "url": "https://download.jetbrains.com/go/goland-2024.3.2.dmg", + "build_number": "243.23654.119" }, "idea-community": { "update-channel": "IntelliJ IDEA RELEASE", "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}.dmg", - "version": "2024.3.1.1", - "sha256": "505d978a27d0691a7ad8070c005e74bb13862fbb880b75ae924aa4f4558047a0", - "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.1.1.dmg", - "build_number": "243.22562.218" + "version": "2024.3.2", + "sha256": "d60b7148d6d0da8d3bf1d43282d282d41ea8d7b3443d8173d4dd1e692c44ce9a", + "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.2.dmg", + "build_number": "243.23654.117" }, "idea-ultimate": { "update-channel": "IntelliJ IDEA RELEASE", "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}.dmg", - "version": "2024.3.1.1", - "sha256": "eca0be9cd1d35df6453075dd447c8945d97134b90d1de4313e9b98069d3a39a3", - "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.1.1.dmg", - "build_number": "243.22562.218" + "version": "2024.3.2", + "sha256": "eaa4fc6f6aecdf023965d76f391fa5d438193d1f2fe42d6a8c2cffab7599c22b", + "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.2.dmg", + "build_number": "243.23654.117" }, "mps": { "update-channel": "MPS RELEASE", @@ -353,10 +353,10 @@ "phpstorm": { "update-channel": "PhpStorm RELEASE", "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}.dmg", - "version": "2024.3.1.1", - "sha256": "30a6f0cffa15034578bd026a80d3faf4469c2123d319a805cc31bfc59f2097a8", - "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.1.1.dmg", - "build_number": "243.22562.233", + "version": "2024.3.2", + "sha256": "df4b63e60d22a63d75f1780dc1354b570982eca6d4462ced232c2492a158d520", + "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.2.dmg", + "build_number": "243.23654.115", "version-major-minor": "2022.3" }, "pycharm-community": { @@ -386,26 +386,26 @@ "ruby-mine": { "update-channel": "RubyMine RELEASE", "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}.dmg", - "version": "2024.3.1.1", - "sha256": "6762f4987be03eb4d6adccc8b9e093598a86c77d341695792c985d9a35b84703", - "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.1.1.dmg", - "build_number": "243.22562.213" + "version": "2024.3.2", + "sha256": "a70feb35207706d25d5da7357f4e3ac0d8af63c43e6bbe0d350681745586dd2e", + "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.2.dmg", + "build_number": "243.23654.112" }, "rust-rover": { "update-channel": "RustRover RELEASE", "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}.dmg", - "version": "2024.3.2", - "sha256": "85ba87fc294d957c3e8efe51633589fd252bc9e6608eb2dbe4b8e5492ef75788", - "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.2.dmg", - "build_number": "243.22562.230" + "version": "2024.3.3", + "sha256": "b33400542422d7b3a0206014347de2e7a299c76b49ebf8aa8c8728f2a995309c", + "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.3.dmg", + "build_number": "243.23654.116" }, "webstorm": { "update-channel": "WebStorm RELEASE", "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}.dmg", - "version": "2024.3.1.1", - "sha256": "cff8b644670fc36aea9f37cd26dbfc1418177b835dd455beb99b8fa483d68063", - "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.1.1.dmg", - "build_number": "243.22562.222" + "version": "2024.3.2", + "sha256": "c95225ad78b1109feccf539c9005aa3ddf1388459a3af0fa49571f5643591dbd", + "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.2.dmg", + "build_number": "243.23654.120" }, "writerside": { "update-channel": "Writerside EAP", @@ -428,10 +428,10 @@ "clion": { "update-channel": "CLion RELEASE", "url-template": "https://download.jetbrains.com/cpp/CLion-{version}-aarch64.dmg", - "version": "2024.3.1.1", - "sha256": "57d7040f197dc1859ab16636bbb7006acc542eb15d1892692e78dc205bae2502", - "url": "https://download.jetbrains.com/cpp/CLion-2024.3.1.1-aarch64.dmg", - "build_number": "243.22562.225" + "version": "2024.3.2", + "sha256": "fd9fdca6467ddc6baf24f85afb1b5f07b907521102523a8379ea35acd58492ee", + "url": "https://download.jetbrains.com/cpp/CLion-2024.3.2-aarch64.dmg", + "build_number": "243.23654.114" }, "datagrip": { "update-channel": "DataGrip RELEASE", @@ -460,26 +460,26 @@ "goland": { "update-channel": "GoLand RELEASE", "url-template": "https://download.jetbrains.com/go/goland-{version}-aarch64.dmg", - "version": "2024.3.1", - "sha256": "4805e527a7d0cb66c278fcdba70468e14854defc3619edad439763d355303eba", - "url": "https://download.jetbrains.com/go/goland-2024.3.1-aarch64.dmg", - "build_number": "243.22562.186" + "version": "2024.3.2", + "sha256": "75579b5b6815d3f365c72b18d0455eb8402ae0a53d714e2776a75716383d402e", + "url": "https://download.jetbrains.com/go/goland-2024.3.2-aarch64.dmg", + "build_number": "243.23654.119" }, "idea-community": { "update-channel": "IntelliJ IDEA RELEASE", "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}-aarch64.dmg", - "version": "2024.3.1.1", - "sha256": "ea8c050308c46e276055193d882daa6d965f33256a447c05d5ad9f22b54e5d14", - "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.1.1-aarch64.dmg", - "build_number": "243.22562.218" + "version": "2024.3.2", + "sha256": "1cc440d163460d345aa31ccb9ca9309218f4f887ceddcd8eddf96d09b0218250", + "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.2-aarch64.dmg", + "build_number": "243.23654.117" }, "idea-ultimate": { "update-channel": "IntelliJ IDEA RELEASE", "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}-aarch64.dmg", - "version": "2024.3.1.1", - "sha256": "308773c0f5d15754fbdf1bbaf2155e34b8808880afdee55e5ac8bad8d477162d", - "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.1.1-aarch64.dmg", - "build_number": "243.22562.218" + "version": "2024.3.2", + "sha256": "60c96ca67507f811d66ac1fa42a2a93d3310c4457f32689a6e10d0a04e6bc34a", + "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.2-aarch64.dmg", + "build_number": "243.23654.117" }, "mps": { "update-channel": "MPS RELEASE", @@ -492,10 +492,10 @@ "phpstorm": { "update-channel": "PhpStorm RELEASE", "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}-aarch64.dmg", - "version": "2024.3.1.1", - "sha256": "8d9a3251fea4611c8b90d010571965993836ff1738bc55c2c3692f37f6169eed", - "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.1.1-aarch64.dmg", - "build_number": "243.22562.233", + "version": "2024.3.2", + "sha256": "0fcec802f70143b926db9ce7700331dadf85063ea310cbb0360bc7428ec385bf", + "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.2-aarch64.dmg", + "build_number": "243.23654.115", "version-major-minor": "2022.3" }, "pycharm-community": { @@ -525,26 +525,26 @@ "ruby-mine": { "update-channel": "RubyMine RELEASE", "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}-aarch64.dmg", - "version": "2024.3.1.1", - "sha256": "1e96dcbaf0b6d6821de44f394a671780b21e88fbb05a3cf67d90fcfb9dcbc559", - "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.1.1-aarch64.dmg", - "build_number": "243.22562.213" + "version": "2024.3.2", + "sha256": "c2285b17539f77667897dc2534182f0d9f1e8f8cd48c970f1ea9fa37b38704ce", + "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.2-aarch64.dmg", + "build_number": "243.23654.112" }, "rust-rover": { "update-channel": "RustRover RELEASE", "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}-aarch64.dmg", - "version": "2024.3.2", - "sha256": "2d715c9a4137815a45abcd208121ef5d66f2b89d3f041d5e905e45c487834985", - "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.2-aarch64.dmg", - "build_number": "243.22562.230" + "version": "2024.3.3", + "sha256": "0777399d545ff01a4c65fde3eaa7917556b60d1cc474a29dc68bb20fcf717575", + "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.3-aarch64.dmg", + "build_number": "243.23654.116" }, "webstorm": { "update-channel": "WebStorm RELEASE", "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}-aarch64.dmg", - "version": "2024.3.1.1", - "sha256": "afa44c3603ecdf093ab701b19e6bfc5379a45f27c0df54a507d48c20b7941bb8", - "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.1.1-aarch64.dmg", - "build_number": "243.22562.222" + "version": "2024.3.2", + "sha256": "de4ac18cf6002b7540a9fe3ec5c774cd4cf4021bf57893164e38971ec1efc2b4", + "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.2-aarch64.dmg", + "build_number": "243.23654.120" }, "writerside": { "update-channel": "Writerside EAP", From 8e22b77d69a3ca83fc4c2defd60346f0694e1bff Mon Sep 17 00:00:00 2001 From: James Ward Date: Fri, 17 Jan 2025 09:13:41 -0700 Subject: [PATCH 07/57] jetbrains.plugins: update --- .../editors/jetbrains/plugins/plugins.json | 334 ++++++++++-------- 1 file changed, 178 insertions(+), 156 deletions(-) diff --git a/pkgs/applications/editors/jetbrains/plugins/plugins.json b/pkgs/applications/editors/jetbrains/plugins/plugins.json index 1bcfcf5b7285..43621fad545b 100644 --- a/pkgs/applications/editors/jetbrains/plugins/plugins.json +++ b/pkgs/applications/editors/jetbrains/plugins/plugins.json @@ -18,16 +18,17 @@ ], "builds": { "241.19072.1155": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", - "243.22562.186": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", - "243.22562.213": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", - "243.22562.218": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", - "243.22562.220": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", - "243.22562.222": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", - "243.22562.225": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", - "243.22562.230": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", - "243.22562.233": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", - "243.22562.250": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", - "243.23654.19": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip" + "243.22562.218": "https://plugins.jetbrains.com/files/164/666347/IdeaVIM-2.18.1.zip", + "243.22562.220": "https://plugins.jetbrains.com/files/164/666347/IdeaVIM-2.18.1.zip", + "243.22562.250": "https://plugins.jetbrains.com/files/164/666347/IdeaVIM-2.18.1.zip", + "243.23654.112": "https://plugins.jetbrains.com/files/164/666347/IdeaVIM-2.18.1.zip", + "243.23654.114": "https://plugins.jetbrains.com/files/164/666347/IdeaVIM-2.18.1.zip", + "243.23654.115": "https://plugins.jetbrains.com/files/164/666347/IdeaVIM-2.18.1.zip", + "243.23654.116": "https://plugins.jetbrains.com/files/164/666347/IdeaVIM-2.18.1.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/164/666347/IdeaVIM-2.18.1.zip", + "243.23654.119": "https://plugins.jetbrains.com/files/164/666347/IdeaVIM-2.18.1.zip", + "243.23654.120": "https://plugins.jetbrains.com/files/164/666347/IdeaVIM-2.18.1.zip", + "243.23654.19": "https://plugins.jetbrains.com/files/164/666347/IdeaVIM-2.18.1.zip" }, "name": "ideavim" }, @@ -36,7 +37,7 @@ "idea-ultimate" ], "builds": { - "243.22562.218": "https://plugins.jetbrains.com/files/631/654554/python-243.22562.218.zip" + "243.23654.117": "https://plugins.jetbrains.com/files/631/666772/python-243.23654.117.zip" }, "name": "python" }, @@ -46,7 +47,8 @@ "idea-ultimate" ], "builds": { - "243.22562.218": "https://plugins.jetbrains.com/files/1347/652338/scala-intellij-bin-2024.3.23.zip" + "243.22562.218": "https://plugins.jetbrains.com/files/1347/667258/scala-intellij-bin-2024.3.35.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/1347/667258/scala-intellij-bin-2024.3.35.zip" }, "name": "scala" }, @@ -68,15 +70,16 @@ ], "builds": { "241.19072.1155": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", - "243.22562.186": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", - "243.22562.213": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", "243.22562.218": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", "243.22562.220": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", - "243.22562.222": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", - "243.22562.225": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", - "243.22562.230": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", - "243.22562.233": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", "243.22562.250": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", + "243.23654.112": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", + "243.23654.114": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", + "243.23654.115": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", + "243.23654.116": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", + "243.23654.119": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", + "243.23654.120": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", "243.23654.19": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip" }, "name": "string-manipulation" @@ -99,15 +102,16 @@ ], "builds": { "241.19072.1155": null, - "243.22562.186": null, - "243.22562.213": null, "243.22562.218": null, "243.22562.220": null, - "243.22562.222": null, - "243.22562.225": null, - "243.22562.230": null, - "243.22562.233": null, "243.22562.250": null, + "243.23654.112": null, + "243.23654.114": null, + "243.23654.115": null, + "243.23654.116": null, + "243.23654.117": null, + "243.23654.119": null, + "243.23654.120": null, "243.23654.19": null }, "name": "kotlin" @@ -130,16 +134,17 @@ ], "builds": { "241.19072.1155": null, - "243.22562.186": "https://plugins.jetbrains.com/files/6981/654905/ini-243.22562.236.zip", - "243.22562.213": "https://plugins.jetbrains.com/files/6981/654905/ini-243.22562.236.zip", "243.22562.218": "https://plugins.jetbrains.com/files/6981/654905/ini-243.22562.236.zip", "243.22562.220": "https://plugins.jetbrains.com/files/6981/654905/ini-243.22562.236.zip", - "243.22562.222": "https://plugins.jetbrains.com/files/6981/654905/ini-243.22562.236.zip", - "243.22562.225": "https://plugins.jetbrains.com/files/6981/654905/ini-243.22562.236.zip", - "243.22562.230": "https://plugins.jetbrains.com/files/6981/654905/ini-243.22562.236.zip", - "243.22562.233": "https://plugins.jetbrains.com/files/6981/654905/ini-243.22562.236.zip", "243.22562.250": "https://plugins.jetbrains.com/files/6981/654905/ini-243.22562.236.zip", - "243.23654.19": "https://plugins.jetbrains.com/files/6981/654857/ini-243.23654.19.zip" + "243.23654.112": "https://plugins.jetbrains.com/files/6981/667161/ini-243.23654.119.zip", + "243.23654.114": "https://plugins.jetbrains.com/files/6981/667161/ini-243.23654.119.zip", + "243.23654.115": "https://plugins.jetbrains.com/files/6981/667161/ini-243.23654.119.zip", + "243.23654.116": "https://plugins.jetbrains.com/files/6981/667161/ini-243.23654.119.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/6981/667161/ini-243.23654.119.zip", + "243.23654.119": "https://plugins.jetbrains.com/files/6981/667161/ini-243.23654.119.zip", + "243.23654.120": "https://plugins.jetbrains.com/files/6981/667161/ini-243.23654.119.zip", + "243.23654.19": "https://plugins.jetbrains.com/files/6981/667161/ini-243.23654.119.zip" }, "name": "ini" }, @@ -161,15 +166,16 @@ ], "builds": { "241.19072.1155": "https://plugins.jetbrains.com/files/7086/610924/AceJump.zip", - "243.22562.186": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", - "243.22562.213": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", "243.22562.218": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", "243.22562.220": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", - "243.22562.222": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", - "243.22562.225": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", - "243.22562.230": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", - "243.22562.233": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", "243.22562.250": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", + "243.23654.112": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", + "243.23654.114": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", + "243.23654.115": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", + "243.23654.116": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", + "243.23654.119": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", + "243.23654.120": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", "243.23654.19": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip" }, "name": "acejump" @@ -180,8 +186,8 @@ "phpstorm" ], "builds": { - "243.22562.218": "https://plugins.jetbrains.com/files/7219/605730/Symfony_Plugin-2024.1.276.zip", - "243.22562.233": "https://plugins.jetbrains.com/files/7219/605730/Symfony_Plugin-2024.1.276.zip" + "243.23654.115": "https://plugins.jetbrains.com/files/7219/605730/Symfony_Plugin-2024.1.276.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/7219/605730/Symfony_Plugin-2024.1.276.zip" }, "name": "symfony-support" }, @@ -191,8 +197,8 @@ "phpstorm" ], "builds": { - "243.22562.218": "https://plugins.jetbrains.com/files/7320/630497/PHP_Annotations-11.1.1.zip", - "243.22562.233": "https://plugins.jetbrains.com/files/7320/630497/PHP_Annotations-11.1.1.zip" + "243.23654.115": "https://plugins.jetbrains.com/files/7320/630497/PHP_Annotations-11.1.1.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/7320/630497/PHP_Annotations-11.1.1.zip" }, "name": "php-annotations" }, @@ -209,14 +215,15 @@ "webstorm" ], "builds": { - "243.22562.186": "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip", "243.22562.218": "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip", "243.22562.220": "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip", - "243.22562.222": "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip", - "243.22562.225": "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip", - "243.22562.230": "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip", "243.22562.250": "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip", - "243.23654.19": "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip" + "243.23654.114": "https://plugins.jetbrains.com/files/7322/666773/python-ce-243.23654.117.zip", + "243.23654.116": "https://plugins.jetbrains.com/files/7322/666773/python-ce-243.23654.117.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/7322/666773/python-ce-243.23654.117.zip", + "243.23654.119": "https://plugins.jetbrains.com/files/7322/666773/python-ce-243.23654.117.zip", + "243.23654.120": "https://plugins.jetbrains.com/files/7322/666773/python-ce-243.23654.117.zip", + "243.23654.19": "https://plugins.jetbrains.com/files/7322/666773/python-ce-243.23654.117.zip" }, "name": "python-community-edition" }, @@ -238,15 +245,16 @@ ], "builds": { "241.19072.1155": "https://plugins.jetbrains.com/files/7391/561441/asciidoctor-intellij-plugin-0.42.2.zip", - "243.22562.186": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", - "243.22562.213": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", "243.22562.218": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", "243.22562.220": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", - "243.22562.222": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", - "243.22562.225": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", - "243.22562.230": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", - "243.22562.233": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", "243.22562.250": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", + "243.23654.112": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", + "243.23654.114": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", + "243.23654.115": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", + "243.23654.116": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", + "243.23654.119": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", + "243.23654.120": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", "243.23654.19": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip" }, "name": "asciidoc" @@ -268,14 +276,15 @@ ], "builds": { "241.19072.1155": null, - "243.22562.186": null, - "243.22562.213": null, "243.22562.218": null, "243.22562.220": null, - "243.22562.222": null, - "243.22562.225": null, - "243.22562.233": null, "243.22562.250": null, + "243.23654.112": null, + "243.23654.114": null, + "243.23654.115": null, + "243.23654.117": null, + "243.23654.119": null, + "243.23654.120": null, "243.23654.19": null }, "name": "-deprecated-rust" @@ -297,14 +306,15 @@ ], "builds": { "241.19072.1155": null, - "243.22562.186": null, - "243.22562.213": null, "243.22562.218": null, "243.22562.220": null, - "243.22562.222": null, - "243.22562.225": null, - "243.22562.233": null, "243.22562.250": null, + "243.23654.112": null, + "243.23654.114": null, + "243.23654.115": null, + "243.23654.117": null, + "243.23654.119": null, + "243.23654.120": null, "243.23654.19": null }, "name": "-deprecated-rust-beta" @@ -327,16 +337,17 @@ ], "builds": { "241.19072.1155": null, - "243.22562.186": "https://plugins.jetbrains.com/files/8554/654690/featuresTrainer-243.22562.233.zip", - "243.22562.213": "https://plugins.jetbrains.com/files/8554/654690/featuresTrainer-243.22562.233.zip", "243.22562.218": "https://plugins.jetbrains.com/files/8554/654690/featuresTrainer-243.22562.233.zip", "243.22562.220": "https://plugins.jetbrains.com/files/8554/654690/featuresTrainer-243.22562.233.zip", - "243.22562.222": "https://plugins.jetbrains.com/files/8554/654690/featuresTrainer-243.22562.233.zip", - "243.22562.225": "https://plugins.jetbrains.com/files/8554/654690/featuresTrainer-243.22562.233.zip", - "243.22562.230": "https://plugins.jetbrains.com/files/8554/654690/featuresTrainer-243.22562.233.zip", - "243.22562.233": "https://plugins.jetbrains.com/files/8554/654690/featuresTrainer-243.22562.233.zip", "243.22562.250": "https://plugins.jetbrains.com/files/8554/654690/featuresTrainer-243.22562.233.zip", - "243.23654.19": "https://plugins.jetbrains.com/files/8554/654851/featuresTrainer-243.23654.19.zip" + "243.23654.112": "https://plugins.jetbrains.com/files/8554/666817/featuresTrainer-243.23654.115.zip", + "243.23654.114": "https://plugins.jetbrains.com/files/8554/666817/featuresTrainer-243.23654.115.zip", + "243.23654.115": "https://plugins.jetbrains.com/files/8554/666817/featuresTrainer-243.23654.115.zip", + "243.23654.116": "https://plugins.jetbrains.com/files/8554/666817/featuresTrainer-243.23654.115.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/8554/666817/featuresTrainer-243.23654.115.zip", + "243.23654.119": "https://plugins.jetbrains.com/files/8554/666817/featuresTrainer-243.23654.115.zip", + "243.23654.120": "https://plugins.jetbrains.com/files/8554/666817/featuresTrainer-243.23654.115.zip", + "243.23654.19": "https://plugins.jetbrains.com/files/8554/666817/featuresTrainer-243.23654.115.zip" }, "name": "ide-features-trainer" }, @@ -358,15 +369,16 @@ ], "builds": { "241.19072.1155": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", - "243.22562.186": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", - "243.22562.213": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", "243.22562.218": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", "243.22562.220": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", - "243.22562.222": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", - "243.22562.225": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", - "243.22562.230": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", - "243.22562.233": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", "243.22562.250": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", + "243.23654.112": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", + "243.23654.114": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", + "243.23654.115": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", + "243.23654.116": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", + "243.23654.119": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", + "243.23654.120": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", "243.23654.19": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip" }, "name": "nixidea" @@ -377,8 +389,8 @@ "idea-ultimate" ], "builds": { - "243.22562.186": "https://plugins.jetbrains.com/files/9568/654587/go-plugin-243.22562.218.zip", - "243.22562.218": "https://plugins.jetbrains.com/files/9568/654587/go-plugin-243.22562.218.zip" + "243.23654.117": "https://plugins.jetbrains.com/files/9568/666746/go-plugin-243.23654.117.zip", + "243.23654.119": "https://plugins.jetbrains.com/files/9568/666746/go-plugin-243.23654.117.zip" }, "name": "go" }, @@ -400,15 +412,16 @@ ], "builds": { "241.19072.1155": "https://plugins.jetbrains.com/files/10037/585243/CSVEditor-3.4.0-241.zip", - "243.22562.186": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", - "243.22562.213": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", "243.22562.218": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", "243.22562.220": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", - "243.22562.222": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", - "243.22562.225": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", - "243.22562.230": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", - "243.22562.233": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", "243.22562.250": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", + "243.23654.112": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", + "243.23654.114": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", + "243.23654.115": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", + "243.23654.116": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", + "243.23654.119": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", + "243.23654.120": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", "243.23654.19": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip" }, "name": "csv-editor" @@ -430,17 +443,18 @@ "webstorm" ], "builds": { - "241.19072.1155": "https://plugins.jetbrains.com/files/11349/653392/aws-toolkit-jetbrains-standalone-3.46-241.zip", - "243.22562.186": "https://plugins.jetbrains.com/files/11349/653394/aws-toolkit-jetbrains-standalone-3.46-243.zip", - "243.22562.213": "https://plugins.jetbrains.com/files/11349/653394/aws-toolkit-jetbrains-standalone-3.46-243.zip", - "243.22562.218": "https://plugins.jetbrains.com/files/11349/653394/aws-toolkit-jetbrains-standalone-3.46-243.zip", - "243.22562.220": "https://plugins.jetbrains.com/files/11349/653394/aws-toolkit-jetbrains-standalone-3.46-243.zip", - "243.22562.222": "https://plugins.jetbrains.com/files/11349/653394/aws-toolkit-jetbrains-standalone-3.46-243.zip", - "243.22562.225": "https://plugins.jetbrains.com/files/11349/653394/aws-toolkit-jetbrains-standalone-3.46-243.zip", - "243.22562.230": "https://plugins.jetbrains.com/files/11349/653394/aws-toolkit-jetbrains-standalone-3.46-243.zip", - "243.22562.233": "https://plugins.jetbrains.com/files/11349/653394/aws-toolkit-jetbrains-standalone-3.46-243.zip", - "243.22562.250": "https://plugins.jetbrains.com/files/11349/653394/aws-toolkit-jetbrains-standalone-3.46-243.zip", - "243.23654.19": "https://plugins.jetbrains.com/files/11349/653394/aws-toolkit-jetbrains-standalone-3.46-243.zip" + "241.19072.1155": "https://plugins.jetbrains.com/files/11349/666864/aws-toolkit-jetbrains-standalone-3.48-241.zip", + "243.22562.218": "https://plugins.jetbrains.com/files/11349/666866/aws-toolkit-jetbrains-standalone-3.48-243.zip", + "243.22562.220": "https://plugins.jetbrains.com/files/11349/666866/aws-toolkit-jetbrains-standalone-3.48-243.zip", + "243.22562.250": "https://plugins.jetbrains.com/files/11349/666866/aws-toolkit-jetbrains-standalone-3.48-243.zip", + "243.23654.112": "https://plugins.jetbrains.com/files/11349/666866/aws-toolkit-jetbrains-standalone-3.48-243.zip", + "243.23654.114": "https://plugins.jetbrains.com/files/11349/666866/aws-toolkit-jetbrains-standalone-3.48-243.zip", + "243.23654.115": "https://plugins.jetbrains.com/files/11349/666866/aws-toolkit-jetbrains-standalone-3.48-243.zip", + "243.23654.116": "https://plugins.jetbrains.com/files/11349/666866/aws-toolkit-jetbrains-standalone-3.48-243.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/11349/666866/aws-toolkit-jetbrains-standalone-3.48-243.zip", + "243.23654.119": "https://plugins.jetbrains.com/files/11349/666866/aws-toolkit-jetbrains-standalone-3.48-243.zip", + "243.23654.120": "https://plugins.jetbrains.com/files/11349/666866/aws-toolkit-jetbrains-standalone-3.48-243.zip", + "243.23654.19": "https://plugins.jetbrains.com/files/11349/666866/aws-toolkit-jetbrains-standalone-3.48-243.zip" }, "name": "aws-toolkit" }, @@ -462,15 +476,16 @@ ], "builds": { "241.19072.1155": null, - "243.22562.186": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", - "243.22562.213": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", "243.22562.218": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", "243.22562.220": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", - "243.22562.222": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", - "243.22562.225": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", - "243.22562.230": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", - "243.22562.233": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", "243.22562.250": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", + "243.23654.112": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", + "243.23654.114": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", + "243.23654.115": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", + "243.23654.116": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", + "243.23654.119": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", + "243.23654.120": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", "243.23654.19": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip" }, "name": "vscode-keymap" @@ -492,16 +507,17 @@ "webstorm" ], "builds": { - "241.19072.1155": "https://plugins.jetbrains.com/files/12559/508216/keymap-eclipse-241.14494.150.zip", - "243.22562.186": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", - "243.22562.213": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", + "241.19072.1155": null, "243.22562.218": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", "243.22562.220": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", - "243.22562.222": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", - "243.22562.225": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", - "243.22562.230": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", - "243.22562.233": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", "243.22562.250": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", + "243.23654.112": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", + "243.23654.114": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", + "243.23654.115": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", + "243.23654.116": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", + "243.23654.119": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", + "243.23654.120": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", "243.23654.19": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip" }, "name": "eclipse-keymap" @@ -524,15 +540,16 @@ ], "builds": { "241.19072.1155": null, - "243.22562.186": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", - "243.22562.213": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", "243.22562.218": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", "243.22562.220": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", - "243.22562.222": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", - "243.22562.225": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", - "243.22562.230": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", - "243.22562.233": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", "243.22562.250": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", + "243.23654.112": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", + "243.23654.114": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", + "243.23654.115": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", + "243.23654.116": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", + "243.23654.119": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", + "243.23654.120": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", "243.23654.19": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip" }, "name": "visual-studio-keymap" @@ -555,15 +572,16 @@ ], "builds": { "241.19072.1155": null, - "243.22562.186": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", - "243.22562.213": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", "243.22562.218": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", "243.22562.220": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", - "243.22562.222": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", - "243.22562.225": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", - "243.22562.230": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", - "243.22562.233": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", "243.22562.250": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", + "243.23654.112": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", + "243.23654.114": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", + "243.23654.115": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", + "243.23654.116": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", + "243.23654.119": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", + "243.23654.120": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", "243.23654.19": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip" }, "name": "protocol-buffers" @@ -586,15 +604,16 @@ ], "builds": { "241.19072.1155": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "243.22562.186": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "243.22562.213": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", "243.22562.218": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", "243.22562.220": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "243.22562.222": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "243.22562.225": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "243.22562.230": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "243.22562.233": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", "243.22562.250": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "243.23654.112": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "243.23654.114": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "243.23654.115": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "243.23654.116": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "243.23654.117": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "243.23654.119": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "243.23654.120": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", "243.23654.19": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar" }, "name": "darcula-pitch-black" @@ -617,15 +636,16 @@ ], "builds": { "241.19072.1155": "https://plugins.jetbrains.com/files/17718/654596/github-copilot-intellij-1.5.30-231.zip", - "243.22562.186": "https://plugins.jetbrains.com/files/17718/654597/github-copilot-intellij-1.5.30-242.zip", - "243.22562.213": "https://plugins.jetbrains.com/files/17718/654597/github-copilot-intellij-1.5.30-242.zip", "243.22562.218": "https://plugins.jetbrains.com/files/17718/654597/github-copilot-intellij-1.5.30-242.zip", "243.22562.220": "https://plugins.jetbrains.com/files/17718/654597/github-copilot-intellij-1.5.30-242.zip", - "243.22562.222": "https://plugins.jetbrains.com/files/17718/654597/github-copilot-intellij-1.5.30-242.zip", - "243.22562.225": "https://plugins.jetbrains.com/files/17718/654597/github-copilot-intellij-1.5.30-242.zip", - "243.22562.230": "https://plugins.jetbrains.com/files/17718/654597/github-copilot-intellij-1.5.30-242.zip", - "243.22562.233": "https://plugins.jetbrains.com/files/17718/654597/github-copilot-intellij-1.5.30-242.zip", "243.22562.250": "https://plugins.jetbrains.com/files/17718/654597/github-copilot-intellij-1.5.30-242.zip", + "243.23654.112": "https://plugins.jetbrains.com/files/17718/654597/github-copilot-intellij-1.5.30-242.zip", + "243.23654.114": "https://plugins.jetbrains.com/files/17718/654597/github-copilot-intellij-1.5.30-242.zip", + "243.23654.115": "https://plugins.jetbrains.com/files/17718/654597/github-copilot-intellij-1.5.30-242.zip", + "243.23654.116": "https://plugins.jetbrains.com/files/17718/654597/github-copilot-intellij-1.5.30-242.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/17718/654597/github-copilot-intellij-1.5.30-242.zip", + "243.23654.119": "https://plugins.jetbrains.com/files/17718/654597/github-copilot-intellij-1.5.30-242.zip", + "243.23654.120": "https://plugins.jetbrains.com/files/17718/654597/github-copilot-intellij-1.5.30-242.zip", "243.23654.19": "https://plugins.jetbrains.com/files/17718/654597/github-copilot-intellij-1.5.30-242.zip" }, "name": "github-copilot" @@ -648,15 +668,16 @@ ], "builds": { "241.19072.1155": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "243.22562.186": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "243.22562.213": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", "243.22562.218": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", "243.22562.220": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "243.22562.222": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "243.22562.225": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "243.22562.230": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "243.22562.233": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", "243.22562.250": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "243.23654.112": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "243.23654.114": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "243.23654.115": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "243.23654.116": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "243.23654.119": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "243.23654.120": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", "243.23654.19": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip" }, "name": "netbeans-6-5-keymap" @@ -679,15 +700,16 @@ ], "builds": { "241.19072.1155": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", - "243.22562.186": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", - "243.22562.213": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", "243.22562.218": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", "243.22562.220": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", - "243.22562.222": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", - "243.22562.225": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", - "243.22562.230": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", - "243.22562.233": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", "243.22562.250": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", + "243.23654.112": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", + "243.23654.114": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", + "243.23654.115": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", + "243.23654.116": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", + "243.23654.119": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", + "243.23654.120": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", "243.23654.19": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip" }, "name": "mermaid" @@ -699,9 +721,9 @@ "rust-rover" ], "builds": { - "243.22562.218": "https://plugins.jetbrains.com/files/22407/654680/intellij-rust-243.22562.230.zip", - "243.22562.225": "https://plugins.jetbrains.com/files/22407/654680/intellij-rust-243.22562.230.zip", - "243.22562.230": "https://plugins.jetbrains.com/files/22407/654680/intellij-rust-243.22562.230.zip" + "243.23654.114": "https://plugins.jetbrains.com/files/22407/666537/intellij-rust-243.23654.116.zip", + "243.23654.116": "https://plugins.jetbrains.com/files/22407/666537/intellij-rust-243.23654.116.zip", + "243.23654.117": "https://plugins.jetbrains.com/files/22407/666537/intellij-rust-243.23654.116.zip" }, "name": "rust" } @@ -709,37 +731,37 @@ "files": { "https://plugins.jetbrains.com/files/10037/585243/CSVEditor-3.4.0-241.zip": "sha256-QwguD4ENrL7GxmX+CGEyCPowbAPNpYgntVGAbHxOlyQ=", "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip": "sha256-frvQ+Dm1ueID6+vNlja0HtecGyn+ppq9GTgmU3kQ+58=", - "https://plugins.jetbrains.com/files/11349/653392/aws-toolkit-jetbrains-standalone-3.46-241.zip": "sha256-oaD/caqrSYNPy579UeswUNKCr6R7Nzj/1ZXLjVY3Q6w=", - "https://plugins.jetbrains.com/files/11349/653394/aws-toolkit-jetbrains-standalone-3.46-243.zip": "sha256-5dTE4THfqFutMNbGe11CvQkPaXWwB/EuxBzlDzbRJ1s=", + "https://plugins.jetbrains.com/files/11349/666864/aws-toolkit-jetbrains-standalone-3.48-241.zip": "sha256-2bz6CZQr+pQ5Sl+zhBnfKBQMyTF5wBk+Xk3Y+wh5c48=", + "https://plugins.jetbrains.com/files/11349/666866/aws-toolkit-jetbrains-standalone-3.48-243.zip": "sha256-jKcanbs0qobJebe4onrSY43xp6V7ViAOVZNEMyaSvkY=", "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip": "sha256-phv8MTGKNGzRviKzX+nIVTbkX4WkU82QVO5zXUQLtAo=", - "https://plugins.jetbrains.com/files/12559/508216/keymap-eclipse-241.14494.150.zip": "sha256-/hEx0gIFvUXD799tRmMHAt9Z5ziFgaQs1RX0zQwTJIA=", "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip": "sha256-/g1ucT18ywVJnCePH7WyMWKgM9umowBz5wFObmO7cws=", "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip": "sha256-VQqK0Cm9ddXN63KYIqimuGOh7EB9VvdlErp/VrWx8SA=", - "https://plugins.jetbrains.com/files/1347/652338/scala-intellij-bin-2024.3.23.zip": "sha256-K7MiFc5mcECDKI2P2Kh3/w9sPdze6LuEhAItUxgpdKM=", + "https://plugins.jetbrains.com/files/1347/667258/scala-intellij-bin-2024.3.35.zip": "sha256-4I75KqXyFl73S63O+00usrg8QBcuBRBgfjRmCQMpNks=", "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip": "sha256-Tgu8CfDhO6KugfuLNhmxe89dMm+Qo3fmAg/8hwjUaoc=", "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar": "sha256-eXInfAqY3yEZRXCAuv3KGldM1pNKEioNwPB0rIGgJFw=", "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip": "sha256-uMIrYoZE16X/K96HuDJx8QMh6wUbi4+qSw+HJAq7ukI=", - "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip": "sha256-ESbvyp66+X2Ko+bol3mk8aLIf8xjG7Qa0vz8k/zYl4A=", + "https://plugins.jetbrains.com/files/164/666347/IdeaVIM-2.18.1.zip": "sha256-wkh88imoNLt9Q7M6chu28+e0EhudpVGN4ZhvfSdj/l4=", "https://plugins.jetbrains.com/files/17718/654596/github-copilot-intellij-1.5.30-231.zip": "sha256-xrZJBCGPT1s5+fyWsMSEC69vILM+BkKef2wKxzbTCM4=", "https://plugins.jetbrains.com/files/17718/654597/github-copilot-intellij-1.5.30-242.zip": "sha256-bWrtG3cE6qAqXiQ4mtgRLutt8XaTqts+kyClDWVcMO4=", "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip": "sha256-KrzZTKZMQqoEMw+vDUv2jjs0EX0leaPBkU8H/ecq/oI=", "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip": "sha256-DUiIQYIzYoXmgtBakSLtMB+xxJMaR70Jgg9erySa3wQ=", "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip": "sha256-jGWRU0g120qYvvFiUFI10zvprTsemuIq3XmIjYxZGts=", "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip": "sha256-TZPup3EJ0cBv4i2eVAQwVmmzy0rmt4KptEsk3C7baEM=", - "https://plugins.jetbrains.com/files/22407/654680/intellij-rust-243.22562.230.zip": "sha256-80iFSJoUMunKj7iiXxOC2OuoUxYNeTt/E/MMLM5FsDU=", - "https://plugins.jetbrains.com/files/631/654554/python-243.22562.218.zip": "sha256-hI+f5TXP6B7LDBmvrRYrDJ/XKYIl7Tjv9gEda3EsU0c=", - "https://plugins.jetbrains.com/files/6981/654857/ini-243.23654.19.zip": "sha256-w/uvHVEOuP9a2tvvH8XUxiahqMMbTIZuDu3TS/kg920=", + "https://plugins.jetbrains.com/files/22407/666537/intellij-rust-243.23654.116.zip": "sha256-abOkEYViOYFht9hk4KhqANfk63q4rp3ywenXeKj2ovQ=", + "https://plugins.jetbrains.com/files/631/666772/python-243.23654.117.zip": "sha256-UGGhKZGlnq+MrTWfpb3eiIGkLkJE77V4sLKZi16oATU=", "https://plugins.jetbrains.com/files/6981/654905/ini-243.22562.236.zip": "sha256-kL/A2R8j2JKMU61T/xJahPwKPYmwFCFy55NPSoBh/Xc=", + "https://plugins.jetbrains.com/files/6981/667161/ini-243.23654.119.zip": "sha256-MhN7iARzX/xB3H1sC5T2A3psMNDmws0QGhQOUqhGlIc=", "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip": "sha256-kVUEgfEKUupV/qlB4Dpzi5pFHjhVvX74XIPetKtjysM=", "https://plugins.jetbrains.com/files/7086/610924/AceJump.zip": "sha256-Qp24juITBXEF5izdzayWq28Ioy4/kgT0qz6snZ0dND0=", "https://plugins.jetbrains.com/files/7219/605730/Symfony_Plugin-2024.1.276.zip": "sha256-drNmhJMe+kuY2fcHjY+SQmkACvFk0rVI4vAhyZ/bgLc=", "https://plugins.jetbrains.com/files/7320/630497/PHP_Annotations-11.1.1.zip": "sha256-05aBYbqNIuwe/JTwntFdIqML8NHbTOwVusl1P9FzuYY=", "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip": "sha256-45UtQRZMtKF6addrrB3A+goeyICMfcZ2FKcJvJSqgg4=", + "https://plugins.jetbrains.com/files/7322/666773/python-ce-243.23654.117.zip": "sha256-l6ePJtwdj6+k7Qvpus9zGqIs141eT0/qTeZL0Ud4rM0=", "https://plugins.jetbrains.com/files/7391/561441/asciidoctor-intellij-plugin-0.42.2.zip": "sha256-oKczkLHAk2bJRNRgToVe0ySEJGF8+P4oWqQ33olwzWw=", "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip": "sha256-3RJ7YVFtynyqeLIzdrirCMbWNZmUkJ+DT/9my71H0Dk=", "https://plugins.jetbrains.com/files/8554/654690/featuresTrainer-243.22562.233.zip": "sha256-JugbJM8Lr2kbhP9hdLE3kUStl2vOMUB5wGTwNLxAZd0=", - "https://plugins.jetbrains.com/files/8554/654851/featuresTrainer-243.23654.19.zip": "sha256-2z9QMebAjCuddPawPUaFdT2U3CN0YYyDqiP0zDoK7Ig=", + "https://plugins.jetbrains.com/files/8554/666817/featuresTrainer-243.23654.115.zip": "sha256-3HiNFTBJ1b/6IvMMkMCmNVo/4VMtTTKeiC6XqR6LIUs=", "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip": "sha256-9GMqs/hSavcw1E4ZJTLDH1lx3HEeQ5NR8BT+Q9pN3io=", - "https://plugins.jetbrains.com/files/9568/654587/go-plugin-243.22562.218.zip": "sha256-dEPywEl/uboDTTv9k8G8sACOrC5HBcMqkxf0CsDmZfg=" + "https://plugins.jetbrains.com/files/9568/666746/go-plugin-243.23654.117.zip": "sha256-8Y7JyjX8ytias4ix1azWkhPEVYXDomWRiMQlrKco9zM=" } } From bb327861ef7ed0e75a7c00c64e30818ccafab52b Mon Sep 17 00:00:00 2001 From: Anna Aurora Date: Fri, 17 Jan 2025 16:02:07 +0100 Subject: [PATCH 08/57] peazip: remove insecure and redundant dependency "archiver" --- pkgs/by-name/pe/peazip/package.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/by-name/pe/peazip/package.nix b/pkgs/by-name/pe/peazip/package.nix index c93f33dfa45b..47f05c27788f 100644 --- a/pkgs/by-name/pe/peazip/package.nix +++ b/pkgs/by-name/pe/peazip/package.nix @@ -8,7 +8,6 @@ xorg, runCommand, _7zz, - archiver, brotli, upx, zpaq, @@ -72,7 +71,6 @@ stdenv.mkDerivation rec { wrapProgram $out/lib/peazip/peazip --prefix PATH : ${ lib.makeBinPath [ _7z - archiver brotli upx zpaq From 25e4bfdaf1037c87de5dce51c12751d988944e4b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 19 Jan 2025 00:56:07 +0000 Subject: [PATCH 09/57] unrar: 7.1.2 -> 7.1.3 --- pkgs/by-name/un/unrar/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/un/unrar/package.nix b/pkgs/by-name/un/unrar/package.nix index 745cdd1003a8..15bb5465617e 100644 --- a/pkgs/by-name/un/unrar/package.nix +++ b/pkgs/by-name/un/unrar/package.nix @@ -6,12 +6,12 @@ stdenv.mkDerivation (finalAttrs: { pname = "unrar"; - version = "7.1.2"; + version = "7.1.3"; src = fetchzip { url = "https://www.rarlab.com/rar/unrarsrc-${finalAttrs.version}.tar.gz"; stripRoot = false; - hash = "sha256-6xqAik10YSXh2pm/j0dSeQXDWAGVnOf6eOD7Od9+LZA="; + hash = "sha256-ycTt5tlbqG18M1XtSTA4IhSRwQxVE3wy/9Dv6Z8KZAc="; }; sourceRoot = finalAttrs.src.name; From 411f7cdb55e8e3055cca1bd5898cadc827d853b0 Mon Sep 17 00:00:00 2001 From: Ryota Date: Fri, 17 Jan 2025 16:27:10 +0000 Subject: [PATCH 10/57] maintainers: update key for rytswd --- maintainers/maintainer-list.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 3a79ef83c309..7298b4d1d7e6 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -20162,7 +20162,7 @@ github = "rytswd"; githubId = 23435099; name = "Ryota"; - keys = [ { fingerprint = "537E 712F 0EC3 91C2 B47F 56E2 EB5D 1A84 5333 43BB"; } ]; + keys = [ { fingerprint = "2FAC 1A25 5175 125E F60B BC04 B89E C8B6 EE43 39C4"; } ]; }; ryze = { name = "Ryze"; From 871979afbaa78553f96e716fe584d13f7cc3a704 Mon Sep 17 00:00:00 2001 From: Ryota Date: Fri, 17 Jan 2025 16:27:44 +0000 Subject: [PATCH 11/57] civo: add rytswd as maintainer --- pkgs/by-name/ci/civo/package.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ci/civo/package.nix b/pkgs/by-name/ci/civo/package.nix index 4ad8cbf64a14..8b2729ca6998 100644 --- a/pkgs/by-name/ci/civo/package.nix +++ b/pkgs/by-name/ci/civo/package.nix @@ -42,11 +42,14 @@ buildGoModule rec { --zsh <($out/bin/civo completion zsh) ''; - meta = with lib; { + meta = { description = "CLI for interacting with Civo resources"; mainProgram = "civo"; homepage = "https://github.com/civo/cli"; - license = licenses.asl20; - maintainers = with maintainers; [ techknowlogick ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ + techknowlogick + rytswd + ]; }; } From 4bbd83f6d6456abcf2ec7e9d5bb6d44bbf676d7c Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Sat, 18 Jan 2025 19:38:02 -0500 Subject: [PATCH 12/57] kodi: 21.1 -> 21.2 --- pkgs/applications/video/kodi/no-python-lib.patch | 13 ------------- pkgs/applications/video/kodi/unwrapped.nix | 14 +++----------- 2 files changed, 3 insertions(+), 24 deletions(-) delete mode 100644 pkgs/applications/video/kodi/no-python-lib.patch diff --git a/pkgs/applications/video/kodi/no-python-lib.patch b/pkgs/applications/video/kodi/no-python-lib.patch deleted file mode 100644 index d45e02dd1846..000000000000 --- a/pkgs/applications/video/kodi/no-python-lib.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/cmake/scripts/linux/Install.cmake b/cmake/scripts/linux/Install.cmake -index 9c45c91774..763d6acab4 100644 ---- a/cmake/scripts/linux/Install.cmake -+++ b/cmake/scripts/linux/Install.cmake -@@ -199,8 +199,6 @@ install(FILES ${CMAKE_BINARY_DIR}/${CORE_BUILD_DIR}/scripts/${APP_NAME}Config.cm - - if(ENABLE_EVENTCLIENTS) - find_package(PythonInterpreter REQUIRED) -- execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(prefix=''))" -- OUTPUT_VARIABLE PYTHON_LIB_PATH OUTPUT_STRIP_TRAILING_WHITESPACE) - # Install kodi-eventclients-common BT python files - install(PROGRAMS ${CMAKE_SOURCE_DIR}/tools/EventClients/lib/python/bt/__init__.py - ${CMAKE_SOURCE_DIR}/tools/EventClients/lib/python/bt/bt.py diff --git a/pkgs/applications/video/kodi/unwrapped.nix b/pkgs/applications/video/kodi/unwrapped.nix index 4866a2b9f23e..9cfcfc6072f4 100644 --- a/pkgs/applications/video/kodi/unwrapped.nix +++ b/pkgs/applications/video/kodi/unwrapped.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchFromGitHub, fetchpatch, fetchzip +{ stdenv, lib, fetchFromGitHub, fetchzip , autoconf, automake, libtool, makeWrapper , pkg-config, cmake, yasm, python3Packages , libxcrypt, libgcrypt, libgpg-error, libunistring @@ -87,24 +87,16 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "kodi"; - version = "21.1"; + version = "21.2"; kodiReleaseName = "Omega"; src = fetchFromGitHub { owner = "xbmc"; repo = "xbmc"; rev = "${finalAttrs.version}-${finalAttrs.kodiReleaseName}"; - hash = "sha256-NjId1T1cw9dl0Fx1QDsijiN1VUpuQ/EFl1kxWSESCR4="; + hash = "sha256-RdTJcq6FPerQx05dU3r8iyaorT4L7162hg5RdywsA88="; }; - patches = [ - ./no-python-lib.patch - (fetchpatch { - url = "https://github.com/xbmc/xbmc/commit/32b04718c65a90f87e409674c4ef984b087b8657.patch"; - hash = "sha256-I79thepzDOfw55r9gfaOp/Ri2FA0gouc+RgTc2Zh1Sw="; - }) - ]; - # make derivations declared in the let binding available here, so # they can be overridden inherit libdvdcss libdvdnav libdvdread groovy From d8de57d5432f61de705d01ee82f1e8d87fb54c94 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 19 Jan 2025 08:08:05 +0000 Subject: [PATCH 13/57] nvidia-modprobe: 550.54.14 -> 565.77 --- pkgs/by-name/nv/nvidia-modprobe/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/nv/nvidia-modprobe/package.nix b/pkgs/by-name/nv/nvidia-modprobe/package.nix index effb0577338b..a0aa90ee220d 100644 --- a/pkgs/by-name/nv/nvidia-modprobe/package.nix +++ b/pkgs/by-name/nv/nvidia-modprobe/package.nix @@ -6,13 +6,13 @@ }: stdenv.mkDerivation rec { pname = "nvidia-modprobe"; - version = "550.54.14"; + version = "565.77"; src = fetchFromGitHub { owner = "NVIDIA"; repo = "nvidia-modprobe"; rev = version; - hash = "sha256-iBRMkvOXacs/llTtvc/ZC5i/q9gc8lMuUHxMbu8A+Kg="; + hash = "sha256-FDwCfSCV8tHcuQ31Lir1icyw4wW+J6C/bWE/au01im4="; }; nativeBuildInputs = [ gnum4 ]; From bd46f577401197229a3c52685ed10ab223f95c78 Mon Sep 17 00:00:00 2001 From: Piotr Kwiecinski <2151333+piotrkwiecinski@users.noreply.github.com> Date: Sun, 19 Jan 2025 14:05:50 +0100 Subject: [PATCH 14/57] php8{1-3}Extensions.datadog_trace: use fetchCargoVendor --- .../php-packages/datadog_trace/Cargo.lock | 3606 ----------------- .../php-packages/datadog_trace/default.nix | 8 +- 2 files changed, 3 insertions(+), 3611 deletions(-) delete mode 100644 pkgs/development/php-packages/datadog_trace/Cargo.lock diff --git a/pkgs/development/php-packages/datadog_trace/Cargo.lock b/pkgs/development/php-packages/datadog_trace/Cargo.lock deleted file mode 100644 index 22375053bd33..000000000000 --- a/pkgs/development/php-packages/datadog_trace/Cargo.lock +++ /dev/null @@ -1,3606 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 3 - -[[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 = "ahash" -version = "0.7.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" -dependencies = [ - "getrandom", - "once_cell", - "version_check 0.9.4", -] - -[[package]] -name = "ahash" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" -dependencies = [ - "cfg-if", - "getrandom", - "once_cell", - "version_check 0.9.4", -] - -[[package]] -name = "aho-corasick" -version = "1.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" -dependencies = [ - "memchr", -] - -[[package]] -name = "aliasable" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" - -[[package]] -name = "android-tzdata" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" - -[[package]] -name = "android_system_properties" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" -dependencies = [ - "libc 0.2.149", -] - -[[package]] -name = "anes" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" - -[[package]] -name = "anstyle" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87" - -[[package]] -name = "anyhow" -version = "1.0.75" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" - -[[package]] -name = "assert-type-eq" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd49a41856ee21a0cfb2b1cfbfcca0f1d3e6c257c38939f0d6ecfaf177f2ea47" - -[[package]] -name = "assert_matches" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" - -[[package]] -name = "async-trait" -version = "0.1.73" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.38", -] - -[[package]] -name = "atty" -version = "0.2.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" -dependencies = [ - "hermit-abi 0.1.19", - "libc 0.2.149", - "winapi", -] - -[[package]] -name = "autocfg" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" - -[[package]] -name = "axum" -version = "0.6.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf" -dependencies = [ - "async-trait", - "axum-core", - "bitflags 1.3.2", - "bytes", - "futures-util", - "http", - "http-body", - "hyper", - "itoa", - "matchit", - "memchr", - "mime", - "percent-encoding", - "pin-project-lite", - "rustversion", - "serde", - "sync_wrapper", - "tower", - "tower-layer", - "tower-service", -] - -[[package]] -name = "axum-core" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c" -dependencies = [ - "async-trait", - "bytes", - "futures-util", - "http", - "http-body", - "mime", - "rustversion", - "tower-layer", - "tower-service", -] - -[[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 0.2.149", - "miniz_oxide", - "object 0.32.1", - "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.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" - -[[package]] -name = "basic-toml" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7bfc506e7a2370ec239e1d072507b2a80c833083699d3c6fa176fbb4de8448c6" -dependencies = [ - "serde", -] - -[[package]] -name = "bincode" -version = "1.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" -dependencies = [ - "serde", -] - -[[package]] -name = "bindgen" -version = "0.66.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2b84e06fc203107bfbad243f4aba2af864eb7db3b1cf46ea0a023b0b433d2a7" -dependencies = [ - "bitflags 2.4.0", - "cexpr", - "clang-sys", - "lazy_static", - "lazycell", - "log", - "peeking_take_while", - "prettyplease 0.2.15", - "proc-macro2", - "quote", - "regex", - "rustc-hash", - "shlex", - "syn 2.0.38", - "which", -] - -[[package]] -name = "bit_field" -version = "0.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61" - -[[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.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" - -[[package]] -name = "bitmaps" -version = "3.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "703642b98a00b3b90513279a8ede3fcfa479c126c5fb46e78f3051522f021403" - -[[package]] -name = "bumpalo" -version = "3.14.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" - -[[package]] -name = "byteorder" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" - -[[package]] -name = "bytes" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" -dependencies = [ - "serde", -] - -[[package]] -name = "cast" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" - -[[package]] -name = "cbindgen" -version = "0.24.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b922faaf31122819ec80c4047cc684c6979a087366c069611e33649bf98e18d" -dependencies = [ - "clap 3.2.25", - "heck", - "indexmap 1.9.3", - "log", - "proc-macro2", - "quote", - "serde", - "serde_json", - "syn 1.0.109", - "tempfile", - "toml", -] - -[[package]] -name = "cc" -version = "1.0.83" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" -dependencies = [ - "libc 0.2.149", -] - -[[package]] -name = "cc_utils" -version = "0.1.0" -dependencies = [ - "anyhow", - "cc", -] - -[[package]] -name = "cexpr" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" -dependencies = [ - "nom 7.1.3", -] - -[[package]] -name = "cfg-if" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" - -[[package]] -name = "chrono" -version = "0.4.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" -dependencies = [ - "android-tzdata", - "iana-time-zone", - "num-traits", - "windows-targets", -] - -[[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 = "clang-sys" -version = "1.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" -dependencies = [ - "glob", - "libc 0.2.149", - "libloading", -] - -[[package]] -name = "clap" -version = "3.2.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" -dependencies = [ - "atty", - "bitflags 1.3.2", - "clap_lex 0.2.4", - "indexmap 1.9.3", - "strsim", - "termcolor", - "textwrap", -] - -[[package]] -name = "clap" -version = "4.4.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d04704f56c2cde07f43e8e2c154b43f216dc5c92fc98ada720177362f953b956" -dependencies = [ - "clap_builder", -] - -[[package]] -name = "clap_builder" -version = "4.4.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e231faeaca65ebd1ea3c737966bf858971cd38c3849107aa3ea7de90a804e45" -dependencies = [ - "anstyle", - "clap_lex 0.5.1", -] - -[[package]] -name = "clap_lex" -version = "0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" -dependencies = [ - "os_str_bytes", -] - -[[package]] -name = "clap_lex" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961" - -[[package]] -name = "common-multipart-rfc7578" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22328b3864f1d8dbe7036f3f2fdfdcb1f367af43dca418943d396fbf8c4b8021" -dependencies = [ - "bytes", - "futures-core", - "futures-util", - "http", - "mime", - "mime_guess", - "rand 0.8.5", - "thiserror", -] - -[[package]] -name = "console-api" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2895653b4d9f1538a83970077cb01dfc77a4810524e51a110944688e916b18e" -dependencies = [ - "prost", - "prost-types", - "tonic", - "tracing-core", -] - -[[package]] -name = "console-subscriber" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4cf42660ac07fcebed809cfe561dd8730bcd35b075215e6479c516bcd0d11cb" -dependencies = [ - "console-api", - "crossbeam-channel", - "crossbeam-utils", - "futures", - "hdrhistogram", - "humantime", - "prost-types", - "serde", - "serde_json", - "thread_local", - "tokio", - "tokio-stream", - "tonic", - "tracing", - "tracing-core", - "tracing-subscriber", -] - -[[package]] -name = "core-foundation" -version = "0.9.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" -dependencies = [ - "core-foundation-sys", - "libc 0.2.149", -] - -[[package]] -name = "core-foundation-sys" -version = "0.8.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" - -[[package]] -name = "cpu-time" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9e393a7668fe1fad3075085b86c781883000b4ede868f43627b34a87c8b7ded" -dependencies = [ - "libc 0.2.149", - "winapi", -] - -[[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 4.4.6", - "criterion-plot", - "is-terminal", - "itertools", - "num-traits", - "once_cell", - "oorandom", - "plotters", - "rayon", - "regex", - "serde", - "serde_derive", - "serde_json", - "tinytemplate", - "walkdir", -] - -[[package]] -name = "criterion-perf-events" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "902f0b181e1f7a7865e224df9cff57f164c3d95ad8dfcb81f692faa5087c2f17" -dependencies = [ - "criterion", - "perfcnt", -] - -[[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-channel" -version = "0.5.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" -dependencies = [ - "cfg-if", - "crossbeam-utils", -] - -[[package]] -name = "crossbeam-deque" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" -dependencies = [ - "cfg-if", - "crossbeam-epoch", - "crossbeam-utils", -] - -[[package]] -name = "crossbeam-epoch" -version = "0.9.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" -dependencies = [ - "autocfg", - "cfg-if", - "crossbeam-utils", - "memoffset 0.9.0", - "scopeguard", -] - -[[package]] -name = "crossbeam-utils" -version = "0.8.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" -dependencies = [ - "cfg-if", -] - -[[package]] -name = "csv" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe" -dependencies = [ - "csv-core", - "itoa", - "ryu", - "serde", -] - -[[package]] -name = "csv-core" -version = "0.1.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" -dependencies = [ - "memchr", -] - -[[package]] -name = "datadog-ipc" -version = "0.1.0" -dependencies = [ - "anyhow", - "bytes", - "criterion", - "datadog-ipc-macros", - "futures", - "glibc_version", - "io-lifetimes", - "libc 0.2.149", - "memfd", - "nix 0.26.4", - "page_size", - "pin-project", - "pretty_assertions", - "sendfd", - "serde", - "spawn_worker", - "tarpc", - "tempfile", - "tokio", - "tokio-serde", - "tokio-util 0.6.10", - "tracing", - "tracing-subscriber", -] - -[[package]] -name = "datadog-ipc-macros" -version = "0.0.1" -dependencies = [ - "quote", - "syn 2.0.38", -] - -[[package]] -name = "datadog-php-profiling" -version = "0.97.0" -dependencies = [ - "ahash 0.8.3", - "anyhow", - "bindgen", - "bumpalo", - "cc", - "cfg-if", - "cpu-time", - "criterion", - "criterion-perf-events", - "crossbeam-channel", - "datadog-profiling", - "ddcommon 5.0.0", - "env_logger", - "indexmap 2.0.2", - "lazy_static", - "libc 0.2.149", - "log", - "once_cell", - "ouroboros", - "perfcnt", - "rand 0.8.5", - "rand_distr", - "serde_json", - "uuid", -] - -[[package]] -name = "datadog-profiling" -version = "5.0.0" -source = "git+https://github.com/DataDog/libdatadog?tag=v5.0.0#7b8a01ecfaf03e063feb16896356e71b9a2fc6f3" -dependencies = [ - "anyhow", - "bitmaps", - "bytes", - "chrono", - "ddcommon 5.0.0", - "derivative", - "futures", - "futures-core", - "futures-util", - "http", - "http-body", - "hyper", - "hyper-multipart-rfc7578", - "indexmap 1.9.3", - "libc 0.2.149", - "lz4_flex", - "mime", - "mime_guess", - "percent-encoding", - "prost", - "rustc-hash", - "serde", - "serde_json", - "tokio", - "tokio-util 0.7.9", -] - -[[package]] -name = "datadog-sidecar" -version = "0.0.1" -dependencies = [ - "anyhow", - "bytes", - "console-subscriber", - "datadog-ipc", - "datadog-ipc-macros", - "datadog-sidecar-macros", - "datadog-trace-normalization", - "datadog-trace-protobuf", - "datadog-trace-utils", - "ddcommon 0.0.1", - "ddtelemetry", - "futures", - "hashbrown 0.12.3", - "http", - "hyper", - "io-lifetimes", - "lazy_static", - "libc 0.2.149", - "manual_future", - "nix 0.26.4", - "pin-project", - "prctl", - "rand 0.8.5", - "regex", - "rmp-serde", - "sendfd", - "serde", - "serde_json", - "spawn_worker", - "sys-info", - "tempfile", - "tokio", - "tokio-util 0.7.9", - "tracing", - "tracing-subscriber", - "uuid", - "zwohash", -] - -[[package]] -name = "datadog-sidecar-ffi" -version = "0.0.1" -dependencies = [ - "datadog-ipc", - "datadog-sidecar", - "datadog-trace-utils", - "ddcommon 0.0.1", - "ddcommon-ffi", - "ddtelemetry", - "ddtelemetry-ffi", - "hyper", - "libc 0.2.149", - "paste", - "tempfile", -] - -[[package]] -name = "datadog-sidecar-macros" -version = "0.0.1" -dependencies = [ - "quote", - "syn 2.0.38", -] - -[[package]] -name = "datadog-trace-normalization" -version = "0.0.1" -dependencies = [ - "anyhow", - "datadog-trace-protobuf", - "duplicate", - "rand 0.8.5", -] - -[[package]] -name = "datadog-trace-protobuf" -version = "0.0.1" -dependencies = [ - "prost", - "prost-build", - "protoc-bin-vendored", - "serde", - "serde_bytes", -] - -[[package]] -name = "datadog-trace-utils" -version = "0.0.1" -dependencies = [ - "anyhow", - "datadog-trace-normalization", - "datadog-trace-protobuf", - "ddcommon 0.0.1", - "flate2", - "futures", - "hyper", - "hyper-rustls", - "log", - "prost", - "rmp-serde", - "serde", - "serde_json", - "tokio", -] - -[[package]] -name = "ddcommon" -version = "0.0.1" -dependencies = [ - "anyhow", - "futures", - "futures-core", - "futures-util", - "hex", - "http", - "hyper", - "hyper-rustls", - "indexmap 1.9.3", - "lazy_static", - "log", - "maplit", - "pin-project", - "regex", - "rustls", - "rustls-native-certs", - "serde", - "tokio", - "tokio-rustls", -] - -[[package]] -name = "ddcommon" -version = "5.0.0" -source = "git+https://github.com/DataDog/libdatadog?tag=v5.0.0#7b8a01ecfaf03e063feb16896356e71b9a2fc6f3" -dependencies = [ - "anyhow", - "futures", - "futures-core", - "futures-util", - "hex", - "http", - "hyper", - "hyper-rustls", - "lazy_static", - "log", - "pin-project", - "regex", - "rustls", - "rustls-native-certs", - "serde", - "tokio", - "tokio-rustls", -] - -[[package]] -name = "ddcommon-ffi" -version = "0.0.1" -dependencies = [ - "anyhow", - "ddcommon 0.0.1", - "hyper", -] - -[[package]] -name = "ddtelemetry" -version = "0.0.1" -dependencies = [ - "anyhow", - "ddcommon 0.0.1", - "futures", - "hashbrown 0.12.3", - "http", - "hyper", - "io-lifetimes", - "lazy_static", - "pin-project", - "regex", - "serde", - "serde_json", - "sys-info", - "tokio", - "tokio-util 0.7.9", - "tracing", - "tracing-subscriber", - "uuid", -] - -[[package]] -name = "ddtelemetry-ffi" -version = "0.0.1" -dependencies = [ - "ddcommon 0.0.1", - "ddcommon-ffi", - "ddtelemetry", - "libc 0.2.149", - "paste", - "tempfile", -] - -[[package]] -name = "ddtrace-php" -version = "0.0.1" -dependencies = [ - "bitflags 2.4.0", - "cbindgen", - "cc_utils", - "datadog-sidecar", - "datadog-sidecar-ffi", - "ddcommon 0.0.1", - "ddcommon-ffi", - "ddtelemetry", - "ddtelemetry-ffi", - "json", - "lazy_static", - "paste", - "sidecar_mockgen", - "spawn_worker", - "tempfile", - "uuid", -] - -[[package]] -name = "derivative" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "diff" -version = "0.1.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" - -[[package]] -name = "duplicate" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0a4be4cd710e92098de6ad258e6e7c24af11c29c5142f3c6f2a545652480ff8" -dependencies = [ - "heck", - "proc-macro-error", -] - -[[package]] -name = "educe" -version = "0.4.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f0042ff8246a363dbe77d2ceedb073339e85a804b9a47636c6e016a9a32c05f" -dependencies = [ - "enum-ordinalize", - "proc-macro2", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "either" -version = "1.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" - -[[package]] -name = "enum-ordinalize" -version = "3.1.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bf1fa3f06bbff1ea5b1a9c7b14aa992a39657db60a2759457328d7e058f49ee" -dependencies = [ - "num-bigint", - "num-traits", - "proc-macro2", - "quote", - "syn 2.0.38", -] - -[[package]] -name = "env_logger" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" -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.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860" -dependencies = [ - "libc 0.2.149", - "windows-sys", -] - -[[package]] -name = "fastrand" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" - -[[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.27" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010" -dependencies = [ - "crc32fast", - "miniz_oxide", -] - -[[package]] -name = "fnv" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" - -[[package]] -name = "fuchsia-cprng" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" - -[[package]] -name = "futures" -version = "0.3.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" -dependencies = [ - "futures-channel", - "futures-core", - "futures-executor", - "futures-io", - "futures-sink", - "futures-task", - "futures-util", -] - -[[package]] -name = "futures-channel" -version = "0.3.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" -dependencies = [ - "futures-core", - "futures-sink", -] - -[[package]] -name = "futures-core" -version = "0.3.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" - -[[package]] -name = "futures-executor" -version = "0.3.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" -dependencies = [ - "futures-core", - "futures-task", - "futures-util", -] - -[[package]] -name = "futures-io" -version = "0.3.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" - -[[package]] -name = "futures-macro" -version = "0.3.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.38", -] - -[[package]] -name = "futures-sink" -version = "0.3.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" - -[[package]] -name = "futures-task" -version = "0.3.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" - -[[package]] -name = "futures-test" -version = "0.3.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84af27744870a4a325fa342ce65a940dfba08957b260b790ec278c1d81490349" -dependencies = [ - "futures-core", - "futures-executor", - "futures-io", - "futures-macro", - "futures-sink", - "futures-task", - "futures-util", - "pin-project", - "pin-utils", -] - -[[package]] -name = "futures-util" -version = "0.3.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" -dependencies = [ - "futures-channel", - "futures-core", - "futures-io", - "futures-macro", - "futures-sink", - "futures-task", - "memchr", - "pin-project-lite", - "pin-utils", - "slab", -] - -[[package]] -name = "getrandom" -version = "0.2.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" -dependencies = [ - "cfg-if", - "libc 0.2.149", - "wasi", -] - -[[package]] -name = "gimli" -version = "0.28.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" - -[[package]] -name = "glibc_version" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "803ff7635f1ab4e2c064b68a0c60da917d3d18dc8d086130f689d62ce4f1c33e" -dependencies = [ - "regex", -] - -[[package]] -name = "glob" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" - -[[package]] -name = "h2" -version = "0.3.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" -dependencies = [ - "bytes", - "fnv", - "futures-core", - "futures-sink", - "futures-util", - "http", - "indexmap 1.9.3", - "slab", - "tokio", - "tokio-util 0.7.9", - "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.12.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" -dependencies = [ - "ahash 0.7.6", -] - -[[package]] -name = "hashbrown" -version = "0.14.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dfda62a12f55daeae5015f81b0baea145391cb4520f86c248fc615d72640d12" - -[[package]] -name = "hdrhistogram" -version = "7.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8" -dependencies = [ - "base64 0.13.1", - "byteorder", - "flate2", - "nom 7.1.3", - "num-traits", -] - -[[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.1.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" -dependencies = [ - "libc 0.2.149", -] - -[[package]] -name = "hermit-abi" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" - -[[package]] -name = "hex" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" - -[[package]] -name = "home" -version = "0.5.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" -dependencies = [ - "windows-sys", -] - -[[package]] -name = "http" -version = "0.2.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" -dependencies = [ - "bytes", - "fnv", - "itoa", -] - -[[package]] -name = "http-body" -version = "0.4.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" -dependencies = [ - "bytes", - "http", - "pin-project-lite", -] - -[[package]] -name = "httparse" -version = "1.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" - -[[package]] -name = "httpdate" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" - -[[package]] -name = "humantime" -version = "2.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" - -[[package]] -name = "hyper" -version = "0.14.27" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" -dependencies = [ - "bytes", - "futures-channel", - "futures-core", - "futures-util", - "h2", - "http", - "http-body", - "httparse", - "httpdate", - "itoa", - "pin-project-lite", - "socket2 0.4.9", - "tokio", - "tower-service", - "tracing", - "want", -] - -[[package]] -name = "hyper-multipart-rfc7578" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63ca8108ac0ae98d310d41cddb11c6b822e8aca865dbe421366934e6f7f72e10" -dependencies = [ - "bytes", - "common-multipart-rfc7578", - "futures-core", - "http", - "hyper", -] - -[[package]] -name = "hyper-rustls" -version = "0.23.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" -dependencies = [ - "http", - "hyper", - "rustls", - "rustls-native-certs", - "tokio", - "tokio-rustls", -] - -[[package]] -name = "hyper-timeout" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1" -dependencies = [ - "hyper", - "pin-project-lite", - "tokio", - "tokio-io-timeout", -] - -[[package]] -name = "iana-time-zone" -version = "0.1.57" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" -dependencies = [ - "android_system_properties", - "core-foundation-sys", - "iana-time-zone-haiku", - "js-sys", - "wasm-bindgen", - "windows", -] - -[[package]] -name = "iana-time-zone-haiku" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" -dependencies = [ - "cc", -] - -[[package]] -name = "indexmap" -version = "1.9.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" -dependencies = [ - "autocfg", - "hashbrown 0.12.3", -] - -[[package]] -name = "indexmap" -version = "2.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8adf3ddd720272c6ea8bf59463c04e0f93d0bbf7c5439b691bca2987e0270897" -dependencies = [ - "equivalent", - "hashbrown 0.14.1", -] - -[[package]] -name = "integer-encoding" -version = "3.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02" - -[[package]] -name = "io-lifetimes" -version = "1.0.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" -dependencies = [ - "hermit-abi 0.3.3", - "libc 0.2.149", - "windows-sys", -] - -[[package]] -name = "is-terminal" -version = "0.4.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" -dependencies = [ - "hermit-abi 0.3.3", - "rustix", - "windows-sys", -] - -[[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.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" - -[[package]] -name = "js-sys" -version = "0.3.64" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" -dependencies = [ - "wasm-bindgen", -] - -[[package]] -name = "json" -version = "0.12.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd" - -[[package]] -name = "lazy_static" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" - -[[package]] -name = "lazycell" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" - -[[package]] -name = "libc" -version = "0.1.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e32a70cf75e5846d53a673923498228bbec6a8624708a9ea5645f075d6276122" - -[[package]] -name = "libc" -version = "0.2.149" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" - -[[package]] -name = "libloading" -version = "0.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" -dependencies = [ - "cfg-if", - "winapi", -] - -[[package]] -name = "libm" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" - -[[package]] -name = "linux-raw-sys" -version = "0.4.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f" - -[[package]] -name = "lock_api" -version = "0.4.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" -dependencies = [ - "autocfg", - "scopeguard", -] - -[[package]] -name = "log" -version = "0.4.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" - -[[package]] -name = "lz4_flex" -version = "0.9.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a8cbbb2831780bc3b9c15a41f5b49222ef756b6730a95f3decfdd15903eb5a3" -dependencies = [ - "twox-hash", -] - -[[package]] -name = "manual_future" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "943968aefb9b0fdf36cccc03f6cd9d6698b23574ab49eccc185ae6c5cb6ad43e" -dependencies = [ - "futures", -] - -[[package]] -name = "maplit" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" - -[[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 = "matchit" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" - -[[package]] -name = "memchr" -version = "2.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" - -[[package]] -name = "memfd" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64" -dependencies = [ - "rustix", -] - -[[package]] -name = "memoffset" -version = "0.6.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" -dependencies = [ - "autocfg", -] - -[[package]] -name = "memoffset" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" -dependencies = [ - "autocfg", -] - -[[package]] -name = "memoffset" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" -dependencies = [ - "autocfg", -] - -[[package]] -name = "mime" -version = "0.3.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" - -[[package]] -name = "mime_guess" -version = "2.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" -dependencies = [ - "mime", - "unicase", -] - -[[package]] -name = "minimal-lexical" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" - -[[package]] -name = "miniz_oxide" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" -dependencies = [ - "adler", -] - -[[package]] -name = "mio" -version = "0.8.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" -dependencies = [ - "libc 0.2.149", - "wasi", - "windows-sys", -] - -[[package]] -name = "mmap" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bc85448a6006dd2ba26a385a564a8a0f1f2c7e78c70f1a70b2e0f4af286b823" -dependencies = [ - "libc 0.1.12", - "tempdir", -] - -[[package]] -name = "multimap" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" - -[[package]] -name = "nix" -version = "0.24.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" -dependencies = [ - "bitflags 1.3.2", - "cfg-if", - "libc 0.2.149", - "memoffset 0.6.5", -] - -[[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 0.2.149", - "memoffset 0.7.1", - "pin-utils", -] - -[[package]] -name = "nix" -version = "0.27.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" -dependencies = [ - "bitflags 2.4.0", - "cfg-if", - "libc 0.2.149", -] - -[[package]] -name = "nom" -version = "4.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" -dependencies = [ - "memchr", - "version_check 0.1.5", -] - -[[package]] -name = "nom" -version = "7.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" -dependencies = [ - "memchr", - "minimal-lexical", -] - -[[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-bigint" -version = "0.4.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" -dependencies = [ - "autocfg", - "num-integer", - "num-traits", -] - -[[package]] -name = "num-integer" -version = "0.1.45" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" -dependencies = [ - "autocfg", - "num-traits", -] - -[[package]] -name = "num-traits" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" -dependencies = [ - "autocfg", - "libm", -] - -[[package]] -name = "num_cpus" -version = "1.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" -dependencies = [ - "hermit-abi 0.3.3", - "libc 0.2.149", -] - -[[package]] -name = "object" -version = "0.31.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" -dependencies = [ - "flate2", - "memchr", - "ruzstd", -] - -[[package]] -name = "object" -version = "0.32.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" -dependencies = [ - "memchr", -] - -[[package]] -name = "once_cell" -version = "1.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" - -[[package]] -name = "oorandom" -version = "11.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" - -[[package]] -name = "openssl-probe" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" - -[[package]] -name = "opentelemetry" -version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6105e89802af13fdf48c49d7646d3b533a70e536d818aae7e78ba0433d01acb8" -dependencies = [ - "async-trait", - "crossbeam-channel", - "futures-channel", - "futures-executor", - "futures-util", - "js-sys", - "lazy_static", - "percent-encoding", - "pin-project", - "rand 0.8.5", - "thiserror", - "tokio", - "tokio-stream", -] - -[[package]] -name = "opentelemetry-jaeger" -version = "0.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8c0b12cd9e3f9b35b52f6e0dac66866c519b26f424f4bbf96e3fe8bfbdc5229" -dependencies = [ - "async-trait", - "lazy_static", - "opentelemetry", - "opentelemetry-semantic-conventions", - "thiserror", - "thrift", - "tokio", -] - -[[package]] -name = "opentelemetry-semantic-conventions" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "985cc35d832d412224b2cffe2f9194b1b89b6aa5d0bef76d080dce09d90e62bd" -dependencies = [ - "opentelemetry", -] - -[[package]] -name = "ordered-float" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3305af35278dd29f46fcdd139e0b1fbfae2153f0e5928b39b035542dd31e37b7" -dependencies = [ - "num-traits", -] - -[[package]] -name = "os_str_bytes" -version = "6.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d5d9eb14b174ee9aa2ef96dc2b94637a2d4b6e7cb873c7e171f0c20c6cf3eac" - -[[package]] -name = "ouroboros" -version = "0.17.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2ba07320d39dfea882faa70554b4bd342a5f273ed59ba7c1c6b4c840492c954" -dependencies = [ - "aliasable", - "ouroboros_macro", - "static_assertions", -] - -[[package]] -name = "ouroboros_macro" -version = "0.17.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec4c6225c69b4ca778c0aea097321a64c421cf4577b331c61b229267edabb6f8" -dependencies = [ - "heck", - "proc-macro-error", - "proc-macro2", - "quote", - "syn 2.0.38", -] - -[[package]] -name = "overload" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" - -[[package]] -name = "page_size" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b7663cbd190cfd818d08efa8497f6cd383076688c49a391ef7c0d03cd12b561" -dependencies = [ - "libc 0.2.149", - "winapi", -] - -[[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.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" -dependencies = [ - "cfg-if", - "libc 0.2.149", - "redox_syscall", - "smallvec", - "windows-targets", -] - -[[package]] -name = "paste" -version = "1.0.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" - -[[package]] -name = "peeking_take_while" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" - -[[package]] -name = "percent-encoding" -version = "2.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" - -[[package]] -name = "perfcnt" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ba1fd955270ca6f8bd8624ec0c4ee1a251dd3cc0cc18e1e2665ca8f5acb1501" -dependencies = [ - "bitflags 1.3.2", - "libc 0.2.149", - "mmap", - "nom 4.2.3", - "x86", -] - -[[package]] -name = "petgraph" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" -dependencies = [ - "fixedbitset", - "indexmap 2.0.2", -] - -[[package]] -name = "phf" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2ac8b67553a7ca9457ce0e526948cad581819238f4a9d1ea74545851fa24f37" -dependencies = [ - "phf_shared", -] - -[[package]] -name = "phf_codegen" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "963adb11cf22ee65dfd401cf75577c1aa0eca58c0b97f9337d2da61d3e640503" -dependencies = [ - "phf_generator", - "phf_shared", -] - -[[package]] -name = "phf_generator" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d43f3220d96e0080cc9ea234978ccd80d904eafb17be31bb0f76daaea6493082" -dependencies = [ - "phf_shared", - "rand 0.8.5", -] - -[[package]] -name = "phf_shared" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a68318426de33640f02be62b4ae8eb1261be2efbc337b60c54d845bf4484e0d9" -dependencies = [ - "siphasher", -] - -[[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.38", -] - -[[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 = "plotters" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" -dependencies = [ - "num-traits", - "plotters-backend", - "plotters-svg", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "plotters-backend" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" - -[[package]] -name = "plotters-svg" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" -dependencies = [ - "plotters-backend", -] - -[[package]] -name = "ppv-lite86" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" - -[[package]] -name = "prctl" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "059a34f111a9dee2ce1ac2826a68b24601c4298cfeb1a587c3cb493d5ab46f52" -dependencies = [ - "libc 0.2.149", - "nix 0.27.1", -] - -[[package]] -name = "pretty_assertions" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" -dependencies = [ - "diff", - "yansi", -] - -[[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 = "prettyplease" -version = "0.2.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" -dependencies = [ - "proc-macro2", - "syn 2.0.38", -] - -[[package]] -name = "proc-macro-error" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" -dependencies = [ - "proc-macro-error-attr", - "proc-macro2", - "quote", - "syn 1.0.109", - "version_check 0.9.4", -] - -[[package]] -name = "proc-macro-error-attr" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" -dependencies = [ - "proc-macro2", - "quote", - "version_check 0.9.4", -] - -[[package]] -name = "proc-macro2" -version = "1.0.69" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" -dependencies = [ - "unicode-ident", -] - -[[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 0.1.25", - "prost", - "prost-types", - "regex", - "syn 1.0.109", - "tempfile", - "which", -] - -[[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 = "protoc-bin-vendored" -version = "3.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "005ca8623e5633e298ad1f917d8be0a44bcf406bf3cde3b80e63003e49a3f27d" -dependencies = [ - "protoc-bin-vendored-linux-aarch_64", - "protoc-bin-vendored-linux-ppcle_64", - "protoc-bin-vendored-linux-x86_32", - "protoc-bin-vendored-linux-x86_64", - "protoc-bin-vendored-macos-x86_64", - "protoc-bin-vendored-win32", -] - -[[package]] -name = "protoc-bin-vendored-linux-aarch_64" -version = "3.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fb9fc9cce84c8694b6ea01cc6296617b288b703719b725b8c9c65f7c5874435" - -[[package]] -name = "protoc-bin-vendored-linux-ppcle_64" -version = "3.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02d2a07dcf7173a04d49974930ccbfb7fd4d74df30ecfc8762cf2f895a094516" - -[[package]] -name = "protoc-bin-vendored-linux-x86_32" -version = "3.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d54fef0b04fcacba64d1d80eed74a20356d96847da8497a59b0a0a436c9165b0" - -[[package]] -name = "protoc-bin-vendored-linux-x86_64" -version = "3.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8782f2ce7d43a9a5c74ea4936f001e9e8442205c244f7a3d4286bd4c37bc924" - -[[package]] -name = "protoc-bin-vendored-macos-x86_64" -version = "3.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5de656c7ee83f08e0ae5b81792ccfdc1d04e7876b1d9a38e6876a9e09e02537" - -[[package]] -name = "protoc-bin-vendored-win32" -version = "3.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9653c3ed92974e34c5a6e0a510864dab979760481714c172e0a34e437cb98804" - -[[package]] -name = "quote" -version = "1.0.33" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" -dependencies = [ - "proc-macro2", -] - -[[package]] -name = "rand" -version = "0.4.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" -dependencies = [ - "fuchsia-cprng", - "libc 0.2.149", - "rand_core 0.3.1", - "rdrand", - "winapi", -] - -[[package]] -name = "rand" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" -dependencies = [ - "libc 0.2.149", - "rand_chacha", - "rand_core 0.6.4", -] - -[[package]] -name = "rand_chacha" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" -dependencies = [ - "ppv-lite86", - "rand_core 0.6.4", -] - -[[package]] -name = "rand_core" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" -dependencies = [ - "rand_core 0.4.2", -] - -[[package]] -name = "rand_core" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" - -[[package]] -name = "rand_core" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" -dependencies = [ - "getrandom", -] - -[[package]] -name = "rand_distr" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" -dependencies = [ - "num-traits", - "rand 0.8.5", -] - -[[package]] -name = "raw-cpuid" -version = "10.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" -dependencies = [ - "bitflags 1.3.2", -] - -[[package]] -name = "rayon" -version = "1.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" -dependencies = [ - "either", - "rayon-core", -] - -[[package]] -name = "rayon-core" -version = "1.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" -dependencies = [ - "crossbeam-deque", - "crossbeam-utils", -] - -[[package]] -name = "rdrand" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" -dependencies = [ - "rand_core 0.3.1", -] - -[[package]] -name = "redox_syscall" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" -dependencies = [ - "bitflags 1.3.2", -] - -[[package]] -name = "regex" -version = "1.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d119d7c7ca818f8a53c300863d4f87566aac09943aef5b355bb83969dae75d87" -dependencies = [ - "aho-corasick", - "memchr", - "regex-automata 0.4.1", - "regex-syntax 0.8.1", -] - -[[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.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "465c6fc0621e4abc4187a2bda0937bfd4f722c2730b29562e19689ea796c9a4b" -dependencies = [ - "aho-corasick", - "memchr", - "regex-syntax 0.8.1", -] - -[[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.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56d84fdd47036b038fc80dd333d10b6aab10d5d31f4a366e20014def75328d33" - -[[package]] -name = "remove_dir_all" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" -dependencies = [ - "winapi", -] - -[[package]] -name = "ring" -version = "0.16.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" -dependencies = [ - "cc", - "libc 0.2.149", - "once_cell", - "spin 0.5.2", - "untrusted 0.7.1", - "web-sys", - "winapi", -] - -[[package]] -name = "ring" -version = "0.17.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9babe80d5c16becf6594aa32ad2be8fe08498e7ae60b77de8df700e67f191d7e" -dependencies = [ - "cc", - "getrandom", - "libc 0.2.149", - "spin 0.9.8", - "untrusted 0.9.0", - "windows-sys", -] - -[[package]] -name = "rlimit" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7278a1ec8bfd4a4e07515c589f5ff7b309a373f987393aef44813d9dcf87aa3" -dependencies = [ - "libc 0.2.149", -] - -[[package]] -name = "rmp" -version = "0.8.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f9860a6cc38ed1da53456442089b4dfa35e7cedaa326df63017af88385e6b20" -dependencies = [ - "byteorder", - "num-traits", - "paste", -] - -[[package]] -name = "rmp-serde" -version = "1.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bffea85eea980d8a74453e5d02a8d93028f3c34725de143085a844ebe953258a" -dependencies = [ - "byteorder", - "rmp", - "serde", -] - -[[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 = "rustix" -version = "0.38.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a74ee2d7c2581cd139b42447d7d9389b889bdaad3a73f1ebb16f2a3237bb19c" -dependencies = [ - "bitflags 2.4.0", - "errno", - "libc 0.2.149", - "linux-raw-sys", - "windows-sys", -] - -[[package]] -name = "rustls" -version = "0.20.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99" -dependencies = [ - "log", - "ring 0.16.20", - "sct", - "webpki", -] - -[[package]] -name = "rustls-native-certs" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" -dependencies = [ - "openssl-probe", - "rustls-pemfile", - "schannel", - "security-framework", -] - -[[package]] -name = "rustls-pemfile" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" -dependencies = [ - "base64 0.21.4", -] - -[[package]] -name = "rustversion" -version = "1.0.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" - -[[package]] -name = "ruzstd" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a15e661f0f9dac21f3494fe5d23a6338c0ac116a2d22c2b63010acd89467ffe" -dependencies = [ - "byteorder", - "thiserror", - "twox-hash", -] - -[[package]] -name = "ryu" -version = "1.0.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" - -[[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 = "schannel" -version = "0.1.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" -dependencies = [ - "windows-sys", -] - -[[package]] -name = "scopeguard" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" - -[[package]] -name = "sct" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" -dependencies = [ - "ring 0.16.20", - "untrusted 0.7.1", -] - -[[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 0.2.149", - "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 0.2.149", -] - -[[package]] -name = "sendfd" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "604b71b8fc267e13bb3023a2c901126c8f349393666a6d98ac1ae5729b701798" -dependencies = [ - "libc 0.2.149", - "tokio", -] - -[[package]] -name = "serde" -version = "1.0.188" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e" -dependencies = [ - "serde_derive", -] - -[[package]] -name = "serde_bytes" -version = "0.11.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab33ec92f677585af6d88c65593ae2375adde54efdbf16d597f2cbc7a6d368ff" -dependencies = [ - "serde", -] - -[[package]] -name = "serde_derive" -version = "1.0.188" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.38", -] - -[[package]] -name = "serde_json" -version = "1.0.107" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" -dependencies = [ - "itoa", - "ryu", - "serde", -] - -[[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 = "shlex" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380" - -[[package]] -name = "sidecar_mockgen" -version = "0.1.0" -dependencies = [ - "object 0.31.1", -] - -[[package]] -name = "signal-hook-registry" -version = "1.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" -dependencies = [ - "libc 0.2.149", -] - -[[package]] -name = "siphasher" -version = "0.3.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" - -[[package]] -name = "slab" -version = "0.4.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" -dependencies = [ - "autocfg", -] - -[[package]] -name = "smallvec" -version = "1.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a" - -[[package]] -name = "socket2" -version = "0.4.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" -dependencies = [ - "libc 0.2.149", - "winapi", -] - -[[package]] -name = "socket2" -version = "0.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4031e820eb552adee9295814c0ced9e5cf38ddf1e8b7d566d6de8e2538ea989e" -dependencies = [ - "libc 0.2.149", - "windows-sys", -] - -[[package]] -name = "spawn_worker" -version = "0.0.1" -dependencies = [ - "anyhow", - "cc_utils", - "io-lifetimes", - "memfd", - "nix 0.24.3", - "rlimit", - "tempfile", -] - -[[package]] -name = "spin" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" - -[[package]] -name = "spin" -version = "0.9.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" - -[[package]] -name = "static_assertions" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" - -[[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.38" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e96b79aaa137db8f61e26363a0c9b47d8b4ec75da28b7d1d614c2303e232408b" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", -] - -[[package]] -name = "sync_wrapper" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" - -[[package]] -name = "sys-info" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b3a0d0aba8bf96a0e1ddfdc352fc53b3df7f39318c71854910c3c4b024ae52c" -dependencies = [ - "cc", - "libc 0.2.149", -] - -[[package]] -name = "tarpc" -version = "0.31.0" -dependencies = [ - "anyhow", - "assert_matches", - "bincode", - "bytes", - "flate2", - "fnv", - "futures", - "futures-test", - "humantime", - "opentelemetry", - "opentelemetry-jaeger", - "pin-project", - "pin-utils", - "rand 0.8.5", - "serde", - "serde_bytes", - "static_assertions", - "tarpc-plugins", - "thiserror", - "tokio", - "tokio-serde", - "tokio-util 0.7.9", - "tracing", - "tracing-opentelemetry", - "tracing-subscriber", - "trybuild", -] - -[[package]] -name = "tarpc-plugins" -version = "0.12.0" -dependencies = [ - "assert-type-eq", - "futures", - "proc-macro2", - "quote", - "serde", - "syn 1.0.109", - "tarpc", -] - -[[package]] -name = "tempdir" -version = "0.3.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" -dependencies = [ - "rand 0.4.6", - "remove_dir_all", -] - -[[package]] -name = "tempfile" -version = "3.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" -dependencies = [ - "cfg-if", - "fastrand", - "redox_syscall", - "rustix", - "windows-sys", -] - -[[package]] -name = "termcolor" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64" -dependencies = [ - "winapi-util", -] - -[[package]] -name = "textwrap" -version = "0.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" - -[[package]] -name = "thiserror" -version = "1.0.49" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1177e8c6d7ede7afde3585fd2513e611227efd6481bd78d2e82ba1ce16557ed4" -dependencies = [ - "thiserror-impl", -] - -[[package]] -name = "thiserror-impl" -version = "1.0.49" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.38", -] - -[[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 = "threadpool" -version = "1.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa" -dependencies = [ - "num_cpus", -] - -[[package]] -name = "thrift" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b82ca8f46f95b3ce96081fe3dd89160fdea970c254bb72925255d1b62aae692e" -dependencies = [ - "byteorder", - "integer-encoding", - "log", - "ordered-float", - "threadpool", -] - -[[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.33.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" -dependencies = [ - "backtrace", - "bytes", - "libc 0.2.149", - "mio", - "num_cpus", - "parking_lot", - "pin-project-lite", - "signal-hook-registry", - "socket2 0.5.4", - "tokio-macros", - "tracing", - "windows-sys", -] - -[[package]] -name = "tokio-io-timeout" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf" -dependencies = [ - "pin-project-lite", - "tokio", -] - -[[package]] -name = "tokio-macros" -version = "2.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.38", -] - -[[package]] -name = "tokio-rustls" -version = "0.23.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" -dependencies = [ - "rustls", - "tokio", - "webpki", -] - -[[package]] -name = "tokio-serde" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "911a61637386b789af998ee23f50aa30d5fd7edcec8d6d3dedae5e5815205466" -dependencies = [ - "bincode", - "bytes", - "educe", - "futures-core", - "futures-sink", - "pin-project", - "serde", - "serde_json", -] - -[[package]] -name = "tokio-stream" -version = "0.1.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" -dependencies = [ - "futures-core", - "pin-project-lite", - "tokio", -] - -[[package]] -name = "tokio-util" -version = "0.6.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507" -dependencies = [ - "bytes", - "futures-core", - "futures-sink", - "log", - "pin-project-lite", - "tokio", -] - -[[package]] -name = "tokio-util" -version = "0.7.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d68074620f57a0b21594d9735eb2e98ab38b17f80d3fcb189fca266771ca60d" -dependencies = [ - "bytes", - "futures-core", - "futures-sink", - "pin-project-lite", - "slab", - "tokio", - "tracing", -] - -[[package]] -name = "toml" -version = "0.5.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" -dependencies = [ - "serde", -] - -[[package]] -name = "tonic" -version = "0.9.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3082666a3a6433f7f511c7192923fa1fe07c69332d3c6a2e6bb040b569199d5a" -dependencies = [ - "async-trait", - "axum", - "base64 0.21.4", - "bytes", - "futures-core", - "futures-util", - "h2", - "http", - "http-body", - "hyper", - "hyper-timeout", - "percent-encoding", - "pin-project", - "prost", - "tokio", - "tokio-stream", - "tower", - "tower-layer", - "tower-service", - "tracing", -] - -[[package]] -name = "tower" -version = "0.4.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" -dependencies = [ - "futures-core", - "futures-util", - "indexmap 1.9.3", - "pin-project", - "pin-project-lite", - "rand 0.8.5", - "slab", - "tokio", - "tokio-util 0.7.9", - "tower-layer", - "tower-service", - "tracing", -] - -[[package]] -name = "tower-layer" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" - -[[package]] -name = "tower-service" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" - -[[package]] -name = "tracing" -version = "0.1.37" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" -dependencies = [ - "cfg-if", - "log", - "pin-project-lite", - "tracing-attributes", - "tracing-core", -] - -[[package]] -name = "tracing-attributes" -version = "0.1.26" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.38", -] - -[[package]] -name = "tracing-core" -version = "0.1.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" -dependencies = [ - "once_cell", - "valuable", -] - -[[package]] -name = "tracing-log" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" -dependencies = [ - "lazy_static", - "log", - "tracing-core", -] - -[[package]] -name = "tracing-opentelemetry" -version = "0.17.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbbe89715c1dbbb790059e2565353978564924ee85017b5fff365c872ff6721f" -dependencies = [ - "once_cell", - "opentelemetry", - "tracing", - "tracing-core", - "tracing-subscriber", -] - -[[package]] -name = "tracing-subscriber" -version = "0.3.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" -dependencies = [ - "matchers", - "nu-ansi-term", - "once_cell", - "regex", - "sharded-slab", - "smallvec", - "thread_local", - "tracing", - "tracing-core", - "tracing-log", -] - -[[package]] -name = "try-lock" -version = "0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" - -[[package]] -name = "trybuild" -version = "1.0.85" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "196a58260a906cedb9bf6d8034b6379d0c11f552416960452f267402ceeddff1" -dependencies = [ - "basic-toml", - "glob", - "once_cell", - "serde", - "serde_derive", - "serde_json", - "termcolor", -] - -[[package]] -name = "twox-hash" -version = "1.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" -dependencies = [ - "cfg-if", - "static_assertions", -] - -[[package]] -name = "unicase" -version = "2.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" -dependencies = [ - "version_check 0.9.4", -] - -[[package]] -name = "unicode-ident" -version = "1.0.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" - -[[package]] -name = "untrusted" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" - -[[package]] -name = "untrusted" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" - -[[package]] -name = "uuid" -version = "1.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" -dependencies = [ - "getrandom", -] - -[[package]] -name = "valuable" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" - -[[package]] -name = "version_check" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" - -[[package]] -name = "version_check" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" - -[[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 = "wasm-bindgen" -version = "0.2.87" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" -dependencies = [ - "cfg-if", - "wasm-bindgen-macro", -] - -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.87" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" -dependencies = [ - "bumpalo", - "log", - "once_cell", - "proc-macro2", - "quote", - "syn 2.0.38", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-macro" -version = "0.2.87" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" -dependencies = [ - "quote", - "wasm-bindgen-macro-support", -] - -[[package]] -name = "wasm-bindgen-macro-support" -version = "0.2.87" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.38", - "wasm-bindgen-backend", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-shared" -version = "0.2.87" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" - -[[package]] -name = "web-sys" -version = "0.3.64" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" -dependencies = [ - "js-sys", - "wasm-bindgen", -] - -[[package]] -name = "webpki" -version = "0.22.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53" -dependencies = [ - "ring 0.17.3", - "untrusted 0.9.0", -] - -[[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 = "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.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" -dependencies = [ - "windows-targets", -] - -[[package]] -name = "windows-sys" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" -dependencies = [ - "windows-targets", -] - -[[package]] -name = "windows-targets" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" -dependencies = [ - "windows_aarch64_gnullvm", - "windows_aarch64_msvc", - "windows_i686_gnu", - "windows_i686_msvc", - "windows_x86_64_gnu", - "windows_x86_64_gnullvm", - "windows_x86_64_msvc", -] - -[[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_msvc" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" - -[[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_msvc" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" - -[[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_gnullvm" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" - -[[package]] -name = "x86" -version = "0.47.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55b5be8cc34d017d8aabec95bc45a43d0f20e8b2a31a453cabc804fe996f8dca" -dependencies = [ - "bit_field", - "bitflags 1.3.2", - "csv", - "phf", - "phf_codegen", - "raw-cpuid", - "serde_json", -] - -[[package]] -name = "yansi" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" - -[[package]] -name = "zwohash" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "beaf63e0740cea93ca85de39611a8bc8262a50adacd6321cd209a123676d0447" diff --git a/pkgs/development/php-packages/datadog_trace/default.nix b/pkgs/development/php-packages/datadog_trace/default.nix index 3cc5732adca7..ac679a748f18 100644 --- a/pkgs/development/php-packages/datadog_trace/default.nix +++ b/pkgs/development/php-packages/datadog_trace/default.nix @@ -24,11 +24,9 @@ buildPecl rec { hash = "sha256-Kx2HaWvRT+mFIs0LAAptx6nm9DQ83QEuyHNcEPEr7A4="; }; - cargoDeps = rustPlatform.importCargoLock { - lockFile = ./Cargo.lock; - outputHashes = { - "datadog-profiling-5.0.0" = "sha256-/Z1vGpAHpU5EO80NXnzyAHN4s3iyA1jOquBS8MH1nOo="; - }; + cargoDeps = rustPlatform.fetchCargoVendor { + inherit src; + hash = "sha256-cwhE6M8r8QnrIiNgEekI25GcKTByySrZsigPd9/Fq7o="; }; env.NIX_CFLAGS_COMPILE = "-O2"; From 22ee62f58d745154964bd47bb0cf395584a78c54 Mon Sep 17 00:00:00 2001 From: Piotr Kwiecinski <2151333+piotrkwiecinski@users.noreply.github.com> Date: Sun, 19 Jan 2025 14:12:33 +0100 Subject: [PATCH 15/57] php84Extensions.datadog_trace: mark broken --- pkgs/development/php-packages/datadog_trace/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/php-packages/datadog_trace/default.nix b/pkgs/development/php-packages/datadog_trace/default.nix index ac679a748f18..866de8be10ab 100644 --- a/pkgs/development/php-packages/datadog_trace/default.nix +++ b/pkgs/development/php-packages/datadog_trace/default.nix @@ -10,6 +10,7 @@ pcre2, libiconv, darwin, + php, }: buildPecl rec { @@ -65,5 +66,6 @@ buildPecl rec { bsd3 ]; maintainers = lib.teams.php.members; + broken = lib.versionAtLeast php.version "8.4"; }; } From fe637e0213e9c9a9ddbd21f7cf9f73940ecedb35 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 19 Jan 2025 13:41:59 +0000 Subject: [PATCH 16/57] python312Packages.base64io: 1.0.3-unstable-2024-06-24 -> 1.0.3-unstable-2025-01-09 --- pkgs/development/python-modules/base64io/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/base64io/default.nix b/pkgs/development/python-modules/base64io/default.nix index ab442ae90fa4..26a0085092a1 100644 --- a/pkgs/development/python-modules/base64io/default.nix +++ b/pkgs/development/python-modules/base64io/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "base64io"; - version = "1.0.3-unstable-2024-06-24"; + version = "1.0.3-unstable-2025-01-09"; pyproject = true; disabled = pythonOlder "3.8"; @@ -19,8 +19,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "aws"; repo = "base64io-python"; - rev = "f3dd88bf0db6eb412c55ff579f0aa9f39d970c41"; - hash = "sha256-znQlPlS+jzPiHNBvnDnZ8l1pZP6iuYqExDlPii4dJwM="; + rev = "1bd47f7f8cfeeff654ea0edda3fbb69f840ccd05"; + hash = "sha256-1MUWjFFitJ3nqvVwAQYcAVVPhPs6NEgq7t/mI71u2Bk="; }; build-system = [ setuptools ]; From 897a9483b83eb3d0f0780a5b264056df8c78f5e8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 19 Jan 2025 14:36:29 +0000 Subject: [PATCH 17/57] ugrep: 7.1.2 -> 7.1.3 --- pkgs/by-name/ug/ugrep/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ug/ugrep/package.nix b/pkgs/by-name/ug/ugrep/package.nix index e21f7dfba3cf..e0ebdd1c6c29 100644 --- a/pkgs/by-name/ug/ugrep/package.nix +++ b/pkgs/by-name/ug/ugrep/package.nix @@ -17,13 +17,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "ugrep"; - version = "7.1.2"; + version = "7.1.3"; src = fetchFromGitHub { owner = "Genivia"; repo = "ugrep"; rev = "v${finalAttrs.version}"; - hash = "sha256-Gujz4o3EhpUs/GtUBXdimJR06yX1zu6joZkG/9aXrU4="; + hash = "sha256-Y8I38ZaZfRalh8La6xWs7eMqx5TzQzsyQcOWNo1XeKs="; }; nativeBuildInputs = [ makeWrapper ]; From 409845ed08403a1761068f15f5e5d00e377f4917 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 19 Jan 2025 16:40:58 +0000 Subject: [PATCH 18/57] python312Packages.license-expression: 30.4.0 -> 30.4.1 --- .../development/python-modules/license-expression/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/license-expression/default.nix b/pkgs/development/python-modules/license-expression/default.nix index d1f82fc8588f..9fbfff4c8d26 100644 --- a/pkgs/development/python-modules/license-expression/default.nix +++ b/pkgs/development/python-modules/license-expression/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "license-expression"; - version = "30.4.0"; + version = "30.4.1"; pyproject = true; disabled = pythonOlder "3.9"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "aboutcode-org"; repo = "license-expression"; tag = "v${version}"; - hash = "sha256-RAgGg0Xekcw5H13YHmkgfL7eybK+4tA8EAvVTuWFRck="; + hash = "sha256-H1IAA/fxQkMMsvCv02gLXE3odokNejPRGZVZnhE61II="; }; dontConfigure = true; From 70f4e7b1ad7f2f49186a1de69c37fe50caeb41ce Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 19 Jan 2025 17:21:42 +0000 Subject: [PATCH 19/57] lunar-client: 3.3.2 -> 3.3.3 --- pkgs/by-name/lu/lunar-client/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/lu/lunar-client/package.nix b/pkgs/by-name/lu/lunar-client/package.nix index 8f286b23454b..48fd47fc2205 100644 --- a/pkgs/by-name/lu/lunar-client/package.nix +++ b/pkgs/by-name/lu/lunar-client/package.nix @@ -7,11 +7,11 @@ appimageTools.wrapType2 rec { pname = "lunarclient"; - version = "3.3.2"; + version = "3.3.3"; src = fetchurl { url = "https://launcherupdates.lunarclientcdn.com/Lunar%20Client-${version}.AppImage"; - hash = "sha512-Gpm17h5U9Cw9r5EHE1wF5e0aza9yaGPUf+rhMVAhXjrVYBqiUsc/UG11TXWqarKlLpRmPDe+BvCF0qqTtTEZhw=="; + hash = "sha512-WS23Kz/9iVsFGuds/vD/kc2k6aCsLkNy6b/vFeYEkbqrXQ3FHiNMl6ELPFXuOznEo/AiuqNp0O623G7r7SrKlw=="; }; nativeBuildInputs = [ makeWrapper ]; From 5eb7333fcae1825a24d21a17e4c264359bf56464 Mon Sep 17 00:00:00 2001 From: Marcus Ramberg Date: Sun, 19 Jan 2025 20:49:11 +0100 Subject: [PATCH 20/57] google-cloud-sdk: 501.0.0 -> 506.0.0 --- .../admin/google-cloud-sdk/components.json | 417 ++++++++++-------- pkgs/tools/admin/google-cloud-sdk/data.nix | 47 +- 2 files changed, 248 insertions(+), 216 deletions(-) diff --git a/pkgs/tools/admin/google-cloud-sdk/components.json b/pkgs/tools/admin/google-cloud-sdk/components.json index f70fb57b3f40..7b95e1e55ae0 100644 --- a/pkgs/tools/admin/google-cloud-sdk/components.json +++ b/pkgs/tools/admin/google-cloud-sdk/components.json @@ -5,7 +5,7 @@ "checksum": "5a65179c291bc480696ca323d2f8c4874985458303eff8f233e16cdca4e88e6f", "contents_checksum": "038c999c7a7d70d5133eab7dc5868c4c3d0358431dad250f9833306af63016c8", "size": 800, - "source": "components/google-cloud-sdk-alpha-20241108162203.tar.gz", + "source": "components/google-cloud-sdk-alpha-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -23,8 +23,8 @@ "platform": {}, "platform_required": false, "version": { - "build_number": 20241108162203, - "version_string": "2024.11.08" + "build_number": 20250110133808, + "version_string": "2025.01.10" } }, { @@ -1377,7 +1377,7 @@ "checksum": "707d412854a14450b4fddee199d258e75946fe51b44eb2980c8cd7e274c15760", "contents_checksum": "0b4e9d8e6394dc841aece07ca4da91920a460cbd7ec22495be4a2b4f46635b4d", "size": 797, - "source": "components/google-cloud-sdk-beta-20241108162203.tar.gz", + "source": "components/google-cloud-sdk-beta-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -1395,8 +1395,8 @@ "platform": {}, "platform_required": false, "version": { - "build_number": 20241108162203, - "version_string": "2024.11.08" + "build_number": 20250110133808, + "version_string": "2025.01.10" } }, { @@ -1720,10 +1720,10 @@ }, { "data": { - "checksum": "2f4bc940e6e458166063a8028c87d7d11c31edf5a93ecbc371adf9a9f3d969a7", - "contents_checksum": "7d671d12e321363f96c65f72bc2b4ce90bcb0c43d6ecc609f30b9ebd7f21af52", - "size": 1831026, - "source": "components/google-cloud-sdk-bq-20241011151610.tar.gz", + "checksum": "86609c5fa73b8ede9841bf001e0a006d4c11a538d81989f4b876baca7c393af7", + "contents_checksum": "695198b8e20e9055f78cb0dd4374e4b7847231a58d3bcddf1b6b4d56b0fee425", + "size": 1828274, + "source": "components/google-cloud-sdk-bq-20241213184646.tar.gz", "type": "tar" }, "dependencies": [ @@ -1743,8 +1743,8 @@ "platform": {}, "platform_required": false, "version": { - "build_number": 20241011151610, - "version_string": "2.1.9" + "build_number": 20241213184646, + "version_string": "2.1.11" } }, { @@ -2012,15 +2012,15 @@ "platform_required": false, "version": { "build_number": 0, - "version_string": "1.22.0" + "version_string": "1.23.0" } }, { "data": { - "checksum": "161d9918c898e422c4f36838c13e515b92208428e8c4a602d8cb1e492fcdb16e", - "contents_checksum": "69ce6ab3b44bb669e61529c82927c17af971148620814edc11162d5255c94654", - "size": 18821500, - "source": "components/google-cloud-sdk-cbt-darwin-arm-20240823153932.tar.gz", + "checksum": "131640052dbb0953b75809531af819fcf1494fc375c54c9c8be47d90d67118ff", + "contents_checksum": "b1539555f5e2a052f5755007f7a3bb28d61641c1486c26e5322e4229ef1ded38", + "size": 19143243, + "source": "components/google-cloud-sdk-cbt-darwin-arm-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -2045,8 +2045,8 @@ }, "platform_required": false, "version": { - "build_number": 20240823153932, - "version_string": "1.22.0" + "build_number": 20250110133808, + "version_string": "1.23.0" } }, { @@ -2085,10 +2085,10 @@ }, { "data": { - "checksum": "0da4f23648181eedb850e055c907812fefc1dfde9cce2dee471050f645171382", - "contents_checksum": "0ab6622f1c0045d078cfffc74e035f85c57cefc8f03e455a5b0aba841fe5d517", - "size": 19603578, - "source": "components/google-cloud-sdk-cbt-darwin-x86_64-20240823153932.tar.gz", + "checksum": "54b8a43896df005a025df87754e540093706490e32629b064516fcd37dae003d", + "contents_checksum": "84f4286b21a52de6b38e7cfb164115445cfadddaf09b0547746ee78b0a8aa5f9", + "size": 19960922, + "source": "components/google-cloud-sdk-cbt-darwin-x86_64-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -2113,16 +2113,16 @@ }, "platform_required": false, "version": { - "build_number": 20240823153932, - "version_string": "1.22.0" + "build_number": 20250110133808, + "version_string": "1.23.0" } }, { "data": { - "checksum": "90720349954a12b375f2506d62754f942c788e2fcf5fce9b2e1d3329a1bede0c", - "contents_checksum": "224babcc9767c1e4bd974887dc9c961b19dca6fd888b6ad9c73bf5c1886e4d91", - "size": 18178427, - "source": "components/google-cloud-sdk-cbt-linux-arm-20240823153932.tar.gz", + "checksum": "80db96ed6f5e4eb13be11a3b0387c98fb806a28330bd0f1757c47ee5f279955a", + "contents_checksum": "505e2cd7149260682c698ea73d6a93cb5250c8e0ef326a3492e38baf748f0258", + "size": 18522420, + "source": "components/google-cloud-sdk-cbt-linux-arm-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -2147,16 +2147,16 @@ }, "platform_required": false, "version": { - "build_number": 20240823153932, - "version_string": "1.22.0" + "build_number": 20250110133808, + "version_string": "1.23.0" } }, { "data": { - "checksum": "d246c378b7614a7ac7c47bf4d7e11c54869335b7e2d37f27a781e794d23c2824", - "contents_checksum": "4d824111595e4b11d0e2533428277cba49663a9e76b18cd6f2d5925223a7721d", - "size": 17979307, - "source": "components/google-cloud-sdk-cbt-linux-x86-20240823153932.tar.gz", + "checksum": "855c5771c4df7aeb48daacb9d877df4b105edb65b5ea4ece9b06ad7619f0265c", + "contents_checksum": "3fcde11b4221651e2ba5b44bf813b850502389df3bfb2c3d31060f2c25fece7d", + "size": 18396590, + "source": "components/google-cloud-sdk-cbt-linux-x86-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -2181,16 +2181,16 @@ }, "platform_required": false, "version": { - "build_number": 20240823153932, - "version_string": "1.22.0" + "build_number": 20250110133808, + "version_string": "1.23.0" } }, { "data": { - "checksum": "b05c7bd1d24a0f60663d1bfc4133096c42beb251f5cfc389ffe72aa807cee025", - "contents_checksum": "01c561c96c2eebd9924d161eccc8806b385f047da0369f6e598aca93cd5ea44c", - "size": 19333762, - "source": "components/google-cloud-sdk-cbt-linux-x86_64-20240823153932.tar.gz", + "checksum": "657d839d3f7e57c9d0528a5db6c34320b204e10c05365caf909d878509ee7b25", + "contents_checksum": "ef49a291c286b00c0386c0bbe93e9adc28e0f23564db5f07cadd22b852f76497", + "size": 19713974, + "source": "components/google-cloud-sdk-cbt-linux-x86_64-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -2215,16 +2215,16 @@ }, "platform_required": false, "version": { - "build_number": 20240823153932, - "version_string": "1.22.0" + "build_number": 20250110133808, + "version_string": "1.23.0" } }, { "data": { - "checksum": "e85042dc647c143a66d0dcebb827a6ee13f6e00d98dc24d49b6194602d6fdd74", - "contents_checksum": "7293621c8b8c3dcf5db0f3885932ca6f8ff0af51ea2c9b594db28bd282fcddca", - "size": 18404340, - "source": "components/google-cloud-sdk-cbt-windows-x86-20240823153932.tar.gz", + "checksum": "7f9dde684fec49f753b6cde5770349f210944c9880ae5142d9fac721e7be0e3d", + "contents_checksum": "1cd816397f4b94eabe9ea42e226ab1351c7c6ca5352b033209792c56fd1062d4", + "size": 18810461, + "source": "components/google-cloud-sdk-cbt-windows-x86-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -2249,16 +2249,16 @@ }, "platform_required": false, "version": { - "build_number": 20240823153932, - "version_string": "1.22.0" + "build_number": 20250110133808, + "version_string": "1.23.0" } }, { "data": { - "checksum": "3254d3680eb76946c43afe61181295864aa3f31f0e94c27c286f4221563a829b", - "contents_checksum": "a5fe7eba35090d213a194c34b610c8443778d238e6278ded7119fa350646b7a7", - "size": 19605578, - "source": "components/google-cloud-sdk-cbt-windows-x86_64-20240823153932.tar.gz", + "checksum": "9597fc3dd64947b881b90dd101d9219e3c09392e0be1f5adb931da11edb99565", + "contents_checksum": "be6586d717afa1560f37a9b24b6e2079645783e187af3ac14e25144a4ac77019", + "size": 19975211, + "source": "components/google-cloud-sdk-cbt-windows-x86_64-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -2283,8 +2283,8 @@ }, "platform_required": false, "version": { - "build_number": 20240823153932, - "version_string": "1.22.0" + "build_number": 20250110133808, + "version_string": "1.23.0" } }, { @@ -2703,15 +2703,15 @@ "platform_required": false, "version": { "build_number": 0, - "version_string": "1.5.25" + "version_string": "1.5.28" } }, { "data": { - "checksum": "b7090e9566b8e4270a7ce2ec442f248427e01b817829d53f45e5c8fea66eb4b3", - "contents_checksum": "7e2711d69eafea9545e4344498ce33bc9b31e53362432dd5066bdca5be83368a", - "size": 39430118, - "source": "components/google-cloud-sdk-cloud-spanner-emulator-linux-x86_64-20241108162203.tar.gz", + "checksum": "5a6d5859f2948814101677a3e2b2105bf58629e3f75eb3fc8402dc17ca5049f2", + "contents_checksum": "35e23887c12bd71dade150b3dc03bbad5599deb84513a31cedb13cce8f5d51e5", + "size": 39501839, + "source": "components/google-cloud-sdk-cloud-spanner-emulator-linux-x86_64-20250103155615.tar.gz", "type": "tar" }, "dependencies": [ @@ -2737,8 +2737,8 @@ }, "platform_required": false, "version": { - "build_number": 20241108162203, - "version_string": "1.5.25" + "build_number": 20250103155615, + "version_string": "1.5.28" } }, { @@ -3497,10 +3497,10 @@ }, { "data": { - "checksum": "04372a3bd7a53028de9a7b03d42f06e5b2b8b5951071f16c3ad54e561473ae47", - "contents_checksum": "638d6b0132897c9d0449e1f36ce96a61d243d664b8e31275028aa4b3498a2999", - "size": 21371626, - "source": "components/google-cloud-sdk-core-20241108162203.tar.gz", + "checksum": "b0119e3d1f6b1b2cf88ba7f56f9c0c2cffcba0bece4e364094014b4f0982d0e1", + "contents_checksum": "c7c21adf6ecb7c38228e0ea56d6cdc43135db2cae0de6dc606d6c734dc5ecad4", + "size": 21654178, + "source": "components/google-cloud-sdk-core-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -3522,8 +3522,8 @@ "platform": {}, "platform_required": false, "version": { - "build_number": 20241108162203, - "version_string": "2024.11.08" + "build_number": 20250110133808, + "version_string": "2025.01.10" } }, { @@ -4100,10 +4100,10 @@ }, { "data": { - "checksum": "01619f4c6a7bf2e3e01de81927ce7e5c0b5ee845418e0892758455736514034f", - "contents_checksum": "eddf662d79aa713f86069b1d5beb20419795514256037ebd643825fc60cf6950", - "size": 1295444, - "source": "components/google-cloud-sdk-gcloud-crc32c-darwin-arm-20240712142834.tar.gz", + "checksum": "0046cb15cfde72c923e16cb73557503b277fdfe137f89b5514e6292fb31befc2", + "contents_checksum": "85cb89a4844ac1ee81f4190ae28173fa53f39a4303c922daf799d77b73218822", + "size": 1406321, + "source": "components/google-cloud-sdk-gcloud-crc32c-darwin-arm-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -4128,16 +4128,16 @@ }, "platform_required": false, "version": { - "build_number": 20240712142834, + "build_number": 20250110133808, "version_string": "1.0.0" } }, { "data": { - "checksum": "8690ee8c426f0a839378d7b3431195dd3b9db25f7ebd618193b2d31221bae1b3", - "contents_checksum": "fe0d4da6db75b15d74b75ab1849699ceaec828d94586c016eb939480a3d4aa19", - "size": 1348172, - "source": "components/google-cloud-sdk-gcloud-crc32c-darwin-x86_64-20240712142834.tar.gz", + "checksum": "017db34be5d545f89707961bc02a3f9a951bd125e36c5046d804a3d8042aaba4", + "contents_checksum": "ec78262bd0f6610db4e280594cc962be34ac75ae4294d2178bedffc53aaab9b7", + "size": 1467111, + "source": "components/google-cloud-sdk-gcloud-crc32c-darwin-x86_64-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -4162,16 +4162,16 @@ }, "platform_required": false, "version": { - "build_number": 20240712142834, + "build_number": 20250110133808, "version_string": "1.0.0" } }, { "data": { - "checksum": "45281a275510e694ec8d7038cdc12440bbf4e8ac99eaf4facadcb9f0970e1dd2", - "contents_checksum": "39aa19b5b52f148daeed6c023eae051a3d3a73204f36bb1291e0ed893c0a3a04", - "size": 1274880, - "source": "components/google-cloud-sdk-gcloud-crc32c-linux-arm-20240712142834.tar.gz", + "checksum": "fe898d783ac6a0036b15470a0e6639c994a0bdd10ee645fb8d0ea27f42ff4d66", + "contents_checksum": "b25a88e22507bf5ff0c81eba98b939769d385f1cce4c1d802de9a6711a29b583", + "size": 1394341, + "source": "components/google-cloud-sdk-gcloud-crc32c-linux-arm-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -4196,16 +4196,16 @@ }, "platform_required": false, "version": { - "build_number": 20240712142834, + "build_number": 20250110133808, "version_string": "1.0.0" } }, { "data": { - "checksum": "80935422cdff13c6f146ce2ceef79df7184e6aedc1962325ec6349de1a40235d", - "contents_checksum": "3eb0e658ec47296ba5bd0dc47e639379f8e22cf26c287c855a03129efe81f625", - "size": 1277952, - "source": "components/google-cloud-sdk-gcloud-crc32c-linux-x86-20240712142834.tar.gz", + "checksum": "23dbbfd2f178808fd9ed8c294d5ea90b59b0e279a9dca18478c88eefc8dc6ab7", + "contents_checksum": "0a92950d1303644a90e01645e99385be869ee391b524f3f159fe72e1385bd4c2", + "size": 1404996, + "source": "components/google-cloud-sdk-gcloud-crc32c-linux-x86-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -4230,16 +4230,16 @@ }, "platform_required": false, "version": { - "build_number": 20240712142834, + "build_number": 20250110133808, "version_string": "1.0.0" } }, { "data": { - "checksum": "14d6d2178f84894c3518fe728bc6ec798efa629b6d2909357d2d917172f738c2", - "contents_checksum": "180f28ff98581f9c8a2b87b0323aeef1e387590d80ace7dc8c0628a9e6ad2c6d", - "size": 1350263, - "source": "components/google-cloud-sdk-gcloud-crc32c-linux-x86_64-20240712142834.tar.gz", + "checksum": "3efcf2c00e6611443ae8bf8d848b1e37f62c305ec5bb0fc4cb2a67de24909f31", + "contents_checksum": "743df6a3c3a9e30d248a3a412b1b53da8ae2c0409468ec70d2ffe3ea3cf09cd3", + "size": 1478989, + "source": "components/google-cloud-sdk-gcloud-crc32c-linux-x86_64-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -4264,16 +4264,16 @@ }, "platform_required": false, "version": { - "build_number": 20240712142834, + "build_number": 20250110133808, "version_string": "1.0.0" } }, { "data": { - "checksum": "dac408a36e4852744be49a4e35099b3edfb8a4e5c763b0c2804bb34eb33205d4", - "contents_checksum": "04b7b4c62d1890e519484ae22f53071c8109ed3555b288c03861e443490d6c3a", - "size": 1297402, - "source": "components/google-cloud-sdk-gcloud-crc32c-windows-x86-20240712142834.tar.gz", + "checksum": "0400673577fd1f33bc76ebb5124d4e44e323e9ed238e92a003a2ab5b6cb8aa88", + "contents_checksum": "4d9e012ae0a17b9ccfebc7f7cb39e9fc0a60d3bf657352849a368830cbb2f2e3", + "size": 1436096, + "source": "components/google-cloud-sdk-gcloud-crc32c-windows-x86-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -4298,16 +4298,16 @@ }, "platform_required": false, "version": { - "build_number": 20240712142834, + "build_number": 20250110133808, "version_string": "1.0.0" } }, { "data": { - "checksum": "39f75b70032b44cd5c6300b28457daa8a3530fa944dd0abf8319ebc6297dc173", - "contents_checksum": "2f6f233cedbee66aa646c0315d8382405d033671db00d38b247afcd64b97226c", - "size": 1376457, - "source": "components/google-cloud-sdk-gcloud-crc32c-windows-x86_64-20240712142834.tar.gz", + "checksum": "033bdad92adca3f5a7a36d337f98371b04419682265c05139f23d54997e0f0d9", + "contents_checksum": "dbb7f23381fdf5a376b9949fb2351564790862c8c63160a59538e6e19dbf939e", + "size": 1506156, + "source": "components/google-cloud-sdk-gcloud-crc32c-windows-x86_64-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -4332,16 +4332,16 @@ }, "platform_required": false, "version": { - "build_number": 20240712142834, + "build_number": 20250110133808, "version_string": "1.0.0" } }, { "data": { - "checksum": "12c365e73778c8f7c4e4d43d7668dbbd4e925341b9865d945532f4ecc1d05e4b", - "contents_checksum": "1e2cfbc8ee83179914207953789b6d5a2cbea0c3ea5f9146c6fa2c5fc6d02f87", - "size": 17433069, - "source": "components/google-cloud-sdk-gcloud-deps-20241101143516.tar.gz", + "checksum": "2eeaeb24c7cb0c3cc9b4326b21c0972e3ab28564405ec31779cc55a0904d4056", + "contents_checksum": "13c2d7047d65d8d214b6ca0566882c6ae12e56b91af10ce6a8dba6cfac877fcd", + "size": 17452815, + "source": "components/google-cloud-sdk-gcloud-deps-20241219230653.tar.gz", "type": "tar" }, "dependencies": [ @@ -4365,8 +4365,8 @@ "platform": {}, "platform_required": false, "version": { - "build_number": 20241101143516, - "version_string": "2024.11.01" + "build_number": 20241219230653, + "version_string": "2024.12.19" } }, { @@ -4609,10 +4609,10 @@ }, { "data": { - "checksum": "e93f1ffda5cdfbd064159f816a71c60a0ad2865dbfa86ef7bc483e60ee992d9b", - "contents_checksum": "157b9dd5fc9681c74f1e4061998942dc72e32d102948327fecbf06d87bb80ea7", - "size": 7427282, - "source": "components/google-cloud-sdk-gcloud-man-pages-nix-20241108162203.tar.gz", + "checksum": "189cf48f35902b38500b4d69125c987041a48b37d720fa51a39702f9087e9e4a", + "contents_checksum": "be393d14f544abfbcdfcf4375e621475dada898bec20f17bbcef989ba4fd1438", + "size": 7650430, + "source": "components/google-cloud-sdk-gcloud-man-pages-nix-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -4638,7 +4638,7 @@ }, "platform_required": false, "version": { - "build_number": 20241108162203, + "build_number": 20250110133808, "version_string": "" } }, @@ -4919,10 +4919,10 @@ }, { "data": { - "checksum": "5734a7dbbc88b1cda3a5e8818ae959d97cf1db47161c06a0ab8b9c0d7b363fc6", - "contents_checksum": "cf0134d88dd4d02da801cb6c741fb28883c23f58eb48151deef6a34a031a97e8", - "size": 11831021, - "source": "components/google-cloud-sdk-gsutil-20241011151610.tar.gz", + "checksum": "0874e6c1c7daa655add82f8ebba39eb3e531b04bdcee595adc8834cc99821ef8", + "contents_checksum": "e390c22f077b01e7e4aeae0fb6d0a4e7dfadff2a969df0587716ad37a9cc371a", + "size": 12368759, + "source": "components/google-cloud-sdk-gsutil-20241213184646.tar.gz", "type": "tar" }, "dependencies": [ @@ -4942,8 +4942,8 @@ "platform": {}, "platform_required": false, "version": { - "build_number": 20241011151610, - "version_string": "5.31" + "build_number": 20241213184646, + "version_string": "5.33" } }, { @@ -5446,10 +5446,10 @@ }, { "data": { - "checksum": "a497a6fb6dccc1727627673ef149a12ce924ab7676a46588e71b4713143bcc10", - "contents_checksum": "b5dd63920724564fa52bb21f477a1f4b0d68182dec35421147e834a7d043a0cd", - "size": 90277960, - "source": "components/google-cloud-sdk-kubectl-darwin-arm-20241108162203.tar.gz", + "checksum": "c6017f071840845f73807fb1e6c261a93ab506a692b3ddd7a40a44104e5019f9", + "contents_checksum": "3720353972e382fb0b89d8e6caec7b5a476a8c1b6863a11afce73d2049aaf2a8", + "size": 106317691, + "source": "components/google-cloud-sdk-kubectl-darwin-arm-20241213184646.tar.gz", "type": "tar" }, "dependencies": [ @@ -5475,16 +5475,16 @@ }, "platform_required": true, "version": { - "build_number": 20241108162203, - "version_string": "1.30.6" + "build_number": 20241213184646, + "version_string": "1.30.8" } }, { "data": { - "checksum": "2fce10703dcd7dae88b530632a4cf417138d3a76f0fe1bea69f18ae6eec02cfa", - "contents_checksum": "2807c7890ffe319619b9e9012b7077ba571743f646ffcade2a1d121918d390a1", - "size": 96766046, - "source": "components/google-cloud-sdk-kubectl-darwin-x86_64-20241108162203.tar.gz", + "checksum": "d81bb765cccafbcddd08436c59bbf1f02a5462487fa744d5830f2489b294f668", + "contents_checksum": "3418fda341bd78438fd330cf2909a88191e0957d070a8a7940ac51350846549c", + "size": 113907345, + "source": "components/google-cloud-sdk-kubectl-darwin-x86_64-20241213184646.tar.gz", "type": "tar" }, "dependencies": [ @@ -5510,16 +5510,16 @@ }, "platform_required": true, "version": { - "build_number": 20241108162203, - "version_string": "1.30.6" + "build_number": 20241213184646, + "version_string": "1.30.8" } }, { "data": { - "checksum": "8aae12b2a39a08508f95e01ea6e06d8d22a1113d24edce746ca191cbad3c363c", - "contents_checksum": "41dd2d6a94a13a363109a818f2a64d9c1b61b655da19f7adf0f4fbc2038580a0", - "size": 90129992, - "source": "components/google-cloud-sdk-kubectl-linux-arm-20241108162203.tar.gz", + "checksum": "fc167cb08e726d8ad58ffd8933880aa5e0c7b77e28f798e5423c054831e33b8c", + "contents_checksum": "a23110b3653401fb299aa4395a43ce53bf5985dfe96fa50c3f41e63b6f87f1d8", + "size": 105383125, + "source": "components/google-cloud-sdk-kubectl-linux-arm-20241213184646.tar.gz", "type": "tar" }, "dependencies": [ @@ -5545,16 +5545,16 @@ }, "platform_required": true, "version": { - "build_number": 20241108162203, - "version_string": "1.30.6" + "build_number": 20241213184646, + "version_string": "1.30.8" } }, { "data": { - "checksum": "cf1068a979c25ba4c9b165e8e85650b4957960239bfb62fb709b89d69955fa85", - "contents_checksum": "b4cc0659b6d95c619c4ea43334de8db8b34a8429e1a8e6fc05d76ede86d99d7a", - "size": 87525128, - "source": "components/google-cloud-sdk-kubectl-linux-x86-20241108162203.tar.gz", + "checksum": "a3ddd00f43547ddda49e3fc0a743451b4e4cafd773e1c32be1efbc7d70e2d4d0", + "contents_checksum": "55cebaf2745697f14b04e209bd735b99b262cff5e474e88cd5412a04e8c86f56", + "size": 103067994, + "source": "components/google-cloud-sdk-kubectl-linux-x86-20241213184646.tar.gz", "type": "tar" }, "dependencies": [ @@ -5580,16 +5580,16 @@ }, "platform_required": true, "version": { - "build_number": 20241108162203, - "version_string": "1.30.6" + "build_number": 20241213184646, + "version_string": "1.30.8" } }, { "data": { - "checksum": "3383c94ed6ad7c00767ed697303366d13329b505d18b2bd43cd8fe7c444a47c9", - "contents_checksum": "09ea41e8048288c50739ba6414b50ac43e68e889f124603701885cdb40b9d9c6", - "size": 94857057, - "source": "components/google-cloud-sdk-kubectl-linux-x86_64-20241108162203.tar.gz", + "checksum": "fa314430af9fe625599400a61d2b67bd09db21e0ce0aad20aa786b80ca3d1061", + "contents_checksum": "88b9a14ff7dce3daa2c2200eef642d50083a3e3c54033f31046ba7179c823753", + "size": 111640446, + "source": "components/google-cloud-sdk-kubectl-linux-x86_64-20241213184646.tar.gz", "type": "tar" }, "dependencies": [ @@ -5615,8 +5615,8 @@ }, "platform_required": true, "version": { - "build_number": 20241108162203, - "version_string": "1.30.6" + "build_number": 20241213184646, + "version_string": "1.30.8" } }, { @@ -5825,10 +5825,10 @@ }, { "data": { - "checksum": "ecc830e2feafefd23f1e6ec2bc9811cdff8c3b6f5c5bc45588bd01ac704c8e55", - "contents_checksum": "32bd7f787304721c8c3ea7007449bba755d3338fef30679a776cf9fb4a0988c7", - "size": 91961406, - "source": "components/google-cloud-sdk-kubectl-windows-x86-20241108162203.tar.gz", + "checksum": "0ba43f130a92cca021b893291d2530de0bd0f144d914b0aa32e822b0cd2c22b2", + "contents_checksum": "0176b12ef9f7d4b16cde5a5e3067b354895ce0f0dec2308b8bc69cb979af7a31", + "size": 108281572, + "source": "components/google-cloud-sdk-kubectl-windows-x86-20241213184646.tar.gz", "type": "tar" }, "dependencies": [ @@ -5856,16 +5856,16 @@ }, "platform_required": true, "version": { - "build_number": 20241108162203, - "version_string": "1.30.6" + "build_number": 20241213184646, + "version_string": "1.30.8" } }, { "data": { - "checksum": "e5d2c9c4d9cefd9ff146701dae6b0020f96573f9b6b8477a2977a9353e8a892d", - "contents_checksum": "1db1baaa55bd38e0c4c80a7a6cdf7c2d289445297550fefbb4c093ac28ff92e7", - "size": 97371137, - "source": "components/google-cloud-sdk-kubectl-windows-x86_64-20241108162203.tar.gz", + "checksum": "c153e290cb24b5b2a3a10579c20082a0d8f0c336127b49143e6f33f9764b6e50", + "contents_checksum": "9a7e7b4c1c9f60139e89dcce9cf327dbad09f5d77e04e4cdae6622e211fadb19", + "size": 114615937, + "source": "components/google-cloud-sdk-kubectl-windows-x86_64-20241213184646.tar.gz", "type": "tar" }, "dependencies": [ @@ -5893,8 +5893,8 @@ }, "platform_required": true, "version": { - "build_number": 20241108162203, - "version_string": "1.30.6" + "build_number": 20241213184646, + "version_string": "1.30.8" } }, { @@ -6439,10 +6439,10 @@ }, { "data": { - "checksum": "a90c53d83dfe10216d0aaa6ba234d028eee0fa6959ef8e0fb4c432b358b52ef3", - "contents_checksum": "c37e9989bc839d2ca0714d1c78a19832f22b57c999f4c9afcc08a52cb472e833", - "size": 401984160, - "source": "components/google-cloud-sdk-managed-flink-client-20240913204132.tar.gz", + "checksum": "0c7d88c9fa9842b7f4cec0b040a7a17abeafb45821dffa99bbf2d6b93170a9c6", + "contents_checksum": "f2a2859d238b3ea7ed9656a063c598e3b5d00c87e996c92a6bdd9d8728828d5c", + "size": 401980356, + "source": "components/google-cloud-sdk-managed-flink-client-20241115154308.tar.gz", "type": "tar" }, "dependencies": [ @@ -6460,8 +6460,8 @@ "platform": {}, "platform_required": false, "version": { - "build_number": 20240913204132, - "version_string": "0.5.1" + "build_number": 20241115154308, + "version_string": "0.5.2" } }, { @@ -6694,15 +6694,15 @@ "platform_required": false, "version": { "build_number": 0, - "version_string": "1.19.1-rc.1" + "version_string": "1.20.0-rc.3" } }, { "data": { - "checksum": "53b861f3a4717905e580449fac5610a44d1880244d35d9d64c76c62157b64dd8", - "contents_checksum": "ad7d6def6c581a20a7a3de0cc8f15a85f487a415b091017443537ecc4e0a9ba2", - "size": 32861659, - "source": "components/google-cloud-sdk-nomos-darwin-x86_64-20241004144944.tar.gz", + "checksum": "374e7fc0831398628db21ad86338f58be2ea62127e282500d36f71b8d4a14f4f", + "contents_checksum": "ec9657e47c9b39a720226f4fbe5f6e1d4297d5393db978bcfa54d7ed9285bf94", + "size": 32861785, + "source": "components/google-cloud-sdk-nomos-darwin-x86_64-20241206142025.tar.gz", "type": "tar" }, "dependencies": [ @@ -6727,16 +6727,16 @@ }, "platform_required": false, "version": { - "build_number": 20241004144944, - "version_string": "1.19.1-rc.1" + "build_number": 20241206142025, + "version_string": "1.20.0-rc.3" } }, { "data": { - "checksum": "8b511b85a519193d9856468d31794487b7b06479262b9166502d828a3fb19a8d", - "contents_checksum": "9c654b572e5adc4393b794ac195fb5bbb56ca0306f03a81df954bbc2800bb637", - "size": 32743340, - "source": "components/google-cloud-sdk-nomos-linux-x86_64-20241004144944.tar.gz", + "checksum": "1be9382610b5856adc9e72bb796c798aaaa575ae05fc21b4f7e2579bdca2f160", + "contents_checksum": "a0343ccfb8a008716b29239095460861d958a1caea4167cbfe60bdfd076343cb", + "size": 32742313, + "source": "components/google-cloud-sdk-nomos-linux-x86_64-20241206142025.tar.gz", "type": "tar" }, "dependencies": [ @@ -6761,8 +6761,8 @@ }, "platform_required": false, "version": { - "build_number": 20241004144944, - "version_string": "1.19.1-rc.1" + "build_number": 20241206142025, + "version_string": "1.20.0-rc.3" } }, { @@ -7051,10 +7051,37 @@ }, { "data": { - "checksum": "7935642d9cb599d937055b5595beb64dbebbfc870d6105b07ef434124a0c4b24", - "contents_checksum": "1c67165a11d2334220d6c4d8914a27935e9c76e8d078c697a22f43824cf34a74", - "size": 65172925, - "source": "components/google-cloud-sdk-pubsub-emulator-20241025173437.tar.gz", + "checksum": "65f70d7b477fbcb5698489f18d024153ab713153e100e8b0fe93de974887a2a8", + "contents_checksum": "586d679aea5588b95fa5aa396db966d52493410c77816d6b65b06df9306bddb3", + "size": 823, + "source": "components/google-cloud-sdk-preview-20241115154308.tar.gz", + "type": "tar" + }, + "dependencies": [ + "core" + ], + "details": { + "description": "Preview version of gcloud commands.", + "display_name": "gcloud Preview Commands" + }, + "gdu_only": false, + "id": "preview", + "is_configuration": false, + "is_hidden": true, + "is_required": false, + "platform": {}, + "platform_required": false, + "version": { + "build_number": 20241115154308, + "version_string": "" + } + }, + { + "data": { + "checksum": "299d93a4fe2bd9cdeb82029258ce604e7c7f035f056056b39f8bb5ca6e2fb06a", + "contents_checksum": "4a09d1108277089f401bf5b4ddbf571ef7b9fdcc580a91699384aafe8f45fff0", + "size": 65223749, + "source": "components/google-cloud-sdk-pubsub-emulator-20241206142025.tar.gz", "type": "tar" }, "dependencies": [ @@ -7072,8 +7099,8 @@ "platform": {}, "platform_required": false, "version": { - "build_number": 20241025173437, - "version_string": "0.8.16" + "build_number": 20241206142025, + "version_string": "0.8.17" } }, { @@ -7608,10 +7635,10 @@ }, { "data": { - "checksum": "f329d9e413a08f9f3f011007005a29b3d21bda62d12c28c37d739927773c8fff", - "contents_checksum": "7f4459b240e786c0a508116ba84d1ce493bef0375ab8170c1e4fb9ed89d983f5", - "size": 58470894, - "source": "components/google-cloud-sdk-tests-20241108162203.tar.gz", + "checksum": "b98ec483f92863f4f60f0fd5c11fe70b48579f2574066d207f9c2dcfa1f20301", + "contents_checksum": "242017da96a3653167dcf7f85f358ccfe686dc691f2548fe964666fcb76f3784", + "size": 58792881, + "source": "components/google-cloud-sdk-tests-20250110133808.tar.gz", "type": "tar" }, "dependencies": [ @@ -7629,8 +7656,8 @@ "platform": {}, "platform_required": false, "version": { - "build_number": 20241108162203, - "version_string": "2024.11.08" + "build_number": 20250110133808, + "version_string": "2025.01.10" } } ], @@ -7649,11 +7676,11 @@ ], "post_processing_command": "components post-process", "release_notes_url": "RELEASE_NOTES", - "revision": 20241108162203, + "revision": 20250110133808, "schema_version": { "no_update": false, "url": "https://dl.google.com/dl/cloudsdk/channels/rapid/google-cloud-sdk.tar.gz", "version": 3 }, - "version": "501.0.0" + "version": "506.0.0" } diff --git a/pkgs/tools/admin/google-cloud-sdk/data.nix b/pkgs/tools/admin/google-cloud-sdk/data.nix index 7060d52e3bb9..709a9a6d8353 100644 --- a/pkgs/tools/admin/google-cloud-sdk/data.nix +++ b/pkgs/tools/admin/google-cloud-sdk/data.nix @@ -1,27 +1,32 @@ # DO NOT EDIT! This file is generated automatically by update.sh { }: { - version = "501.0.0"; + version = "506.0.0"; googleCloudSdkPkgs = { - x86_64-linux = { - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-501.0.0-linux-x86_64.tar.gz"; - sha256 = "1naswkfjjmmhb6n3zsma246pang3cnadwqgi683fimznmcc228sa"; - }; - x86_64-darwin = { - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-501.0.0-darwin-x86_64.tar.gz"; - sha256 = "1k5is68s6y6bxmq8mhdsd2pfqw0rx9maakqis7wxnzvfpwdmamqc"; - }; - aarch64-linux = { - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-501.0.0-linux-arm.tar.gz"; - sha256 = "1926lc0wbf06qwm0936jj3l98j82d6llljwsly99yrqwyfibi0h0"; - }; - aarch64-darwin = { - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-501.0.0-darwin-arm.tar.gz"; - sha256 = "19zjb4l067q81jg4djv4x1l95scdbk4kp3bj3dxm1rxaz3ik0jcl"; - }; - i686-linux = { - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-501.0.0-linux-x86.tar.gz"; - sha256 = "03vggxqfml0hl7jyjcmp51c5vw88d5zrsc18782rb533dd586g0n"; - }; + x86_64-linux = + { + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-506.0.0-linux-x86_64.tar.gz"; + sha256 = "0mc8mbqgg3mrid7xvyhhlcmwpi35d887fad3avbbffd4xf9l6spz"; + }; + x86_64-darwin = + { + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-506.0.0-darwin-x86_64.tar.gz"; + sha256 = "1mvhynl775jv1x59b60ka1bz8jnb3cr96mck678xc03wr8vqb1ds"; + }; + aarch64-linux = + { + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-506.0.0-linux-arm.tar.gz"; + sha256 = "16yg58ijb89hfn5sg7bdayh3dj9xcvv318r9bil3qy2g1h3m8373"; + }; + aarch64-darwin = + { + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-506.0.0-darwin-arm.tar.gz"; + sha256 = "0hpv0z4hg1rbgac8vpayxfgl2xxlp63yyk78b6qjfnwcnpv0v98m"; + }; + i686-linux = + { + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-506.0.0-linux-x86.tar.gz"; + sha256 = "1bbjvcg2smnh19985g9zc8cjgm6dnkpg5wvnspz7hvjdr1c5qqc8"; + }; }; } From 9590805ff652428f1c168ae33addb6e49b7279f4 Mon Sep 17 00:00:00 2001 From: Marcus Ramberg Date: Sun, 19 Jan 2025 20:50:03 +0100 Subject: [PATCH 21/57] google-cloud-sdk: remove obsolete patch after gsutils bump --- pkgs/tools/admin/google-cloud-sdk/default.nix | 2 -- .../gsutil-revert-version-constraint.patch | 21 ------------------- 2 files changed, 23 deletions(-) delete mode 100644 pkgs/tools/admin/google-cloud-sdk/gsutil-revert-version-constraint.patch diff --git a/pkgs/tools/admin/google-cloud-sdk/default.nix b/pkgs/tools/admin/google-cloud-sdk/default.nix index 8c4c33f2d686..8c2c62c12862 100644 --- a/pkgs/tools/admin/google-cloud-sdk/default.nix +++ b/pkgs/tools/admin/google-cloud-sdk/default.nix @@ -63,8 +63,6 @@ stdenv.mkDerivation rec { ./gcloud-path.patch # Disable checking for updates for the package ./gsutil-disable-updates.patch - # Revert patch including extended Python version constraint - ./gsutil-revert-version-constraint.patch ]; installPhase = '' diff --git a/pkgs/tools/admin/google-cloud-sdk/gsutil-revert-version-constraint.patch b/pkgs/tools/admin/google-cloud-sdk/gsutil-revert-version-constraint.patch deleted file mode 100644 index 616e904cae4f..000000000000 --- a/pkgs/tools/admin/google-cloud-sdk/gsutil-revert-version-constraint.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff --git a/platform/gsutil/gsutil.py b/platform/gsutil/gsutil.py -index 30b8a5ac..a02f0ba5 100755 ---- a/platform/gsutil/gsutil.py -+++ b/platform/gsutil/gsutil.py -@@ -27,14 +27,8 @@ import warnings - # TODO: gsutil-beta: Distribute a pylint rc file. - - ver = sys.version_info --if (ver.major == 2 and ver.minor < 7) or (ver.major == 3 and (ver.minor < 5 or ver.minor > 11)): -- sys.exit( -- "Error: gsutil requires Python version 2.7 or 3.5-3.11, but a different version is installed.\n" -- "You are currently running Python {}.{}\n" -- "Follow the steps below to resolve this issue:\n" -- "\t1. Switch to Python 3.5-3.11 using your Python version manager or install an appropriate version.\n" -- "\t2. If you are unsure how to manage Python versions, visit [https://cloud.google.com/storage/docs/gsutil_install#specifications] for detailed instructions.".format(ver.major, ver.minor) -- ) -+if (ver.major == 2 and ver.minor < 7) or (ver.major == 3 and ver.minor < 5): -+ sys.exit('gsutil requires python 2.7 or 3.5+.') - - # setup a string to load the correct httplib2 - if sys.version_info.major == 2: From 610753a12377a2c4b9f3793b69b77e7f136ed194 Mon Sep 17 00:00:00 2001 From: Marcus Ramberg Date: Sun, 19 Jan 2025 21:08:22 +0100 Subject: [PATCH 22/57] google-cloud-sdk: update update.sh to generate nixfmt valid data.nix --- pkgs/tools/admin/google-cloud-sdk/data.nix | 45 +++++++++------------ pkgs/tools/admin/google-cloud-sdk/update.sh | 18 ++++----- 2 files changed, 29 insertions(+), 34 deletions(-) diff --git a/pkgs/tools/admin/google-cloud-sdk/data.nix b/pkgs/tools/admin/google-cloud-sdk/data.nix index 709a9a6d8353..6f9630baec84 100644 --- a/pkgs/tools/admin/google-cloud-sdk/data.nix +++ b/pkgs/tools/admin/google-cloud-sdk/data.nix @@ -3,30 +3,25 @@ { version = "506.0.0"; googleCloudSdkPkgs = { - x86_64-linux = - { - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-506.0.0-linux-x86_64.tar.gz"; - sha256 = "0mc8mbqgg3mrid7xvyhhlcmwpi35d887fad3avbbffd4xf9l6spz"; - }; - x86_64-darwin = - { - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-506.0.0-darwin-x86_64.tar.gz"; - sha256 = "1mvhynl775jv1x59b60ka1bz8jnb3cr96mck678xc03wr8vqb1ds"; - }; - aarch64-linux = - { - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-506.0.0-linux-arm.tar.gz"; - sha256 = "16yg58ijb89hfn5sg7bdayh3dj9xcvv318r9bil3qy2g1h3m8373"; - }; - aarch64-darwin = - { - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-506.0.0-darwin-arm.tar.gz"; - sha256 = "0hpv0z4hg1rbgac8vpayxfgl2xxlp63yyk78b6qjfnwcnpv0v98m"; - }; - i686-linux = - { - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-506.0.0-linux-x86.tar.gz"; - sha256 = "1bbjvcg2smnh19985g9zc8cjgm6dnkpg5wvnspz7hvjdr1c5qqc8"; - }; + x86_64-linux = { + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-506.0.0-linux-x86_64.tar.gz"; + sha256 = "0mc8mbqgg3mrid7xvyhhlcmwpi35d887fad3avbbffd4xf9l6spz"; + }; + x86_64-darwin = { + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-506.0.0-darwin-x86_64.tar.gz"; + sha256 = "1mvhynl775jv1x59b60ka1bz8jnb3cr96mck678xc03wr8vqb1ds"; + }; + aarch64-linux = { + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-506.0.0-linux-arm.tar.gz"; + sha256 = "16yg58ijb89hfn5sg7bdayh3dj9xcvv318r9bil3qy2g1h3m8373"; + }; + aarch64-darwin = { + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-506.0.0-darwin-arm.tar.gz"; + sha256 = "0hpv0z4hg1rbgac8vpayxfgl2xxlp63yyk78b6qjfnwcnpv0v98m"; + }; + i686-linux = { + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-506.0.0-linux-x86.tar.gz"; + sha256 = "1bbjvcg2smnh19985g9zc8cjgm6dnkpg5wvnspz7hvjdr1c5qqc8"; + }; }; } diff --git a/pkgs/tools/admin/google-cloud-sdk/update.sh b/pkgs/tools/admin/google-cloud-sdk/update.sh index 5b400dba3348..e80974d3bf4a 100755 --- a/pkgs/tools/admin/google-cloud-sdk/update.sh +++ b/pkgs/tools/admin/google-cloud-sdk/update.sh @@ -12,10 +12,10 @@ function genMainSrc() { local url="${BASE_URL}-${VERSION}-${1}-${2}.tar.gz" local sha256 sha256=$(nix-prefetch-url "$url") - echo " {" - echo " url = \"${url}\";" - echo " sha256 = \"${sha256}\";" - echo " };" + echo " {" + echo " url = \"${url}\";" + echo " sha256 = \"${sha256}\";" + echo " };" } { @@ -27,19 +27,19 @@ function genMainSrc() { googleCloudSdkPkgs = { EOF - echo " x86_64-linux =" + echo -n " x86_64-linux =" genMainSrc "linux" "x86_64" - echo " x86_64-darwin =" + echo -n " x86_64-darwin =" genMainSrc "darwin" "x86_64" - echo " aarch64-linux =" + echo -n " aarch64-linux =" genMainSrc "linux" "arm" - echo " aarch64-darwin =" + echo -n " aarch64-darwin =" genMainSrc "darwin" "arm" - echo " i686-linux =" + echo -n " i686-linux =" genMainSrc "linux" "x86" echo " };" From 23dd5e854f126927e88d3b8570a990e00b8f20e3 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 19 Jan 2025 21:20:38 +0000 Subject: [PATCH 23/57] mpvScripts.mpv-playlistmanager: 0-unstable-2024-11-19 -> 0-unstable-2025-01-08 --- pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix b/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix index 934df9ab21c8..e2488546cbc0 100644 --- a/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix +++ b/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix @@ -8,13 +8,13 @@ buildLua rec { pname = "mpv-playlistmanager"; - version = "0-unstable-2024-11-19"; + version = "0-unstable-2025-01-08"; src = fetchFromGitHub { owner = "jonniek"; repo = "mpv-playlistmanager"; - rev = "c5526169ada174b0a45be55ee020a52126b54cc5"; - hash = "sha256-15559OfwwwxR5CpElwzdbhgodvl5gCM1AI4gTk/9wg4="; + rev = "16e18949e3d604c2ffe43e95391f420227881139"; + hash = "sha256-2fQwc+IqvPfivcJRIlUQvCGWOmXjOGqyw+YAwyDIQwk="; }; passthru.updateScript = unstableGitUpdater { }; From c1e831fbb117cfa736f8387db2b44af9808b9c1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= Date: Sun, 19 Jan 2025 22:55:37 +0000 Subject: [PATCH 24/57] monero-cli, monero-gui: pin boost 1.86 --- pkgs/applications/blockchains/monero-cli/default.nix | 4 ++-- pkgs/applications/blockchains/monero-gui/default.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/blockchains/monero-cli/default.nix b/pkgs/applications/blockchains/monero-cli/default.nix index bf0582183356..0b4f90b2313f 100644 --- a/pkgs/applications/blockchains/monero-cli/default.nix +++ b/pkgs/applications/blockchains/monero-cli/default.nix @@ -5,7 +5,7 @@ fetchpatch2, cmake, pkg-config, - boost, + boost186, libsodium, miniupnpc, openssl, @@ -78,7 +78,7 @@ stdenv.mkDerivation rec { buildInputs = [ - boost + boost186 # uses boost/asio/io_service.hpp libsodium miniupnpc openssl diff --git a/pkgs/applications/blockchains/monero-gui/default.nix b/pkgs/applications/blockchains/monero-gui/default.nix index f1173d97f8d9..57c949f451f3 100644 --- a/pkgs/applications/blockchains/monero-gui/default.nix +++ b/pkgs/applications/blockchains/monero-gui/default.nix @@ -2,7 +2,7 @@ lib, fetchFromGitHub, makeDesktopItem, - boost, + boost186, cmake, libgcrypt, libgpg-error, @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { buildInputs = [ - boost + boost186 # uses boost/asio/io_service.hpp libgcrypt libgpg-error libsodium From aa07c2b9135ea32aaedf472feebb24e0f7b77c16 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sun, 19 Jan 2025 23:59:35 +0100 Subject: [PATCH 25/57] systemfd: 0.4.4 -> 0.4.6 --- pkgs/by-name/sy/systemfd/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sy/systemfd/package.nix b/pkgs/by-name/sy/systemfd/package.nix index 6c4e59cca313..4751cf78b6b5 100644 --- a/pkgs/by-name/sy/systemfd/package.nix +++ b/pkgs/by-name/sy/systemfd/package.nix @@ -5,7 +5,7 @@ }: let - version = "0.4.4"; + version = "0.4.6"; in rustPlatform.buildRustPackage { @@ -17,10 +17,10 @@ rustPlatform.buildRustPackage { repo = "systemfd"; owner = "mitsuhiko"; rev = version; - sha256 = "sha256-U+pBKuoMhyIOhLl1nzmxk5yFt9nOq/KZ6rx9JhalLmM="; + sha256 = "sha256-OUsQBHymoiLClRS45KE4zsyOh/Df8psP0t8aIkKNZsM="; }; - cargoHash = "sha256-k8FgdNVjFYO/lflVzRQUwHvdy4+eCNTnTYImdfy1GaQ="; + cargoHash = "sha256-4lgl/oZwxRLO88VHaHlu5/gRR9iOCIkYzRYaw5xWKGg="; meta = { description = "Convenient helper for passing sockets into another process"; From 543065d5291a581a7d57a430142c6d49467ee52b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 19 Jan 2025 23:17:15 +0000 Subject: [PATCH 26/57] cnspec: 11.37.0 -> 11.37.1 --- pkgs/tools/security/cnspec/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/cnspec/default.nix b/pkgs/tools/security/cnspec/default.nix index 6929501267f0..35becf6a2093 100644 --- a/pkgs/tools/security/cnspec/default.nix +++ b/pkgs/tools/security/cnspec/default.nix @@ -6,18 +6,18 @@ buildGoModule rec { pname = "cnspec"; - version = "11.37.0"; + version = "11.37.1"; src = fetchFromGitHub { owner = "mondoohq"; repo = "cnspec"; tag = "v${version}"; - hash = "sha256-hecPYaQqDBieqNE+d9mMNGvFOwXLLC64aL0a7c2aCrE="; + hash = "sha256-NZbNkqYAjtfF+XP1EcblsT8cLqJEDovQTOwc4JQUNQc="; }; proxyVendor = true; - vendorHash = "sha256-aYEXtNRHU/QpDhlJSfKGmOhSXzEA70+CtPb/ICv+Fhw="; + vendorHash = "sha256-N99aOt7SsyAUWnvfgsweLABmLX7obnepEvHSTKa/2hg="; subPackages = [ "apps/cnspec" ]; From 115100541a0946a920afa05dfa152d0fd31aca3c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 19 Jan 2025 23:53:55 +0000 Subject: [PATCH 27/57] terragrunt: 0.71.2 -> 0.72.2 --- pkgs/by-name/te/terragrunt/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/te/terragrunt/package.nix b/pkgs/by-name/te/terragrunt/package.nix index d621749f3ac6..0ecfd9098802 100644 --- a/pkgs/by-name/te/terragrunt/package.nix +++ b/pkgs/by-name/te/terragrunt/package.nix @@ -7,13 +7,13 @@ buildGoModule rec { pname = "terragrunt"; - version = "0.71.2"; + version = "0.72.2"; src = fetchFromGitHub { owner = "gruntwork-io"; repo = pname; tag = "v${version}"; - hash = "sha256-R05Tv6crYMXnmUzBDaTAR1LNpd8CV0RK54U9nUN5q+4="; + hash = "sha256-SX7y4YLKehyz0vutNDWCBF9w20xW1EuDBaAkqENNTJ0="; }; nativeBuildInputs = [ go-mockery ]; @@ -22,7 +22,7 @@ buildGoModule rec { make generate-mocks ''; - vendorHash = "sha256-G7J0J5Gghl+yKaCrIbgen45xKUl1ALb0CcIV9HfBdZ8="; + vendorHash = "sha256-a+nsbgAUgC7d8Nqexzubbx9CqK3o+TJbO+FJH3Fr2Js="; doCheck = false; From d3c3aee40f46fea0e430423931ae8ecb6654131c Mon Sep 17 00:00:00 2001 From: Morgan Helton Date: Sun, 19 Jan 2025 18:12:03 -0600 Subject: [PATCH 28/57] chiaki-ng: 1.9.4 -> 1.9.5 --- pkgs/games/chiaki-ng/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/games/chiaki-ng/default.nix b/pkgs/games/chiaki-ng/default.nix index edd5f112420d..8745974e2e9d 100644 --- a/pkgs/games/chiaki-ng/default.nix +++ b/pkgs/games/chiaki-ng/default.nix @@ -36,13 +36,13 @@ stdenv.mkDerivation rec { pname = "chiaki-ng"; - version = "1.9.4"; + version = "1.9.5"; src = fetchFromGitHub { owner = "streetpea"; repo = "chiaki-ng"; rev = "v${version}"; - hash = "sha256-IkmNl2zoC/1ZF3QuTFtfmqD+oq4HJfM5uRdhgQSNkcI="; + hash = "sha256-rq/8PUIqsN/1Dq9rpGFUslFlZdt/RCHiDUGszKKvGFU="; fetchSubmodules = true; }; From 94adb9efcd8705577331f0021c501db67ae091b7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 20 Jan 2025 00:36:39 +0000 Subject: [PATCH 29/57] dum: 0.1.19 -> 0.1.20 --- pkgs/by-name/du/dum/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/du/dum/package.nix b/pkgs/by-name/du/dum/package.nix index d369fd571dd2..bac564b9e068 100644 --- a/pkgs/by-name/du/dum/package.nix +++ b/pkgs/by-name/du/dum/package.nix @@ -6,16 +6,16 @@ rustPlatform.buildRustPackage rec { pname = "dum"; - version = "0.1.19"; + version = "0.1.20"; src = fetchFromGitHub { owner = "egoist"; repo = pname; rev = "v${version}"; - sha256 = "0rnm59zhpaa8nbbh6rh53svnlb484q1k6s4wc4w9516b18xhmkca"; + sha256 = "sha256-rkdQb4TI7lfWE4REJYsIJwMcmM/78jjgQrd0ZvKJxk8="; }; - cargoHash = "sha256-aMx4xfWYiiz5TY/CVCogZ3WNR6md77jb8RKhhVwqeto="; + cargoHash = "sha256-rcb2Z+wl9neAGyH1DFrjboSCkD9JIKGwjJqAvU9Fitw="; meta = with lib; { description = "Npm scripts runner written in Rust"; From 095e7ca5815067d37530ca3bbf1a774fb99c137c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 20 Jan 2025 01:19:24 +0000 Subject: [PATCH 30/57] pyenv: 2.5.0 -> 2.5.1 --- pkgs/by-name/py/pyenv/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/py/pyenv/package.nix b/pkgs/by-name/py/pyenv/package.nix index 49f2c7597698..a31550626e4d 100644 --- a/pkgs/by-name/py/pyenv/package.nix +++ b/pkgs/by-name/py/pyenv/package.nix @@ -6,13 +6,13 @@ stdenv.mkDerivation rec { pname = "pyenv"; - version = "2.5.0"; + version = "2.5.1"; src = fetchFromGitHub { owner = "pyenv"; repo = "pyenv"; tag = "v${version}"; - hash = "sha256-2khf1yGq+SXyOC7NAcjfzvscGg9Kay/8fMM7b0WMh8A="; + hash = "sha256-i4CQTaz4VDYxUOGcmyIQN+n9yd1ptQ+rqiES/JR189A="; }; nativeBuildInputs = [ From 24d32f996c00317730e92f8fccdc6c070018889a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 20 Jan 2025 02:56:17 +0000 Subject: [PATCH 31/57] sq: 0.48.4 -> 0.48.5 --- pkgs/by-name/sq/sq/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sq/sq/package.nix b/pkgs/by-name/sq/sq/package.nix index 58fd3a9dfa25..6b18c426d126 100644 --- a/pkgs/by-name/sq/sq/package.nix +++ b/pkgs/by-name/sq/sq/package.nix @@ -9,16 +9,16 @@ buildGoModule rec { pname = "sq"; - version = "0.48.4"; + version = "0.48.5"; src = fetchFromGitHub { owner = "neilotoole"; repo = pname; rev = "v${version}"; - hash = "sha256-hg9BKeKly4uK3ib6CGETY/uZHXpxHqorU+YOjaUEiHE="; + hash = "sha256-y7+UfwTbL0KTQgz4JX/q6QQqL0n8SO1qgKTrK9AFhO4="; }; - vendorHash = "sha256-ofgEQ8vVfP/s9wjSgQKbmSx9Aeq9kv4gkUXkSHC4OOE="; + vendorHash = "sha256-MejUKPIhvjgV2+h81DJUSdBEMD0rvgDbTAvv3E2uTOk="; proxyVendor = true; From f152a652dd03830b568ba6e6dc5c3208a6317a77 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 20 Jan 2025 03:37:02 +0000 Subject: [PATCH 32/57] terraform-providers.grafana: 3.15.3 -> 3.16.0 --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 0a347e0492c4..ea1f5a7e9628 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -534,13 +534,13 @@ "vendorHash": "sha256-fqVBnAivVekV+4tpkl+E6eNA3wi8mhLevJRCs3W7L2g=" }, "grafana": { - "hash": "sha256-jdIl5rfpW7ubBj/7IHj3x/CCfC4eUpo5/b3N+U3mHNo=", + "hash": "sha256-IGMq770Fshwr4pmGMzrksquxe5eN2WtUkCQAnAXP8uw=", "homepage": "https://registry.terraform.io/providers/grafana/grafana", "owner": "grafana", "repo": "terraform-provider-grafana", - "rev": "v3.15.3", + "rev": "v3.16.0", "spdx": "MPL-2.0", - "vendorHash": "sha256-nNsukBVotdi1KtFE05Eutr+ejH7504qhxjAdE6ggEhc=" + "vendorHash": "sha256-PEm/5AMATheF/yxEMVlEC/7hsRsMtMcp5wHpqrFBlFA=" }, "gridscale": { "hash": "sha256-J4ZLexpjYXxOTaqih0+Nucyf2soYXxGiB38xAeXUJKs=", From 586e657c4a69362e206c3d405377afb6b3aa9bc9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 20 Jan 2025 03:47:00 +0000 Subject: [PATCH 33/57] pocketbase: 0.24.1 -> 0.24.4 --- pkgs/by-name/po/pocketbase/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/po/pocketbase/package.nix b/pkgs/by-name/po/pocketbase/package.nix index 618adb2ab8d0..7852cbef4d5c 100644 --- a/pkgs/by-name/po/pocketbase/package.nix +++ b/pkgs/by-name/po/pocketbase/package.nix @@ -7,16 +7,16 @@ buildGoModule rec { pname = "pocketbase"; - version = "0.24.1"; + version = "0.24.4"; src = fetchFromGitHub { owner = "pocketbase"; repo = "pocketbase"; rev = "v${version}"; - hash = "sha256-SbcCa4ckRso/NzStIiFHmBWKdjbg01L/WMDgfduqnwA="; + hash = "sha256-wUHPp48kI+9ij/eVkgWKTxwGNOhrUBZXGhKd3z6YHZU="; }; - vendorHash = "sha256-YgQwi6eqW1mwUwfQ58Y0PHggGiglMmjBwuDHckP9X9o="; + vendorHash = "sha256-Elli5NSddF2tgKiJg8CH8KtR3mP+OfaIMRc15oKYNh8="; # This is the released subpackage from upstream repo subPackages = [ "examples/base" ]; From e57f79900d837dd5c147d77c1b8dc72e5374ae26 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 20 Jan 2025 04:33:12 +0000 Subject: [PATCH 34/57] flameshot: 12.1.0-unstable-2024-12-03 -> 12.1.0-unstable-2025-01-19 --- pkgs/by-name/fl/flameshot/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/fl/flameshot/package.nix b/pkgs/by-name/fl/flameshot/package.nix index 981fa8783408..7ab9796afa4e 100644 --- a/pkgs/by-name/fl/flameshot/package.nix +++ b/pkgs/by-name/fl/flameshot/package.nix @@ -25,13 +25,13 @@ in stdenv'.mkDerivation { pname = "flameshot"; # wlr screenshotting is currently only available on unstable version (>12.1.0) - version = "12.1.0-unstable-2024-12-03"; + version = "12.1.0-unstable-2025-01-19"; src = fetchFromGitHub { owner = "flameshot-org"; repo = "flameshot"; - rev = "3fafcf4aa9ae3d620ff691cba3a1a2195d592914"; - hash = "sha256-lt7RIe1KFOPnBpVZf7oZMOQOyOAf65ByxaHCNDqbTpk="; + rev = "10d12e0b54d59de2ac2567c540a93113672cd884"; + hash = "sha256-3ujqwiQrv/H1HzkpD/Q+hoqyrUdO65gA0kKqtRV0vmw="; }; patches = [ From 360016ef3f10021d63b7108307e62da896d43ce3 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 20 Jan 2025 04:33:47 +0000 Subject: [PATCH 35/57] terraform-providers.artifactory: 12.7.1 -> 12.8.1 --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 0a347e0492c4..f8bb5dae4ca4 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -81,13 +81,13 @@ "vendorHash": "sha256-0UM4I/oxIsWIP1G93KJsJxYofXrO4Yy86PEk0FnB1DE=" }, "artifactory": { - "hash": "sha256-xVblndBzxCtfM6yIKGYt08owo9z9ZdccbvdAXbB+mf0=", + "hash": "sha256-v0tHvbYzD1xS5/cSD2409jlAOfbgzG3kOrLjWrXF4ok=", "homepage": "https://registry.terraform.io/providers/jfrog/artifactory", "owner": "jfrog", "repo": "terraform-provider-artifactory", - "rev": "v12.7.1", + "rev": "v12.8.1", "spdx": "Apache-2.0", - "vendorHash": "sha256-J+JBq8QybqIQp2j5EtZhpdGvDd84lwmzezcWl5pXxRs=" + "vendorHash": "sha256-gF8aLRn2OCOzGRS6jb+K6M1cSbXPcQoVrIqrrRc7sMg=" }, "auth0": { "hash": "sha256-BBMWsBMuR361tDVGMtQB97Fd7PsuZYK6qBwacG569vA=", From 0ca75b9e438455ebfccdda714ce20a9d715deb11 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 20 Jan 2025 05:22:47 +0000 Subject: [PATCH 36/57] terraform-providers.huaweicloud: 1.72.0 -> 1.72.1 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 0a347e0492c4..7e6711dcc02c 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -615,11 +615,11 @@ "vendorHash": "sha256-GoOKTT+EOhaPhpbgSW3SycYsE8LEQP0v4eQfiTEnPy8=" }, "huaweicloud": { - "hash": "sha256-cfyd8vbzRPaGqgo3iPqjzoeb3h2hWvLgFP+Q41kDn/c=", + "hash": "sha256-DAsO/XJgE0W90bDLJWc5GuKRvRJ6JWgkPPZ7E20at5Y=", "homepage": "https://registry.terraform.io/providers/huaweicloud/huaweicloud", "owner": "huaweicloud", "repo": "terraform-provider-huaweicloud", - "rev": "v1.72.0", + "rev": "v1.72.1", "spdx": "MPL-2.0", "vendorHash": null }, From 5b7855d61565abb15b230848086085b562c62011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 19 Jan 2025 21:39:44 -0800 Subject: [PATCH 37/57] python313Packages.hahomematic: 2025.1.7 -> 2025.1.10 Diff: https://github.com/SukramJ/hahomematic/compare/refs/tags/2025.1.7...2025.1.10 Changelog: https://github.com/SukramJ/hahomematic/blob/2025.1.10/changelog.md --- pkgs/development/python-modules/hahomematic/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/hahomematic/default.nix b/pkgs/development/python-modules/hahomematic/default.nix index beaa76aa68e2..a1a6ea29c00b 100644 --- a/pkgs/development/python-modules/hahomematic/default.nix +++ b/pkgs/development/python-modules/hahomematic/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "hahomematic"; - version = "2025.1.7"; + version = "2025.1.10"; pyproject = true; disabled = pythonOlder "3.12"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "SukramJ"; repo = "hahomematic"; tag = version; - hash = "sha256-YMyqzPnHmc9iDkf9ZwVVvqlDntXHqVEUjtj0Sk7UMEg="; + hash = "sha256-4aHrQ8EgaQNNT4M8FBEHXxgU+ES3ylegYwFyz3Hf+jQ="; }; __darwinAllowLocalNetworking = true; From 0ec2df46bc4daab04b22113e9fd1b63de843ddee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 19 Jan 2025 21:39:55 -0800 Subject: [PATCH 38/57] home-assistant-custom-components.homematicip_local: 1.78.1 -> 1.79.0 Diff: https://github.com/SukramJ/custom_homematic/compare/refs/tags/1.78.1...1.79.0 Changelog: https://github.com/SukramJ/custom_homematic/blob/1.79.0/changelog.md --- .../custom-components/homematicip_local/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/home-assistant/custom-components/homematicip_local/package.nix b/pkgs/servers/home-assistant/custom-components/homematicip_local/package.nix index baf6dcec6c59..da56ac16eea4 100644 --- a/pkgs/servers/home-assistant/custom-components/homematicip_local/package.nix +++ b/pkgs/servers/home-assistant/custom-components/homematicip_local/package.nix @@ -9,13 +9,13 @@ buildHomeAssistantComponent rec { owner = "SukramJ"; domain = "homematicip_local"; - version = "1.78.1"; + version = "1.79.0"; src = fetchFromGitHub { owner = "SukramJ"; repo = "custom_homematic"; tag = version; - hash = "sha256-nyeZOj7UztODz9ELGRKmtQPvmNaZ6vGqM3l1RgwAr5s="; + hash = "sha256-kVYyc1froOwqu1s/RWstJr82Ffp+wj5hx7brq8u4zdg="; }; postPatch = '' From 363470919ed424ecb193c4d87e8be54a5f7f0a3d Mon Sep 17 00:00:00 2001 From: Defelo Date: Mon, 20 Jan 2025 08:32:35 +0100 Subject: [PATCH 39/57] wofi-power-menu: 0.2.5 -> 0.2.6 --- pkgs/by-name/wo/wofi-power-menu/package.nix | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/wo/wofi-power-menu/package.nix b/pkgs/by-name/wo/wofi-power-menu/package.nix index a792ca678e4c..5f940441ed88 100644 --- a/pkgs/by-name/wo/wofi-power-menu/package.nix +++ b/pkgs/by-name/wo/wofi-power-menu/package.nix @@ -10,20 +10,16 @@ rustPlatform.buildRustPackage rec { pname = "wofi-power-menu"; - version = "0.2.5"; + version = "0.2.6"; src = fetchFromGitHub { owner = "szaffarano"; repo = "wofi-power-menu"; tag = "v${version}"; - hash = "sha256-V1aN8jkWmZz+ynVzZlDE/WYSBnt8XpPEb6NImd6OA4g="; + hash = "sha256-UDDDtI6wnx64KG+1/S6bYTc1xi1vOFuZOmRCLK2Yzew="; }; - cargoHash = "sha256-KWpPyuI963v4D5uLUBNoLWU29lM1PD46uSR1LAUI+Es="; - - postPatch = '' - sed -i 's/^version = .*/version = "${version}"/' Cargo.toml - ''; + cargoHash = "sha256-NNlUV9hMIOXxYnCx5/njqQSEE5xIkbPRhTMet4oNJt0="; nativeBuildInputs = [ makeWrapper ]; From 65779f98dcaa7053f93bec7c6be75adc0eb1b266 Mon Sep 17 00:00:00 2001 From: Defelo Date: Mon, 20 Jan 2025 08:38:59 +0100 Subject: [PATCH 40/57] wofi-power-menu: add meta.changelog --- pkgs/by-name/wo/wofi-power-menu/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/wo/wofi-power-menu/package.nix b/pkgs/by-name/wo/wofi-power-menu/package.nix index 5f940441ed88..de9ffda5a384 100644 --- a/pkgs/by-name/wo/wofi-power-menu/package.nix +++ b/pkgs/by-name/wo/wofi-power-menu/package.nix @@ -37,6 +37,7 @@ rustPlatform.buildRustPackage rec { meta = { description = "Highly configurable power menu using the wofi launcher power-menu"; homepage = "https://github.com/szaffarano/wofi-power-menu"; + changelog = "https://github.com/szaffarano/wofi-power-menu/releases/tag/v${version}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ defelo ]; mainProgram = "wofi-power-menu"; From 150f6f987e7ae15ce1514d4b41f44a27bd9e8f2f Mon Sep 17 00:00:00 2001 From: patka Date: Mon, 20 Jan 2025 08:41:47 +0100 Subject: [PATCH 41/57] rainfrog: 0.2.10 -> 0.2.11 release notes: https://github.com/achristmascarl/rainfrog/releases/tag/v0.2.11 --- pkgs/by-name/ra/rainfrog/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ra/rainfrog/package.nix b/pkgs/by-name/ra/rainfrog/package.nix index 08e9772f5aa1..b9a3177deeb1 100644 --- a/pkgs/by-name/ra/rainfrog/package.nix +++ b/pkgs/by-name/ra/rainfrog/package.nix @@ -9,7 +9,7 @@ rainfrog, }: let - version = "0.2.10"; + version = "0.2.11"; in rustPlatform.buildRustPackage { inherit version; @@ -19,10 +19,10 @@ rustPlatform.buildRustPackage { owner = "achristmascarl"; repo = "rainfrog"; tag = "v${version}"; - hash = "sha256-hIhg6OeWCp27OPHg10ifjsSvPrBHQMnn4P3CmyYmdDk="; + hash = "sha256-gtiwkgNyqq+KMATkzaLOjPB6jcjVAM2qq6zwZ1WGkPE="; }; - cargoHash = "sha256-MYqVo+7xQzF55rEqUJNcB1SAEoxowHl+vOINCyr59nA="; + cargoHash = "sha256-u0BmDtOIlYfHEAiDp+BnY1/ne3tKwmy/Cem6+5CX3GE="; buildInputs = lib.optionals stdenv.hostPlatform.isDarwin ( with darwin.apple_sdk.frameworks; From 0e8c154442d1d59dabbc729d100ca9a8d8243a7a Mon Sep 17 00:00:00 2001 From: Tom Fitzhenry Date: Mon, 20 Jan 2025 20:59:11 +1100 Subject: [PATCH 42/57] dino: remove tomfitzhenry@ as maintainer I've not been a user for a while. :/ --- .../applications/networking/instant-messengers/dino/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/dino/default.nix b/pkgs/applications/networking/instant-messengers/dino/default.nix index 147db575ae63..5b4d8de6c1bb 100644 --- a/pkgs/applications/networking/instant-messengers/dino/default.nix +++ b/pkgs/applications/networking/instant-messengers/dino/default.nix @@ -125,6 +125,6 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/dino/dino"; license = licenses.gpl3Plus; platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ qyliss tomfitzhenry ]; + maintainers = with maintainers; [ qyliss ]; }; }) From 34691a0b28eac4d160e885c8711533e18c09d87c Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Mon, 20 Jan 2025 19:26:46 +0900 Subject: [PATCH 43/57] gurk-rs: move to pkgs/by-name https://github.com/NixOS/nixpkgs/blob/5c6a9a5d8026c80f68395d6a40f9a0776300c79f/pkgs/by-name/README.md#L79-L114 --- .../gurk-rs/default.nix => by-name/gu/gurk-rs/package.nix} | 5 ++++- pkgs/top-level/all-packages.nix | 4 ---- 2 files changed, 4 insertions(+), 5 deletions(-) rename pkgs/{applications/networking/instant-messengers/gurk-rs/default.nix => by-name/gu/gurk-rs/package.nix} (95%) diff --git a/pkgs/applications/networking/instant-messengers/gurk-rs/default.nix b/pkgs/by-name/gu/gurk-rs/package.nix similarity index 95% rename from pkgs/applications/networking/instant-messengers/gurk-rs/default.nix rename to pkgs/by-name/gu/gurk-rs/package.nix index ef466182c9bd..0fda74becec4 100644 --- a/pkgs/applications/networking/instant-messengers/gurk-rs/default.nix +++ b/pkgs/by-name/gu/gurk-rs/package.nix @@ -4,7 +4,7 @@ protobuf, rustPlatform, fetchFromGitHub, - Cocoa, + darwin, pkgsBuildHost, openssl, pkg-config, @@ -13,6 +13,9 @@ gurk-rs, }: +let + inherit (darwin.apple_sdk.frameworks) Cocoa; +in rustPlatform.buildRustPackage rec { pname = "gurk-rs"; version = "0.6.0"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 80afbd9a89c4..9d59a84400be 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13455,10 +13455,6 @@ with pkgs; fftw = fftwSinglePrec; }; - gurk-rs = callPackage ../applications/networking/instant-messengers/gurk-rs { - inherit (darwin.apple_sdk.frameworks) Cocoa; - }; - puddletag = libsForQt5.callPackage ../applications/audio/puddletag { }; welle-io = qt6Packages.callPackage ../applications/radio/welle-io { }; From 5904143e8589dc6f0aad6517e0935a185eec6543 Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Mon, 20 Jan 2025 19:29:48 +0900 Subject: [PATCH 44/57] gurk-rs: 0.6.0 -> 0.6.1 Changelog: https://github.com/boxdot/gurk-rs/blob/v0.6.1/CHANGELOG.md?plain=1#L3-L8 Diff: https://github.com/boxdot/gurk-rs/compare/v0.6.0...v0.6.1 --- pkgs/by-name/gu/gurk-rs/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/gu/gurk-rs/package.nix b/pkgs/by-name/gu/gurk-rs/package.nix index 0fda74becec4..172490f3a449 100644 --- a/pkgs/by-name/gu/gurk-rs/package.nix +++ b/pkgs/by-name/gu/gurk-rs/package.nix @@ -18,13 +18,13 @@ let in rustPlatform.buildRustPackage rec { pname = "gurk-rs"; - version = "0.6.0"; + version = "0.6.1"; src = fetchFromGitHub { owner = "boxdot"; repo = "gurk-rs"; tag = "v${version}"; - hash = "sha256-FPbEtk2A7qs/85VsmfV1uPsVZ7V5WKhMKeWrzUt5L4w="; + hash = "sha256-cNKUQlCzhOgyWoitHjRoVdehj8AUEslHBCGxH9nRWF4="; }; postPatch = '' @@ -33,7 +33,7 @@ rustPlatform.buildRustPackage rec { useFetchCargoVendor = true; - cargoHash = "sha256-yLZKat6NNZkbyTpAVpOvDAbbNajh4Vaebc7fmK0I3Mc="; + cargoHash = "sha256-eh7ZD8ZX1oKiJbJcVtk6pczb6HxNM6md93P/22Qn5u0="; nativeBuildInputs = [ protobuf From a226f13211ffedd597ac8bc44766ac8f4b8af946 Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Sun, 19 Jan 2025 01:35:27 +0100 Subject: [PATCH 45/57] ci/eval: support "10.rebuild-${kernel}: 1" labels This should restore the old behavior of ofborg --- ci/eval/compare/utils.nix | 59 ++++++++++++++++++++++----------------- 1 file changed, 34 insertions(+), 25 deletions(-) diff --git a/ci/eval/compare/utils.nix b/ci/eval/compare/utils.nix index 04ac4f6e6162..8d707fbedbdd 100644 --- a/ci/eval/compare/utils.nix +++ b/ci/eval/compare/utils.nix @@ -182,36 +182,45 @@ rec { Turns { linux = 56; - darwin = 8; + darwin = 1; } into [ + "10.rebuild-darwin: 1" "10.rebuild-darwin: 1-10" "10.rebuild-linux: 11-100" ] */ - getLabels = lib.mapAttrsToList ( - kernel: rebuildCount: - let - number = - if rebuildCount == 0 then - "0" - else if rebuildCount <= 10 then - "1-10" - else if rebuildCount <= 100 then - "11-100" - else if rebuildCount <= 500 then - "101-500" - else if rebuildCount <= 1000 then - "501-1000" - else if rebuildCount <= 2500 then - "1001-2500" - else if rebuildCount <= 5000 then - "2501-5000" - else - "5001+"; - - in - "10.rebuild-${kernel}: ${number}" - ); + getLabels = + rebuildCountByKernel: + lib.concatLists ( + lib.mapAttrsToList ( + kernel: rebuildCount: + let + numbers = + if rebuildCount == 0 then + [ "0" ] + else if rebuildCount == 1 then + [ + "1" + "1-10" + ] + else if rebuildCount <= 10 then + [ "1-10" ] + else if rebuildCount <= 100 then + [ "11-100" ] + else if rebuildCount <= 500 then + [ "101-500" ] + else if rebuildCount <= 1000 then + [ "501-1000" ] + else if rebuildCount <= 2500 then + [ "1001-2500" ] + else if rebuildCount <= 5000 then + [ "2501-5000" ] + else + [ "5001+" ]; + in + lib.forEach numbers (number: "10.rebuild-${kernel}: ${number}") + ) rebuildCountByKernel + ); } From 8076473384121e1142748e92bdf7afd2d3a37c8f Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Mon, 20 Jan 2025 13:10:59 +0100 Subject: [PATCH 46/57] phpPackages.composer: fix included patch The patch has not been included in the `vendor`, issue introduced in https://github.com/NixOS/nixpkgs/pull/372696 Context: https://github.com/composer/composer/pull/12263 --- pkgs/development/php-packages/composer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/php-packages/composer/default.nix b/pkgs/development/php-packages/composer/default.nix index 62135eea9e3c..28e97de3c56b 100644 --- a/pkgs/development/php-packages/composer/default.nix +++ b/pkgs/development/php-packages/composer/default.nix @@ -53,7 +53,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { vendor = stdenvNoCC.mkDerivation { pname = "${finalAttrs.pname}-vendor"; - inherit (finalAttrs) src version; + inherit (finalAttrs) src version patches; nativeBuildInputs = [ cacert @@ -97,7 +97,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { outputHashMode = "recursive"; outputHashAlgo = "sha256"; - outputHash = "sha256-McyO3Z4PSyC6LiWt8rsXziAIbEqOhiaT77gUdzZ6tzw="; + outputHash = "sha256-0VbIaOuXeBNRd41q4Ogde8/B4hApueb5FeZ8cGHwB7s="; }; installPhase = '' From 0013710590e1e0c8087b12b2de476b8b63805158 Mon Sep 17 00:00:00 2001 From: Jordan Williams Date: Mon, 2 Dec 2024 07:44:48 -0600 Subject: [PATCH 47/57] manubulon-snmp-plugins: use versionCheckHook --- .../manubulon-snmp-plugins/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/servers/monitoring/nagios-plugins/manubulon-snmp-plugins/default.nix b/pkgs/servers/monitoring/nagios-plugins/manubulon-snmp-plugins/default.nix index 3cc270557a01..1a9899745b88 100644 --- a/pkgs/servers/monitoring/nagios-plugins/manubulon-snmp-plugins/default.nix +++ b/pkgs/servers/monitoring/nagios-plugins/manubulon-snmp-plugins/default.nix @@ -2,11 +2,10 @@ fetchFromGitHub, lib, makeWrapper, - manubulon-snmp-plugins, nix-update-script, perlPackages, stdenv, - testers, + versionCheckHook, }: stdenv.mkDerivation rec { pname = "manubulon-snmp-plugins"; @@ -46,14 +45,15 @@ stdenv.mkDerivation rec { done ''; + doInstallCheck = true; + nativeInstallCheckInputs = [ versionCheckHook ]; + versionCheckProgram = "${placeholder "out"}/bin/check_snmp_int.pl"; + preVersionCheck = '' + version=${builtins.head (lib.splitString "-" version)} + ''; + passthru = { updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - tests.version = testers.testVersion { - package = manubulon-snmp-plugins; - # Program returns status code 3 - command = "check_snmp_int.pl --version || true"; - version = builtins.head (lib.splitString "-" version); - }; }; meta = { From c39acbfabae225c0f393b3fbc121466e6abef489 Mon Sep 17 00:00:00 2001 From: x123 Date: Sat, 18 Jan 2025 19:58:33 +0100 Subject: [PATCH 48/57] crusader: init at 0.3.2 --- pkgs/by-name/cr/crusader/package.nix | 90 ++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 pkgs/by-name/cr/crusader/package.nix diff --git a/pkgs/by-name/cr/crusader/package.nix b/pkgs/by-name/cr/crusader/package.nix new file mode 100644 index 000000000000..15dd1f4337e6 --- /dev/null +++ b/pkgs/by-name/cr/crusader/package.nix @@ -0,0 +1,90 @@ +{ + lib, + stdenv, + rustPlatform, + fetchFromGitHub, + + # nativeBuildInputs + makeWrapper, + pkg-config, + autoPatchelfHook, + + # buildInputs + fontconfig, + libgcc, + libxkbcommon, + xorg, + + libGL, + wayland, + versionCheckHook, + nix-update-script, +}: +rustPlatform.buildRustPackage rec { + pname = "crusader"; + version = "0.3.2"; + + src = fetchFromGitHub { + owner = "Zoxc"; + repo = "crusader"; + tag = "v${version}"; + hash = "sha256-M5zMOOYDS91p0EuDSlQ3K6eiVQpbX6953q+cXBMix2s="; + }; + + sourceRoot = "${src.name}/src"; + + useFetchCargoVendor = true; + cargoHash = "sha256-f0TWiRX203/gNsa9UEr/1Bv+kUxLAK/Zlw+S693xZlE="; + + # autoPatchelfHook required on linux for crusader-gui + nativeBuildInputs = + [ + makeWrapper + pkg-config + ] + ++ lib.optionals stdenv.isLinux [ + autoPatchelfHook + ]; + + buildInputs = + [ + fontconfig + libgcc + libxkbcommon + ] + ++ lib.optionals stdenv.isLinux [ + xorg.libX11 + xorg.libXcursor + xorg.libXi + ]; + + # required for crusader-gui + runtimeDependencies = [ + libGL + libxkbcommon + ]; + + postFixup = '' + # the program looks for libwayland-client.so at runtime + wrapProgram $out/bin/crusader-gui \ + --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ wayland ]} + ''; + + nativeInstallCheckInputs = [ + versionCheckHook + ]; + versionCheckProgramArg = [ "--version" ]; + doInstallCheck = true; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "Network throughput and latency tester"; + homepage = "https://github.com/Zoxc/crusader"; + changelog = "https://github.com/Zoxc/crusader/blob/v${version}/CHANGELOG.md"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ x123 ]; + platforms = lib.platforms.all; + mainProgram = "crusader"; + }; +} From 60520102f2ba74753b9aee92596f298c7aa9d52e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 20 Jan 2025 14:55:28 +0100 Subject: [PATCH 49/57] python313Packages.tencentcloud-sdk-python: 3.0.1305 -> 3.0.1306 Diff: https://github.com/TencentCloud/tencentcloud-sdk-python/compare/refs/tags/3.0.1305...3.0.1306 Changelog: https://github.com/TencentCloud/tencentcloud-sdk-python/blob/3.0.1306/CHANGELOG.md --- .../python-modules/tencentcloud-sdk-python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix b/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix index bdae89164f45..ebd724059761 100644 --- a/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix +++ b/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "tencentcloud-sdk-python"; - version = "3.0.1305"; + version = "3.0.1306"; pyproject = true; disabled = pythonOlder "3.9"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "TencentCloud"; repo = "tencentcloud-sdk-python"; tag = version; - hash = "sha256-uvGhUwiG3AsKpJrm6vYuhzv7rn9Sq1564IXY4fCa8H8="; + hash = "sha256-OjfILXbxfqs11g9o70tS584hMju7Sn69VmWfAvQsq90="; }; build-system = [ setuptools ]; From 0d32e69acecbbc71a684ad575b0a24569f57a96b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20Reyrol?= Date: Mon, 20 Jan 2025 14:58:53 +0100 Subject: [PATCH 50/57] frankenphp: 1.4.0 -> 1.4.1 Diff: https://github.com/dunglas/frankenphp/compare/refs/tags/v1.4.0...v1.4.1 Changelog: https://github.com/dunglas/frankenphp/releases/tag/v1.4.1 --- pkgs/by-name/fr/frankenphp/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/fr/frankenphp/package.nix b/pkgs/by-name/fr/frankenphp/package.nix index 22ee2678e321..506fdac0ebc5 100644 --- a/pkgs/by-name/fr/frankenphp/package.nix +++ b/pkgs/by-name/fr/frankenphp/package.nix @@ -31,13 +31,13 @@ let in buildGoModule rec { pname = "frankenphp"; - version = "1.4.0"; + version = "1.4.1"; src = fetchFromGitHub { owner = "dunglas"; repo = "frankenphp"; tag = "v${version}"; - hash = "sha256-DxKNem7U5DD2l34vIwE6s3TIM1PSixq2J/5jufk1JUc="; + hash = "sha256-eXyO+Z/qD15smqb2/S1los/zsBVlxuYq+DAkvksMz/s="; }; sourceRoot = "${src.name}/caddy"; From 94f9d8b7c22a97b616db1ca7d554d7436ca76213 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 15 Nov 2024 00:42:52 +0000 Subject: [PATCH 51/57] jsoncons: 0.176.0 -> 1.1.0 --- pkgs/by-name/js/jsoncons/package.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/js/jsoncons/package.nix b/pkgs/by-name/js/jsoncons/package.nix index cc39e4c895c6..03ac7a6163f6 100644 --- a/pkgs/by-name/js/jsoncons/package.nix +++ b/pkgs/by-name/js/jsoncons/package.nix @@ -2,23 +2,25 @@ stdenv.mkDerivation (finalAttrs: { pname = "jsoncons"; - version = "0.176.0"; + version = "1.1.0"; src = fetchFromGitHub { owner = "danielaparker"; repo = "jsoncons"; - rev = "v${finalAttrs.version}"; - hash = "sha256-RDF5HL6utM/6wna1TxCefl7X8B1qp6nsEDrguTLrtgA="; + tag = "v${finalAttrs.version}"; + hash = "sha256-3NG9Jal3+BdcFeWAIq3eFoV+1ywUCsWafe/WNu2VJU8="; }; nativeBuildInputs = [ cmake ]; - meta = with lib; { + env.NIX_CFLAGS_COMPILE = "-std=c++20 -Wno-error"; + + meta = { description = "C++, header-only library for constructing JSON and JSON-like data formats"; homepage = "https://danielaparker.github.io/jsoncons/"; - changelog = "https://github.com/danielaparker/jsoncons/blob/${finalAttrs.src.rev}/CHANGELOG.md"; - license = licenses.boost; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.all; + changelog = "https://github.com/danielaparker/jsoncons/blob/v${finalAttrs.version}/CHANGELOG.md"; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.all; }; }) From 9466afacfe1e5ce6c1af1eced501892cad8cfbde Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Wed, 1 Jan 2025 12:03:10 +0400 Subject: [PATCH 52/57] bt-migrate: mark as broken --- pkgs/by-name/bt/bt-migrate/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/bt/bt-migrate/package.nix b/pkgs/by-name/bt/bt-migrate/package.nix index e10258e9c8c1..e5b52b10d8a8 100644 --- a/pkgs/by-name/bt/bt-migrate/package.nix +++ b/pkgs/by-name/bt/bt-migrate/package.nix @@ -61,5 +61,6 @@ stdenv.mkDerivation { maintainers = with maintainers; [ ambroisie ]; mainProgram = "BtMigrate"; platforms = platforms.all; + broken = true; # https://github.com/mikedld/bt-migrate/issues/26 }; } From 30a7706904f750fbeba4bef79e2217725de770e1 Mon Sep 17 00:00:00 2001 From: x123 Date: Tue, 19 Nov 2024 18:55:05 +0100 Subject: [PATCH 53/57] certstream-server-go: init at 1.7.0 --- .../ce/certstream-server-go/package.nix | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 pkgs/by-name/ce/certstream-server-go/package.nix diff --git a/pkgs/by-name/ce/certstream-server-go/package.nix b/pkgs/by-name/ce/certstream-server-go/package.nix new file mode 100644 index 000000000000..a6fac3934297 --- /dev/null +++ b/pkgs/by-name/ce/certstream-server-go/package.nix @@ -0,0 +1,37 @@ +{ + lib, + buildGoModule, + fetchFromGitHub, + nix-update-script, +}: +buildGoModule rec { + pname = "certstream-server-go"; + version = "1.7.0"; + + src = fetchFromGitHub { + owner = "d-Rickyy-b"; + repo = "certstream-server-go"; + tag = "v${version}"; + hash = "sha256-iA4kwhGvAkRL0cMCfo0mdQYUZbWk3Y8xdb7jjjTaRFM="; + }; + + vendorHash = "sha256-S5uF+i5Qsgi3M7B7LbO7CDO2GkWXn4X8wK/hgSSedHo="; + + ldflags = [ + "-s" + "-w" + ]; + + passthru = { + updateScript = nix-update-script { }; + }; + + meta = { + description = "Drop-in replacement in Golang for the certstream server by Calidog"; + homepage = "https://github.com/d-Rickyy-b/certstream-server-go"; + changelog = "https://github.com/d-Rickyy-b/certstream-server-go/blob/v${version}/CHANGELOG.md"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ x123 ]; + mainProgram = "certstream-server-go"; + }; +} From 1eb41e586b4cb5edf9a6a5d2649a5306aff29b2c Mon Sep 17 00:00:00 2001 From: Paul-Nicolas Madelaine Date: Mon, 20 Jan 2025 15:27:05 +0100 Subject: [PATCH 54/57] fstar: remove pnmadelaine as maintainer --- pkgs/development/compilers/fstar/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/development/compilers/fstar/default.nix b/pkgs/development/compilers/fstar/default.nix index d32158784b09..3d738444f533 100644 --- a/pkgs/development/compilers/fstar/default.nix +++ b/pkgs/development/compilers/fstar/default.nix @@ -86,7 +86,6 @@ stdenv.mkDerivation { license = licenses.asl20; maintainers = with maintainers; [ gebner - pnmadelaine ]; mainProgram = "fstar.exe"; platforms = with platforms; darwin ++ linux; From eaff6da586ba5cd7be487dcb6f542e85b03ac15f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 19 Jan 2025 18:06:24 +0000 Subject: [PATCH 55/57] minio: 2024-12-18T13-15-44Z -> 2025-01-18T00-31-37Z --- pkgs/servers/minio/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/minio/default.nix b/pkgs/servers/minio/default.nix index 31c7108b4805..6c11b84c6abd 100644 --- a/pkgs/servers/minio/default.nix +++ b/pkgs/servers/minio/default.nix @@ -30,16 +30,16 @@ let in buildGoModule rec { pname = "minio"; - version = "2024-12-18T13-15-44Z"; + version = "2025-01-18T00-31-37Z"; src = fetchFromGitHub { owner = "minio"; repo = "minio"; rev = "RELEASE.${version}"; - hash = "sha256-mnGhO958Q56XuiYhWxrwnmbHeezHofwGpjIxaz+kSg4="; + hash = "sha256-ppw8daJk5cS3fkKlIk6CQudOICHUp/M4LvDhJKKdg2Y="; }; - vendorHash = "sha256-LshfxzHVFB/esukSGdWYjFn47PZ5rjIoZVcqw2IijIc="; + vendorHash = "sha256-zb/A7vOsZIMLkGVmgVbrCt/lY2K8v7ofTgSA0Z3dvXA="; doCheck = false; From 2d98f09b17ae9235520c5060dcc7660f4805c9c8 Mon Sep 17 00:00:00 2001 From: Piotr Kwiecinski <2151333+piotrkwiecinski@users.noreply.github.com> Date: Mon, 20 Jan 2025 17:27:53 +0100 Subject: [PATCH 56/57] phpdocumentor: fix vendorHash --- pkgs/by-name/ph/phpdocumentor/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/ph/phpdocumentor/package.nix b/pkgs/by-name/ph/phpdocumentor/package.nix index 2e08d85fa646..d1e7603079b4 100644 --- a/pkgs/by-name/ph/phpdocumentor/package.nix +++ b/pkgs/by-name/ph/phpdocumentor/package.nix @@ -16,7 +16,7 @@ php.buildComposerProject2 (finalAttrs: { hash = "sha256-8TQlqXhZ3rHmOAuxsBYa+7JD+SxMQY0NZgCyElStFag="; }; - vendorHash = "sha256-PVaa0o8daoqXs8l3bF/Fsmtx3bdpO2uXTnR4tx8cUC4="; + vendorHash = "sha256-LESUhPjpj1KkFkB+JEOCGU9c6LuDQJB5Dtc/q5Bt3Og="; # Needed because of the unbound version constraint on phpdocumentor/json-path composerStrictValidation = false; From 38e021fa4443a30a43c36a39788c7cbbbdaf1a54 Mon Sep 17 00:00:00 2001 From: FliegendeWurst Date: Sun, 19 Jan 2025 12:21:41 +0100 Subject: [PATCH 57/57] quirc: fix cross build --- pkgs/by-name/qu/quirc/package.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/by-name/qu/quirc/package.nix b/pkgs/by-name/qu/quirc/package.nix index d85f3d3473d3..0251561a2262 100644 --- a/pkgs/by-name/qu/quirc/package.nix +++ b/pkgs/by-name/qu/quirc/package.nix @@ -23,8 +23,12 @@ stdenv.mkDerivation (finalAttrs: { }; postPatch = '' + # use correct pkg-config / ar / ranlib for cross # don't try to change ownership substituteInPlace Makefile \ + --replace-fail "pkg-config " "${stdenv.cc.targetPrefix}pkg-config " \ + --replace-fail "ar " "${stdenv.cc.targetPrefix}ar " \ + --replace-fail "ranlib " "${stdenv.cc.targetPrefix}ranlib " \ --replace-fail "-o root" "" \ --replace-fail "-g root" "" '';