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

Merge staging-next into staging

parents f02201c5 77cd2ad0
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -127,6 +127,8 @@

- `fetchtorrent`, when using the "rqbit" backend, erroneously started fetching files into a subdirectory in Nixpkgs 24.11. The original behaviour -- which matches the behaviour using the "transmission" backend -- has now been restored. Users reliant on the erroneous behaviour can temporarily maintain it by adding `flatten = false` to the `fetchtorrent` arguments; Nix will produce an evaluation warning for anyone using `backend = "rqbit"` without `flatten = true`.

- `steamcontroller` has been removed due to lack of upstream maintenance. Consider using `sc-controller` instead.

- `linux` and all other Linux kernel packages have moved all in-tree kernel modules into a new `modules` output.

- `webfontkitgenerator` has been renamed to `webfont-bundler`, following the rename of the upstream project.
+1 −1
Original line number Diff line number Diff line
@@ -145,7 +145,7 @@ in
        freeformType = configType;

        options.listen-address = mkOption {
          type = types.str;
          type = types.either types.str (types.listOf types.str);
          default = "127.0.0.1:8118";
          description = "Pair of address:port the proxy server is listening to.";
        };
+3 −0
Original line number Diff line number Diff line
@@ -449,6 +449,9 @@ in
      requires = [ "incus.socket" ];
      wantedBy = config.systemd.services.incus.wantedBy;

      # restarting this service will affect instances
      restartIfChanged = false;

      serviceConfig = {
        ExecStart = "${incus-startup} start";
        ExecStop = "${incus-startup} stop";
+13 −0
Original line number Diff line number Diff line
@@ -12024,6 +12024,19 @@ final: prev: {
    meta.hydraPlatforms = [ ];
  };
  oil-git-nvim = buildVimPlugin {
    pname = "oil-git.nvim";
    version = "2025-09-03";
    src = fetchFromGitHub {
      owner = "benomahony";
      repo = "oil-git.nvim";
      rev = "d1f27a5982df35b70fb842aa6bbfac10735c7265";
      sha256 = "03pl0n7qs51kbqgzfwkcyinmnbl9wyfbbd6ihqzr06mr9xrgf221";
    };
    meta.homepage = "https://github.com/benomahony/oil-git.nvim/";
    meta.hydraPlatforms = [ ];
  };
  oil-git-status-nvim = buildVimPlugin {
    pname = "oil-git-status.nvim";
    version = "2025-04-03";
+4 −0
Original line number Diff line number Diff line
@@ -2789,6 +2789,10 @@ assertNoAdditions {
    ];
  };

  oil-git-nvim = super.oil-git-nvim.overrideAttrs {
    dependencies = [ self.oil-nvim ];
  };

  oil-git-status-nvim = super.oil-git-status-nvim.overrideAttrs {
    dependencies = [ self.oil-nvim ];
  };
Loading