Unverified Commit 72306e01 authored by nixpkgs-ci[bot]'s avatar nixpkgs-ci[bot] Committed by GitHub
Browse files

Merge master into staging-next

parents 180f5a25 74e5fb80
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -392,6 +392,9 @@
- `forgejo` and `forgejo-lts` have been updated to v11.
  See upstreams [release blog post](https://forgejo.org/2025-04-release-v11-0/) for more information.

- `unifi` has been updated to v9.1.
  This version should be backward compatible with v8.x, however as a result, `unifi8` package has been removed.

- The behavior of `services.hostapd.radios.<name>.networks.<name>.authentication.enableRecommendedPairwiseCiphers` was changed to not include `CCMP-256` anymore.
  Since all configured pairwise ciphers have to be supported by the radio, this caused startup failures on many devices which is hard to debug in hostapd.

+2 −4
Original line number Diff line number Diff line
@@ -47,9 +47,7 @@ in
      '';
    };

    services.unifi.unifiPackage = lib.mkPackageOption pkgs "unifi" {
      default = "unifi8";
    };
    services.unifi.unifiPackage = lib.mkPackageOption pkgs "unifi" { };

    services.unifi.mongodbPackage = lib.mkPackageOption pkgs "mongodb" {
      default = "mongodb-7_0";
@@ -116,7 +114,7 @@ in
          only supports migrating one major version at a time; therefore, you
          may wish to set `services.unifi.mongodbPackage = pkgs.mongodb-6_0;`
          and activate your configuration before upgrading again to the default
          `mongodb-7_0` supported by `unifi8`.
          `mongodb-7_0` supported by `unifi`.

          For more information, see the MongoDB upgrade notes:
          <https://www.mongodb.com/docs/manual/release-notes/7.0-upgrade-standalone/#upgrade-recommendations-and-checklists>
+8 −3
Original line number Diff line number Diff line
@@ -12,12 +12,12 @@
  pkgs,
}:
let
  version = "0.0.23";
  version = "0.0.23-unstable-2025-05-10";
  src = fetchFromGitHub {
    owner = "yetone";
    repo = "avante.nvim";
    tag = "v${version}";
    hash = "sha256-Ud4NkJH7hze5796KjVe5Nj9DzxwQkDQErCJDDiBzAIY=";
    rev = "adae032f5fbc611d59545792d3c5bb1c9ddc3fdb";
    hash = "sha256-v99yu5LvwdmHBcH61L6JIqjQkZR8Lm2fR/uzQZNPo38=";
  };
  avante-nvim-lib = rustPlatform.buildRustPackage {
    pname = "avante-nvim-lib";
@@ -73,6 +73,7 @@ vimUtils.buildVimPlugin {

  passthru = {
    updateScript = nix-update-script {
      extraArgs = [ "--version=branch" ];
      attrPath = "vimPlugins.avante-nvim.avante-nvim-lib";
    };

@@ -84,6 +85,10 @@ vimUtils.buildVimPlugin {
    # Requires setup with corresponding provider
    "avante.providers.azure"
    "avante.providers.copilot"
    "avante.providers.gemini"
    "avante.providers.ollama"
    "avante.providers.vertex"
    "avante.providers.vertex_claude"
  ];

  meta = {
+3 −3
Original line number Diff line number Diff line
@@ -5,13 +5,13 @@
}:
mkLibretroCore {
  core = "puae";
  version = "0-unstable-2025-04-22";
  version = "0-unstable-2025-05-10";

  src = fetchFromGitHub {
    owner = "libretro";
    repo = "libretro-uae";
    rev = "7dd724eaa48f05f02d9d2f1bfa131c34b6ab5351";
    hash = "sha256-i046+gZa8u/nmGGlF/uA2Lz5VZJTgwXz9aK2C/2l470=";
    rev = "d3c925ef4fadee6c25bcef20d1f165141ba18ac3";
    hash = "sha256-Wo58+4XSxEVtlKsHmW90Qhm+kdUHmDvN3d2gASNiIrw=";
  };

  makefile = "Makefile";
+2 −2
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
  gitSupport ? false,
  git,
  docutilsSupport ? false,
  python,
  python3,
  docutils,
  monotoneSupport ? false,
  monotone,
@@ -68,7 +68,7 @@ stdenv.mkDerivation rec {
      CryptSSLeay
    ])
    ++ lib.optionals docutilsSupport [
      (python.withPackages (pp: with pp; [ pygments ]))
      (python3.withPackages (pp: with pp; [ pygments ]))
      docutils
    ]
    ++ lib.optionals gitSupport [ git ]
Loading