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

Merge staging-next into staging

parents d75130e7 2dc0f2f5
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -2386,6 +2386,13 @@
    name = "Chatnoir Miki";
    matrix = "@mikiiki:matrix.org";
  };
  astratagem = {
    name = "Chris Montgomery";
    email = "chmont@protonmail.com";
    github = "astratagem";
    githubId = 1757914;
    keys = [ { fingerprint = "6460 4147 C434 F65E C306  A21F 135E EDD0 F719 34F3"; } ];
  };
  astro = {
    email = "astro@spaceboyz.net";
    github = "astro";
@@ -17502,13 +17509,6 @@
    githubId = 249317;
    name = "montag451";
  };
  montchr = {
    name = "Chris Montgomery";
    email = "chris@cdom.io";
    github = "montchr";
    githubId = 1757914;
    keys = [ { fingerprint = "6460 4147 C434 F65E C306  A21F 135E EDD0 F719 34F3"; } ];
  };
  moody = {
    email = "moody@posixcafe.org";
    github = "majiru";
+0 −1
Original line number Diff line number Diff line
@@ -21,7 +21,6 @@ in
  config = mkIf cfg.enable {
    environment.systemPackages = [ cfg.package ];
    systemd.packages = [ cfg.package ];
    systemd.user.services.orca.wantedBy = [ "graphical-session.target" ];
    services.gnome.at-spi2-core.enable = true;
    services.speechd.enable = true;
  };
+13 −0
Original line number Diff line number Diff line
@@ -8172,6 +8172,19 @@ final: prev: {
    meta.hydraPlatforms = [ ];
  };
  markdoc-nvim = buildVimPlugin {
    pname = "markdoc.nvim";
    version = "2025-11-14";
    src = fetchFromGitHub {
      owner = "OXY2DEV";
      repo = "markdoc.nvim";
      rev = "12607a127ba7c3890c3ab6e7b2a60f65b6d6d3ec";
      sha256 = "1ghiylf4j4k5s7zs200dznqs8zi30py1a45ykbrw3b08v8xv3mkv";
    };
    meta.homepage = "https://github.com/OXY2DEV/markdoc.nvim/";
    meta.hydraPlatforms = [ ];
  };
  markdown-nvim = buildVimPlugin {
    pname = "markdown.nvim";
    version = "2025-10-03";
+10 −0
Original line number Diff line number Diff line
@@ -1848,6 +1848,16 @@ assertNoAdditions {
    dependencies = [ self.plenary-nvim ];
  };

  markdoc-nvim = super.markdoc-nvim.overrideAttrs {
    dependencies = with self; [
      (nvim-treesitter.withPlugins (p: [
        p.markdown
        p.markdown_inline
        p.html
      ]))
    ];
  };

  markdown-preview-nvim =
    let
      # We only need its dependencies `node-modules`.
+1 −0
Original line number Diff line number Diff line
@@ -627,6 +627,7 @@ https://github.com/Bilal2453/luvit-meta/,HEAD,
https://github.com/dccsillag/magma-nvim/,HEAD,
https://github.com/forest-nvim/maple.nvim/,HEAD,
https://github.com/winston0410/mark-radar.nvim/,HEAD,
https://github.com/OXY2DEV/markdoc.nvim/,HEAD,
https://github.com/iamcco/markdown-preview.nvim/,,
https://github.com/tadmccorkle/markdown.nvim/,HEAD,
https://github.com/David-Kunz/markid/,HEAD,
Loading