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

Merge master into staging-nixos

parents f483c1cc 51050bf7
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -94,6 +94,10 @@

- `python3Packages.pygame` has been been renamed to `python3Packages.pygame-original`, the attribute `python3Packages.pygame` will from python 3.14 default to the more actively maintained `python3Packages.pygame-ce`

- `peertube` has been updated from `7.3.0` to `8.0.2`, introducing several breaking changes.
  Some notable new features include channel collaboration and video player redesign with a new theme.
  For details on how to upgrade, see the `IMPORTANT NOTES` section of the [v8.0.0 CHANGELOG entry](https://docs.joinpeertube.org/CHANGELOG#v8-0-0).

- `python3Packages.gradio` has been updated to version 6. See upstream's migration guide at https://www.gradio.app/main/guides/gradio-6-migration-guide.

- `vicinae` has been updated to v0.17. Version 0.17 contains a complete overhaul of the configuration system. For update instructions, see the [release notes for v0.17.0](https://github.com/vicinaehq/vicinae/releases/tag/v0.17.0) and the [upstream configuration documentation](https://docs.vicinae.com/config).
+8 −6
Original line number Diff line number Diff line
@@ -24779,6 +24779,14 @@
    githubId = 1505617;
    name = "Sean Lee";
  };
  sleroq = {
    name = "Sleroq";
    email = "sleroq@cum.army";
    github = "sleroq";
    matrix = "@sleroq:sleroq.link";
    githubId = 52239427;
    keys = [ { fingerprint = "2502 640F 4254 7933 FEF1  7A33 3414 5C1D B76E 618F"; } ];
  };
  SlothOfAnarchy = {
    email = "slothofanarchy1@gmail.com";
    matrix = "@michel.weitbrecht:helsinki-systems.de";
@@ -27136,12 +27144,6 @@
    githubId = 5623227;
    name = "Quentin Boyer";
  };
  TredwellGit = {
    email = "tredwell@tutanota.com";
    github = "TredwellGit";
    githubId = 61860346;
    name = "Tredwell";
  };
  treemo = {
    email = "matthieu.chevrier@treemo.fr";
    github = "treemo";
+2 −2
Original line number Diff line number Diff line
@@ -242,8 +242,8 @@ in
          }
        ];

        # Bcachefs upstream recommends using the latest kernel
        boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
        # Use LTS that bcachefs is compatible with.
        boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_6_18;

        # needed for systemd-remount-fs
        system.fsPackages = [ cfg.package ];
+2 −2
Original line number Diff line number Diff line
@@ -10,13 +10,13 @@
}:
vimUtils.buildVimPlugin rec {
  pname = "codediff.nvim";
  version = "2.16.3";
  version = "2.19.0";

  src = fetchFromGitHub {
    owner = "esmuellert";
    repo = "codediff.nvim";
    tag = "v${version}";
    hash = "sha256-nIDjE5hf5kt3diEFgUEBz4dCxHatCYtdHY5Zc4YlHFg=";
    hash = "sha256-l8bP8NNCoE7SLRMRh+Nq5OxUD+xdJ2qYyWbA140aFV0=";
  };

  dependencies = [ vimPlugins.nui-nvim ];
+3 −3
Original line number Diff line number Diff line
@@ -5,13 +5,13 @@
}:
mkLibretroCore {
  core = "fbneo";
  version = "0-unstable-2026-01-18";
  version = "0-unstable-2026-02-08";

  src = fetchFromGitHub {
    owner = "libretro";
    repo = "fbneo";
    rev = "3faea4f9c678bad8063f3a2774b051f42848c856";
    hash = "sha256-tH9XMBfg3O2oKIUeKWi2hl4yQuHa9BMgvkWjIxv/KIo=";
    rev = "e21e3f3c40eb4422b93b8984ef46fe04cdaee9db";
    hash = "sha256-7hZ2TJwHtgyHd+CZahazXZnKhfNpWZqfev9jtTHlmag=";
  };

  makefile = "Makefile";
Loading