Unverified Commit 4a5ad096 authored by github-actions[bot]'s avatar github-actions[bot] Committed by GitHub
Browse files

Merge master into staging-next

parents 001fb496 ac8b46d1
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -18403,6 +18403,18 @@
    githubId = 1217934;
    name = "José Romildo Malaquias";
  };
  romner-set = {
    email = "admin@cynosure.red";
    github = "romner-set";
    githubId = 41077433;
    name = "romner-set";
    keys = [
      {
        # uploaded to https://keys.openpgp.org
        fingerprint = "4B75 244B 0279 9598 FF3B  C21F 95FC 58F1 8CFD FAB0";
      }
    ];
  };
  ronanmacf = {
    email = "macfhlar@tcd.ie";
    github = "RonanMacF";
+1 −0
Original line number Diff line number Diff line
@@ -141,6 +141,7 @@ let
          --absolute-names \
          --verbatim-files-from \
          --transform 'flags=rSh;s|/nix/store/||' \
          --transform 'flags=rSh;s|~nix~case~hack~[[:digit:]]\+||g' \
          --files-from ${hostPkgs.closureInfo { rootPaths = [ config.system.build.toplevel regInfo ]; }}/store-paths \
          | ${hostPkgs.erofs-utils}/bin/mkfs.erofs \
            --quiet \
+24 −0
Original line number Diff line number Diff line
@@ -5534,6 +5534,18 @@ final: prev:
    meta.homepage = "https://github.com/qnighy/lalrpop.vim/";
  };
  langmapper-nvim = buildVimPlugin {
    pname = "langmapper.nvim";
    version = "2024-09-19";
    src = fetchFromGitHub {
      owner = "Wansmer";
      repo = "langmapper.nvim";
      rev = "ac74a80cb86e8b51e4a13ccb2ee540d544fe1c62";
      sha256 = "1b2sjsi81r7m1pxxkisl4b2w2cag3v2i4andhn89gv6afzakvzka";
    };
    meta.homepage = "https://github.com/Wansmer/langmapper.nvim/";
  };
  last256 = buildVimPlugin {
    pname = "last256";
    version = "2020-12-09";
@@ -12954,6 +12966,18 @@ final: prev:
    meta.homepage = "https://github.com/junegunn/vim-after-object/";
  };
  vim-afterglow = buildVimPlugin {
    pname = "vim-afterglow";
    version = "2024-03-31";
    src = fetchFromGitHub {
      owner = "danilo-augusto";
      repo = "vim-afterglow";
      rev = "fe3a0c4d2acf13ed6f7f0f1fede0a2570f13b06e";
      sha256 = "0z61jfdhhajw5k7y8msk8nj5nljwygmw3s6vsqq9qgczaixqh968";
    };
    meta.homepage = "https://github.com/danilo-augusto/vim-afterglow/";
  };
  vim-agda = buildVimPlugin {
    pname = "vim-agda";
    version = "2024-05-17";
+2 −0
Original line number Diff line number Diff line
@@ -463,6 +463,7 @@ https://github.com/b3nj5m1n/kommentary/,,
https://github.com/udalov/kotlin-vim/,,
https://github.com/mistweaverco/kulala.nvim/,HEAD,
https://github.com/qnighy/lalrpop.vim/,,
https://github.com/Wansmer/langmapper.nvim/,HEAD,
https://github.com/sk1418/last256/,,
https://github.com/latex-box-team/latex-box/,,
https://github.com/dundalek/lazy-lsp.nvim/,HEAD,
@@ -1092,6 +1093,7 @@ https://github.com/MarcWeber/vim-addon-syntax-checker/,,
https://github.com/MarcWeber/vim-addon-toggle-buffer/,,
https://github.com/MarcWeber/vim-addon-xdebug/,,
https://github.com/junegunn/vim-after-object/,,
https://github.com/danilo-augusto/vim-afterglow/,HEAD,
https://github.com/msuperdock/vim-agda/,HEAD,
https://github.com/vim-airline/vim-airline/,,
https://github.com/enricobacis/vim-airline-clock/,,
+3 −0
Original line number Diff line number Diff line
@@ -35,9 +35,12 @@ python3Packages.buildPythonApplication rec {
    pygobject3
    pycairo
    pyxdg
    setuptools
    dbus-python
  ];

  PYTHONDIR = "${placeholder "out"}/${python3Packages.python.sitePackages}";

  dontWrapGApps = true;

  # Arguments to be passed to `makeWrapper`, only used by buildPython*
Loading