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

Merge master into staging-nixos

parents da562dd0 3bc7ca68
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -71,6 +71,8 @@

- `nodePackages.wavedrom-cli` has been removed, as it was unmaintained within nixpkgs.

- All `@tailwindcss` packages in the `nodePackages` set have been removed, as they are libraries that should instead be locked by JS projects that utilize them.

- `arti` has been updated to major version 2, which removed the long-deprecated `proxy.socks_port` and `proxy.dns_port` and the legacy syntax for specifying directory authorities. For more information, see the [changelog for 2.0.0](https://gitlab.torproject.org/tpo/core/arti/-/blob/arti-v2.0.0/CHANGELOG.md).

- `kanata` now requires `karabiner-dk` version 6.0+ or later.
+23 −6
Original line number Diff line number Diff line
@@ -8637,12 +8637,6 @@
    githubId = 5198058;
    name = "Udo Sauer";
  };
  fettgoenner = {
    email = "paulmatti@protonmail.com";
    github = "fettgoenner";
    githubId = 92429150;
    name = "Paul Meinhold";
  };
  feyorsh = {
    email = "george@feyor.sh";
    github = "Feyorsh";
@@ -11831,6 +11825,12 @@
    githubId = 1358764;
    name = "Jamie Magee";
  };
  janezp = {
    name = "Janez Podhostnik";
    email = "janez.podhostnik@ourplace.is";
    github = "janezpodhostnik";
    githubId = 67895329;
  };
  janhencic = {
    name = "Jan Hencic";
    email = "jan@hencic.com";
@@ -14836,6 +14836,11 @@
    githubId = 736291;
    name = "Lee Machin";
  };
  lefaucheur0769 = {
    name = "LeFaucheur0769";
    github = "LeFaucheur0769";
    githubId = 90474269;
  };
  legojames = {
    github = "jrobinson-uk";
    githubId = 4701504;
@@ -17472,6 +17477,12 @@
    githubId = 33701036;
    name = "Milo Mc";
  };
  mimahlavacek = {
    email = "mima.hlavacek@gmail.com";
    github = "mima-hlavacek";
    githubId = 55756477;
    name = "Míma Hlaváček";
  };
  mimame = {
    email = "miguel.madrid.mencia@gmail.com";
    github = "mimame";
@@ -21140,6 +21151,12 @@
    githubId = 103822;
    name = "Patrick Mahoney";
  };
  pmeinhold = {
    email = "paulmatti@protonmail.com";
    github = "pmeinhold";
    githubId = 92429150;
    name = "Paul Meinhold";
  };
  pmenke = {
    email = "nixos@pmenke.de";
    github = "pmenke-de";
+3 −3
Original line number Diff line number Diff line
@@ -12,12 +12,12 @@
  pkgs,
}:
let
  version = "0.0.27-unstable-2026-02-03";
  version = "0.0.27-unstable-2026-02-16";
  src = fetchFromGitHub {
    owner = "yetone";
    repo = "avante.nvim";
    rev = "d80b7966c0505809e83e408353bbe8cb3394936d";
    hash = "sha256-+IfICc7uBaMV27VJcHlUOxZ2TFQoIHFJPMtoIjjgnZ8=";
    rev = "ecc669a87deb2be95db49e53041c05a2d0980fd4";
    hash = "sha256-ciBJS6+knAQSZrtxWvSSADCfBLH07OMG+Rl3jrAz49M=";
  };
  avante-nvim-lib = rustPlatform.buildRustPackage {
    pname = "avante-nvim-lib";
+5 −14
Original line number Diff line number Diff line
@@ -3044,6 +3044,8 @@ let
        };
      };

      miguelsolorio.fluent-icons = callPackage ./miguelsolorio.fluent-icons { };

      miguelsolorio.min-theme = callPackage ./miguelsolorio.min-theme { };

      mikestead.dotenv = buildVscodeMarketplaceExtension {
@@ -3070,25 +3072,14 @@ let
        };
      };

      mkhl.direnv = buildVscodeMarketplaceExtension {
        mktplcRef = {
          publisher = "mkhl";
          name = "direnv";
          version = "0.17.0";
          hash = "sha256-9sFcfTMeLBGw2ET1snqQ6Uk//D/vcD9AVsZfnUNrWNg=";
        };
        meta = {
          description = "direnv support for Visual Studio Code";
          license = lib.licenses.bsd0;
          downloadPage = "https://marketplace.visualstudio.com/items?itemName=mkhl.direnv";
          maintainers = [ ];
        };
      };
      mkhl.direnv = callPackage ./mkhl.direnv { };

      mkhl.shfmt = callPackage ./mkhl.shfmt { };

      mongodb.mongodb-vscode = callPackage ./mongodb.mongodb-vscode { };

      motivesoft.vscode-man-page-syntax = callPackage ./motivesoft.vscode-man-page-syntax { };

      moshfeu.compare-folders = buildVscodeMarketplaceExtension {
        mktplcRef = {
          name = "compare-folders";
+2 −2
Original line number Diff line number Diff line
@@ -8,8 +8,8 @@ vscode-utils.buildVscodeMarketplaceExtension {
  mktplcRef = {
    name = "basedpyright";
    publisher = "detachhead";
    version = "1.37.4";
    hash = "sha256-OkL0p7SfCinyyIlQN/4Rxc1kXFSSe1X3UuhgNQ17ovo=";
    version = "1.38.1";
    hash = "sha256-KomVzNgm4CD3AMuJ7myZlU6R4bp97pNlnooYdEepQNo=";
  };
  meta = {
    changelog = "https://github.com/detachhead/basedpyright/releases";
Loading