Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 81fb40d3 81827377

+1629 -1120
+2
nixos/doc/manual/release-notes/rl-2411.section.md
··· 115 116 - [Eintopf](https://eintopf.info), a community event and calendar web application. Available as [services.eintopf](options.html#opt-services.eintopf.enable). 117 118 - [Radicle](https://radicle.xyz), an open source, peer-to-peer code collaboration stack built on Git. Available as [services.radicle](#opt-services.radicle.enable). 119 120 - [ddns-updater](https://github.com/qdm12/ddns-updater), a service with a WebUI to update DNS records periodically for many providers. Available as [services.ddns-updater](#opt-services.ddns-updater.enable).
··· 115 116 - [Eintopf](https://eintopf.info), a community event and calendar web application. Available as [services.eintopf](options.html#opt-services.eintopf.enable). 117 118 + - [`pay-respects`](https://codeberg.org/iff/pay-respects), a terminal command correction program, alternative to `thefuck`, written in Rust. Available as [programs.pay-respects](options.html#opt-programs.pay-respects). 119 + 120 - [Radicle](https://radicle.xyz), an open source, peer-to-peer code collaboration stack built on Git. Available as [services.radicle](#opt-services.radicle.enable). 121 122 - [ddns-updater](https://github.com/qdm12/ddns-updater), a service with a WebUI to update DNS records periodically for many providers. Available as [services.ddns-updater](#opt-services.ddns-updater.enable).
+56
nixos/modules/programs/pay-respects.nix
···
··· 1 + { 2 + config, 3 + pkgs, 4 + lib, 5 + ... 6 + }: 7 + let 8 + inherit (lib) 9 + getExe 10 + maintainers 11 + mkEnableOption 12 + mkIf 13 + mkOption 14 + types 15 + ; 16 + inherit (types) str; 17 + cfg = config.programs.pay-respects; 18 + 19 + initScript = 20 + shell: 21 + if (shell != "fish") then 22 + '' 23 + eval $(${getExe pkgs.pay-respects} ${shell} --alias ${cfg.alias}) 24 + '' 25 + else 26 + '' 27 + ${getExe pkgs.pay-respects} ${shell} --alias ${cfg.alias} | source 28 + ''; 29 + in 30 + { 31 + options = { 32 + programs.pay-respects = { 33 + enable = mkEnableOption "pay-respects, an app which corrects your previous console command"; 34 + 35 + alias = mkOption { 36 + default = "f"; 37 + type = str; 38 + description = '' 39 + `pay-respects` needs an alias to be configured. 40 + The default value is `f`, but you can use anything else as well. 41 + ''; 42 + }; 43 + }; 44 + }; 45 + 46 + config = mkIf cfg.enable { 47 + environment.systemPackages = [ pkgs.pay-respects ]; 48 + 49 + programs = { 50 + bash.interactiveShellInit = initScript "bash"; 51 + fish.interactiveShellInit = mkIf config.programs.fish.enable initScript "fish"; 52 + zsh.interactiveShellInit = mkIf config.programs.zsh.enable initScript "zsh"; 53 + }; 54 + }; 55 + meta.maintainers = with maintainers; [ sigmasquadron ]; 56 + }
pkgs/applications/audio/tree-from-tags/Gemfile pkgs/by-name/tr/tree-from-tags/Gemfile
pkgs/applications/audio/tree-from-tags/Gemfile.lock pkgs/by-name/tr/tree-from-tags/Gemfile.lock
-39
pkgs/applications/audio/tree-from-tags/default.nix
··· 1 - { lib, stdenv, bundlerEnv, ruby, fetchFromGitHub }: 2 - let 3 - version = "1.1"; 4 - gems = bundlerEnv { 5 - name = "tree-from-tags-${version}-gems"; 6 - inherit ruby; 7 - gemdir = ./.; 8 - }; 9 - in stdenv.mkDerivation { 10 - pname = "tree-from-tags"; 11 - inherit version; 12 - src = fetchFromGitHub { 13 - owner = "dbrock"; 14 - repo = "bongo"; 15 - rev = version; 16 - sha256 = "1nszph9mn98flyhn1jq3y6mdh6jymjkvj5ng36ql016dj92apvhv"; 17 - }; 18 - buildInputs = [ gems ruby ]; 19 - installPhase = '' 20 - mkdir -p $out/{bin,share} 21 - cp tree-from-tags.rb $out/share/ 22 - bin=$out/bin/tree-from-tags 23 - # we are using bundle exec to start in the bundled environment 24 - cat > $bin <<EOF 25 - #!/bin/sh -e 26 - exec ${gems}/bin/bundle exec ${ruby}/bin/ruby "$out"/share/tree-from-tags.rb "\$@" 27 - EOF 28 - chmod +x $bin 29 - ''; 30 - 31 - meta = with lib; { 32 - description = "Create file hierarchies from media tags"; 33 - homepage = "https://www.emacswiki.org/emacs/Bongo"; 34 - platforms = ruby.meta.platforms; 35 - maintainers = [ maintainers.livnev maintainers.dbrock ]; 36 - license = licenses.gpl2Plus; 37 - mainProgram = "tree-from-tags"; 38 - }; 39 - }
···
+1 -1
pkgs/applications/audio/tree-from-tags/gemset.nix pkgs/by-name/tr/tree-from-tags/gemset.nix
··· 1 { 2 taglib-ruby = { 3 source = { 4 - remotes = ["https://rubygems.org"]; 5 sha256 = "0r8g7zdncc6243d000jn0grc1n70rn9mx16vggy3q7c4wgsa37xi"; 6 type = "gem"; 7 };
··· 1 { 2 taglib-ruby = { 3 source = { 4 + remotes = [ "https://rubygems.org" ]; 5 sha256 = "0r8g7zdncc6243d000jn0grc1n70rn9mx16vggy3q7c4wgsa37xi"; 6 type = "gem"; 7 };
+742 -741
pkgs/applications/editors/vim/plugins/generated.nix
··· 65 66 CopilotChat-nvim = buildVimPlugin { 67 pname = "CopilotChat.nvim"; 68 - version = "2024-11-04"; 69 src = fetchFromGitHub { 70 owner = "CopilotC-Nvim"; 71 repo = "CopilotChat.nvim"; 72 - rev = "d786775c8f246a37226731e75d8f0e497f4ba9c7"; 73 - sha256 = "0csrh6lg77skybz80f5kka4d1zvqic6ly0wcjf2gcprcqgsfxypd"; 74 }; 75 meta.homepage = "https://github.com/CopilotC-Nvim/CopilotChat.nvim/"; 76 }; ··· 185 186 LazyVim = buildVimPlugin { 187 pname = "LazyVim"; 188 - version = "2024-11-04"; 189 src = fetchFromGitHub { 190 owner = "LazyVim"; 191 repo = "LazyVim"; 192 - rev = "75750be1c0493659c9fbc60ff5e06dba053ef528"; 193 - sha256 = "18ig07s94lw1yc302r3a7ppsjl9hrxv96pq48m14ixa7al6a2l1d"; 194 }; 195 meta.homepage = "https://github.com/LazyVim/LazyVim/"; 196 }; 197 198 LeaderF = buildVimPlugin { 199 pname = "LeaderF"; 200 - version = "2024-10-10"; 201 src = fetchFromGitHub { 202 owner = "Yggdroot"; 203 repo = "LeaderF"; 204 - rev = "1f00feafbde66263760ea6b066ef07515ae03a42"; 205 - sha256 = "01s4f0nihvq0haldrdgiqi2rpkpmqzaslqq09q42sn5kx5yg3xn7"; 206 }; 207 meta.homepage = "https://github.com/Yggdroot/LeaderF/"; 208 }; ··· 341 342 SchemaStore-nvim = buildVimPlugin { 343 pname = "SchemaStore.nvim"; 344 - version = "2024-11-04"; 345 src = fetchFromGitHub { 346 owner = "b0o"; 347 repo = "SchemaStore.nvim"; 348 - rev = "22ce6adf3c866a8c3d0c55956c4b8feeb4f10c32"; 349 - sha256 = "198yd9j7xfrbl2hgjzmmgsgj05sxj9zl07qk7av8v0vdyglmwgqn"; 350 }; 351 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 352 }; ··· 643 644 ale = buildVimPlugin { 645 pname = "ale"; 646 - version = "2024-10-31"; 647 src = fetchFromGitHub { 648 owner = "dense-analysis"; 649 repo = "ale"; 650 - rev = "4fca3824cc34f731cb5b3e51844698052c5f6c52"; 651 - sha256 = "050fi67l15ni55q4acwnvvrw4gmas0imhdm0wz6bjfb2lrcbfa1h"; 652 }; 653 meta.homepage = "https://github.com/dense-analysis/ale/"; 654 }; ··· 883 884 asyncrun-vim = buildVimPlugin { 885 pname = "asyncrun.vim"; 886 - version = "2024-09-22"; 887 src = fetchFromGitHub { 888 owner = "skywind3000"; 889 repo = "asyncrun.vim"; 890 - rev = "09b8117fe607941c0abff39b194074e40a3dee88"; 891 - sha256 = "1ipq20nk1npx5krpjs2rf6fda9sc1lxr69pnm8afbjhfj1c7sqhj"; 892 }; 893 meta.homepage = "https://github.com/skywind3000/asyncrun.vim/"; 894 }; ··· 1039 1040 avante-nvim = buildVimPlugin { 1041 pname = "avante.nvim"; 1042 - version = "2024-11-05"; 1043 src = fetchFromGitHub { 1044 owner = "yetone"; 1045 repo = "avante.nvim"; 1046 - rev = "9fbe0256f277a940fa61dce127129c1e8a3916a0"; 1047 - sha256 = "0shpbjf3cnlw7icrabah4q077rn110gdw5bc9hif1dwf7wdffhvc"; 1048 }; 1049 meta.homepage = "https://github.com/yetone/avante.nvim/"; 1050 }; ··· 1124 1125 barbar-nvim = buildVimPlugin { 1126 pname = "barbar.nvim"; 1127 - version = "2024-10-16"; 1128 src = fetchFromGitHub { 1129 owner = "romgrk"; 1130 repo = "barbar.nvim"; 1131 - rev = "7c28de8c22f4c00ed43a78ae16c13dd6a248fe1a"; 1132 - sha256 = "0cd93xldgqbkfbkq5s2bmq6j9mzzgfq5vk8rqbff938j0y3d7ldd"; 1133 }; 1134 meta.homepage = "https://github.com/romgrk/barbar.nvim/"; 1135 }; ··· 1172 1173 base46 = buildVimPlugin { 1174 pname = "base46"; 1175 - version = "2024-11-01"; 1176 src = fetchFromGitHub { 1177 owner = "nvchad"; 1178 repo = "base46"; 1179 - rev = "f006ffdd0e4c0a8b1a639713f5208bc282c60058"; 1180 - sha256 = "03xn81k39vj5js7q165a51w5fq96mysay7824j5ky2n0941n41cd"; 1181 }; 1182 meta.homepage = "https://github.com/nvchad/base46/"; 1183 }; ··· 1352 1353 bufexplorer = buildVimPlugin { 1354 pname = "bufexplorer"; 1355 - version = "2024-10-16"; 1356 src = fetchFromGitHub { 1357 owner = "jlanzarotta"; 1358 repo = "bufexplorer"; 1359 - rev = "3828d24435c86bfa32847c04d1ca4e3606736d89"; 1360 - sha256 = "1rj5zgqwbcf31v8py3bixc068cbri4y59xqcj4g3hav3qnsqh08v"; 1361 }; 1362 meta.homepage = "https://github.com/jlanzarotta/bufexplorer/"; 1363 }; ··· 1434 meta.homepage = "https://github.com/bkad/camelcasemotion/"; 1435 }; 1436 1437 - catppuccin-nvim = buildVimPlugin { 1438 - pname = "catppuccin-nvim"; 1439 - version = "2024-11-03"; 1440 - src = fetchFromGitHub { 1441 - owner = "catppuccin"; 1442 - repo = "nvim"; 1443 - rev = "35d8057137af463c9f41f169539e9b190d57d269"; 1444 - sha256 = "1lra18arndkpd8k9pyh3qgykihqnvm8h6v0w0kjpf36ys9xgpz3r"; 1445 - }; 1446 - meta.homepage = "https://github.com/catppuccin/nvim/"; 1447 - }; 1448 - 1449 - catppuccin-vim = buildVimPlugin { 1450 - pname = "catppuccin-vim"; 1451 - version = "2024-08-14"; 1452 - src = fetchFromGitHub { 1453 - owner = "catppuccin"; 1454 - repo = "vim"; 1455 - rev = "060000804cf50315ac6dd986bc4d84fbc40cbc9c"; 1456 - sha256 = "1faxniddq6zcsb93bsm93lkf01mc4jfzxls5vyxmac6rc5v2k1n4"; 1457 - }; 1458 - meta.homepage = "https://github.com/catppuccin/vim/"; 1459 - }; 1460 - 1461 caw-vim = buildVimPlugin { 1462 pname = "caw.vim"; 1463 version = "2023-03-16"; ··· 1664 1665 cmake-tools-nvim = buildVimPlugin { 1666 pname = "cmake-tools.nvim"; 1667 - version = "2024-10-20"; 1668 src = fetchFromGitHub { 1669 owner = "Civitasv"; 1670 repo = "cmake-tools.nvim"; 1671 - rev = "d8eb4372fff47028c36f6bec6a8318b166092ed0"; 1672 - sha256 = "13k9x6arank1760wmi9rz8rjcbc3qlalsb8krzn3xf1g34ikbq1l"; 1673 }; 1674 meta.homepage = "https://github.com/Civitasv/cmake-tools.nvim/"; 1675 }; ··· 2081 meta.homepage = "https://github.com/hrsh7th/cmp-omni/"; 2082 }; 2083 2084 - cmp-pandoc-nvim = buildVimPlugin { 2085 - pname = "cmp-pandoc.nvim"; 2086 - version = "2023-03-03"; 2087 - src = fetchFromGitHub { 2088 - owner = "aspeddro"; 2089 - repo = "cmp-pandoc.nvim"; 2090 - rev = "30faa4456a7643c4cb02d8fa18438fd484ed7602"; 2091 - sha256 = "0fl903hcy85f21xmgf1dx31lxjwgplkcg4m8i989yhqr6irwwi6f"; 2092 - }; 2093 - meta.homepage = "https://github.com/aspeddro/cmp-pandoc.nvim/"; 2094 - }; 2095 - 2096 cmp-pandoc-references = buildVimPlugin { 2097 pname = "cmp-pandoc-references"; 2098 version = "2022-04-20"; ··· 2105 meta.homepage = "https://github.com/jc-doyle/cmp-pandoc-references/"; 2106 }; 2107 2108 cmp-path = buildVimPlugin { 2109 pname = "cmp-path"; 2110 version = "2022-10-03"; ··· 2119 2120 cmp-rg = buildVimPlugin { 2121 pname = "cmp-rg"; 2122 - version = "2024-10-17"; 2123 src = fetchFromGitHub { 2124 owner = "lukas-reineke"; 2125 repo = "cmp-rg"; 2126 - rev = "d6cea15ad504369ec98f3de73b9631dfdd23a671"; 2127 - sha256 = "1rjhlc1rldqz79b1han5xrbwqvx514h3yvlsz7rgx58jscv6mmx9"; 2128 }; 2129 meta.homepage = "https://github.com/lukas-reineke/cmp-rg/"; 2130 }; ··· 2369 meta.homepage = "https://github.com/neoclide/coc-neco/"; 2370 }; 2371 2372 - coc-nvim = buildVimPlugin { 2373 - pname = "coc.nvim"; 2374 - version = "2024-10-12"; 2375 - src = fetchFromGitHub { 2376 - owner = "neoclide"; 2377 - repo = "coc.nvim"; 2378 - rev = "57d488a06bdb34de89acef3c2f3e9ce609d632ed"; 2379 - sha256 = "106w4kgrqlgnszpkzlxrlzsvca880qagv07h93dxsl2ggbdkm91l"; 2380 - }; 2381 - meta.homepage = "https://github.com/neoclide/coc.nvim/"; 2382 - }; 2383 - 2384 coc-svelte = buildVimPlugin { 2385 pname = "coc-svelte"; 2386 version = "2023-10-08"; ··· 2405 meta.homepage = "https://github.com/iamcco/coc-tailwindcss/"; 2406 }; 2407 2408 coconut-vim = buildVimPlugin { 2409 pname = "coconut.vim"; 2410 version = "2017-10-10"; ··· 2515 2516 command-t = buildVimPlugin { 2517 pname = "command-t"; 2518 - version = "2024-10-25"; 2519 src = fetchFromGitHub { 2520 owner = "wincent"; 2521 repo = "command-t"; 2522 - rev = "e739fa7bde85912a6dd8bea5c48c216769272da5"; 2523 - sha256 = "1min259i7l3lryq7dirmilhfx6fv05lg5cmy5zvx55g8vnibnkqv"; 2524 }; 2525 meta.homepage = "https://github.com/wincent/command-t/"; 2526 }; ··· 2719 2720 conform-nvim = buildVimPlugin { 2721 pname = "conform.nvim"; 2722 - version = "2024-11-02"; 2723 src = fetchFromGitHub { 2724 owner = "stevearc"; 2725 repo = "conform.nvim"; 2726 - rev = "d28ccf945374edd9f1c34a82f6c22261dbd8ab98"; 2727 - sha256 = "1rrcqrag8xvwvddjzxab5grnwn38f78hj462w1dszk7gd922px3y"; 2728 fetchSubmodules = true; 2729 }; 2730 meta.homepage = "https://github.com/stevearc/conform.nvim/"; ··· 2732 2733 conjure = buildVimPlugin { 2734 pname = "conjure"; 2735 - version = "2024-08-09"; 2736 src = fetchFromGitHub { 2737 owner = "Olical"; 2738 repo = "conjure"; 2739 - rev = "6d2bc7f7b24c2c43d54f263bee7b9b08aef5d1a1"; 2740 - sha256 = "0gfk2b4cz8wisp5lpjlncf79may4c0sykgn7n9ibrmd8729ks43k"; 2741 }; 2742 meta.homepage = "https://github.com/Olical/conjure/"; 2743 }; ··· 2778 meta.homepage = "https://github.com/zbirenbaum/copilot-cmp/"; 2779 }; 2780 2781 - copilot-lua = buildVimPlugin { 2782 - pname = "copilot.lua"; 2783 - version = "2024-10-18"; 2784 - src = fetchFromGitHub { 2785 - owner = "zbirenbaum"; 2786 - repo = "copilot.lua"; 2787 - rev = "f8d8d872bb319f640d5177dad5fbf01f7a16d7d0"; 2788 - sha256 = "1yzfkvqjcmnbkxsdjy81cjal8zqqs9x6ai44ky11z0ly1zcqv3ji"; 2789 - }; 2790 - meta.homepage = "https://github.com/zbirenbaum/copilot.lua/"; 2791 - }; 2792 - 2793 copilot-lualine = buildVimPlugin { 2794 pname = "copilot-lualine"; 2795 version = "2024-09-03"; ··· 2800 sha256 = "0qx9x28f0c20cz2ax1631rd7qzzkzvhbnv9ivmyw44v5nzp8jy1x"; 2801 }; 2802 meta.homepage = "https://github.com/AndreM222/copilot-lualine/"; 2803 }; 2804 2805 copilot-vim = buildVimPlugin { ··· 2852 2853 coq_nvim = buildVimPlugin { 2854 pname = "coq_nvim"; 2855 - version = "2024-10-22"; 2856 src = fetchFromGitHub { 2857 owner = "ms-jpq"; 2858 repo = "coq_nvim"; 2859 - rev = "db12581bea4e83b8d8142c15daa9632d796636cf"; 2860 - sha256 = "0gr52xnb8574qk3rbi1jzlsmiqa4nifkc7sy43xjfd0q9px9zln4"; 2861 }; 2862 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 2863 }; ··· 2924 2925 csharpls-extended-lsp-nvim = buildVimPlugin { 2926 pname = "csharpls-extended-lsp.nvim"; 2927 - version = "2024-10-30"; 2928 src = fetchFromGitHub { 2929 owner = "Decodetalkers"; 2930 repo = "csharpls-extended-lsp.nvim"; 2931 - rev = "760a2387d664e9781b1a69e5040e89e159ec56a9"; 2932 - sha256 = "0zrdy6nq1yn9xna3nj8q6nxflkmc2420n6x3vxhsl18v4p04gvg7"; 2933 }; 2934 meta.homepage = "https://github.com/Decodetalkers/csharpls-extended-lsp.nvim/"; 2935 }; ··· 2968 sha256 = "133xhi069ndcgj6wcgj5xvpf4m9c34zs9cnk35qpx13h2scxdsa4"; 2969 }; 2970 meta.homepage = "https://github.com/FelikZ/ctrlp-py-matcher/"; 2971 }; 2972 2973 ctrlp-vim = buildVimPlugin { ··· 2982 meta.homepage = "https://github.com/ctrlpvim/ctrlp.vim/"; 2983 }; 2984 2985 - ctrlp-z = buildVimPlugin { 2986 - pname = "ctrlp-z"; 2987 - version = "2015-10-17"; 2988 - src = fetchFromGitHub { 2989 - owner = "amiorin"; 2990 - repo = "ctrlp-z"; 2991 - rev = "d1a69ec623ce24b9a30fc8fe3cd468c322b03026"; 2992 - sha256 = "16nsj1g8lqmyizlb5ijwhf4dsmh0xv1kwqq6jxvhaf55vfga82yl"; 2993 - }; 2994 - meta.homepage = "https://github.com/amiorin/ctrlp-z/"; 2995 - }; 2996 - 2997 cyberdream-nvim = buildVimPlugin { 2998 pname = "cyberdream.nvim"; 2999 - version = "2024-10-19"; 3000 src = fetchFromGitHub { 3001 owner = "scottmckendry"; 3002 repo = "cyberdream.nvim"; 3003 - rev = "7e6feb49d2ec47a742215754ec0ecc51eebba55a"; 3004 - sha256 = "0ilv916j4wf110fapy25glc99qyps9dajvb1397xz95r6cyqc7ld"; 3005 }; 3006 meta.homepage = "https://github.com/scottmckendry/cyberdream.nvim/"; 3007 }; ··· 3116 3117 ddc-vim = buildVimPlugin { 3118 pname = "ddc.vim"; 3119 - version = "2024-11-05"; 3120 src = fetchFromGitHub { 3121 owner = "Shougo"; 3122 repo = "ddc.vim"; 3123 - rev = "238c1a743f3b349e16fb3a5a4a00bb387292f436"; 3124 - sha256 = "0y46wz7zz13vq80gqh26ms1p1pm6v7r486w91sfcawba5lm7ahgf"; 3125 }; 3126 meta.homepage = "https://github.com/Shougo/ddc.vim/"; 3127 }; 3128 3129 debugprint-nvim = buildVimPlugin { 3130 pname = "debugprint.nvim"; 3131 - version = "2024-11-05"; 3132 src = fetchFromGitHub { 3133 owner = "andrewferrier"; 3134 repo = "debugprint.nvim"; 3135 - rev = "64148dfb91c04c033cbdba7db5e3bd4d3b501bae"; 3136 - sha256 = "08vqphvffpx9hqnn15ycl6fbq8xybzn98v8ifhq8xgglvvfcv9za"; 3137 }; 3138 meta.homepage = "https://github.com/andrewferrier/debugprint.nvim/"; 3139 }; ··· 3236 3237 denops-vim = buildVimPlugin { 3238 pname = "denops.vim"; 3239 - version = "2024-10-21"; 3240 src = fetchFromGitHub { 3241 owner = "vim-denops"; 3242 repo = "denops.vim"; 3243 - rev = "3a38e081f922e0134671236edd3e6dcbb251d10c"; 3244 - sha256 = "1ddxvgcsayirs4my3agakxm98z6qv7z9nryayfqv26g7k2k3znh9"; 3245 }; 3246 meta.homepage = "https://github.com/vim-denops/denops.vim/"; 3247 }; ··· 3392 meta.homepage = "https://github.com/Valodim/deoplete-notmuch/"; 3393 }; 3394 3395 - deoplete-nvim = buildVimPlugin { 3396 - pname = "deoplete.nvim"; 3397 - version = "2024-06-05"; 3398 - src = fetchFromGitHub { 3399 - owner = "Shougo"; 3400 - repo = "deoplete.nvim"; 3401 - rev = "e5a47d4a2f0b2b6f568e708163e2354097e611c6"; 3402 - sha256 = "1cj5y29gkm2l1c7g7bp50k522dn4yk67sywc19lcyizpwxvqq0a2"; 3403 - }; 3404 - meta.homepage = "https://github.com/Shougo/deoplete.nvim/"; 3405 - }; 3406 - 3407 deoplete-phpactor = buildVimPlugin { 3408 pname = "deoplete-phpactor"; 3409 version = "2020-09-12"; ··· 3474 sha256 = "0zsbkl82kny1vmfv06iz576xsclbik0xr7ndzpb0ddhw5nfnicfx"; 3475 }; 3476 meta.homepage = "https://github.com/deoplete-plugins/deoplete-zsh/"; 3477 }; 3478 3479 devdocs-vim = buildVimPlugin { ··· 3622 3623 dracula-nvim = buildVimPlugin { 3624 pname = "dracula.nvim"; 3625 - version = "2024-10-16"; 3626 src = fetchFromGitHub { 3627 owner = "Mofiqul"; 3628 repo = "dracula.nvim"; 3629 - rev = "94fa7885a06a67f0a8bfa03e064619d05d1ba496"; 3630 - sha256 = "1yxkhi11a81nmll9il3jq2ii8nbh7x2mf2k5w8ql5y27bdl4wcfy"; 3631 }; 3632 meta.homepage = "https://github.com/Mofiqul/dracula.nvim/"; 3633 }; 3634 3635 - dracula-vim = buildVimPlugin { 3636 - pname = "dracula-vim"; 3637 - version = "2024-07-26"; 3638 - src = fetchFromGitHub { 3639 - owner = "dracula"; 3640 - repo = "vim"; 3641 - rev = "65f4225e0526516a67d56c8ac09925a209138e53"; 3642 - sha256 = "0jp54l8k40mij0mkavsxzv2kipvzzvy211d6hyvq6ry9liqkl7b8"; 3643 - }; 3644 - meta.homepage = "https://github.com/dracula/vim/"; 3645 - }; 3646 - 3647 dressing-nvim = buildVimPlugin { 3648 pname = "dressing.nvim"; 3649 - version = "2024-11-04"; 3650 src = fetchFromGitHub { 3651 owner = "stevearc"; 3652 repo = "dressing.nvim"; 3653 - rev = "6ef1ca479d37d4ff66f13eed44d08912caff483a"; 3654 - sha256 = "04crajvh4mmziz2ixdir419cjrglgrxh3m8zjkrh9xbc0g49vn8p"; 3655 }; 3656 meta.homepage = "https://github.com/stevearc/dressing.nvim/"; 3657 }; 3658 3659 dropbar-nvim = buildVimPlugin { 3660 pname = "dropbar.nvim"; 3661 - version = "2024-11-02"; 3662 src = fetchFromGitHub { 3663 owner = "Bekaboo"; 3664 repo = "dropbar.nvim"; 3665 - rev = "22382f44f8ce0320d38023c6a68f3ef4087c8c10"; 3666 - sha256 = "05hhxlcgs7nh8s8zj1zi0ssgq288q6j1cglhrp4l764wh4pnwlgd"; 3667 }; 3668 meta.homepage = "https://github.com/Bekaboo/dropbar.nvim/"; 3669 }; ··· 3728 meta.homepage = "https://github.com/folke/edgy.nvim/"; 3729 }; 3730 3731 editorconfig-nvim = buildVimPlugin { 3732 pname = "editorconfig.nvim"; 3733 version = "2023-01-10"; ··· 3740 meta.homepage = "https://github.com/gpanders/editorconfig.nvim/"; 3741 }; 3742 3743 - editorconfig-vim = buildVimPlugin { 3744 - pname = "editorconfig-vim"; 3745 - version = "2024-10-14"; 3746 - src = fetchFromGitHub { 3747 - owner = "editorconfig"; 3748 - repo = "editorconfig-vim"; 3749 - rev = "ba2ce027c5b0e523e658d24657ce3ae3306c9fe0"; 3750 - sha256 = "1f5ncz4zwsfik99pys6p1y8ik6b865rvxw3n2xdgpcchgjlwhfjf"; 3751 - fetchSubmodules = true; 3752 - }; 3753 - meta.homepage = "https://github.com/editorconfig/editorconfig-vim/"; 3754 - }; 3755 - 3756 efmls-configs-nvim = buildVimPlugin { 3757 pname = "efmls-configs-nvim"; 3758 version = "2024-10-15"; ··· 3799 sha256 = "1y1adg42iv0xhww2vxmxw3pky5syjc3djc1h2s7mm0bjg2marlha"; 3800 }; 3801 meta.homepage = "https://github.com/dmix/elvish.vim/"; 3802 - }; 3803 - 3804 - embark-vim = buildVimPlugin { 3805 - pname = "embark-vim"; 3806 - version = "2024-09-21"; 3807 - src = fetchFromGitHub { 3808 - owner = "embark-theme"; 3809 - repo = "vim"; 3810 - rev = "530e361aa81a8665c3a909a787b918aaf7d702e2"; 3811 - sha256 = "1fyjri2i8cg4kykx64xf4i6xwyfdgzhimmr2mpwhjwgkjh8mhlph"; 3812 - }; 3813 - meta.homepage = "https://github.com/embark-theme/vim/"; 3814 }; 3815 3816 emmet-vim = buildVimPlugin { ··· 3924 3925 fastaction-nvim = buildVimPlugin { 3926 pname = "fastaction.nvim"; 3927 - version = "2024-10-26"; 3928 src = fetchFromGitHub { 3929 owner = "Chaitanyabsprip"; 3930 repo = "fastaction.nvim"; 3931 - rev = "77ae921e6fa6a8e2705768fa89b89b0e45840b94"; 3932 - sha256 = "sha256-2UuEORFTj4+gbuEm1D2FHXrRiU3pDsS5NG50Q9I1wuk="; 3933 }; 3934 meta.homepage = "https://github.com/Chaitanyabsprip/fastaction.nvim/"; 3935 }; 3936 3937 faster-nvim = buildVimPlugin { 3938 pname = "faster.nvim"; 3939 - version = "2024-04-11"; 3940 src = fetchFromGitHub { 3941 owner = "pteroctopus"; 3942 repo = "faster.nvim"; 3943 - rev = "e85c5bdff0cd1e17cbee855ae23c25e7b8e597cb"; 3944 - sha256 = "sha256-oruxdxoMq46F9lf1JxkbrqdzR0JwDE1y/cVCaTD4SBg="; 3945 }; 3946 meta.homepage = "https://github.com/pteroctopus/faster.nvim/"; 3947 }; ··· 3972 3973 feline-nvim = buildVimPlugin { 3974 pname = "feline.nvim"; 3975 - version = "2024-07-13"; 3976 src = fetchFromGitHub { 3977 owner = "freddiehaddad"; 3978 repo = "feline.nvim"; 3979 - rev = "c97c17dc56ca3cf2b9b9192c3447fc59347e8c0d"; 3980 - sha256 = "0dbkjpc266j4605zp0hh4rq5sncca79s7056q6b43b971lagllcw"; 3981 }; 3982 meta.homepage = "https://github.com/freddiehaddad/feline.nvim/"; 3983 }; ··· 4165 4166 flutter-tools-nvim = buildVimPlugin { 4167 pname = "flutter-tools.nvim"; 4168 - version = "2024-10-30"; 4169 src = fetchFromGitHub { 4170 owner = "nvim-flutter"; 4171 repo = "flutter-tools.nvim"; 4172 - rev = "7e6d8611d8606efca64cb8cf1ca07550b7087d1c"; 4173 - sha256 = "07039jvs6m97knj83liv4iyd1k1wj7zmradqfhxnszcjigx05avw"; 4174 }; 4175 meta.homepage = "https://github.com/nvim-flutter/flutter-tools.nvim/"; 4176 }; 4177 4178 focus-nvim = buildVimPlugin { 4179 pname = "focus.nvim"; 4180 - version = "2024-07-16"; 4181 src = fetchFromGitHub { 4182 owner = "nvim-focus"; 4183 repo = "focus.nvim"; 4184 - rev = "3841a38df972534567e85840d7ead20d3a26faa6"; 4185 - sha256 = "sha256-mgHk4u0ab2uSUNE+7DU22IO/xS5uop9iATfFRk6l6hs="; 4186 }; 4187 meta.homepage = "https://github.com/nvim-focus/focus.nvim/"; 4188 }; ··· 4201 4202 follow-md-links-nvim = buildVimPlugin { 4203 pname = "follow-md-links.nvim"; 4204 - version = "2024-09-29"; 4205 src = fetchFromGitHub { 4206 owner = "jghauser"; 4207 repo = "follow-md-links.nvim"; 4208 - rev = "41a6d74636b4209571680d40f20f59a0bf30bf57"; 4209 - sha256 = "ULQTE57SRA8uTuvg5LLJzcI5hOlXDrUwrHfm9+1pbe8="; 4210 }; 4211 meta.homepage = "https://github.com/jghauser/follow-md-links.nvim/"; 4212 }; 4213 4214 formatter-nvim = buildVimPlugin { 4215 pname = "formatter.nvim"; 4216 - version = "2024-10-22"; 4217 src = fetchFromGitHub { 4218 owner = "mhartington"; 4219 repo = "formatter.nvim"; 4220 - rev = "db71fdb31cee8ae33573b5cf1910e477360678b2"; 4221 - sha256 = "13p4ksy1jqbj322y0qb21rbjrrrsg8zm2nmyh1ahlxlif49ch5vb"; 4222 }; 4223 meta.homepage = "https://github.com/mhartington/formatter.nvim/"; 4224 }; ··· 4273 4274 fugitive-gitlab-vim = buildVimPlugin { 4275 pname = "fugitive-gitlab.vim"; 4276 - version = "2024-07-25"; 4277 src = fetchFromGitHub { 4278 owner = "shumphrey"; 4279 repo = "fugitive-gitlab.vim"; 4280 - rev = "838d3a110836f511be099002ce1a71493c042615"; 4281 - sha256 = "0v7x5df4w95qpxshbv81dglnhqgw0ind3c9zxzxf75ir8ry94g5n"; 4282 }; 4283 meta.homepage = "https://github.com/shumphrey/fugitive-gitlab.vim/"; 4284 }; ··· 4357 4358 fzf-lua = buildNeovimPlugin { 4359 pname = "fzf-lua"; 4360 - version = "2024-10-27"; 4361 src = fetchFromGitHub { 4362 owner = "ibhagwan"; 4363 repo = "fzf-lua"; 4364 - rev = "ce1e24f2a48089b65deefcb0a71a9856839002b5"; 4365 - sha256 = "0nfihl95bxrjmkin8wj6d8sznch695fk2wxkwk6wd92v5dlapypx"; 4366 }; 4367 meta.homepage = "https://github.com/ibhagwan/fzf-lua/"; 4368 }; ··· 4391 meta.homepage = "https://github.com/NTBBloodbath/galaxyline.nvim/"; 4392 }; 4393 4394 - gbprod-nord = buildVimPlugin { 4395 - pname = "gbprod-nord"; 4396 - version = "2024-10-10"; 4397 - src = fetchFromGitHub { 4398 - owner = "gbprod"; 4399 - repo = "nord.nvim"; 4400 - rev = "4cc19936b1b57ba08eb461c5f450b3976cbb8e0c"; 4401 - sha256 = "1k09fv0cb8xaa6z1fz6l58cdzgz4wfnfhv32dw3y395gr69a9sra"; 4402 - }; 4403 - meta.homepage = "https://github.com/gbprod/nord.nvim/"; 4404 - }; 4405 - 4406 gen_tags-vim = buildVimPlugin { 4407 pname = "gen_tags.vim"; 4408 version = "2023-03-06"; ··· 4465 4466 git-conflict-nvim = buildVimPlugin { 4467 pname = "git-conflict.nvim"; 4468 - version = "2024-09-10"; 4469 src = fetchFromGitHub { 4470 owner = "akinsho"; 4471 repo = "git-conflict.nvim"; 4472 - rev = "ed1ca6dfd60bf609714f791cfa63aee33aef64ed"; 4473 - sha256 = "1qybpjynbmw341asjmc93mkc2k4jp054jh0zq620vc0vplhhx2wz"; 4474 }; 4475 meta.homepage = "https://github.com/akinsho/git-conflict.nvim/"; 4476 }; ··· 4549 4550 gitsigns-nvim = buildNeovimPlugin { 4551 pname = "gitsigns.nvim"; 4552 - version = "2024-11-04"; 4553 src = fetchFromGitHub { 4554 owner = "lewis6991"; 4555 repo = "gitsigns.nvim"; 4556 - rev = "4daf7022f1481edf1e8fb9947df13bb07c18e89a"; 4557 - sha256 = "0l3jmqcx17q76bhbww8dwhzif9jcsnk53xwqagdzkb4m6xzywz0l"; 4558 }; 4559 meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; 4560 }; ··· 4609 4610 go-nvim = buildVimPlugin { 4611 pname = "go.nvim"; 4612 - version = "2024-11-02"; 4613 src = fetchFromGitHub { 4614 owner = "ray-x"; 4615 repo = "go.nvim"; 4616 - rev = "2153f9ee6178dfd625b1a874eab6399fd0a2d984"; 4617 - sha256 = "1pqw04hfch36pzas76rkj1s1chwip72fb2n78isfh384v0s4rfwg"; 4618 }; 4619 meta.homepage = "https://github.com/ray-x/go.nvim/"; 4620 }; ··· 4657 4658 goto-preview = buildVimPlugin { 4659 pname = "goto-preview"; 4660 - version = "2024-06-27"; 4661 src = fetchFromGitHub { 4662 owner = "rmagatti"; 4663 repo = "goto-preview"; 4664 - rev = "1519ea3512828c944eed5b2bbb66a8f8deb92447"; 4665 - sha256 = "1ql68yzm33jqjh2argad8zgl012sg4s7xzidazmrhl4ins6y492g"; 4666 }; 4667 meta.homepage = "https://github.com/rmagatti/goto-preview/"; 4668 }; ··· 4729 4730 grug-far-nvim = buildVimPlugin { 4731 pname = "grug-far.nvim"; 4732 - version = "2024-10-16"; 4733 src = fetchFromGitHub { 4734 owner = "MagicDuck"; 4735 repo = "grug-far.nvim"; 4736 - rev = "190c03d54e8976491e6e49acb97087bf4182b079"; 4737 - sha256 = "1awfikdwh03i0wjdfr9aa2nwzsmgmiv9dqpfq0613z8wr8dw8xn3"; 4738 }; 4739 meta.homepage = "https://github.com/MagicDuck/grug-far.nvim/"; 4740 }; ··· 4763 meta.homepage = "https://github.com/luisiacc/gruvbox-baby/"; 4764 }; 4765 4766 - gruvbox-community = buildVimPlugin { 4767 - pname = "gruvbox-community"; 4768 - version = "2024-01-21"; 4769 - src = fetchFromGitHub { 4770 - owner = "gruvbox-community"; 4771 - repo = "gruvbox"; 4772 - rev = "143a3b8babcfd2bce6c99d6ba496942647c3e30b"; 4773 - sha256 = "00wg2m2591fw3d9almwdg39xvwxzz2xid86n536ygai81cirw351"; 4774 - }; 4775 - meta.homepage = "https://github.com/gruvbox-community/gruvbox/"; 4776 - }; 4777 - 4778 gruvbox-flat-nvim = buildVimPlugin { 4779 pname = "gruvbox-flat.nvim"; 4780 version = "2023-05-27"; ··· 4930 meta.homepage = "https://github.com/ThePrimeagen/harpoon/"; 4931 }; 4932 4933 - harpoon2 = buildVimPlugin { 4934 - pname = "harpoon2"; 4935 - version = "2024-04-09"; 4936 - src = fetchFromGitHub { 4937 - owner = "ThePrimeagen"; 4938 - repo = "harpoon"; 4939 - rev = "0378a6c428a0bed6a2781d459d7943843f374bce"; 4940 - sha256 = "129d51cp89dir809yakiw0b7kkjqww7s5h437j8ppn1lq7ghg50m"; 4941 - }; 4942 - meta.homepage = "https://github.com/ThePrimeagen/harpoon/"; 4943 - }; 4944 - 4945 haskell-scope-highlighting-nvim = buildVimPlugin { 4946 pname = "haskell-scope-highlighting.nvim"; 4947 version = "2024-07-02"; ··· 5065 5066 highlight-undo-nvim = buildVimPlugin { 5067 pname = "highlight-undo.nvim"; 5068 - version = "2024-10-20"; 5069 src = fetchFromGitHub { 5070 owner = "tzachar"; 5071 repo = "highlight-undo.nvim"; 5072 - rev = "c87a6ec1ded241ef223269077cbd5f97a6f0d5bf"; 5073 - sha256 = "0rxsqa5i37sgf1n67xy11qsfzc0x78bkw7jsp8lwn98nvsddbp6c"; 5074 }; 5075 meta.homepage = "https://github.com/tzachar/highlight-undo.nvim/"; 5076 }; ··· 5269 5270 image-nvim = buildNeovimPlugin { 5271 pname = "image.nvim"; 5272 - version = "2024-11-03"; 5273 src = fetchFromGitHub { 5274 owner = "3rd"; 5275 repo = "image.nvim"; 5276 - rev = "3e0fb47c9ea92a0ba9468c2ae533f30539505a1a"; 5277 - sha256 = "0yryrlscnlk9bqklm4yw2grg11h915spl1qbs3m8zyhsmnakpbrb"; 5278 }; 5279 meta.homepage = "https://github.com/3rd/image.nvim/"; 5280 }; ··· 5365 5366 indent-blankline-nvim = buildVimPlugin { 5367 pname = "indent-blankline.nvim"; 5368 - version = "2024-10-29"; 5369 src = fetchFromGitHub { 5370 owner = "lukas-reineke"; 5371 repo = "indent-blankline.nvim"; 5372 - rev = "04e44b09ee3ff189c69ab082edac1ef7ae2e256c"; 5373 - sha256 = "08vf6k69p6gnciawabgy11sd5vy94i8087jxwch07plr9kfginx1"; 5374 }; 5375 meta.homepage = "https://github.com/lukas-reineke/indent-blankline.nvim/"; 5376 }; ··· 5632 5633 kanagawa-nvim = buildVimPlugin { 5634 pname = "kanagawa.nvim"; 5635 - version = "2024-08-27"; 5636 src = fetchFromGitHub { 5637 owner = "rebelot"; 5638 repo = "kanagawa.nvim"; 5639 - rev = "f491b0fe68fffbece7030181073dfe51f45cda81"; 5640 - sha256 = "0zfgynkk2jpdkdh30zjazb2i32d2h3iz7xg3v2aviqfg4dcazqjj"; 5641 }; 5642 meta.homepage = "https://github.com/rebelot/kanagawa.nvim/"; 5643 }; ··· 5716 5717 kulala-nvim = buildVimPlugin { 5718 pname = "kulala.nvim"; 5719 - version = "2024-11-03"; 5720 src = fetchFromGitHub { 5721 owner = "mistweaverco"; 5722 repo = "kulala.nvim"; 5723 - rev = "3fc84b71f250408bfc4d863f663c5e273f42180a"; 5724 - sha256 = "0jrl2522k922y5n6iycyawvq3wm7bap221ax57h9wbk582yh33jr"; 5725 }; 5726 meta.homepage = "https://github.com/mistweaverco/kulala.nvim/"; 5727 }; ··· 5740 5741 langmapper-nvim = buildVimPlugin { 5742 pname = "langmapper.nvim"; 5743 - version = "2024-10-22"; 5744 src = fetchFromGitHub { 5745 owner = "Wansmer"; 5746 repo = "langmapper.nvim"; 5747 - rev = "95d99504e823a7ae7e5f68567a86d76f8d24c082"; 5748 - sha256 = "0zs9yg9iknr2klvkq92fhd5z8w31k1nz0bc5h2rjhcvhis3mq1fm"; 5749 }; 5750 meta.homepage = "https://github.com/Wansmer/langmapper.nvim/"; 5751 }; ··· 5776 5777 lazy-lsp-nvim = buildVimPlugin { 5778 pname = "lazy-lsp.nvim"; 5779 - version = "2024-10-14"; 5780 src = fetchFromGitHub { 5781 owner = "dundalek"; 5782 repo = "lazy-lsp.nvim"; 5783 - rev = "8cfb2329a4cdc8e1eefe47dc18fb8e8c6dbdf183"; 5784 - sha256 = "0zp44fkbp63y4bvxgabhlc2w7pnjwmwcjyf7ka14lhkxnfj2fbdi"; 5785 }; 5786 meta.homepage = "https://github.com/dundalek/lazy-lsp.nvim/"; 5787 }; 5788 5789 lazy-nvim = buildVimPlugin { 5790 pname = "lazy.nvim"; 5791 - version = "2024-11-04"; 5792 src = fetchFromGitHub { 5793 owner = "folke"; 5794 repo = "lazy.nvim"; 5795 - rev = "b1134ab82ee4279e31f7ddf7e34b2a99eb9b7bc9"; 5796 - sha256 = "0m4xh2ahybsh1jfrymdzvxa8az7pjgsn3a0z71k1hhr1lj6vbv4w"; 5797 }; 5798 meta.homepage = "https://github.com/folke/lazy.nvim/"; 5799 }; ··· 5824 5825 lean-nvim = buildVimPlugin { 5826 pname = "lean.nvim"; 5827 - version = "2024-11-04"; 5828 src = fetchFromGitHub { 5829 owner = "Julian"; 5830 repo = "lean.nvim"; 5831 - rev = "de515ccaf139f766087b0fa38af30e1bfa448ee7"; 5832 - sha256 = "0jhp0i5yfbzkykmlyd3b1ik902db5lrwspdhya9339v6wvf6j4ff"; 5833 }; 5834 meta.homepage = "https://github.com/Julian/lean.nvim/"; 5835 }; ··· 5884 5885 legendary-nvim = buildVimPlugin { 5886 pname = "legendary.nvim"; 5887 - version = "2024-11-05"; 5888 src = fetchFromGitHub { 5889 owner = "mrjones2014"; 5890 repo = "legendary.nvim"; 5891 - rev = "5086c5ac463ce0288f0eea7e9d23e529edf770fd"; 5892 - sha256 = "1dgc3l9phm0pf15af3p1i4ahlkclphv2s4syngwq8bpxx702v24j"; 5893 }; 5894 meta.homepage = "https://github.com/mrjones2014/legendary.nvim/"; 5895 }; ··· 6110 meta.homepage = "https://github.com/ldelossa/litee-filetree.nvim/"; 6111 }; 6112 6113 - litee-nvim = buildVimPlugin { 6114 - pname = "litee.nvim"; 6115 - version = "2024-06-06"; 6116 - src = fetchFromGitHub { 6117 - owner = "ldelossa"; 6118 - repo = "litee.nvim"; 6119 - rev = "4efaf373322d9e71eaff31164abb393417cc6f6a"; 6120 - sha256 = "13ajn5xply01k4wpsl0v37igama8pgy0kz1lgvv7jn8b1m04yh9x"; 6121 - }; 6122 - meta.homepage = "https://github.com/ldelossa/litee.nvim/"; 6123 - }; 6124 - 6125 litee-symboltree-nvim = buildVimPlugin { 6126 pname = "litee-symboltree.nvim"; 6127 version = "2022-09-28"; ··· 6134 meta.homepage = "https://github.com/ldelossa/litee-symboltree.nvim/"; 6135 }; 6136 6137 live-command-nvim = buildVimPlugin { 6138 pname = "live-command.nvim"; 6139 version = "2024-09-20"; ··· 6232 6233 lsp-zero-nvim = buildVimPlugin { 6234 pname = "lsp-zero.nvim"; 6235 - version = "2024-07-21"; 6236 src = fetchFromGitHub { 6237 owner = "VonHeikemen"; 6238 repo = "lsp-zero.nvim"; 6239 - rev = "56db3d5ce5476b183783160e6045f7337ba12b83"; 6240 - sha256 = "0drk31bkws1bhjl0l2z7vmcqjn3y1bvhic78dr63j5j9wiyaxzvq"; 6241 }; 6242 meta.homepage = "https://github.com/VonHeikemen/lsp-zero.nvim/"; 6243 }; ··· 6339 6340 lualine-nvim = buildVimPlugin { 6341 pname = "lualine.nvim"; 6342 - version = "2024-11-01"; 6343 src = fetchFromGitHub { 6344 owner = "nvim-lualine"; 6345 repo = "lualine.nvim"; 6346 - rev = "640260d7c2d98779cab89b1e7088ab14ea354a02"; 6347 - sha256 = "0vd9n7mxzgasr8i454vg3698l25lzkci2bz0s8rwhkmq5n6sdfh4"; 6348 }; 6349 meta.homepage = "https://github.com/nvim-lualine/lualine.nvim/"; 6350 }; 6351 6352 luasnip = buildNeovimPlugin { 6353 pname = "luasnip"; 6354 - version = "2024-11-03"; 6355 src = fetchFromGitHub { 6356 owner = "l3mon4d3"; 6357 repo = "luasnip"; 6358 - rev = "4bf40748f6fe939bdcb69325918535b1c5edea51"; 6359 - sha256 = "1912qksj1j9rd0q3vq73nzf18yq6hazfa0l6wwkpvgxyjsbc0fsq"; 6360 fetchSubmodules = true; 6361 }; 6362 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; ··· 6446 meta.homepage = "https://github.com/winston0410/mark-radar.nvim/"; 6447 }; 6448 6449 markdown-nvim = buildVimPlugin { 6450 pname = "markdown.nvim"; 6451 version = "2024-06-25"; ··· 6458 meta.homepage = "https://github.com/tadmccorkle/markdown.nvim/"; 6459 }; 6460 6461 - markdown-preview-nvim = buildVimPlugin { 6462 - pname = "markdown-preview.nvim"; 6463 - version = "2023-10-17"; 6464 - src = fetchFromGitHub { 6465 - owner = "iamcco"; 6466 - repo = "markdown-preview.nvim"; 6467 - rev = "a923f5fc5ba36a3b17e289dc35dc17f66d0548ee"; 6468 - sha256 = "06187wxcj2ramhimkrgwq1q8fnndzdywljc606n3pr11y8dxs5ac"; 6469 - }; 6470 - meta.homepage = "https://github.com/iamcco/markdown-preview.nvim/"; 6471 - }; 6472 - 6473 markid = buildVimPlugin { 6474 pname = "markid"; 6475 version = "2023-10-18"; ··· 6519 meta.homepage = "https://github.com/williamboman/mason-lspconfig.nvim/"; 6520 }; 6521 6522 mason-nvim = buildVimPlugin { 6523 pname = "mason.nvim"; 6524 version = "2024-07-16"; ··· 6531 meta.homepage = "https://github.com/williamboman/mason.nvim/"; 6532 }; 6533 6534 - mason-tool-installer-nvim = buildVimPlugin { 6535 - pname = "mason-tool-installer.nvim"; 6536 - version = "2024-06-03"; 6537 - src = fetchFromGitHub { 6538 - owner = "WhoIsSethDaniel"; 6539 - repo = "mason-tool-installer.nvim"; 6540 - rev = "c5e07b8ff54187716334d585db34282e46fa2932"; 6541 - sha256 = "1zpf9v6abg482hbpi0mg0v2g67jvvnxd25aiclyh7bb24s8ljc0y"; 6542 - }; 6543 - meta.homepage = "https://github.com/WhoIsSethDaniel/mason-tool-installer.nvim/"; 6544 - }; 6545 - 6546 matchit-zip = buildVimPlugin { 6547 pname = "matchit.zip"; 6548 version = "2010-10-18"; ··· 6579 meta.homepage = "https://github.com/kaicataldo/material.vim/"; 6580 }; 6581 6582 - mattn-calendar-vim = buildVimPlugin { 6583 - pname = "mattn-calendar-vim"; 6584 - version = "2022-02-10"; 6585 - src = fetchFromGitHub { 6586 - owner = "mattn"; 6587 - repo = "calendar-vim"; 6588 - rev = "2083a41e2d310f9bbbbf644517f30e901f1fb04d"; 6589 - sha256 = "13wakcprkh93i7afykkpavxqvxssjh573pjjljsgip3y3778ms5q"; 6590 - }; 6591 - meta.homepage = "https://github.com/mattn/calendar-vim/"; 6592 - }; 6593 - 6594 mayansmoke = buildVimPlugin { 6595 pname = "mayansmoke"; 6596 version = "2010-10-18"; ··· 6617 6618 melange-nvim = buildVimPlugin { 6619 pname = "melange-nvim"; 6620 - version = "2024-09-21"; 6621 src = fetchFromGitHub { 6622 owner = "savq"; 6623 repo = "melange-nvim"; 6624 - rev = "706a33f0a883fae9ec00ad648586792248a0575e"; 6625 - sha256 = "14jbkr4j4s2kg4b0bp0d2whjrj633dlhglqzg672aiyagcrbw7bm"; 6626 }; 6627 meta.homepage = "https://github.com/savq/melange-nvim/"; 6628 }; ··· 6675 meta.homepage = "https://github.com/hadronized/mind.nvim/"; 6676 }; 6677 6678 mini-ai = buildVimPlugin { 6679 pname = "mini.ai"; 6680 - version = "2024-09-28"; 6681 src = fetchFromGitHub { 6682 owner = "echasnovski"; 6683 repo = "mini.ai"; 6684 - rev = "9b9b7cfa38b4871c3e44cfe89cf6d53fd40684d9"; 6685 - sha256 = "0l2y5njrgnlcsdazhgkjb02qz2wj4q225n5qa2r88d9nvbjp1b9a"; 6686 }; 6687 meta.homepage = "https://github.com/echasnovski/mini.ai/"; 6688 }; ··· 6761 6762 mini-clue = buildVimPlugin { 6763 pname = "mini.clue"; 6764 - version = "2024-10-26"; 6765 src = fetchFromGitHub { 6766 owner = "echasnovski"; 6767 repo = "mini.clue"; 6768 - rev = "bea794f5207d498467f4969c56616845f4616010"; 6769 - sha256 = "0ccfwmd9v2kw6dv4ah3wwa65frj5bvm9q377jv2br038clzbkimr"; 6770 }; 6771 meta.homepage = "https://github.com/echasnovski/mini.clue/"; 6772 }; ··· 6797 6798 mini-completion = buildVimPlugin { 6799 pname = "mini.completion"; 6800 - version = "2024-09-06"; 6801 src = fetchFromGitHub { 6802 owner = "echasnovski"; 6803 repo = "mini.completion"; 6804 - rev = "2b877876ec7c77973a512083e2aa3f13c61c2abe"; 6805 - sha256 = "1ryp0qjb82p93afk5rvsrzv6rajr70z9d32n5wxvm6hz2nryzzx3"; 6806 }; 6807 meta.homepage = "https://github.com/echasnovski/mini.completion/"; 6808 }; ··· 6857 6858 mini-extra = buildVimPlugin { 6859 pname = "mini.extra"; 6860 - version = "2024-09-28"; 6861 src = fetchFromGitHub { 6862 owner = "echasnovski"; 6863 repo = "mini.extra"; 6864 - rev = "67b38cb3a1b9523c0fae96ced6cdf06e00c1cbee"; 6865 - sha256 = "1l5s55sk6y2231rm45kbd6054v1rqlpbg4mc91s2vby97v2mclpz"; 6866 }; 6867 meta.homepage = "https://github.com/echasnovski/mini.extra/"; 6868 }; ··· 6891 meta.homepage = "https://github.com/echasnovski/mini.fuzzy/"; 6892 }; 6893 6894 - mini-git = buildVimPlugin { 6895 - pname = "mini-git"; 6896 - version = "2024-09-07"; 6897 - src = fetchFromGitHub { 6898 - owner = "echasnovski"; 6899 - repo = "mini-git"; 6900 - rev = "f75ae3855f595e55e1a8a96521ffa01012632b28"; 6901 - sha256 = "1d7yy9lbz5ysk5519j25y1gciyq1a2kidzppn7vg0bzwcf6302qg"; 6902 - }; 6903 - meta.homepage = "https://github.com/echasnovski/mini-git/"; 6904 - }; 6905 - 6906 mini-hipatterns = buildVimPlugin { 6907 pname = "mini.hipatterns"; 6908 version = "2024-09-27"; ··· 6929 6930 mini-icons = buildVimPlugin { 6931 pname = "mini.icons"; 6932 - version = "2024-09-26"; 6933 src = fetchFromGitHub { 6934 owner = "echasnovski"; 6935 repo = "mini.icons"; 6936 - rev = "a2742459f0ee32806c2438ca06b4d8b331f3f4d4"; 6937 - sha256 = "0dw6kdq8c5zsry252mv4jz0hg0x76ni1229s65fbkc7m59553aac"; 6938 }; 6939 meta.homepage = "https://github.com/echasnovski/mini.icons/"; 6940 }; ··· 7025 7026 mini-nvim = buildVimPlugin { 7027 pname = "mini.nvim"; 7028 - version = "2024-11-04"; 7029 src = fetchFromGitHub { 7030 owner = "echasnovski"; 7031 repo = "mini.nvim"; 7032 - rev = "c8bc67a35e627908da644c5f8cd26b3f987f2627"; 7033 - sha256 = "0h1563cgd0avh9709x2aq0ynf9r2mrh69j887zkp9bdc84rza019"; 7034 }; 7035 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 7036 }; ··· 7061 7062 mini-pick = buildVimPlugin { 7063 pname = "mini.pick"; 7064 - version = "2024-10-22"; 7065 src = fetchFromGitHub { 7066 owner = "echasnovski"; 7067 repo = "mini.pick"; 7068 - rev = "b7ee06ca0b692023d87a17ba855012047c6bec6f"; 7069 - sha256 = "1f2r6qzzwg3fpmwih5n07m3zq0b8pi629m24dgc1mp8sdpkd1sa3"; 7070 }; 7071 meta.homepage = "https://github.com/echasnovski/mini.pick/"; 7072 }; ··· 7265 7266 molten-nvim = buildVimPlugin { 7267 pname = "molten-nvim"; 7268 - version = "2024-11-04"; 7269 src = fetchFromGitHub { 7270 owner = "benlubas"; 7271 repo = "molten-nvim"; 7272 - rev = "bdc085fe991ed232cf37b4206bc47a3a98a27cad"; 7273 - sha256 = "05j42nlm3ljj07kjnzh4xv4zv1akss4anz7i5aksa7r1czssprsl"; 7274 }; 7275 meta.homepage = "https://github.com/benlubas/molten-nvim/"; 7276 }; ··· 7613 7614 neoconf-nvim = buildVimPlugin { 7615 pname = "neoconf.nvim"; 7616 - version = "2024-11-05"; 7617 src = fetchFromGitHub { 7618 owner = "folke"; 7619 repo = "neoconf.nvim"; 7620 - rev = "e2528134b185e68f8c7a5584de46a3269037de6b"; 7621 - sha256 = "0h7hxg013rwmd50l8dl3qshw6577qby267cbhaylyy6p1rlpmfwk"; 7622 }; 7623 meta.homepage = "https://github.com/folke/neoconf.nvim/"; 7624 }; ··· 7673 7674 neogen = buildVimPlugin { 7675 pname = "neogen"; 7676 - version = "2024-08-22"; 7677 src = fetchFromGitHub { 7678 owner = "danymat"; 7679 repo = "neogen"; 7680 - rev = "e932ba918b56723436b77aa3efb844a11b2851ab"; 7681 - sha256 = "1mwa20fvj6k7jzaw0lv0h2b9hr62i48i487mrxqf2nnwxiad7xfk"; 7682 }; 7683 meta.homepage = "https://github.com/danymat/neogen/"; 7684 }; 7685 7686 neogit = buildVimPlugin { 7687 pname = "neogit"; 7688 - version = "2024-11-05"; 7689 src = fetchFromGitHub { 7690 owner = "NeogitOrg"; 7691 repo = "neogit"; 7692 - rev = "bae3412ea9ac31292e14e9090dde7cb118cd52c1"; 7693 - sha256 = "07pxksgwrzszidx32kwwpvd7f15bn3pj37jvy6imwvwmfvzza43x"; 7694 }; 7695 meta.homepage = "https://github.com/NeogitOrg/neogit/"; 7696 }; ··· 7769 7770 neoscroll-nvim = buildVimPlugin { 7771 pname = "neoscroll.nvim"; 7772 - version = "2024-09-07"; 7773 src = fetchFromGitHub { 7774 owner = "karb94"; 7775 repo = "neoscroll.nvim"; 7776 - rev = "4e0428a41c6ec191df543fc95349f6e1c598e53f"; 7777 - sha256 = "19aw68ci0wx0alv8w9j6qn4zj6s1bbf737xa4jbsxkhkwczm5689"; 7778 }; 7779 meta.homepage = "https://github.com/karb94/neoscroll.nvim/"; 7780 }; ··· 7952 7953 neotest-haskell = buildVimPlugin { 7954 pname = "neotest-haskell"; 7955 - version = "2024-11-03"; 7956 src = fetchFromGitHub { 7957 owner = "MrcJkb"; 7958 repo = "neotest-haskell"; 7959 - rev = "899e22bd671b4aa1360821d34c4a61ec20e4a6ac"; 7960 - sha256 = "15la11nkmlkyx1daxazm2rxmhnx5ninf1km5z3lx81p9z5bmh6lj"; 7961 }; 7962 meta.homepage = "https://github.com/MrcJkb/neotest-haskell/"; 7963 }; ··· 8298 meta.homepage = "https://github.com/oxfist/night-owl.nvim/"; 8299 }; 8300 8301 - nightfly = buildVimPlugin { 8302 - pname = "nightfly"; 8303 - version = "2024-11-02"; 8304 - src = fetchFromGitHub { 8305 - owner = "bluz71"; 8306 - repo = "vim-nightfly-colors"; 8307 - rev = "fe3aaa329692e7a0820a65d32406ede3e3ab3c91"; 8308 - sha256 = "10rwsvzbagwrj39jzjg70wzsd21igcjvvsna4jzif5s1gc5jwbhb"; 8309 - }; 8310 - meta.homepage = "https://github.com/bluz71/vim-nightfly-colors/"; 8311 - }; 8312 - 8313 nightfox-nvim = buildVimPlugin { 8314 pname = "nightfox.nvim"; 8315 version = "2024-09-08"; ··· 8360 8361 nlsp-settings-nvim = buildVimPlugin { 8362 pname = "nlsp-settings.nvim"; 8363 - version = "2024-11-05"; 8364 src = fetchFromGitHub { 8365 owner = "tamago324"; 8366 repo = "nlsp-settings.nvim"; 8367 - rev = "bbf22be31b52106c70006807c739b3c2090f3ce0"; 8368 - sha256 = "05nmfk96jd4skc7fxg94725193r4s67japvjxvqxsvln6fvib2pz"; 8369 }; 8370 meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; 8371 }; ··· 8420 8421 noice-nvim = buildVimPlugin { 8422 pname = "noice.nvim"; 8423 - version = "2024-11-02"; 8424 src = fetchFromGitHub { 8425 owner = "folke"; 8426 repo = "noice.nvim"; 8427 - rev = "5a78b42bec5e775f2db03bf93f6d1e0f3636306c"; 8428 - sha256 = "1byavw6ibr8zjzqfs2wpavsx348n5y0pk7p3c7k81wgy4csas4wj"; 8429 }; 8430 meta.homepage = "https://github.com/folke/noice.nvim/"; 8431 }; 8432 8433 none-ls-nvim = buildVimPlugin { 8434 pname = "none-ls.nvim"; 8435 - version = "2024-10-17"; 8436 src = fetchFromGitHub { 8437 owner = "nvimtools"; 8438 repo = "none-ls.nvim"; 8439 - rev = "dcc8cd4efdcb29275681a3c95786a816330dbca6"; 8440 - sha256 = "1na4w7daxsi25hiadffc2j4vz3zkxs3p0al0zgmgaazf36qywys0"; 8441 }; 8442 meta.homepage = "https://github.com/nvimtools/none-ls.nvim/"; 8443 }; ··· 8454 meta.homepage = "https://github.com/shaunsingh/nord.nvim/"; 8455 }; 8456 8457 - nord-vim = buildVimPlugin { 8458 - pname = "nord-vim"; 8459 - version = "2023-05-03"; 8460 - src = fetchFromGitHub { 8461 - owner = "nordtheme"; 8462 - repo = "vim"; 8463 - rev = "f13f5dfbb784deddbc1d8195f34dfd9ec73e2295"; 8464 - sha256 = "1f3k8hxf21fij776xw830f71wvl6v5qmv5h806l773c9sx2dp1rz"; 8465 - }; 8466 - meta.homepage = "https://github.com/nordtheme/vim/"; 8467 - }; 8468 - 8469 nordic-nvim = buildVimPlugin { 8470 pname = "nordic.nvim"; 8471 version = "2024-06-16"; ··· 8540 8541 nvchad = buildVimPlugin { 8542 pname = "nvchad"; 8543 - version = "2024-11-04"; 8544 src = fetchFromGitHub { 8545 owner = "nvchad"; 8546 repo = "nvchad"; 8547 - rev = "9b04b0c22bdcb21760c04a27564a421ca4234800"; 8548 - sha256 = "0ab9j96907wmlpwg60l0ga0vkvs8rydh1ml4pl30bv6aihkpjkks"; 8549 }; 8550 meta.homepage = "https://github.com/nvchad/nvchad/"; 8551 - }; 8552 - 8553 - nvchad-ui = buildVimPlugin { 8554 - pname = "nvchad-ui"; 8555 - version = "2024-11-04"; 8556 - src = fetchFromGitHub { 8557 - owner = "nvchad"; 8558 - repo = "ui"; 8559 - rev = "f2d4f351187439df6ba8637e06f60c308e3c12cf"; 8560 - sha256 = "1m4z6h4rk43h8yxd6qk9h6gifbk3mhhnb3qfkqpdx9c631vvrqf7"; 8561 - }; 8562 - meta.homepage = "https://github.com/nvchad/ui/"; 8563 }; 8564 8565 nvcode-color-schemes-vim = buildVimPlugin { ··· 8708 8709 nvim-colorizer-lua = buildVimPlugin { 8710 pname = "nvim-colorizer.lua"; 8711 - version = "2024-11-05"; 8712 src = fetchFromGitHub { 8713 owner = "nvchad"; 8714 repo = "nvim-colorizer.lua"; 8715 - rev = "e614ff5c26d085a3242e26648e90e56ba5476da2"; 8716 - sha256 = "0gd90bykm2zviy4fqfn1gcvb7014byp6039sasbzvgyl89vfg251"; 8717 }; 8718 meta.homepage = "https://github.com/nvchad/nvim-colorizer.lua/"; 8719 }; ··· 8792 8793 nvim-dap = buildVimPlugin { 8794 pname = "nvim-dap"; 8795 - version = "2024-09-28"; 8796 src = fetchFromGitHub { 8797 owner = "mfussenegger"; 8798 repo = "nvim-dap"; 8799 - rev = "7ff6936010b7222fea2caea0f67ed77f1b7c60dd"; 8800 - sha256 = "13c7c81yy7rqawjkavxafs9vy1df07cpg6grkb93f16lr56hdpfc"; 8801 }; 8802 meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; 8803 }; ··· 8948 8949 nvim-genghis = buildVimPlugin { 8950 pname = "nvim-genghis"; 8951 - version = "2024-11-03"; 8952 src = fetchFromGitHub { 8953 owner = "chrisgrieser"; 8954 repo = "nvim-genghis"; 8955 - rev = "310a949c05a35bc5a58c40feb71343d433efc376"; 8956 - sha256 = "16i3ppgaw3k2rhracm6zpblrf51yl95q8hvanxvvrjy6q9g06rkg"; 8957 }; 8958 meta.homepage = "https://github.com/chrisgrieser/nvim-genghis/"; 8959 }; ··· 8984 8985 nvim-highlight-colors = buildVimPlugin { 8986 pname = "nvim-highlight-colors"; 8987 - version = "2024-08-03"; 8988 src = fetchFromGitHub { 8989 owner = "brenoprata10"; 8990 repo = "nvim-highlight-colors"; 8991 - rev = "a411550ef85cae467b889ba7d1a96bd78332d90e"; 8992 - sha256 = "0m5kh6a7ywrkrsmy3cj4z2bdkb54pm3rl8rs1haj041zp6sa6y03"; 8993 }; 8994 meta.homepage = "https://github.com/brenoprata10/nvim-highlight-colors/"; 8995 }; ··· 9032 9033 nvim-jdtls = buildVimPlugin { 9034 pname = "nvim-jdtls"; 9035 - version = "2024-10-31"; 9036 src = fetchFromGitHub { 9037 owner = "mfussenegger"; 9038 repo = "nvim-jdtls"; 9039 - rev = "a9b5fc8cfda32df2bae94db91b4f111374a27807"; 9040 - sha256 = "1l0xl04fqddhgpy07pf8svny7yh8jj54m51rxg38zkrqhk3wr87g"; 9041 }; 9042 meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/"; 9043 }; ··· 9151 9152 nvim-lspconfig = buildVimPlugin { 9153 pname = "nvim-lspconfig"; 9154 - version = "2024-11-03"; 9155 src = fetchFromGitHub { 9156 owner = "neovim"; 9157 repo = "nvim-lspconfig"; 9158 - rev = "bc6ada4b0892b7f10852c0b8ca7209fd39a6d754"; 9159 - sha256 = "1fhxf66ypnlqbymgq4gpzi357bzdqxylmppd1ph9m0y0ygjdakpj"; 9160 }; 9161 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 9162 }; ··· 9475 9476 nvim-snippy = buildVimPlugin { 9477 pname = "nvim-snippy"; 9478 - version = "2024-09-13"; 9479 src = fetchFromGitHub { 9480 owner = "dcampos"; 9481 repo = "nvim-snippy"; 9482 - rev = "87b9a4fc514a789fca833bf540484fbda6a946b3"; 9483 - sha256 = "1xj1i17685ck259psam0qzd5hrk4ywrz1dpmrzdxbyj9m6dh906d"; 9484 }; 9485 meta.homepage = "https://github.com/dcampos/nvim-snippy/"; 9486 }; ··· 9523 9524 nvim-spider = buildVimPlugin { 9525 pname = "nvim-spider"; 9526 - version = "2024-09-14"; 9527 src = fetchFromGitHub { 9528 owner = "chrisgrieser"; 9529 repo = "nvim-spider"; 9530 - rev = "b1c542a78522d59432a827f6ec2b28f9422c7e7f"; 9531 - sha256 = "1b9ccj6qycxlcy84fdd7n7b20bmfpwyc8x4wzcakj3xymrp469d9"; 9532 }; 9533 meta.homepage = "https://github.com/chrisgrieser/nvim-spider/"; 9534 }; ··· 9583 9584 nvim-tree-lua = buildVimPlugin { 9585 pname = "nvim-tree.lua"; 9586 - version = "2024-11-03"; 9587 src = fetchFromGitHub { 9588 owner = "nvim-tree"; 9589 repo = "nvim-tree.lua"; 9590 - rev = "610a1c189bdb2b9b936169b2ea9d1838f971fa2b"; 9591 - sha256 = "119hr70829j7gnswamwsayillmk9m920dmfnr9p2kwrs0j7yq34k"; 9592 }; 9593 meta.homepage = "https://github.com/nvim-tree/nvim-tree.lua/"; 9594 }; 9595 9596 nvim-treesitter = buildVimPlugin { 9597 pname = "nvim-treesitter"; 9598 - version = "2024-11-05"; 9599 src = fetchFromGitHub { 9600 owner = "nvim-treesitter"; 9601 repo = "nvim-treesitter"; 9602 - rev = "7dc8aabe86db8c2f23520e8334f7584f83e84342"; 9603 - sha256 = "1xizf90767kh3yw1nrjz3xd4lxq71x92r99hr9iq3bpb50a698s5"; 9604 }; 9605 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 9606 }; 9607 9608 nvim-treesitter-context = buildVimPlugin { 9609 pname = "nvim-treesitter-context"; 9610 - version = "2024-10-30"; 9611 src = fetchFromGitHub { 9612 owner = "nvim-treesitter"; 9613 repo = "nvim-treesitter-context"; 9614 - rev = "a2a334900d3643de585ac5c6140b03403454124f"; 9615 - sha256 = "1dvfrnhx2mg5fz7vin574pqaa60yp265l897kf9padyz8hp7barc"; 9616 }; 9617 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; 9618 }; ··· 9727 9728 nvim-ufo = buildVimPlugin { 9729 pname = "nvim-ufo"; 9730 - version = "2024-10-28"; 9731 src = fetchFromGitHub { 9732 owner = "kevinhwang91"; 9733 repo = "nvim-ufo"; 9734 - rev = "522d719d421fc42b95577d9624048d8348d326ea"; 9735 - sha256 = "09y5irqcwwa39xs1jz68iw9p19ysym28mln8jfjn0hihxdiw1q7v"; 9736 }; 9737 meta.homepage = "https://github.com/kevinhwang91/nvim-ufo/"; 9738 }; ··· 9883 9884 octo-nvim = buildVimPlugin { 9885 pname = "octo.nvim"; 9886 - version = "2024-11-04"; 9887 src = fetchFromGitHub { 9888 owner = "pwntester"; 9889 repo = "octo.nvim"; 9890 - rev = "1f3115bb88f15a12d339568fe0f1d75bc45db989"; 9891 - sha256 = "09cpl37kr1fxvgn22402bcfz97fkwmyiwghcsd3x5m5di3b80rgm"; 9892 }; 9893 meta.homepage = "https://github.com/pwntester/octo.nvim/"; 9894 }; 9895 9896 oil-nvim = buildVimPlugin { 9897 pname = "oil.nvim"; 9898 - version = "2024-10-30"; 9899 src = fetchFromGitHub { 9900 owner = "stevearc"; 9901 repo = "oil.nvim"; 9902 - rev = "52cc8a1fb35ea6ce1df536143add7ce7215c63c0"; 9903 - sha256 = "01anxa0ha9h2rc0dkhxxni1hl1g0kb6xav79bng7qis11jb6sjwv"; 9904 fetchSubmodules = true; 9905 }; 9906 meta.homepage = "https://github.com/stevearc/oil.nvim/"; ··· 9968 9969 onedark-nvim = buildVimPlugin { 9970 pname = "onedark.nvim"; 9971 - version = "2024-07-05"; 9972 src = fetchFromGitHub { 9973 owner = "navarasu"; 9974 repo = "onedark.nvim"; 9975 - rev = "fae34f7c635797f4bf62fb00e7d0516efa8abe37"; 9976 - sha256 = "1l5kvpnmp83mdm8xw28rgc26rzksywvbw978fsksxrdq0vils1ac"; 9977 }; 9978 meta.homepage = "https://github.com/navarasu/onedark.nvim/"; 9979 }; ··· 10004 10005 onedarkpro-nvim = buildVimPlugin { 10006 pname = "onedarkpro.nvim"; 10007 - version = "2024-11-04"; 10008 src = fetchFromGitHub { 10009 owner = "olimorris"; 10010 repo = "onedarkpro.nvim"; 10011 - rev = "6e0016ef3e3df1a4bb30821524b814b53c1e8bf7"; 10012 - sha256 = "0qv78nvzw3fjh14ij6cb7krzx3w40gsb8gjv9cgvvs4mb6ix9mph"; 10013 }; 10014 meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; 10015 }; ··· 10136 10137 overseer-nvim = buildVimPlugin { 10138 pname = "overseer.nvim"; 10139 - version = "2024-10-26"; 10140 src = fetchFromGitHub { 10141 owner = "stevearc"; 10142 repo = "overseer.nvim"; 10143 - rev = "c416be50c2715a7f631d67e21154b8e6cd873ca3"; 10144 - sha256 = "0iincr9z0k9jy7j46vwgf1f2v16z74mm0z4m6hqx6w8rjaiiv3s0"; 10145 fetchSubmodules = true; 10146 }; 10147 meta.homepage = "https://github.com/stevearc/overseer.nvim/"; ··· 10315 meta.homepage = "https://github.com/lifepillar/pgsql.vim/"; 10316 }; 10317 10318 - phha-zenburn = buildVimPlugin { 10319 - pname = "phha-zenburn"; 10320 - version = "2024-01-31"; 10321 - src = fetchFromGitHub { 10322 - owner = "phha"; 10323 - repo = "zenburn.nvim"; 10324 - rev = "f5ee12b30119499c7fa7f95719cd7c5aab9f9f29"; 10325 - sha256 = "10wn4b1awk4bzb7isfqbp3pqzi2ifnmcs7zyrwhna1dpwwdpgvbr"; 10326 - }; 10327 - meta.homepage = "https://github.com/phha/zenburn.nvim/"; 10328 - }; 10329 - 10330 pig-vim = buildVimPlugin { 10331 pname = "pig.vim"; 10332 version = "2017-06-08"; ··· 10546 10547 pum-vim = buildVimPlugin { 10548 pname = "pum.vim"; 10549 - version = "2024-11-03"; 10550 src = fetchFromGitHub { 10551 owner = "Shougo"; 10552 repo = "pum.vim"; 10553 - rev = "a1838422cde632edaceeaa1afee689044be24678"; 10554 - sha256 = "0z2bwcyj719y3i7p1pa91k6x3bj99dr4f70z1kvfg2sjgr31i652"; 10555 }; 10556 meta.homepage = "https://github.com/Shougo/pum.vim/"; 10557 }; 10558 10559 - pure-lua = buildVimPlugin { 10560 - pname = "pure-lua"; 10561 - version = "2021-05-16"; 10562 - src = fetchFromGitHub { 10563 - owner = "shaunsingh"; 10564 - repo = "moonlight.nvim"; 10565 - rev = "e24e4218ec680b6396532808abf57ca0ada82e66"; 10566 - sha256 = "0m9w3fpypsqxydjd93arbjqb5576nl40iy27i4ijlrqhgdhl49y3"; 10567 - }; 10568 - meta.homepage = "https://github.com/shaunsingh/moonlight.nvim/"; 10569 - }; 10570 - 10571 purescript-vim = buildVimPlugin { 10572 pname = "purescript-vim"; 10573 version = "2023-02-06"; ··· 10631 10632 quarto-nvim = buildVimPlugin { 10633 pname = "quarto-nvim"; 10634 - version = "2024-10-09"; 10635 src = fetchFromGitHub { 10636 owner = "quarto-dev"; 10637 repo = "quarto-nvim"; 10638 - rev = "23083a0152799ca7263ac9ae53d768d4dd93d24e"; 10639 - sha256 = "0mamwyjgb1l4bvy741ixqyzr4ggjhzh4nsqr6rdb22p98g465r15"; 10640 }; 10641 meta.homepage = "https://github.com/quarto-dev/quarto-nvim/"; 10642 }; ··· 10703 10704 rainbow-delimiters-nvim = buildVimPlugin { 10705 pname = "rainbow-delimiters.nvim"; 10706 - version = "2024-11-03"; 10707 src = fetchgit { 10708 url = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim"; 10709 - rev = "e0f9b3efe150724af2d2ed59997d5ece373840e3"; 10710 - sha256 = "0sccvcsdcr8wbw62ld9bmwf1iq2yqnzx1l19w5yxb46g6adxc8h5"; 10711 }; 10712 meta.homepage = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim"; 10713 }; ··· 10846 10847 render-markdown-nvim = buildVimPlugin { 10848 pname = "render-markdown.nvim"; 10849 - version = "2024-11-04"; 10850 src = fetchFromGitHub { 10851 owner = "MeanderingProgrammer"; 10852 repo = "render-markdown.nvim"; 10853 - rev = "4ec7a51856e9324b2b758afe73b64dd05396a9a8"; 10854 - sha256 = "07gr2fnjr3ddrzmw9jg2gndgwx0n88f1z075k086mfhcwk3lwqi3"; 10855 }; 10856 meta.homepage = "https://github.com/MeanderingProgrammer/render-markdown.nvim/"; 10857 }; ··· 10882 10883 rest-nvim = buildNeovimPlugin { 10884 pname = "rest.nvim"; 10885 - version = "2024-10-11"; 10886 src = fetchFromGitHub { 10887 owner = "rest-nvim"; 10888 repo = "rest.nvim"; 10889 - rev = "113dce7749eb22b84cbde052d1cdc1f70702ed58"; 10890 - sha256 = "0cjck6c2qpa13rll3n1i0a97kpzlzpmk93nl2c4lvgplc3xp6zkf"; 10891 fetchSubmodules = true; 10892 }; 10893 meta.homepage = "https://github.com/rest-nvim/rest.nvim/"; 10894 }; 10895 10896 - restore-view-vim = buildVimPlugin { 10897 - pname = "restore-view-vim"; 10898 - version = "2014-11-21"; 10899 - src = fetchFromGitHub { 10900 - owner = "vim-scripts"; 10901 - repo = "restore_view.vim"; 10902 - rev = "8b933436e3ab8dec120841027183f0d72a4e2096"; 10903 - sha256 = "1kmhsbgscbij3rd2f8ahv9qmhw8jppgvfnqb45f81awmmqd9l4bn"; 10904 - }; 10905 - meta.homepage = "https://github.com/vim-scripts/restore_view.vim/"; 10906 - }; 10907 - 10908 riv-vim = buildVimPlugin { 10909 pname = "riv.vim"; 10910 version = "2024-03-19"; ··· 10951 sha256 = "1bppr0bcffvp0zz14dbparz0smrbl2lrbwxbv5rnam5d56dlkz7k"; 10952 }; 10953 meta.homepage = "https://github.com/ron-rs/ron.vim/"; 10954 - }; 10955 - 10956 - rose-pine = buildVimPlugin { 10957 - pname = "rose-pine"; 10958 - version = "2024-10-23"; 10959 - src = fetchFromGitHub { 10960 - owner = "rose-pine"; 10961 - repo = "neovim"; 10962 - rev = "07a887a7bef4aacea8c7caebaf8cbf808cdc7a8e"; 10963 - sha256 = "00gyn9s5c76fk1sqyg48aldbq2d8m33xia48vik8grj9wp12kbpx"; 10964 - }; 10965 - meta.homepage = "https://github.com/rose-pine/neovim/"; 10966 }; 10967 10968 roslyn-nvim = buildVimPlugin { ··· 11049 meta.homepage = "https://github.com/vmware-archive/salt-vim/"; 11050 }; 11051 11052 - samodostal-image-nvim = buildVimPlugin { 11053 - pname = "samodostal-image-nvim"; 11054 - version = "2024-01-07"; 11055 - src = fetchFromGitHub { 11056 - owner = "samodostal"; 11057 - repo = "image.nvim"; 11058 - rev = "acbd1d7d64ac0643021a6146eb0557e7c2e793d0"; 11059 - sha256 = "0s5fxlc7igmvgpmpry1vkrl4xav37cx94ay1sg246y7y2j4j5l56"; 11060 - }; 11061 - meta.homepage = "https://github.com/samodostal/image.nvim/"; 11062 - }; 11063 - 11064 satellite-nvim = buildVimPlugin { 11065 pname = "satellite.nvim"; 11066 version = "2024-09-30"; ··· 11246 pname = "skim.vim"; 11247 version = "2023-05-25"; 11248 src = fetchFromGitHub { 11249 - owner = "lotabout"; 11250 repo = "skim.vim"; 11251 rev = "aa2a5c44a6640843868cc5c1444abc0093e90e5a"; 11252 sha256 = "0gp0ws1l5d898ffx6s1kgiz3ri0mhbya2n2fh1z6dbqv52b18n08"; 11253 }; 11254 - meta.homepage = "https://github.com/lotabout/skim.vim/"; 11255 }; 11256 11257 sky-color-clock-vim = buildVimPlugin { ··· 11292 11293 smart-splits-nvim = buildVimPlugin { 11294 pname = "smart-splits.nvim"; 11295 - version = "2024-11-05"; 11296 src = fetchFromGitHub { 11297 owner = "mrjones2014"; 11298 repo = "smart-splits.nvim"; 11299 - rev = "11600d75e1b57e9fe1f3ca880a917485fc399e8c"; 11300 - sha256 = "1xhhzcywlig49av0r01b4qlk21yjd7a2qzxc9yvqymlqa7sp0phx"; 11301 }; 11302 meta.homepage = "https://github.com/mrjones2014/smart-splits.nvim/"; 11303 }; ··· 11328 11329 smartyank-nvim = buildVimPlugin { 11330 pname = "smartyank.nvim"; 11331 - version = "2024-03-05"; 11332 src = fetchFromGitHub { 11333 owner = "ibhagwan"; 11334 repo = "smartyank.nvim"; 11335 - rev = "d9e078fe08d6466e37ea45ac446a9f60e6866789"; 11336 - sha256 = "13l8mj2wp8a3n7n5k7c1pdywv6l8rlgahwg8mnbnk11q7i03a1y3"; 11337 }; 11338 meta.homepage = "https://github.com/ibhagwan/smartyank.nvim/"; 11339 }; 11340 11341 snacks-nvim = buildVimPlugin { 11342 pname = "snacks.nvim"; 11343 - version = "2024-11-07"; 11344 src = fetchFromGitHub { 11345 owner = "folke"; 11346 repo = "snacks.nvim"; 11347 - rev = "334895c5bb2ed04f65800abaeb91ccb0487b0f1f"; 11348 - sha256 = "uKAdjRLUtKi6FlE0IHGlnW0Bv2hQhoTRiarvwyU0YaE="; 11349 }; 11350 meta.homepage = "https://github.com/folke/snacks.nvim/"; 11351 }; ··· 11653 11654 statuscol-nvim = buildVimPlugin { 11655 pname = "statuscol.nvim"; 11656 - version = "2024-10-16"; 11657 src = fetchFromGitHub { 11658 owner = "luukvbaal"; 11659 repo = "statuscol.nvim"; 11660 - rev = "5998d16044159ad3779f62c45e756c555e3051f0"; 11661 - sha256 = "1irwr533hn5321wglrl08cvnk4jwdnyh1zs9433cffl0lzf86a1b"; 11662 }; 11663 meta.homepage = "https://github.com/luukvbaal/statuscol.nvim/"; 11664 }; 11665 11666 stay-centered-nvim = buildVimPlugin { 11667 pname = "stay-centered.nvim"; 11668 - version = "2024-10-09"; 11669 src = fetchFromGitHub { 11670 owner = "arnamak"; 11671 repo = "stay-centered.nvim"; 11672 - rev = "c28430fe49615680587458914070d7bd1d8782cc"; 11673 - sha256 = "0gwvvzw4vv6v7r9bzfvzj7lkvhx64hsb3nn8vp12jsl3g5rqxrvm"; 11674 }; 11675 meta.homepage = "https://github.com/arnamak/stay-centered.nvim/"; 11676 }; ··· 11846 11847 tabby-nvim = buildVimPlugin { 11848 pname = "tabby.nvim"; 11849 - version = "2024-09-16"; 11850 src = fetchFromGitHub { 11851 owner = "nanozuki"; 11852 repo = "tabby.nvim"; 11853 - rev = "c58d9803f9526b0c8c8b7bfd43822764e33b30ba"; 11854 - sha256 = "1jx0z3hi9ic80l50a0qz8pffv258mdi6whlfy2x680qb5hm8p74h"; 11855 }; 11856 meta.homepage = "https://github.com/nanozuki/tabby.nvim/"; 11857 }; ··· 11955 11956 tagbar = buildVimPlugin { 11957 pname = "tagbar"; 11958 - version = "2024-11-05"; 11959 src = fetchFromGitHub { 11960 owner = "preservim"; 11961 repo = "tagbar"; 11962 - rev = "1c5a358f0bb9a24abe8ee772552f5c64f622f699"; 11963 - sha256 = "1nz0b2f30avkv39gdbr74y2ny1as3dk257nix42iig1zcdivfliz"; 11964 }; 11965 meta.homepage = "https://github.com/preservim/tagbar/"; 11966 }; ··· 12209 12210 telescope-manix = buildNeovimPlugin { 12211 pname = "telescope-manix"; 12212 - version = "2024-11-03"; 12213 src = fetchFromGitHub { 12214 owner = "MrcJkb"; 12215 repo = "telescope-manix"; 12216 - rev = "fcc8cf9a87493fb7d7c2181446a3c49c6494f2f4"; 12217 - sha256 = "0lagkgnxg661ya8r1wzjfslln2ixh7r99akksjmkmv7629md4bch"; 12218 }; 12219 meta.homepage = "https://github.com/MrcJkb/telescope-manix/"; 12220 }; ··· 12231 meta.homepage = "https://github.com/nvim-telescope/telescope-media-files.nvim/"; 12232 }; 12233 12234 - telescope-nvim = buildNeovimPlugin { 12235 - pname = "telescope.nvim"; 12236 - version = "2024-10-29"; 12237 - src = fetchFromGitHub { 12238 - owner = "nvim-telescope"; 12239 - repo = "telescope.nvim"; 12240 - rev = "85922dde3767e01d42a08e750a773effbffaea3e"; 12241 - sha256 = "0yv3v4nlh42s96r0xa4fvlil4rh4p0q6l50jk8yg0hmc8vxxzbs1"; 12242 - }; 12243 - meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 12244 - }; 12245 - 12246 telescope-project-nvim = buildVimPlugin { 12247 pname = "telescope-project.nvim"; 12248 version = "2024-09-09"; ··· 12317 12318 telescope-undo-nvim = buildVimPlugin { 12319 pname = "telescope-undo.nvim"; 12320 - version = "2024-06-30"; 12321 src = fetchFromGitHub { 12322 owner = "debugloop"; 12323 repo = "telescope-undo.nvim"; 12324 - rev = "51be9ae7c42fc27c0b05505e3a0162e0f05fbb6a"; 12325 - sha256 = "1xz2fccjp1rv7l0xzkczz4z2w32q8slc9lc6rm5219s1hl7k4nam"; 12326 }; 12327 meta.homepage = "https://github.com/debugloop/telescope-undo.nvim/"; 12328 }; ··· 12374 sha256 = "06rgpid2z8hwxmpwly9sz4p0g200fnf32sa3mdvh2060hq0g4rrc"; 12375 }; 12376 meta.homepage = "https://github.com/jvgrootveld/telescope-zoxide/"; 12377 }; 12378 12379 telescope_hoogle = buildVimPlugin { ··· 12558 12559 tint-nvim = buildVimPlugin { 12560 pname = "tint.nvim"; 12561 - version = "2024-05-01"; 12562 src = fetchFromGitHub { 12563 owner = "levouh"; 12564 repo = "tint.nvim"; 12565 - rev = "02bd0527a315a80e4e25bb2dd7b6994fb0daae01"; 12566 - sha256 = "08bhm1p78xh692vjvg870k73kiaz523gffcs8dpzr2zqqa086jkg"; 12567 }; 12568 meta.homepage = "https://github.com/levouh/tint.nvim/"; 12569 }; 12570 12571 tiny-inline-diagnostic-nvim = buildVimPlugin { 12572 pname = "tiny-inline-diagnostic.nvim"; 12573 - version = "2024-11-03"; 12574 src = fetchFromGitHub { 12575 owner = "rachartier"; 12576 repo = "tiny-inline-diagnostic.nvim"; 12577 - rev = "d10c9fda7b8b7b81b2c6eb4c3909adfe9812c6bf"; 12578 - sha256 = "0mnlsx00ypfly8jc4aw4df958jd035c6j33innh29xh4ywp3f7h7"; 12579 }; 12580 meta.homepage = "https://github.com/rachartier/tiny-inline-diagnostic.nvim/"; 12581 - }; 12582 - 12583 - tinykeymap = buildVimPlugin { 12584 - pname = "tinykeymap"; 12585 - version = "2024-02-17"; 12586 - src = fetchFromGitHub { 12587 - owner = "tomtom"; 12588 - repo = "tinykeymap_vim"; 12589 - rev = "7217ce656069d82cd71872ede09152b232ecaf1b"; 12590 - sha256 = "1y0snmb402k1f5r54192d7jpg3fbam4ry92hn063y92110j9580w"; 12591 - }; 12592 - meta.homepage = "https://github.com/tomtom/tinykeymap_vim/"; 12593 }; 12594 12595 tlib_vim = buildVimPlugin { ··· 12667 12668 toggleterm-nvim = buildVimPlugin { 12669 pname = "toggleterm.nvim"; 12670 - version = "2024-11-01"; 12671 src = fetchFromGitHub { 12672 owner = "akinsho"; 12673 repo = "toggleterm.nvim"; 12674 - rev = "5969229c0352ff1ed7f6e24aba9c6554e1842939"; 12675 - sha256 = "08cvs5bc9xksc2pjl7yg12l42afv82ic7hz6f8nfnzpwa6vsmg7p"; 12676 }; 12677 meta.homepage = "https://github.com/akinsho/toggleterm.nvim/"; 12678 }; 12679 12680 tokyonight-nvim = buildVimPlugin { 12681 pname = "tokyonight.nvim"; 12682 - version = "2024-11-01"; 12683 src = fetchFromGitHub { 12684 owner = "folke"; 12685 repo = "tokyonight.nvim"; 12686 - rev = "52d67cc5d18c30f618897134620c64a11208fcae"; 12687 - sha256 = "100vw3kzgrwpi2dvf673hsbp7ab7h6s4dh8z0a9f1hwm82brcjg7"; 12688 }; 12689 meta.homepage = "https://github.com/folke/tokyonight.nvim/"; 12690 }; ··· 12776 12777 trouble-nvim = buildVimPlugin { 12778 pname = "trouble.nvim"; 12779 - version = "2024-10-23"; 12780 src = fetchFromGitHub { 12781 owner = "folke"; 12782 repo = "trouble.nvim"; 12783 - rev = "2f3b537f2207ce32f4459f9d56746ee013b5e01b"; 12784 - sha256 = "0why49ss11pgsjafblcwyz0k446m10pn03zy9yxafck1kfpshh97"; 12785 }; 12786 meta.homepage = "https://github.com/folke/trouble.nvim/"; 12787 }; ··· 12870 meta.homepage = "https://github.com/folke/twilight.nvim/"; 12871 }; 12872 12873 - typescript-nvim = buildVimPlugin { 12874 - pname = "typescript.nvim"; 12875 - version = "2023-08-12"; 12876 - src = fetchFromGitHub { 12877 - owner = "jose-elias-alvarez"; 12878 - repo = "typescript.nvim"; 12879 - rev = "4de85ef699d7e6010528dcfbddc2ed4c2c421467"; 12880 - sha256 = "0rx29i3hmzh2knxx098fvfc0iafx3j08bs1zbv4dxadq56dnhaxm"; 12881 - }; 12882 - meta.homepage = "https://github.com/jose-elias-alvarez/typescript.nvim/"; 12883 - }; 12884 - 12885 typescript-tools-nvim = buildVimPlugin { 12886 pname = "typescript-tools.nvim"; 12887 version = "2024-07-18"; ··· 12906 meta.homepage = "https://github.com/leafgarland/typescript-vim/"; 12907 }; 12908 12909 typst-conceal-vim = buildVimPlugin { 12910 pname = "typst-conceal.vim"; 12911 version = "2023-10-13"; ··· 13004 13005 unison = buildVimPlugin { 13006 pname = "unison"; 13007 - version = "2024-11-05"; 13008 src = fetchFromGitHub { 13009 owner = "unisonweb"; 13010 repo = "unison"; 13011 - rev = "edbbcdc19074103165096352993379daeea1bae2"; 13012 - sha256 = "1d94h2q0h2qqfkbqc9frmrykff0pf2h8yxhbb39m284000h292aj"; 13013 }; 13014 meta.homepage = "https://github.com/unisonweb/unison/"; 13015 }; ··· 13112 13113 vifm-vim = buildVimPlugin { 13114 pname = "vifm.vim"; 13115 - version = "2024-11-02"; 13116 src = fetchFromGitHub { 13117 owner = "vifm"; 13118 repo = "vifm.vim"; 13119 - rev = "ee30b659004903bef13e7ec70b968542c7ddc6c1"; 13120 - sha256 = "17jqswd4gg07ifhmq72mpfv35c10g3zbw2vgp32j0z0fq90c0bbq"; 13121 }; 13122 meta.homepage = "https://github.com/vifm/vifm.vim/"; 13123 }; ··· 13160 13161 vim-ReplaceWithRegister = buildVimPlugin { 13162 pname = "vim-ReplaceWithRegister"; 13163 - version = "2021-07-05"; 13164 src = fetchFromGitHub { 13165 owner = "inkarkat"; 13166 repo = "vim-ReplaceWithRegister"; 13167 - rev = "aad1e8fa31cb4722f20fe40679caa56e25120032"; 13168 - sha256 = "1cfgixq5smwbp55x2baaj1kw736w2mykysppphair44vb4w9rlgm"; 13169 }; 13170 meta.homepage = "https://github.com/inkarkat/vim-ReplaceWithRegister/"; 13171 }; ··· 13184 13185 vim-SyntaxRange = buildVimPlugin { 13186 pname = "vim-SyntaxRange"; 13187 - version = "2021-01-16"; 13188 src = fetchFromGitHub { 13189 owner = "inkarkat"; 13190 repo = "vim-SyntaxRange"; 13191 - rev = "3a7fd9ff50fabafe61df12522ed2f275c8e2f45e"; 13192 - sha256 = "1b5xyacbn87z8wkacjpnjk82xmxzivlb111427kwb5kxxdh4w7gq"; 13193 }; 13194 meta.homepage = "https://github.com/inkarkat/vim-SyntaxRange/"; 13195 }; ··· 13434 meta.homepage = "https://github.com/MarcWeber/vim-addon-xdebug/"; 13435 }; 13436 13437 - vim-advanced-sorters = buildVimPlugin { 13438 - pname = "vim-advanced-sorters"; 13439 - version = "2024-08-16"; 13440 - src = fetchFromGitHub { 13441 - owner = "inkarkat"; 13442 - repo = "vim-AdvancedSorters"; 13443 - rev = "f6d29af8a2291895973bf98c2630cc68a8115068"; 13444 - sha256 = "09p0qmwvswz3hxca6nakqszplpb1mffv5y9bwnlxab1xm17id6df"; 13445 - }; 13446 - meta.homepage = "https://github.com/inkarkat/vim-AdvancedSorters/"; 13447 - }; 13448 - 13449 vim-after-object = buildVimPlugin { 13450 pname = "vim-after-object"; 13451 version = "2018-09-17"; ··· 14204 14205 vim-dadbod-completion = buildVimPlugin { 14206 pname = "vim-dadbod-completion"; 14207 - version = "2024-08-15"; 14208 src = fetchFromGitHub { 14209 owner = "kristijanhusak"; 14210 repo = "vim-dadbod-completion"; 14211 - rev = "880f7e9f2959e567c718d52550f9fae1aa07aa81"; 14212 - sha256 = "046nia4fkgjyip2i5q6dz3023znn3avc7n04hy8zji0jr29brj4i"; 14213 }; 14214 meta.homepage = "https://github.com/kristijanhusak/vim-dadbod-completion/"; 14215 }; ··· 14356 sha256 = "1jnx39m152hf9j620ygagaydg6h8m8gxkr1fmxj6kgqf71jr0n9d"; 14357 }; 14358 meta.homepage = "https://github.com/jhradilek/vim-docbk/"; 14359 - }; 14360 - 14361 - vim-docbk-snippets = buildVimPlugin { 14362 - pname = "vim-docbk-snippets"; 14363 - version = "2023-09-29"; 14364 - src = fetchFromGitHub { 14365 - owner = "jhradilek"; 14366 - repo = "vim-snippets"; 14367 - rev = "73aa6c7a3dcd9ac452271fbd4f8a2bdf66a7513e"; 14368 - sha256 = "1wpn6gfw1r89232d779lz8wy19asrribindlcsaikrsqvml3a0hr"; 14369 - }; 14370 - meta.homepage = "https://github.com/jhradilek/vim-snippets/"; 14371 }; 14372 14373 vim-dotenv = buildVimPlugin { ··· 14948 14949 vim-go = buildVimPlugin { 14950 pname = "vim-go"; 14951 - version = "2024-09-24"; 14952 src = fetchFromGitHub { 14953 owner = "fatih"; 14954 repo = "vim-go"; 14955 - rev = "ac1fb9611de435d80a6badcf8482cb1428449b10"; 14956 - sha256 = "199zz6b4yj757hy7vygsy9mjws00j0k8vgcy90ndcrl774jpjqfh"; 14957 }; 14958 meta.homepage = "https://github.com/fatih/vim-go/"; 14959 }; 14960 14961 vim-godot = buildVimPlugin { 14962 pname = "vim-godot"; 14963 - version = "2024-08-05"; 14964 src = fetchFromGitHub { 14965 owner = "habamax"; 14966 repo = "vim-godot"; 14967 - rev = "d21e110ee09b5030e55adda660a4ff58db40a329"; 14968 - sha256 = "0fx6j7q9cyspghpnv9iy4ba99pcyjkq23rbyrd95i5dxlhzgj5q3"; 14969 }; 14970 meta.homepage = "https://github.com/habamax/vim-godot/"; 14971 }; ··· 15574 15575 vim-just = buildVimPlugin { 15576 pname = "vim-just"; 15577 - version = "2024-11-05"; 15578 src = fetchFromGitHub { 15579 owner = "NoahTheDuke"; 15580 repo = "vim-just"; 15581 - rev = "72e33204b0626fcc1b048f6e811077eb7be1a2aa"; 15582 - sha256 = "1jbqqbs88y0w5cqjvl0myklb6hhaafgs2px21zr5nxvm71592kwg"; 15583 }; 15584 meta.homepage = "https://github.com/NoahTheDuke/vim-just/"; 15585 }; ··· 15838 15839 vim-lsp-settings = buildVimPlugin { 15840 pname = "vim-lsp-settings"; 15841 - version = "2024-10-21"; 15842 src = fetchFromGitHub { 15843 owner = "mattn"; 15844 repo = "vim-lsp-settings"; 15845 - rev = "e608a9da13d9601e05c64c554db20519f41205fc"; 15846 - sha256 = "09c21x5rh30kr635syg0flp2dvhxd37xmf7ywvmzmcwqgybyms3d"; 15847 }; 15848 meta.homepage = "https://github.com/mattn/vim-lsp-settings/"; 15849 }; ··· 18228 18229 vimade = buildVimPlugin { 18230 pname = "vimade"; 18231 - version = "2024-11-05"; 18232 src = fetchFromGitHub { 18233 owner = "TaDaa"; 18234 repo = "vimade"; 18235 - rev = "c6d5b01189d7fcc5f1ee022a2f20bdd8238c5428"; 18236 - sha256 = "1k2crqpxcg7h4pgzaj9a6p8f81rqqxmg4a6pdl36nc8lh9h5bw0a"; 18237 }; 18238 meta.homepage = "https://github.com/TaDaa/vimade/"; 18239 }; ··· 18349 18350 vimtex = buildVimPlugin { 18351 pname = "vimtex"; 18352 - version = "2024-11-02"; 18353 src = fetchFromGitHub { 18354 owner = "lervag"; 18355 repo = "vimtex"; 18356 - rev = "ded1d899afa51f42b71bed607680e21338d18c74"; 18357 - sha256 = "0dfqx9xyrq6j0rvacq91jc8f94n5g7qv9y44c9nqclmf2hfmzv2p"; 18358 }; 18359 meta.homepage = "https://github.com/lervag/vimtex/"; 18360 }; ··· 18385 18386 virt-column-nvim = buildVimPlugin { 18387 pname = "virt-column.nvim"; 18388 - version = "2023-11-13"; 18389 src = fetchFromGitHub { 18390 owner = "lukas-reineke"; 18391 repo = "virt-column.nvim"; 18392 - rev = "b62b4ef0774d19452d4ed18e473e824c7a756f2f"; 18393 - sha256 = "sha256-7ljjJ7UwN2U1xPCtsYbrKdnz6SGQGbM/HrxPTxNKlwo="; 18394 }; 18395 meta.homepage = "https://github.com/lukas-reineke/virt-column.nvim/"; 18396 }; ··· 18445 18446 vscode-nvim = buildVimPlugin { 18447 pname = "vscode.nvim"; 18448 - version = "2024-08-08"; 18449 src = fetchFromGitHub { 18450 owner = "Mofiqul"; 18451 repo = "vscode.nvim"; 18452 - rev = "7de58b7a6d55fe48475d0ba2fddbcec871717761"; 18453 - sha256 = "0daq565dmy027qlzfqx08gr9zwjcp4n1cppjpz2ri4gxbjhvgak4"; 18454 }; 18455 meta.homepage = "https://github.com/Mofiqul/vscode.nvim/"; 18456 }; ··· 18493 18494 which-key-nvim = buildVimPlugin { 18495 pname = "which-key.nvim"; 18496 - version = "2024-10-02"; 18497 src = fetchFromGitHub { 18498 owner = "folke"; 18499 repo = "which-key.nvim"; 18500 - rev = "8badb359f7ab8711e2575ef75dfe6fbbd87e4821"; 18501 - sha256 = "0ylw5kp8fz7yr4j7yh4nrbl8mnqirz8rskpq0gsxr9m9fm105cbj"; 18502 }; 18503 meta.homepage = "https://github.com/folke/which-key.nvim/"; 18504 }; ··· 18529 18530 wiki-vim = buildVimPlugin { 18531 pname = "wiki.vim"; 18532 - version = "2024-11-03"; 18533 src = fetchFromGitHub { 18534 owner = "lervag"; 18535 repo = "wiki.vim"; 18536 - rev = "982a54c651c5f62d944d120f533c569dbdaad671"; 18537 - sha256 = "03bvm7h8mqc4sz0w2zf4v5wdi4kxwm2lpxly265yvgwpsm7xkxq8"; 18538 }; 18539 meta.homepage = "https://github.com/lervag/wiki.vim/"; 18540 }; ··· 18697 18698 yanky-nvim = buildVimPlugin { 18699 pname = "yanky.nvim"; 18700 - version = "2024-06-10"; 18701 src = fetchFromGitHub { 18702 owner = "gbprod"; 18703 repo = "yanky.nvim"; 18704 - rev = "73215b77d22ebb179cef98e7e1235825431d10e4"; 18705 - sha256 = "03qdr72nssiwm12fmvmi3x579d4rxkfhscphsr107l3widc5a7j0"; 18706 }; 18707 meta.homepage = "https://github.com/gbprod/yanky.nvim/"; 18708 }; ··· 18722 18723 yazi-nvim = buildVimPlugin { 18724 pname = "yazi.nvim"; 18725 - version = "2024-11-04"; 18726 src = fetchFromGitHub { 18727 owner = "mikavilpas"; 18728 repo = "yazi.nvim"; 18729 - rev = "bdc1e5a46a00a2388460145991d1d7e12a92afdc"; 18730 - sha256 = "1v39zw4g8zys54d5zynaws7jpw5615x4yvliilp3h7vmpah5gamv"; 18731 }; 18732 meta.homepage = "https://github.com/mikavilpas/yazi.nvim/"; 18733 }; ··· 18898 sha256 = "025rqfs0n2ryi7xwzpq5h2r7jhvxbrb2gjp6fqa072hapgqr0igb"; 18899 }; 18900 meta.homepage = "https://github.com/nanotee/zoxide.vim/"; 18901 }; 18902 18903
··· 65 66 CopilotChat-nvim = buildVimPlugin { 67 pname = "CopilotChat.nvim"; 68 + version = "2024-11-13"; 69 src = fetchFromGitHub { 70 owner = "CopilotC-Nvim"; 71 repo = "CopilotChat.nvim"; 72 + rev = "2048c22f8eaa662bfacc02a4b4a2e5152354f265"; 73 + sha256 = "1602fh5663x96f9wl2lq6jkbwnv8clirzghh2kdyvypa3r58a1lk"; 74 }; 75 meta.homepage = "https://github.com/CopilotC-Nvim/CopilotChat.nvim/"; 76 }; ··· 185 186 LazyVim = buildVimPlugin { 187 pname = "LazyVim"; 188 + version = "2024-11-13"; 189 src = fetchFromGitHub { 190 owner = "LazyVim"; 191 repo = "LazyVim"; 192 + rev = "b98b048ec61b263f1d764fe5e4baba2913240597"; 193 + sha256 = "0akc4yq0znjskmgz0yhn48ppvsdc4m5mkicbhyk3kbxcwj6ywxjk"; 194 }; 195 meta.homepage = "https://github.com/LazyVim/LazyVim/"; 196 }; 197 198 LeaderF = buildVimPlugin { 199 pname = "LeaderF"; 200 + version = "2024-11-13"; 201 src = fetchFromGitHub { 202 owner = "Yggdroot"; 203 repo = "LeaderF"; 204 + rev = "5fdf6ca45c8f7d3f5a03c75f04b7af4ba2f52f10"; 205 + sha256 = "1jf1v6wlvziyfs8wlddfmmjr8dyhf1as88qm5n72qj7ks0dfh1ii"; 206 }; 207 meta.homepage = "https://github.com/Yggdroot/LeaderF/"; 208 }; ··· 341 342 SchemaStore-nvim = buildVimPlugin { 343 pname = "SchemaStore.nvim"; 344 + version = "2024-11-11"; 345 src = fetchFromGitHub { 346 owner = "b0o"; 347 repo = "SchemaStore.nvim"; 348 + rev = "64aed5788796d1f241da0afbd096e6dd649694bd"; 349 + sha256 = "1lkiy6ppvcjv53af76xwiy7axm236vj7xcrb4c3yhjxdi36mndga"; 350 }; 351 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 352 }; ··· 643 644 ale = buildVimPlugin { 645 pname = "ale"; 646 + version = "2024-11-09"; 647 src = fetchFromGitHub { 648 owner = "dense-analysis"; 649 repo = "ale"; 650 + rev = "898638abe586999d38a1f5b54505e2b351a3f80b"; 651 + sha256 = "1gah6zvvmarypnaa97f4j40nv07gx916nikdpz63j2yga388l7cv"; 652 }; 653 meta.homepage = "https://github.com/dense-analysis/ale/"; 654 }; ··· 883 884 asyncrun-vim = buildVimPlugin { 885 pname = "asyncrun.vim"; 886 + version = "2024-11-08"; 887 src = fetchFromGitHub { 888 owner = "skywind3000"; 889 repo = "asyncrun.vim"; 890 + rev = "78dc9277f2b989553861ee7c35b640112d95e1b5"; 891 + sha256 = "1jkc8r0fcxwrkfrnw80cr65iz67bhzi054klsl0ynnzx28n0hyrk"; 892 }; 893 meta.homepage = "https://github.com/skywind3000/asyncrun.vim/"; 894 }; ··· 1039 1040 avante-nvim = buildVimPlugin { 1041 pname = "avante.nvim"; 1042 + version = "2024-11-12"; 1043 src = fetchFromGitHub { 1044 owner = "yetone"; 1045 repo = "avante.nvim"; 1046 + rev = "54896bbc2d9dbebaace86fa8e3e009a796414035"; 1047 + sha256 = "1nzqyw6yrdci2wm7vnpfg14va8b1zivd0qhcaak51g13iglvx3jn"; 1048 }; 1049 meta.homepage = "https://github.com/yetone/avante.nvim/"; 1050 }; ··· 1124 1125 barbar-nvim = buildVimPlugin { 1126 pname = "barbar.nvim"; 1127 + version = "2024-11-12"; 1128 src = fetchFromGitHub { 1129 owner = "romgrk"; 1130 repo = "barbar.nvim"; 1131 + rev = "20f26c940991c528c5e3c6d0d82a6dc1a82b9d4c"; 1132 + sha256 = "0fx2yyg5wwi9j7j3mirfmq1pfy22py9irc1r24ri4jp71p4yfaa3"; 1133 }; 1134 meta.homepage = "https://github.com/romgrk/barbar.nvim/"; 1135 }; ··· 1172 1173 base46 = buildVimPlugin { 1174 pname = "base46"; 1175 + version = "2024-11-10"; 1176 src = fetchFromGitHub { 1177 owner = "nvchad"; 1178 repo = "base46"; 1179 + rev = "16ee0e93dfc52e35ee7c9cf45e5ebf116958edb7"; 1180 + sha256 = "0wkxqakdc7s31yksygp2wn4mw7zr4d8jwpfa0vn30pdckaf0z9cq"; 1181 }; 1182 meta.homepage = "https://github.com/nvchad/base46/"; 1183 }; ··· 1352 1353 bufexplorer = buildVimPlugin { 1354 pname = "bufexplorer"; 1355 + version = "2024-11-07"; 1356 src = fetchFromGitHub { 1357 owner = "jlanzarotta"; 1358 repo = "bufexplorer"; 1359 + rev = "d9905ad260b8abce5b3cd1df465aba9cbca05943"; 1360 + sha256 = "14c4rdlcg5mxqdff0cw21gy07fcy4kh3hk375bq2k6fd0rpbl909"; 1361 }; 1362 meta.homepage = "https://github.com/jlanzarotta/bufexplorer/"; 1363 }; ··· 1434 meta.homepage = "https://github.com/bkad/camelcasemotion/"; 1435 }; 1436 1437 caw-vim = buildVimPlugin { 1438 pname = "caw.vim"; 1439 version = "2023-03-16"; ··· 1640 1641 cmake-tools-nvim = buildVimPlugin { 1642 pname = "cmake-tools.nvim"; 1643 + version = "2024-11-12"; 1644 src = fetchFromGitHub { 1645 owner = "Civitasv"; 1646 repo = "cmake-tools.nvim"; 1647 + rev = "53bc5261e1e0b0d28be465d2b2b07a6f0646e1eb"; 1648 + sha256 = "15z0zla1af3sp1hafhjhn82pglsdlaqd1iawif2mk9b2ij5r2z82"; 1649 }; 1650 meta.homepage = "https://github.com/Civitasv/cmake-tools.nvim/"; 1651 }; ··· 2057 meta.homepage = "https://github.com/hrsh7th/cmp-omni/"; 2058 }; 2059 2060 cmp-pandoc-references = buildVimPlugin { 2061 pname = "cmp-pandoc-references"; 2062 version = "2022-04-20"; ··· 2069 meta.homepage = "https://github.com/jc-doyle/cmp-pandoc-references/"; 2070 }; 2071 2072 + cmp-pandoc-nvim = buildVimPlugin { 2073 + pname = "cmp-pandoc.nvim"; 2074 + version = "2023-03-03"; 2075 + src = fetchFromGitHub { 2076 + owner = "aspeddro"; 2077 + repo = "cmp-pandoc.nvim"; 2078 + rev = "30faa4456a7643c4cb02d8fa18438fd484ed7602"; 2079 + sha256 = "0fl903hcy85f21xmgf1dx31lxjwgplkcg4m8i989yhqr6irwwi6f"; 2080 + }; 2081 + meta.homepage = "https://github.com/aspeddro/cmp-pandoc.nvim/"; 2082 + }; 2083 + 2084 cmp-path = buildVimPlugin { 2085 pname = "cmp-path"; 2086 version = "2022-10-03"; ··· 2095 2096 cmp-rg = buildVimPlugin { 2097 pname = "cmp-rg"; 2098 + version = "2024-11-12"; 2099 src = fetchFromGitHub { 2100 owner = "lukas-reineke"; 2101 repo = "cmp-rg"; 2102 + rev = "70a43543f61b6083ba9c3b7deb9ccee671410ac6"; 2103 + sha256 = "0zzlkd8r3kggvkykf0h51d0cb1g86m0yg48ayxbdgjfqhmk34ri1"; 2104 }; 2105 meta.homepage = "https://github.com/lukas-reineke/cmp-rg/"; 2106 }; ··· 2345 meta.homepage = "https://github.com/neoclide/coc-neco/"; 2346 }; 2347 2348 coc-svelte = buildVimPlugin { 2349 pname = "coc-svelte"; 2350 version = "2023-10-08"; ··· 2369 meta.homepage = "https://github.com/iamcco/coc-tailwindcss/"; 2370 }; 2371 2372 + coc-nvim = buildVimPlugin { 2373 + pname = "coc.nvim"; 2374 + version = "2024-10-12"; 2375 + src = fetchFromGitHub { 2376 + owner = "neoclide"; 2377 + repo = "coc.nvim"; 2378 + rev = "57d488a06bdb34de89acef3c2f3e9ce609d632ed"; 2379 + sha256 = "106w4kgrqlgnszpkzlxrlzsvca880qagv07h93dxsl2ggbdkm91l"; 2380 + }; 2381 + meta.homepage = "https://github.com/neoclide/coc.nvim/"; 2382 + }; 2383 + 2384 coconut-vim = buildVimPlugin { 2385 pname = "coconut.vim"; 2386 version = "2017-10-10"; ··· 2491 2492 command-t = buildVimPlugin { 2493 pname = "command-t"; 2494 + version = "2024-11-09"; 2495 src = fetchFromGitHub { 2496 owner = "wincent"; 2497 repo = "command-t"; 2498 + rev = "46f872325e5a6b084b286f7a6066986c62b7be99"; 2499 + sha256 = "1x75i52py1vfc0ai6m804ibyg5m7zlp9v4bylhh8lqr8fc1gq8s8"; 2500 }; 2501 meta.homepage = "https://github.com/wincent/command-t/"; 2502 }; ··· 2695 2696 conform-nvim = buildVimPlugin { 2697 pname = "conform.nvim"; 2698 + version = "2024-11-13"; 2699 src = fetchFromGitHub { 2700 owner = "stevearc"; 2701 repo = "conform.nvim"; 2702 + rev = "023f795dbcf32d4351b6a9ed2e613d471b5bb812"; 2703 + sha256 = "1my0wda7786yf634pz0m84lii71dk9442l4jlzhjimlxai517rs5"; 2704 fetchSubmodules = true; 2705 }; 2706 meta.homepage = "https://github.com/stevearc/conform.nvim/"; ··· 2708 2709 conjure = buildVimPlugin { 2710 pname = "conjure"; 2711 + version = "2024-11-08"; 2712 src = fetchFromGitHub { 2713 owner = "Olical"; 2714 repo = "conjure"; 2715 + rev = "bc8907e4ca572720a9f785660781450f8e79ef05"; 2716 + sha256 = "0yksnh73mmgn3misslly17xpjhdqqng95b8a1vim1551f927vk8c"; 2717 }; 2718 meta.homepage = "https://github.com/Olical/conjure/"; 2719 }; ··· 2754 meta.homepage = "https://github.com/zbirenbaum/copilot-cmp/"; 2755 }; 2756 2757 copilot-lualine = buildVimPlugin { 2758 pname = "copilot-lualine"; 2759 version = "2024-09-03"; ··· 2764 sha256 = "0qx9x28f0c20cz2ax1631rd7qzzkzvhbnv9ivmyw44v5nzp8jy1x"; 2765 }; 2766 meta.homepage = "https://github.com/AndreM222/copilot-lualine/"; 2767 + }; 2768 + 2769 + copilot-lua = buildVimPlugin { 2770 + pname = "copilot.lua"; 2771 + version = "2024-10-18"; 2772 + src = fetchFromGitHub { 2773 + owner = "zbirenbaum"; 2774 + repo = "copilot.lua"; 2775 + rev = "f8d8d872bb319f640d5177dad5fbf01f7a16d7d0"; 2776 + sha256 = "1yzfkvqjcmnbkxsdjy81cjal8zqqs9x6ai44ky11z0ly1zcqv3ji"; 2777 + }; 2778 + meta.homepage = "https://github.com/zbirenbaum/copilot.lua/"; 2779 }; 2780 2781 copilot-vim = buildVimPlugin { ··· 2828 2829 coq_nvim = buildVimPlugin { 2830 pname = "coq_nvim"; 2831 + version = "2024-11-13"; 2832 src = fetchFromGitHub { 2833 owner = "ms-jpq"; 2834 repo = "coq_nvim"; 2835 + rev = "b952006259f7ca4a9406627713e05017d9260aab"; 2836 + sha256 = "17kkw4z4srnyyy8qlwpirvjhyi20k8gya8y9ff5dirci6qlqhwr4"; 2837 }; 2838 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 2839 }; ··· 2900 2901 csharpls-extended-lsp-nvim = buildVimPlugin { 2902 pname = "csharpls-extended-lsp.nvim"; 2903 + version = "2024-11-13"; 2904 src = fetchFromGitHub { 2905 owner = "Decodetalkers"; 2906 repo = "csharpls-extended-lsp.nvim"; 2907 + rev = "4cee463b73b72091b2165c4460a4b973a69478ef"; 2908 + sha256 = "1hmh5sph2q3fzz4wn0s32dpiz6f8v01wjy5flpl8vxzfwia27pgk"; 2909 }; 2910 meta.homepage = "https://github.com/Decodetalkers/csharpls-extended-lsp.nvim/"; 2911 }; ··· 2944 sha256 = "133xhi069ndcgj6wcgj5xvpf4m9c34zs9cnk35qpx13h2scxdsa4"; 2945 }; 2946 meta.homepage = "https://github.com/FelikZ/ctrlp-py-matcher/"; 2947 + }; 2948 + 2949 + ctrlp-z = buildVimPlugin { 2950 + pname = "ctrlp-z"; 2951 + version = "2015-10-17"; 2952 + src = fetchFromGitHub { 2953 + owner = "amiorin"; 2954 + repo = "ctrlp-z"; 2955 + rev = "d1a69ec623ce24b9a30fc8fe3cd468c322b03026"; 2956 + sha256 = "16nsj1g8lqmyizlb5ijwhf4dsmh0xv1kwqq6jxvhaf55vfga82yl"; 2957 + }; 2958 + meta.homepage = "https://github.com/amiorin/ctrlp-z/"; 2959 }; 2960 2961 ctrlp-vim = buildVimPlugin { ··· 2970 meta.homepage = "https://github.com/ctrlpvim/ctrlp.vim/"; 2971 }; 2972 2973 cyberdream-nvim = buildVimPlugin { 2974 pname = "cyberdream.nvim"; 2975 + version = "2024-11-08"; 2976 src = fetchFromGitHub { 2977 owner = "scottmckendry"; 2978 repo = "cyberdream.nvim"; 2979 + rev = "dd6b502050413be60c7375563142e37c3d8e71f2"; 2980 + sha256 = "0rx0yqw3fhwy72lcibnvlzk7awrvs3jfg197klrqd961k9kzc6cm"; 2981 }; 2982 meta.homepage = "https://github.com/scottmckendry/cyberdream.nvim/"; 2983 }; ··· 3092 3093 ddc-vim = buildVimPlugin { 3094 pname = "ddc.vim"; 3095 + version = "2024-11-12"; 3096 src = fetchFromGitHub { 3097 owner = "Shougo"; 3098 repo = "ddc.vim"; 3099 + rev = "dcf217d62dc29c7f28f2186c094e5906fc556fc1"; 3100 + sha256 = "174l721ck4lb8dgcl48ng5qq1ln29k4gh9js2yi9131hskkf4rmv"; 3101 }; 3102 meta.homepage = "https://github.com/Shougo/ddc.vim/"; 3103 }; 3104 3105 debugprint-nvim = buildVimPlugin { 3106 pname = "debugprint.nvim"; 3107 + version = "2024-11-08"; 3108 src = fetchFromGitHub { 3109 owner = "andrewferrier"; 3110 repo = "debugprint.nvim"; 3111 + rev = "7b7a02c76d372818ed21f9d0755e342a25a64d31"; 3112 + sha256 = "083kx5d3md9cbcmym5ikfabnmjwvh4g9gs242dz03cr0ni2s9dka"; 3113 }; 3114 meta.homepage = "https://github.com/andrewferrier/debugprint.nvim/"; 3115 }; ··· 3212 3213 denops-vim = buildVimPlugin { 3214 pname = "denops.vim"; 3215 + version = "2024-11-08"; 3216 src = fetchFromGitHub { 3217 owner = "vim-denops"; 3218 repo = "denops.vim"; 3219 + rev = "0c722617d72c56751e748070c12ec9d827e8fba3"; 3220 + sha256 = "12j3ypjwcw232mvdchysmg0d65bgji6khfrh7sl27wv44wrw7vrl"; 3221 }; 3222 meta.homepage = "https://github.com/vim-denops/denops.vim/"; 3223 }; ··· 3368 meta.homepage = "https://github.com/Valodim/deoplete-notmuch/"; 3369 }; 3370 3371 deoplete-phpactor = buildVimPlugin { 3372 pname = "deoplete-phpactor"; 3373 version = "2020-09-12"; ··· 3438 sha256 = "0zsbkl82kny1vmfv06iz576xsclbik0xr7ndzpb0ddhw5nfnicfx"; 3439 }; 3440 meta.homepage = "https://github.com/deoplete-plugins/deoplete-zsh/"; 3441 + }; 3442 + 3443 + deoplete-nvim = buildVimPlugin { 3444 + pname = "deoplete.nvim"; 3445 + version = "2024-06-05"; 3446 + src = fetchFromGitHub { 3447 + owner = "Shougo"; 3448 + repo = "deoplete.nvim"; 3449 + rev = "e5a47d4a2f0b2b6f568e708163e2354097e611c6"; 3450 + sha256 = "1cj5y29gkm2l1c7g7bp50k522dn4yk67sywc19lcyizpwxvqq0a2"; 3451 + }; 3452 + meta.homepage = "https://github.com/Shougo/deoplete.nvim/"; 3453 }; 3454 3455 devdocs-vim = buildVimPlugin { ··· 3598 3599 dracula-nvim = buildVimPlugin { 3600 pname = "dracula.nvim"; 3601 + version = "2024-11-11"; 3602 src = fetchFromGitHub { 3603 owner = "Mofiqul"; 3604 repo = "dracula.nvim"; 3605 + rev = "e6128ec3923b92bb2b16e81b4a0f04ed0308038e"; 3606 + sha256 = "19cdiibzwmmlw6m1k24d9jypjf1hy8vb63rjila885v8xgx68ffx"; 3607 }; 3608 meta.homepage = "https://github.com/Mofiqul/dracula.nvim/"; 3609 }; 3610 3611 dressing-nvim = buildVimPlugin { 3612 pname = "dressing.nvim"; 3613 + version = "2024-11-11"; 3614 src = fetchFromGitHub { 3615 owner = "stevearc"; 3616 repo = "dressing.nvim"; 3617 + rev = "43b8f74e0b1e3f41e51f640f8efa3bcd401cea0d"; 3618 + sha256 = "0ha8fiyblv0yy61lqgd7rrfsgpcy3j40ga0ghiszbp9cmr4j1fhf"; 3619 }; 3620 meta.homepage = "https://github.com/stevearc/dressing.nvim/"; 3621 }; 3622 3623 dropbar-nvim = buildVimPlugin { 3624 pname = "dropbar.nvim"; 3625 + version = "2024-11-12"; 3626 src = fetchFromGitHub { 3627 owner = "Bekaboo"; 3628 repo = "dropbar.nvim"; 3629 + rev = "52319b03a15a37641b1ae80e0c4ba893c401f8b1"; 3630 + sha256 = "0f165wi73zbl234kjnq0y6c2r8l2v98naivkbknrn84gx9xragf7"; 3631 }; 3632 meta.homepage = "https://github.com/Bekaboo/dropbar.nvim/"; 3633 }; ··· 3692 meta.homepage = "https://github.com/folke/edgy.nvim/"; 3693 }; 3694 3695 + editorconfig-vim = buildVimPlugin { 3696 + pname = "editorconfig-vim"; 3697 + version = "2024-11-08"; 3698 + src = fetchFromGitHub { 3699 + owner = "editorconfig"; 3700 + repo = "editorconfig-vim"; 3701 + rev = "3c2813f2566d9392ff3614248c5db43c3fda9d5f"; 3702 + sha256 = "12y1dg2sdrqfi4iiaacfvggdx9qynid2vj8dnw3gsdv78jcxz5r8"; 3703 + fetchSubmodules = true; 3704 + }; 3705 + meta.homepage = "https://github.com/editorconfig/editorconfig-vim/"; 3706 + }; 3707 + 3708 editorconfig-nvim = buildVimPlugin { 3709 pname = "editorconfig.nvim"; 3710 version = "2023-01-10"; ··· 3717 meta.homepage = "https://github.com/gpanders/editorconfig.nvim/"; 3718 }; 3719 3720 efmls-configs-nvim = buildVimPlugin { 3721 pname = "efmls-configs-nvim"; 3722 version = "2024-10-15"; ··· 3763 sha256 = "1y1adg42iv0xhww2vxmxw3pky5syjc3djc1h2s7mm0bjg2marlha"; 3764 }; 3765 meta.homepage = "https://github.com/dmix/elvish.vim/"; 3766 }; 3767 3768 emmet-vim = buildVimPlugin { ··· 3876 3877 fastaction-nvim = buildVimPlugin { 3878 pname = "fastaction.nvim"; 3879 + version = "2024-11-07"; 3880 src = fetchFromGitHub { 3881 owner = "Chaitanyabsprip"; 3882 repo = "fastaction.nvim"; 3883 + rev = "a55feac91f39b83aa21b9ef3df1e465d9122753c"; 3884 + sha256 = "1h67x0408x10sjb4ir7sir7sh3kk5vglyc17cjzkg5znd30wmlm0"; 3885 }; 3886 meta.homepage = "https://github.com/Chaitanyabsprip/fastaction.nvim/"; 3887 }; 3888 3889 faster-nvim = buildVimPlugin { 3890 pname = "faster.nvim"; 3891 + version = "2024-11-09"; 3892 src = fetchFromGitHub { 3893 owner = "pteroctopus"; 3894 repo = "faster.nvim"; 3895 + rev = "ee58dbb46e5d16b72cdfd0cd246a3b1a33ec2487"; 3896 + sha256 = "09x73f55xkcpv8nrrn9nikvgzkjhhm1plb24xlpg618zbs1gr557"; 3897 }; 3898 meta.homepage = "https://github.com/pteroctopus/faster.nvim/"; 3899 }; ··· 3924 3925 feline-nvim = buildVimPlugin { 3926 pname = "feline.nvim"; 3927 + version = "2024-11-13"; 3928 src = fetchFromGitHub { 3929 owner = "freddiehaddad"; 3930 repo = "feline.nvim"; 3931 + rev = "9f1313f61a75ec5ebe805fedd46bdc130c420963"; 3932 + sha256 = "0z8gq8hx2qn7v12lx9cjk48vx53zwpa4v6xvwpakyyink8fa0fpx"; 3933 }; 3934 meta.homepage = "https://github.com/freddiehaddad/feline.nvim/"; 3935 }; ··· 4117 4118 flutter-tools-nvim = buildVimPlugin { 4119 pname = "flutter-tools.nvim"; 4120 + version = "2024-11-13"; 4121 src = fetchFromGitHub { 4122 owner = "nvim-flutter"; 4123 repo = "flutter-tools.nvim"; 4124 + rev = "80770c67aa2d9e1eccf6bb52fac78115831acd04"; 4125 + sha256 = "0kmk26knj9hlfrppm3vzmy62n0dcbmpjpb1k84zpr5cqc18h59yn"; 4126 }; 4127 meta.homepage = "https://github.com/nvim-flutter/flutter-tools.nvim/"; 4128 }; 4129 4130 focus-nvim = buildVimPlugin { 4131 pname = "focus.nvim"; 4132 + version = "2024-11-13"; 4133 src = fetchFromGitHub { 4134 owner = "nvim-focus"; 4135 repo = "focus.nvim"; 4136 + rev = "d76338e58e49f844e8f6a7aff16a74a2a55a80ef"; 4137 + sha256 = "03c670mcdizg7z9npildynnj65jcb86j6pj030r5js0vcxhj67id"; 4138 + fetchSubmodules = true; 4139 }; 4140 meta.homepage = "https://github.com/nvim-focus/focus.nvim/"; 4141 }; ··· 4154 4155 follow-md-links-nvim = buildVimPlugin { 4156 pname = "follow-md-links.nvim"; 4157 + version = "2024-11-12"; 4158 src = fetchFromGitHub { 4159 owner = "jghauser"; 4160 repo = "follow-md-links.nvim"; 4161 + rev = "ce8735a15dc3e5fc5bb052ec51b849c03e57df53"; 4162 + sha256 = "1shrcvm5yw1sy46qlax2mrg332cay62k62lg3yx970pwpm0yi9wv"; 4163 }; 4164 meta.homepage = "https://github.com/jghauser/follow-md-links.nvim/"; 4165 }; 4166 4167 formatter-nvim = buildVimPlugin { 4168 pname = "formatter.nvim"; 4169 + version = "2024-11-05"; 4170 src = fetchFromGitHub { 4171 owner = "mhartington"; 4172 repo = "formatter.nvim"; 4173 + rev = "eb89a1f3e079f1b9680bc7293b75fffccb5e1598"; 4174 + sha256 = "0i6q0hkrka692l42s2rb6i3xyk3li28bmrabjj0i5akpin1wn20d"; 4175 }; 4176 meta.homepage = "https://github.com/mhartington/formatter.nvim/"; 4177 }; ··· 4226 4227 fugitive-gitlab-vim = buildVimPlugin { 4228 pname = "fugitive-gitlab.vim"; 4229 + version = "2024-11-13"; 4230 src = fetchFromGitHub { 4231 owner = "shumphrey"; 4232 repo = "fugitive-gitlab.vim"; 4233 + rev = "3584cf7e607ba7822f991d407a8d780e05aae287"; 4234 + sha256 = "1yj1zic9p28v2hbd8ixbavampzpd02jraqj9lwnsq0rhn63qyckf"; 4235 }; 4236 meta.homepage = "https://github.com/shumphrey/fugitive-gitlab.vim/"; 4237 }; ··· 4310 4311 fzf-lua = buildNeovimPlugin { 4312 pname = "fzf-lua"; 4313 + version = "2024-11-13"; 4314 src = fetchFromGitHub { 4315 owner = "ibhagwan"; 4316 repo = "fzf-lua"; 4317 + rev = "8af7f00a11fbeb33a88cf95c951460eb8b1fb531"; 4318 + sha256 = "1rrw53viyvi7zk6r1y3d16nwxzyhw63lvcz0yk1xzji6j87fn7rw"; 4319 }; 4320 meta.homepage = "https://github.com/ibhagwan/fzf-lua/"; 4321 }; ··· 4344 meta.homepage = "https://github.com/NTBBloodbath/galaxyline.nvim/"; 4345 }; 4346 4347 gen_tags-vim = buildVimPlugin { 4348 pname = "gen_tags.vim"; 4349 version = "2023-03-06"; ··· 4406 4407 git-conflict-nvim = buildVimPlugin { 4408 pname = "git-conflict.nvim"; 4409 + version = "2024-11-09"; 4410 src = fetchFromGitHub { 4411 owner = "akinsho"; 4412 repo = "git-conflict.nvim"; 4413 + rev = "4dc906855751096aaeba2edde7c2cdc7bb881c98"; 4414 + sha256 = "17j8aaf0m8rc93zcnxd34y1g5k0aylhy7s5zgkk39a0sjkafsf3a"; 4415 }; 4416 meta.homepage = "https://github.com/akinsho/git-conflict.nvim/"; 4417 }; ··· 4490 4491 gitsigns-nvim = buildNeovimPlugin { 4492 pname = "gitsigns.nvim"; 4493 + version = "2024-11-13"; 4494 src = fetchFromGitHub { 4495 owner = "lewis6991"; 4496 repo = "gitsigns.nvim"; 4497 + rev = "9521fe8be39255b9abc6ec54e352bf04c410f5cf"; 4498 + sha256 = "1vn53qas75mhkhjy7c03bdb5s9qczxk5vj6lrz88fp0nr5x6b75g"; 4499 }; 4500 meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; 4501 }; ··· 4550 4551 go-nvim = buildVimPlugin { 4552 pname = "go.nvim"; 4553 + version = "2024-11-12"; 4554 src = fetchFromGitHub { 4555 owner = "ray-x"; 4556 repo = "go.nvim"; 4557 + rev = "6368756601a358b1491ac2ff10d0e2939a76df5e"; 4558 + sha256 = "0w9rfywqnw7r1qlymf9k9f8h893d23a5fs4nwh6rr3lb876686kl"; 4559 }; 4560 meta.homepage = "https://github.com/ray-x/go.nvim/"; 4561 }; ··· 4598 4599 goto-preview = buildVimPlugin { 4600 pname = "goto-preview"; 4601 + version = "2024-11-11"; 4602 src = fetchFromGitHub { 4603 owner = "rmagatti"; 4604 repo = "goto-preview"; 4605 + rev = "8a671ae123532bd7a8393ed2b1475bb40baf968f"; 4606 + sha256 = "1higc1zf9xzjnhsaki3046c9mrdpl2sz2bp7p6vwzm6nbiz5zmcb"; 4607 }; 4608 meta.homepage = "https://github.com/rmagatti/goto-preview/"; 4609 }; ··· 4670 4671 grug-far-nvim = buildVimPlugin { 4672 pname = "grug-far.nvim"; 4673 + version = "2024-11-07"; 4674 src = fetchFromGitHub { 4675 owner = "MagicDuck"; 4676 repo = "grug-far.nvim"; 4677 + rev = "26415d3cc2fef99ccefa019cbc3969f404a83e70"; 4678 + sha256 = "18wh4253yn9n2vn0q9j2cvin6f30wry9x6sifc9mq3xk9yi474hb"; 4679 }; 4680 meta.homepage = "https://github.com/MagicDuck/grug-far.nvim/"; 4681 }; ··· 4704 meta.homepage = "https://github.com/luisiacc/gruvbox-baby/"; 4705 }; 4706 4707 gruvbox-flat-nvim = buildVimPlugin { 4708 pname = "gruvbox-flat.nvim"; 4709 version = "2023-05-27"; ··· 4859 meta.homepage = "https://github.com/ThePrimeagen/harpoon/"; 4860 }; 4861 4862 haskell-scope-highlighting-nvim = buildVimPlugin { 4863 pname = "haskell-scope-highlighting.nvim"; 4864 version = "2024-07-02"; ··· 4982 4983 highlight-undo-nvim = buildVimPlugin { 4984 pname = "highlight-undo.nvim"; 4985 + version = "2024-11-12"; 4986 src = fetchFromGitHub { 4987 owner = "tzachar"; 4988 repo = "highlight-undo.nvim"; 4989 + rev = "ef7a66df6833df1ea25bce257b0d92f87ed6037b"; 4990 + sha256 = "1rq9bqd2a1s8nqdgf9q1y2av1qcaw0s2g76lw1225ib61818z1k6"; 4991 }; 4992 meta.homepage = "https://github.com/tzachar/highlight-undo.nvim/"; 4993 }; ··· 5186 5187 image-nvim = buildNeovimPlugin { 5188 pname = "image.nvim"; 5189 + version = "2024-11-10"; 5190 src = fetchFromGitHub { 5191 owner = "3rd"; 5192 repo = "image.nvim"; 5193 + rev = "7f61c1940a8b072ca47a28928d2375dc1e11f464"; 5194 + sha256 = "0fqnz4wpw7ab1j0y4zqafazjg6q0rc66n71awx4wbxilikca80ml"; 5195 }; 5196 meta.homepage = "https://github.com/3rd/image.nvim/"; 5197 }; ··· 5282 5283 indent-blankline-nvim = buildVimPlugin { 5284 pname = "indent-blankline.nvim"; 5285 + version = "2024-11-11"; 5286 src = fetchFromGitHub { 5287 owner = "lukas-reineke"; 5288 repo = "indent-blankline.nvim"; 5289 + rev = "7871a88056f7144defca9c931e311a3134c5d509"; 5290 + sha256 = "1di5dk855m90l6lblh97sr2c4w4rwv6k6cs67hhll6r8zj5wsl2r"; 5291 }; 5292 meta.homepage = "https://github.com/lukas-reineke/indent-blankline.nvim/"; 5293 }; ··· 5549 5550 kanagawa-nvim = buildVimPlugin { 5551 pname = "kanagawa.nvim"; 5552 + version = "2024-11-07"; 5553 src = fetchFromGitHub { 5554 owner = "rebelot"; 5555 repo = "kanagawa.nvim"; 5556 + rev = "ad3dddecd606746374ba4807324a08331dfca23c"; 5557 + sha256 = "1lfa6ib45xpfvqkd97n2kf6cizgmilvi3pqv1i8iq3cj3499wvr0"; 5558 }; 5559 meta.homepage = "https://github.com/rebelot/kanagawa.nvim/"; 5560 }; ··· 5633 5634 kulala-nvim = buildVimPlugin { 5635 pname = "kulala.nvim"; 5636 + version = "2024-11-07"; 5637 src = fetchFromGitHub { 5638 owner = "mistweaverco"; 5639 repo = "kulala.nvim"; 5640 + rev = "383defc97f5516621875213768bd2287c84ced2e"; 5641 + sha256 = "0631giv8xbgsb07v8rzxdvxyfcpcszp5myijp0abaj9w8js1gpjv"; 5642 }; 5643 meta.homepage = "https://github.com/mistweaverco/kulala.nvim/"; 5644 }; ··· 5657 5658 langmapper-nvim = buildVimPlugin { 5659 pname = "langmapper.nvim"; 5660 + version = "2024-11-11"; 5661 src = fetchFromGitHub { 5662 owner = "Wansmer"; 5663 repo = "langmapper.nvim"; 5664 + rev = "efeffd2a0add17ad04c69beb81b68329cd445eeb"; 5665 + sha256 = "057fllakkr82rl8zwkx2h9bza26ibhmab2pml695lnq3xhsd8ml9"; 5666 }; 5667 meta.homepage = "https://github.com/Wansmer/langmapper.nvim/"; 5668 }; ··· 5693 5694 lazy-lsp-nvim = buildVimPlugin { 5695 pname = "lazy-lsp.nvim"; 5696 + version = "2024-11-12"; 5697 src = fetchFromGitHub { 5698 owner = "dundalek"; 5699 repo = "lazy-lsp.nvim"; 5700 + rev = "8fe5329c92bbd0830e22bd6f6e6ee64275b2a68b"; 5701 + sha256 = "10vbh0n1qkaq424860y4kds3gpb01wwp4f5d1fqyyhbp47nmzxga"; 5702 }; 5703 meta.homepage = "https://github.com/dundalek/lazy-lsp.nvim/"; 5704 }; 5705 5706 lazy-nvim = buildVimPlugin { 5707 pname = "lazy.nvim"; 5708 + version = "2024-11-11"; 5709 src = fetchFromGitHub { 5710 owner = "folke"; 5711 repo = "lazy.nvim"; 5712 + rev = "7967abe55752aa90532e6bb4bd4663fe27a264cb"; 5713 + sha256 = "0s1cx99z9irgf7pxixgqi9z5k98lsx5in1i8i3wv71w3dnx7j6bz"; 5714 }; 5715 meta.homepage = "https://github.com/folke/lazy.nvim/"; 5716 }; ··· 5741 5742 lean-nvim = buildVimPlugin { 5743 pname = "lean.nvim"; 5744 + version = "2024-11-12"; 5745 src = fetchFromGitHub { 5746 owner = "Julian"; 5747 repo = "lean.nvim"; 5748 + rev = "1c99daf45c4daa11010a620ebea9a2331d931e43"; 5749 + sha256 = "1d7yw70a8vi43f4y97pc47dxsc1fm5qcsmv68f5wi4a3sliczfdp"; 5750 }; 5751 meta.homepage = "https://github.com/Julian/lean.nvim/"; 5752 }; ··· 5801 5802 legendary-nvim = buildVimPlugin { 5803 pname = "legendary.nvim"; 5804 + version = "2024-11-08"; 5805 src = fetchFromGitHub { 5806 owner = "mrjones2014"; 5807 repo = "legendary.nvim"; 5808 + rev = "94bde687f0b9d41b6113db12e86421909234186f"; 5809 + sha256 = "0lrvvb1q0fk816c5j6pwkgzrs4k8h3awzls8r7wx3zwac00wfgxh"; 5810 }; 5811 meta.homepage = "https://github.com/mrjones2014/legendary.nvim/"; 5812 }; ··· 6027 meta.homepage = "https://github.com/ldelossa/litee-filetree.nvim/"; 6028 }; 6029 6030 litee-symboltree-nvim = buildVimPlugin { 6031 pname = "litee-symboltree.nvim"; 6032 version = "2022-09-28"; ··· 6039 meta.homepage = "https://github.com/ldelossa/litee-symboltree.nvim/"; 6040 }; 6041 6042 + litee-nvim = buildVimPlugin { 6043 + pname = "litee.nvim"; 6044 + version = "2024-06-06"; 6045 + src = fetchFromGitHub { 6046 + owner = "ldelossa"; 6047 + repo = "litee.nvim"; 6048 + rev = "4efaf373322d9e71eaff31164abb393417cc6f6a"; 6049 + sha256 = "13ajn5xply01k4wpsl0v37igama8pgy0kz1lgvv7jn8b1m04yh9x"; 6050 + }; 6051 + meta.homepage = "https://github.com/ldelossa/litee.nvim/"; 6052 + }; 6053 + 6054 live-command-nvim = buildVimPlugin { 6055 pname = "live-command.nvim"; 6056 version = "2024-09-20"; ··· 6149 6150 lsp-zero-nvim = buildVimPlugin { 6151 pname = "lsp-zero.nvim"; 6152 + version = "2024-11-07"; 6153 src = fetchFromGitHub { 6154 owner = "VonHeikemen"; 6155 repo = "lsp-zero.nvim"; 6156 + rev = "ab2a3413646fedd77aa0eab4214a6473e62f6a64"; 6157 + sha256 = "1c8m516fgcc704pgs4dz4vm90as3h3n4m796qdms3wcb2w3hpd8q"; 6158 }; 6159 meta.homepage = "https://github.com/VonHeikemen/lsp-zero.nvim/"; 6160 }; ··· 6256 6257 lualine-nvim = buildVimPlugin { 6258 pname = "lualine.nvim"; 6259 + version = "2024-11-08"; 6260 src = fetchFromGitHub { 6261 owner = "nvim-lualine"; 6262 repo = "lualine.nvim"; 6263 + rev = "2a5bae925481f999263d6f5ed8361baef8df4f83"; 6264 + sha256 = "0hp8gycbwm6ibq4rpa18j3g9xacgghklz4c8jlr4gif6g37r1pi0"; 6265 }; 6266 meta.homepage = "https://github.com/nvim-lualine/lualine.nvim/"; 6267 }; 6268 6269 luasnip = buildNeovimPlugin { 6270 pname = "luasnip"; 6271 + version = "2024-11-12"; 6272 src = fetchFromGitHub { 6273 owner = "l3mon4d3"; 6274 repo = "luasnip"; 6275 + rev = "659c4479529a05cc9b05ef762639a09d366cc690"; 6276 + sha256 = "1ai40sb23sxwqxhkb043pka4gp1yaxhcwq0x1y0mivybvkmilnaf"; 6277 fetchSubmodules = true; 6278 }; 6279 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; ··· 6363 meta.homepage = "https://github.com/winston0410/mark-radar.nvim/"; 6364 }; 6365 6366 + markdown-preview-nvim = buildVimPlugin { 6367 + pname = "markdown-preview.nvim"; 6368 + version = "2023-10-17"; 6369 + src = fetchFromGitHub { 6370 + owner = "iamcco"; 6371 + repo = "markdown-preview.nvim"; 6372 + rev = "a923f5fc5ba36a3b17e289dc35dc17f66d0548ee"; 6373 + sha256 = "06187wxcj2ramhimkrgwq1q8fnndzdywljc606n3pr11y8dxs5ac"; 6374 + }; 6375 + meta.homepage = "https://github.com/iamcco/markdown-preview.nvim/"; 6376 + }; 6377 + 6378 markdown-nvim = buildVimPlugin { 6379 pname = "markdown.nvim"; 6380 version = "2024-06-25"; ··· 6387 meta.homepage = "https://github.com/tadmccorkle/markdown.nvim/"; 6388 }; 6389 6390 markid = buildVimPlugin { 6391 pname = "markid"; 6392 version = "2023-10-18"; ··· 6436 meta.homepage = "https://github.com/williamboman/mason-lspconfig.nvim/"; 6437 }; 6438 6439 + mason-tool-installer-nvim = buildVimPlugin { 6440 + pname = "mason-tool-installer.nvim"; 6441 + version = "2024-06-03"; 6442 + src = fetchFromGitHub { 6443 + owner = "WhoIsSethDaniel"; 6444 + repo = "mason-tool-installer.nvim"; 6445 + rev = "c5e07b8ff54187716334d585db34282e46fa2932"; 6446 + sha256 = "1zpf9v6abg482hbpi0mg0v2g67jvvnxd25aiclyh7bb24s8ljc0y"; 6447 + }; 6448 + meta.homepage = "https://github.com/WhoIsSethDaniel/mason-tool-installer.nvim/"; 6449 + }; 6450 + 6451 mason-nvim = buildVimPlugin { 6452 pname = "mason.nvim"; 6453 version = "2024-07-16"; ··· 6460 meta.homepage = "https://github.com/williamboman/mason.nvim/"; 6461 }; 6462 6463 matchit-zip = buildVimPlugin { 6464 pname = "matchit.zip"; 6465 version = "2010-10-18"; ··· 6496 meta.homepage = "https://github.com/kaicataldo/material.vim/"; 6497 }; 6498 6499 mayansmoke = buildVimPlugin { 6500 pname = "mayansmoke"; 6501 version = "2010-10-18"; ··· 6522 6523 melange-nvim = buildVimPlugin { 6524 pname = "melange-nvim"; 6525 + version = "2024-11-05"; 6526 src = fetchFromGitHub { 6527 owner = "savq"; 6528 repo = "melange-nvim"; 6529 + rev = "4963ebe8336a78eeedbb18b4fbd546dc27bae510"; 6530 + sha256 = "1fidd90mfjx9ijs9m6fx70r5bfkdm5m46drhm0as1daf1j9n4c54"; 6531 }; 6532 meta.homepage = "https://github.com/savq/melange-nvim/"; 6533 }; ··· 6580 meta.homepage = "https://github.com/hadronized/mind.nvim/"; 6581 }; 6582 6583 + mini-git = buildVimPlugin { 6584 + pname = "mini-git"; 6585 + version = "2024-09-07"; 6586 + src = fetchFromGitHub { 6587 + owner = "echasnovski"; 6588 + repo = "mini-git"; 6589 + rev = "f75ae3855f595e55e1a8a96521ffa01012632b28"; 6590 + sha256 = "1d7yy9lbz5ysk5519j25y1gciyq1a2kidzppn7vg0bzwcf6302qg"; 6591 + }; 6592 + meta.homepage = "https://github.com/echasnovski/mini-git/"; 6593 + }; 6594 + 6595 mini-ai = buildVimPlugin { 6596 pname = "mini.ai"; 6597 + version = "2024-11-08"; 6598 src = fetchFromGitHub { 6599 owner = "echasnovski"; 6600 repo = "mini.ai"; 6601 + rev = "31c149067d38b97720d2a179619f7745a0006ecc"; 6602 + sha256 = "1k9r3fr1yi9lpy9rwwnmr0mzpqc19rlyxzs1i5qsfncj2bi9mzps"; 6603 }; 6604 meta.homepage = "https://github.com/echasnovski/mini.ai/"; 6605 }; ··· 6678 6679 mini-clue = buildVimPlugin { 6680 pname = "mini.clue"; 6681 + version = "2024-11-10"; 6682 src = fetchFromGitHub { 6683 owner = "echasnovski"; 6684 repo = "mini.clue"; 6685 + rev = "ce737b3bb81ef1c06a89e62d999da56e40f3c771"; 6686 + sha256 = "0944sqzvnhys43y203ziaabggj3gnz206avpq48yj67j4ssfh9vk"; 6687 }; 6688 meta.homepage = "https://github.com/echasnovski/mini.clue/"; 6689 }; ··· 6714 6715 mini-completion = buildVimPlugin { 6716 pname = "mini.completion"; 6717 + version = "2024-11-08"; 6718 src = fetchFromGitHub { 6719 owner = "echasnovski"; 6720 repo = "mini.completion"; 6721 + rev = "7f41cfa486a408c7bdadd4817c5a28888122d739"; 6722 + sha256 = "1bg6qd6ws92q7hn21pw10i8xipnak4awqy5zz6mkq3kqi2q2lyx8"; 6723 }; 6724 meta.homepage = "https://github.com/echasnovski/mini.completion/"; 6725 }; ··· 6774 6775 mini-extra = buildVimPlugin { 6776 pname = "mini.extra"; 6777 + version = "2024-11-08"; 6778 src = fetchFromGitHub { 6779 owner = "echasnovski"; 6780 repo = "mini.extra"; 6781 + rev = "098a9dc55b2bdf05a7d6ed018884e0faf94edcbb"; 6782 + sha256 = "0xfxmz59lq03xpf4493nz12km0nbqqg4bnj3nvmq9g9rc0lar85m"; 6783 }; 6784 meta.homepage = "https://github.com/echasnovski/mini.extra/"; 6785 }; ··· 6808 meta.homepage = "https://github.com/echasnovski/mini.fuzzy/"; 6809 }; 6810 6811 mini-hipatterns = buildVimPlugin { 6812 pname = "mini.hipatterns"; 6813 version = "2024-09-27"; ··· 6834 6835 mini-icons = buildVimPlugin { 6836 pname = "mini.icons"; 6837 + version = "2024-11-10"; 6838 src = fetchFromGitHub { 6839 owner = "echasnovski"; 6840 repo = "mini.icons"; 6841 + rev = "54686be7d58807906cb2c8c2216e0bf9c044f19a"; 6842 + sha256 = "1z7afyybja4vn1hzlv4cav4flh7jwhkc9ghhlharh1llydww5831"; 6843 }; 6844 meta.homepage = "https://github.com/echasnovski/mini.icons/"; 6845 }; ··· 6930 6931 mini-nvim = buildVimPlugin { 6932 pname = "mini.nvim"; 6933 + version = "2024-11-10"; 6934 src = fetchFromGitHub { 6935 owner = "echasnovski"; 6936 repo = "mini.nvim"; 6937 + rev = "7b4d5d48b6b5a75009d63f8f3e4ef4819b7e8139"; 6938 + sha256 = "1kxpvi3flyxr1zyn2akhd7c3gf1ayq1fzn97czpvkp8af459xm2w"; 6939 }; 6940 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 6941 }; ··· 6966 6967 mini-pick = buildVimPlugin { 6968 pname = "mini.pick"; 6969 + version = "2024-11-10"; 6970 src = fetchFromGitHub { 6971 owner = "echasnovski"; 6972 repo = "mini.pick"; 6973 + rev = "141496412ccd8a6d01bdafc126ea307687600cad"; 6974 + sha256 = "0ikvj43vlc840kc91mxgh9y1s21bxi4fs1rr8pqk9qvm137d0q21"; 6975 }; 6976 meta.homepage = "https://github.com/echasnovski/mini.pick/"; 6977 }; ··· 7170 7171 molten-nvim = buildVimPlugin { 7172 pname = "molten-nvim"; 7173 + version = "2024-11-09"; 7174 src = fetchFromGitHub { 7175 owner = "benlubas"; 7176 repo = "molten-nvim"; 7177 + rev = "bb3e3b29a7cb77919901f362b8e5c65e6519a683"; 7178 + sha256 = "1yvidyp8kxjagddnhjadj6l4ljj78kvccr737r2kjvjzallzjm8l"; 7179 }; 7180 meta.homepage = "https://github.com/benlubas/molten-nvim/"; 7181 }; ··· 7518 7519 neoconf-nvim = buildVimPlugin { 7520 pname = "neoconf.nvim"; 7521 + version = "2024-11-13"; 7522 src = fetchFromGitHub { 7523 owner = "folke"; 7524 repo = "neoconf.nvim"; 7525 + rev = "71c7e55094a645d6f1037767649bf14d233b8951"; 7526 + sha256 = "0wzq0gr2iglll6z0hhrl85b5ddvn7q6sv2ckpwaa3g7kp2snmrs2"; 7527 }; 7528 meta.homepage = "https://github.com/folke/neoconf.nvim/"; 7529 }; ··· 7578 7579 neogen = buildVimPlugin { 7580 pname = "neogen"; 7581 + version = "2024-11-12"; 7582 src = fetchFromGitHub { 7583 owner = "danymat"; 7584 repo = "neogen"; 7585 + rev = "e3b8f6dca1c67c73ae2817418d39c061fdb65064"; 7586 + sha256 = "0gxw0ya2hhha05nrvxxqygyi3p2fxv3lw2ysx2c6nn9sd83yncgq"; 7587 }; 7588 meta.homepage = "https://github.com/danymat/neogen/"; 7589 }; 7590 7591 neogit = buildVimPlugin { 7592 pname = "neogit"; 7593 + version = "2024-11-07"; 7594 src = fetchFromGitHub { 7595 owner = "NeogitOrg"; 7596 repo = "neogit"; 7597 + rev = "8e1e301c2e33c60375850bcf22ba1fb77b684b97"; 7598 + sha256 = "1x9hkld6z16sxsj8wvykqyrnqw21dhvib965jzhpk4a106skczh9"; 7599 }; 7600 meta.homepage = "https://github.com/NeogitOrg/neogit/"; 7601 }; ··· 7674 7675 neoscroll-nvim = buildVimPlugin { 7676 pname = "neoscroll.nvim"; 7677 + version = "2024-11-10"; 7678 src = fetchFromGitHub { 7679 owner = "karb94"; 7680 repo = "neoscroll.nvim"; 7681 + rev = "e58ecc61e38f348dcc8f2af037fe7031f8a6ef7c"; 7682 + sha256 = "08bq6adrafkkczbd314rbi0yzk66fpqk3z0g2j52sq7fff2v8fgm"; 7683 }; 7684 meta.homepage = "https://github.com/karb94/neoscroll.nvim/"; 7685 }; ··· 7857 7858 neotest-haskell = buildVimPlugin { 7859 pname = "neotest-haskell"; 7860 + version = "2024-11-10"; 7861 src = fetchFromGitHub { 7862 owner = "MrcJkb"; 7863 repo = "neotest-haskell"; 7864 + rev = "329117bd9cf86a1c644ac12c8fa618c14a718b7e"; 7865 + sha256 = "1micbw0ylwz9q02bynfq2zsqsbk0lixp5xwdkjcz14k5h8nh90wq"; 7866 }; 7867 meta.homepage = "https://github.com/MrcJkb/neotest-haskell/"; 7868 }; ··· 8203 meta.homepage = "https://github.com/oxfist/night-owl.nvim/"; 8204 }; 8205 8206 nightfox-nvim = buildVimPlugin { 8207 pname = "nightfox.nvim"; 8208 version = "2024-09-08"; ··· 8253 8254 nlsp-settings-nvim = buildVimPlugin { 8255 pname = "nlsp-settings.nvim"; 8256 + version = "2024-11-13"; 8257 src = fetchFromGitHub { 8258 owner = "tamago324"; 8259 repo = "nlsp-settings.nvim"; 8260 + rev = "b42d6a58b85869dbe6c80d532aa6888aaed6bd56"; 8261 + sha256 = "11rysjrr1m1vdmfbjj35cw60ks0qg2siza403jg171x44vzxvsz3"; 8262 }; 8263 meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; 8264 }; ··· 8313 8314 noice-nvim = buildVimPlugin { 8315 pname = "noice.nvim"; 8316 + version = "2024-11-13"; 8317 src = fetchFromGitHub { 8318 owner = "folke"; 8319 repo = "noice.nvim"; 8320 + rev = "ca2e3fea9fb080dcb79d9129d73dac631294fe79"; 8321 + sha256 = "0i6jj7x6v0bwg2nwrlcfwkk248rimnm7pgbhd7gxh2gcg927s3l9"; 8322 }; 8323 meta.homepage = "https://github.com/folke/noice.nvim/"; 8324 }; 8325 8326 none-ls-nvim = buildVimPlugin { 8327 pname = "none-ls.nvim"; 8328 + version = "2024-11-11"; 8329 src = fetchFromGitHub { 8330 owner = "nvimtools"; 8331 repo = "none-ls.nvim"; 8332 + rev = "fb7acad9e98ad9c617775451c1aea95157e17942"; 8333 + sha256 = "13x4mr9ypynd1gy83rdfm1l4m19xvw4gb7bc8ll58vwhfarphksm"; 8334 }; 8335 meta.homepage = "https://github.com/nvimtools/none-ls.nvim/"; 8336 }; ··· 8347 meta.homepage = "https://github.com/shaunsingh/nord.nvim/"; 8348 }; 8349 8350 nordic-nvim = buildVimPlugin { 8351 pname = "nordic.nvim"; 8352 version = "2024-06-16"; ··· 8421 8422 nvchad = buildVimPlugin { 8423 pname = "nvchad"; 8424 + version = "2024-11-06"; 8425 src = fetchFromGitHub { 8426 owner = "nvchad"; 8427 repo = "nvchad"; 8428 + rev = "bbc3d43db088c141b142a40cd5f717635833a54e"; 8429 + sha256 = "13n2is9lgdxifjk5p1iidy1cxlq5pwddhnyjhz7583grj7ka8rwl"; 8430 }; 8431 meta.homepage = "https://github.com/nvchad/nvchad/"; 8432 }; 8433 8434 nvcode-color-schemes-vim = buildVimPlugin { ··· 8577 8578 nvim-colorizer-lua = buildVimPlugin { 8579 pname = "nvim-colorizer.lua"; 8580 + version = "2024-11-06"; 8581 src = fetchFromGitHub { 8582 owner = "nvchad"; 8583 repo = "nvim-colorizer.lua"; 8584 + rev = "f134063618a65cad4d7415fddbd96ff7e0c5b4ae"; 8585 + sha256 = "1chwg1pbiykpp9d96zvis7xlvqk5jh507brdw6z5d5gc9h6x6fcc"; 8586 }; 8587 meta.homepage = "https://github.com/nvchad/nvim-colorizer.lua/"; 8588 }; ··· 8661 8662 nvim-dap = buildVimPlugin { 8663 pname = "nvim-dap"; 8664 + version = "2024-11-13"; 8665 src = fetchFromGitHub { 8666 owner = "mfussenegger"; 8667 repo = "nvim-dap"; 8668 + rev = "6bf4de67dbe90271608e1c81797e5edc79ec6335"; 8669 + sha256 = "066430wxdg0vqav2s2p60i6fbmlbv9nqmx6c4gk4hcmxikdmx5ii"; 8670 }; 8671 meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; 8672 }; ··· 8817 8818 nvim-genghis = buildVimPlugin { 8819 pname = "nvim-genghis"; 8820 + version = "2024-11-06"; 8821 src = fetchFromGitHub { 8822 owner = "chrisgrieser"; 8823 repo = "nvim-genghis"; 8824 + rev = "3998362b132885d599fefb1c285e40807f5b9677"; 8825 + sha256 = "1jrz58d06y1vd2ris8n293gvdf5xsfnllyrs3hl5yrfdnmm323hz"; 8826 }; 8827 meta.homepage = "https://github.com/chrisgrieser/nvim-genghis/"; 8828 }; ··· 8853 8854 nvim-highlight-colors = buildVimPlugin { 8855 pname = "nvim-highlight-colors"; 8856 + version = "2024-11-07"; 8857 src = fetchFromGitHub { 8858 owner = "brenoprata10"; 8859 repo = "nvim-highlight-colors"; 8860 + rev = "e967e2ba13fd4ca731b41d0e5cc1ac2edcd6e25e"; 8861 + sha256 = "0k9m3v8q25myi2bkscbf9pzv4v9nihix9lrch4sh9575qlhjl2gc"; 8862 }; 8863 meta.homepage = "https://github.com/brenoprata10/nvim-highlight-colors/"; 8864 }; ··· 8901 8902 nvim-jdtls = buildVimPlugin { 8903 pname = "nvim-jdtls"; 8904 + version = "2024-11-08"; 8905 src = fetchFromGitHub { 8906 owner = "mfussenegger"; 8907 repo = "nvim-jdtls"; 8908 + rev = "c4279b8ffce9b64eb302056d78dfebc2968a49bc"; 8909 + sha256 = "0xcixaanisvg1rhfcgypa7jc6ndp8hmsvwqkcjz1xfypssa99qhy"; 8910 }; 8911 meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/"; 8912 }; ··· 9020 9021 nvim-lspconfig = buildVimPlugin { 9022 pname = "nvim-lspconfig"; 9023 + version = "2024-11-12"; 9024 src = fetchFromGitHub { 9025 owner = "neovim"; 9026 repo = "nvim-lspconfig"; 9027 + rev = "d2d153a179ed59aa7134d7ebdf4d7dcb156efa22"; 9028 + sha256 = "0h65i97lsp1vcab1lr7la3w6mqniz5w6bkmxiglcpxmcywmlhqr6"; 9029 }; 9030 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 9031 }; ··· 9344 9345 nvim-snippy = buildVimPlugin { 9346 pname = "nvim-snippy"; 9347 + version = "2024-11-12"; 9348 src = fetchFromGitHub { 9349 owner = "dcampos"; 9350 repo = "nvim-snippy"; 9351 + rev = "a57529b851f38bc9909275af791016e8dacce0a3"; 9352 + sha256 = "0w694iyz2rlfcs7zg84q9d38ha70g48xfmdnkwr789j3rr3i3yab"; 9353 }; 9354 meta.homepage = "https://github.com/dcampos/nvim-snippy/"; 9355 }; ··· 9392 9393 nvim-spider = buildVimPlugin { 9394 pname = "nvim-spider"; 9395 + version = "2024-11-12"; 9396 src = fetchFromGitHub { 9397 owner = "chrisgrieser"; 9398 repo = "nvim-spider"; 9399 + rev = "f35bcdbd89a560e9a450ee1929bcef7aedf3ace5"; 9400 + sha256 = "01q5jdh5xwzly5m5878aaqc200cw33k1d3b4l76axfxvjc6z60y3"; 9401 }; 9402 meta.homepage = "https://github.com/chrisgrieser/nvim-spider/"; 9403 }; ··· 9452 9453 nvim-tree-lua = buildVimPlugin { 9454 pname = "nvim-tree.lua"; 9455 + version = "2024-11-10"; 9456 src = fetchFromGitHub { 9457 owner = "nvim-tree"; 9458 repo = "nvim-tree.lua"; 9459 + rev = "28eac2801b201f301449e976d7a9e8cfde053ba3"; 9460 + sha256 = "1fzfmva3hqxfkv1i0fmj1w5nairklf9hb24kndlg7qdh3k1sb030"; 9461 }; 9462 meta.homepage = "https://github.com/nvim-tree/nvim-tree.lua/"; 9463 }; 9464 9465 nvim-treesitter = buildVimPlugin { 9466 pname = "nvim-treesitter"; 9467 + version = "2024-11-13"; 9468 src = fetchFromGitHub { 9469 owner = "nvim-treesitter"; 9470 repo = "nvim-treesitter"; 9471 + rev = "e1e3108cd23d7f967842261bd66126b6734d8907"; 9472 + sha256 = "0rshzi73cj9pd4phkhhxdf4lqlgncrb1wx798wn05f2bhv9m61az"; 9473 }; 9474 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 9475 }; 9476 9477 nvim-treesitter-context = buildVimPlugin { 9478 pname = "nvim-treesitter-context"; 9479 + version = "2024-11-09"; 9480 src = fetchFromGitHub { 9481 owner = "nvim-treesitter"; 9482 repo = "nvim-treesitter-context"; 9483 + rev = "158377d700596367a91ea41818f76abdbf75a232"; 9484 + sha256 = "1h67ygmv7625k3rgvk1y1b8iy9ln102vflxah1k2771j2b0s26d1"; 9485 }; 9486 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; 9487 }; ··· 9596 9597 nvim-ufo = buildVimPlugin { 9598 pname = "nvim-ufo"; 9599 + version = "2024-11-11"; 9600 src = fetchFromGitHub { 9601 owner = "kevinhwang91"; 9602 repo = "nvim-ufo"; 9603 + rev = "c070ee849bfedb2ed778f60419a1eae8c8544be8"; 9604 + sha256 = "1z8hcf7svw1xlay8ibimnl919j4vj6cghrqwm9b1i9kmkzfd0wn8"; 9605 }; 9606 meta.homepage = "https://github.com/kevinhwang91/nvim-ufo/"; 9607 }; ··· 9752 9753 octo-nvim = buildVimPlugin { 9754 pname = "octo.nvim"; 9755 + version = "2024-11-10"; 9756 src = fetchFromGitHub { 9757 owner = "pwntester"; 9758 repo = "octo.nvim"; 9759 + rev = "3f9f945401f4dbbeb7ecee5a5585e26ef743105c"; 9760 + sha256 = "1mr6rh0h6g2gbdh9xhy6335jarfnpy3qa9fy4ga3r50l4rr5s9k8"; 9761 }; 9762 meta.homepage = "https://github.com/pwntester/octo.nvim/"; 9763 }; 9764 9765 oil-nvim = buildVimPlugin { 9766 pname = "oil.nvim"; 9767 + version = "2024-11-12"; 9768 src = fetchFromGitHub { 9769 owner = "stevearc"; 9770 repo = "oil.nvim"; 9771 + rev = "8735d185b37457bd899cd4e47a4517b899407949"; 9772 + sha256 = "07wq5hgllbw8fchwvh4fwyqsijbga8b4xyl9jr19skx0q3y1cw2c"; 9773 fetchSubmodules = true; 9774 }; 9775 meta.homepage = "https://github.com/stevearc/oil.nvim/"; ··· 9837 9838 onedark-nvim = buildVimPlugin { 9839 pname = "onedark.nvim"; 9840 + version = "2024-11-09"; 9841 src = fetchFromGitHub { 9842 owner = "navarasu"; 9843 repo = "onedark.nvim"; 9844 + rev = "67a74c275d1116d575ab25485d1bfa6b2a9c38a6"; 9845 + sha256 = "1pfyz3ascxs3sxl878qcirp9jsz77kpl2ks3wxkcv8ql4psymc9l"; 9846 }; 9847 meta.homepage = "https://github.com/navarasu/onedark.nvim/"; 9848 }; ··· 9873 9874 onedarkpro-nvim = buildVimPlugin { 9875 pname = "onedarkpro.nvim"; 9876 + version = "2024-11-08"; 9877 src = fetchFromGitHub { 9878 owner = "olimorris"; 9879 repo = "onedarkpro.nvim"; 9880 + rev = "c28a6492cfd8752168abfa60ce39d1fc50862b0f"; 9881 + sha256 = "0dli0wkzs364j9428lhzwfs67avm0ry3d5v7br3hfc9md4cfbmjn"; 9882 }; 9883 meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; 9884 }; ··· 10005 10006 overseer-nvim = buildVimPlugin { 10007 pname = "overseer.nvim"; 10008 + version = "2024-11-12"; 10009 src = fetchFromGitHub { 10010 owner = "stevearc"; 10011 repo = "overseer.nvim"; 10012 + rev = "ebaa10bbbff937ba4aeb29bbc8675875da6973cb"; 10013 + sha256 = "1r206frxvlgi1j3qw2yczbpqcr185l5mgh8zqlq6m4q0hw0506ik"; 10014 fetchSubmodules = true; 10015 }; 10016 meta.homepage = "https://github.com/stevearc/overseer.nvim/"; ··· 10184 meta.homepage = "https://github.com/lifepillar/pgsql.vim/"; 10185 }; 10186 10187 pig-vim = buildVimPlugin { 10188 pname = "pig.vim"; 10189 version = "2017-06-08"; ··· 10403 10404 pum-vim = buildVimPlugin { 10405 pname = "pum.vim"; 10406 + version = "2024-11-07"; 10407 src = fetchFromGitHub { 10408 owner = "Shougo"; 10409 repo = "pum.vim"; 10410 + rev = "d2bc1abbcaf29a3a90b212f9b93c5dd898a2b143"; 10411 + sha256 = "03ifnxkq75zxg96ig75wz7mkf2kxiddy04fsxldbprggnan96sxc"; 10412 }; 10413 meta.homepage = "https://github.com/Shougo/pum.vim/"; 10414 }; 10415 10416 purescript-vim = buildVimPlugin { 10417 pname = "purescript-vim"; 10418 version = "2023-02-06"; ··· 10476 10477 quarto-nvim = buildVimPlugin { 10478 pname = "quarto-nvim"; 10479 + version = "2024-11-08"; 10480 src = fetchFromGitHub { 10481 owner = "quarto-dev"; 10482 repo = "quarto-nvim"; 10483 + rev = "8e65ef463320545b16cff318d9bb717d003efe81"; 10484 + sha256 = "1q7w229xra8wqagd1mhxfq2bsynfxrpp8gna4f8zdn293d33vh4j"; 10485 }; 10486 meta.homepage = "https://github.com/quarto-dev/quarto-nvim/"; 10487 }; ··· 10548 10549 rainbow-delimiters-nvim = buildVimPlugin { 10550 pname = "rainbow-delimiters.nvim"; 10551 + version = "2024-11-08"; 10552 src = fetchgit { 10553 url = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim"; 10554 + rev = "f22496dfdd46da4d571f5254c72eff65ff5a1c27"; 10555 + sha256 = "0x9wvzlslzv7pq2ff6jsb1rrp0cgz5hiii2mw9yjl5b73p9n3cpy"; 10556 }; 10557 meta.homepage = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim"; 10558 }; ··· 10691 10692 render-markdown-nvim = buildVimPlugin { 10693 pname = "render-markdown.nvim"; 10694 + version = "2024-11-11"; 10695 src = fetchFromGitHub { 10696 owner = "MeanderingProgrammer"; 10697 repo = "render-markdown.nvim"; 10698 + rev = "78a2eb7fc273f36790aa390262f390a3265eedff"; 10699 + sha256 = "09l8wk1irhv4kbp5caw4dp45dam4wasikich8kn6y6fj07w30b9f"; 10700 }; 10701 meta.homepage = "https://github.com/MeanderingProgrammer/render-markdown.nvim/"; 10702 }; ··· 10727 10728 rest-nvim = buildNeovimPlugin { 10729 pname = "rest.nvim"; 10730 + version = "2024-11-09"; 10731 src = fetchFromGitHub { 10732 owner = "rest-nvim"; 10733 repo = "rest.nvim"; 10734 + rev = "e82dc524894b1b55bcc3296d3644f15c9e06d5ad"; 10735 + sha256 = "1s8vid9d2dacx86f77vx7pdwidhfxyighblchxjybj4fn1b7qwj0"; 10736 fetchSubmodules = true; 10737 }; 10738 meta.homepage = "https://github.com/rest-nvim/rest.nvim/"; 10739 }; 10740 10741 riv-vim = buildVimPlugin { 10742 pname = "riv.vim"; 10743 version = "2024-03-19"; ··· 10784 sha256 = "1bppr0bcffvp0zz14dbparz0smrbl2lrbwxbv5rnam5d56dlkz7k"; 10785 }; 10786 meta.homepage = "https://github.com/ron-rs/ron.vim/"; 10787 }; 10788 10789 roslyn-nvim = buildVimPlugin { ··· 10870 meta.homepage = "https://github.com/vmware-archive/salt-vim/"; 10871 }; 10872 10873 satellite-nvim = buildVimPlugin { 10874 pname = "satellite.nvim"; 10875 version = "2024-09-30"; ··· 11055 pname = "skim.vim"; 11056 version = "2023-05-25"; 11057 src = fetchFromGitHub { 11058 + owner = "skim-rs"; 11059 repo = "skim.vim"; 11060 rev = "aa2a5c44a6640843868cc5c1444abc0093e90e5a"; 11061 sha256 = "0gp0ws1l5d898ffx6s1kgiz3ri0mhbya2n2fh1z6dbqv52b18n08"; 11062 }; 11063 + meta.homepage = "https://github.com/skim-rs/skim.vim/"; 11064 }; 11065 11066 sky-color-clock-vim = buildVimPlugin { ··· 11101 11102 smart-splits-nvim = buildVimPlugin { 11103 pname = "smart-splits.nvim"; 11104 + version = "2024-11-08"; 11105 src = fetchFromGitHub { 11106 owner = "mrjones2014"; 11107 repo = "smart-splits.nvim"; 11108 + rev = "ea4702652cb1d18811d60f2e206787602a2e946c"; 11109 + sha256 = "07im00a9ff9b6qj6m6r2vvpjr0qw93xgqk7bba0fdv7ws3ivzmmw"; 11110 }; 11111 meta.homepage = "https://github.com/mrjones2014/smart-splits.nvim/"; 11112 }; ··· 11137 11138 smartyank-nvim = buildVimPlugin { 11139 pname = "smartyank.nvim"; 11140 + version = "2024-11-10"; 11141 src = fetchFromGitHub { 11142 owner = "ibhagwan"; 11143 repo = "smartyank.nvim"; 11144 + rev = "0a4554a4ea4cad73dab0a15e559f2128ca03c7b2"; 11145 + sha256 = "15513r85kh0fy6y5lrqvrrafjadfhfh6hrcs4x2pjvh65zsja3y5"; 11146 }; 11147 meta.homepage = "https://github.com/ibhagwan/smartyank.nvim/"; 11148 }; 11149 11150 snacks-nvim = buildVimPlugin { 11151 pname = "snacks.nvim"; 11152 + version = "2024-11-13"; 11153 src = fetchFromGitHub { 11154 owner = "folke"; 11155 repo = "snacks.nvim"; 11156 + rev = "f29c5865a8c71691b0be2311a7aa8d82caf4f4f3"; 11157 + sha256 = "07zlw7c24gb8m8r1k65krybvmyawprjy7m6gk0f9lc5g78byfaqh"; 11158 }; 11159 meta.homepage = "https://github.com/folke/snacks.nvim/"; 11160 }; ··· 11462 11463 statuscol-nvim = buildVimPlugin { 11464 pname = "statuscol.nvim"; 11465 + version = "2024-11-07"; 11466 src = fetchFromGitHub { 11467 owner = "luukvbaal"; 11468 repo = "statuscol.nvim"; 11469 + rev = "8822f76e105549620ef9c0d96e7b95aedf14c490"; 11470 + sha256 = "00rnxgmlj23fvrc2jwm9p2bwychhqmfl6bsab49c1y9l3z7kbp4w"; 11471 }; 11472 meta.homepage = "https://github.com/luukvbaal/statuscol.nvim/"; 11473 }; 11474 11475 stay-centered-nvim = buildVimPlugin { 11476 pname = "stay-centered.nvim"; 11477 + version = "2024-11-12"; 11478 src = fetchFromGitHub { 11479 owner = "arnamak"; 11480 repo = "stay-centered.nvim"; 11481 + rev = "e1a63ccaf2584e97c0ef8e64f9654c9a80d983f6"; 11482 + sha256 = "1nb7c77gh6l7fw4d3icxsgmrkqmf3jl5ciajkzxhk4q1kk9az22c"; 11483 }; 11484 meta.homepage = "https://github.com/arnamak/stay-centered.nvim/"; 11485 }; ··· 11655 11656 tabby-nvim = buildVimPlugin { 11657 pname = "tabby.nvim"; 11658 + version = "2024-11-13"; 11659 src = fetchFromGitHub { 11660 owner = "nanozuki"; 11661 repo = "tabby.nvim"; 11662 + rev = "dd5beab7f563ccdb165c7cd47ba7c663447e7041"; 11663 + sha256 = "0s9k61hk9n48n442jj2hy8lr7s39z49xkc9h05iv86gkpvpcb8sw"; 11664 }; 11665 meta.homepage = "https://github.com/nanozuki/tabby.nvim/"; 11666 }; ··· 11764 11765 tagbar = buildVimPlugin { 11766 pname = "tagbar"; 11767 + version = "2024-11-11"; 11768 src = fetchFromGitHub { 11769 owner = "preservim"; 11770 repo = "tagbar"; 11771 + rev = "5e090da54bf999c657608b6c8ec841ef968d923d"; 11772 + sha256 = "15r15lpf7nf1axha4fzssffigc561k35i4kfgk63s7zv6p385z0k"; 11773 }; 11774 meta.homepage = "https://github.com/preservim/tagbar/"; 11775 }; ··· 12018 12019 telescope-manix = buildNeovimPlugin { 12020 pname = "telescope-manix"; 12021 + version = "2024-11-10"; 12022 src = fetchFromGitHub { 12023 owner = "MrcJkb"; 12024 repo = "telescope-manix"; 12025 + rev = "02e7b35d0d6ab2842bc33544fdea1d2c6d4ee3b0"; 12026 + sha256 = "0ajg9mphxbzkk7la73ab20qqwmv9f4qs26xd1063x4z20yykd48q"; 12027 }; 12028 meta.homepage = "https://github.com/MrcJkb/telescope-manix/"; 12029 }; ··· 12040 meta.homepage = "https://github.com/nvim-telescope/telescope-media-files.nvim/"; 12041 }; 12042 12043 telescope-project-nvim = buildVimPlugin { 12044 pname = "telescope-project.nvim"; 12045 version = "2024-09-09"; ··· 12114 12115 telescope-undo-nvim = buildVimPlugin { 12116 pname = "telescope-undo.nvim"; 12117 + version = "2024-11-05"; 12118 src = fetchFromGitHub { 12119 owner = "debugloop"; 12120 repo = "telescope-undo.nvim"; 12121 + rev = "2971cc9f193ec09e0c5de3563f99cbea16b63f10"; 12122 + sha256 = "0cg4w40wmr1k2l5zb25zffpp990wsmi6kq39fvfzy4ay2wx56zgs"; 12123 }; 12124 meta.homepage = "https://github.com/debugloop/telescope-undo.nvim/"; 12125 }; ··· 12171 sha256 = "06rgpid2z8hwxmpwly9sz4p0g200fnf32sa3mdvh2060hq0g4rrc"; 12172 }; 12173 meta.homepage = "https://github.com/jvgrootveld/telescope-zoxide/"; 12174 + }; 12175 + 12176 + telescope-nvim = buildNeovimPlugin { 12177 + pname = "telescope.nvim"; 12178 + version = "2024-10-29"; 12179 + src = fetchFromGitHub { 12180 + owner = "nvim-telescope"; 12181 + repo = "telescope.nvim"; 12182 + rev = "85922dde3767e01d42a08e750a773effbffaea3e"; 12183 + sha256 = "0yv3v4nlh42s96r0xa4fvlil4rh4p0q6l50jk8yg0hmc8vxxzbs1"; 12184 + }; 12185 + meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 12186 }; 12187 12188 telescope_hoogle = buildVimPlugin { ··· 12367 12368 tint-nvim = buildVimPlugin { 12369 pname = "tint.nvim"; 12370 + version = "2024-11-07"; 12371 src = fetchFromGitHub { 12372 owner = "levouh"; 12373 repo = "tint.nvim"; 12374 + rev = "586e87f00c8b0f5e857cefe10839e41f3e8c6d01"; 12375 + sha256 = "1jvj19bxsq8axv27mww7128pjssskdb6msg4b7nz9bk2y5plasw2"; 12376 }; 12377 meta.homepage = "https://github.com/levouh/tint.nvim/"; 12378 }; 12379 12380 tiny-inline-diagnostic-nvim = buildVimPlugin { 12381 pname = "tiny-inline-diagnostic.nvim"; 12382 + version = "2024-11-08"; 12383 src = fetchFromGitHub { 12384 owner = "rachartier"; 12385 repo = "tiny-inline-diagnostic.nvim"; 12386 + rev = "86050f39a62de48734f1a2876d70d179b75deb7c"; 12387 + sha256 = "1lsd57qr8wn8ckflx57as8f3c2k57dwfq1b69767zf5kkfjzr2q3"; 12388 }; 12389 meta.homepage = "https://github.com/rachartier/tiny-inline-diagnostic.nvim/"; 12390 }; 12391 12392 tlib_vim = buildVimPlugin { ··· 12464 12465 toggleterm-nvim = buildVimPlugin { 12466 pname = "toggleterm.nvim"; 12467 + version = "2024-11-09"; 12468 src = fetchFromGitHub { 12469 owner = "akinsho"; 12470 repo = "toggleterm.nvim"; 12471 + rev = "87b2d6a3cab8e2bd9a0255427074285f0365398d"; 12472 + sha256 = "0iiwh2baldc9nkss26c0xki3h8pr202d4ns3jddc2srp4y070lc3"; 12473 }; 12474 meta.homepage = "https://github.com/akinsho/toggleterm.nvim/"; 12475 }; 12476 12477 tokyonight-nvim = buildVimPlugin { 12478 pname = "tokyonight.nvim"; 12479 + version = "2024-11-13"; 12480 src = fetchFromGitHub { 12481 owner = "folke"; 12482 repo = "tokyonight.nvim"; 12483 + rev = "9758827c3b380ba89da4a2212b6255d01afbcf08"; 12484 + sha256 = "1hdy7fc9qyydhqf232jrg4d3ip63a89mgfsl8swzsa5brw39yjd8"; 12485 }; 12486 meta.homepage = "https://github.com/folke/tokyonight.nvim/"; 12487 }; ··· 12573 12574 trouble-nvim = buildVimPlugin { 12575 pname = "trouble.nvim"; 12576 + version = "2024-11-06"; 12577 src = fetchFromGitHub { 12578 owner = "folke"; 12579 repo = "trouble.nvim"; 12580 + rev = "3dc00c0447c016cd43e03054c3d49436a1f2076d"; 12581 + sha256 = "1y6mxs9xlrx3n7brk2zvapfn61nai0zhdqvj97650ib2xaip8j6d"; 12582 }; 12583 meta.homepage = "https://github.com/folke/trouble.nvim/"; 12584 }; ··· 12667 meta.homepage = "https://github.com/folke/twilight.nvim/"; 12668 }; 12669 12670 typescript-tools-nvim = buildVimPlugin { 12671 pname = "typescript-tools.nvim"; 12672 version = "2024-07-18"; ··· 12691 meta.homepage = "https://github.com/leafgarland/typescript-vim/"; 12692 }; 12693 12694 + typescript-nvim = buildVimPlugin { 12695 + pname = "typescript.nvim"; 12696 + version = "2023-08-12"; 12697 + src = fetchFromGitHub { 12698 + owner = "jose-elias-alvarez"; 12699 + repo = "typescript.nvim"; 12700 + rev = "4de85ef699d7e6010528dcfbddc2ed4c2c421467"; 12701 + sha256 = "0rx29i3hmzh2knxx098fvfc0iafx3j08bs1zbv4dxadq56dnhaxm"; 12702 + }; 12703 + meta.homepage = "https://github.com/jose-elias-alvarez/typescript.nvim/"; 12704 + }; 12705 + 12706 typst-conceal-vim = buildVimPlugin { 12707 pname = "typst-conceal.vim"; 12708 version = "2023-10-13"; ··· 12801 12802 unison = buildVimPlugin { 12803 pname = "unison"; 12804 + version = "2024-11-13"; 12805 src = fetchFromGitHub { 12806 owner = "unisonweb"; 12807 repo = "unison"; 12808 + rev = "0dc566a064ff26dfb3047b6a4f7198c9af0cc31f"; 12809 + sha256 = "1da3hd8iv7ia3sl0qrxkpm7bvj5m8px7jb303pvk04qh3wz3f8k2"; 12810 }; 12811 meta.homepage = "https://github.com/unisonweb/unison/"; 12812 }; ··· 12909 12910 vifm-vim = buildVimPlugin { 12911 pname = "vifm.vim"; 12912 + version = "2024-11-09"; 12913 src = fetchFromGitHub { 12914 owner = "vifm"; 12915 repo = "vifm.vim"; 12916 + rev = "5e65e4bff2fc68d96d762faf8a7c0992578a53b5"; 12917 + sha256 = "0sanq7mc8nk9gw7a916s3c0v1g00x8k0v7sd44l3wc3rijpvzhq7"; 12918 }; 12919 meta.homepage = "https://github.com/vifm/vifm.vim/"; 12920 }; ··· 12957 12958 vim-ReplaceWithRegister = buildVimPlugin { 12959 pname = "vim-ReplaceWithRegister"; 12960 + version = "2024-11-12"; 12961 src = fetchFromGitHub { 12962 owner = "inkarkat"; 12963 repo = "vim-ReplaceWithRegister"; 12964 + rev = "b82bf59e5387b57d0125afb94fd7984061031136"; 12965 + sha256 = "0g855rccq51pjbpm72llnv2paw9macwkidr0g6x5fhajd60vzbay"; 12966 }; 12967 meta.homepage = "https://github.com/inkarkat/vim-ReplaceWithRegister/"; 12968 }; ··· 12981 12982 vim-SyntaxRange = buildVimPlugin { 12983 pname = "vim-SyntaxRange"; 12984 + version = "2024-11-13"; 12985 src = fetchFromGitHub { 12986 owner = "inkarkat"; 12987 repo = "vim-SyntaxRange"; 12988 + rev = "78004d2ec1d68f9d1d8b54c1803a52feb2f938f3"; 12989 + sha256 = "15f0r25ch81pr65sp6cmg90lbm2mzxqhwynwvpffln58rbhhj9xs"; 12990 }; 12991 meta.homepage = "https://github.com/inkarkat/vim-SyntaxRange/"; 12992 }; ··· 13231 meta.homepage = "https://github.com/MarcWeber/vim-addon-xdebug/"; 13232 }; 13233 13234 vim-after-object = buildVimPlugin { 13235 pname = "vim-after-object"; 13236 version = "2018-09-17"; ··· 13989 13990 vim-dadbod-completion = buildVimPlugin { 13991 pname = "vim-dadbod-completion"; 13992 + version = "2024-11-08"; 13993 src = fetchFromGitHub { 13994 owner = "kristijanhusak"; 13995 repo = "vim-dadbod-completion"; 13996 + rev = "da0e75c09c27a82aad078d993bb1b2f4afd43427"; 13997 + sha256 = "0b2mix5risfy2wn8vm4hdrc36v26ljskz6xf2c4yd8s4hfmkbfc9"; 13998 }; 13999 meta.homepage = "https://github.com/kristijanhusak/vim-dadbod-completion/"; 14000 }; ··· 14141 sha256 = "1jnx39m152hf9j620ygagaydg6h8m8gxkr1fmxj6kgqf71jr0n9d"; 14142 }; 14143 meta.homepage = "https://github.com/jhradilek/vim-docbk/"; 14144 }; 14145 14146 vim-dotenv = buildVimPlugin { ··· 14721 14722 vim-go = buildVimPlugin { 14723 pname = "vim-go"; 14724 + version = "2024-11-12"; 14725 src = fetchFromGitHub { 14726 owner = "fatih"; 14727 repo = "vim-go"; 14728 + rev = "ec7a59ef10d417c0cc1cd571a165c7c9dec30d27"; 14729 + sha256 = "1ykzn94cw298xw1dri60qayjsxkly5wg8gy9im81f8vna2vdd150"; 14730 }; 14731 meta.homepage = "https://github.com/fatih/vim-go/"; 14732 }; 14733 14734 vim-godot = buildVimPlugin { 14735 pname = "vim-godot"; 14736 + version = "2024-11-12"; 14737 src = fetchFromGitHub { 14738 owner = "habamax"; 14739 repo = "vim-godot"; 14740 + rev = "1c8385789f7f4558bdbbf6e75033b34b4727944b"; 14741 + sha256 = "1jql0s2lnch6fn5iiv0fav2dyw9dhgw9p4rzwifsw37jhzkvv9xs"; 14742 }; 14743 meta.homepage = "https://github.com/habamax/vim-godot/"; 14744 }; ··· 15347 15348 vim-just = buildVimPlugin { 15349 pname = "vim-just"; 15350 + version = "2024-11-07"; 15351 src = fetchFromGitHub { 15352 owner = "NoahTheDuke"; 15353 repo = "vim-just"; 15354 + rev = "cd11f4bb51ae576daae48a27c1c0f98afd59e52c"; 15355 + sha256 = "1h4lacbys64x405ylp9sh9alw890mj93njnsv0kcrfkn8xbrxqmn"; 15356 }; 15357 meta.homepage = "https://github.com/NoahTheDuke/vim-just/"; 15358 }; ··· 15611 15612 vim-lsp-settings = buildVimPlugin { 15613 pname = "vim-lsp-settings"; 15614 + version = "2024-11-11"; 15615 src = fetchFromGitHub { 15616 owner = "mattn"; 15617 repo = "vim-lsp-settings"; 15618 + rev = "ec38220cbcfbd9704294577f94ca80548f8ef57c"; 15619 + sha256 = "1ikqb96qa8dfqy6spzvk5x5v6ra7rxprdly6r4zr6zgfav166a0g"; 15620 }; 15621 meta.homepage = "https://github.com/mattn/vim-lsp-settings/"; 15622 }; ··· 18001 18002 vimade = buildVimPlugin { 18003 pname = "vimade"; 18004 + version = "2024-11-12"; 18005 src = fetchFromGitHub { 18006 owner = "TaDaa"; 18007 repo = "vimade"; 18008 + rev = "57512f7eb4dfa0ef0e2f11a7b47c8c37600943f0"; 18009 + sha256 = "1r9nmgnziqh3mp39ridpwh3awc3khlqdv3xpiyl1kjajs2qyp89b"; 18010 }; 18011 meta.homepage = "https://github.com/TaDaa/vimade/"; 18012 }; ··· 18122 18123 vimtex = buildVimPlugin { 18124 pname = "vimtex"; 18125 + version = "2024-11-11"; 18126 src = fetchFromGitHub { 18127 owner = "lervag"; 18128 repo = "vimtex"; 18129 + rev = "6ee92c7ed2cdc876f499bd5561a65d04dee10d1f"; 18130 + sha256 = "10lc6n6917cna88j56sz2yar351428qjqcpmaxp2skza42lp3y35"; 18131 }; 18132 meta.homepage = "https://github.com/lervag/vimtex/"; 18133 }; ··· 18158 18159 virt-column-nvim = buildVimPlugin { 18160 pname = "virt-column.nvim"; 18161 + version = "2024-11-12"; 18162 src = fetchFromGitHub { 18163 owner = "lukas-reineke"; 18164 repo = "virt-column.nvim"; 18165 + rev = "b87e3e0864211a32724a2ebf3be37e24e9e2fa99"; 18166 + sha256 = "0mlygwrsf6pc44jscq1nb17a8f7p1jv2hgg7ibrm08hqgv7y6fm3"; 18167 }; 18168 meta.homepage = "https://github.com/lukas-reineke/virt-column.nvim/"; 18169 }; ··· 18218 18219 vscode-nvim = buildVimPlugin { 18220 pname = "vscode.nvim"; 18221 + version = "2024-11-11"; 18222 src = fetchFromGitHub { 18223 owner = "Mofiqul"; 18224 repo = "vscode.nvim"; 18225 + rev = "18097b7aa47538afa780c821309c8b992972d726"; 18226 + sha256 = "030bp38mvi1kxjsjhsx4f7acyw4drhbf58wjn0xrb9k1qmyx1ymq"; 18227 }; 18228 meta.homepage = "https://github.com/Mofiqul/vscode.nvim/"; 18229 }; ··· 18266 18267 which-key-nvim = buildVimPlugin { 18268 pname = "which-key.nvim"; 18269 + version = "2024-11-06"; 18270 src = fetchFromGitHub { 18271 owner = "folke"; 18272 repo = "which-key.nvim"; 18273 + rev = "68e37e12913a66b60073906f5d3f14dee0de19f2"; 18274 + sha256 = "134k8p7d69mg4k1cnb432bxl8sm7kf2y3hlzwz0jby7nwff99pp6"; 18275 }; 18276 meta.homepage = "https://github.com/folke/which-key.nvim/"; 18277 }; ··· 18302 18303 wiki-vim = buildVimPlugin { 18304 pname = "wiki.vim"; 18305 + version = "2024-11-07"; 18306 src = fetchFromGitHub { 18307 owner = "lervag"; 18308 repo = "wiki.vim"; 18309 + rev = "d84d105909e72afd50c7b3bc098eee5892139b05"; 18310 + sha256 = "0m6rhik60hclspw64px4nkrbwqx22ibi9rrm6abxyanxas1cwkiw"; 18311 }; 18312 meta.homepage = "https://github.com/lervag/wiki.vim/"; 18313 }; ··· 18470 18471 yanky-nvim = buildVimPlugin { 18472 pname = "yanky.nvim"; 18473 + version = "2024-11-13"; 18474 src = fetchFromGitHub { 18475 owner = "gbprod"; 18476 repo = "yanky.nvim"; 18477 + rev = "f9b905994cccf3c55f41af3a0a1f4c76c844e411"; 18478 + sha256 = "1dvsl6wd6m4gygn32rcmz95hzklknwp4s3s9iyp0ac48q8z8kp73"; 18479 }; 18480 meta.homepage = "https://github.com/gbprod/yanky.nvim/"; 18481 }; ··· 18495 18496 yazi-nvim = buildVimPlugin { 18497 pname = "yazi.nvim"; 18498 + version = "2024-11-06"; 18499 src = fetchFromGitHub { 18500 owner = "mikavilpas"; 18501 repo = "yazi.nvim"; 18502 + rev = "caaebf12464d80d479be497c97d92c1c71b16e94"; 18503 + sha256 = "12gaxx3cmk40idslgxjq7l5mx7jh2gyfdhfpv0rngkqxgcv0s485"; 18504 }; 18505 meta.homepage = "https://github.com/mikavilpas/yazi.nvim/"; 18506 }; ··· 18671 sha256 = "025rqfs0n2ryi7xwzpq5h2r7jhvxbrb2gjp6fqa072hapgqr0igb"; 18672 }; 18673 meta.homepage = "https://github.com/nanotee/zoxide.vim/"; 18674 + }; 18675 + 18676 + catppuccin-nvim = buildVimPlugin { 18677 + pname = "catppuccin-nvim"; 18678 + version = "2024-11-09"; 18679 + src = fetchFromGitHub { 18680 + owner = "catppuccin"; 18681 + repo = "nvim"; 18682 + rev = "637d99e638bc6f1efedac582f6ccab08badac0c6"; 18683 + sha256 = "1vi5wwndcf3gd9sqzbmb2kwy37r4vzx5g2ihh4rc31nkx0yxxjcn"; 18684 + }; 18685 + meta.homepage = "https://github.com/catppuccin/nvim/"; 18686 + }; 18687 + 18688 + catppuccin-vim = buildVimPlugin { 18689 + pname = "catppuccin-vim"; 18690 + version = "2024-08-14"; 18691 + src = fetchFromGitHub { 18692 + owner = "catppuccin"; 18693 + repo = "vim"; 18694 + rev = "060000804cf50315ac6dd986bc4d84fbc40cbc9c"; 18695 + sha256 = "1faxniddq6zcsb93bsm93lkf01mc4jfzxls5vyxmac6rc5v2k1n4"; 18696 + }; 18697 + meta.homepage = "https://github.com/catppuccin/vim/"; 18698 + }; 18699 + 18700 + dracula-vim = buildVimPlugin { 18701 + pname = "dracula-vim"; 18702 + version = "2024-07-26"; 18703 + src = fetchFromGitHub { 18704 + owner = "dracula"; 18705 + repo = "vim"; 18706 + rev = "65f4225e0526516a67d56c8ac09925a209138e53"; 18707 + sha256 = "0jp54l8k40mij0mkavsxzv2kipvzzvy211d6hyvq6ry9liqkl7b8"; 18708 + }; 18709 + meta.homepage = "https://github.com/dracula/vim/"; 18710 + }; 18711 + 18712 + embark-vim = buildVimPlugin { 18713 + pname = "embark-vim"; 18714 + version = "2024-09-21"; 18715 + src = fetchFromGitHub { 18716 + owner = "embark-theme"; 18717 + repo = "vim"; 18718 + rev = "530e361aa81a8665c3a909a787b918aaf7d702e2"; 18719 + sha256 = "1fyjri2i8cg4kykx64xf4i6xwyfdgzhimmr2mpwhjwgkjh8mhlph"; 18720 + }; 18721 + meta.homepage = "https://github.com/embark-theme/vim/"; 18722 + }; 18723 + 18724 + gbprod-nord = buildVimPlugin { 18725 + pname = "gbprod-nord"; 18726 + version = "2024-10-10"; 18727 + src = fetchFromGitHub { 18728 + owner = "gbprod"; 18729 + repo = "nord.nvim"; 18730 + rev = "4cc19936b1b57ba08eb461c5f450b3976cbb8e0c"; 18731 + sha256 = "1k09fv0cb8xaa6z1fz6l58cdzgz4wfnfhv32dw3y395gr69a9sra"; 18732 + }; 18733 + meta.homepage = "https://github.com/gbprod/nord.nvim/"; 18734 + }; 18735 + 18736 + gruvbox-community = buildVimPlugin { 18737 + pname = "gruvbox-community"; 18738 + version = "2024-01-21"; 18739 + src = fetchFromGitHub { 18740 + owner = "gruvbox-community"; 18741 + repo = "gruvbox"; 18742 + rev = "143a3b8babcfd2bce6c99d6ba496942647c3e30b"; 18743 + sha256 = "00wg2m2591fw3d9almwdg39xvwxzz2xid86n536ygai81cirw351"; 18744 + }; 18745 + meta.homepage = "https://github.com/gruvbox-community/gruvbox/"; 18746 + }; 18747 + 18748 + harpoon2 = buildVimPlugin { 18749 + pname = "harpoon2"; 18750 + version = "2024-11-13"; 18751 + src = fetchFromGitHub { 18752 + owner = "ThePrimeagen"; 18753 + repo = "harpoon"; 18754 + rev = "a84ab829eaf3678b586609888ef52f7779102263"; 18755 + sha256 = "0gqxgmkby2fzji8rdzbn929j2zlzzl6fs0gm4pxj18368zi7lc1y"; 18756 + }; 18757 + meta.homepage = "https://github.com/ThePrimeagen/harpoon/"; 18758 + }; 18759 + 18760 + mattn-calendar-vim = buildVimPlugin { 18761 + pname = "mattn-calendar-vim"; 18762 + version = "2022-02-10"; 18763 + src = fetchFromGitHub { 18764 + owner = "mattn"; 18765 + repo = "calendar-vim"; 18766 + rev = "2083a41e2d310f9bbbbf644517f30e901f1fb04d"; 18767 + sha256 = "13wakcprkh93i7afykkpavxqvxssjh573pjjljsgip3y3778ms5q"; 18768 + }; 18769 + meta.homepage = "https://github.com/mattn/calendar-vim/"; 18770 + }; 18771 + 18772 + nightfly = buildVimPlugin { 18773 + pname = "nightfly"; 18774 + version = "2024-11-13"; 18775 + src = fetchFromGitHub { 18776 + owner = "bluz71"; 18777 + repo = "vim-nightfly-colors"; 18778 + rev = "8119d460fd36024f346776739754184e3308f8f9"; 18779 + sha256 = "0sfr03a4mf00k9ssl21lmw7kgfwlpq7bdvgfqkir5z1ws99fqvfn"; 18780 + }; 18781 + meta.homepage = "https://github.com/bluz71/vim-nightfly-colors/"; 18782 + }; 18783 + 18784 + nord-vim = buildVimPlugin { 18785 + pname = "nord-vim"; 18786 + version = "2023-05-03"; 18787 + src = fetchFromGitHub { 18788 + owner = "nordtheme"; 18789 + repo = "vim"; 18790 + rev = "f13f5dfbb784deddbc1d8195f34dfd9ec73e2295"; 18791 + sha256 = "1f3k8hxf21fij776xw830f71wvl6v5qmv5h806l773c9sx2dp1rz"; 18792 + }; 18793 + meta.homepage = "https://github.com/nordtheme/vim/"; 18794 + }; 18795 + 18796 + nvchad-ui = buildVimPlugin { 18797 + pname = "nvchad-ui"; 18798 + version = "2024-11-10"; 18799 + src = fetchFromGitHub { 18800 + owner = "nvchad"; 18801 + repo = "ui"; 18802 + rev = "c59c5fc078cc22a28604e154552c41705359145b"; 18803 + sha256 = "0iggrkf3pi0w9x5q9flvzr520qlzv0749mcb9xhaq0l82xagahkc"; 18804 + }; 18805 + meta.homepage = "https://github.com/nvchad/ui/"; 18806 + }; 18807 + 18808 + phha-zenburn = buildVimPlugin { 18809 + pname = "phha-zenburn"; 18810 + version = "2024-01-31"; 18811 + src = fetchFromGitHub { 18812 + owner = "phha"; 18813 + repo = "zenburn.nvim"; 18814 + rev = "f5ee12b30119499c7fa7f95719cd7c5aab9f9f29"; 18815 + sha256 = "10wn4b1awk4bzb7isfqbp3pqzi2ifnmcs7zyrwhna1dpwwdpgvbr"; 18816 + }; 18817 + meta.homepage = "https://github.com/phha/zenburn.nvim/"; 18818 + }; 18819 + 18820 + pure-lua = buildVimPlugin { 18821 + pname = "pure-lua"; 18822 + version = "2021-05-16"; 18823 + src = fetchFromGitHub { 18824 + owner = "shaunsingh"; 18825 + repo = "moonlight.nvim"; 18826 + rev = "e24e4218ec680b6396532808abf57ca0ada82e66"; 18827 + sha256 = "0m9w3fpypsqxydjd93arbjqb5576nl40iy27i4ijlrqhgdhl49y3"; 18828 + }; 18829 + meta.homepage = "https://github.com/shaunsingh/moonlight.nvim/"; 18830 + }; 18831 + 18832 + restore-view-vim = buildVimPlugin { 18833 + pname = "restore-view-vim"; 18834 + version = "2014-11-21"; 18835 + src = fetchFromGitHub { 18836 + owner = "vim-scripts"; 18837 + repo = "restore_view.vim"; 18838 + rev = "8b933436e3ab8dec120841027183f0d72a4e2096"; 18839 + sha256 = "1kmhsbgscbij3rd2f8ahv9qmhw8jppgvfnqb45f81awmmqd9l4bn"; 18840 + }; 18841 + meta.homepage = "https://github.com/vim-scripts/restore_view.vim/"; 18842 + }; 18843 + 18844 + rose-pine = buildVimPlugin { 18845 + pname = "rose-pine"; 18846 + version = "2024-10-23"; 18847 + src = fetchFromGitHub { 18848 + owner = "rose-pine"; 18849 + repo = "neovim"; 18850 + rev = "07a887a7bef4aacea8c7caebaf8cbf808cdc7a8e"; 18851 + sha256 = "00gyn9s5c76fk1sqyg48aldbq2d8m33xia48vik8grj9wp12kbpx"; 18852 + }; 18853 + meta.homepage = "https://github.com/rose-pine/neovim/"; 18854 + }; 18855 + 18856 + samodostal-image-nvim = buildVimPlugin { 18857 + pname = "samodostal-image-nvim"; 18858 + version = "2024-01-07"; 18859 + src = fetchFromGitHub { 18860 + owner = "samodostal"; 18861 + repo = "image.nvim"; 18862 + rev = "acbd1d7d64ac0643021a6146eb0557e7c2e793d0"; 18863 + sha256 = "0s5fxlc7igmvgpmpry1vkrl4xav37cx94ay1sg246y7y2j4j5l56"; 18864 + }; 18865 + meta.homepage = "https://github.com/samodostal/image.nvim/"; 18866 + }; 18867 + 18868 + tinykeymap = buildVimPlugin { 18869 + pname = "tinykeymap"; 18870 + version = "2024-02-17"; 18871 + src = fetchFromGitHub { 18872 + owner = "tomtom"; 18873 + repo = "tinykeymap_vim"; 18874 + rev = "7217ce656069d82cd71872ede09152b232ecaf1b"; 18875 + sha256 = "1y0snmb402k1f5r54192d7jpg3fbam4ry92hn063y92110j9580w"; 18876 + }; 18877 + meta.homepage = "https://github.com/tomtom/tinykeymap_vim/"; 18878 + }; 18879 + 18880 + vim-advanced-sorters = buildVimPlugin { 18881 + pname = "vim-advanced-sorters"; 18882 + version = "2024-11-10"; 18883 + src = fetchFromGitHub { 18884 + owner = "inkarkat"; 18885 + repo = "vim-AdvancedSorters"; 18886 + rev = "4975c129954f29c74c4de173530248929e4ecc91"; 18887 + sha256 = "08i1vvsv7cmq4l6vdc8l3k4gn7zvn2fa2vd4xd45sjyfmbf9l4an"; 18888 + }; 18889 + meta.homepage = "https://github.com/inkarkat/vim-AdvancedSorters/"; 18890 + }; 18891 + 18892 + vim-docbk-snippets = buildVimPlugin { 18893 + pname = "vim-docbk-snippets"; 18894 + version = "2023-09-29"; 18895 + src = fetchFromGitHub { 18896 + owner = "jhradilek"; 18897 + repo = "vim-snippets"; 18898 + rev = "73aa6c7a3dcd9ac452271fbd4f8a2bdf66a7513e"; 18899 + sha256 = "1wpn6gfw1r89232d779lz8wy19asrribindlcsaikrsqvml3a0hr"; 18900 + }; 18901 + meta.homepage = "https://github.com/jhradilek/vim-snippets/"; 18902 }; 18903 18904
+173 -162
pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix
··· 16 }; 17 agda = buildGrammar { 18 language = "agda"; 19 - version = "0.0.0+rev=6516cfe"; 20 src = fetchFromGitHub { 21 owner = "tree-sitter"; 22 repo = "tree-sitter-agda"; 23 - rev = "6516cfec35479d62c0ad3c8e7e546a9774b489fd"; 24 - hash = "sha256-X8CkbeJWkNKyx1aT2FZRsh8teyie8nzZt7lhIQ+apnc="; 25 }; 26 meta.homepage = "https://github.com/tree-sitter/tree-sitter-agda"; 27 }; ··· 105 }; 106 bash = buildGrammar { 107 language = "bash"; 108 - version = "0.0.0+rev=597a5ed"; 109 src = fetchFromGitHub { 110 owner = "tree-sitter"; 111 repo = "tree-sitter-bash"; 112 - rev = "597a5ed6ed4d932fd44697feec988f977081ae59"; 113 - hash = "sha256-h6L5eIItu3IOJBKSZCajHMhhencN1Fk/4dXgBMuVxYc="; 114 }; 115 meta.homepage = "https://github.com/tree-sitter/tree-sitter-bash"; 116 }; ··· 193 }; 194 c = buildGrammar { 195 language = "c"; 196 - version = "0.0.0+rev=6c7f459"; 197 src = fetchFromGitHub { 198 owner = "tree-sitter"; 199 repo = "tree-sitter-c"; 200 - rev = "6c7f459ddc0bcf78b615d3a3f4e8fed87b8b3b1b"; 201 - hash = "sha256-lEaHOiA4BohmxOrcBy5TlV+x5aqD7e5n5beuVpqAM0M="; 202 }; 203 meta.homepage = "https://github.com/tree-sitter/tree-sitter-c"; 204 }; 205 c_sharp = buildGrammar { 206 language = "c_sharp"; 207 - version = "0.0.0+rev=3a85187"; 208 src = fetchFromGitHub { 209 owner = "tree-sitter"; 210 repo = "tree-sitter-c-sharp"; 211 - rev = "3a85187e0a9e8db01dec6b3eb2f4e7cdfecc9d88"; 212 - hash = "sha256-OwH0ehwTVEATJts7Y5k0E1oHL8X4G5DGoN4kZmhjjQk="; 213 }; 214 meta.homepage = "https://github.com/tree-sitter/tree-sitter-c-sharp"; 215 }; ··· 325 }; 326 cpp = buildGrammar { 327 language = "cpp"; 328 - version = "0.0.0+rev=16bf9d2"; 329 src = fetchFromGitHub { 330 owner = "tree-sitter"; 331 repo = "tree-sitter-cpp"; 332 - rev = "16bf9d2c451957aee976c982c2c668b1c0d12014"; 333 - hash = "sha256-ZcZRTxF+9SvSwMSX4AjHndPJUnz3Ajx7/1cTkhWT7ZM="; 334 }; 335 meta.homepage = "https://github.com/tree-sitter/tree-sitter-cpp"; 336 }; 337 css = buildGrammar { 338 language = "css"; 339 - version = "0.0.0+rev=ccc4e2c"; 340 src = fetchFromGitHub { 341 owner = "tree-sitter"; 342 repo = "tree-sitter-css"; 343 - rev = "ccc4e2c4b30ddabc4b41c577ad0550b3cac4a74a"; 344 - hash = "sha256-mtDBNG2vadcqYX6CHo9TBIg9vMvY1RmK0LiOD2su4JE="; 345 }; 346 meta.homepage = "https://github.com/tree-sitter/tree-sitter-css"; 347 }; ··· 414 }; 415 desktop = buildGrammar { 416 language = "desktop"; 417 - version = "0.0.0+rev=de93cdb"; 418 src = fetchFromGitHub { 419 owner = "ValdezFOmar"; 420 repo = "tree-sitter-desktop"; 421 - rev = "de93cdbd1cba965c102ce8b659d79f5759b933bd"; 422 - hash = "sha256-aBdF9s1Km5vrb+kXnwdcxuhUJyzQCpGlQ/EE0h2kT0U="; 423 }; 424 meta.homepage = "https://github.com/ValdezFOmar/tree-sitter-desktop"; 425 }; ··· 513 }; 514 dtd = buildGrammar { 515 language = "dtd"; 516 - version = "0.0.0+rev=cd1316e"; 517 src = fetchFromGitHub { 518 owner = "tree-sitter-grammars"; 519 repo = "tree-sitter-xml"; 520 - rev = "cd1316e476ec40da6ce1fb5749c9d7e6b4f1090c"; 521 - hash = "sha256-RTWvOUAs3Uql9DKsP1jf9FZZHaZORE40GXd+6g6RQZw="; 522 }; 523 location = "dtd"; 524 meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-xml"; 525 }; 526 earthfile = buildGrammar { 527 language = "earthfile"; 528 - version = "0.0.0+rev=1d637f2"; 529 src = fetchFromGitHub { 530 owner = "glehmann"; 531 repo = "tree-sitter-earthfile"; 532 - rev = "1d637f2002bb8b22d4c08d26ad2bfbc22916f3ce"; 533 - hash = "sha256-KzswtiuFyT1xFDDHGhQi+cT/VfGVOgHn7nfUm4ZB9M8="; 534 }; 535 meta.homepage = "https://github.com/glehmann/tree-sitter-earthfile"; 536 }; ··· 548 }; 549 editorconfig = buildGrammar { 550 language = "editorconfig"; 551 - version = "0.0.0+rev=5eca41a"; 552 src = fetchFromGitHub { 553 owner = "ValdezFOmar"; 554 repo = "tree-sitter-editorconfig"; 555 - rev = "5eca41a689dc03534e9c459b066d116f8befb4ef"; 556 - hash = "sha256-bsefC7SCJvSPy83BeIYxmFe+0Zt96QNs49Tlh/Vbx5s="; 557 }; 558 meta.homepage = "https://github.com/ValdezFOmar/tree-sitter-editorconfig"; 559 }; ··· 625 }; 626 embedded_template = buildGrammar { 627 language = "embedded_template"; 628 - version = "0.0.0+rev=7e319b0"; 629 src = fetchFromGitHub { 630 owner = "tree-sitter"; 631 repo = "tree-sitter-embedded-template"; 632 - rev = "7e319b065c5864bac2fb68f7e14a338b919e8bb3"; 633 - hash = "sha256-aBeJ0R2OQZTVH63NOGrYH0z044d0fgVgIn2V2Z2d7cY="; 634 }; 635 meta.homepage = "https://github.com/tree-sitter/tree-sitter-embedded-template"; 636 }; ··· 713 }; 714 foam = buildGrammar { 715 language = "foam"; 716 - version = "0.0.0+rev=04664b4"; 717 src = fetchFromGitHub { 718 owner = "FoamScience"; 719 repo = "tree-sitter-foam"; 720 - rev = "04664b40c0dadb7ef37028acf3422c63271d377b"; 721 - hash = "sha256-cIeYuYti/rzMivwRU//zzhMXJsTOMBveLK2zB4qRWGI="; 722 }; 723 meta.homepage = "https://github.com/FoamScience/tree-sitter-foam"; 724 }; ··· 857 }; 858 gitattributes = buildGrammar { 859 language = "gitattributes"; 860 - version = "0.0.0+rev=41940e1"; 861 src = fetchFromGitHub { 862 owner = "ObserverOfTime"; 863 repo = "tree-sitter-gitattributes"; 864 - rev = "41940e199ba5763abea1d21b4f717014b45f01ea"; 865 - hash = "sha256-h9RPFI40C4LxjjKZEKkVCnUjNkh6Tgl74msSTpju7ZY="; 866 }; 867 meta.homepage = "https://github.com/ObserverOfTime/tree-sitter-gitattributes"; 868 }; ··· 967 }; 968 go = buildGrammar { 969 language = "go"; 970 - version = "0.0.0+rev=df2ce2e"; 971 src = fetchFromGitHub { 972 owner = "tree-sitter"; 973 repo = "tree-sitter-go"; 974 - rev = "df2ce2e206d2810bf010d73055055bfcff1b55aa"; 975 - hash = "sha256-hQrLPjGsgBDd3nMKSTEkcuV3dOK6b1FlAR1fD0mAAt0="; 976 }; 977 meta.homepage = "https://github.com/tree-sitter/tree-sitter-go"; 978 }; ··· 1121 }; 1122 haskell = buildGrammar { 1123 language = "haskell"; 1124 - version = "0.0.0+rev=70ea075"; 1125 src = fetchFromGitHub { 1126 owner = "tree-sitter"; 1127 repo = "tree-sitter-haskell"; 1128 - rev = "70ea0757986ea58a0d39ddfcd9d791beadeb0f43"; 1129 - hash = "sha256-T/EMYPjdsD4hxcGzqYwC7uHP2EgWPYCqjPywucnpe9s="; 1130 }; 1131 meta.homepage = "https://github.com/tree-sitter/tree-sitter-haskell"; 1132 }; ··· 1232 }; 1233 html = buildGrammar { 1234 language = "html"; 1235 - version = "0.0.0+rev=c30792d"; 1236 src = fetchFromGitHub { 1237 owner = "tree-sitter"; 1238 repo = "tree-sitter-html"; 1239 - rev = "c30792dee70aaa1910e66a39557a841b6e4386d5"; 1240 - hash = "sha256-DKRgTfJcUIOfuD7gFRGaSvLoz+RKhBVs0lVB22/AC04="; 1241 }; 1242 meta.homepage = "https://github.com/tree-sitter/tree-sitter-html"; 1243 }; ··· 1287 }; 1288 idl = buildGrammar { 1289 language = "idl"; 1290 - version = "0.0.0+rev=9ac6fdd"; 1291 src = fetchFromGitHub { 1292 owner = "cathaysia"; 1293 repo = "tree-sitter-idl"; 1294 - rev = "9ac6fdd7840b5c0f271fe11b4ab656634dc2074a"; 1295 - hash = "sha256-cedxIEfqyvnVdJOqPbXnsKoajMXwejVu9BV3qLCuYR8="; 1296 }; 1297 meta.homepage = "https://github.com/cathaysia/tree-sitter-idl"; 1298 }; ··· 1309 }; 1310 inko = buildGrammar { 1311 language = "inko"; 1312 - version = "0.0.0+rev=6f9c072"; 1313 src = fetchFromGitHub { 1314 owner = "inko-lang"; 1315 repo = "tree-sitter-inko"; 1316 - rev = "6f9c072d023c3886aabcd8012274461b35d2d0a9"; 1317 - hash = "sha256-yZ4F5tREEgoiI7Q9MFVH9HIM6bYxb/qdd0lqZREZkIo="; 1318 }; 1319 meta.homepage = "https://github.com/inko-lang/tree-sitter-inko"; 1320 }; ··· 1342 }; 1343 java = buildGrammar { 1344 language = "java"; 1345 - version = "0.0.0+rev=b864ed9"; 1346 src = fetchFromGitHub { 1347 owner = "tree-sitter"; 1348 repo = "tree-sitter-java"; 1349 - rev = "b864ed97b9675e86de7c15a70c12e4c1ca85fbf9"; 1350 - hash = "sha256-CiWIh8IFmK1xW7DfERWqsnFjtveAevANlzJbPOwA7Z0="; 1351 }; 1352 meta.homepage = "https://github.com/tree-sitter/tree-sitter-java"; 1353 }; 1354 javascript = buildGrammar { 1355 language = "javascript"; 1356 - version = "0.0.0+rev=a2ef079"; 1357 src = fetchFromGitHub { 1358 owner = "tree-sitter"; 1359 repo = "tree-sitter-javascript"; 1360 - rev = "a2ef0796e8b9db9107c9ad210b3121b8ad918d5e"; 1361 - hash = "sha256-0WTH1bj2uKgfLnJqaoHYJFUFY4OWpCnY0YfbPiqIbiM="; 1362 }; 1363 meta.homepage = "https://github.com/tree-sitter/tree-sitter-javascript"; 1364 }; ··· 1375 }; 1376 jsdoc = buildGrammar { 1377 language = "jsdoc"; 1378 - version = "0.0.0+rev=b223787"; 1379 src = fetchFromGitHub { 1380 owner = "tree-sitter"; 1381 repo = "tree-sitter-jsdoc"; 1382 - rev = "b2237872e528b8372ed008068f717db66c16a725"; 1383 - hash = "sha256-XRSwn1TZcotETTalWKAviBGmmQWHucfVFV7rqglTdfw="; 1384 }; 1385 meta.homepage = "https://github.com/tree-sitter/tree-sitter-jsdoc"; 1386 }; 1387 json = buildGrammar { 1388 language = "json"; 1389 - version = "0.0.0+rev=f2503f1"; 1390 src = fetchFromGitHub { 1391 owner = "tree-sitter"; 1392 repo = "tree-sitter-json"; 1393 - rev = "f2503f1c437fe24560876557868ac94c9cfd3216"; 1394 - hash = "sha256-9tkKDvVB5YHqtIiBqrCRGp4H9MwapC1mHrm86iytiz4="; 1395 }; 1396 meta.homepage = "https://github.com/tree-sitter/tree-sitter-json"; 1397 }; ··· 1430 }; 1431 julia = buildGrammar { 1432 language = "julia"; 1433 - version = "0.0.0+rev=19f6265"; 1434 src = fetchFromGitHub { 1435 owner = "tree-sitter"; 1436 repo = "tree-sitter-julia"; 1437 - rev = "19f62656dc7f2ff3756a8ef3dcf9ab1c01a9eb58"; 1438 - hash = "sha256-3oegMQ+8B/grgV26v9hir0vpjl9QYxj9cdLeIeDougw="; 1439 }; 1440 meta.homepage = "https://github.com/tree-sitter/tree-sitter-julia"; 1441 }; ··· 1518 }; 1519 latex = buildGrammar { 1520 language = "latex"; 1521 - version = "0.0.0+rev=87e4059"; 1522 src = fetchFromGitHub { 1523 owner = "latex-lsp"; 1524 repo = "tree-sitter-latex"; 1525 - rev = "87e4059f01bed363230dc349f794ce4cc580e862"; 1526 - hash = "sha256-bUTJuwqdQ1htZQnxy3/fEm9zE7G5WDjiDib/iRteLTo="; 1527 }; 1528 generate = true; 1529 meta.homepage = "https://github.com/latex-lsp/tree-sitter-latex"; ··· 1730 }; 1731 mlir = buildGrammar { 1732 language = "mlir"; 1733 - version = "0.0.0+rev=8cde51a"; 1734 src = fetchFromGitHub { 1735 owner = "artagnon"; 1736 repo = "tree-sitter-mlir"; 1737 - rev = "8cde51ac0484fdf59a90641fefb92a0e846dcc7c"; 1738 - hash = "sha256-bIqWBIOkUq9TitqNneiB+epu/+kVgW1szOm96yMrFaE="; 1739 }; 1740 generate = true; 1741 meta.homepage = "https://github.com/artagnon/tree-sitter-mlir"; ··· 1819 }; 1820 nix = buildGrammar { 1821 language = "nix"; 1822 - version = "0.0.0+rev=1b26cb6"; 1823 src = fetchFromGitHub { 1824 owner = "cstrahan"; 1825 repo = "tree-sitter-nix"; 1826 - rev = "1b26cb63284287344bc3820804cea18419b3edec"; 1827 - hash = "sha256-tkGOSi0NqtKl6w473+G66mWwbXwpmRySMLH8DEEcEXQ="; 1828 }; 1829 meta.homepage = "https://github.com/cstrahan/tree-sitter-nix"; 1830 }; ··· 1852 }; 1853 nu = buildGrammar { 1854 language = "nu"; 1855 - version = "0.0.0+rev=082a7c7"; 1856 src = fetchFromGitHub { 1857 owner = "nushell"; 1858 repo = "tree-sitter-nu"; 1859 - rev = "082a7c7df7db460da6b280c9f902bf2b19a2f423"; 1860 - hash = "sha256-BUOadkcQAXqMI8qpDcPN8NwNI+LScPKl/GsGvhfUmhw="; 1861 }; 1862 meta.homepage = "https://github.com/nushell/tree-sitter-nu"; 1863 }; ··· 1885 }; 1886 ocaml = buildGrammar { 1887 language = "ocaml"; 1888 - version = "0.0.0+rev=5f7a97e"; 1889 src = fetchFromGitHub { 1890 owner = "tree-sitter"; 1891 repo = "tree-sitter-ocaml"; 1892 - rev = "5f7a97e9757d8afe6c0b0b5dd8734cf59f35456e"; 1893 - hash = "sha256-jBWNJpLtBHJ13g4c30W6YqGN9O7UoX7iqvz7ThtHi5A="; 1894 }; 1895 location = "grammars/ocaml"; 1896 meta.homepage = "https://github.com/tree-sitter/tree-sitter-ocaml"; 1897 }; 1898 ocaml_interface = buildGrammar { 1899 language = "ocaml_interface"; 1900 - version = "0.0.0+rev=5f7a97e"; 1901 src = fetchFromGitHub { 1902 owner = "tree-sitter"; 1903 repo = "tree-sitter-ocaml"; 1904 - rev = "5f7a97e9757d8afe6c0b0b5dd8734cf59f35456e"; 1905 - hash = "sha256-jBWNJpLtBHJ13g4c30W6YqGN9O7UoX7iqvz7ThtHi5A="; 1906 }; 1907 location = "grammars/interface"; 1908 meta.homepage = "https://github.com/tree-sitter/tree-sitter-ocaml"; ··· 1987 }; 1988 php = buildGrammar { 1989 language = "php"; 1990 - version = "0.0.0+rev=2bce5a6"; 1991 src = fetchFromGitHub { 1992 owner = "tree-sitter"; 1993 repo = "tree-sitter-php"; 1994 - rev = "2bce5a6588ad6d53ffe5effaf9708682f0fbfc9b"; 1995 - hash = "sha256-0yWXwRc0cMMLL8P99eW3BwYIrm6FDG7eBNfjmIDzZIU="; 1996 }; 1997 location = "php"; 1998 meta.homepage = "https://github.com/tree-sitter/tree-sitter-php"; 1999 }; 2000 php_only = buildGrammar { 2001 language = "php_only"; 2002 - version = "0.0.0+rev=2bce5a6"; 2003 src = fetchFromGitHub { 2004 owner = "tree-sitter"; 2005 repo = "tree-sitter-php"; 2006 - rev = "2bce5a6588ad6d53ffe5effaf9708682f0fbfc9b"; 2007 - hash = "sha256-0yWXwRc0cMMLL8P99eW3BwYIrm6FDG7eBNfjmIDzZIU="; 2008 }; 2009 location = "php_only"; 2010 meta.homepage = "https://github.com/tree-sitter/tree-sitter-php"; ··· 2088 }; 2089 printf = buildGrammar { 2090 language = "printf"; 2091 - version = "0.0.0+rev=94b84fb"; 2092 src = fetchFromGitHub { 2093 owner = "ObserverOfTime"; 2094 repo = "tree-sitter-printf"; 2095 - rev = "94b84fbc4768a7cbdeadfe5e489a45a6a8af400e"; 2096 - hash = "sha256-Ax23Y2arS+8g45F1NuffTq0ZlPZ2NBz0aHuQJyEVy2Y="; 2097 }; 2098 meta.homepage = "https://github.com/ObserverOfTime/tree-sitter-printf"; 2099 }; ··· 2145 }; 2146 properties = buildGrammar { 2147 language = "properties"; 2148 - version = "0.0.0+rev=9d09f5f"; 2149 src = fetchFromGitHub { 2150 owner = "tree-sitter-grammars"; 2151 repo = "tree-sitter-properties"; 2152 - rev = "9d09f5f200c356c50c4103d36441309fd61b48d1"; 2153 - hash = "sha256-KrQlLqCH4P5pwm8ql+iVR09khzQuJu2UHXdMT9MZYe8="; 2154 }; 2155 meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-properties"; 2156 }; ··· 2234 }; 2235 python = buildGrammar { 2236 language = "python"; 2237 - version = "0.0.0+rev=7f4b9c2"; 2238 src = fetchFromGitHub { 2239 owner = "tree-sitter"; 2240 repo = "tree-sitter-python"; 2241 - rev = "7f4b9c2d8039701b0579b7c060a918f8548aa7cd"; 2242 - hash = "sha256-pD4JedYrnz6d5pgzRPtKPY0XPRoot1FMI9XgTgONOyw="; 2243 }; 2244 meta.homepage = "https://github.com/tree-sitter/tree-sitter-python"; 2245 }; 2246 ql = buildGrammar { 2247 language = "ql"; 2248 - version = "0.0.0+rev=1d3e2ff"; 2249 src = fetchFromGitHub { 2250 owner = "tree-sitter"; 2251 repo = "tree-sitter-ql"; 2252 - rev = "1d3e2ff34f1113fadc0ff174c8a01cd4227af7fd"; 2253 - hash = "sha256-nPOpe7p9dPEfJNmwYLsggwtY1RX/raWAMkcgbLJBIas="; 2254 }; 2255 meta.homepage = "https://github.com/tree-sitter/tree-sitter-ql"; 2256 }; ··· 2278 }; 2279 query = buildGrammar { 2280 language = "query"; 2281 - version = "0.0.0+rev=f767fb0"; 2282 src = fetchFromGitHub { 2283 owner = "nvim-treesitter"; 2284 repo = "tree-sitter-query"; 2285 - rev = "f767fb0ac5e711b6d44c5e0c8d1f349687a86ce0"; 2286 - hash = "sha256-snr0ze1VCaAf448mHkrB9qbWTMvjSlPdVl2VtesMIHI="; 2287 }; 2288 meta.homepage = "https://github.com/nvim-treesitter/tree-sitter-query"; 2289 }; ··· 2366 }; 2367 regex = buildGrammar { 2368 language = "regex"; 2369 - version = "0.0.0+rev=b518ad4"; 2370 src = fetchFromGitHub { 2371 owner = "tree-sitter"; 2372 repo = "tree-sitter-regex"; 2373 - rev = "b518ad4bbee3ad59672b1826ca4dc62825983533"; 2374 - hash = "sha256-gApL+F03m24ibIrLMcirk1s+uJRM0vv7J34YRHkO78U="; 2375 }; 2376 meta.homepage = "https://github.com/tree-sitter/tree-sitter-regex"; 2377 }; ··· 2476 }; 2477 ruby = buildGrammar { 2478 language = "ruby"; 2479 - version = "0.0.0+rev=557ec01"; 2480 src = fetchFromGitHub { 2481 owner = "tree-sitter"; 2482 repo = "tree-sitter-ruby"; 2483 - rev = "557ec01403bd1fcfea50f1805641ca773cbaaa42"; 2484 - hash = "sha256-3MzlgYW65MSpukd8Nt9ooUC39g7ZigLjqXIaNB0sNEg="; 2485 }; 2486 meta.homepage = "https://github.com/tree-sitter/tree-sitter-ruby"; 2487 }; 2488 rust = buildGrammar { 2489 language = "rust"; 2490 - version = "0.0.0+rev=2ace7a9"; 2491 src = fetchFromGitHub { 2492 owner = "tree-sitter"; 2493 repo = "tree-sitter-rust"; 2494 - rev = "2ace7a922a755960f44d73a7bb1efffeb4cc5501"; 2495 - hash = "sha256-b4Qt61u1dJ3LCxVY1ulQjsZVt45BX5ZVa9nPD046yBI="; 2496 }; 2497 meta.homepage = "https://github.com/tree-sitter/tree-sitter-rust"; 2498 }; 2499 scala = buildGrammar { 2500 language = "scala"; 2501 - version = "0.0.0+rev=a9af635"; 2502 src = fetchFromGitHub { 2503 owner = "tree-sitter"; 2504 repo = "tree-sitter-scala"; 2505 - rev = "a9af6356f8e31f04e870587bca79bc2b15808ff5"; 2506 - hash = "sha256-nZUQh42OsPnQffixOklbAmAIGtct/AaKOn4fE6ndTfQ="; 2507 }; 2508 meta.homepage = "https://github.com/tree-sitter/tree-sitter-scala"; 2509 }; ··· 2744 }; 2745 superhtml = buildGrammar { 2746 language = "superhtml"; 2747 - version = "0.0.0+rev=7d61ccc"; 2748 src = fetchFromGitHub { 2749 owner = "kristoff-it"; 2750 repo = "superhtml"; 2751 - rev = "7d61cccdb865b2028301a0597b55ac8b225af6cf"; 2752 - hash = "sha256-rO7HS07nSqwOq6345q/SOL2imoD0cKV16QJcVVr6mHw="; 2753 }; 2754 location = "tree-sitter-superhtml"; 2755 meta.homepage = "https://github.com/kristoff-it/superhtml"; ··· 2778 }; 2779 sway = buildGrammar { 2780 language = "sway"; 2781 - version = "0.0.0+rev=03d97aa"; 2782 src = fetchFromGitHub { 2783 owner = "FuelLabs"; 2784 repo = "tree-sitter-sway"; 2785 - rev = "03d97aad336ecc6b302f23bdd9b695ddc937160b"; 2786 - hash = "sha256-Y08vgnlxOSjvI3NURU8VUyaGjKt+q4IiCaV18C5co0s="; 2787 }; 2788 meta.homepage = "https://github.com/FuelLabs/tree-sitter-sway.git"; 2789 }; 2790 swift = buildGrammar { 2791 language = "swift"; 2792 - version = "0.0.0+rev=5098007"; 2793 src = fetchFromGitHub { 2794 owner = "alex-pinkus"; 2795 repo = "tree-sitter-swift"; 2796 - rev = "5098007f58f4663a5613b2fecb6b866e3d41e37b"; 2797 - hash = "sha256-VIBjnR9pkPt9RWjaDBWv6Rhuzr8eTjNJtrfXI/+2mCs="; 2798 }; 2799 generate = true; 2800 meta.homepage = "https://github.com/alex-pinkus/tree-sitter-swift"; ··· 2823 }; 2824 t32 = buildGrammar { 2825 language = "t32"; 2826 - version = "0.0.0+rev=e455373"; 2827 src = fetchFromGitLab { 2828 owner = "xasc"; 2829 repo = "tree-sitter-t32"; 2830 - rev = "e455373021812abf4a0b5170caa0d882a9578bab"; 2831 - hash = "sha256-SJYT34qw55xiN0lJ37NfPkV4WHi7/5Ymdxruk4vyOV4="; 2832 }; 2833 meta.homepage = "https://gitlab.com/xasc/tree-sitter-t32.git"; 2834 }; ··· 2856 }; 2857 tcl = buildGrammar { 2858 language = "tcl"; 2859 - version = "0.0.0+rev=cdba4ab"; 2860 src = fetchFromGitHub { 2861 owner = "tree-sitter-grammars"; 2862 repo = "tree-sitter-tcl"; 2863 - rev = "cdba4ab96a9896492d0d5219b70300c8783ca4e7"; 2864 - hash = "sha256-NEaB52q2GEEy25JMZwbbyE1Aj4UkO17K9KBB2KqmVHQ="; 2865 }; 2866 meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-tcl"; 2867 }; ··· 2879 }; 2880 templ = buildGrammar { 2881 language = "templ"; 2882 - version = "0.0.0+rev=1dcd7db"; 2883 src = fetchFromGitHub { 2884 owner = "vrischmann"; 2885 repo = "tree-sitter-templ"; 2886 - rev = "1dcd7db19c047bc0327907a544df3207ba814ea4"; 2887 - hash = "sha256-/WOEN+FGb65IpRZCzB2+0/aTjourcL5CYchrZxwlFWs="; 2888 }; 2889 meta.homepage = "https://github.com/vrischmann/tree-sitter-templ"; 2890 }; ··· 2991 }; 2992 tsx = buildGrammar { 2993 language = "tsx"; 2994 - version = "0.0.0+rev=73c4447"; 2995 src = fetchFromGitHub { 2996 owner = "tree-sitter"; 2997 repo = "tree-sitter-typescript"; 2998 - rev = "73c4447796b251295b498227bad028d88dc1918b"; 2999 - hash = "sha256-tF1fdxM9xsAk2pF3ptzyLy8/76uZ5Vs+jACK4dlmbak="; 3000 }; 3001 location = "tsx"; 3002 meta.homepage = "https://github.com/tree-sitter/tree-sitter-typescript"; ··· 3025 }; 3026 typescript = buildGrammar { 3027 language = "typescript"; 3028 - version = "0.0.0+rev=73c4447"; 3029 src = fetchFromGitHub { 3030 owner = "tree-sitter"; 3031 repo = "tree-sitter-typescript"; 3032 - rev = "73c4447796b251295b498227bad028d88dc1918b"; 3033 - hash = "sha256-tF1fdxM9xsAk2pF3ptzyLy8/76uZ5Vs+jACK4dlmbak="; 3034 }; 3035 location = "typescript"; 3036 meta.homepage = "https://github.com/tree-sitter/tree-sitter-typescript"; ··· 3070 }; 3071 udev = buildGrammar { 3072 language = "udev"; 3073 - version = "0.0.0+rev=8f58696"; 3074 src = fetchFromGitHub { 3075 owner = "ObserverOfTime"; 3076 repo = "tree-sitter-udev"; 3077 - rev = "8f58696e79092b4ad6bf197415bbd0970acf15cd"; 3078 - hash = "sha256-4vkEHlK8r69cvSu7CAXOmyiSSuIRlZcnQAGHtWqx41w="; 3079 }; 3080 meta.homepage = "https://github.com/ObserverOfTime/tree-sitter-udev"; 3081 }; ··· 3092 }; 3093 unison = buildGrammar { 3094 language = "unison"; 3095 - version = "0.0.0+rev=bc06e1e"; 3096 src = fetchFromGitHub { 3097 owner = "kylegoetz"; 3098 repo = "tree-sitter-unison"; 3099 - rev = "bc06e1eb100e1c0fab9bd89a9ca55d646ac80fc4"; 3100 - hash = "sha256-NbsUvRkFRd/khn37qYmPvq9ynzFvnr1zhwh8zPDIjxE="; 3101 }; 3102 generate = true; 3103 meta.homepage = "https://github.com/kylegoetz/tree-sitter-unison"; ··· 3126 }; 3127 v = buildGrammar { 3128 language = "v"; 3129 - version = "0.0.0+rev=ea53875"; 3130 src = fetchFromGitHub { 3131 owner = "vlang"; 3132 repo = "v-analyzer"; 3133 - rev = "ea538758a1273b59774dc9179cde460d9c73fd89"; 3134 - hash = "sha256-r2Mn7hvMjMYp+jvceGHNT0ss4UzoOjLeqN+DFj/mB0U="; 3135 }; 3136 location = "tree_sitter_v"; 3137 meta.homepage = "https://github.com/vlang/v-analyzer"; ··· 3171 }; 3172 vhdl = buildGrammar { 3173 language = "vhdl"; 3174 - version = "0.0.0+rev=606cc72"; 3175 src = fetchFromGitHub { 3176 owner = "jpt13653903"; 3177 repo = "tree-sitter-vhdl"; 3178 - rev = "606cc728e7d55bbcecfa37b20d7313a609af1361"; 3179 - hash = "sha256-H8BApOAcRIFNI5Ke8DtCDZUDptKNeS8wTMHQp6xZZBM="; 3180 }; 3181 meta.homepage = "https://github.com/jpt13653903/tree-sitter-vhdl"; 3182 }; ··· 3292 }; 3293 xml = buildGrammar { 3294 language = "xml"; 3295 - version = "0.0.0+rev=cd1316e"; 3296 src = fetchFromGitHub { 3297 owner = "tree-sitter-grammars"; 3298 repo = "tree-sitter-xml"; 3299 - rev = "cd1316e476ec40da6ce1fb5749c9d7e6b4f1090c"; 3300 - hash = "sha256-RTWvOUAs3Uql9DKsP1jf9FZZHaZORE40GXd+6g6RQZw="; 3301 }; 3302 location = "xml"; 3303 meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-xml"; 3304 }; 3305 xresources = buildGrammar { 3306 language = "xresources"; 3307 - version = "0.0.0+rev=d36d356"; 3308 src = fetchFromGitHub { 3309 owner = "ValdezFOmar"; 3310 repo = "tree-sitter-xresources"; 3311 - rev = "d36d356624af4b46d3fc815d0701ebf72654473c"; 3312 - hash = "sha256-h3rS89e+eZTCxCNJVJdBbgCFEMDXQ884Lkmol0Gcq5k="; 3313 }; 3314 meta.homepage = "https://github.com/ValdezFOmar/tree-sitter-xresources"; 3315 };
··· 16 }; 17 agda = buildGrammar { 18 language = "agda"; 19 + version = "0.0.0+rev=b9b32fa"; 20 src = fetchFromGitHub { 21 owner = "tree-sitter"; 22 repo = "tree-sitter-agda"; 23 + rev = "b9b32fa042c2952a7bfca86847ea325e44ccc897"; 24 + hash = "sha256-Goll4J6xrHO8YEuYoLR2rqy6lCMsr4JJbEs5C1jiX5Q="; 25 }; 26 meta.homepage = "https://github.com/tree-sitter/tree-sitter-agda"; 27 }; ··· 105 }; 106 bash = buildGrammar { 107 language = "bash"; 108 + version = "0.0.0+rev=49c3100"; 109 src = fetchFromGitHub { 110 owner = "tree-sitter"; 111 repo = "tree-sitter-bash"; 112 + rev = "49c31006d8307dcb12bc5770f35b6d5b9e2be68e"; 113 + hash = "sha256-JW+30zIyq8Xc7NG9V+YoFqC+57BjZXIbAvWPD2lqvIE="; 114 }; 115 meta.homepage = "https://github.com/tree-sitter/tree-sitter-bash"; 116 }; ··· 193 }; 194 c = buildGrammar { 195 language = "c"; 196 + version = "0.0.0+rev=e8841a6"; 197 src = fetchFromGitHub { 198 owner = "tree-sitter"; 199 repo = "tree-sitter-c"; 200 + rev = "e8841a6a9431b7365ac9055688429e1deb8db90f"; 201 + hash = "sha256-fFrIqiOgW+Aq4SbmevjLwooYeDOh0Odp0OJ/LkGDS04="; 202 }; 203 meta.homepage = "https://github.com/tree-sitter/tree-sitter-c"; 204 }; 205 c_sharp = buildGrammar { 206 language = "c_sharp"; 207 + version = "0.0.0+rev=362a8a4"; 208 src = fetchFromGitHub { 209 owner = "tree-sitter"; 210 repo = "tree-sitter-c-sharp"; 211 + rev = "362a8a41b265056592a0c3771664a21d23a71392"; 212 + hash = "sha256-weH0nyLpvVK/OpgvOjTuJdH2Hm4a1wVshHmhUdFq3XA="; 213 }; 214 meta.homepage = "https://github.com/tree-sitter/tree-sitter-c-sharp"; 215 }; ··· 325 }; 326 cpp = buildGrammar { 327 language = "cpp"; 328 + version = "0.0.0+rev=f41b4f6"; 329 src = fetchFromGitHub { 330 owner = "tree-sitter"; 331 repo = "tree-sitter-cpp"; 332 + rev = "f41b4f66a42100be405f96bdc4ebc4a61095d3e8"; 333 + hash = "sha256-NRcyXjijLdoa5fdA+MKZyt7mnM5B37zCsqZh4QvuOtA="; 334 }; 335 meta.homepage = "https://github.com/tree-sitter/tree-sitter-cpp"; 336 }; 337 css = buildGrammar { 338 language = "css"; 339 + version = "0.0.0+rev=6a442a3"; 340 src = fetchFromGitHub { 341 owner = "tree-sitter"; 342 repo = "tree-sitter-css"; 343 + rev = "6a442a3cf461b0ce275339e5afa178693484c927"; 344 + hash = "sha256-+ZtJpxR+KlfrNHjpoCC5Il4aeYYvcB4Dtbs/BKxV60s="; 345 }; 346 meta.homepage = "https://github.com/tree-sitter/tree-sitter-css"; 347 }; ··· 414 }; 415 desktop = buildGrammar { 416 language = "desktop"; 417 + version = "0.0.0+rev=d52964c"; 418 src = fetchFromGitHub { 419 owner = "ValdezFOmar"; 420 repo = "tree-sitter-desktop"; 421 + rev = "d52964c67d98eaedabca6ed1ec21ae54a522e8f8"; 422 + hash = "sha256-JF6xSMKj0tZ53t+65pk4P+Mn3ubbVczJGVDGGfqDiO4="; 423 }; 424 meta.homepage = "https://github.com/ValdezFOmar/tree-sitter-desktop"; 425 }; ··· 513 }; 514 dtd = buildGrammar { 515 language = "dtd"; 516 + version = "0.0.0+rev=4b64dd3"; 517 src = fetchFromGitHub { 518 owner = "tree-sitter-grammars"; 519 repo = "tree-sitter-xml"; 520 + rev = "4b64dd3a03ec002258d6268d712fd93716d6ab57"; 521 + hash = "sha256-/0IQsTkvFQOWnkLc2srjg2bn1sB1sNA6Sm3nwKGUDj4="; 522 }; 523 location = "dtd"; 524 meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-xml"; 525 }; 526 earthfile = buildGrammar { 527 language = "earthfile"; 528 + version = "0.0.0+rev=059fb08"; 529 src = fetchFromGitHub { 530 owner = "glehmann"; 531 repo = "tree-sitter-earthfile"; 532 + rev = "059fb087247bef8789e938629388c3e7af32c986"; 533 + hash = "sha256-W3nGFisHK8V7F65cm7eyEgWa+qnjr75adFNz7GHfpPs="; 534 }; 535 meta.homepage = "https://github.com/glehmann/tree-sitter-earthfile"; 536 }; ··· 548 }; 549 editorconfig = buildGrammar { 550 language = "editorconfig"; 551 + version = "0.0.0+rev=cfdc59c"; 552 src = fetchFromGitHub { 553 owner = "ValdezFOmar"; 554 repo = "tree-sitter-editorconfig"; 555 + rev = "cfdc59ccdc13c324962a02e104743e0e23ca1010"; 556 + hash = "sha256-u62DJcDj3LJRklcj8zkfd/6goJItf0eIAdz1ekbM76E="; 557 }; 558 meta.homepage = "https://github.com/ValdezFOmar/tree-sitter-editorconfig"; 559 }; ··· 625 }; 626 embedded_template = buildGrammar { 627 language = "embedded_template"; 628 + version = "0.0.0+rev=3322625"; 629 src = fetchFromGitHub { 630 owner = "tree-sitter"; 631 repo = "tree-sitter-embedded-template"; 632 + rev = "332262529bc51abf5746317b2255ccc2fff778f8"; 633 + hash = "sha256-C2Lo3tT2363O++ycXiR6x0y+jy2zlmhcKp7t1LhvCe8="; 634 }; 635 meta.homepage = "https://github.com/tree-sitter/tree-sitter-embedded-template"; 636 }; ··· 713 }; 714 foam = buildGrammar { 715 language = "foam"; 716 + version = "0.0.0+rev=f08bb76"; 717 src = fetchFromGitHub { 718 owner = "FoamScience"; 719 repo = "tree-sitter-foam"; 720 + rev = "f08bb76892b93e5b23c45ac3bd6b1eea5df323cc"; 721 + hash = "sha256-boH5WJNwJmZKN4JCcFvVdAU06ZRj6Zdsq3NibSWjAr8="; 722 }; 723 meta.homepage = "https://github.com/FoamScience/tree-sitter-foam"; 724 }; ··· 857 }; 858 gitattributes = buildGrammar { 859 language = "gitattributes"; 860 + version = "0.0.0+rev=5425944"; 861 src = fetchFromGitHub { 862 owner = "ObserverOfTime"; 863 repo = "tree-sitter-gitattributes"; 864 + rev = "5425944fd61bf2b3bad2c17c2dc9f53172b0f01d"; 865 + hash = "sha256-X6M9/41xISnkDnXNgQAWexs68h8A0dwOz+aQa86H0pc="; 866 }; 867 meta.homepage = "https://github.com/ObserverOfTime/tree-sitter-gitattributes"; 868 }; ··· 967 }; 968 go = buildGrammar { 969 language = "go"; 970 + version = "0.0.0+rev=0942d76"; 971 src = fetchFromGitHub { 972 owner = "tree-sitter"; 973 repo = "tree-sitter-go"; 974 + rev = "0942d76fc517739b5d29a0e420b5e602d19c724d"; 975 + hash = "sha256-2j5cYuIn2gMFzNixijUcA9Ax2US8PEb/5VK44rjnZs4="; 976 }; 977 meta.homepage = "https://github.com/tree-sitter/tree-sitter-go"; 978 }; ··· 1121 }; 1122 haskell = buildGrammar { 1123 language = "haskell"; 1124 + version = "0.0.0+rev=2c2fcb2"; 1125 src = fetchFromGitHub { 1126 owner = "tree-sitter"; 1127 repo = "tree-sitter-haskell"; 1128 + rev = "2c2fcb22e3b939ed59ae8d6f10500c3213c68670"; 1129 + hash = "sha256-9yerJ3Cxfr1dU0GmWN9LiLjmdBpP8+fE1hDmP1oQHLI="; 1130 }; 1131 meta.homepage = "https://github.com/tree-sitter/tree-sitter-haskell"; 1132 }; ··· 1232 }; 1233 html = buildGrammar { 1234 language = "html"; 1235 + version = "0.0.0+rev=d9219ad"; 1236 src = fetchFromGitHub { 1237 owner = "tree-sitter"; 1238 repo = "tree-sitter-html"; 1239 + rev = "d9219ada6e1a2c8f0ab0304a8bd9ca4285ae0468"; 1240 + hash = "sha256-0aLNG4eB2I0Qn0r1oF4YwUDLek78S5fbklFI/bMmxOQ="; 1241 }; 1242 meta.homepage = "https://github.com/tree-sitter/tree-sitter-html"; 1243 }; ··· 1287 }; 1288 idl = buildGrammar { 1289 language = "idl"; 1290 + version = "0.0.0+rev=86ff7f1"; 1291 src = fetchFromGitHub { 1292 owner = "cathaysia"; 1293 repo = "tree-sitter-idl"; 1294 + rev = "86ff7f19747a761dc8ba72f4045fd64aed94ba4c"; 1295 + hash = "sha256-8al6Tn27T6gj4FnBODsORJ4UGm+1aJD6Y09GmWfoP6Y="; 1296 }; 1297 meta.homepage = "https://github.com/cathaysia/tree-sitter-idl"; 1298 }; ··· 1309 }; 1310 inko = buildGrammar { 1311 language = "inko"; 1312 + version = "0.0.0+rev=aecabed"; 1313 src = fetchFromGitHub { 1314 owner = "inko-lang"; 1315 repo = "tree-sitter-inko"; 1316 + rev = "aecabede39b0db05678e2d4686258d4f71b00a51"; 1317 + hash = "sha256-29vt7zf/prmbjPBJoItzJz2sOp40ySqiqtwlaBobjoQ="; 1318 }; 1319 meta.homepage = "https://github.com/inko-lang/tree-sitter-inko"; 1320 }; ··· 1342 }; 1343 java = buildGrammar { 1344 language = "java"; 1345 + version = "0.0.0+rev=a1bbe92"; 1346 src = fetchFromGitHub { 1347 owner = "tree-sitter"; 1348 repo = "tree-sitter-java"; 1349 + rev = "a1bbe92a6370bb4c15386735fbda12f2b812a923"; 1350 + hash = "sha256-AmGyKe7/zxzQTLSIQwiSuAJsYEcZVgW3RzfsRqyFNgE="; 1351 }; 1352 meta.homepage = "https://github.com/tree-sitter/tree-sitter-java"; 1353 }; 1354 javascript = buildGrammar { 1355 language = "javascript"; 1356 + version = "0.0.0+rev=108b2d4"; 1357 src = fetchFromGitHub { 1358 owner = "tree-sitter"; 1359 repo = "tree-sitter-javascript"; 1360 + rev = "108b2d4d17a04356a340aea809e4dd5b801eb40d"; 1361 + hash = "sha256-0x6DbmRTlxUP4vbWVsLoj+k1YOk2Dr+LAPClFsWi7r8="; 1362 }; 1363 meta.homepage = "https://github.com/tree-sitter/tree-sitter-javascript"; 1364 }; ··· 1375 }; 1376 jsdoc = buildGrammar { 1377 language = "jsdoc"; 1378 + version = "0.0.0+rev=b253abf"; 1379 src = fetchFromGitHub { 1380 owner = "tree-sitter"; 1381 repo = "tree-sitter-jsdoc"; 1382 + rev = "b253abf68a73217b7a52c0ec254f4b6a7bb86665"; 1383 + hash = "sha256-Azzb2zBjAfwbEmAEO1YqhpaxtzbXmRjfIzRla2Hx+24="; 1384 }; 1385 meta.homepage = "https://github.com/tree-sitter/tree-sitter-jsdoc"; 1386 }; 1387 json = buildGrammar { 1388 language = "json"; 1389 + version = "0.0.0+rev=ee35a6e"; 1390 src = fetchFromGitHub { 1391 owner = "tree-sitter"; 1392 repo = "tree-sitter-json"; 1393 + rev = "ee35a6ebefcef0c5c416c0d1ccec7370cfca5a24"; 1394 + hash = "sha256-DNZC2cTy1C8OaMOpEHM6NoRtOIbLaBf0CLXXWCKODlw="; 1395 }; 1396 meta.homepage = "https://github.com/tree-sitter/tree-sitter-json"; 1397 }; ··· 1430 }; 1431 julia = buildGrammar { 1432 language = "julia"; 1433 + version = "0.0.0+rev=a8e1262"; 1434 src = fetchFromGitHub { 1435 owner = "tree-sitter"; 1436 repo = "tree-sitter-julia"; 1437 + rev = "a8e1262997d5a45520a06cbe1b86c0737d507054"; 1438 + hash = "sha256-jwtMgHYSa9/kcsqyEUBrxC+U955zFZHVQ4N4iogiIHY="; 1439 }; 1440 meta.homepage = "https://github.com/tree-sitter/tree-sitter-julia"; 1441 }; ··· 1518 }; 1519 latex = buildGrammar { 1520 language = "latex"; 1521 + version = "0.0.0+rev=7b06f6e"; 1522 src = fetchFromGitHub { 1523 owner = "latex-lsp"; 1524 repo = "tree-sitter-latex"; 1525 + rev = "7b06f6ed394308e7407a1703d2724128c45fc9d7"; 1526 + hash = "sha256-HbRjblLBExpBkBBjHyEHfnK0oootjAsqkwjmGH3/UYI="; 1527 }; 1528 generate = true; 1529 meta.homepage = "https://github.com/latex-lsp/tree-sitter-latex"; ··· 1730 }; 1731 mlir = buildGrammar { 1732 language = "mlir"; 1733 + version = "0.0.0+rev=5b8867f"; 1734 src = fetchFromGitHub { 1735 owner = "artagnon"; 1736 repo = "tree-sitter-mlir"; 1737 + rev = "5b8867f59954c9cae76f2aa1ac88ae513de412bd"; 1738 + hash = "sha256-gbqXyIGlj7XnafqlGUaG0iPHRBabcni3pJxlehO70jg="; 1739 }; 1740 generate = true; 1741 meta.homepage = "https://github.com/artagnon/tree-sitter-mlir"; ··· 1819 }; 1820 nix = buildGrammar { 1821 language = "nix"; 1822 + version = "0.0.0+rev=0240bbf"; 1823 src = fetchFromGitHub { 1824 owner = "cstrahan"; 1825 repo = "tree-sitter-nix"; 1826 + rev = "0240bbfce72d155823c3b7edec622dedd580bf02"; 1827 + hash = "sha256-Z2h5YLdE6kGnYgX2QF3MQtOHC7sl/0ItJCucuXZRJCA="; 1828 }; 1829 meta.homepage = "https://github.com/cstrahan/tree-sitter-nix"; 1830 }; ··· 1852 }; 1853 nu = buildGrammar { 1854 language = "nu"; 1855 + version = "0.0.0+rev=7e0f16f"; 1856 src = fetchFromGitHub { 1857 owner = "nushell"; 1858 repo = "tree-sitter-nu"; 1859 + rev = "7e0f16f608a9e804fae61430ade734f9f849fb80"; 1860 + hash = "sha256-BXG1kc76mkAkV6BLuCzshb+MQ/AxRrhEKcY/1utxmH4="; 1861 }; 1862 meta.homepage = "https://github.com/nushell/tree-sitter-nu"; 1863 }; ··· 1885 }; 1886 ocaml = buildGrammar { 1887 language = "ocaml"; 1888 + version = "0.0.0+rev=26bc61c"; 1889 src = fetchFromGitHub { 1890 owner = "tree-sitter"; 1891 repo = "tree-sitter-ocaml"; 1892 + rev = "26bc61c206e7820f9f804b206f7765ffc55cd039"; 1893 + hash = "sha256-8pPgfvwp6h1tXo9fDwHtA7A8O6rjFzLb5eZfrkPxm+U="; 1894 }; 1895 location = "grammars/ocaml"; 1896 meta.homepage = "https://github.com/tree-sitter/tree-sitter-ocaml"; 1897 }; 1898 ocaml_interface = buildGrammar { 1899 language = "ocaml_interface"; 1900 + version = "0.0.0+rev=26bc61c"; 1901 src = fetchFromGitHub { 1902 owner = "tree-sitter"; 1903 repo = "tree-sitter-ocaml"; 1904 + rev = "26bc61c206e7820f9f804b206f7765ffc55cd039"; 1905 + hash = "sha256-8pPgfvwp6h1tXo9fDwHtA7A8O6rjFzLb5eZfrkPxm+U="; 1906 }; 1907 location = "grammars/interface"; 1908 meta.homepage = "https://github.com/tree-sitter/tree-sitter-ocaml"; ··· 1987 }; 1988 php = buildGrammar { 1989 language = "php"; 1990 + version = "0.0.0+rev=6918e69"; 1991 src = fetchFromGitHub { 1992 owner = "tree-sitter"; 1993 repo = "tree-sitter-php"; 1994 + rev = "6918e6908d78780ddd996b9fcbaa835b42782d5b"; 1995 + hash = "sha256-U9OQNyjTKQVMLeiB/tNNA2hl7wug4q/pK22X4QRskk0="; 1996 }; 1997 location = "php"; 1998 meta.homepage = "https://github.com/tree-sitter/tree-sitter-php"; 1999 }; 2000 php_only = buildGrammar { 2001 language = "php_only"; 2002 + version = "0.0.0+rev=6918e69"; 2003 src = fetchFromGitHub { 2004 owner = "tree-sitter"; 2005 repo = "tree-sitter-php"; 2006 + rev = "6918e6908d78780ddd996b9fcbaa835b42782d5b"; 2007 + hash = "sha256-U9OQNyjTKQVMLeiB/tNNA2hl7wug4q/pK22X4QRskk0="; 2008 }; 2009 location = "php_only"; 2010 meta.homepage = "https://github.com/tree-sitter/tree-sitter-php"; ··· 2088 }; 2089 printf = buildGrammar { 2090 language = "printf"; 2091 + version = "0.0.0+rev=60d50a2"; 2092 src = fetchFromGitHub { 2093 owner = "ObserverOfTime"; 2094 repo = "tree-sitter-printf"; 2095 + rev = "60d50a2247b0c1fb72b967562c64711d65c6a060"; 2096 + hash = "sha256-Uf7HHHPIMpEFZdDF07tIwGeibxtzuDjLLFozKjawTEc="; 2097 }; 2098 meta.homepage = "https://github.com/ObserverOfTime/tree-sitter-printf"; 2099 }; ··· 2145 }; 2146 properties = buildGrammar { 2147 language = "properties"; 2148 + version = "0.0.0+rev=f93f673"; 2149 src = fetchFromGitHub { 2150 owner = "tree-sitter-grammars"; 2151 repo = "tree-sitter-properties"; 2152 + rev = "f93f673990deffbfa548826eebade93af81887b4"; 2153 + hash = "sha256-XATT9i8lYcdTDtNHChtbUux9E6pg7jFPKnWR6tMEBew="; 2154 }; 2155 meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-properties"; 2156 }; ··· 2234 }; 2235 python = buildGrammar { 2236 language = "python"; 2237 + version = "0.0.0+rev=6d14e44"; 2238 src = fetchFromGitHub { 2239 owner = "tree-sitter"; 2240 repo = "tree-sitter-python"; 2241 + rev = "6d14e44ea217bc5bb1c1804180e9818d7d1b8d91"; 2242 + hash = "sha256-/jYGi2yksifMGPitlS8oM/g3YrR7RJ57imBhEyow/jc="; 2243 }; 2244 meta.homepage = "https://github.com/tree-sitter/tree-sitter-python"; 2245 }; 2246 ql = buildGrammar { 2247 language = "ql"; 2248 + version = "0.0.0+rev=1fd627a"; 2249 src = fetchFromGitHub { 2250 owner = "tree-sitter"; 2251 repo = "tree-sitter-ql"; 2252 + rev = "1fd627a4e8bff8c24c11987474bd33112bead857"; 2253 + hash = "sha256-mJ/bj09mT1WTaiKoXiRXDM7dkenf5hv2ArXieeTVe6I="; 2254 }; 2255 meta.homepage = "https://github.com/tree-sitter/tree-sitter-ql"; 2256 }; ··· 2278 }; 2279 query = buildGrammar { 2280 language = "query"; 2281 + version = "0.0.0+rev=a6674e2"; 2282 src = fetchFromGitHub { 2283 owner = "nvim-treesitter"; 2284 repo = "tree-sitter-query"; 2285 + rev = "a6674e279b14958625d7a530cabe06119c7a1532"; 2286 + hash = "sha256-xtr2IVI+3h/u9f84ye7szHR/U2E8Bm5NN7vhqaCkiyI="; 2287 }; 2288 meta.homepage = "https://github.com/nvim-treesitter/tree-sitter-query"; 2289 }; ··· 2366 }; 2367 regex = buildGrammar { 2368 language = "regex"; 2369 + version = "0.0.0+rev=4470c59"; 2370 src = fetchFromGitHub { 2371 owner = "tree-sitter"; 2372 repo = "tree-sitter-regex"; 2373 + rev = "4470c59041416e8a2a9fa343595ca28ed91f38b8"; 2374 + hash = "sha256-GNWntm8sgqVt6a+yFVncjkoMOe7CnXX9Qmpwy6KcFyU="; 2375 }; 2376 meta.homepage = "https://github.com/tree-sitter/tree-sitter-regex"; 2377 }; ··· 2476 }; 2477 ruby = buildGrammar { 2478 language = "ruby"; 2479 + version = "0.0.0+rev=71bd32f"; 2480 src = fetchFromGitHub { 2481 owner = "tree-sitter"; 2482 repo = "tree-sitter-ruby"; 2483 + rev = "71bd32fb7607035768799732addba884a37a6210"; 2484 + hash = "sha256-iu3MVJl0Qr/Ba+aOttmEzMiVY6EouGi5wGOx5ofROzA="; 2485 }; 2486 meta.homepage = "https://github.com/tree-sitter/tree-sitter-ruby"; 2487 }; 2488 + runescript = buildGrammar { 2489 + language = "runescript"; 2490 + version = "0.0.0+rev=cf85bbd"; 2491 + src = fetchFromGitHub { 2492 + owner = "2004Scape"; 2493 + repo = "tree-sitter-runescript"; 2494 + rev = "cf85bbd5da0c5ad243301d889c7f84d790a4cae4"; 2495 + hash = "sha256-LRHTy5XMU2FOru7YrFlwuDU7brtnI/8RhAdQnY7Fkpk="; 2496 + }; 2497 + meta.homepage = "https://github.com/2004Scape/tree-sitter-runescript"; 2498 + }; 2499 rust = buildGrammar { 2500 language = "rust"; 2501 + version = "0.0.0+rev=32c17ce"; 2502 src = fetchFromGitHub { 2503 owner = "tree-sitter"; 2504 repo = "tree-sitter-rust"; 2505 + rev = "32c17ce5463818032a9c252a849b910315b6e485"; 2506 + hash = "sha256-ThsMUVCql0Z9ztMQDeLXR7gTWYY+uMGWuPvr3P8A/Hk="; 2507 }; 2508 meta.homepage = "https://github.com/tree-sitter/tree-sitter-rust"; 2509 }; 2510 scala = buildGrammar { 2511 language = "scala"; 2512 + version = "0.0.0+rev=28c3be0"; 2513 src = fetchFromGitHub { 2514 owner = "tree-sitter"; 2515 repo = "tree-sitter-scala"; 2516 + rev = "28c3be045afe1e293b5ba1a74e759601e74050c3"; 2517 + hash = "sha256-xJeimj4OJ2Fdqu2rA+FnCVvBo56qC9vreo7EOY4w3kc="; 2518 }; 2519 meta.homepage = "https://github.com/tree-sitter/tree-sitter-scala"; 2520 }; ··· 2755 }; 2756 superhtml = buildGrammar { 2757 language = "superhtml"; 2758 + version = "0.0.0+rev=dbb0d1f"; 2759 src = fetchFromGitHub { 2760 owner = "kristoff-it"; 2761 repo = "superhtml"; 2762 + rev = "dbb0d1fc54f8525f41289a413ea6c0722e92bf9c"; 2763 + hash = "sha256-c0JjQ3RZyKtP4ayDT9M+riYhK6JlMF/oVJfkfY17/7k="; 2764 }; 2765 location = "tree-sitter-superhtml"; 2766 meta.homepage = "https://github.com/kristoff-it/superhtml"; ··· 2789 }; 2790 sway = buildGrammar { 2791 language = "sway"; 2792 + version = "0.0.0+rev=3950067"; 2793 src = fetchFromGitHub { 2794 owner = "FuelLabs"; 2795 repo = "tree-sitter-sway"; 2796 + rev = "395006713db3bbb90d267ebdfcbf1881b399b05c"; 2797 + hash = "sha256-5Js5WbpQAln6cfdjEd0emMtkC6uFGWA2LXQZkiXbap4="; 2798 }; 2799 meta.homepage = "https://github.com/FuelLabs/tree-sitter-sway.git"; 2800 }; 2801 swift = buildGrammar { 2802 language = "swift"; 2803 + version = "0.0.0+rev=6accc2f"; 2804 src = fetchFromGitHub { 2805 owner = "alex-pinkus"; 2806 repo = "tree-sitter-swift"; 2807 + rev = "6accc2f720c7ff8573f6956a34ea22f50c44d839"; 2808 + hash = "sha256-SFzOo7Nx7kjQ69KUIH9raGj4zYYI0HPeagECAZJGfww="; 2809 }; 2810 generate = true; 2811 meta.homepage = "https://github.com/alex-pinkus/tree-sitter-swift"; ··· 2834 }; 2835 t32 = buildGrammar { 2836 language = "t32"; 2837 + version = "0.0.0+rev=476f0d8"; 2838 src = fetchFromGitLab { 2839 owner = "xasc"; 2840 repo = "tree-sitter-t32"; 2841 + rev = "476f0d8ab4b012d3b6f9598890217ada70f1a8ba"; 2842 + hash = "sha256-zyMThhLjjiL/wtz5DGmjbfGTfcIj4JNSVCKfBIEw/0w="; 2843 }; 2844 meta.homepage = "https://gitlab.com/xasc/tree-sitter-t32.git"; 2845 }; ··· 2867 }; 2868 tcl = buildGrammar { 2869 language = "tcl"; 2870 + version = "0.0.0+rev=98015eb"; 2871 src = fetchFromGitHub { 2872 owner = "tree-sitter-grammars"; 2873 repo = "tree-sitter-tcl"; 2874 + rev = "98015ebe182d94e5a4439e32ffd91beaac32fcb9"; 2875 + hash = "sha256-zpswRch3xYjymQhc69noDTCsPrFzVRm1RN3jjIrUeDE="; 2876 }; 2877 meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-tcl"; 2878 }; ··· 2890 }; 2891 templ = buildGrammar { 2892 language = "templ"; 2893 + version = "0.0.0+rev=73a5587"; 2894 src = fetchFromGitHub { 2895 owner = "vrischmann"; 2896 repo = "tree-sitter-templ"; 2897 + rev = "73a558744fff7c4560f4801e14a467811f608556"; 2898 + hash = "sha256-Wdu3CtjITuRUFmq3FfDZKIKE9t9vYMFv+CG5J0BBYGU="; 2899 }; 2900 meta.homepage = "https://github.com/vrischmann/tree-sitter-templ"; 2901 }; ··· 3002 }; 3003 tsx = buildGrammar { 3004 language = "tsx"; 3005 + version = "0.0.0+rev=45af495"; 3006 src = fetchFromGitHub { 3007 owner = "tree-sitter"; 3008 repo = "tree-sitter-typescript"; 3009 + rev = "45af49560396d67a710b21a3ce315fcaa09006ff"; 3010 + hash = "sha256-15TAkZeoHTQvPqswlP8dFMyt8F/ztozaJtZys49rzeM="; 3011 }; 3012 location = "tsx"; 3013 meta.homepage = "https://github.com/tree-sitter/tree-sitter-typescript"; ··· 3036 }; 3037 typescript = buildGrammar { 3038 language = "typescript"; 3039 + version = "0.0.0+rev=45af495"; 3040 src = fetchFromGitHub { 3041 owner = "tree-sitter"; 3042 repo = "tree-sitter-typescript"; 3043 + rev = "45af49560396d67a710b21a3ce315fcaa09006ff"; 3044 + hash = "sha256-15TAkZeoHTQvPqswlP8dFMyt8F/ztozaJtZys49rzeM="; 3045 }; 3046 location = "typescript"; 3047 meta.homepage = "https://github.com/tree-sitter/tree-sitter-typescript"; ··· 3081 }; 3082 udev = buildGrammar { 3083 language = "udev"; 3084 + version = "0.0.0+rev=18a1d18"; 3085 src = fetchFromGitHub { 3086 owner = "ObserverOfTime"; 3087 repo = "tree-sitter-udev"; 3088 + rev = "18a1d183c4c0cc40438bae2ebf8191aaf2dee8dc"; 3089 + hash = "sha256-ySo+vS+il1tmTPZ6OJMduyJxsjjI3eIkYSMYs10Bcnk="; 3090 }; 3091 meta.homepage = "https://github.com/ObserverOfTime/tree-sitter-udev"; 3092 }; ··· 3103 }; 3104 unison = buildGrammar { 3105 language = "unison"; 3106 + version = "0.0.0+rev=3c97db7"; 3107 src = fetchFromGitHub { 3108 owner = "kylegoetz"; 3109 repo = "tree-sitter-unison"; 3110 + rev = "3c97db76d3cdbd002dfba493620c2d5df2fd6fa9"; 3111 + hash = "sha256-xveOQpCCkYdeiPkRbFlPNfXOpWW0lzCxfQbxXz+eurM="; 3112 }; 3113 generate = true; 3114 meta.homepage = "https://github.com/kylegoetz/tree-sitter-unison"; ··· 3137 }; 3138 v = buildGrammar { 3139 language = "v"; 3140 + version = "0.0.0+rev=8f1a06b"; 3141 src = fetchFromGitHub { 3142 owner = "vlang"; 3143 repo = "v-analyzer"; 3144 + rev = "8f1a06b488e65aeeb340d5e2ae3e703a104bd5c4"; 3145 + hash = "sha256-ZpwEA9lH5IiqBjlEXY7fMGHWwhq428la1CdqkcJRTeQ="; 3146 }; 3147 location = "tree_sitter_v"; 3148 meta.homepage = "https://github.com/vlang/v-analyzer"; ··· 3182 }; 3183 vhdl = buildGrammar { 3184 language = "vhdl"; 3185 + version = "0.0.0+rev=b4e73e0"; 3186 src = fetchFromGitHub { 3187 owner = "jpt13653903"; 3188 repo = "tree-sitter-vhdl"; 3189 + rev = "b4e73e0c0a09af83e10145953cfbd3652c2833dc"; 3190 + hash = "sha256-R6XPzqNkACKEMSz9Ni2Ic5aHyZ7bcp69z2cmOQCah/s="; 3191 }; 3192 meta.homepage = "https://github.com/jpt13653903/tree-sitter-vhdl"; 3193 }; ··· 3303 }; 3304 xml = buildGrammar { 3305 language = "xml"; 3306 + version = "0.0.0+rev=4b64dd3"; 3307 src = fetchFromGitHub { 3308 owner = "tree-sitter-grammars"; 3309 repo = "tree-sitter-xml"; 3310 + rev = "4b64dd3a03ec002258d6268d712fd93716d6ab57"; 3311 + hash = "sha256-/0IQsTkvFQOWnkLc2srjg2bn1sB1sNA6Sm3nwKGUDj4="; 3312 }; 3313 location = "xml"; 3314 meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-xml"; 3315 }; 3316 xresources = buildGrammar { 3317 language = "xresources"; 3318 + version = "0.0.0+rev=a75056c"; 3319 src = fetchFromGitHub { 3320 owner = "ValdezFOmar"; 3321 repo = "tree-sitter-xresources"; 3322 + rev = "a75056c2e1bed83c338ff394dbb7c653db210432"; 3323 + hash = "sha256-lGQYY0hlOc7qp2MgNfCKPizDl8XOTbWraEw02xJVMcg="; 3324 }; 3325 meta.homepage = "https://github.com/ValdezFOmar/tree-sitter-xresources"; 3326 };
+1 -1
pkgs/applications/editors/vim/plugins/overrides.nix
··· 173 pname = "avante-nvim-lib"; 174 inherit (oldAttrs) version src; 175 176 - cargoHash = "sha256-X8JqUoPjm9emJjmwCh7+0bfdtPXLwOg6IRfQHaYlH90="; 177 178 nativeBuildInputs = [ 179 pkg-config
··· 173 pname = "avante-nvim-lib"; 174 inherit (oldAttrs) version src; 175 176 + cargoHash = "sha256-HPObCCaGMFu+7+zK9sg7hFlTb1CNQ9AV6V1r0WKRSZo="; 177 178 nativeBuildInputs = [ 179 pkg-config
+16 -16
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 116 https://github.com/akinsho/bufferline.nvim/,, 117 https://github.com/kwkarlwang/bufjump.nvim/,HEAD, 118 https://github.com/bullets-vim/bullets.vim/,, 119 https://github.com/itchyny/calendar.vim/,, 120 https://github.com/bkad/camelcasemotion/,, 121 - https://github.com/catppuccin/nvim/,,catppuccin-nvim 122 - https://github.com/catppuccin/vim/,HEAD,catppuccin-vim 123 https://github.com/tyru/caw.vim/,, 124 https://github.com/uga-rosa/ccc.nvim/,HEAD, 125 https://github.com/Eandrju/cellular-automaton.nvim/,HEAD, ··· 300 https://github.com/chipsenkbeil/distant.nvim/,HEAD, 301 https://github.com/doki-theme/doki-theme-vim/,, 302 https://github.com/NTBBloodbath/doom-one.nvim/,, 303 - https://github.com/dracula/vim/,,dracula-vim 304 https://github.com/Mofiqul/dracula.nvim/,HEAD, 305 https://github.com/stevearc/dressing.nvim/,, 306 https://github.com/Bekaboo/dropbar.nvim/,HEAD, ··· 315 https://github.com/elixir-tools/elixir-tools.nvim/,HEAD, 316 https://github.com/elmcast/elm-vim/,, 317 https://github.com/dmix/elvish.vim/,, 318 - https://github.com/embark-theme/vim/,,embark-vim 319 https://github.com/mattn/emmet-vim/,, 320 https://github.com/vim-scripts/emodeline/,, 321 https://github.com/vim-scripts/errormarker.vim/,, ··· 364 https://github.com/ibhagwan/fzf-lua/,HEAD, 365 https://github.com/junegunn/fzf.vim/,, 366 https://github.com/NTBBloodbath/galaxyline.nvim/,, 367 - https://github.com/gbprod/nord.nvim/,,gbprod-nord 368 https://github.com/jsfaint/gen_tags.vim/,, 369 https://github.com/gentoo/gentoo-syntax/,, 370 https://github.com/ndmitchell/ghcid/,, ··· 394 https://github.com/blazkowolf/gruber-darker.nvim/,, 395 https://github.com/MagicDuck/grug-far.nvim/,, 396 https://github.com/morhetz/gruvbox/,, 397 - https://github.com/luisiacc/gruvbox-baby/,HEAD, 398 https://github.com/gruvbox-community/gruvbox/,,gruvbox-community 399 https://github.com/eddyekofo94/gruvbox-flat.nvim/,, 400 https://github.com/sainnhe/gruvbox-material/,, 401 https://github.com/f4z3r/gruvbox-material.nvim/,HEAD, ··· 438 https://github.com/ShinKage/idris2-nvim/,, 439 https://github.com/edwinb/idris2-vim/,, 440 https://github.com/3rd/image.nvim/,HEAD, 441 https://github.com/HakonHarnes/img-clip.nvim/,HEAD, 442 https://github.com/lewis6991/impatient.nvim/,, 443 https://github.com/backdround/improved-search.nvim/,HEAD, ··· 546 https://github.com/vim-scripts/matchit.zip/,, 547 https://github.com/marko-cerovac/material.nvim/,, 548 https://github.com/kaicataldo/material.vim/,HEAD, 549 - https://github.com/mattn/calendar-vim/,,mattn-calendar-vim 550 https://github.com/vim-scripts/mayansmoke/,, 551 https://github.com/chikamichi/mediawiki.vim/,HEAD, 552 https://github.com/savq/melange-nvim/,, ··· 605 https://github.com/tomasr/molokai/,, 606 https://github.com/benlubas/molten-nvim/,HEAD, 607 https://github.com/loctvl842/monokai-pro.nvim/,HEAD, 608 https://github.com/leafo/moonscript-vim/,HEAD, 609 https://github.com/yegappan/mru/,, 610 https://github.com/smoka7/multicursors.nvim/,HEAD, ··· 675 https://github.com/shunsambongi/neotest-testthat/,HEAD, 676 https://github.com/marilari88/neotest-vitest/,HEAD, 677 https://github.com/lawrence-laz/neotest-zig/,HEAD, 678 https://github.com/Shatur/neovim-ayu/,, 679 https://github.com/cloudhead/neovim-fuzzy/,, 680 https://github.com/jeffkreeftmeijer/neovim-sensible/,, ··· 689 https://github.com/Olical/nfnl/,main, 690 https://github.com/chr4/nginx.vim/,, 691 https://github.com/oxfist/night-owl.nvim/,, 692 - https://github.com/bluz71/vim-nightfly-colors/,,nightfly 693 https://github.com/EdenEast/nightfox.nvim/,, 694 https://github.com/Alexis12119/nightly.nvim/,, 695 https://github.com/zah/nim.vim/,, ··· 701 https://github.com/kartikp10/noctis.nvim/,, 702 https://github.com/folke/noice.nvim/,HEAD, 703 https://github.com/nvimtools/none-ls.nvim/,HEAD, 704 - https://github.com/nordtheme/vim/,,nord-vim 705 https://github.com/shaunsingh/nord.nvim/,, 706 https://github.com/andersevenrud/nordic.nvim/,, 707 https://github.com/vigoux/notifier.nvim/,HEAD, ··· 710 https://github.com/jose-elias-alvarez/null-ls.nvim/,, 711 https://github.com/nacro90/numb.nvim/,, 712 https://github.com/nvchad/nvchad/,HEAD, 713 - https://github.com/nvchad/ui/,HEAD,nvchad-ui 714 https://github.com/ChristianChiarulli/nvcode-color-schemes.vim/,, 715 https://github.com/AckslD/nvim-FeMaco.lua/,HEAD, 716 https://github.com/nathanmsmith/nvim-ale-diagnostic/,, 717 https://github.com/windwp/nvim-autopairs/,, ··· 857 https://github.com/folke/persistence.nvim/,, 858 https://github.com/pest-parser/pest.vim/,HEAD, 859 https://github.com/lifepillar/pgsql.vim/,, 860 - https://github.com/phha/zenburn.nvim/,,phha-zenburn 861 https://github.com/motus/pig.vim/,, 862 https://github.com/weirongxu/plantuml-previewer.vim/,HEAD, 863 https://github.com/aklt/plantuml-syntax/,, ··· 877 https://github.com/kevinhwang91/promise-async/,HEAD, 878 https://github.com/frigoeu/psc-ide-vim/,, 879 https://github.com/Shougo/pum.vim/,HEAD, 880 - https://github.com/shaunsingh/moonlight.nvim/,,pure-lua 881 https://github.com/purescript-contrib/purescript-vim/,, 882 https://github.com/python-mode/python-mode/,, 883 https://github.com/vim-python/python-syntax/,, ··· 910 https://github.com/kevinhwang91/rnvimr/,, 911 https://github.com/mfukar/robotframework-vim/,, 912 https://github.com/ron-rs/ron.vim/,, 913 - https://github.com/rose-pine/neovim/,main,rose-pine 914 https://github.com/jmederosalvarado/roslyn.nvim/,HEAD, 915 https://github.com/keith/rspec.vim/,, 916 https://github.com/ccarpita/rtorrent-syntax-file/,, ··· 918 https://github.com/rust-lang/rust.vim/,, 919 https://github.com/hauleth/sad.vim/,, 920 https://github.com/vmware-archive/salt-vim/,, 921 - https://github.com/samodostal/image.nvim/,HEAD,samodostal-image-nvim 922 https://github.com/lewis6991/satellite.nvim/,HEAD, 923 https://github.com/davidgranstrom/scnvim/,HEAD, 924 https://github.com/tiagovla/scope.nvim/,HEAD, ··· 1075 https://github.com/MrPicklePinosaur/typst-conceal.vim/,HEAD, 1076 https://github.com/chomosuke/typst-preview.nvim/,HEAD, 1077 https://github.com/kaarmu/typst.vim/,HEAD, 1078 https://github.com/altermo/ultimate-autopair.nvim/,HEAD, 1079 https://github.com/SirVer/ultisnips/,, 1080 https://github.com/mbbill/undotree/,, ··· 1090 https://github.com/jbyuki/venn.nvim/,, 1091 https://github.com/vhda/verilog_systemverilog.vim/,, 1092 https://github.com/vifm/vifm.vim/,, 1093 https://github.com/Konfekt/vim-CtrlXA/,, 1094 https://github.com/konfekt/vim-DetectSpellLang/,, 1095 https://github.com/dpelle/vim-LanguageTool/,, ··· 1116 https://github.com/MarcWeber/vim-addon-syntax-checker/,, 1117 https://github.com/MarcWeber/vim-addon-toggle-buffer/,, 1118 https://github.com/MarcWeber/vim-addon-xdebug/,, 1119 - https://github.com/inkarkat/vim-AdvancedSorters/,,vim-advanced-sorters 1120 https://github.com/junegunn/vim-after-object/,, 1121 https://github.com/danilo-augusto/vim-afterglow/,HEAD, 1122 https://github.com/msuperdock/vim-agda/,HEAD, ··· 1193 https://github.com/tpope/vim-dispatch/,, 1194 https://github.com/radenling/vim-dispatch-neovim/,, 1195 https://github.com/jhradilek/vim-docbk/,, 1196 - https://github.com/jhradilek/vim-snippets/,,vim-docbk-snippets 1197 https://github.com/tpope/vim-dotenv/,, 1198 https://github.com/junegunn/vim-easy-align/,, 1199 https://github.com/zhou13/vim-easyescape/,, ··· 1347 https://github.com/nfnty/vim-nftables/,, 1348 https://github.com/kana/vim-niceblock/,, 1349 https://github.com/nickel-lang/vim-nickel/,main, 1350 https://github.com/tommcdo/vim-ninja-feet/,, 1351 https://github.com/LnL7/vim-nix/,, 1352 https://github.com/symphorien/vim-nixhash/,, ··· 1437 https://github.com/bohlender/vim-smt2/,, 1438 https://github.com/justinmk/vim-sneak/,, 1439 https://github.com/garbas/vim-snipmate/,, 1440 https://github.com/honza/vim-snippets/,, 1441 https://github.com/lifepillar/vim-solarized8/,HEAD, 1442 https://github.com/tomlion/vim-solidity/,, ··· 1566 https://github.com/folke/zen-mode.nvim/,, 1567 https://github.com/zenbones-theme/zenbones.nvim/,HEAD, 1568 https://github.com/jnurmine/zenburn/,, 1569 https://github.com/nvimdev/zephyr-nvim/,, 1570 https://github.com/ziglang/zig.vim/,, 1571 https://github.com/zk-org/zk-nvim/,HEAD,
··· 116 https://github.com/akinsho/bufferline.nvim/,, 117 https://github.com/kwkarlwang/bufjump.nvim/,HEAD, 118 https://github.com/bullets-vim/bullets.vim/,, 119 + https://github.com/mattn/calendar-vim/,,mattn-calendar-vim 120 https://github.com/itchyny/calendar.vim/,, 121 https://github.com/bkad/camelcasemotion/,, 122 https://github.com/tyru/caw.vim/,, 123 https://github.com/uga-rosa/ccc.nvim/,HEAD, 124 https://github.com/Eandrju/cellular-automaton.nvim/,HEAD, ··· 299 https://github.com/chipsenkbeil/distant.nvim/,HEAD, 300 https://github.com/doki-theme/doki-theme-vim/,, 301 https://github.com/NTBBloodbath/doom-one.nvim/,, 302 https://github.com/Mofiqul/dracula.nvim/,HEAD, 303 https://github.com/stevearc/dressing.nvim/,, 304 https://github.com/Bekaboo/dropbar.nvim/,HEAD, ··· 313 https://github.com/elixir-tools/elixir-tools.nvim/,HEAD, 314 https://github.com/elmcast/elm-vim/,, 315 https://github.com/dmix/elvish.vim/,, 316 https://github.com/mattn/emmet-vim/,, 317 https://github.com/vim-scripts/emodeline/,, 318 https://github.com/vim-scripts/errormarker.vim/,, ··· 361 https://github.com/ibhagwan/fzf-lua/,HEAD, 362 https://github.com/junegunn/fzf.vim/,, 363 https://github.com/NTBBloodbath/galaxyline.nvim/,, 364 https://github.com/jsfaint/gen_tags.vim/,, 365 https://github.com/gentoo/gentoo-syntax/,, 366 https://github.com/ndmitchell/ghcid/,, ··· 390 https://github.com/blazkowolf/gruber-darker.nvim/,, 391 https://github.com/MagicDuck/grug-far.nvim/,, 392 https://github.com/morhetz/gruvbox/,, 393 https://github.com/gruvbox-community/gruvbox/,,gruvbox-community 394 + https://github.com/luisiacc/gruvbox-baby/,HEAD, 395 https://github.com/eddyekofo94/gruvbox-flat.nvim/,, 396 https://github.com/sainnhe/gruvbox-material/,, 397 https://github.com/f4z3r/gruvbox-material.nvim/,HEAD, ··· 434 https://github.com/ShinKage/idris2-nvim/,, 435 https://github.com/edwinb/idris2-vim/,, 436 https://github.com/3rd/image.nvim/,HEAD, 437 + https://github.com/samodostal/image.nvim/,HEAD,samodostal-image-nvim 438 https://github.com/HakonHarnes/img-clip.nvim/,HEAD, 439 https://github.com/lewis6991/impatient.nvim/,, 440 https://github.com/backdround/improved-search.nvim/,HEAD, ··· 543 https://github.com/vim-scripts/matchit.zip/,, 544 https://github.com/marko-cerovac/material.nvim/,, 545 https://github.com/kaicataldo/material.vim/,HEAD, 546 https://github.com/vim-scripts/mayansmoke/,, 547 https://github.com/chikamichi/mediawiki.vim/,HEAD, 548 https://github.com/savq/melange-nvim/,, ··· 601 https://github.com/tomasr/molokai/,, 602 https://github.com/benlubas/molten-nvim/,HEAD, 603 https://github.com/loctvl842/monokai-pro.nvim/,HEAD, 604 + https://github.com/shaunsingh/moonlight.nvim/,,pure-lua 605 https://github.com/leafo/moonscript-vim/,HEAD, 606 https://github.com/yegappan/mru/,, 607 https://github.com/smoka7/multicursors.nvim/,HEAD, ··· 672 https://github.com/shunsambongi/neotest-testthat/,HEAD, 673 https://github.com/marilari88/neotest-vitest/,HEAD, 674 https://github.com/lawrence-laz/neotest-zig/,HEAD, 675 + https://github.com/rose-pine/neovim/,main,rose-pine 676 https://github.com/Shatur/neovim-ayu/,, 677 https://github.com/cloudhead/neovim-fuzzy/,, 678 https://github.com/jeffkreeftmeijer/neovim-sensible/,, ··· 687 https://github.com/Olical/nfnl/,main, 688 https://github.com/chr4/nginx.vim/,, 689 https://github.com/oxfist/night-owl.nvim/,, 690 https://github.com/EdenEast/nightfox.nvim/,, 691 https://github.com/Alexis12119/nightly.nvim/,, 692 https://github.com/zah/nim.vim/,, ··· 698 https://github.com/kartikp10/noctis.nvim/,, 699 https://github.com/folke/noice.nvim/,HEAD, 700 https://github.com/nvimtools/none-ls.nvim/,HEAD, 701 + https://github.com/gbprod/nord.nvim/,,gbprod-nord 702 https://github.com/shaunsingh/nord.nvim/,, 703 https://github.com/andersevenrud/nordic.nvim/,, 704 https://github.com/vigoux/notifier.nvim/,HEAD, ··· 707 https://github.com/jose-elias-alvarez/null-ls.nvim/,, 708 https://github.com/nacro90/numb.nvim/,, 709 https://github.com/nvchad/nvchad/,HEAD, 710 https://github.com/ChristianChiarulli/nvcode-color-schemes.vim/,, 711 + https://github.com/catppuccin/nvim/,,catppuccin-nvim 712 https://github.com/AckslD/nvim-FeMaco.lua/,HEAD, 713 https://github.com/nathanmsmith/nvim-ale-diagnostic/,, 714 https://github.com/windwp/nvim-autopairs/,, ··· 854 https://github.com/folke/persistence.nvim/,, 855 https://github.com/pest-parser/pest.vim/,HEAD, 856 https://github.com/lifepillar/pgsql.vim/,, 857 https://github.com/motus/pig.vim/,, 858 https://github.com/weirongxu/plantuml-previewer.vim/,HEAD, 859 https://github.com/aklt/plantuml-syntax/,, ··· 873 https://github.com/kevinhwang91/promise-async/,HEAD, 874 https://github.com/frigoeu/psc-ide-vim/,, 875 https://github.com/Shougo/pum.vim/,HEAD, 876 https://github.com/purescript-contrib/purescript-vim/,, 877 https://github.com/python-mode/python-mode/,, 878 https://github.com/vim-python/python-syntax/,, ··· 905 https://github.com/kevinhwang91/rnvimr/,, 906 https://github.com/mfukar/robotframework-vim/,, 907 https://github.com/ron-rs/ron.vim/,, 908 https://github.com/jmederosalvarado/roslyn.nvim/,HEAD, 909 https://github.com/keith/rspec.vim/,, 910 https://github.com/ccarpita/rtorrent-syntax-file/,, ··· 912 https://github.com/rust-lang/rust.vim/,, 913 https://github.com/hauleth/sad.vim/,, 914 https://github.com/vmware-archive/salt-vim/,, 915 https://github.com/lewis6991/satellite.nvim/,HEAD, 916 https://github.com/davidgranstrom/scnvim/,HEAD, 917 https://github.com/tiagovla/scope.nvim/,HEAD, ··· 1068 https://github.com/MrPicklePinosaur/typst-conceal.vim/,HEAD, 1069 https://github.com/chomosuke/typst-preview.nvim/,HEAD, 1070 https://github.com/kaarmu/typst.vim/,HEAD, 1071 + https://github.com/nvchad/ui/,HEAD,nvchad-ui 1072 https://github.com/altermo/ultimate-autopair.nvim/,HEAD, 1073 https://github.com/SirVer/ultisnips/,, 1074 https://github.com/mbbill/undotree/,, ··· 1084 https://github.com/jbyuki/venn.nvim/,, 1085 https://github.com/vhda/verilog_systemverilog.vim/,, 1086 https://github.com/vifm/vifm.vim/,, 1087 + https://github.com/catppuccin/vim/,HEAD,catppuccin-vim 1088 + https://github.com/dracula/vim/,,dracula-vim 1089 + https://github.com/embark-theme/vim/,,embark-vim 1090 + https://github.com/nordtheme/vim/,,nord-vim 1091 + https://github.com/inkarkat/vim-AdvancedSorters/,,vim-advanced-sorters 1092 https://github.com/Konfekt/vim-CtrlXA/,, 1093 https://github.com/konfekt/vim-DetectSpellLang/,, 1094 https://github.com/dpelle/vim-LanguageTool/,, ··· 1115 https://github.com/MarcWeber/vim-addon-syntax-checker/,, 1116 https://github.com/MarcWeber/vim-addon-toggle-buffer/,, 1117 https://github.com/MarcWeber/vim-addon-xdebug/,, 1118 https://github.com/junegunn/vim-after-object/,, 1119 https://github.com/danilo-augusto/vim-afterglow/,HEAD, 1120 https://github.com/msuperdock/vim-agda/,HEAD, ··· 1191 https://github.com/tpope/vim-dispatch/,, 1192 https://github.com/radenling/vim-dispatch-neovim/,, 1193 https://github.com/jhradilek/vim-docbk/,, 1194 https://github.com/tpope/vim-dotenv/,, 1195 https://github.com/junegunn/vim-easy-align/,, 1196 https://github.com/zhou13/vim-easyescape/,, ··· 1344 https://github.com/nfnty/vim-nftables/,, 1345 https://github.com/kana/vim-niceblock/,, 1346 https://github.com/nickel-lang/vim-nickel/,main, 1347 + https://github.com/bluz71/vim-nightfly-colors/,,nightfly 1348 https://github.com/tommcdo/vim-ninja-feet/,, 1349 https://github.com/LnL7/vim-nix/,, 1350 https://github.com/symphorien/vim-nixhash/,, ··· 1435 https://github.com/bohlender/vim-smt2/,, 1436 https://github.com/justinmk/vim-sneak/,, 1437 https://github.com/garbas/vim-snipmate/,, 1438 + https://github.com/jhradilek/vim-snippets/,,vim-docbk-snippets 1439 https://github.com/honza/vim-snippets/,, 1440 https://github.com/lifepillar/vim-solarized8/,HEAD, 1441 https://github.com/tomlion/vim-solidity/,, ··· 1565 https://github.com/folke/zen-mode.nvim/,, 1566 https://github.com/zenbones-theme/zenbones.nvim/,HEAD, 1567 https://github.com/jnurmine/zenburn/,, 1568 + https://github.com/phha/zenburn.nvim/,,phha-zenburn 1569 https://github.com/nvimdev/zephyr-nvim/,, 1570 https://github.com/ziglang/zig.vim/,, 1571 https://github.com/zk-org/zk-nvim/,HEAD,
+86
pkgs/by-name/al/allmark/0001-Add-go.mod-go.sum.patch
···
··· 1 + From b68287d3770fd1d2ba2c83a0de6b9b9bc550bee2 Mon Sep 17 00:00:00 2001 2 + From: wxt <3264117476@qq.com> 3 + Date: Sat, 2 Nov 2024 18:17:20 +0800 4 + Subject: [PATCH] Add go.mod & go.sum; remove vendor 5 + 6 + --- 7 + go.mod | 27 +++++++++++++++++++++++++++ 8 + go.sum | 32 ++++++++++++++++++++++++++++++++ 9 + 2 files changed, 59 insertions(+) 10 + create mode 100644 go.mod 11 + create mode 100644 go.sum 12 + 13 + diff --git a/go.mod b/go.mod 14 + new file mode 100644 15 + index 0000000..21b33b1 16 + --- /dev/null 17 + +++ b/go.mod 18 + @@ -0,0 +1,27 @@ 19 + +module github.com/andreaskoch/allmark 20 + + 21 + +go 1.19 22 + + 23 + +require ( 24 + + github.com/abbot/go-http-auth v0.4.0 25 + + github.com/andreaskoch/fulltext v0.0.0-20150721192424-05ab8b1eab52 26 + + github.com/andreaskoch/go-fswatch v1.0.0 27 + + github.com/gorilla/handlers v1.5.2 28 + + github.com/gorilla/mux v1.8.1 29 + + github.com/kyokomi/emoji v1.5.1 30 + + github.com/mitchellh/go-homedir v1.1.0 31 + + github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 32 + + github.com/russross/blackfriday v1.6.0 33 + + github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 34 + + github.com/spf13/afero v1.11.0 35 + + golang.org/x/net v0.26.0 36 + +) 37 + + 38 + +require ( 39 + + github.com/felixge/httpsnoop v1.0.3 // indirect 40 + + github.com/jbarham/go-cdb v0.0.0-20200301055225-9d6f6caadef0 // indirect 41 + + golang.org/x/crypto v0.24.0 // indirect 42 + + golang.org/x/text v0.16.0 // indirect 43 + +) 44 + + 45 + +replace github.com/jbarham/go-cdb => github.com/jbarham/cdb v0.0.0-20200301055225-9d6f6caadef0 46 + diff --git a/go.sum b/go.sum 47 + new file mode 100644 48 + index 0000000..0dc9e58 49 + --- /dev/null 50 + +++ b/go.sum 51 + @@ -0,0 +1,32 @@ 52 + +github.com/abbot/go-http-auth v0.4.0 h1:QjmvZ5gSC7jm3Zg54DqWE/T5m1t2AfDu6QlXJT0EVT0= 53 + +github.com/abbot/go-http-auth v0.4.0/go.mod h1:Cz6ARTIzApMJDzh5bRMSUou6UMSp0IEXg9km/ci7TJM= 54 + +github.com/andreaskoch/fulltext v0.0.0-20150721192424-05ab8b1eab52 h1:Qp0ffUn2ZJsi5GXcE89Hk6QuZnSfFfgxm1+zzSJ45ak= 55 + +github.com/andreaskoch/fulltext v0.0.0-20150721192424-05ab8b1eab52/go.mod h1:zETSTZmtSh/XxEkD4vIlbf1Ih/gKC+10kcpBO6mv3iE= 56 + +github.com/andreaskoch/go-fswatch v1.0.0 h1:la8nP/HiaFCxP2IM6NZNUCoxgLWuyNFgH0RligBbnJU= 57 + +github.com/andreaskoch/go-fswatch v1.0.0/go.mod h1:r5/iV+4jfwoY2sYqBkg8vpF04ehOvEl4qPptVGdxmqo= 58 + +github.com/felixge/httpsnoop v1.0.3 h1:s/nj+GCswXYzN5v2DpNMuMQYe+0DDwt5WVCU6CWBdXk= 59 + +github.com/felixge/httpsnoop v1.0.3/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= 60 + +github.com/gorilla/handlers v1.5.2 h1:cLTUSsNkgcwhgRqvCNmdbRWG0A3N4F+M2nWKdScwyEE= 61 + +github.com/gorilla/handlers v1.5.2/go.mod h1:dX+xVpaxdSw+q0Qek8SSsl3dfMk3jNddUkMzo0GtH0w= 62 + +github.com/gorilla/mux v1.8.1 h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY= 63 + +github.com/gorilla/mux v1.8.1/go.mod h1:AKf9I4AEqPTmMytcMc0KkNouC66V3BtZ4qD5fmWSiMQ= 64 + +github.com/jbarham/cdb v0.0.0-20200301055225-9d6f6caadef0 h1:UfCOnKxwt2dxueylTrrjjyMsaXPHTSJJygePRYaRntE= 65 + +github.com/jbarham/cdb v0.0.0-20200301055225-9d6f6caadef0/go.mod h1:ColEidrii1lqlFhoEckJfZsa0mWxC0I2+f7G/5hZWsw= 66 + +github.com/kyokomi/emoji v1.5.1 h1:qp9dub1mW7C4MlvoRENH6EAENb9skEFOvIEbp1Waj38= 67 + +github.com/kyokomi/emoji v1.5.1/go.mod h1:mZ6aGCD7yk8j6QY6KICwnZ2pxoszVseX1DNoGtU2tBA= 68 + +github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= 69 + +github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= 70 + +github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 h1:zYyBkD/k9seD2A7fsi6Oo2LfFZAehjjQMERAvZLEDnQ= 71 + +github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646/go.mod h1:jpp1/29i3P1S/RLdc7JQKbRpFeM1dOBd8T9ki5s+AY8= 72 + +github.com/russross/blackfriday v1.6.0 h1:KqfZb0pUVN2lYqZUYRddxF4OR8ZMURnJIG5Y3VRLtww= 73 + +github.com/russross/blackfriday v1.6.0/go.mod h1:ti0ldHuxg49ri4ksnFxlkCfN+hvslNlmVHqNRXXJNAY= 74 + +github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 h1:JIAuq3EEf9cgbU6AtGPK4CTG3Zf6CKMNqf0MHTggAUA= 75 + +github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966/go.mod h1:sUM3LWHvSMaG192sy56D9F7CNvL7jUJVXoqM1QKLnog= 76 + +github.com/spf13/afero v1.11.0 h1:WJQKhtpdm3v2IzqG8VMqrr6Rf3UYpEF239Jy9wNepM8= 77 + +github.com/spf13/afero v1.11.0/go.mod h1:GH9Y3pIexgf1MTIWtNGyogA5MwRIDXGUr+hbWNoBjkY= 78 + +golang.org/x/crypto v0.24.0 h1:mnl8DM0o513X8fdIkmyFE/5hTYxbwYOjDS/+rK6qpRI= 79 + +golang.org/x/crypto v0.24.0/go.mod h1:Z1PMYSOR5nyMcyAVAIQSKCDwalqy85Aqn1x3Ws4L5DM= 80 + +golang.org/x/net v0.26.0 h1:soB7SVo0PWrY4vPW/+ay0jKDNScG2X9wFeYlXIvJsOQ= 81 + +golang.org/x/net v0.26.0/go.mod h1:5YKkiSynbBIh3p6iOc/vibscux0x38BZDkn8sCUPxHE= 82 + +golang.org/x/text v0.16.0 h1:a94ExnEXNtEwYLGJSIUxnWoxoRz/ZcCsV63ROupILh4= 83 + +golang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI= 84 + -- 85 + 2.46.1 86 +
+9 -5
pkgs/by-name/al/allmark/package.nix
··· 10 11 src = fetchFromGitHub { 12 owner = "andreaskoch"; 13 - repo = pname; 14 rev = "v${version}"; 15 hash = "sha256-JfNn/e+cSq1pkeXs7A2dMsyhwOnh7x2bwm6dv6NOjLU="; 16 }; 17 18 - postPatch = '' 19 - go mod init github.com/andreaskoch/allmark 20 - ''; 21 22 - vendorHash = null; 23 24 postInstall = '' 25 mv $out/bin/{cli,allmark} 26 ''; 27 28 meta = { 29 description = "Cross-platform markdown web server";
··· 10 11 src = fetchFromGitHub { 12 owner = "andreaskoch"; 13 + repo = "allmark"; 14 rev = "v${version}"; 15 hash = "sha256-JfNn/e+cSq1pkeXs7A2dMsyhwOnh7x2bwm6dv6NOjLU="; 16 }; 17 18 + vendorHash = "sha256-dEmI+COrWhXdqtTkLIjyiUapHtjezCEuY9jLDqxkBBg="; 19 20 + deleteVendor = true; 21 + 22 + patches = [ 23 + ./0001-Add-go.mod-go.sum.patch # Add go.mod, go.sum, remove vendor 24 + ]; 25 26 postInstall = '' 27 mv $out/bin/{cli,allmark} 28 ''; 29 + 30 + __darwinAllowLocalNetworking = true; 31 32 meta = { 33 description = "Cross-platform markdown web server";
+2 -2
pkgs/by-name/ba/basedpyright/package.nix
··· 16 17 buildNpmPackage rec { 18 pname = "basedpyright"; 19 - version = "1.21.0"; 20 21 src = fetchFromGitHub { 22 owner = "detachhead"; 23 repo = "basedpyright"; 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-OQXqwpvYIitWGWshEv1/j2hAphFnGXDuvbRav5TilI4="; 26 }; 27 28 npmDepsHash = "sha256-hCZ68sLpQs/7SYVf3pMAHfstRm1C/d80j8fESIFdhnw=";
··· 16 17 buildNpmPackage rec { 18 pname = "basedpyright"; 19 + version = "1.21.1"; 20 21 src = fetchFromGitHub { 22 owner = "detachhead"; 23 repo = "basedpyright"; 24 rev = "refs/tags/v${version}"; 25 + hash = "sha256-RwckZqEL5U60XSYul74p9Ezg+N8FrnLkRFpdxIa7/34="; 26 }; 27 28 npmDepsHash = "sha256-hCZ68sLpQs/7SYVf3pMAHfstRm1C/d80j8fESIFdhnw=";
+3 -3
pkgs/by-name/fr/fritz-exporter/package.nix
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "fritz-exporter"; 8 - version = "2.5.0"; 9 pyproject = true; 10 11 src = fetchFromGitHub { 12 owner = "pdreker"; 13 repo = "fritz_exporter"; 14 - rev = "fritzexporter-v${version}"; 15 - hash = "sha256-x5WCVDIKdreQCmVpiWbmVBNo42P5kSxX9dLMBKfZTWc="; 16 }; 17 18 postPatch = ''
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "fritz-exporter"; 8 + version = "2.5.1"; 9 pyproject = true; 10 11 src = fetchFromGitHub { 12 owner = "pdreker"; 13 repo = "fritz_exporter"; 14 + rev = "refs/tags/fritzexporter-v${version}"; 15 + hash = "sha256-qqvvoOQRFNl9IUjaBc/qzg9AevT5c2JDsfDVAZW6d6E="; 16 }; 17 18 postPatch = ''
+54
pkgs/by-name/hy/hyprwall/package.nix
···
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + rustPlatform, 5 + 6 + pkg-config, 7 + glib, 8 + pango, 9 + gtk3, 10 + wrapGAppsHook4, 11 + }: 12 + 13 + rustPlatform.buildRustPackage rec { 14 + pname = "hyprwall"; 15 + version = "0.1.8"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "hyprutils"; 19 + repo = "hyprwall"; 20 + rev = "refs/tags/v${version}"; 21 + hash = "sha256-dzPd+5cws3hKhdd1CKKEO7EWMS0XW0y1vqxg1XKX+gY="; 22 + }; 23 + 24 + cargoHash = "sha256-gT2ysWHckcUl1yx5tciy6kSvZZ0srrs4OwI1mr/58Pc="; 25 + 26 + nativeBuildInputs = [ 27 + pkg-config 28 + glib 29 + pango 30 + wrapGAppsHook4 31 + ]; 32 + 33 + # Required in build process, prevents gdk-sys build error. 34 + buildInputs = [ 35 + gtk3 36 + ]; 37 + 38 + postInstall = '' 39 + install -Dm644 hyprwall.desktop -t $out/share/applications 40 + install -Dm644 hyprwall.png -t $out/share/pixmaps 41 + substituteInPlace "$out/share/applications/hyprwall.desktop" \ 42 + --replace-fail 'Exec=/usr/bin/hyprwall' "Exec=hyprwall" 43 + ''; 44 + 45 + meta = { 46 + description = "GUI for setting wallpapers with hyprpaper"; 47 + homepage = "https://github.com/hyprutils/hyprwall"; 48 + changelog = "https://github.com/hyprutils/hyprwall/releases/tag/v${version}"; 49 + license = lib.licenses.gpl2Only; 50 + maintainers = with lib.maintainers; [ genga898 ]; 51 + mainProgram = "hyprwall"; 52 + platforms = lib.platforms.linux; 53 + }; 54 + }
+2 -2
pkgs/by-name/nc/ncspot/package.nix
··· 2 lib, 3 stdenv, 4 alsa-lib, 5 config, 6 - darwin, 7 dbus, 8 fetchFromGitHub, 9 libpulseaudio, ··· 50 51 buildInputs = 52 [ ncurses ] 53 ++ lib.optional stdenv.hostPlatform.isLinux openssl 54 - ++ lib.optional stdenv.hostPlatform.isDarwin darwin.apple_sdk.frameworks.Cocoa 55 ++ lib.optional (withALSA || withRodio) alsa-lib 56 ++ lib.optional withClipboard libxcb 57 ++ lib.optional withCover ueberzug
··· 2 lib, 3 stdenv, 4 alsa-lib, 5 + apple-sdk_11, 6 config, 7 dbus, 8 fetchFromGitHub, 9 libpulseaudio, ··· 50 51 buildInputs = 52 [ ncurses ] 53 + ++ lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11 54 ++ lib.optional stdenv.hostPlatform.isLinux openssl 55 ++ lib.optional (withALSA || withRodio) alsa-lib 56 ++ lib.optional withClipboard libxcb 57 ++ lib.optional withCover ueberzug
+27
pkgs/by-name/pa/pay-respects/package.nix
···
··· 1 + { 2 + lib, 3 + fetchFromGitea, 4 + rustPlatform, 5 + }: 6 + rustPlatform.buildRustPackage rec { 7 + pname = "pay-respects"; 8 + version = "0.4.18"; 9 + 10 + src = fetchFromGitea { 11 + domain = "codeberg.org"; 12 + owner = "iff"; 13 + repo = "pay-respects"; 14 + rev = "v${version}"; 15 + hash = "sha256-8YQgNOqZAMhn93rk0fw1SV02XhI/Wt9D5Rzo64cCs7s="; 16 + }; 17 + 18 + cargoHash = "sha256-xLAJLwzX923E7Pzfwdw38moLOlY0Q4xK8himbKHQ7O8="; 19 + 20 + meta = { 21 + description = "Terminal command correction, alternative to `thefuck`, written in Rust"; 22 + homepage = "https://codeberg.org/iff/pay-respects"; 23 + license = lib.licenses.agpl3Plus; 24 + maintainers = with lib.maintainers; [ sigmasquadron ]; 25 + mainProgram = "pay-respects"; 26 + }; 27 + }
+132
pkgs/by-name/qt/qtscrcpy/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + cmake, 6 + pkg-config, 7 + libsForQt5, 8 + scrcpy, 9 + android-tools, 10 + ffmpeg_4, 11 + makeDesktopItem, 12 + copyDesktopItems, 13 + }: 14 + 15 + stdenv.mkDerivation rec { 16 + pname = "qtscrcpy"; 17 + version = "2.2.1"; 18 + 19 + src = 20 + (fetchFromGitHub { 21 + owner = "barry-ran"; 22 + repo = "QtScrcpy"; 23 + rev = "refs/tags/v${version}"; 24 + hash = "sha256-PL/UvRNqvLaFuvSHbkJsaJ2nqRp5+ERM+rmlKVtbShk="; 25 + fetchSubmodules = true; 26 + }).overrideAttrs 27 + (_: { 28 + GIT_CONFIG_COUNT = 1; 29 + GIT_CONFIG_KEY_0 = "url.https://github.com/.insteadOf"; 30 + GIT_CONFIG_VALUE_0 = "git@github.com:"; 31 + }); 32 + 33 + patches = [ 34 + # remove vendored ffmpeg, adb and scrcpy-server 35 + ./remove_vendors.patch 36 + 37 + # remove predefined adb and scrcpy-server path 38 + # we later set them in wrapper 39 + ./remove_predefined_paths.patch 40 + ]; 41 + 42 + postPatch = '' 43 + substituteInPlace QtScrcpy/QtScrcpyCore/{include/QtScrcpyCoreDef.h,src/device/server/server.h} \ 44 + --replace-fail 'serverVersion = "2.1.1"' 'serverVersion = "${scrcpy.version}"' 45 + substituteInPlace QtScrcpy/util/config.cpp \ 46 + --replace-fail 'COMMON_SERVER_VERSION_DEF "2.1.1"' 'COMMON_SERVER_VERSION_DEF "${scrcpy.version}"' 47 + substituteInPlace QtScrcpy/audio/audiooutput.cpp \ 48 + --replace-fail 'sndcpy.sh' "$out/share/qtscrcpy/sndcpy.sh" 49 + substituteInPlace QtScrcpy/sndcpy/sndcpy.sh \ 50 + --replace-fail 'ADB=./adb' "ADB=${lib.getExe' android-tools "adb"}" \ 51 + --replace-fail 'SNDCPY_APK=sndcpy.apk' "SNDCPY_APK=$out/share/qtscrcpy/sndcpy.apk" 52 + ''; 53 + 54 + nativeBuildInputs = [ 55 + cmake 56 + pkg-config 57 + libsForQt5.wrapQtAppsHook 58 + copyDesktopItems 59 + ]; 60 + 61 + buildInputs = 62 + [ 63 + scrcpy 64 + ffmpeg_4 65 + ] 66 + ++ (with libsForQt5; [ 67 + qtbase 68 + qtmultimedia 69 + qtx11extras 70 + ]); 71 + 72 + env.NIX_CFLAGS_COMPILE = toString [ 73 + "-Wno-error=sign-compare" 74 + ]; 75 + 76 + # Doesn't contain rule to install 77 + installPhase = '' 78 + runHook preInstall 79 + 80 + pushd ../output/x64/Release 81 + install -Dm755 QtScrcpy -t $out/bin 82 + install -Dm755 sndcpy.sh -t $out/share/qtscrcpy 83 + install -Dm644 sndcpy.apk -t $out/share/qtscrcpy 84 + popd 85 + 86 + install -Dm644 ../QtScrcpy/res/image/tray/logo.png $out/share/pixmaps/qtscrcpy.png 87 + 88 + runHook postInstall 89 + ''; 90 + 91 + desktopItems = [ 92 + (makeDesktopItem { 93 + name = "QtScrcpy"; 94 + exec = "QtScrcpy %U"; 95 + icon = "qtscrcpy"; 96 + desktopName = "QtScrcpy"; 97 + genericName = "Android Display Control"; 98 + categories = [ 99 + "Utility" 100 + "RemoteAccess" 101 + ]; 102 + }) 103 + ]; 104 + 105 + preFixup = '' 106 + qtWrapperArgs+=( 107 + --set QTSCRCPY_ADB_PATH ${lib.getExe' android-tools "adb"} 108 + --set QTSCRCPY_SERVER_PATH ${scrcpy}/share/scrcpy/scrcpy-server 109 + ) 110 + ''; 111 + 112 + meta = { 113 + description = "Android real-time display control software"; 114 + homepage = "https://github.com/barry-ran/QtScrcpy"; 115 + license = lib.licenses.asl20; 116 + maintainers = with lib.maintainers; [ 117 + daru-san 118 + aleksana 119 + ]; 120 + mainProgram = "QtScrcpy"; 121 + platforms = with lib.platforms; linux ++ darwin ++ windows; 122 + # needs some special handling on darwin as it generates .app bundle directly 123 + badPlatforms = lib.platforms.darwin; 124 + sourceProvenance = with lib.sourceTypes; [ 125 + fromSource 126 + # Still includes sndcpy.apk vendored in the same repo 127 + # which will run on controlled Android device 128 + # https://github.com/barry-ran/QtScrcpy/blob/master/QtScrcpy/sndcpy/sndcpy.apk 129 + binaryBytecode 130 + ]; 131 + }; 132 + }
+27
pkgs/by-name/qt/qtscrcpy/remove_predefined_paths.patch
···
··· 1 + diff --git a/QtScrcpy/main.cpp b/QtScrcpy/main.cpp 2 + index a24ba60..51e3d76 100644 3 + --- a/QtScrcpy/main.cpp 4 + +++ b/QtScrcpy/main.cpp 5 + @@ -22,22 +22,16 @@ int main(int argc, char *argv[]) 6 + { 7 + // set env 8 + #ifdef Q_OS_WIN32 9 + - qputenv("QTSCRCPY_ADB_PATH", "../../../QtScrcpy/QtScrcpyCore/src/third_party/adb/win/adb.exe"); 10 + - qputenv("QTSCRCPY_SERVER_PATH", "../../../QtScrcpy/QtScrcpyCore/src/third_party/scrcpy-server"); 11 + qputenv("QTSCRCPY_KEYMAP_PATH", "../../../keymap"); 12 + qputenv("QTSCRCPY_CONFIG_PATH", "../../../config"); 13 + #endif 14 + 15 + #ifdef Q_OS_OSX 16 + - qputenv("QTSCRCPY_ADB_PATH", "../../../../../../QtScrcpy/QtScrcpyCore/src/third_party/adb/mac/adb"); 17 + - qputenv("QTSCRCPY_SERVER_PATH", "../../../../../../QtScrcpy/QtScrcpyCore/src/third_party/scrcpy-server"); 18 + qputenv("QTSCRCPY_KEYMAP_PATH", "../../../../../../keymap"); 19 + qputenv("QTSCRCPY_CONFIG_PATH", "../../../../../../config"); 20 + #endif 21 + 22 + #ifdef Q_OS_LINUX 23 + - qputenv("QTSCRCPY_ADB_PATH", "../../../QtScrcpy/QtScrcpyCore/src/third_party/adb/linux/adb"); 24 + - qputenv("QTSCRCPY_SERVER_PATH", "../../../QtScrcpy/QtScrcpyCore/src/third_party/scrcpy-server"); 25 + qputenv("QTSCRCPY_KEYMAP_PATH", "../../../keymap"); 26 + qputenv("QTSCRCPY_CONFIG_PATH", "../../../config"); 27 + #endif
+96
pkgs/by-name/qt/qtscrcpy/remove_vendors.patch
···
··· 1 + diff --git a/CMakeLists.txt b/CMakeLists.txt 2 + index 85c733e..02fea2c 100644 3 + --- a/QtScrcpy/QtScrcpyCore/CMakeLists.txt 4 + +++ b/QtScrcpy/QtScrcpyCore/CMakeLists.txt 5 + @@ -139,87 +139,10 @@ target_include_directories(${QSC_PROJECT_NAME} PRIVATE ${CMAKE_CURRENT_SOURCE_DI 6 + target_include_directories(${QSC_PROJECT_NAME} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src/device/recorder) 7 + target_include_directories(${QSC_PROJECT_NAME} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src/devicemanage) 8 + 9 + -# 10 + -# plantform deps 11 + -# 12 + 13 + -# windows 14 + -if(CMAKE_SYSTEM_NAME STREQUAL "Windows") 15 + - # ffmpeg 16 + - # include 17 + - target_include_directories(${QSC_PROJECT_NAME} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src/third_party/ffmpeg/include) 18 + - # link 19 + - set(FFMPEG_LIB_PATH "${CMAKE_CURRENT_SOURCE_DIR}/src/third_party/ffmpeg/lib/${QSC_CPU_ARCH}") 20 + - target_link_directories(${QSC_PROJECT_NAME} PUBLIC ${FFMPEG_LIB_PATH}) 21 + - target_link_libraries(${QSC_PROJECT_NAME} PRIVATE 22 + - avformat 23 + - avcodec 24 + - avutil 25 + - swscale 26 + - ) 27 + - # copy 28 + - set(THIRD_PARTY_PATH "${CMAKE_CURRENT_SOURCE_DIR}/src/third_party") 29 + - set(FFMPEG_BIN_PATH "${THIRD_PARTY_PATH}/ffmpeg/bin/${QSC_CPU_ARCH}") 30 + - add_custom_command(TARGET ${QSC_PROJECT_NAME} POST_BUILD 31 + - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${FFMPEG_BIN_PATH}/avcodec-58.dll" "${QSC_DEPLOY_PATH}" 32 + - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${FFMPEG_BIN_PATH}/avformat-58.dll" "${QSC_DEPLOY_PATH}" 33 + - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${FFMPEG_BIN_PATH}/avutil-56.dll" "${QSC_DEPLOY_PATH}" 34 + - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${FFMPEG_BIN_PATH}/swscale-5.dll" "${QSC_DEPLOY_PATH}" 35 + - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${FFMPEG_BIN_PATH}/swresample-3.dll" "${QSC_DEPLOY_PATH}" 36 + - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${THIRD_PARTY_PATH}/adb/win/adb.exe" "${QSC_DEPLOY_PATH}" 37 + - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${THIRD_PARTY_PATH}/adb/win/AdbWinApi.dll" "${QSC_DEPLOY_PATH}" 38 + - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${THIRD_PARTY_PATH}/adb/win/AdbWinUsbApi.dll" "${QSC_DEPLOY_PATH}" 39 + - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${THIRD_PARTY_PATH}/scrcpy-server" "${QSC_DEPLOY_PATH}" 40 + - ) 41 + -endif() 42 + 43 + -# MacOS 44 + -if(CMAKE_SYSTEM_NAME STREQUAL "Darwin") 45 + - # ffmpeg 46 + - # include 47 + - target_include_directories(${QSC_PROJECT_NAME} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src/third_party/ffmpeg/include) 48 + - # link 49 + - set(FFMPEG_LIB_PATH "${CMAKE_CURRENT_SOURCE_DIR}/src/third_party/ffmpeg/lib") 50 + - target_link_directories(${QSC_PROJECT_NAME} PUBLIC ${FFMPEG_LIB_PATH}) 51 + - target_link_libraries(${QSC_PROJECT_NAME} PRIVATE 52 + - avformat.58 53 + - avcodec.58 54 + - avutil.56 55 + - swscale.5 56 + - ) 57 + - 58 + - # copy bundle file 59 + - add_custom_command(TARGET ${QSC_PROJECT_NAME} POST_BUILD 60 + - # dylib,scrcpy-server,adb copy to Contents/MacOS 61 + - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_CURRENT_SOURCE_DIR}/src/third_party/ffmpeg/lib/libavcodec.58.dylib" "${QSC_DEPLOY_PATH}/MacOS" 62 + - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_CURRENT_SOURCE_DIR}/src/third_party/ffmpeg/lib/libavformat.58.dylib" "${QSC_DEPLOY_PATH}/MacOS" 63 + - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_CURRENT_SOURCE_DIR}/src/third_party/ffmpeg/lib/libavutil.56.dylib" "${QSC_DEPLOY_PATH}/MacOS" 64 + - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_CURRENT_SOURCE_DIR}/src/third_party/ffmpeg/lib/libswscale.5.dylib" "${QSC_DEPLOY_PATH}/MacOS" 65 + - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_CURRENT_SOURCE_DIR}/src/third_party/ffmpeg/lib/libswresample.3.dylib" "${QSC_DEPLOY_PATH}/MacOS" 66 + - 67 + - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_CURRENT_SOURCE_DIR}/src/third_party/scrcpy-server" "${QSC_DEPLOY_PATH}/MacOS" 68 + - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_CURRENT_SOURCE_DIR}/src/third_party/adb/mac/adb" "${QSC_DEPLOY_PATH}/MacOS" 69 + - ) 70 + -endif() 71 + +find_package(PkgConfig REQUIRED) 72 + +pkg_check_modules(FFMPEG REQUIRED libavcodec libavformat libavutil libswscale) 73 + 74 + -# Linux 75 + -if(CMAKE_SYSTEM_NAME STREQUAL "Linux") 76 + - # include 77 + - target_include_directories(${QSC_PROJECT_NAME} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src/third_party/ffmpeg/include) 78 + - # link 79 + - set(FFMPEG_LIB_PATH "${CMAKE_CURRENT_SOURCE_DIR}/src/third_party/ffmpeg/lib") 80 + - target_link_directories(${QSC_PROJECT_NAME} PUBLIC ${FFMPEG_LIB_PATH}) 81 + - target_link_libraries(${QSC_PROJECT_NAME} PRIVATE 82 + - # ffmpeg 83 + - avformat 84 + - avcodec 85 + - avutil 86 + - swscale 87 + - z 88 + - ) 89 + - 90 + - add_custom_command(TARGET ${QSC_PROJECT_NAME} POST_BUILD 91 + - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_CURRENT_SOURCE_DIR}/src/third_party/adb/linux/adb" "${QSC_DEPLOY_PATH}" 92 + - COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_CURRENT_SOURCE_DIR}/src/third_party/scrcpy-server" "${QSC_DEPLOY_PATH}" 93 + - ) 94 + -endif() 95 + +target_link_libraries(${QSC_PROJECT_NAME} PRIVATE ${FFMPEG_LIBRARIES}) 96 + +target_include_directories(${QSC_PROJECT_NAME} PRIVATE ${FFMPEG_INCLUDE_DIRS})
+2
pkgs/by-name/ra/rabbit/package.nix
··· 20 "scikit-learn" 21 "scipy" 22 "tqdm" 23 ]; 24 25 build-system = [
··· 20 "scikit-learn" 21 "scipy" 22 "tqdm" 23 + "pandas" 24 + "urllib3" 25 ]; 26 27 build-system = [
+6 -1
pkgs/by-name/st/step-cli/package.nix
··· 16 owner = "smallstep"; 17 repo = "cli"; 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-Ha64SLJWJdfVt1T2M6UHyFD/OD8lmUQ0vU8OKjN272Y="; 20 }; 21 22 ldflags = [
··· 16 owner = "smallstep"; 17 repo = "cli"; 18 rev = "refs/tags/v${version}"; 19 + hash = "sha256-G+/fc1qFXcNOxF+oyDmEZzzOUcODBvX+YfQ8Sx5JQK4="; 20 + # this file change depending on git branch status (via .gitattributes) 21 + # https://github.com/NixOS/nixpkgs/issues/84312 22 + postFetch = '' 23 + rm -f $out/.VERSION 24 + ''; 25 }; 26 27 ldflags = [
+55
pkgs/by-name/tr/tree-from-tags/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + bundlerEnv, 5 + ruby, 6 + fetchFromGitHub, 7 + }: 8 + let 9 + version = "1.1"; 10 + gems = bundlerEnv { 11 + name = "tree-from-tags-${version}-gems"; 12 + inherit ruby; 13 + gemdir = ./.; 14 + }; 15 + in 16 + stdenv.mkDerivation { 17 + pname = "tree-from-tags"; 18 + inherit version; 19 + 20 + src = fetchFromGitHub { 21 + owner = "dbrock"; 22 + repo = "bongo"; 23 + rev = version; 24 + hash = "sha256-G+6rRJLNBECxGc8WuaesXhrYqvEDy2Chpw4lWxO8X9s="; 25 + }; 26 + 27 + buildInputs = [ 28 + gems 29 + ruby 30 + ]; 31 + 32 + installPhase = '' 33 + mkdir -p $out/{bin,share} 34 + cp tree-from-tags.rb $out/share/ 35 + bin=$out/bin/tree-from-tags 36 + # we are using bundle exec to start in the bundled environment 37 + cat > $bin <<EOF 38 + #!/bin/sh -e 39 + exec ${gems}/bin/bundle exec ${ruby}/bin/ruby "$out"/share/tree-from-tags.rb "\$@" 40 + EOF 41 + chmod +x $bin 42 + ''; 43 + 44 + meta = { 45 + description = "Create file hierarchies from media tags"; 46 + homepage = "https://www.emacswiki.org/emacs/Bongo"; 47 + platforms = ruby.meta.platforms; 48 + maintainers = with lib.maintainers; [ 49 + livnev 50 + dbrock 51 + ]; 52 + license = lib.licenses.gpl2Plus; 53 + mainProgram = "tree-from-tags"; 54 + }; 55 + }
+10 -19
pkgs/by-name/tu/turbo-unwrapped/package.nix
··· 1 { 2 - stdenv, 3 lib, 4 - fetchFromGitHub, 5 - rustPlatform, 6 capnproto, 7 - darwin, 8 extra-cmake-modules, 9 fontconfig, 10 llvmPackages, 11 nix-update-script, ··· 13 pkg-config, 14 protobuf, 15 rust-jemalloc-sys, 16 zlib, 17 }: 18 ··· 39 # https://github.com/vercel/turbo/blob/ea740706e0592b3906ab34c7cfa1768daafc2a84/CONTRIBUTING.md#linux-dependencies 40 ++ lib.optional stdenv.hostPlatform.isLinux llvmPackages.bintools; 41 42 - buildInputs = 43 - [ 44 - fontconfig 45 - openssl 46 - rust-jemalloc-sys 47 - zlib 48 - ] 49 - ++ lib.optionals stdenv.hostPlatform.isDarwin ( 50 - with darwin.apple_sdk_11_0.frameworks; 51 - [ 52 - CoreFoundation 53 - CoreServices 54 - IOKit 55 - ] 56 - ); 57 58 cargoBuildFlags = [ 59 "--package"
··· 1 { 2 lib, 3 + stdenv, 4 + apple-sdk_11, 5 capnproto, 6 extra-cmake-modules, 7 + fetchFromGitHub, 8 fontconfig, 9 llvmPackages, 10 nix-update-script, ··· 12 pkg-config, 13 protobuf, 14 rust-jemalloc-sys, 15 + rustPlatform, 16 zlib, 17 }: 18 ··· 39 # https://github.com/vercel/turbo/blob/ea740706e0592b3906ab34c7cfa1768daafc2a84/CONTRIBUTING.md#linux-dependencies 40 ++ lib.optional stdenv.hostPlatform.isLinux llvmPackages.bintools; 41 42 + buildInputs = [ 43 + fontconfig 44 + openssl 45 + rust-jemalloc-sys 46 + zlib 47 + ] ++ lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11; 48 49 cargoBuildFlags = [ 50 "--package"
+2 -2
pkgs/by-name/ve/ventoy/package.nix
··· 28 , withXfs ? false 29 , withExt4 ? false 30 , withNtfs ? false 31 - , withGtk3 ? false 32 - , withQt5 ? false 33 , libsForQt5 34 }: 35
··· 28 , withXfs ? false 29 , withExt4 ? false 30 , withNtfs ? false 31 + , withGtk3 ? defaultGuiType == "gtk3" 32 + , withQt5 ? defaultGuiType == "qt5" 33 , libsForQt5 34 }: 35
+2 -2
pkgs/by-name/wa/wapiti/package.nix
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "wapiti"; 9 - version = "3.2.0"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "wapiti-scanner"; 14 repo = "wapiti"; 15 rev = "refs/tags/${version}"; 16 - hash = "sha256-Ekh31MXqxY6iSyQRX0YZ0Tl7DFhYqGtOepYS/VObZc0="; 17 }; 18 19 pythonRelaxDeps = true;
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "wapiti"; 9 + version = "3.2.1"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "wapiti-scanner"; 14 repo = "wapiti"; 15 rev = "refs/tags/${version}"; 16 + hash = "sha256-28PGdaOhFz9onw3yFHtCbAxLmh7q0VLGNuyI1wcKLRQ="; 17 }; 18 19 pythonRelaxDeps = true;
+7 -1
pkgs/by-name/wo/woomer/package.nix
··· 66 license = lib.licenses.mit; 67 maintainers = with lib.maintainers; [ getchoo ]; 68 mainProgram = "woomer"; 69 - inherit (wayland.meta) platforms; 70 # TODO: Remove after upstream is no longer affected by 71 # https://github.com/raylib-rs/raylib-rs/issues/74 72 broken = stdenv.hostPlatform.isAarch64;
··· 66 license = lib.licenses.mit; 67 maintainers = with lib.maintainers; [ getchoo ]; 68 mainProgram = "woomer"; 69 + # Not all platforms supported by Wayland are supported by the libraries 70 + # used here 71 + # 72 + # "unresolved import `nix::sys::memfd`" 73 + # https://github.com/waycrate/wayshot/blob/cb6bd68dbbe6ab70a5d8fe3bd04cc154f0631cd8/libwayshot/src/screencopy.rs#L11 74 + # https://github.com/nix-rust/nix/blob/0e4353a368abfcedea4ebe4345cf7604bb61d238/src/sys/mod.rs#L40-L44 75 + platforms = lib.platforms.linux ++ lib.platforms.freebsd; 76 # TODO: Remove after upstream is no longer affected by 77 # https://github.com/raylib-rs/raylib-rs/issues/74 78 broken = stdenv.hostPlatform.isAarch64;
+6
pkgs/development/haskell-modules/configuration-darwin.nix
··· 94 ''; 95 }) super.git-annex; 96 97 # Prevents needing to add `security_tool` as a run-time dependency for 98 # everything using x509-system to give access to the `security` executable. 99 #
··· 94 ''; 95 }) super.git-annex; 96 97 + # on*Finish tests rely on a threadDelay timing differential of 0.1s. 98 + # You'd think that's plenty of time even though immediate rescheduling 99 + # after threadDelay is not guaranteed. However, it appears that these 100 + # tests are quite flaky on Darwin. 101 + immortal = dontCheck super.immortal; 102 + 103 # Prevents needing to add `security_tool` as a run-time dependency for 104 # everything using x509-system to give access to the `security` executable. 105 #
+41 -41
pkgs/development/lua-modules/generated-packages.nix
··· 555 fzf-lua = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder }: 556 buildLuarocksPackage { 557 pname = "fzf-lua"; 558 - version = "0.0.1479-1"; 559 knownRockspec = (fetchurl { 560 - url = "mirror://luarocks/fzf-lua-0.0.1479-1.rockspec"; 561 - sha256 = "1xj0vw2y9y0ff88gcsh1q8vg9lsrsak435pzx8bizpcxkpaqizc4"; 562 }).outPath; 563 src = fetchzip { 564 - url = "https://github.com/ibhagwan/fzf-lua/archive/ce1e24f2a48089b65deefcb0a71a9856839002b5.zip"; 565 - sha256 = "0nfihl95bxrjmkin8wj6d8sznch695fk2wxkwk6wd92v5dlapypx"; 566 }; 567 568 disabled = luaOlder "5.1"; ··· 606 src = fetchFromGitHub { 607 owner = "lewis6991"; 608 repo = "gitsigns.nvim"; 609 - rev = "ee7634ab4f0a6606438fe13e16cbf2065589a5ed"; 610 - hash = "sha256-jR7/rX2bsOMkWc4MHMRlBDdELgl8JOVjGOcx6bl/nYw="; 611 }; 612 613 disabled = lua.luaversion != "5.1"; ··· 2492 lz-n = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder }: 2493 buildLuarocksPackage { 2494 pname = "lz.n"; 2495 - version = "2.9.1-1"; 2496 knownRockspec = (fetchurl { 2497 - url = "mirror://luarocks/lz.n-2.9.1-1.rockspec"; 2498 - sha256 = "0x2xgmgxj9zvpa9x57981j3g21wm3zsylpwidk0wsbln7nag6b92"; 2499 }).outPath; 2500 src = fetchzip { 2501 - url = "https://github.com/nvim-neorocks/lz.n/archive/v2.9.1.zip"; 2502 - sha256 = "1xk4m8i61aiwcd9k5xp3wpn3frxkkjy5fk2921qkma1vsadd83yk"; 2503 }; 2504 2505 disabled = luaOlder "5.1"; ··· 2538 lzn-auto-require = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder, lz-n }: 2539 buildLuarocksPackage { 2540 pname = "lzn-auto-require"; 2541 - version = "0.1.0-1"; 2542 knownRockspec = (fetchurl { 2543 - url = "mirror://luarocks/lzn-auto-require-0.1.0-1.rockspec"; 2544 - sha256 = "01yx40yvj6msh42cyj3vbmi3phdpiqafr0qv12yfj7garhxjidd3"; 2545 }).outPath; 2546 src = fetchzip { 2547 - url = "https://github.com/horriblename/lzn-auto-require/archive/v0.1.0.zip"; 2548 - sha256 = "0hkpyqw1cybrwarvxanf2drz2cbxkh77yz2qq4akhzyvidmn7ny0"; 2549 }; 2550 2551 disabled = luaOlder "5.1"; ··· 2821 src = fetchFromGitHub { 2822 owner = "hrsh7th"; 2823 repo = "nvim-cmp"; 2824 - rev = "29fb4854573355792df9e156cb779f0d31308796"; 2825 - hash = "sha256-dAsXxv1RtgMc1i5QrR2xqOeK6aRgYNqdYyTXVBXhVJ4="; 2826 }; 2827 2828 disabled = luaOlder "5.1" || luaAtLeast "5.4"; ··· 2976 rest-nvim = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, fidget-nvim, luaOlder, mimetypes, nvim-nio, xml2lua }: 2977 buildLuarocksPackage { 2978 pname = "rest.nvim"; 2979 - version = "3.8.3-1"; 2980 knownRockspec = (fetchurl { 2981 - url = "mirror://luarocks/rest.nvim-3.8.3-1.rockspec"; 2982 - sha256 = "0xz2h3z1ifydhlyrv2h13s26y2amx1x5xqppd6sq4bcg4zk82qv3"; 2983 }).outPath; 2984 src = fetchzip { 2985 - url = "https://github.com/rest-nvim/rest.nvim/archive/v3.8.3.zip"; 2986 - sha256 = "0cjck6c2qpa13rll3n1i0a97kpzlzpmk93nl2c4lvgplc3xp6zkf"; 2987 }; 2988 2989 disabled = luaOlder "5.1"; ··· 3048 rocks-git-nvim = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder, nvim-nio, rocks-nvim }: 3049 buildLuarocksPackage { 3050 pname = "rocks-git.nvim"; 3051 - version = "2.5.0-1"; 3052 knownRockspec = (fetchurl { 3053 - url = "mirror://luarocks/rocks-git.nvim-2.5.0-1.rockspec"; 3054 - sha256 = "1qxmwl7b21d9cxbai24pg1pymd8pii4bgikkc017qi3dafk7baqk"; 3055 }).outPath; 3056 src = fetchzip { 3057 - url = "https://github.com/nvim-neorocks/rocks-git.nvim/archive/v2.5.0.zip"; 3058 - sha256 = "1nvq3yhmnab2frfkf5yh6ffq7rqw3rmxsbj0hbm28vg3rr9c2zjw"; 3059 }; 3060 3061 disabled = luaOlder "5.1"; ··· 3072 rocks-nvim = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, fidget-nvim, fzy, luaOlder, luarocks, nvim-nio, rtp-nvim, toml-edit }: 3073 buildLuarocksPackage { 3074 pname = "rocks.nvim"; 3075 - version = "2.41.0-1"; 3076 knownRockspec = (fetchurl { 3077 - url = "mirror://luarocks/rocks.nvim-2.41.0-1.rockspec"; 3078 - sha256 = "1srhz85sfhkzlsy68mvwhdixvwz0awhrn530sny0287zhnrxrilp"; 3079 }).outPath; 3080 src = fetchzip { 3081 - url = "https://github.com/nvim-neorocks/rocks.nvim/archive/v2.41.0.zip"; 3082 - sha256 = "0j44chcziimqn6jm2ckbwmn97nin0dwhnnrdpm87j754kbqsj21a"; 3083 }; 3084 3085 disabled = luaOlder "5.1"; ··· 3119 rustaceanvim = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder }: 3120 buildLuarocksPackage { 3121 pname = "rustaceanvim"; 3122 - version = "5.13.0-1"; 3123 knownRockspec = (fetchurl { 3124 - url = "mirror://luarocks/rustaceanvim-5.13.0-1.rockspec"; 3125 - sha256 = "1r0b3haiix45ngl570dld84h1y36lpw2lc1vsf5z08xms45c5fay"; 3126 }).outPath; 3127 src = fetchzip { 3128 - url = "https://github.com/mrcjkb/rustaceanvim/archive/v5.13.0.zip"; 3129 - sha256 = "1prlsh1fl1a3r8fcshmzwbjk3imbxg2z43xl8fwbsginpizl8g09"; 3130 }; 3131 3132 disabled = luaOlder "5.1"; ··· 3338 src = fetchFromGitHub { 3339 owner = "nvim-telescope"; 3340 repo = "telescope.nvim"; 3341 - rev = "37dc9233a473dd6c3f54456ef9994d8f77c80211"; 3342 - hash = "sha256-zidYSt0WrnATuCpSGGhYuafNpPPN6dJ6hEuCgFytfEk="; 3343 }; 3344 3345 disabled = lua.luaversion != "5.1";
··· 555 fzf-lua = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder }: 556 buildLuarocksPackage { 557 pname = "fzf-lua"; 558 + version = "0.0.1481-1"; 559 knownRockspec = (fetchurl { 560 + url = "mirror://luarocks/fzf-lua-0.0.1481-1.rockspec"; 561 + sha256 = "1n9xj89pzi6lmhsjq2s4aqgbk1xvz1ai0g2w4821p4j28f963gs7"; 562 }).outPath; 563 src = fetchzip { 564 + url = "https://github.com/ibhagwan/fzf-lua/archive/6fbf7a9ee29e1e3e4cfd1af5c6406042e776883d.zip"; 565 + sha256 = "0ppdz4xch9npb1ybhx35s2xk067nwgk4l1gvgfajpqlxm3r4mh6h"; 566 }; 567 568 disabled = luaOlder "5.1"; ··· 606 src = fetchFromGitHub { 607 owner = "lewis6991"; 608 repo = "gitsigns.nvim"; 609 + rev = "9521fe8be39255b9abc6ec54e352bf04c410f5cf"; 610 + hash = "sha256-r5xleskWXIfQz9TIXWb/DCddVlsDsOMlnLCWoxUexe4="; 611 }; 612 613 disabled = lua.luaversion != "5.1"; ··· 2492 lz-n = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder }: 2493 buildLuarocksPackage { 2494 pname = "lz.n"; 2495 + version = "2.9.2-1"; 2496 knownRockspec = (fetchurl { 2497 + url = "mirror://luarocks/lz.n-2.9.2-1.rockspec"; 2498 + sha256 = "08xn5r8ghimnbn92ngsvg4d1924xy1vlj9vyghzbgfidg7802h8j"; 2499 }).outPath; 2500 src = fetchzip { 2501 + url = "https://github.com/nvim-neorocks/lz.n/archive/v2.9.2.zip"; 2502 + sha256 = "0h4s192mvmyd7isjkjjpy7xv9srry830gm0jg3iw61iwxv6qplpr"; 2503 }; 2504 2505 disabled = luaOlder "5.1"; ··· 2538 lzn-auto-require = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder, lz-n }: 2539 buildLuarocksPackage { 2540 pname = "lzn-auto-require"; 2541 + version = "0.2.0-1"; 2542 knownRockspec = (fetchurl { 2543 + url = "mirror://luarocks/lzn-auto-require-0.2.0-1.rockspec"; 2544 + sha256 = "02w8pvyhnlbsz56rhgjql13qkh7fk05ai1qkqvk90a8ni8w48hh3"; 2545 }).outPath; 2546 src = fetchzip { 2547 + url = "https://github.com/horriblename/lzn-auto-require/archive/v0.2.0.zip"; 2548 + sha256 = "1mgka1mmvpd2gfya898qdbbwrp5rpqds8manjs1s7g5x63xp6b98"; 2549 }; 2550 2551 disabled = luaOlder "5.1"; ··· 2821 src = fetchFromGitHub { 2822 owner = "hrsh7th"; 2823 repo = "nvim-cmp"; 2824 + rev = "f17d9b4394027ff4442b298398dfcaab97e40c4f"; 2825 + hash = "sha256-iNEoMl/X0nh2sAio1h+dkuobeOXRBXKFJCcElUyyW54="; 2826 }; 2827 2828 disabled = luaOlder "5.1" || luaAtLeast "5.4"; ··· 2976 rest-nvim = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, fidget-nvim, luaOlder, mimetypes, nvim-nio, xml2lua }: 2977 buildLuarocksPackage { 2978 pname = "rest.nvim"; 2979 + version = "3.8.4-1"; 2980 knownRockspec = (fetchurl { 2981 + url = "mirror://luarocks/rest.nvim-3.8.4-1.rockspec"; 2982 + sha256 = "1q6wsvnfs4mmv9rhkygrb3p1bzvr96k3s39ys2bxbl65hhxc2s5s"; 2983 }).outPath; 2984 src = fetchzip { 2985 + url = "https://github.com/rest-nvim/rest.nvim/archive/v3.8.4.zip"; 2986 + sha256 = "1s8vid9d2dacx86f77vx7pdwidhfxyighblchxjybj4fn1b7qwj0"; 2987 }; 2988 2989 disabled = luaOlder "5.1"; ··· 3048 rocks-git-nvim = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder, nvim-nio, rocks-nvim }: 3049 buildLuarocksPackage { 3050 pname = "rocks-git.nvim"; 3051 + version = "2.5.1-1"; 3052 knownRockspec = (fetchurl { 3053 + url = "mirror://luarocks/rocks-git.nvim-2.5.1-1.rockspec"; 3054 + sha256 = "0mb8r5064h7yjgdaipsmgi6ha2dlxbwd73js8w23pi182fprqpvj"; 3055 }).outPath; 3056 src = fetchzip { 3057 + url = "https://github.com/nvim-neorocks/rocks-git.nvim/archive/v2.5.1.zip"; 3058 + sha256 = "11j9w8bz8gacphr98bpw4rbibz4gs8abawmfqhx5l86k4801z5sq"; 3059 }; 3060 3061 disabled = luaOlder "5.1"; ··· 3072 rocks-nvim = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, fidget-nvim, fzy, luaOlder, luarocks, nvim-nio, rtp-nvim, toml-edit }: 3073 buildLuarocksPackage { 3074 pname = "rocks.nvim"; 3075 + version = "2.41.3-1"; 3076 knownRockspec = (fetchurl { 3077 + url = "mirror://luarocks/rocks.nvim-2.41.3-1.rockspec"; 3078 + sha256 = "0a7xjvgc3i9p0iqj35kca42fii6cz3njq4fpgpcbk9nv6ghbsmcq"; 3079 }).outPath; 3080 src = fetchzip { 3081 + url = "https://github.com/nvim-neorocks/rocks.nvim/archive/v2.41.3.zip"; 3082 + sha256 = "1rpppi3vw205gq34n948r3mj7dma2mflbgkmc98n96vm9k2ldbkl"; 3083 }; 3084 3085 disabled = luaOlder "5.1"; ··· 3119 rustaceanvim = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder }: 3120 buildLuarocksPackage { 3121 pname = "rustaceanvim"; 3122 + version = "5.14.1-1"; 3123 knownRockspec = (fetchurl { 3124 + url = "mirror://luarocks/rustaceanvim-5.14.1-1.rockspec"; 3125 + sha256 = "1xr2vvcsd525h304w1hf6ij1qfwlklyczk1bh5jd6s2hnrkwyy5b"; 3126 }).outPath; 3127 src = fetchzip { 3128 + url = "https://github.com/mrcjkb/rustaceanvim/archive/v5.14.1.zip"; 3129 + sha256 = "1p0pqv0a415k0ndgdjy0k0p58sdvn4ngm9zymd5hn3ny9441b22v"; 3130 }; 3131 3132 disabled = luaOlder "5.1"; ··· 3338 src = fetchFromGitHub { 3339 owner = "nvim-telescope"; 3340 repo = "telescope.nvim"; 3341 + rev = "85922dde3767e01d42a08e750a773effbffaea3e"; 3342 + hash = "sha256-Qa/f+0asQvA8mhIUajC4BGZCI92OqA6ySVoQSC3ZY3s="; 3343 }; 3344 3345 disabled = lua.luaversion != "5.1";
+3 -10
pkgs/development/python-modules/aiojobs/default.nix
··· 26 hash = "sha256-FNc71YyAjtR+hd0UOqFAy6XW0PwHSlM76C3ecPM5vsU="; 27 }; 28 29 - patches = [ 30 - (fetchpatch { 31 - url = "https://github.com/aio-libs/aiojobs/commit/1b88049841397b01f88aee7d92174ac5a15217c1.patch"; 32 - hash = "sha256-b38Ipa29T6bEVsPe04ZO3WCcs6+0fOQDCJM+w8K1bVY="; 33 - }) 34 - ]; 35 - 36 nativeBuildInputs = [ setuptools ]; 37 38 propagatedBuildInputs = lib.optionals (pythonOlder "3.11") [ async-timeout ]; ··· 56 57 __darwinAllowLocalNetworking = true; 58 59 - meta = with lib; { 60 description = "Jobs scheduler for managing background task (asyncio)"; 61 homepage = "https://github.com/aio-libs/aiojobs"; 62 changelog = "https://github.com/aio-libs/aiojobs/blob/v${version}/CHANGES.rst"; 63 - license = licenses.asl20; 64 - maintainers = with maintainers; [ cmcdragonkai ]; 65 }; 66 }
··· 26 hash = "sha256-FNc71YyAjtR+hd0UOqFAy6XW0PwHSlM76C3ecPM5vsU="; 27 }; 28 29 nativeBuildInputs = [ setuptools ]; 30 31 propagatedBuildInputs = lib.optionals (pythonOlder "3.11") [ async-timeout ]; ··· 49 50 __darwinAllowLocalNetworking = true; 51 52 + meta = { 53 description = "Jobs scheduler for managing background task (asyncio)"; 54 homepage = "https://github.com/aio-libs/aiojobs"; 55 changelog = "https://github.com/aio-libs/aiojobs/blob/v${version}/CHANGES.rst"; 56 + license = lib.licenses.asl20; 57 + maintainers = with lib.maintainers; [ cmcdragonkai ]; 58 }; 59 }
+2 -2
pkgs/development/python-modules/django-cms/default.nix
··· 21 22 buildPythonPackage rec { 23 pname = "django-cms"; 24 - version = "4.1.3"; 25 pyproject = true; 26 27 disabled = pythonOlder "3.9"; ··· 30 owner = "django-cms"; 31 repo = "django-cms"; 32 rev = "refs/tags/${version}"; 33 - hash = "sha256-ucGxc6f2UYdmSLuyxVV2nIcl35qoeQMlk1paN6XeBFY="; 34 }; 35 36 patches = [
··· 21 22 buildPythonPackage rec { 23 pname = "django-cms"; 24 + version = "4.1.4"; 25 pyproject = true; 26 27 disabled = pythonOlder "3.9"; ··· 30 owner = "django-cms"; 31 repo = "django-cms"; 32 rev = "refs/tags/${version}"; 33 + hash = "sha256-2vA1teV6IkjtDo44uwEts1OGsBZ4dXRFGrasAHmgnRA="; 34 }; 35 36 patches = [
+6 -8
pkgs/development/python-modules/dnf-plugins-core/default.nix
··· 23 24 buildPythonPackage rec { 25 pname = "dnf-plugins-core"; 26 - version = "4.9.0"; 27 format = "other"; 28 29 outputs = [ ··· 35 owner = "rpm-software-management"; 36 repo = "dnf-plugins-core"; 37 rev = "refs/tags/${version}"; 38 - hash = "sha256-MQ7QZ5qn/0OU0slohwEP83w8NvSP2M+hpCDKvYqlezY="; 39 }; 40 41 - patches = [ ./fix-python-install-dir.patch ]; 42 - 43 postPatch = '' 44 substituteInPlace CMakeLists.txt \ 45 - --replace "@PYTHON_INSTALL_DIR@" "$out/${python.sitePackages}" \ 46 - --replace "SYSCONFDIR /etc" "SYSCONFDIR $out/etc" \ 47 - --replace "SYSTEMD_DIR /usr/lib/systemd/system" "SYSTEMD_DIR $out/lib/systemd/system" 48 substituteInPlace doc/CMakeLists.txt \ 49 - --replace 'SPHINX_BUILD_NAME "sphinx-build-3"' 'SPHINX_BUILD_NAME "${sphinx}/bin/sphinx-build"' 50 ''; 51 52 nativeBuildInputs = [ ··· 68 cmakeFlags = [ 69 "-DPYTHON_DESIRED=${pyMajor}" 70 "-DWITHOUT_LOCAL=0" 71 ]; 72 73 postBuild = ''
··· 23 24 buildPythonPackage rec { 25 pname = "dnf-plugins-core"; 26 + version = "4.10.0"; 27 format = "other"; 28 29 outputs = [ ··· 35 owner = "rpm-software-management"; 36 repo = "dnf-plugins-core"; 37 rev = "refs/tags/${version}"; 38 + hash = "sha256-7MPCLnclRT07m6CrGguDxSB+sIybp4tMcExU9+Sz9EM="; 39 }; 40 41 postPatch = '' 42 substituteInPlace CMakeLists.txt \ 43 + --replace-fail "SYSCONFDIR /etc" "SYSCONFDIR $out/etc" \ 44 + --replace-fail "SYSTEMD_DIR /usr/lib/systemd/system" "SYSTEMD_DIR $out/lib/systemd/system" 45 substituteInPlace doc/CMakeLists.txt \ 46 + --replace-fail 'SPHINX_BUILD_NAME "sphinx-build-3"' 'SPHINX_BUILD_NAME "${sphinx}/bin/sphinx-build"' 47 ''; 48 49 nativeBuildInputs = [ ··· 65 cmakeFlags = [ 66 "-DPYTHON_DESIRED=${pyMajor}" 67 "-DWITHOUT_LOCAL=0" 68 + "-DPYTHON_INSTALL_DIR=${placeholder "out"}/${python.sitePackages}" 69 ]; 70 71 postBuild = ''
-13
pkgs/development/python-modules/dnf-plugins-core/fix-python-install-dir.patch
··· 1 - diff --git a/CMakeLists.txt b/CMakeLists.txt 2 - index a1eea7b..00fbaf3 100644 3 - --- a/CMakeLists.txt 4 - +++ b/CMakeLists.txt 5 - @@ -18,7 +18,7 @@ ELSE () 6 - MESSAGE (FATAL_ERROR "Invalid PYTHON_DESIRED value: " ${PYTHON_DESIRED}) 7 - ENDIF() 8 - 9 - -EXECUTE_PROCESS(COMMAND ${PYTHON_EXECUTABLE} -c "from sys import stdout; from sysconfig import get_path; stdout.write(get_path('purelib'))" OUTPUT_VARIABLE PYTHON_INSTALL_DIR) 10 - +SET(PYTHON_INSTALL_DIR "@PYTHON_INSTALL_DIR@") 11 - MESSAGE(STATUS "Python install dir is ${PYTHON_INSTALL_DIR}") 12 - 13 - SET (SYSCONFDIR /etc)
···
+2 -2
pkgs/development/python-modules/dnf4/default.nix
··· 18 19 buildPythonPackage rec { 20 pname = "dnf4"; 21 - version = "4.21.1"; 22 format = "other"; 23 24 outputs = [ ··· 31 owner = "rpm-software-management"; 32 repo = "dnf"; 33 rev = version; 34 - hash = "sha256-VYQhOlLtEzWesrMZ/d6KW0OlUjz5MvoEmPy71qEUEL4="; 35 }; 36 37 patches = [ ./fix-python-install-dir.patch ];
··· 18 19 buildPythonPackage rec { 20 pname = "dnf4"; 21 + version = "4.22.0"; 22 format = "other"; 23 24 outputs = [ ··· 31 owner = "rpm-software-management"; 32 repo = "dnf"; 33 rev = version; 34 + hash = "sha256-I79cwK+xPmHS3z8/rKar5G5EbK6IYq0Ypq9KrShJ3sg="; 35 }; 36 37 patches = [ ./fix-python-install-dir.patch ];
+6 -9
pkgs/development/python-modules/optax/default.nix
··· 1 { 2 lib, 3 buildPythonPackage, 4 - pythonOlder, 5 fetchFromGitHub, 6 7 # build-system ··· 15 numpy, 16 etils, 17 18 - # checks 19 callPackage, 20 }: 21 22 buildPythonPackage rec { 23 pname = "optax"; 24 - version = "0.2.3"; 25 pyproject = true; 26 - 27 - disabled = pythonOlder "3.9"; 28 29 src = fetchFromGitHub { 30 owner = "deepmind"; 31 repo = "optax"; 32 rev = "refs/tags/v${version}"; 33 - hash = "sha256-D1qKei3IjDP9fC62hf6fNtvHlnn09O/dKuzTBdLwW64="; 34 }; 35 36 outputs = [ ··· 63 pytest = callPackage ./tests.nix { }; 64 }; 65 66 - meta = with lib; { 67 description = "Gradient processing and optimization library for JAX"; 68 homepage = "https://github.com/deepmind/optax"; 69 changelog = "https://github.com/deepmind/optax/releases/tag/v${version}"; 70 - license = licenses.asl20; 71 - maintainers = with maintainers; [ ndl ]; 72 }; 73 }
··· 1 { 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 6 # build-system ··· 14 numpy, 15 etils, 16 17 + # tests 18 callPackage, 19 }: 20 21 buildPythonPackage rec { 22 pname = "optax"; 23 + version = "0.2.4"; 24 pyproject = true; 25 26 src = fetchFromGitHub { 27 owner = "deepmind"; 28 repo = "optax"; 29 rev = "refs/tags/v${version}"; 30 + hash = "sha256-7UPWeo/Q9/tjewaM7HN8/e7U1U1QzAliuk95+9GOi0E="; 31 }; 32 33 outputs = [ ··· 60 pytest = callPackage ./tests.nix { }; 61 }; 62 63 + meta = { 64 description = "Gradient processing and optimization library for JAX"; 65 homepage = "https://github.com/deepmind/optax"; 66 changelog = "https://github.com/deepmind/optax/releases/tag/v${version}"; 67 + license = lib.licenses.asl20; 68 + maintainers = with lib.maintainers; [ ndl ]; 69 }; 70 }
+2 -2
pkgs/development/python-modules/pynvim/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "pynvim"; 15 - version = "0.5.1"; 16 pyproject = true; 17 18 src = fetchFromGitHub { 19 owner = "neovim"; 20 repo = "pynvim"; 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-YVAWu+i2pElq8OhibSqh9ogk+xWDRCZT4niDF/oMnzY="; 23 }; 24 25 build-system = [ setuptools ];
··· 12 13 buildPythonPackage rec { 14 pname = "pynvim"; 15 + version = "0.5.2"; 16 pyproject = true; 17 18 src = fetchFromGitHub { 19 owner = "neovim"; 20 repo = "pynvim"; 21 rev = "refs/tags/${version}"; 22 + hash = "sha256-/frugwYPS4rS4L6BRsmNb5pJI8xfLJvbr+PyOLx25a4="; 23 }; 24 25 build-system = [ setuptools ];
+11 -7
pkgs/development/python-modules/pyramid-multiauth/default.nix
··· 3 buildPythonPackage, 4 fetchFromGitHub, 5 pyramid, 6 - unittestCheckHook, 7 setuptools, 8 }: 9 10 buildPythonPackage rec { ··· 19 hash = "sha256-Bz53iCGsl6WZASIvBQ1pFfcGLra82vA2OLWjhLVdkrw="; 20 }; 21 22 - nativeBuildInputs = [ setuptools ]; 23 24 - propagatedBuildInputs = [ pyramid ]; 25 26 - nativeCheckInputs = [ unittestCheckHook ]; 27 28 - meta = with lib; { 29 changelog = "https://github.com/mozilla-services/pyramid_multiauth/releases/tag/${version}"; 30 description = "Authentication policy for Pyramid that proxies to a stack of other authentication policies"; 31 homepage = "https://github.com/mozilla-services/pyramid_multiauth"; 32 - license = licenses.mpl20; 33 - maintainers = [ ]; 34 }; 35 }
··· 3 buildPythonPackage, 4 fetchFromGitHub, 5 pyramid, 6 + pytestCheckHook, 7 setuptools, 8 + setuptools-scm, 9 }: 10 11 buildPythonPackage rec { ··· 20 hash = "sha256-Bz53iCGsl6WZASIvBQ1pFfcGLra82vA2OLWjhLVdkrw="; 21 }; 22 23 + build-system = [ 24 + setuptools 25 + setuptools-scm 26 + ]; 27 28 + dependencies = [ pyramid ]; 29 30 + nativeCheckInputs = [ pytestCheckHook ]; 31 32 + meta = { 33 changelog = "https://github.com/mozilla-services/pyramid_multiauth/releases/tag/${version}"; 34 description = "Authentication policy for Pyramid that proxies to a stack of other authentication policies"; 35 homepage = "https://github.com/mozilla-services/pyramid_multiauth"; 36 + license = lib.licenses.mpl20; 37 + maintainers = with lib.maintainers; [ bot-wxt1221 ]; 38 }; 39 }
+2 -2
pkgs/development/python-modules/tencentcloud-sdk-python/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "tencentcloud-sdk-python"; 13 - version = "3.0.1264"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.9"; ··· 19 owner = "TencentCloud"; 20 repo = "tencentcloud-sdk-python"; 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-o7HLfcwPE4Fl+0+A5lGb1K1sBJ9Cm01cFrkZL6w0QJE="; 23 }; 24 25 build-system = [ setuptools ];
··· 10 11 buildPythonPackage rec { 12 pname = "tencentcloud-sdk-python"; 13 + version = "3.0.1265"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.9"; ··· 19 owner = "TencentCloud"; 20 repo = "tencentcloud-sdk-python"; 21 rev = "refs/tags/${version}"; 22 + hash = "sha256-7W74JPGht8lyyfjTXx0VQoRJr18R98WFGoyGCJlSvTU="; 23 }; 24 25 build-system = [ setuptools ];
+19 -19
pkgs/os-specific/linux/nixos-rebuild/nixos-rebuild.sh
··· 427 flake="$(dirname "$(readlink -f /etc/nixos/flake.nix)")" 428 fi 429 430 # For convenience, use the hostname as the default configuration to 431 # build from the flake. 432 if [[ -n $flake ]]; then ··· 449 log "error: ‘--specialisation’ can only be used with ‘switch’ and ‘test’" 450 exit 1 451 fi 452 - 453 - tmpDir=$(mktemp -t -d nixos-rebuild.XXXXXX) 454 - 455 - if [[ ${#tmpDir} -ge 60 ]]; then 456 - # Very long tmp dirs lead to "too long for Unix domain socket" 457 - # SSH ControlPath errors. Especially macOS sets long TMPDIR paths. 458 - rmdir "$tmpDir" 459 - tmpDir=$(TMPDIR= mktemp -t -d nixos-rebuild.XXXXXX) 460 - fi 461 - 462 - cleanup() { 463 - for ctrl in "$tmpDir"/ssh-*; do 464 - ssh -o ControlPath="$ctrl" -O exit dummyhost 2>/dev/null || true 465 - done 466 - rm -rf "$tmpDir" 467 - } 468 - trap cleanup EXIT 469 470 471 # Re-execute nixos-rebuild from the Nixpkgs tree. ··· 509 fi 510 exit 1 511 fi 512 - 513 - SSHOPTS="$NIX_SSHOPTS -o ControlMaster=auto -o ControlPath=$tmpDir/ssh-%n -o ControlPersist=60" 514 515 # First build Nix, since NixOS may require a newer version than the 516 # current one.
··· 427 flake="$(dirname "$(readlink -f /etc/nixos/flake.nix)")" 428 fi 429 430 + tmpDir=$(mktemp -t -d nixos-rebuild.XXXXXX) 431 + 432 + if [[ ${#tmpDir} -ge 60 ]]; then 433 + # Very long tmp dirs lead to "too long for Unix domain socket" 434 + # SSH ControlPath errors. Especially macOS sets long TMPDIR paths. 435 + rmdir "$tmpDir" 436 + tmpDir=$(TMPDIR= mktemp -t -d nixos-rebuild.XXXXXX) 437 + fi 438 + 439 + cleanup() { 440 + for ctrl in "$tmpDir"/ssh-*; do 441 + ssh -o ControlPath="$ctrl" -O exit dummyhost 2>/dev/null || true 442 + done 443 + rm -rf "$tmpDir" 444 + } 445 + trap cleanup EXIT 446 + 447 + SSHOPTS="$NIX_SSHOPTS -o ControlMaster=auto -o ControlPath=$tmpDir/ssh-%n -o ControlPersist=60" 448 + 449 # For convenience, use the hostname as the default configuration to 450 # build from the flake. 451 if [[ -n $flake ]]; then ··· 468 log "error: ‘--specialisation’ can only be used with ‘switch’ and ‘test’" 469 exit 1 470 fi 471 472 473 # Re-execute nixos-rebuild from the Nixpkgs tree. ··· 511 fi 512 exit 1 513 fi 514 515 # First build Nix, since NixOS may require a newer version than the 516 # current one.
+3 -3
pkgs/servers/matrix-synapse/default.nix
··· 17 in 18 python3.pkgs.buildPythonApplication rec { 19 pname = "matrix-synapse"; 20 - version = "1.118.0"; 21 format = "pyproject"; 22 23 src = fetchFromGitHub { 24 owner = "element-hq"; 25 repo = "synapse"; 26 rev = "v${version}"; 27 - hash = "sha256-dMa1L1MYzt/XfCD8hGt+WupAwl5l4zwVcj5mQ8KtTp8="; 28 }; 29 30 cargoDeps = rustPlatform.fetchCargoTarball { 31 inherit src; 32 name = "${pname}-${version}"; 33 - hash = "sha256-FJaj5T2wMIn/A0JNUGpXyNtPvXIAF8Ivkej4vS1S3dA="; 34 }; 35 36 postPatch = ''
··· 17 in 18 python3.pkgs.buildPythonApplication rec { 19 pname = "matrix-synapse"; 20 + version = "1.119.0"; 21 format = "pyproject"; 22 23 src = fetchFromGitHub { 24 owner = "element-hq"; 25 repo = "synapse"; 26 rev = "v${version}"; 27 + hash = "sha256-+3FrxSfQteIga5uiRNzAlV+xNESB9PUX/UkkL6UMETQ="; 28 }; 29 30 cargoDeps = rustPlatform.fetchCargoTarball { 31 inherit src; 32 name = "${pname}-${version}"; 33 + hash = "sha256-c/19RaBmtfKkFFQyDBwH+yqHp4YNQSqCu23WYbpOc98="; 34 }; 35 36 postPatch = ''
+2 -2
pkgs/tools/package-management/libdnf/default.nix
··· 25 26 stdenv.mkDerivation rec { 27 pname = "libdnf"; 28 - version = "0.73.3"; 29 30 outputs = [ 31 "out" ··· 37 owner = "rpm-software-management"; 38 repo = pname; 39 rev = "refs/tags/${version}"; 40 - hash = "sha256-XzPpjnmL2wwLZnLAJLuOQGWXAoCJnij14P6qSXglMhY="; 41 }; 42 43 nativeBuildInputs = [
··· 25 26 stdenv.mkDerivation rec { 27 pname = "libdnf"; 28 + version = "0.73.4"; 29 30 outputs = [ 31 "out" ··· 37 owner = "rpm-software-management"; 38 repo = pname; 39 rev = "refs/tags/${version}"; 40 + hash = "sha256-O8pN2WFHWxZpr2JEPsQOmkc+7qnMVnptmGJCVxMmSLo="; 41 }; 42 43 nativeBuildInputs = [
+7 -1
pkgs/tools/security/nitrokey-app2/default.nix
··· 5 , wrapQtAppsHook 6 , qtbase 7 , qtwayland 8 }: 9 10 python3.pkgs.buildPythonApplication rec { ··· 27 ]; 28 29 buildInputs = [ qtbase ] ++ lib.optionals stdenv.hostPlatform.isLinux [ 30 - qtwayland 31 ]; 32 33 propagatedBuildInputs = with python3.pkgs; [ ··· 42 pythonImportsCheck = [ 43 "nitrokeyapp" 44 ]; 45 46 meta = with lib; { 47 description = "This application allows to manage Nitrokey 3 devices";
··· 5 , wrapQtAppsHook 6 , qtbase 7 , qtwayland 8 + , qtsvg 9 }: 10 11 python3.pkgs.buildPythonApplication rec { ··· 28 ]; 29 30 buildInputs = [ qtbase ] ++ lib.optionals stdenv.hostPlatform.isLinux [ 31 + qtwayland qtsvg 32 ]; 33 34 propagatedBuildInputs = with python3.pkgs; [ ··· 43 pythonImportsCheck = [ 44 "nitrokeyapp" 45 ]; 46 + 47 + postInstall = '' 48 + install -Dm755 meta/com.nitrokey.nitrokey-app2.desktop $out/share/applications/com.nitrokey.nitrokey-app2.desktop 49 + install -Dm755 meta/nk-app2.png $out/share/icons/hicolor/128x128/apps/com.nitrokey.nitrokey-app2.png 50 + ''; 51 52 meta = with lib; { 53 description = "This application allows to manage Nitrokey 3 devices";
+4 -2
pkgs/top-level/all-packages.nix
··· 16115 wlroots = wlroots_0_18; 16116 }; 16117 16118 - tree-from-tags = callPackage ../applications/audio/tree-from-tags { }; 16119 - 16120 treesheets = callPackage ../applications/office/treesheets { 16121 wxGTK = wxGTK32; 16122 inherit (darwin.apple_sdk.frameworks) Cocoa; ··· 19249 19250 cantata = callPackage ../by-name/ca/cantata/package.nix { 19251 ffmpeg = ffmpeg_6; 19252 }; 19253 }
··· 16115 wlroots = wlroots_0_18; 16116 }; 16117 16118 treesheets = callPackage ../applications/office/treesheets { 16119 wxGTK = wxGTK32; 16120 inherit (darwin.apple_sdk.frameworks) Cocoa; ··· 19247 19248 cantata = callPackage ../by-name/ca/cantata/package.nix { 19249 ffmpeg = ffmpeg_6; 19250 + }; 19251 + 19252 + tree-from-tags = callPackage ../by-name/tr/tree-from-tags/package.nix { 19253 + ruby = ruby_3_1; 19254 }; 19255 }