lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
15c142e5 fa46b526

+653 -510
-3
doc/languages-frameworks/vim.section.md
··· 277 copy paste output2 here 278 ]; 279 280 - # Pathogen would be 281 - # vimrcConfig.pathogen.knownPlugins = plugins; # plugins 282 - # vimrcConfig.pathogen.pluginNames = ["tlib"]; 283 }; 284 ``` 285
··· 277 copy paste output2 here 278 ]; 279 280 }; 281 ``` 282
+5 -1
maintainers/scripts/luarocks-config.lua
··· 1 rocks_servers = { 2 - "https://luarocks.org" 3 } 4 version_check_on_fail = false
··· 1 + 2 + -- default of luarocks listed at src/luarocks/core/cfg.lua 3 + -- keep this list synced with pkgs/build-support/fetchurl/mirrors.nix 4 rocks_servers = { 5 + "https://luarocks.org", 6 + "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/" 7 } 8 version_check_on_fail = false
+6 -5
maintainers/scripts/update-luarocks-packages
··· 31 PKG_LIST="maintainers/scripts/luarocks-packages.csv" 32 TMP_FILE="$(mktemp)" 33 GENERATED_NIXFILE="pkgs/development/lua-modules/generated-packages.nix" 34 - LUAROCKS_CONFIG="$NIXPKGS_PATH/maintainers/scripts/luarocks-config.lua" 35 36 HEADER = """/* {GENERATED_NIXFILE} is an auto-generated file -- DO NOT EDIT! 37 Regenerate it with: ··· 158 Our cache key associates "p.name-p.version" to its rockspec 159 ''' 160 log.debug("Generating nix expression for %s", plug.name) 161 - cmd = [ "luarocks", "nix"] 162 163 164 if plug.maintainers: 165 cmd.append(f"--maintainers={plug.maintainers}") 166 167 - # updates plugin directly from its repository 168 - print("server: [%s]" % plug.server) 169 # if plug.server == "src": 170 if plug.src != "": 171 if plug.src is None: ··· 194 cmd.append(f"--lua-dir={lua_drv_path}/bin") 195 196 log.debug("running %s", ' '.join(cmd)) 197 - output = subprocess.check_output(cmd, text=True) 198 output = "callPackage(" + output.strip() + ") {};\n\n" 199 return (plug, output) 200
··· 31 PKG_LIST="maintainers/scripts/luarocks-packages.csv" 32 TMP_FILE="$(mktemp)" 33 GENERATED_NIXFILE="pkgs/development/lua-modules/generated-packages.nix" 34 + LUAROCKS_CONFIG="maintainers/scripts/luarocks-config.lua" 35 36 HEADER = """/* {GENERATED_NIXFILE} is an auto-generated file -- DO NOT EDIT! 37 Regenerate it with: ··· 158 Our cache key associates "p.name-p.version" to its rockspec 159 ''' 160 log.debug("Generating nix expression for %s", plug.name) 161 + custom_env = os.environ.copy() 162 + custom_env['LUAROCKS_CONFIG'] = LUAROCKS_CONFIG 163 164 + cmd = [ "luarocks", "nix"] 165 166 if plug.maintainers: 167 cmd.append(f"--maintainers={plug.maintainers}") 168 169 # if plug.server == "src": 170 if plug.src != "": 171 if plug.src is None: ··· 194 cmd.append(f"--lua-dir={lua_drv_path}/bin") 195 196 log.debug("running %s", ' '.join(cmd)) 197 + 198 + output = subprocess.check_output(cmd, env=custom_env, text=True) 199 output = "callPackage(" + output.strip() + ") {};\n\n" 200 return (plug, output) 201
+8
nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
··· 121 this version for the entire lifecycle of the 22.11 release. 122 </para> 123 </listitem> 124 </itemizedlist> 125 </section> 126 <section xml:id="sec-release-22.11-notable-changes">
··· 121 this version for the entire lifecycle of the 22.11 release. 122 </para> 123 </listitem> 124 + <listitem> 125 + <para> 126 + (Neo)Vim can not be configured with 127 + <literal>configure.pathogen</literal> anymore to reduce 128 + maintainance burden. Use <literal>configure.packages</literal> 129 + instead. 130 + </para> 131 + </listitem> 132 </itemizedlist> 133 </section> 134 <section xml:id="sec-release-22.11-notable-changes">
+3
nixos/doc/manual/release-notes/rl-2211.section.md
··· 50 - PHP 7.4 is no longer supported due to upstream not supporting this 51 version for the entire lifecycle of the 22.11 release. 52 53 <!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. --> 54 55 ## Other Notable Changes {#sec-release-22.11-notable-changes}
··· 50 - PHP 7.4 is no longer supported due to upstream not supporting this 51 version for the entire lifecycle of the 22.11 release. 52 53 + - (Neo)Vim can not be configured with `configure.pathogen` anymore to reduce maintainance burden. 54 + Use `configure.packages` instead. 55 + 56 <!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. --> 57 58 ## Other Notable Changes {#sec-release-22.11-notable-changes}
+1
nixos/modules/services/databases/openldap.nix
··· 312 "-h" (lib.concatStringsSep " " cfg.urlList) 313 ]); 314 Type = "notify"; 315 PIDFile = cfg.settings.attrs.olcPidFile; 316 }; 317 };
··· 312 "-h" (lib.concatStringsSep " " cfg.urlList) 313 ]); 314 Type = "notify"; 315 + NotifyAccess = "all"; 316 PIDFile = cfg.settings.attrs.olcPidFile; 317 }; 318 };
+2 -2
pkgs/applications/editors/neovim/tests.nix
··· 150 # and do `:call deoplete#enable()`. It will print an error if the remote 151 # plugin is not registered. 152 test_nvim_with_remote_plugin = neovim.override { 153 - extraName = "-pathogen-remote"; 154 - configure.pathogen.pluginNames = with vimPlugins; [ deoplete-nvim ]; 155 }; 156 157 # only neovim makes use of `requiredPlugins`, test this here
··· 150 # and do `:call deoplete#enable()`. It will print an error if the remote 151 # plugin is not registered. 152 test_nvim_with_remote_plugin = neovim.override { 153 + extraName = "-remote"; 154 + configure.packages.foo.start = with vimPlugins; [ deoplete-nvim ]; 155 }; 156 157 # only neovim makes use of `requiredPlugins`, test this here
+349 -253
pkgs/applications/editors/vim/plugins/generated.nix
··· 137 138 LanguageClient-neovim = buildVimPluginFrom2Nix { 139 pname = "LanguageClient-neovim"; 140 - version = "2020-12-10"; 141 src = fetchFromGitHub { 142 owner = "autozimu"; 143 repo = "LanguageClient-neovim"; 144 - rev = "a42594c9c320b1283e9b9058b85a8097d8325fed"; 145 - sha256 = "0lj9na3g2cl0vj56jz8rhz9lm2d3xps5glk8ds491i2ixy4vdm37"; 146 }; 147 meta.homepage = "https://github.com/autozimu/LanguageClient-neovim/"; 148 }; ··· 281 282 SchemaStore-nvim = buildVimPluginFrom2Nix { 283 pname = "SchemaStore.nvim"; 284 - version = "2022-05-30"; 285 src = fetchFromGitHub { 286 owner = "b0o"; 287 repo = "SchemaStore.nvim"; 288 - rev = "af73c24dfbc245a99a16d30444003fa86267d254"; 289 - sha256 = "04d8jwwrfdlcdvn2jvmw6n9ih9zz5a4aympyzmsnnnc8kgzzjk5j"; 290 }; 291 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 292 }; ··· 341 342 SpaceVim = buildVimPluginFrom2Nix { 343 pname = "SpaceVim"; 344 - version = "2022-06-04"; 345 src = fetchFromGitHub { 346 owner = "SpaceVim"; 347 repo = "SpaceVim"; 348 - rev = "4397ec5814e311f9079e5ac3d54190fe0fac4a47"; 349 - sha256 = "0vf0qr5xj7p78z6br1wdj3la88xa5xb4dk8sk2nsrvayzl0xqvgz"; 350 }; 351 meta.homepage = "https://github.com/SpaceVim/SpaceVim/"; 352 }; ··· 498 499 aerial-nvim = buildVimPluginFrom2Nix { 500 pname = "aerial.nvim"; 501 - version = "2022-05-31"; 502 src = fetchFromGitHub { 503 owner = "stevearc"; 504 repo = "aerial.nvim"; 505 - rev = "ece90c4820e7cea7be0aade9d19ef11f53bbc028"; 506 - sha256 = "1wb2hs4navxmr6d3ify653w7wwpg32zrvpqb2kc413rsaxhbw5q0"; 507 }; 508 meta.homepage = "https://github.com/stevearc/aerial.nvim/"; 509 }; 510 511 agda-vim = buildVimPluginFrom2Nix { ··· 534 535 ale = buildVimPluginFrom2Nix { 536 pname = "ale"; 537 - version = "2022-06-04"; 538 src = fetchFromGitHub { 539 owner = "dense-analysis"; 540 repo = "ale"; 541 - rev = "9bdc923624a489aa4c0a44cb1c77b984ad90e8ba"; 542 sha256 = "1s6ba5h0cv8y80x2nv9m98q724xv242nqzgxxh7bniakzp3jm4j4"; 543 }; 544 meta.homepage = "https://github.com/dense-analysis/ale/"; ··· 702 703 aurora = buildVimPluginFrom2Nix { 704 pname = "aurora"; 705 - version = "2022-05-05"; 706 src = fetchFromGitHub { 707 owner = "ray-x"; 708 repo = "aurora"; 709 - rev = "315831585d8de6c7787eb05c5bea56f430c851e1"; 710 - sha256 = "19w3qmk6q1dj4jnwmvmd1af2bjwrfjmfnsrmjim9qmv6w0c2pbav"; 711 }; 712 meta.homepage = "https://github.com/ray-x/aurora/"; 713 }; ··· 786 787 barbar-nvim = buildVimPluginFrom2Nix { 788 pname = "barbar.nvim"; 789 - version = "2022-05-31"; 790 src = fetchFromGitHub { 791 owner = "romgrk"; 792 repo = "barbar.nvim"; 793 - rev = "0bd9de963bcc5c35e9cb9f8bcf2035042927503f"; 794 - sha256 = "059brc6lc87n9ghfj5b9l1pygq5if9yp56prj46ig1w8ad5lgsd4"; 795 }; 796 meta.homepage = "https://github.com/romgrk/barbar.nvim/"; 797 }; ··· 918 919 bufferline-nvim = buildVimPluginFrom2Nix { 920 pname = "bufferline.nvim"; 921 - version = "2022-06-01"; 922 src = fetchFromGitHub { 923 owner = "akinsho"; 924 repo = "bufferline.nvim"; 925 - rev = "e9697f74612f90cc1fac7b5a973e1aa1323f9aff"; 926 - sha256 = "1f5qarhf9d3i0b40l9lyigjfpgx9ji3lalw0zbgs0iwga28q2sih"; 927 }; 928 meta.homepage = "https://github.com/akinsho/bufferline.nvim/"; 929 }; ··· 1014 1015 circles-nvim = buildVimPluginFrom2Nix { 1016 pname = "circles.nvim"; 1017 - version = "2022-06-03"; 1018 src = fetchFromGitHub { 1019 owner = "projekt0n"; 1020 repo = "circles.nvim"; 1021 - rev = "1d1bae3dd7669efcb8d394c6c78d7c32c5c16f71"; 1022 - sha256 = "1hg89i080xy7wqwsqfhybkfp09689dynjxc86wp2g09rf4lxkgjs"; 1023 }; 1024 meta.homepage = "https://github.com/projekt0n/circles.nvim/"; 1025 }; ··· 1254 1255 cmp-tabnine = buildVimPluginFrom2Nix { 1256 pname = "cmp-tabnine"; 1257 - version = "2022-05-17"; 1258 src = fetchFromGitHub { 1259 owner = "tzachar"; 1260 repo = "cmp-tabnine"; 1261 - rev = "c328e3340eaf18c77158ed5b66b44f7e75c87ede"; 1262 - sha256 = "1ns3vvjywxjnb32b4p7525idb5w71l9c898snrg6h6fxim170sjg"; 1263 }; 1264 meta.homepage = "https://github.com/tzachar/cmp-tabnine/"; 1265 }; ··· 1278 1279 cmp-treesitter = buildVimPluginFrom2Nix { 1280 pname = "cmp-treesitter"; 1281 - version = "2022-04-25"; 1282 src = fetchFromGitHub { 1283 owner = "ray-x"; 1284 repo = "cmp-treesitter"; 1285 - rev = "c5187c31abd081ecef8b41e5eb476b7340442310"; 1286 - sha256 = "1jhzw7myrwqgybvkm53mk8zgfz56pzr7cnsrzcr4fl6wnm59a3b5"; 1287 }; 1288 meta.homepage = "https://github.com/ray-x/cmp-treesitter/"; 1289 }; ··· 1362 1363 coc-lua = buildVimPluginFrom2Nix { 1364 pname = "coc-lua"; 1365 - version = "2022-05-26"; 1366 src = fetchFromGitHub { 1367 owner = "josa42"; 1368 repo = "coc-lua"; 1369 - rev = "da6a6e99d7c54d3ff656a45948b67581c3a5806e"; 1370 - sha256 = "0ps58pcgzb3vzhl4bw4kr2fn1ihp0l7gzfn8rn9ybxih8ckdzgmg"; 1371 }; 1372 meta.homepage = "https://github.com/josa42/coc-lua/"; 1373 }; ··· 1422 1423 coc-nvim = buildVimPluginFrom2Nix { 1424 pname = "coc.nvim"; 1425 - version = "2022-06-03"; 1426 src = fetchFromGitHub { 1427 owner = "neoclide"; 1428 repo = "coc.nvim"; 1429 - rev = "102fe82be44e878d6eefdab2cb2fc4aaa5a346f3"; 1430 - sha256 = "0j5xhs1p14z0x622mxf5dsgj0byic26rc02xs1g3hm1hmy1fj530"; 1431 }; 1432 meta.homepage = "https://github.com/neoclide/coc.nvim/"; 1433 }; ··· 1507 1508 comment-nvim = buildVimPluginFrom2Nix { 1509 pname = "comment.nvim"; 1510 - version = "2022-05-30"; 1511 src = fetchFromGitHub { 1512 owner = "numtostr"; 1513 repo = "comment.nvim"; 1514 - rev = "bdf9ca64dcf4cc3c411aaeee4cfba59398d02aa8"; 1515 - sha256 = "138lp4qk2hj0w58mhl8b40rxn5ybihmxcaaj0sqm0xcgg2fiim05"; 1516 }; 1517 meta.homepage = "https://github.com/numtostr/comment.nvim/"; 1518 }; ··· 1675 1676 copilot-vim = buildVimPluginFrom2Nix { 1677 pname = "copilot.vim"; 1678 - version = "2022-06-03"; 1679 src = fetchFromGitHub { 1680 owner = "github"; 1681 repo = "copilot.vim"; 1682 - rev = "042543ffc2e77a819da0415da1af6b1842a0f9c2"; 1683 - sha256 = "1anyphnyrigidsmqlczf92y46v8zi9gz3zlnzzyw1dkpp0dzm15h"; 1684 }; 1685 meta.homepage = "https://github.com/github/copilot.vim/"; 1686 }; 1687 1688 coq-artifacts = buildVimPluginFrom2Nix { 1689 pname = "coq.artifacts"; 1690 - version = "2022-06-04"; 1691 src = fetchFromGitHub { 1692 owner = "ms-jpq"; 1693 repo = "coq.artifacts"; 1694 - rev = "d89dd1f003cdaca6a08f87894d99de77ffb077f2"; 1695 - sha256 = "0n2naw94asbw4dqnzpkjmxwmgyfyw09fk7a42111n44mb48xi9qc"; 1696 }; 1697 meta.homepage = "https://github.com/ms-jpq/coq.artifacts/"; 1698 }; 1699 1700 coq-thirdparty = buildVimPluginFrom2Nix { 1701 pname = "coq.thirdparty"; 1702 - version = "2022-06-04"; 1703 src = fetchFromGitHub { 1704 owner = "ms-jpq"; 1705 repo = "coq.thirdparty"; 1706 - rev = "da33c118f5a69776cfc85e7db102a0bf88984dc2"; 1707 - sha256 = "0kkadnbk1176d4ykz6hcsi7nkc1vmk0x1h1q2d9zb61l4h5agxmh"; 1708 }; 1709 meta.homepage = "https://github.com/ms-jpq/coq.thirdparty/"; 1710 }; ··· 1723 1724 coq_nvim = buildVimPluginFrom2Nix { 1725 pname = "coq_nvim"; 1726 - version = "2022-06-04"; 1727 src = fetchFromGitHub { 1728 owner = "ms-jpq"; 1729 repo = "coq_nvim"; 1730 - rev = "0a7e549cb0a3e4c7eeb54e3719457600e702de96"; 1731 - sha256 = "1n96sv9kk5igcgdx291c8lr5y6b5wavsycq0mdg60h7078d21cd3"; 1732 }; 1733 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 1734 }; ··· 1871 src = fetchFromGitHub { 1872 owner = "glepnir"; 1873 repo = "dashboard-nvim"; 1874 - rev = "b661c8118b902dbf9ad86018ce48781ee8466612"; 1875 sha256 = "0106jhw9fg2zmk0fqnr126f9gnh5bw7sjrxldn06ajj15ll15p9p"; 1876 }; 1877 meta.homepage = "https://github.com/glepnir/dashboard-nvim/"; ··· 2241 2242 diffview-nvim = buildNeovimPluginFrom2Nix { 2243 pname = "diffview.nvim"; 2244 - version = "2022-05-31"; 2245 src = fetchFromGitHub { 2246 owner = "sindrets"; 2247 repo = "diffview.nvim"; 2248 - rev = "3ffe4a70c4b434ee933cb869b1706632c4407495"; 2249 - sha256 = "04xma63803bprwjynj6nsybiz56h5wzrj8jbfj05hf24q9bbklfd"; 2250 }; 2251 meta.homepage = "https://github.com/sindrets/diffview.nvim/"; 2252 }; ··· 2265 2266 doki-theme-vim = buildVimPluginFrom2Nix { 2267 pname = "doki-theme-vim"; 2268 - version = "2022-04-05"; 2269 src = fetchFromGitHub { 2270 owner = "doki-theme"; 2271 repo = "doki-theme-vim"; 2272 - rev = "5aa443597811208f5d3afbdbe9d4ead79339de58"; 2273 - sha256 = "0jwm03fhwi9q57fgis31kgdf7l8jdb8glbh1is6rl9g0vb0a40ba"; 2274 }; 2275 meta.homepage = "https://github.com/doki-theme/doki-theme-vim/"; 2276 }; 2277 2278 dressing-nvim = buildVimPluginFrom2Nix { 2279 pname = "dressing.nvim"; 2280 - version = "2022-06-01"; 2281 src = fetchFromGitHub { 2282 owner = "stevearc"; 2283 repo = "dressing.nvim"; 2284 - rev = "1706d00209ee250be56029f8c5b439daa19a1411"; 2285 - sha256 = "0wkixp0gc001hgryqxkm5hdw1pcbjxndz2x4za1b7djq340n9md4"; 2286 }; 2287 meta.homepage = "https://github.com/stevearc/dressing.nvim/"; 2288 }; ··· 2326 2327 editorconfig-nvim = buildVimPluginFrom2Nix { 2328 pname = "editorconfig.nvim"; 2329 - version = "2022-02-17"; 2330 src = fetchFromGitHub { 2331 owner = "gpanders"; 2332 repo = "editorconfig.nvim"; 2333 - rev = "495d3e2f56ee392de0d55902c82849f94b6fc86b"; 2334 - sha256 = "1m80hjm1m04dsivwqhxk5753gd8yzww62130wvgdsac3z394zzrn"; 2335 }; 2336 meta.homepage = "https://github.com/gpanders/editorconfig.nvim/"; 2337 }; ··· 2471 2472 fern-vim = buildVimPluginFrom2Nix { 2473 pname = "fern.vim"; 2474 - version = "2022-05-16"; 2475 src = fetchFromGitHub { 2476 owner = "lambdalisue"; 2477 repo = "fern.vim"; 2478 - rev = "20fbe737656769d1afffdbe8e070a8240008dbe4"; 2479 - sha256 = "08cvhnwnhi6jbij6ifids1n0qnmv59mqmf68jnag7r1dh5q760lg"; 2480 }; 2481 meta.homepage = "https://github.com/lambdalisue/fern.vim/"; 2482 }; ··· 2568 2569 flutter-tools-nvim = buildVimPluginFrom2Nix { 2570 pname = "flutter-tools.nvim"; 2571 - version = "2022-05-19"; 2572 src = fetchFromGitHub { 2573 owner = "akinsho"; 2574 repo = "flutter-tools.nvim"; 2575 - rev = "9301eeb3f1b4ea15845ee72f778b6af7bad60321"; 2576 - sha256 = "0c1f7cljpa6mndk1aqs1w64jlhjjybfbyqs0s4g1jdcz5a7b4fqi"; 2577 }; 2578 meta.homepage = "https://github.com/akinsho/flutter-tools.nvim/"; 2579 }; ··· 2604 2605 friendly-snippets = buildVimPluginFrom2Nix { 2606 pname = "friendly-snippets"; 2607 - version = "2022-05-28"; 2608 src = fetchFromGitHub { 2609 owner = "rafamadriz"; 2610 repo = "friendly-snippets"; 2611 - rev = "974d79269a5a7f63e973db6a51b081a45750d026"; 2612 - sha256 = "1yrg34k0y89nnagl1b5g50paydqs3g81f8l09v5k7gcmwy2mh71i"; 2613 }; 2614 meta.homepage = "https://github.com/rafamadriz/friendly-snippets/"; 2615 }; ··· 2674 meta.homepage = "https://github.com/stsewd/fzf-checkout.vim/"; 2675 }; 2676 2677 fzf-lsp-nvim = buildVimPluginFrom2Nix { 2678 pname = "fzf-lsp.nvim"; 2679 version = "2022-05-16"; ··· 2688 2689 fzf-lua = buildVimPluginFrom2Nix { 2690 pname = "fzf-lua"; 2691 - version = "2022-05-29"; 2692 src = fetchFromGitHub { 2693 owner = "ibhagwan"; 2694 repo = "fzf-lua"; 2695 - rev = "eacdda76c63ce40a8c29d48cb1a439ed51f5fda5"; 2696 - sha256 = "0w82bjfi0gzx02k4nk66k67v4hf280l7m6sm5m3xmrl9bwnzhv5z"; 2697 }; 2698 meta.homepage = "https://github.com/ibhagwan/fzf-lua/"; 2699 }; ··· 2880 2881 glow-nvim = buildVimPluginFrom2Nix { 2882 pname = "glow.nvim"; 2883 - version = "2022-05-11"; 2884 src = fetchFromGitHub { 2885 owner = "ellisonleao"; 2886 repo = "glow.nvim"; 2887 - rev = "da265c328f5e4f102dbdbb1a0fd8627afdaf0320"; 2888 - sha256 = "1pmj8rjhf80jrgxp8iim9i36qqc6jwx8c73z6nqs6nkmnccychih"; 2889 }; 2890 meta.homepage = "https://github.com/ellisonleao/glow.nvim/"; 2891 }; ··· 3000 3001 gruvbox-nvim = buildVimPluginFrom2Nix { 3002 pname = "gruvbox.nvim"; 3003 - version = "2022-05-12"; 3004 src = fetchFromGitHub { 3005 owner = "ellisonleao"; 3006 repo = "gruvbox.nvim"; 3007 - rev = "72930977a442a2de2592ed39168c018bef90e086"; 3008 - sha256 = "1k6rbn4ksmgi36f3zqlz52c99x3ilpjmv6q3y93j5kp2lxp1yz6r"; 3009 }; 3010 meta.homepage = "https://github.com/ellisonleao/gruvbox.nvim/"; 3011 }; ··· 3120 3121 hop-nvim = buildVimPluginFrom2Nix { 3122 pname = "hop.nvim"; 3123 - version = "2022-04-25"; 3124 src = fetchFromGitHub { 3125 owner = "phaazon"; 3126 repo = "hop.nvim"; 3127 - rev = "b93ed4cea9c7df625d04e41cb15370b5c43cb578"; 3128 - sha256 = "12mc8fa3k5x9l84qw930bbjqi5hgc4y61s5p3kqx9nma2db2686v"; 3129 }; 3130 meta.homepage = "https://github.com/phaazon/hop.nvim/"; 3131 }; ··· 3192 3193 impatient-nvim = buildVimPluginFrom2Nix { 3194 pname = "impatient.nvim"; 3195 - version = "2022-05-19"; 3196 src = fetchFromGitHub { 3197 owner = "lewis6991"; 3198 repo = "impatient.nvim"; 3199 - rev = "bcc22509bdf1c9d9e63e5e44ad00f5fcf581d651"; 3200 - sha256 = "188pf8bbm7a5nnfxakn9dxl1703xa57y7iz7wkhh1qigdxga3yvb"; 3201 }; 3202 meta.homepage = "https://github.com/lewis6991/impatient.nvim/"; 3203 }; ··· 3553 3554 lexima-vim = buildVimPluginFrom2Nix { 3555 pname = "lexima.vim"; 3556 - version = "2022-03-22"; 3557 src = fetchFromGitHub { 3558 owner = "cohama"; 3559 repo = "lexima.vim"; 3560 - rev = "fbc05de53ca98b7f36a82f566db1df49864e58ef"; 3561 - sha256 = "1gyxa9larwz8brfs47ivxcrx03fa52pvc6kw31c7nl03j5p91f8m"; 3562 }; 3563 meta.homepage = "https://github.com/cohama/lexima.vim/"; 3564 }; ··· 3836 sha256 = "1l5naxm1mx8l3xwiqrm60w0avsbhhpxnbr4sgqpnmigb9p2150ip"; 3837 }; 3838 meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/"; 3839 }; 3840 3841 lspkind-nvim = buildVimPluginFrom2Nix { ··· 4428 4429 neorg = buildVimPluginFrom2Nix { 4430 pname = "neorg"; 4431 - version = "2022-06-03"; 4432 src = fetchFromGitHub { 4433 owner = "nvim-neorg"; 4434 repo = "neorg"; 4435 - rev = "535fca8fd422fdedd686825d1f59a4e40e00259e"; 4436 - sha256 = "16yvvqmr7hg5g23ndig65y6by1y2khac1j9lmibvf91sxqdqrhxr"; 4437 }; 4438 meta.homepage = "https://github.com/nvim-neorg/neorg/"; 4439 }; ··· 4488 4489 neovim-ayu = buildVimPluginFrom2Nix { 4490 pname = "neovim-ayu"; 4491 - version = "2022-05-11"; 4492 src = fetchFromGitHub { 4493 owner = "Shatur"; 4494 repo = "neovim-ayu"; 4495 - rev = "bb0793b661acec468c472f20eb28dbe855428793"; 4496 - sha256 = "0nrky5mlh79xzgdbwibrs43yw317gaavhq0p7pfpxsxdxhfjw416"; 4497 }; 4498 meta.homepage = "https://github.com/Shatur/neovim-ayu/"; 4499 }; ··· 4608 4609 nightfox-nvim = buildVimPluginFrom2Nix { 4610 pname = "nightfox.nvim"; 4611 - version = "2022-05-30"; 4612 src = fetchFromGitHub { 4613 owner = "EdenEast"; 4614 repo = "nightfox.nvim"; 4615 - rev = "e602acaad91a546be2250e026f0bdc6be8c8a44c"; 4616 - sha256 = "0666alx5yh6kzh417x4wydijh7aslxl4mivjzcvi74zr46h1xwz5"; 4617 }; 4618 meta.homepage = "https://github.com/EdenEast/nightfox.nvim/"; 4619 }; ··· 4716 4717 null-ls-nvim = buildVimPluginFrom2Nix { 4718 pname = "null-ls.nvim"; 4719 - version = "2022-05-31"; 4720 src = fetchFromGitHub { 4721 owner = "jose-elias-alvarez"; 4722 repo = "null-ls.nvim"; 4723 - rev = "7b8560d53045f36d74236d17f0b280ec94e65198"; 4724 - sha256 = "0pnp79l7ml97l25xm5c7g9ywnjqb2b9wvzlxp82apqns4qmgq9c2"; 4725 }; 4726 meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; 4727 }; ··· 4764 4765 nvim-autopairs = buildVimPluginFrom2Nix { 4766 pname = "nvim-autopairs"; 4767 - version = "2022-05-25"; 4768 src = fetchFromGitHub { 4769 owner = "windwp"; 4770 repo = "nvim-autopairs"; 4771 - rev = "b9cc0a26f3b5610ce772004e1efd452b10b36bc9"; 4772 - sha256 = "0jj8c4jzrswrpc7fbfxa7fg2jbn1djrhl0yrqjpmgrlbs1nqjwwm"; 4773 }; 4774 meta.homepage = "https://github.com/windwp/nvim-autopairs/"; 4775 }; ··· 4800 4801 nvim-bqf = buildVimPluginFrom2Nix { 4802 pname = "nvim-bqf"; 4803 - version = "2022-05-31"; 4804 src = fetchFromGitHub { 4805 owner = "kevinhwang91"; 4806 repo = "nvim-bqf"; 4807 - rev = "0cc539c52e51d32d8febf1f04c5e7ed5353fead2"; 4808 - sha256 = "1kljchr83ms3f7nc9lvy3fnvqv13xmh3xksyyazs0ivk20wgmbb3"; 4809 }; 4810 meta.homepage = "https://github.com/kevinhwang91/nvim-bqf/"; 4811 }; ··· 4836 4837 nvim-cmp = buildVimPluginFrom2Nix { 4838 pname = "nvim-cmp"; 4839 - version = "2022-05-25"; 4840 src = fetchFromGitHub { 4841 owner = "hrsh7th"; 4842 repo = "nvim-cmp"; 4843 - rev = "033a817ced907c8bcdcbe3355d7ea67446264f4b"; 4844 - sha256 = "0ywdjcic3ipc0igss3nmd9j2vdx3jh4wmfsx2895kasjb0x50fqg"; 4845 }; 4846 meta.homepage = "https://github.com/hrsh7th/nvim-cmp/"; 4847 }; ··· 4932 4933 nvim-dap = buildVimPluginFrom2Nix { 4934 pname = "nvim-dap"; 4935 - version = "2022-06-03"; 4936 src = fetchFromGitHub { 4937 owner = "mfussenegger"; 4938 repo = "nvim-dap"; 4939 - rev = "9c783d8d2a6f776ee817281f0bf07d356524cc1f"; 4940 - sha256 = "0rg4riwb8fbm661j1bmp1ffi04cfy4y5asmx0a8j9yyaz6bsn0d3"; 4941 }; 4942 meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; 4943 }; 4944 4945 nvim-dap-ui = buildVimPluginFrom2Nix { 4946 pname = "nvim-dap-ui"; 4947 - version = "2022-05-11"; 4948 src = fetchFromGitHub { 4949 owner = "rcarriga"; 4950 repo = "nvim-dap-ui"; 4951 - rev = "e5c32746aa72e39267803fdf6934d79541d39f42"; 4952 - sha256 = "06igsddmjd27wj880vq9l9qq38x438ybrjvizn8dz98paypa6b1d"; 4953 }; 4954 meta.homepage = "https://github.com/rcarriga/nvim-dap-ui/"; 4955 }; ··· 4980 4981 nvim-fzf = buildVimPluginFrom2Nix { 4982 pname = "nvim-fzf"; 4983 - version = "2022-05-23"; 4984 src = fetchFromGitHub { 4985 owner = "vijaymarupudi"; 4986 repo = "nvim-fzf"; 4987 - rev = "d0b4d60704f27eddaa96b921f10a4a2a20f1b20e"; 4988 - sha256 = "18jyvdwqlv0r7plxmdsysysq1fkc57q7x2pzd8p5p2513vsrhmxx"; 4989 }; 4990 meta.homepage = "https://github.com/vijaymarupudi/nvim-fzf/"; 4991 }; ··· 5016 5017 nvim-gps = buildVimPluginFrom2Nix { 5018 pname = "nvim-gps"; 5019 - version = "2022-05-29"; 5020 src = fetchFromGitHub { 5021 owner = "smiteshp"; 5022 repo = "nvim-gps"; 5023 - rev = "8f950881c6308884e1262f1a10eadede1ad4253c"; 5024 - sha256 = "013883mhj7832nw8gxxhj02134pc3j45s2kyhb1i3l44kfcizlda"; 5025 }; 5026 meta.homepage = "https://github.com/smiteshp/nvim-gps/"; 5027 }; ··· 5086 meta.homepage = "https://github.com/gennaro-tedesco/nvim-jqx/"; 5087 }; 5088 5089 nvim-lightbulb = buildVimPluginFrom2Nix { 5090 pname = "nvim-lightbulb"; 5091 - version = "2022-05-16"; 5092 src = fetchFromGitHub { 5093 owner = "kosayoda"; 5094 repo = "nvim-lightbulb"; 5095 - rev = "1adc99adcfe2f3e2b3051f6449e1673e66643e77"; 5096 - sha256 = "0s0fx7h59i9m4rh1zzdw14mjnkwl3p3sjc1n0ih4ciwpyvqw7mr5"; 5097 }; 5098 meta.homepage = "https://github.com/kosayoda/nvim-lightbulb/"; 5099 }; ··· 5112 5113 nvim-lint = buildVimPluginFrom2Nix { 5114 pname = "nvim-lint"; 5115 - version = "2022-05-28"; 5116 src = fetchFromGitHub { 5117 owner = "mfussenegger"; 5118 repo = "nvim-lint"; 5119 - rev = "19cc4808a6f8b4c6043f285fb2f1f996842424fc"; 5120 - sha256 = "1rp8ijhd4dr7359iy06lzwx2w8nxi3784rcn48k45mdmy86xic2f"; 5121 }; 5122 meta.homepage = "https://github.com/mfussenegger/nvim-lint/"; 5123 }; ··· 5136 5137 nvim-lspconfig = buildVimPluginFrom2Nix { 5138 pname = "nvim-lspconfig"; 5139 - version = "2022-06-03"; 5140 src = fetchFromGitHub { 5141 owner = "neovim"; 5142 repo = "nvim-lspconfig"; 5143 - rev = "2a455c148341c4faf2dd60401397fed35d084c59"; 5144 - sha256 = "1plhjirvg4xvh147xdr339z7jvw2mf973rkahhgxfwfzp1g1gjq9"; 5145 }; 5146 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 5147 }; ··· 5158 meta.homepage = "https://github.com/RishabhRD/nvim-lsputils/"; 5159 }; 5160 5161 nvim-metals = buildVimPluginFrom2Nix { 5162 pname = "nvim-metals"; 5163 version = "2022-06-02"; ··· 5196 5197 nvim-notify = buildVimPluginFrom2Nix { 5198 pname = "nvim-notify"; 5199 - version = "2022-06-04"; 5200 src = fetchFromGitHub { 5201 owner = "rcarriga"; 5202 repo = "nvim-notify"; 5203 - rev = "b517277b2782b9fe20f64220435b8b6f9f02f840"; 5204 - sha256 = "0najyal8r9a443jqyv84sgpa235lkms2ggy835i4pb47azizwmfa"; 5205 }; 5206 meta.homepage = "https://github.com/rcarriga/nvim-notify/"; 5207 }; ··· 5220 5221 nvim-scrollview = buildVimPluginFrom2Nix { 5222 pname = "nvim-scrollview"; 5223 - version = "2022-05-23"; 5224 src = fetchFromGitHub { 5225 owner = "dstein64"; 5226 repo = "nvim-scrollview"; 5227 - rev = "9f3a9dafab2bacecbfe720ecc8e8462cffd91217"; 5228 - sha256 = "1zyaxd9cxnfacicxjcxl4bxfanxbbmbg6swck5jkf62nkj2mbfay"; 5229 }; 5230 meta.homepage = "https://github.com/dstein64/nvim-scrollview/"; 5231 }; ··· 5268 5269 nvim-tree-lua = buildVimPluginFrom2Nix { 5270 pname = "nvim-tree.lua"; 5271 - version = "2022-06-04"; 5272 src = fetchFromGitHub { 5273 owner = "kyazdani42"; 5274 repo = "nvim-tree.lua"; 5275 - rev = "3aeb59b0754afb60751cd58b9903852b6076cea4"; 5276 - sha256 = "0zw9rafhc4s9fhk53a4mxy9kspmcizzii1phvs2hib34laj78gwb"; 5277 }; 5278 meta.homepage = "https://github.com/kyazdani42/nvim-tree.lua/"; 5279 }; 5280 5281 nvim-treesitter = buildVimPluginFrom2Nix { 5282 pname = "nvim-treesitter"; 5283 - version = "2022-06-04"; 5284 src = fetchFromGitHub { 5285 owner = "nvim-treesitter"; 5286 repo = "nvim-treesitter"; 5287 - rev = "d7ec2e6ab938b60baa5a9f4cd46d1d88d6da22ac"; 5288 - sha256 = "03y5zl1drl1p072980kd247ksqlh33kvk0sjq1iaplwjmbxkmjfg"; 5289 }; 5290 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 5291 }; 5292 5293 nvim-treesitter-context = buildVimPluginFrom2Nix { 5294 pname = "nvim-treesitter-context"; 5295 - version = "2022-05-12"; 5296 src = fetchFromGitHub { 5297 owner = "nvim-treesitter"; 5298 repo = "nvim-treesitter-context"; 5299 - rev = "a7916523e8107a57021cabae51917b7dae844aa6"; 5300 - sha256 = "0pqc31yp8prq5gkblasyyhf4cxi4gkqglp0jmvqmsax46r82ffz1"; 5301 }; 5302 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; 5303 }; ··· 5400 5401 nvim-yarp = buildVimPluginFrom2Nix { 5402 pname = "nvim-yarp"; 5403 - version = "2022-05-20"; 5404 src = fetchFromGitHub { 5405 owner = "roxma"; 5406 repo = "nvim-yarp"; 5407 - rev = "7ae8c7b7162df302c441519be537ba92cf650eb7"; 5408 - sha256 = "1cy7g0rx6jr2bi11lrc8x5bwhii7pnr10mfn9gx8llhfkyrhw35d"; 5409 }; 5410 meta.homepage = "https://github.com/roxma/nvim-yarp/"; 5411 }; ··· 5460 5461 octo-nvim = buildVimPluginFrom2Nix { 5462 pname = "octo.nvim"; 5463 - version = "2022-06-02"; 5464 src = fetchFromGitHub { 5465 owner = "pwntester"; 5466 repo = "octo.nvim"; 5467 - rev = "a23c1f1c810c543d9da69a8a6feb2061738fc714"; 5468 - sha256 = "0jy2az08il2w4wyabggmqhmi8cgmyqmm4x4zypvkv8qs7m9l72kq"; 5469 }; 5470 meta.homepage = "https://github.com/pwntester/octo.nvim/"; 5471 }; ··· 5496 5497 onedark-nvim = buildVimPluginFrom2Nix { 5498 pname = "onedark.nvim"; 5499 - version = "2022-05-20"; 5500 src = fetchFromGitHub { 5501 owner = "navarasu"; 5502 repo = "onedark.nvim"; 5503 - rev = "bd0560df2acd17483ae0e707765ca87e95587b10"; 5504 - sha256 = "10bhr5c35c0ypbbi74pqjs561y1vy5qyphg4qw9bni3icj4p0vg0"; 5505 }; 5506 meta.homepage = "https://github.com/navarasu/onedark.nvim/"; 5507 }; ··· 5568 5569 orgmode = buildVimPluginFrom2Nix { 5570 pname = "orgmode"; 5571 - version = "2022-06-01"; 5572 src = fetchFromGitHub { 5573 owner = "nvim-orgmode"; 5574 repo = "orgmode"; 5575 - rev = "b0649b59144338d3a6d6bd04425a98acd203e413"; 5576 - sha256 = "1q5gxmsjnchp39py0dv4gl4fy0fhjlca1calnlq4vil63yr4jpry"; 5577 }; 5578 meta.homepage = "https://github.com/nvim-orgmode/orgmode/"; 5579 }; ··· 5616 5617 papercolor-theme = buildVimPluginFrom2Nix { 5618 pname = "papercolor-theme"; 5619 - version = "2022-05-31"; 5620 src = fetchFromGitHub { 5621 owner = "NLKNguyen"; 5622 repo = "papercolor-theme"; 5623 - rev = "7cd968118f6d00d7c9b7d946f88476ad4f2cbbd3"; 5624 - sha256 = "0yixp5a8gl6bvsp3341zzyil8fjr02g2s2xplqw3y5r16afcqngz"; 5625 }; 5626 meta.homepage = "https://github.com/NLKNguyen/papercolor-theme/"; 5627 }; ··· 5712 5713 plenary-nvim = buildNeovimPluginFrom2Nix { 5714 pname = "plenary.nvim"; 5715 - version = "2022-06-01"; 5716 src = fetchFromGitHub { 5717 owner = "nvim-lua"; 5718 repo = "plenary.nvim"; 5719 - rev = "54b2e3d58f567983feabaeb9408eccf6b7f32206"; 5720 - sha256 = "1ldjdc7yq4awlllr9dcv8fnkcwgdpvj0py5mhvx3v1yjniwrkn2i"; 5721 }; 5722 meta.homepage = "https://github.com/nvim-lua/plenary.nvim/"; 5723 }; ··· 5990 5991 refactoring-nvim = buildVimPluginFrom2Nix { 5992 pname = "refactoring.nvim"; 5993 - version = "2022-06-02"; 5994 src = fetchFromGitHub { 5995 owner = "theprimeagen"; 5996 repo = "refactoring.nvim"; 5997 - rev = "8aae61389d3654335b2fd913d137f4908d482717"; 5998 - sha256 = "0jk6cmng7cyxwdb5a7pnrvhaha32sj225zpjrng52yr1s9zg9hrl"; 5999 }; 6000 meta.homepage = "https://github.com/theprimeagen/refactoring.nvim/"; 6001 }; ··· 6166 sha256 = "1dvlmmxykf3vyhyvv5aiqbz8fd7zvpw4xq1nxnf3wyj371caawaq"; 6167 }; 6168 meta.homepage = "https://github.com/Xuyuanp/scrollbar.nvim/"; 6169 }; 6170 6171 securemodelines = buildVimPluginFrom2Nix { ··· 6409 meta.homepage = "https://github.com/lewis6991/spellsitter.nvim/"; 6410 }; 6411 6412 splice-vim = buildVimPluginFrom2Nix { 6413 pname = "splice.vim"; 6414 version = "2020-01-15"; ··· 6448 6449 sqlite-lua = buildVimPluginFrom2Nix { 6450 pname = "sqlite.lua"; 6451 - version = "2022-03-03"; 6452 src = fetchFromGitHub { 6453 owner = "tami5"; 6454 repo = "sqlite.lua"; 6455 - rev = "9ccd2a6538d8a201d1ea08784bd866950e1b4130"; 6456 - sha256 = "16yq3zi8zvr39ihpw8zik7frplpmgcc3a6xf424rsxfzshn92k9f"; 6457 }; 6458 meta.homepage = "https://github.com/tami5/sqlite.lua/"; 6459 }; 6460 6461 srcery-vim = buildVimPluginFrom2Nix { 6462 pname = "srcery-vim"; 6463 - version = "2022-05-14"; 6464 src = fetchFromGitHub { 6465 owner = "srcery-colors"; 6466 repo = "srcery-vim"; 6467 - rev = "f57518d59f71f6441c8dae97a971ee659421d671"; 6468 - sha256 = "09f6nccz6wp5a61zrrbasf7zfvnh258fxb6db27x6lf611rb233k"; 6469 }; 6470 meta.homepage = "https://github.com/srcery-colors/srcery-vim/"; 6471 }; ··· 6576 sha256 = "070fzga0b039wjhfzb7s0s422kv3as7ifv94ma6vh62ml6zm6mpl"; 6577 }; 6578 meta.homepage = "https://github.com/peterbjorgensen/sved/"; 6579 }; 6580 6581 swift-vim = buildVimPluginFrom2Nix { ··· 6714 6715 tagbar = buildVimPluginFrom2Nix { 6716 pname = "tagbar"; 6717 - version = "2022-05-02"; 6718 src = fetchFromGitHub { 6719 owner = "preservim"; 6720 repo = "tagbar"; 6721 - rev = "a577ee4d650476243d91698f2d1228819c5fa0a5"; 6722 - sha256 = "0d26c4qg7d25nzjvzds9p4z544h3zy0iwa51301pxh8s5kqr4s85"; 6723 }; 6724 meta.homepage = "https://github.com/preservim/tagbar/"; 6725 }; ··· 6846 6847 telescope-fzf-native-nvim = buildVimPluginFrom2Nix { 6848 pname = "telescope-fzf-native.nvim"; 6849 - version = "2022-06-01"; 6850 src = fetchFromGitHub { 6851 owner = "nvim-telescope"; 6852 repo = "telescope-fzf-native.nvim"; 6853 - rev = "f0dba7df9536ddb0c8f7b6482ede77940d728d23"; 6854 - sha256 = "1fyww6h5y8624qn30j6297ipjs4h5rbn1af1fslwn3cz0qsfww2h"; 6855 }; 6856 meta.homepage = "https://github.com/nvim-telescope/telescope-fzf-native.nvim/"; 6857 }; ··· 6991 6992 telescope-nvim = buildVimPluginFrom2Nix { 6993 pname = "telescope.nvim"; 6994 - version = "2022-06-02"; 6995 src = fetchFromGitHub { 6996 owner = "nvim-telescope"; 6997 repo = "telescope.nvim"; 6998 - rev = "d3aad43b3fcf707052f7dd8a7c7072fa69773f3c"; 6999 - sha256 = "0m84qnm7pxn26a4znf0gxrz2q0kr951lqzk7pph54xdxrcvjha10"; 7000 }; 7001 meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 7002 }; ··· 7172 7173 toggleterm-nvim = buildVimPluginFrom2Nix { 7174 pname = "toggleterm.nvim"; 7175 - version = "2022-05-22"; 7176 src = fetchFromGitHub { 7177 owner = "akinsho"; 7178 repo = "toggleterm.nvim"; 7179 - rev = "93c2f2ca96af74f22f470e2fbcbd5e89b1faa63d"; 7180 - sha256 = "0449qbkskzfgbnn2xgr0cydjjs8gvzgcrv7x77bqki7wsr0mqgx7"; 7181 }; 7182 meta.homepage = "https://github.com/akinsho/toggleterm.nvim/"; 7183 }; ··· 7292 7293 ultisnips = buildVimPluginFrom2Nix { 7294 pname = "ultisnips"; 7295 - version = "2022-04-23"; 7296 src = fetchFromGitHub { 7297 owner = "SirVer"; 7298 repo = "ultisnips"; 7299 - rev = "f5ccf0977c611ffd774ca180774959301baaffad"; 7300 - sha256 = "0b4gb031ylm290ciyq72zlrykp4ypn82akjdac886r9zn50r2lpb"; 7301 }; 7302 meta.homepage = "https://github.com/SirVer/ultisnips/"; 7303 }; ··· 7412 7413 vifm-vim = buildVimPluginFrom2Nix { 7414 pname = "vifm.vim"; 7415 - version = "2022-05-25"; 7416 src = fetchFromGitHub { 7417 owner = "vifm"; 7418 repo = "vifm.vim"; 7419 - rev = "3ca14b9dc488fe45a14bf5f78cf56ca22fb9269d"; 7420 - sha256 = "1b45mazsp26dr1bznip80nxsga6pxi5j6hjspbqs34h01w8yww49"; 7421 }; 7422 meta.homepage = "https://github.com/vifm/vifm.vim/"; 7423 }; ··· 7748 7749 vim-airline = buildVimPluginFrom2Nix { 7750 pname = "vim-airline"; 7751 - version = "2022-05-21"; 7752 src = fetchFromGitHub { 7753 owner = "vim-airline"; 7754 repo = "vim-airline"; 7755 - rev = "5d7e6560817138110abec3e5c9903b408bc21f51"; 7756 - sha256 = "19kcnl08w9ql37dnsx9bsf5c5lmfwbvyf5rjng3aqn4hl555pv9x"; 7757 }; 7758 meta.homepage = "https://github.com/vim-airline/vim-airline/"; 7759 }; ··· 7892 7893 vim-autoformat = buildVimPluginFrom2Nix { 7894 pname = "vim-autoformat"; 7895 - version = "2022-05-27"; 7896 src = fetchFromGitHub { 7897 owner = "vim-autoformat"; 7898 repo = "vim-autoformat"; 7899 - rev = "e8e73c800eaefe5bf804454d83249e89dbd27bc8"; 7900 - sha256 = "190kz2kf6n8d1ng5pxkzjf1grzxwk79ly32iq2srrr2h7qsjqrw8"; 7901 }; 7902 meta.homepage = "https://github.com/vim-autoformat/vim-autoformat/"; 7903 }; ··· 8120 8121 vim-clap = buildVimPluginFrom2Nix { 8122 pname = "vim-clap"; 8123 - version = "2022-05-30"; 8124 src = fetchFromGitHub { 8125 owner = "liuchengxu"; 8126 repo = "vim-clap"; 8127 - rev = "2256c3e4860f9bddfb539ec4c3faab30535cbb9a"; 8128 - sha256 = "0fcmx1hirf40qdgb76g3bsf6n4s18v3yq4hw4hlwdp4jpbl2zymw"; 8129 }; 8130 meta.homepage = "https://github.com/liuchengxu/vim-clap/"; 8131 }; ··· 8245 owner = "flazz"; 8246 repo = "vim-colorschemes"; 8247 rev = "fd8f122cef604330c96a6a6e434682dbdfb878c9"; 8248 - sha256 = "1cg8q7w0vgl73aw1b9zz0zh5vw5d2pm8pm54fhfzva4azg56f416"; 8249 }; 8250 meta.homepage = "https://github.com/flazz/vim-colorschemes/"; 8251 }; ··· 8852 8853 vim-flutter = buildVimPluginFrom2Nix { 8854 pname = "vim-flutter"; 8855 - version = "2021-11-21"; 8856 src = fetchFromGitHub { 8857 owner = "thosakwe"; 8858 repo = "vim-flutter"; 8859 - rev = "2292de52c6b2470638b628ed2f3b1332e077cd46"; 8860 - sha256 = "137wp2vhlsflnzkcdycn6cgdsclv9w67rkh7gbariqi8s45y9n6f"; 8861 }; 8862 meta.homepage = "https://github.com/thosakwe/vim-flutter/"; 8863 }; ··· 8900 8901 vim-fugitive = buildVimPluginFrom2Nix { 8902 pname = "vim-fugitive"; 8903 - version = "2022-06-04"; 8904 src = fetchFromGitHub { 8905 owner = "tpope"; 8906 repo = "vim-fugitive"; 8907 - rev = "5920f807f5a52957a6a09dd36aab1c00bfd85455"; 8908 - sha256 = "1jzlrmc9prv3yhsqjn6bnjhllh7h7vqf6088ady4b2ical1lr839"; 8909 }; 8910 meta.homepage = "https://github.com/tpope/vim-fugitive/"; 8911 }; ··· 9044 9045 vim-go = buildVimPluginFrom2Nix { 9046 pname = "vim-go"; 9047 - version = "2022-05-24"; 9048 src = fetchFromGitHub { 9049 owner = "fatih"; 9050 repo = "vim-go"; 9051 - rev = "d34c629b852cd4a308606791ca8a809cd8490886"; 9052 - sha256 = "1nax5335ibd5kqa2y2skppa5q7wp9f5p212j476wy3yw9b41dwc5"; 9053 }; 9054 meta.homepage = "https://github.com/fatih/vim-go/"; 9055 }; ··· 9068 9069 vim-graphql = buildVimPluginFrom2Nix { 9070 pname = "vim-graphql"; 9071 - version = "2022-02-07"; 9072 src = fetchFromGitHub { 9073 owner = "jparise"; 9074 repo = "vim-graphql"; 9075 - rev = "15c5937688490af8dde09e90c9a5585c840ba81c"; 9076 - sha256 = "07j704ysc2klqfjk3918b1kjq16pw1yb1fykdsi2a0lamndn9l04"; 9077 }; 9078 meta.homepage = "https://github.com/jparise/vim-graphql/"; 9079 }; ··· 9453 9454 vim-javacomplete2 = buildVimPluginFrom2Nix { 9455 pname = "vim-javacomplete2"; 9456 - version = "2022-03-21"; 9457 src = fetchFromGitHub { 9458 owner = "artur-shaik"; 9459 repo = "vim-javacomplete2"; 9460 - rev = "e461476ccc931eed1d439984dd98a26ab56eecee"; 9461 - sha256 = "0kpifkb03aw3dq6x6vlai0ivdmwxs32v0ajzcym1f005b1n1rydy"; 9462 }; 9463 meta.homepage = "https://github.com/artur-shaik/vim-javacomplete2/"; 9464 }; ··· 9826 9827 vim-markbar = buildVimPluginFrom2Nix { 9828 pname = "vim-markbar"; 9829 - version = "2022-06-04"; 9830 src = fetchFromGitHub { 9831 owner = "Yilin-Yang"; 9832 repo = "vim-markbar"; 9833 - rev = "623f7f64f167c32d7dd358c908544609307a1cfb"; 9834 - sha256 = "1yxb9pk12nyvaxjyckbgvfkf4xql6l5yah6gn21pa5j05n8fd7b5"; 9835 }; 9836 meta.homepage = "https://github.com/Yilin-Yang/vim-markbar/"; 9837 }; ··· 9899 9900 vim-merginal = buildVimPluginFrom2Nix { 9901 pname = "vim-merginal"; 9902 - version = "2021-11-26"; 9903 src = fetchFromGitHub { 9904 owner = "idanarye"; 9905 repo = "vim-merginal"; 9906 - rev = "d47689faa5623e8f455c62a9a1016c92cf66c09e"; 9907 - sha256 = "0ili5kk0rg85dzn3z606c3p81lyq40rj97b4nzcc61x1s9k4l9z7"; 9908 }; 9909 meta.homepage = "https://github.com/idanarye/vim-merginal/"; 9910 }; ··· 9959 9960 vim-move = buildVimPluginFrom2Nix { 9961 pname = "vim-move"; 9962 - version = "2022-03-14"; 9963 src = fetchFromGitHub { 9964 owner = "matze"; 9965 repo = "vim-move"; 9966 - rev = "97fc86064eaa95384b5b00f6253e339fba44da5d"; 9967 - sha256 = "0h2f47q5dvl5myk5vif9ya4n308i4h5sb9rrg86v0inpbwzjpyas"; 9968 }; 9969 meta.homepage = "https://github.com/matze/vim-move/"; 9970 }; ··· 10691 10692 vim-rails = buildVimPluginFrom2Nix { 10693 pname = "vim-rails"; 10694 - version = "2022-05-06"; 10695 src = fetchFromGitHub { 10696 owner = "tpope"; 10697 repo = "vim-rails"; 10698 - rev = "9c92dafe6894aed3fa81df7ac52cdd8e7a8ea9a6"; 10699 - sha256 = "050vkbj1y80f1kcmb0hfd2mha1bb4v3f2bvnazcymxn08z8frww7"; 10700 }; 10701 meta.homepage = "https://github.com/tpope/vim-rails/"; 10702 }; ··· 11292 11293 vim-test = buildVimPluginFrom2Nix { 11294 pname = "vim-test"; 11295 - version = "2022-05-30"; 11296 src = fetchFromGitHub { 11297 owner = "vim-test"; 11298 repo = "vim-test"; 11299 - rev = "9bd4cd2d772018087d016fa4d35c45c09f13effd"; 11300 - sha256 = "1bs2q5aw7figwk08b0qahyyzdh1g8gp4vbfzxayxh340qj465f8p"; 11301 }; 11302 meta.homepage = "https://github.com/vim-test/vim-test/"; 11303 }; ··· 11628 11629 vim-vp4 = buildVimPluginFrom2Nix { 11630 pname = "vim-vp4"; 11631 - version = "2021-01-06"; 11632 src = fetchFromGitHub { 11633 owner = "ngemily"; 11634 repo = "vim-vp4"; 11635 - rev = "511ec1cd651a25b30d75ec6df29e61b9ca75d1b9"; 11636 - sha256 = "1vr8j4w6s26hjbil2kx57nnslrjczp4jvmc7s8lhl41z0r6nj4fb"; 11637 }; 11638 meta.homepage = "https://github.com/ngemily/vim-vp4/"; 11639 }; ··· 11712 11713 vim-which-key = buildVimPluginFrom2Nix { 11714 pname = "vim-which-key"; 11715 - version = "2021-11-25"; 11716 src = fetchFromGitHub { 11717 owner = "liuchengxu"; 11718 repo = "vim-which-key"; 11719 - rev = "165772f440bd26c4679eef8b8b493ab11fffc4ae"; 11720 - sha256 = "1jhc8x22qgpbwrbmaf02hbq98hxfibg3jqa3wrnyi1qiik0wxzrc"; 11721 }; 11722 meta.homepage = "https://github.com/liuchengxu/vim-which-key/"; 11723 }; ··· 11977 11978 vimtex = buildVimPluginFrom2Nix { 11979 pname = "vimtex"; 11980 - version = "2022-05-28"; 11981 src = fetchFromGitHub { 11982 owner = "lervag"; 11983 repo = "vimtex"; 11984 - rev = "e1a611961dd4508f5f723fd23c2015a9839e7ac5"; 11985 - sha256 = "0a9vg2jmyx4sx1wzfrfnp252hh03iyygql683xpl6lgxh31mc3l1"; 11986 }; 11987 meta.homepage = "https://github.com/lervag/vimtex/"; 11988 }; ··· 12193 12194 yats-vim = buildVimPluginFrom2Nix { 12195 pname = "yats.vim"; 12196 - version = "2022-05-21"; 12197 src = fetchFromGitHub { 12198 owner = "HerringtonDarkholme"; 12199 repo = "yats.vim"; 12200 - rev = "5789562ec56689e991aa0fdba17a6065ee14de82"; 12201 - sha256 = "1rz23y1czjam0gw1523mnfa2gs1ghw5d4ww3pcrjkpc7qwn8swiq"; 12202 fetchSubmodules = true; 12203 }; 12204 meta.homepage = "https://github.com/HerringtonDarkholme/yats.vim/"; ··· 12242 12243 zephyr-nvim = buildVimPluginFrom2Nix { 12244 pname = "zephyr-nvim"; 12245 - version = "2022-06-03"; 12246 src = fetchFromGitHub { 12247 owner = "glepnir"; 12248 repo = "zephyr-nvim"; 12249 - rev = "ab81680a4a78c6be800edba547ebf309a477be6e"; 12250 - sha256 = "1dip9ls8m1dvk69kzyb3wkxvkrv48x1lnv8l4l6xzp1d5xdnh5jy"; 12251 }; 12252 meta.homepage = "https://github.com/glepnir/zephyr-nvim/"; 12253 }; ··· 12302 12303 chad = buildVimPluginFrom2Nix { 12304 pname = "chad"; 12305 - version = "2022-06-04"; 12306 src = fetchFromGitHub { 12307 owner = "ms-jpq"; 12308 repo = "chadtree"; 12309 - rev = "574b9612fa8e91b2d6a5fed538b30cc5dc74098e"; 12310 - sha256 = "0hwji2mlf7awm303kxyy5b9hgz8kya38paqpw5l04g5b8a7qzwss"; 12311 }; 12312 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 12313 };
··· 137 138 LanguageClient-neovim = buildVimPluginFrom2Nix { 139 pname = "LanguageClient-neovim"; 140 + version = "2022-06-07"; 141 src = fetchFromGitHub { 142 owner = "autozimu"; 143 repo = "LanguageClient-neovim"; 144 + rev = "cf6dd11baf62fb6ce18308e96c0ab43428b7c686"; 145 + sha256 = "0jmbxc0li4w59dzpzadq2phnfhnibggwxb3rvlmhr88dbglm0s8n"; 146 }; 147 meta.homepage = "https://github.com/autozimu/LanguageClient-neovim/"; 148 }; ··· 281 282 SchemaStore-nvim = buildVimPluginFrom2Nix { 283 pname = "SchemaStore.nvim"; 284 + version = "2022-06-08"; 285 src = fetchFromGitHub { 286 owner = "b0o"; 287 repo = "SchemaStore.nvim"; 288 + rev = "005a0377c95fe521a65a90af26aadb46085871c8"; 289 + sha256 = "1yn541cn5m0jmwwhiygqlds9hvxsm9w6x70r24ig3nj2p9q41px3"; 290 }; 291 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 292 }; ··· 341 342 SpaceVim = buildVimPluginFrom2Nix { 343 pname = "SpaceVim"; 344 + version = "2022-06-07"; 345 src = fetchFromGitHub { 346 owner = "SpaceVim"; 347 repo = "SpaceVim"; 348 + rev = "d66173b58abe941966e0e4666e54963c7a2d7dc9"; 349 + sha256 = "1cfz9xj5498n3mpw2f4fk0gxdp92d697dp7mm5vnz78h17p4px6y"; 350 }; 351 meta.homepage = "https://github.com/SpaceVim/SpaceVim/"; 352 }; ··· 498 499 aerial-nvim = buildVimPluginFrom2Nix { 500 pname = "aerial.nvim"; 501 + version = "2022-06-05"; 502 src = fetchFromGitHub { 503 owner = "stevearc"; 504 repo = "aerial.nvim"; 505 + rev = "2084c3ce26aba0aea0a450b35c5971b48f277574"; 506 + sha256 = "0p9rsgk6ynikhic8r9iy5i5rklg4dmri0yrm4gslmrp2bdmn111k"; 507 }; 508 meta.homepage = "https://github.com/stevearc/aerial.nvim/"; 509 + }; 510 + 511 + ag-nvim = buildVimPluginFrom2Nix { 512 + pname = "ag.nvim"; 513 + version = "2021-07-15"; 514 + src = fetchFromGitHub { 515 + owner = "Numkil"; 516 + repo = "ag.nvim"; 517 + rev = "196a78e9287d6f01d6d6e607fb212b40b798b496"; 518 + sha256 = "0w1dnmhhdipzs1xhmlvzj4b6x0zl4cghcn8qgzmxhrjscv6djrgn"; 519 + }; 520 + meta.homepage = "https://github.com/Numkil/ag.nvim/"; 521 }; 522 523 agda-vim = buildVimPluginFrom2Nix { ··· 546 547 ale = buildVimPluginFrom2Nix { 548 pname = "ale"; 549 + version = "2022-06-08"; 550 src = fetchFromGitHub { 551 owner = "dense-analysis"; 552 repo = "ale"; 553 + rev = "f10349b48b173d50b523ce009934bb4bfba04f7f"; 554 sha256 = "1s6ba5h0cv8y80x2nv9m98q724xv242nqzgxxh7bniakzp3jm4j4"; 555 }; 556 meta.homepage = "https://github.com/dense-analysis/ale/"; ··· 714 715 aurora = buildVimPluginFrom2Nix { 716 pname = "aurora"; 717 + version = "2022-06-09"; 718 src = fetchFromGitHub { 719 owner = "ray-x"; 720 repo = "aurora"; 721 + rev = "0b16a5f1f0da15c4808fafbad5a1024140a598c7"; 722 + sha256 = "0gfkvfpj97ijw9rbhy80hq3ly10c4zah4l5zzsw4xpnjwcx9gnxg"; 723 }; 724 meta.homepage = "https://github.com/ray-x/aurora/"; 725 }; ··· 798 799 barbar-nvim = buildVimPluginFrom2Nix { 800 pname = "barbar.nvim"; 801 + version = "2022-06-05"; 802 src = fetchFromGitHub { 803 owner = "romgrk"; 804 repo = "barbar.nvim"; 805 + rev = "a6a6209d1f2f599553741bbb02ce940fe8a5661b"; 806 + sha256 = "17851pqs1hr6vv86n2c7jz08xq0zm0iw9kbs393mfid2839clck9"; 807 }; 808 meta.homepage = "https://github.com/romgrk/barbar.nvim/"; 809 }; ··· 930 931 bufferline-nvim = buildVimPluginFrom2Nix { 932 pname = "bufferline.nvim"; 933 + version = "2022-06-05"; 934 src = fetchFromGitHub { 935 owner = "akinsho"; 936 repo = "bufferline.nvim"; 937 + rev = "c78b3ecf9539a719828bca82fc7ddb9b3ba0c353"; 938 + sha256 = "03sf49s26nb9aqr16f776p58vs3dx9kyyach2jj4k1lp318w6ikp"; 939 }; 940 meta.homepage = "https://github.com/akinsho/bufferline.nvim/"; 941 }; ··· 1026 1027 circles-nvim = buildVimPluginFrom2Nix { 1028 pname = "circles.nvim"; 1029 + version = "2022-06-05"; 1030 src = fetchFromGitHub { 1031 owner = "projekt0n"; 1032 repo = "circles.nvim"; 1033 + rev = "8339b7e9023dfd4fa83e3aa597c210c01de41746"; 1034 + sha256 = "165l7jm5rmkhvy77q00rvzhri6ic4l599brfscg4mb1sazm6gpwv"; 1035 }; 1036 meta.homepage = "https://github.com/projekt0n/circles.nvim/"; 1037 }; ··· 1266 1267 cmp-tabnine = buildVimPluginFrom2Nix { 1268 pname = "cmp-tabnine"; 1269 + version = "2022-06-06"; 1270 src = fetchFromGitHub { 1271 owner = "tzachar"; 1272 repo = "cmp-tabnine"; 1273 + rev = "e23d32a76304496aade4e4b285751a6a8b505491"; 1274 + sha256 = "0dir6h437wszhsmgq0xv1n6y88wsmqs2gvw35l3259xmm4z8ssna"; 1275 }; 1276 meta.homepage = "https://github.com/tzachar/cmp-tabnine/"; 1277 }; ··· 1290 1291 cmp-treesitter = buildVimPluginFrom2Nix { 1292 pname = "cmp-treesitter"; 1293 + version = "2022-06-09"; 1294 src = fetchFromGitHub { 1295 owner = "ray-x"; 1296 repo = "cmp-treesitter"; 1297 + rev = "c2886bbb09ef6daf996a258db29546cc1e7c12a7"; 1298 + sha256 = "1ar6d6pqybn4vqynbh18mc7fy1ybv0s9mi1r2j1nfcmgvh4wsvwk"; 1299 }; 1300 meta.homepage = "https://github.com/ray-x/cmp-treesitter/"; 1301 }; ··· 1374 1375 coc-lua = buildVimPluginFrom2Nix { 1376 pname = "coc-lua"; 1377 + version = "2022-06-09"; 1378 src = fetchFromGitHub { 1379 owner = "josa42"; 1380 repo = "coc-lua"; 1381 + rev = "aa49b7ff2c7aa75aaa538479b552297e38952b38"; 1382 + sha256 = "0m0c8rg7lpaf6kpjaw9qxkrd4jj4n4kzxnmxksgww3s2hmnj8x5w"; 1383 }; 1384 meta.homepage = "https://github.com/josa42/coc-lua/"; 1385 }; ··· 1434 1435 coc-nvim = buildVimPluginFrom2Nix { 1436 pname = "coc.nvim"; 1437 + version = "2022-06-05"; 1438 src = fetchFromGitHub { 1439 owner = "neoclide"; 1440 repo = "coc.nvim"; 1441 + rev = "b4d732a29b66c75e6d130cab296cc604a2d73bc4"; 1442 + sha256 = "08k7p189xh5rwyl9fjfmcg6z3yz6xmlyfpdf3a69vcvnixqg9ww6"; 1443 }; 1444 meta.homepage = "https://github.com/neoclide/coc.nvim/"; 1445 }; ··· 1519 1520 comment-nvim = buildVimPluginFrom2Nix { 1521 pname = "comment.nvim"; 1522 + version = "2022-06-07"; 1523 src = fetchFromGitHub { 1524 owner = "numtostr"; 1525 repo = "comment.nvim"; 1526 + rev = "3c69bab36569d5d0321351ec956fc43a8d409fb0"; 1527 + sha256 = "0wfhj4i1ycwsdmpkk9jcfmq141mqlf40sl4ymqd0zqrwzb8yz5m5"; 1528 }; 1529 meta.homepage = "https://github.com/numtostr/comment.nvim/"; 1530 }; ··· 1687 1688 copilot-vim = buildVimPluginFrom2Nix { 1689 pname = "copilot.vim"; 1690 + version = "2022-06-07"; 1691 src = fetchFromGitHub { 1692 owner = "github"; 1693 repo = "copilot.vim"; 1694 + rev = "aa9e451dda857c6615f531f8d4e4f201e43d7a03"; 1695 + sha256 = "1i272gzvm4psqynw7pqyb00zlmx9q0r8z9l5iswy6kjwgvzz9298"; 1696 }; 1697 meta.homepage = "https://github.com/github/copilot.vim/"; 1698 }; 1699 1700 coq-artifacts = buildVimPluginFrom2Nix { 1701 pname = "coq.artifacts"; 1702 + version = "2022-06-09"; 1703 src = fetchFromGitHub { 1704 owner = "ms-jpq"; 1705 repo = "coq.artifacts"; 1706 + rev = "8303d9265567a10a57ee88ab674de77ca6661075"; 1707 + sha256 = "06jmbqrszb5n3lsjfk2q0fz7gyx9g3zb7ivrj4wprdnnws7nyl0a"; 1708 }; 1709 meta.homepage = "https://github.com/ms-jpq/coq.artifacts/"; 1710 }; 1711 1712 coq-thirdparty = buildVimPluginFrom2Nix { 1713 pname = "coq.thirdparty"; 1714 + version = "2022-06-09"; 1715 src = fetchFromGitHub { 1716 owner = "ms-jpq"; 1717 repo = "coq.thirdparty"; 1718 + rev = "7920ea2527f12620701c08c48e1f668e2ccd37b7"; 1719 + sha256 = "1xb590xs4n9gkrslb9v9apw7h3x3w48s6c6kkzphdabys2i9sdd4"; 1720 }; 1721 meta.homepage = "https://github.com/ms-jpq/coq.thirdparty/"; 1722 }; ··· 1735 1736 coq_nvim = buildVimPluginFrom2Nix { 1737 pname = "coq_nvim"; 1738 + version = "2022-06-09"; 1739 src = fetchFromGitHub { 1740 owner = "ms-jpq"; 1741 repo = "coq_nvim"; 1742 + rev = "fc168d99aeade7c3529b8883c12fdec17aad0f7c"; 1743 + sha256 = "02p72z384xk08a2hw8byasnxvl865wxngj08s7zp07cv2vzf3hw0"; 1744 }; 1745 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 1746 }; ··· 1883 src = fetchFromGitHub { 1884 owner = "glepnir"; 1885 repo = "dashboard-nvim"; 1886 + rev = "a36b3232c98616149784f2ca2654e77caea7a522"; 1887 sha256 = "0106jhw9fg2zmk0fqnr126f9gnh5bw7sjrxldn06ajj15ll15p9p"; 1888 }; 1889 meta.homepage = "https://github.com/glepnir/dashboard-nvim/"; ··· 2253 2254 diffview-nvim = buildNeovimPluginFrom2Nix { 2255 pname = "diffview.nvim"; 2256 + version = "2022-06-09"; 2257 src = fetchFromGitHub { 2258 owner = "sindrets"; 2259 repo = "diffview.nvim"; 2260 + rev = "ca297a7e526b42b1ea0e4bd6eebb36f2654125a7"; 2261 + sha256 = "1vr7yx7i863brmpbayxc7k9z14ai0naa030ck43cknib1bdilpkp"; 2262 }; 2263 meta.homepage = "https://github.com/sindrets/diffview.nvim/"; 2264 }; ··· 2277 2278 doki-theme-vim = buildVimPluginFrom2Nix { 2279 pname = "doki-theme-vim"; 2280 + version = "2022-06-05"; 2281 src = fetchFromGitHub { 2282 owner = "doki-theme"; 2283 repo = "doki-theme-vim"; 2284 + rev = "6f7f48527a2615809b0677d8370faf6dd2244d57"; 2285 + sha256 = "1h5yzjpdg67612rwpryz9ck0fn8d16kd6jn2vjnb6hyygqn8gdb2"; 2286 }; 2287 meta.homepage = "https://github.com/doki-theme/doki-theme-vim/"; 2288 }; 2289 2290 dressing-nvim = buildVimPluginFrom2Nix { 2291 pname = "dressing.nvim"; 2292 + version = "2022-06-08"; 2293 src = fetchFromGitHub { 2294 owner = "stevearc"; 2295 repo = "dressing.nvim"; 2296 + rev = "af179837e1cdddfb164f0296883951b2255c46d2"; 2297 + sha256 = "1i38j2zq6g7rypkwfc0hglp9va6l55jcwpy63fa27jq81bp37nnw"; 2298 }; 2299 meta.homepage = "https://github.com/stevearc/dressing.nvim/"; 2300 }; ··· 2338 2339 editorconfig-nvim = buildVimPluginFrom2Nix { 2340 pname = "editorconfig.nvim"; 2341 + version = "2022-06-06"; 2342 src = fetchFromGitHub { 2343 owner = "gpanders"; 2344 repo = "editorconfig.nvim"; 2345 + rev = "73ee7090373c279bb49ae9d87a0cd217c4010701"; 2346 + sha256 = "1y5gqqj03ch6f8kcwfdbbj2bcaz9c4kxdyphfpfzsicmw989gqmb"; 2347 }; 2348 meta.homepage = "https://github.com/gpanders/editorconfig.nvim/"; 2349 }; ··· 2483 2484 fern-vim = buildVimPluginFrom2Nix { 2485 pname = "fern.vim"; 2486 + version = "2022-06-05"; 2487 src = fetchFromGitHub { 2488 owner = "lambdalisue"; 2489 repo = "fern.vim"; 2490 + rev = "7ba49dd915c32ede51a6f6db3c4367748707a156"; 2491 + sha256 = "042kdnki0k6fyp951r054wlwdfm3a2wm4m4q6as9x8dikb80yn00"; 2492 }; 2493 meta.homepage = "https://github.com/lambdalisue/fern.vim/"; 2494 }; ··· 2580 2581 flutter-tools-nvim = buildVimPluginFrom2Nix { 2582 pname = "flutter-tools.nvim"; 2583 + version = "2022-06-08"; 2584 src = fetchFromGitHub { 2585 owner = "akinsho"; 2586 repo = "flutter-tools.nvim"; 2587 + rev = "bd6cd6744528425cead90d796ad7a96ae4d58b33"; 2588 + sha256 = "0b3fzsppilpjc33ql4b7rbxvh2ip5kbyhjvqmfmg0kvyvx8d2m3w"; 2589 }; 2590 meta.homepage = "https://github.com/akinsho/flutter-tools.nvim/"; 2591 }; ··· 2616 2617 friendly-snippets = buildVimPluginFrom2Nix { 2618 pname = "friendly-snippets"; 2619 + version = "2022-06-09"; 2620 src = fetchFromGitHub { 2621 owner = "rafamadriz"; 2622 repo = "friendly-snippets"; 2623 + rev = "d27a83a363e61009278b6598703a763ce9c8e617"; 2624 + sha256 = "1l1swsdn601dbmmpp5fz5r0aqr2bq9fmhmrx33dfph946x3flafs"; 2625 }; 2626 meta.homepage = "https://github.com/rafamadriz/friendly-snippets/"; 2627 }; ··· 2686 meta.homepage = "https://github.com/stsewd/fzf-checkout.vim/"; 2687 }; 2688 2689 + fzf-hoogle-vim = buildVimPluginFrom2Nix { 2690 + pname = "fzf-hoogle.vim"; 2691 + version = "2022-05-01"; 2692 + src = fetchFromGitHub { 2693 + owner = "monkoose"; 2694 + repo = "fzf-hoogle.vim"; 2695 + rev = "16c08d1534aea2cd1cea1a1e20783bd22f634c77"; 2696 + sha256 = "0k7cdi00ixqdkqmyqnapn5aplyn0w78iwvm7ifyi9j3smz57hzhf"; 2697 + }; 2698 + meta.homepage = "https://github.com/monkoose/fzf-hoogle.vim/"; 2699 + }; 2700 + 2701 fzf-lsp-nvim = buildVimPluginFrom2Nix { 2702 pname = "fzf-lsp.nvim"; 2703 version = "2022-05-16"; ··· 2712 2713 fzf-lua = buildVimPluginFrom2Nix { 2714 pname = "fzf-lua"; 2715 + version = "2022-06-09"; 2716 src = fetchFromGitHub { 2717 owner = "ibhagwan"; 2718 repo = "fzf-lua"; 2719 + rev = "343322108d2458994f64af3396efccd4875326b5"; 2720 + sha256 = "0lq9dk2iglphjn8n8ai70spyz63cin987mnjn8415g258nyfis8x"; 2721 }; 2722 meta.homepage = "https://github.com/ibhagwan/fzf-lua/"; 2723 }; ··· 2904 2905 glow-nvim = buildVimPluginFrom2Nix { 2906 pname = "glow.nvim"; 2907 + version = "2022-06-06"; 2908 src = fetchFromGitHub { 2909 owner = "ellisonleao"; 2910 repo = "glow.nvim"; 2911 + rev = "ef86fff7371974fd69aab1fd926bafb76893bb1b"; 2912 + sha256 = "03i21lrcqi53swbjwfmh21fbwxw3nxb9rcislzys5078j86wicvn"; 2913 }; 2914 meta.homepage = "https://github.com/ellisonleao/glow.nvim/"; 2915 }; ··· 3024 3025 gruvbox-nvim = buildVimPluginFrom2Nix { 3026 pname = "gruvbox.nvim"; 3027 + version = "2022-06-06"; 3028 src = fetchFromGitHub { 3029 owner = "ellisonleao"; 3030 repo = "gruvbox.nvim"; 3031 + rev = "8135da3a90b257a2c902614e71d9cbbef8308cad"; 3032 + sha256 = "1mcyamqxnbhqdg2skkyz6g229qa08a8c0ssbcjsbcy92d4qyx852"; 3033 }; 3034 meta.homepage = "https://github.com/ellisonleao/gruvbox.nvim/"; 3035 }; ··· 3144 3145 hop-nvim = buildVimPluginFrom2Nix { 3146 pname = "hop.nvim"; 3147 + version = "2022-06-09"; 3148 src = fetchFromGitHub { 3149 owner = "phaazon"; 3150 repo = "hop.nvim"; 3151 + rev = "03675eba34d416dd22ad49b2d0e52b6113b434ad"; 3152 + sha256 = "1aaniq2qd59n126v6j11gsl39c9h7nq0x2hidwpdz81yhas97ix2"; 3153 }; 3154 meta.homepage = "https://github.com/phaazon/hop.nvim/"; 3155 }; ··· 3216 3217 impatient-nvim = buildVimPluginFrom2Nix { 3218 pname = "impatient.nvim"; 3219 + version = "2022-06-09"; 3220 src = fetchFromGitHub { 3221 owner = "lewis6991"; 3222 repo = "impatient.nvim"; 3223 + rev = "7821524b7fefb02af8b8e4c4745532b039ebc8de"; 3224 + sha256 = "1nvx2b4qr55dxr9nf641flp7adcad3zp3dlwrb1zc7ay9m5ylg2w"; 3225 }; 3226 meta.homepage = "https://github.com/lewis6991/impatient.nvim/"; 3227 }; ··· 3577 3578 lexima-vim = buildVimPluginFrom2Nix { 3579 pname = "lexima.vim"; 3580 + version = "2022-06-09"; 3581 src = fetchFromGitHub { 3582 owner = "cohama"; 3583 repo = "lexima.vim"; 3584 + rev = "905c14e9b701cea1f05db755398ef0060f2c1fcc"; 3585 + sha256 = "0bv7fnbb4505ckfbd37h9gl1ss2jgargcf14b6kcx620xcw2adnn"; 3586 }; 3587 meta.homepage = "https://github.com/cohama/lexima.vim/"; 3588 }; ··· 3860 sha256 = "1l5naxm1mx8l3xwiqrm60w0avsbhhpxnbr4sgqpnmigb9p2150ip"; 3861 }; 3862 meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/"; 3863 + }; 3864 + 3865 + lspcontainers-nvim = buildVimPluginFrom2Nix { 3866 + pname = "lspcontainers.nvim"; 3867 + version = "2022-05-30"; 3868 + src = fetchFromGitHub { 3869 + owner = "lspcontainers"; 3870 + repo = "lspcontainers.nvim"; 3871 + rev = "3c9d2156a447eb111ec60f4358768eb7510c5d0d"; 3872 + sha256 = "043ylgpzl1ahcf62s6m0y65ddwlxcw79qksqr2304c4vhzv5sv8w"; 3873 + }; 3874 + meta.homepage = "https://github.com/lspcontainers/lspcontainers.nvim/"; 3875 }; 3876 3877 lspkind-nvim = buildVimPluginFrom2Nix { ··· 4464 4465 neorg = buildVimPluginFrom2Nix { 4466 pname = "neorg"; 4467 + version = "2022-06-07"; 4468 src = fetchFromGitHub { 4469 owner = "nvim-neorg"; 4470 repo = "neorg"; 4471 + rev = "c0ebefa516aa9e93431f0a55e033db0dec072857"; 4472 + sha256 = "0x9qpybjj7h6b6l10bkfmwf3qn54fcbbb5spx8n1hkny40npvnn5"; 4473 }; 4474 meta.homepage = "https://github.com/nvim-neorg/neorg/"; 4475 }; ··· 4524 4525 neovim-ayu = buildVimPluginFrom2Nix { 4526 pname = "neovim-ayu"; 4527 + version = "2022-06-05"; 4528 src = fetchFromGitHub { 4529 owner = "Shatur"; 4530 repo = "neovim-ayu"; 4531 + rev = "621b5eeaf9b5c1b7affb327df3889f869b3c2893"; 4532 + sha256 = "172pxda6168a3b6xx2ba8njq72y3y5bybg5a983zncxvn00qpi9a"; 4533 }; 4534 meta.homepage = "https://github.com/Shatur/neovim-ayu/"; 4535 }; ··· 4644 4645 nightfox-nvim = buildVimPluginFrom2Nix { 4646 pname = "nightfox.nvim"; 4647 + version = "2022-06-08"; 4648 src = fetchFromGitHub { 4649 owner = "EdenEast"; 4650 repo = "nightfox.nvim"; 4651 + rev = "b85c5c3a0e3b309ffa7d0a6ca33e430c91532ba0"; 4652 + sha256 = "18q8w946qy37n0zv0hj1nr2w1p1xrfyikg7s5g372d083v0rqv9f"; 4653 }; 4654 meta.homepage = "https://github.com/EdenEast/nightfox.nvim/"; 4655 }; ··· 4752 4753 null-ls-nvim = buildVimPluginFrom2Nix { 4754 pname = "null-ls.nvim"; 4755 + version = "2022-06-09"; 4756 src = fetchFromGitHub { 4757 owner = "jose-elias-alvarez"; 4758 repo = "null-ls.nvim"; 4759 + rev = "5d5cba15594c1b093a2177b339f34b3e3468fb46"; 4760 + sha256 = "0pr8xxcsv6aahgcfqls3sp5k58dsq8bgvdhh8b6zsmrpaxsh3rz3"; 4761 }; 4762 meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; 4763 }; ··· 4800 4801 nvim-autopairs = buildVimPluginFrom2Nix { 4802 pname = "nvim-autopairs"; 4803 + version = "2022-06-09"; 4804 src = fetchFromGitHub { 4805 owner = "windwp"; 4806 repo = "nvim-autopairs"; 4807 + rev = "84cde3547e9a8b16db0bfe523e98e19b7be5148b"; 4808 + sha256 = "0hkfa28lcldacsxfccp99wbp42qp3cxffh5rg5s2brkkr3xdp3yl"; 4809 }; 4810 meta.homepage = "https://github.com/windwp/nvim-autopairs/"; 4811 }; ··· 4836 4837 nvim-bqf = buildVimPluginFrom2Nix { 4838 pname = "nvim-bqf"; 4839 + version = "2022-06-06"; 4840 src = fetchFromGitHub { 4841 owner = "kevinhwang91"; 4842 repo = "nvim-bqf"; 4843 + rev = "1a58f72ac731a3cf17708301ddf094c2033ebc4e"; 4844 + sha256 = "0iy4kfd7a5pmsr63gjaplpxgw4nsrhsric7r3dhl3zisdzpn9kzm"; 4845 }; 4846 meta.homepage = "https://github.com/kevinhwang91/nvim-bqf/"; 4847 }; ··· 4872 4873 nvim-cmp = buildVimPluginFrom2Nix { 4874 pname = "nvim-cmp"; 4875 + version = "2022-06-09"; 4876 src = fetchFromGitHub { 4877 owner = "hrsh7th"; 4878 repo = "nvim-cmp"; 4879 + rev = "15c7bf7c0dfb7c75eb526c53f9574633c13dc22d"; 4880 + sha256 = "0fncx8cr915p5wxjb2wqmc5l3p1mjy0vwmkik4alz422c9zh436z"; 4881 }; 4882 meta.homepage = "https://github.com/hrsh7th/nvim-cmp/"; 4883 }; ··· 4968 4969 nvim-dap = buildVimPluginFrom2Nix { 4970 pname = "nvim-dap"; 4971 + version = "2022-06-09"; 4972 src = fetchFromGitHub { 4973 owner = "mfussenegger"; 4974 repo = "nvim-dap"; 4975 + rev = "8092586db723beb41312f288e38a7d8edc6459d9"; 4976 + sha256 = "01rf6jl4b9amhkdjw8ayyx55njmklrbyb98kf4ybbcsgdjj587y7"; 4977 }; 4978 meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; 4979 }; 4980 4981 nvim-dap-ui = buildVimPluginFrom2Nix { 4982 pname = "nvim-dap-ui"; 4983 + version = "2022-06-06"; 4984 src = fetchFromGitHub { 4985 owner = "rcarriga"; 4986 repo = "nvim-dap-ui"; 4987 + rev = "d76d6594374fb54abf2d94d6a320f3fd6e9bb2f7"; 4988 + sha256 = "1yibykhd0kilzz67rmn392l27mmjmrcw62vmcilmyldnymxlqg85"; 4989 }; 4990 meta.homepage = "https://github.com/rcarriga/nvim-dap-ui/"; 4991 }; ··· 5016 5017 nvim-fzf = buildVimPluginFrom2Nix { 5018 pname = "nvim-fzf"; 5019 + version = "2022-06-04"; 5020 src = fetchFromGitHub { 5021 owner = "vijaymarupudi"; 5022 repo = "nvim-fzf"; 5023 + rev = "e3973c18931e63dc13c5efa8fb0fc3b08f1dc90d"; 5024 + sha256 = "1b4m83xsvgr5ikvgy213rkf46nwjv8vsi8pz5bxnvv8ndbg248hz"; 5025 }; 5026 meta.homepage = "https://github.com/vijaymarupudi/nvim-fzf/"; 5027 }; ··· 5052 5053 nvim-gps = buildVimPluginFrom2Nix { 5054 pname = "nvim-gps"; 5055 + version = "2022-06-09"; 5056 src = fetchFromGitHub { 5057 owner = "smiteshp"; 5058 repo = "nvim-gps"; 5059 + rev = "c1e561d2937048174916667af0349bc4b7b3d2e9"; 5060 + sha256 = "0g2r45yx2vx2j7yx5n2gc4v36629vz0ngaz3q1hmwpcr15qxbb3v"; 5061 }; 5062 meta.homepage = "https://github.com/smiteshp/nvim-gps/"; 5063 }; ··· 5122 meta.homepage = "https://github.com/gennaro-tedesco/nvim-jqx/"; 5123 }; 5124 5125 + nvim-lastplace = buildVimPluginFrom2Nix { 5126 + pname = "nvim-lastplace"; 5127 + version = "2021-10-15"; 5128 + src = fetchFromGitHub { 5129 + owner = "ethanholz"; 5130 + repo = "nvim-lastplace"; 5131 + rev = "30fe710d4417cc67950bbce6b2ec2ac0ff430e12"; 5132 + sha256 = "04sjh0srlv0yxc8x27yaj9cpfaz0dd116nk5pccam84fk8v3bw1h"; 5133 + }; 5134 + meta.homepage = "https://github.com/ethanholz/nvim-lastplace/"; 5135 + }; 5136 + 5137 nvim-lightbulb = buildVimPluginFrom2Nix { 5138 pname = "nvim-lightbulb"; 5139 + version = "2022-06-08"; 5140 src = fetchFromGitHub { 5141 owner = "kosayoda"; 5142 repo = "nvim-lightbulb"; 5143 + rev = "1e2844b68a07d3e7ad9e6cc9a2aebc347488ec1b"; 5144 + sha256 = "0mff25sbbksfl88zcylqj4p6b9iyr34pqws1lssvrajbqjgprcbq"; 5145 }; 5146 meta.homepage = "https://github.com/kosayoda/nvim-lightbulb/"; 5147 }; ··· 5160 5161 nvim-lint = buildVimPluginFrom2Nix { 5162 pname = "nvim-lint"; 5163 + version = "2022-06-08"; 5164 src = fetchFromGitHub { 5165 owner = "mfussenegger"; 5166 repo = "nvim-lint"; 5167 + rev = "28a5f3e24ccc9f70026629e9b87670ab893a870f"; 5168 + sha256 = "11dhxa18djf2rmbnrfm60z9pcmjnblha62yl6sc8d137fj87jppp"; 5169 }; 5170 meta.homepage = "https://github.com/mfussenegger/nvim-lint/"; 5171 }; ··· 5184 5185 nvim-lspconfig = buildVimPluginFrom2Nix { 5186 pname = "nvim-lspconfig"; 5187 + version = "2022-06-09"; 5188 src = fetchFromGitHub { 5189 owner = "neovim"; 5190 repo = "nvim-lspconfig"; 5191 + rev = "4eac16e87f24ad26738e632446e29766e87141ae"; 5192 + sha256 = "0shpjy5p316yxs6d8028s93z1i7rv5fafpr8vk2zvgrhnvza6q1k"; 5193 }; 5194 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 5195 }; ··· 5206 meta.homepage = "https://github.com/RishabhRD/nvim-lsputils/"; 5207 }; 5208 5209 + nvim-luapad = buildVimPluginFrom2Nix { 5210 + pname = "nvim-luapad"; 5211 + version = "2022-04-10"; 5212 + src = fetchFromGitHub { 5213 + owner = "rafcamlet"; 5214 + repo = "nvim-luapad"; 5215 + rev = "3f0d7453987c7bef87d55b8051f252578853399c"; 5216 + sha256 = "0h97hqbx7kbwkqhbq76k5l6rcr2bmdm17g0dps2g82lizmyhpfk0"; 5217 + }; 5218 + meta.homepage = "https://github.com/rafcamlet/nvim-luapad/"; 5219 + }; 5220 + 5221 nvim-metals = buildVimPluginFrom2Nix { 5222 pname = "nvim-metals"; 5223 version = "2022-06-02"; ··· 5256 5257 nvim-notify = buildVimPluginFrom2Nix { 5258 pname = "nvim-notify"; 5259 + version = "2022-06-06"; 5260 src = fetchFromGitHub { 5261 owner = "rcarriga"; 5262 repo = "nvim-notify"; 5263 + rev = "8252aaedfd57ad010d9fee2f620924eac063537d"; 5264 + sha256 = "1p7hwqsxryqc25mazdxvl9q7b1w57qn1sfqg5p9ksln7zh9qs44l"; 5265 }; 5266 meta.homepage = "https://github.com/rcarriga/nvim-notify/"; 5267 }; ··· 5280 5281 nvim-scrollview = buildVimPluginFrom2Nix { 5282 pname = "nvim-scrollview"; 5283 + version = "2022-06-08"; 5284 src = fetchFromGitHub { 5285 owner = "dstein64"; 5286 repo = "nvim-scrollview"; 5287 + rev = "f8308c3c91b7879c3286554dda484bcf973df6ad"; 5288 + sha256 = "1fjabqq1dkf6vjcgags0ny049ckhnljzzxlc81wpd1kmk06nyg3k"; 5289 }; 5290 meta.homepage = "https://github.com/dstein64/nvim-scrollview/"; 5291 }; ··· 5328 5329 nvim-tree-lua = buildVimPluginFrom2Nix { 5330 pname = "nvim-tree.lua"; 5331 + version = "2022-06-07"; 5332 src = fetchFromGitHub { 5333 owner = "kyazdani42"; 5334 repo = "nvim-tree.lua"; 5335 + rev = "1caca6285427ebd2b4f0eb10f4d1ae3956ff09c0"; 5336 + sha256 = "13m893pjn816fp5b0s423vbgk5f6fdhbiqwbbxzz2311ijg72nhh"; 5337 }; 5338 meta.homepage = "https://github.com/kyazdani42/nvim-tree.lua/"; 5339 }; 5340 5341 nvim-treesitter = buildVimPluginFrom2Nix { 5342 pname = "nvim-treesitter"; 5343 + version = "2022-06-09"; 5344 src = fetchFromGitHub { 5345 owner = "nvim-treesitter"; 5346 repo = "nvim-treesitter"; 5347 + rev = "a3cef7881ca8e2b8843a4500df44f94311bcc3df"; 5348 + sha256 = "1yfhc1yhrnv7k0l1p38zydl2xrjfzbwixz0iawpmybw5vmnyl0vi"; 5349 }; 5350 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 5351 }; 5352 5353 nvim-treesitter-context = buildVimPluginFrom2Nix { 5354 pname = "nvim-treesitter-context"; 5355 + version = "2022-06-09"; 5356 src = fetchFromGitHub { 5357 owner = "nvim-treesitter"; 5358 repo = "nvim-treesitter-context"; 5359 + rev = "81116dc03abf35ca99c7910f9f779961042dea12"; 5360 + sha256 = "150r80ik8i11a5dxn71j55gmgpfivlfmnvkqdxjwz6c14asi4ycj"; 5361 }; 5362 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; 5363 }; ··· 5460 5461 nvim-yarp = buildVimPluginFrom2Nix { 5462 pname = "nvim-yarp"; 5463 + version = "2022-06-08"; 5464 src = fetchFromGitHub { 5465 owner = "roxma"; 5466 repo = "nvim-yarp"; 5467 + rev = "bb5f5e038bfe119d3b777845a76b0b919b35ebc8"; 5468 + sha256 = "1ddh1cwm3a46vbz10v3n5mxa52mvwhxr7v902ixx0603ndawmk2g"; 5469 }; 5470 meta.homepage = "https://github.com/roxma/nvim-yarp/"; 5471 }; ··· 5520 5521 octo-nvim = buildVimPluginFrom2Nix { 5522 pname = "octo.nvim"; 5523 + version = "2022-06-08"; 5524 src = fetchFromGitHub { 5525 owner = "pwntester"; 5526 repo = "octo.nvim"; 5527 + rev = "71d4dcfe56d4c45b7f1a1520d65ef5a86d2bc9bd"; 5528 + sha256 = "020k4nni9kqq4sqh86rsca3vkf49b56pllxk81yriwyazn8m3y2r"; 5529 }; 5530 meta.homepage = "https://github.com/pwntester/octo.nvim/"; 5531 }; ··· 5556 5557 onedark-nvim = buildVimPluginFrom2Nix { 5558 pname = "onedark.nvim"; 5559 + version = "2022-06-09"; 5560 src = fetchFromGitHub { 5561 owner = "navarasu"; 5562 repo = "onedark.nvim"; 5563 + rev = "52b1ebd80831dd1232b396b82a77fba977fb6e2c"; 5564 + sha256 = "173y7gwwwf7wdd07kgs95p5iznl202p022vyzzwc4zz41z50zzpa"; 5565 }; 5566 meta.homepage = "https://github.com/navarasu/onedark.nvim/"; 5567 }; ··· 5628 5629 orgmode = buildVimPluginFrom2Nix { 5630 pname = "orgmode"; 5631 + version = "2022-06-07"; 5632 src = fetchFromGitHub { 5633 owner = "nvim-orgmode"; 5634 repo = "orgmode"; 5635 + rev = "d5907359eba50a9f0017043fb220d542e17c5e1f"; 5636 + sha256 = "0wqwxh13vh1hxcajb6zw2js36264zab8mxjnr0bkxmk821h68rwb"; 5637 }; 5638 meta.homepage = "https://github.com/nvim-orgmode/orgmode/"; 5639 }; ··· 5676 5677 papercolor-theme = buildVimPluginFrom2Nix { 5678 pname = "papercolor-theme"; 5679 + version = "2022-06-08"; 5680 src = fetchFromGitHub { 5681 owner = "NLKNguyen"; 5682 repo = "papercolor-theme"; 5683 + rev = "9051480ad9129ff4ab4fffb38b44779b9081626f"; 5684 + sha256 = "15vx37jy75xs1ibxrwwxi3p4yzgsw7y63l8ksaxvddg4lv63gidi"; 5685 }; 5686 meta.homepage = "https://github.com/NLKNguyen/papercolor-theme/"; 5687 }; ··· 5772 5773 plenary-nvim = buildNeovimPluginFrom2Nix { 5774 pname = "plenary.nvim"; 5775 + version = "2022-06-08"; 5776 src = fetchFromGitHub { 5777 owner = "nvim-lua"; 5778 repo = "plenary.nvim"; 5779 + rev = "9c3239bc5f99b85be1123107f7290d16a68f8e64"; 5780 + sha256 = "1d948hq5aa8wbr1lvpi3c54mlgh8z6yk25bfn4ckbs1g1giar8ih"; 5781 }; 5782 meta.homepage = "https://github.com/nvim-lua/plenary.nvim/"; 5783 }; ··· 6050 6051 refactoring-nvim = buildVimPluginFrom2Nix { 6052 pname = "refactoring.nvim"; 6053 + version = "2022-06-09"; 6054 src = fetchFromGitHub { 6055 owner = "theprimeagen"; 6056 repo = "refactoring.nvim"; 6057 + rev = "21b47bda407194fbe1f603256e101c26c0dbe589"; 6058 + sha256 = "0ggd17mmvxpym4ablhy3s46yw9a3xavn9rzvla3j83skpmqyhmmk"; 6059 }; 6060 meta.homepage = "https://github.com/theprimeagen/refactoring.nvim/"; 6061 }; ··· 6226 sha256 = "1dvlmmxykf3vyhyvv5aiqbz8fd7zvpw4xq1nxnf3wyj371caawaq"; 6227 }; 6228 meta.homepage = "https://github.com/Xuyuanp/scrollbar.nvim/"; 6229 + }; 6230 + 6231 + scss-syntax-vim = buildVimPluginFrom2Nix { 6232 + pname = "scss-syntax.vim"; 6233 + version = "2019-06-30"; 6234 + src = fetchFromGitHub { 6235 + owner = "cakebaker"; 6236 + repo = "scss-syntax.vim"; 6237 + rev = "bda22a93d1dcfcb8ee13be1988560d9bb5bd0fef"; 6238 + sha256 = "0p6yy6d7lwi87rvk4c6b2ggrvpddrfksrgdwz993gvxxxbnpwi8q"; 6239 + }; 6240 + meta.homepage = "https://github.com/cakebaker/scss-syntax.vim/"; 6241 }; 6242 6243 securemodelines = buildVimPluginFrom2Nix { ··· 6481 meta.homepage = "https://github.com/lewis6991/spellsitter.nvim/"; 6482 }; 6483 6484 + sphinx-nvim = buildVimPluginFrom2Nix { 6485 + pname = "sphinx.nvim"; 6486 + version = "2021-08-08"; 6487 + src = fetchFromGitHub { 6488 + owner = "stsewd"; 6489 + repo = "sphinx.nvim"; 6490 + rev = "65160298c586cab13d94e07ed3ebf4cff20f2be5"; 6491 + sha256 = "0l0cvd8pzf1crb5g2zag3v6gxzfzs38i8pyq30ls3l16phaslnny"; 6492 + }; 6493 + meta.homepage = "https://github.com/stsewd/sphinx.nvim/"; 6494 + }; 6495 + 6496 splice-vim = buildVimPluginFrom2Nix { 6497 pname = "splice.vim"; 6498 version = "2020-01-15"; ··· 6532 6533 sqlite-lua = buildVimPluginFrom2Nix { 6534 pname = "sqlite.lua"; 6535 + version = "2022-06-07"; 6536 src = fetchFromGitHub { 6537 owner = "tami5"; 6538 repo = "sqlite.lua"; 6539 + rev = "de2cc544127d6dfd7f6ff3d4960b21dd6db4f1dd"; 6540 + sha256 = "1mj4m1fk9y4l6418zamiqln09dg2h4cw9k9bywv55gd735gwfapp"; 6541 }; 6542 meta.homepage = "https://github.com/tami5/sqlite.lua/"; 6543 }; 6544 6545 srcery-vim = buildVimPluginFrom2Nix { 6546 pname = "srcery-vim"; 6547 + version = "2022-06-08"; 6548 src = fetchFromGitHub { 6549 owner = "srcery-colors"; 6550 repo = "srcery-vim"; 6551 + rev = "0ff514ff249d0e6b6cc4702d6606f196e3827fc8"; 6552 + sha256 = "0l5j9y414nxxiw0vxcygxfd09hn1wbwh3d6a735n6n3kn3z42ww5"; 6553 }; 6554 meta.homepage = "https://github.com/srcery-colors/srcery-vim/"; 6555 }; ··· 6660 sha256 = "070fzga0b039wjhfzb7s0s422kv3as7ifv94ma6vh62ml6zm6mpl"; 6661 }; 6662 meta.homepage = "https://github.com/peterbjorgensen/sved/"; 6663 + }; 6664 + 6665 + swayconfig-vim = buildVimPluginFrom2Nix { 6666 + pname = "swayconfig.vim"; 6667 + version = "2022-05-25"; 6668 + src = fetchFromGitHub { 6669 + owner = "jamespeapen"; 6670 + repo = "swayconfig.vim"; 6671 + rev = "ef79800f4d4864bc3687cfbc92be6dd1988e1fc4"; 6672 + sha256 = "0akkpiybyzddnqfgr8fyb74icyyankzq1fhax586l897c083wvga"; 6673 + }; 6674 + meta.homepage = "https://github.com/jamespeapen/swayconfig.vim/"; 6675 }; 6676 6677 swift-vim = buildVimPluginFrom2Nix { ··· 6810 6811 tagbar = buildVimPluginFrom2Nix { 6812 pname = "tagbar"; 6813 + version = "2022-06-09"; 6814 src = fetchFromGitHub { 6815 owner = "preservim"; 6816 repo = "tagbar"; 6817 + rev = "0243b19920a683df531f19bb7fb80c0ff83927dd"; 6818 + sha256 = "0pkqkcwngasxgm9vywh0rjkq3hdik2a02k1z06rjmsrpnl4g4qvp"; 6819 }; 6820 meta.homepage = "https://github.com/preservim/tagbar/"; 6821 }; ··· 6942 6943 telescope-fzf-native-nvim = buildVimPluginFrom2Nix { 6944 pname = "telescope-fzf-native.nvim"; 6945 + version = "2022-06-09"; 6946 src = fetchFromGitHub { 6947 owner = "nvim-telescope"; 6948 repo = "telescope-fzf-native.nvim"; 6949 + rev = "6a33ecefa9b3d9ade654f9a7a6396a00c3758ca6"; 6950 + sha256 = "1ssznk16fhnqsp2kwff48ccbrgw2cbaxjhbj6wzap9cbw78kxpf9"; 6951 }; 6952 meta.homepage = "https://github.com/nvim-telescope/telescope-fzf-native.nvim/"; 6953 }; ··· 7087 7088 telescope-nvim = buildVimPluginFrom2Nix { 7089 pname = "telescope.nvim"; 7090 + version = "2022-06-06"; 7091 src = fetchFromGitHub { 7092 owner = "nvim-telescope"; 7093 repo = "telescope.nvim"; 7094 + rev = "e6b69b1488c598ff7b461c4d9cecad57ef708f9b"; 7095 + sha256 = "060149lbhsbn0vfdivng5pc48lnfhpjwsdc0ppvvvl45b5in7k27"; 7096 }; 7097 meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 7098 }; ··· 7268 7269 toggleterm-nvim = buildVimPluginFrom2Nix { 7270 pname = "toggleterm.nvim"; 7271 + version = "2022-06-07"; 7272 src = fetchFromGitHub { 7273 owner = "akinsho"; 7274 repo = "toggleterm.nvim"; 7275 + rev = "50f88d316261bfe56854cb75b9d092061c38b21e"; 7276 + sha256 = "1cf6vqjcn5nk2ymjpflpxr9ic2k0y4bnxzy24n0q8vp05dp69qv2"; 7277 }; 7278 meta.homepage = "https://github.com/akinsho/toggleterm.nvim/"; 7279 }; ··· 7388 7389 ultisnips = buildVimPluginFrom2Nix { 7390 pname = "ultisnips"; 7391 + version = "2022-06-07"; 7392 src = fetchFromGitHub { 7393 owner = "SirVer"; 7394 repo = "ultisnips"; 7395 + rev = "5fc4862eea9bc72cf0f03c56a4a09fd76d9fee35"; 7396 + sha256 = "04hy5v2brixsg5b3pl3d1m1ihwh5yj98zi3zm1zrj4r4kafnm08x"; 7397 }; 7398 meta.homepage = "https://github.com/SirVer/ultisnips/"; 7399 }; ··· 7508 7509 vifm-vim = buildVimPluginFrom2Nix { 7510 pname = "vifm.vim"; 7511 + version = "2022-06-04"; 7512 src = fetchFromGitHub { 7513 owner = "vifm"; 7514 repo = "vifm.vim"; 7515 + rev = "d2e2a1fbed196e3bb273fe87bbd821a7e80be298"; 7516 + sha256 = "00jvhicwa9wmf1pbd4fi4423jh02x5i7h5bgi21avfgyfxrvlaaj"; 7517 }; 7518 meta.homepage = "https://github.com/vifm/vifm.vim/"; 7519 }; ··· 7844 7845 vim-airline = buildVimPluginFrom2Nix { 7846 pname = "vim-airline"; 7847 + version = "2022-06-08"; 7848 src = fetchFromGitHub { 7849 owner = "vim-airline"; 7850 repo = "vim-airline"; 7851 + rev = "97a9aa4bdb24eea5e85ac0015bdd570f42bad6e7"; 7852 + sha256 = "1mmvri32fy9yhn3yskqq3dipn1gfzlhnwd9dz4yqqxs57q04pj2y"; 7853 }; 7854 meta.homepage = "https://github.com/vim-airline/vim-airline/"; 7855 }; ··· 7988 7989 vim-autoformat = buildVimPluginFrom2Nix { 7990 pname = "vim-autoformat"; 7991 + version = "2022-06-08"; 7992 src = fetchFromGitHub { 7993 owner = "vim-autoformat"; 7994 repo = "vim-autoformat"; 7995 + rev = "fc8eb893db0c3c7eb204066d1954a59bc78819b9"; 7996 + sha256 = "0c8d84pgg6rck6pxm12w46k1smsaw0d83hs899ws78zcamamp7y2"; 7997 }; 7998 meta.homepage = "https://github.com/vim-autoformat/vim-autoformat/"; 7999 }; ··· 8216 8217 vim-clap = buildVimPluginFrom2Nix { 8218 pname = "vim-clap"; 8219 + version = "2022-06-09"; 8220 src = fetchFromGitHub { 8221 owner = "liuchengxu"; 8222 repo = "vim-clap"; 8223 + rev = "181524923fe04c554e37fc5acab51545b2a4715e"; 8224 + sha256 = "0355hn1v5k1j86k8bw61vjb84cbgsg214ax07l5jrfk5dzh1avcl"; 8225 }; 8226 meta.homepage = "https://github.com/liuchengxu/vim-clap/"; 8227 }; ··· 8341 owner = "flazz"; 8342 repo = "vim-colorschemes"; 8343 rev = "fd8f122cef604330c96a6a6e434682dbdfb878c9"; 8344 + sha256 = "0kpsf6j20fgblc8vhqn7ymr52v2d1h52vc7rbxmxfwdm80nvv3g5"; 8345 }; 8346 meta.homepage = "https://github.com/flazz/vim-colorschemes/"; 8347 }; ··· 8948 8949 vim-flutter = buildVimPluginFrom2Nix { 8950 pname = "vim-flutter"; 8951 + version = "2022-06-04"; 8952 src = fetchFromGitHub { 8953 owner = "thosakwe"; 8954 repo = "vim-flutter"; 8955 + rev = "32b9fa0126a4a4994c296c69ad038dc78aa83d68"; 8956 + sha256 = "1yv795yalidcz2y3x6h14764g70l8v4cdj9i4yf2pgs0rl0f4sqw"; 8957 }; 8958 meta.homepage = "https://github.com/thosakwe/vim-flutter/"; 8959 }; ··· 8996 8997 vim-fugitive = buildVimPluginFrom2Nix { 8998 pname = "vim-fugitive"; 8999 + version = "2022-06-07"; 9000 src = fetchFromGitHub { 9001 owner = "tpope"; 9002 repo = "vim-fugitive"; 9003 + rev = "92c73bb0507338441733198d630a1fe5e7fdac3a"; 9004 + sha256 = "0skxvlxnxcwj22qwh166i1kkn7iir3jndw1ixwvh3iipq46910zq"; 9005 }; 9006 meta.homepage = "https://github.com/tpope/vim-fugitive/"; 9007 }; ··· 9140 9141 vim-go = buildVimPluginFrom2Nix { 9142 pname = "vim-go"; 9143 + version = "2022-06-09"; 9144 src = fetchFromGitHub { 9145 owner = "fatih"; 9146 repo = "vim-go"; 9147 + rev = "b7506c6da8ea3a88e268a91aa6630be3e26a20a9"; 9148 + sha256 = "1n0b5057q41d32gdlvcxv01xgj7m30428fyqrr6la2maixvv77zw"; 9149 }; 9150 meta.homepage = "https://github.com/fatih/vim-go/"; 9151 }; ··· 9164 9165 vim-graphql = buildVimPluginFrom2Nix { 9166 pname = "vim-graphql"; 9167 + version = "2022-06-05"; 9168 src = fetchFromGitHub { 9169 owner = "jparise"; 9170 repo = "vim-graphql"; 9171 + rev = "4bf5d33bda83117537aa3c117dee5b9b14fc9333"; 9172 + sha256 = "119ldy55w58mq31zb8whlq17rp3ginvx7n45h1r91279p2gl1ch6"; 9173 }; 9174 meta.homepage = "https://github.com/jparise/vim-graphql/"; 9175 }; ··· 9549 9550 vim-javacomplete2 = buildVimPluginFrom2Nix { 9551 pname = "vim-javacomplete2"; 9552 + version = "2022-06-05"; 9553 src = fetchFromGitHub { 9554 owner = "artur-shaik"; 9555 repo = "vim-javacomplete2"; 9556 + rev = "a716e32bbe36daaed6ebc9aae76525aad9536245"; 9557 + sha256 = "0fz4dlwzpzwzilk3lmxim27i691hl5yi83rcl4sdw73qyw8spzph"; 9558 }; 9559 meta.homepage = "https://github.com/artur-shaik/vim-javacomplete2/"; 9560 }; ··· 9922 9923 vim-markbar = buildVimPluginFrom2Nix { 9924 pname = "vim-markbar"; 9925 + version = "2022-06-06"; 9926 src = fetchFromGitHub { 9927 owner = "Yilin-Yang"; 9928 repo = "vim-markbar"; 9929 + rev = "7893b2d627dadeaa717758648996ea01e41873eb"; 9930 + sha256 = "0b95wc863zyj3mlgdgqvd1q1w2mpp4bvd4rawj665993a2xqkl7x"; 9931 }; 9932 meta.homepage = "https://github.com/Yilin-Yang/vim-markbar/"; 9933 }; ··· 9995 9996 vim-merginal = buildVimPluginFrom2Nix { 9997 pname = "vim-merginal"; 9998 + version = "2022-06-06"; 9999 src = fetchFromGitHub { 10000 owner = "idanarye"; 10001 repo = "vim-merginal"; 10002 + rev = "d61345a6579a0e141499fc0deb4cdd0620d94344"; 10003 + sha256 = "12h15pqv19nxqzy4rflq6lmgnadhrqsyr77ykf0xfc1gzw8431li"; 10004 }; 10005 meta.homepage = "https://github.com/idanarye/vim-merginal/"; 10006 }; ··· 10055 10056 vim-move = buildVimPluginFrom2Nix { 10057 pname = "vim-move"; 10058 + version = "2022-06-07"; 10059 src = fetchFromGitHub { 10060 owner = "matze"; 10061 repo = "vim-move"; 10062 + rev = "31e7230dc7f2485b7315ddea519441f23c78d7d3"; 10063 + sha256 = "16h5say2yxc74dbv2x2kzs955w3rkksv3ja2fy7lbcqa05gwbfx5"; 10064 }; 10065 meta.homepage = "https://github.com/matze/vim-move/"; 10066 }; ··· 10787 10788 vim-rails = buildVimPluginFrom2Nix { 10789 pname = "vim-rails"; 10790 + version = "2022-06-08"; 10791 src = fetchFromGitHub { 10792 owner = "tpope"; 10793 repo = "vim-rails"; 10794 + rev = "6bc0c7826d68f8c44c8347a3012aa79ade4f0a22"; 10795 + sha256 = "047lk3i2b5nbkbnyjgy0i0zm8da3g8kwmzas3ckp4rx2aj49bn51"; 10796 }; 10797 meta.homepage = "https://github.com/tpope/vim-rails/"; 10798 }; ··· 11388 11389 vim-test = buildVimPluginFrom2Nix { 11390 pname = "vim-test"; 11391 + version = "2022-06-08"; 11392 src = fetchFromGitHub { 11393 owner = "vim-test"; 11394 repo = "vim-test"; 11395 + rev = "ee81a7a50c684298b0eb12bcbdef8cfe3eb1f515"; 11396 + sha256 = "06wx8d62zp5x738mhs869gr88cih7cdjcgfx2f2msdbyjqq5zdq3"; 11397 }; 11398 meta.homepage = "https://github.com/vim-test/vim-test/"; 11399 }; ··· 11724 11725 vim-vp4 = buildVimPluginFrom2Nix { 11726 pname = "vim-vp4"; 11727 + version = "2022-06-06"; 11728 src = fetchFromGitHub { 11729 owner = "ngemily"; 11730 repo = "vim-vp4"; 11731 + rev = "c08df4fa9639949c339cbac7835b67288aad63ae"; 11732 + sha256 = "1sr75a4rgcgfqxh5ipivpks4y2nzzdxybijawgqyjn1i110iy502"; 11733 }; 11734 meta.homepage = "https://github.com/ngemily/vim-vp4/"; 11735 }; ··· 11808 11809 vim-which-key = buildVimPluginFrom2Nix { 11810 pname = "vim-which-key"; 11811 + version = "2022-06-07"; 11812 src = fetchFromGitHub { 11813 owner = "liuchengxu"; 11814 repo = "vim-which-key"; 11815 + rev = "d7d451daa66154031dd9fb24c1798b4d07a820d9"; 11816 + sha256 = "0f7rcmlnp24zag9ypfwd0i6bsikm0ndd58jnpv008qq8hl80rps1"; 11817 }; 11818 meta.homepage = "https://github.com/liuchengxu/vim-which-key/"; 11819 }; ··· 12073 12074 vimtex = buildVimPluginFrom2Nix { 12075 pname = "vimtex"; 12076 + version = "2022-06-05"; 12077 src = fetchFromGitHub { 12078 owner = "lervag"; 12079 repo = "vimtex"; 12080 + rev = "754bf6c97272e9bf479057b44cc968c4dad34753"; 12081 + sha256 = "1igkd96171rhw0xdqikjhg99527jkkg7i6ri10p83v1fx9a7bk5y"; 12082 }; 12083 meta.homepage = "https://github.com/lervag/vimtex/"; 12084 }; ··· 12289 12290 yats-vim = buildVimPluginFrom2Nix { 12291 pname = "yats.vim"; 12292 + version = "2022-06-09"; 12293 src = fetchFromGitHub { 12294 owner = "HerringtonDarkholme"; 12295 repo = "yats.vim"; 12296 + rev = "a5dd9a768b33e843647bddd6e828403cf4ea4476"; 12297 + sha256 = "10h8b27z18cblnfbyjig28y0jwn9lf076z1qid4mpl4zklzgphls"; 12298 fetchSubmodules = true; 12299 }; 12300 meta.homepage = "https://github.com/HerringtonDarkholme/yats.vim/"; ··· 12338 12339 zephyr-nvim = buildVimPluginFrom2Nix { 12340 pname = "zephyr-nvim"; 12341 + version = "2022-06-07"; 12342 src = fetchFromGitHub { 12343 owner = "glepnir"; 12344 repo = "zephyr-nvim"; 12345 + rev = "88a791e125fd7fe6399728329e7c5a52072ad47d"; 12346 + sha256 = "0sbnr6i841176mp06dr3dhn44zam0bv3hs70fzcfs5vpji6ddk7s"; 12347 }; 12348 meta.homepage = "https://github.com/glepnir/zephyr-nvim/"; 12349 }; ··· 12398 12399 chad = buildVimPluginFrom2Nix { 12400 pname = "chad"; 12401 + version = "2022-06-09"; 12402 src = fetchFromGitHub { 12403 owner = "ms-jpq"; 12404 repo = "chadtree"; 12405 + rev = "9565764a38a6ad352b6daaf40aaec1ec6aae67a4"; 12406 + sha256 = "0frcfxnf6zzsslcpslsgpcb04ylxcf50lr3yg0gcap38gwwhna6p"; 12407 }; 12408 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 12409 };
+16 -2
pkgs/applications/editors/vim/plugins/overrides.nix
··· 20 , dasht 21 , direnv 22 , fzf 23 , gnome 24 , himalaya 25 , khard 26 , languagetool 27 , llvmPackages ··· 298 prePatch = '' 299 rm Makefile 300 ''; 301 }); 302 303 fzf-lua = super.fzf-lua.overrideAttrs (old: { ··· 845 let 846 maple-bin = rustPlatform.buildRustPackage { 847 name = "maple"; 848 - src = old.src; 849 850 nativeBuildInputs = [ 851 pkg-config ··· 860 libiconv 861 ]; 862 863 - cargoSha256 = "0l1x7kprnxa95pbf8ml9ixmj0cmbnnv6nd0v6qry8j67rx8plpmp"; 864 }; 865 in 866 ''
··· 20 , dasht 21 , direnv 22 , fzf 23 + , gawk 24 , gnome 25 , himalaya 26 + , jq 27 , khard 28 , languagetool 29 , llvmPackages ··· 300 prePatch = '' 301 rm Makefile 302 ''; 303 + }); 304 + 305 + fzf-hoogle-vim = super.fzf-hoogle-vim.overrideAttrs (old: { 306 + 307 + # add this to your lua config to prevent the plugin from trying to write in the 308 + # nix store: 309 + # vim.g.hoogle_fzf_cache_file = vim.fn.stdpath('cache')..'/hoogle_cache.json' 310 + propagatedBuildInputs = [ 311 + jq 312 + gawk 313 + ]; 314 + dependencies = with self; [ fzf-vim ]; 315 }); 316 317 fzf-lua = super.fzf-lua.overrideAttrs (old: { ··· 859 let 860 maple-bin = rustPlatform.buildRustPackage { 861 name = "maple"; 862 + inherit (old) src; 863 864 nativeBuildInputs = [ 865 pkg-config ··· 874 libiconv 875 ]; 876 877 + cargoSha256 = "sha256-XmQTRmOO/tyA0F6FQQRxZPcVXCYZkEAiNIzU/ismjc0="; 878 }; 879 in 880 ''
+8
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 41 https://github.com/mileszs/ack.vim/,, 42 https://github.com/eikenb/acp/,, 43 https://github.com/stevearc/aerial.nvim/,, 44 https://github.com/derekelkins/agda-vim/,, 45 https://github.com/slashmili/alchemist.vim/,, 46 https://github.com/dense-analysis/ale/,, ··· 223 https://github.com/BeneCollyridam/futhark-vim/,, 224 https://github.com/rktjmp/fwatch.nvim/,, 225 https://github.com/stsewd/fzf-checkout.vim/,, 226 https://github.com/gfanto/fzf-lsp.nvim/,, 227 https://github.com/ibhagwan/fzf-lua/,HEAD, 228 https://github.com/junegunn/fzf.vim/,, ··· 321 https://github.com/nvim-lua/lsp_extensions.nvim/,, 322 https://git.sr.ht/~whynothugo/lsp_lines.nvim,, 323 https://github.com/ray-x/lsp_signature.nvim/,, 324 https://github.com/onsails/lspkind-nvim/,, 325 https://github.com/tami5/lspsaga.nvim/,, 326 https://github.com/folke/lua-dev.nvim/,, ··· 428 https://github.com/neovimhaskell/nvim-hs.vim/,, 429 https://github.com/mfussenegger/nvim-jdtls/,, 430 https://github.com/gennaro-tedesco/nvim-jqx/,, 431 https://github.com/kosayoda/nvim-lightbulb/,, 432 https://github.com/josa42/nvim-lightline-lsp/,, 433 https://github.com/mfussenegger/nvim-lint/,, 434 https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils/,, 435 https://github.com/neovim/nvim-lspconfig/,, 436 https://github.com/RishabhRD/nvim-lsputils/,, 437 https://github.com/scalameta/nvim-metals/,, 438 https://github.com/AckslD/nvim-neoclip.lua/,, 439 https://github.com/yamatsum/nvim-nonicons/,, ··· 518 https://github.com/hauleth/sad.vim/,, 519 https://github.com/vmware-archive/salt-vim/,, 520 https://github.com/Xuyuanp/scrollbar.nvim/,, 521 https://github.com/RobertAudi/securemodelines/,, 522 https://github.com/megaannum/self/,, 523 https://github.com/jaxbot/semantic-highlight.vim/,, ··· 538 https://github.com/chrisgeo/sparkup/,, 539 https://github.com/edluffy/specs.nvim/,, 540 https://github.com/lewis6991/spellsitter.nvim/,HEAD, 541 https://github.com/sjl/splice.vim/,, 542 https://github.com/vimlab/split-term.vim/,, 543 https://github.com/AndrewRadev/splitjoin.vim/,, ··· 552 https://github.com/ervandew/supertab/,, 553 https://github.com/ur4ltz/surround.nvim/,, 554 https://github.com/peterbjorgensen/sved/,, 555 https://github.com/keith/swift.vim/,, 556 https://github.com/AndrewRadev/switch.vim/,, 557 https://github.com/simrat39/symbols-outline.nvim/,,
··· 41 https://github.com/mileszs/ack.vim/,, 42 https://github.com/eikenb/acp/,, 43 https://github.com/stevearc/aerial.nvim/,, 44 + https://github.com/Numkil/ag.nvim/,, 45 https://github.com/derekelkins/agda-vim/,, 46 https://github.com/slashmili/alchemist.vim/,, 47 https://github.com/dense-analysis/ale/,, ··· 224 https://github.com/BeneCollyridam/futhark-vim/,, 225 https://github.com/rktjmp/fwatch.nvim/,, 226 https://github.com/stsewd/fzf-checkout.vim/,, 227 + https://github.com/monkoose/fzf-hoogle.vim/,HEAD, 228 https://github.com/gfanto/fzf-lsp.nvim/,, 229 https://github.com/ibhagwan/fzf-lua/,HEAD, 230 https://github.com/junegunn/fzf.vim/,, ··· 323 https://github.com/nvim-lua/lsp_extensions.nvim/,, 324 https://git.sr.ht/~whynothugo/lsp_lines.nvim,, 325 https://github.com/ray-x/lsp_signature.nvim/,, 326 + https://github.com/lspcontainers/lspcontainers.nvim/,, 327 https://github.com/onsails/lspkind-nvim/,, 328 https://github.com/tami5/lspsaga.nvim/,, 329 https://github.com/folke/lua-dev.nvim/,, ··· 431 https://github.com/neovimhaskell/nvim-hs.vim/,, 432 https://github.com/mfussenegger/nvim-jdtls/,, 433 https://github.com/gennaro-tedesco/nvim-jqx/,, 434 + https://github.com/ethanholz/nvim-lastplace/,HEAD, 435 https://github.com/kosayoda/nvim-lightbulb/,, 436 https://github.com/josa42/nvim-lightline-lsp/,, 437 https://github.com/mfussenegger/nvim-lint/,, 438 https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils/,, 439 https://github.com/neovim/nvim-lspconfig/,, 440 https://github.com/RishabhRD/nvim-lsputils/,, 441 + https://github.com/rafcamlet/nvim-luapad/,, 442 https://github.com/scalameta/nvim-metals/,, 443 https://github.com/AckslD/nvim-neoclip.lua/,, 444 https://github.com/yamatsum/nvim-nonicons/,, ··· 523 https://github.com/hauleth/sad.vim/,, 524 https://github.com/vmware-archive/salt-vim/,, 525 https://github.com/Xuyuanp/scrollbar.nvim/,, 526 + https://github.com/cakebaker/scss-syntax.vim/,, 527 https://github.com/RobertAudi/securemodelines/,, 528 https://github.com/megaannum/self/,, 529 https://github.com/jaxbot/semantic-highlight.vim/,, ··· 544 https://github.com/chrisgeo/sparkup/,, 545 https://github.com/edluffy/specs.nvim/,, 546 https://github.com/lewis6991/spellsitter.nvim/,HEAD, 547 + https://github.com/stsewd/sphinx.nvim/,, 548 https://github.com/sjl/splice.vim/,, 549 https://github.com/vimlab/split-term.vim/,, 550 https://github.com/AndrewRadev/splitjoin.vim/,, ··· 559 https://github.com/ervandew/supertab/,, 560 https://github.com/ur4ltz/surround.nvim/,, 561 https://github.com/peterbjorgensen/sved/,, 562 + https://github.com/jamespeapen/swayconfig.vim/,, 563 https://github.com/keith/swift.vim/,, 564 https://github.com/AndrewRadev/switch.vim/,, 565 https://github.com/simrat39/symbols-outline.nvim/,,
+5 -14
pkgs/applications/editors/vim/plugins/vim-utils.nix
··· 51 # full documentation at github.com/MarcWeber/vim-addon-manager 52 ]; 53 54 - # there is a pathogen implementation as well, but its startup is slower and [VAM] has more feature 55 - # vimrcConfig.pathogen.knownPlugins = vimPlugins; # optional 56 - # vimrcConfig.pathogen.pluginNames = ["vim-addon-nix"]; 57 }; 58 59 WHAT IS A VIM PLUGIN? ··· 103 contribute to vim-pi so that plugins can be updated automatically. 104 105 106 - CREATING DERVITATIONS AUTOMATICALLY BY PLUGIN NAME 107 ================================================== 108 Most convenient is to use a ~/.vim-scripts file putting a plugin name into each line 109 as documented by [VAM]'s README.md ··· 277 }: 278 279 let 280 - /* pathogen mostly can set &rtp at startup time. Its used very commonly. 281 */ 282 pathogenImpl = let 283 knownPlugins = pathogen.knownPlugins or vimPlugins; 284 285 plugins = findDependenciesRecursively (map (pluginToDrv knownPlugins) pathogen.pluginNames); 286 287 - pluginsEnv = buildEnv { 288 - name = "pathogen-plugin-env"; 289 - paths = map (x: "${x}/${rtpPath}") plugins; 290 }; 291 in 292 - '' 293 - let &rtp.=(empty(&rtp)?"":',')."${vimPlugins.vim-pathogen.rtp}" 294 - execute pathogen#infect('${pluginsEnv}/{}') 295 - 296 - filetype indent plugin on | syn on 297 - ''; 298 299 /* vim-plug is an extremely popular vim plugin manager. 300 */
··· 51 # full documentation at github.com/MarcWeber/vim-addon-manager 52 ]; 53 54 }; 55 56 WHAT IS A VIM PLUGIN? ··· 100 contribute to vim-pi so that plugins can be updated automatically. 101 102 103 + CREATING DERIVATIONS AUTOMATICALLY BY PLUGIN NAME 104 ================================================== 105 Most convenient is to use a ~/.vim-scripts file putting a plugin name into each line 106 as documented by [VAM]'s README.md ··· 274 }: 275 276 let 277 + /* pathogen mostly can set &rtp at startup time. Deprecated. 278 */ 279 pathogenImpl = let 280 knownPlugins = pathogen.knownPlugins or vimPlugins; 281 282 plugins = findDependenciesRecursively (map (pluginToDrv knownPlugins) pathogen.pluginNames); 283 284 + pathogenPackages.pathogen = lib.warn "'pathogen' attribute is deprecated. Use 'packages' instead in your vim configuration" { 285 + start = plugins; 286 }; 287 in 288 + nativeImpl pathogenPackages; 289 290 /* vim-plug is an extremely popular vim plugin manager. 291 */
-1
pkgs/build-support/fetchurl/mirrors.nix
··· 323 "https://luarocks.org/" 324 "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/" 325 "https://luafr.org/moonrocks/" 326 - "http://luarocks.logiceditor.com/rocks/" 327 ]; 328 329 # Python PyPI
··· 323 "https://luarocks.org/" 324 "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/" 325 "https://luafr.org/moonrocks/" 326 ]; 327 328 # Python PyPI
+2 -2
pkgs/data/misc/spdx-license-list-data/default.nix
··· 2 3 stdenvNoCC.mkDerivation rec { 4 pname = "spdx-license-list-data"; 5 - version = "3.16"; 6 7 src = fetchFromGitHub { 8 owner = "spdx"; 9 repo = "license-list-data"; 10 rev = "v${version}"; 11 - hash = "sha256-FPN9EIwXtz0b1tUZ/AOWK2zj2nfd5+POGmRC52mSzcA="; 12 }; 13 14 # List of file formats to package.
··· 2 3 stdenvNoCC.mkDerivation rec { 4 pname = "spdx-license-list-data"; 5 + version = "3.17"; 6 7 src = fetchFromGitHub { 8 owner = "spdx"; 9 repo = "license-list-data"; 10 rev = "v${version}"; 11 + hash = "sha256-wptjEdx1N2HMzeSVsztZ93Bu6OkMAgHGTUfMLYiePZY="; 12 }; 13 14 # List of file formats to package.
+188 -188
pkgs/development/lua-modules/generated-packages.nix
··· 15 pname = "alt-getopt"; 16 version = "0.8.0-1"; 17 knownRockspec = (fetchurl { 18 - url = "https://luafr.org/luarocks/alt-getopt-0.8.0-1.rockspec"; 19 sha256 = "17yxi1lsrbkmwzcn1x48x8758d7v1frsz1bmnpqfv4vfnlh0x210"; 20 }).outPath; 21 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 125 pname = "bit32"; 126 version = "5.3.0-1"; 127 knownRockspec = (fetchurl { 128 - url = "https://luarocks.org/bit32-5.3.0-1.rockspec"; 129 sha256 = "1d6xdihpksrj5a3yvsvnmf3vfk15hj6f8n1rrs65m7adh87hc0yd"; 130 }).outPath; 131 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 159 pname = "busted"; 160 version = "2.0.0-1"; 161 knownRockspec = (fetchurl { 162 - url = "https://luafr.org/luarocks/busted-2.0.0-1.rockspec"; 163 sha256 = "0cbw95bjxl667n9apcgng2kr5hq6bc7gp3vryw4dzixmfabxkcbw"; 164 }).outPath; 165 src = fetchurl { ··· 184 pname = "cassowary"; 185 version = "2.3.2-1"; 186 knownRockspec = (fetchurl { 187 - url = "https://luarocks.org/cassowary-2.3.2-1.rockspec"; 188 sha256 = "0c6sflm8zpgbcdj47s3rd34h69h3nqcciaaqd1wdx5m0lwc3mii0"; 189 }).outPath; 190 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 218 pname = "cldr"; 219 version = "0.2.0-0"; 220 knownRockspec = (fetchurl { 221 - url = "https://luarocks.org/cldr-0.2.0-0.rockspec"; 222 sha256 = "1vjwrlrdy10bacn0324fvs4sx85xryyg7npw2mp1k9kmasfr8r1s"; 223 }).outPath; 224 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 252 pname = "compat53"; 253 version = "0.7-1"; 254 knownRockspec = (fetchurl { 255 - url = "https://luafr.org/luarocks/compat53-0.7-1.rockspec"; 256 sha256 = "1r7a3q1cjrcmdycrv2ikgl83irjhxs53sa88v2fdpr9aaamlb101"; 257 }).outPath; 258 src = fetchurl { ··· 278 pname = "cosmo"; 279 version = "16.06.04-1"; 280 knownRockspec = (fetchurl { 281 - url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/cosmo-16.06.04-1.rockspec"; 282 sha256 = "0ipv1hrlhvaz1myz6qxabq7b7kb3bz456cya3r292487a3g9h9pb"; 283 }).outPath; 284 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 310 pname = "coxpcall"; 311 version = "1.17.0-1"; 312 knownRockspec = (fetchurl { 313 - url = "https://luafr.org/luarocks/coxpcall-1.17.0-1.rockspec"; 314 sha256 = "0mf0nggg4ajahy5y1q5zh2zx9rmgzw06572bxx6k8b736b8j7gca"; 315 }).outPath; 316 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 341 pname = "cqueues"; 342 version = "20200726.52-0"; 343 knownRockspec = (fetchurl { 344 - url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/cqueues-20200726.52-0.rockspec"; 345 sha256 = "0w2kq9w0wda56k02rjmvmzccz6bc3mn70s9v7npjadh85i5zlhhp"; 346 }).outPath; 347 src = fetchurl { ··· 399 400 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 401 "url": "https://github.com/astoff/digestif", 402 - "rev": "505ca88a54012be5534654238baaa457f8446fed", 403 - "date": "2021-10-06T21:27:45+02:00", 404 - "path": "/nix/store/6wvpy0nsr5yf78by3dg8m2m0h0kf9xk4-digestif", 405 - "sha256": "1prv5nqskvilyyx3z9b2jiz72lwpz2xcas57qjpbv6qq5l2si1xm", 406 "fetchLFS": false, 407 "fetchSubmodules": true, 408 "deepClone": false, ··· 425 }: 426 buildLuarocksPackage { 427 pname = "dkjson"; 428 - version = "2.5-3"; 429 knownRockspec = (fetchurl { 430 - url = "https://luafr.org/luarocks/dkjson-2.5-3.rockspec"; 431 - sha256 = "18xngdzl2q207cil64aj81qi6qvj1g269pf07j5x4pbvamd6a1l3"; 432 }).outPath; 433 src = fetchurl { 434 - url = "http://dkolf.de/src/dkjson-lua.fsl/tarball/dkjson-2.5.tar.gz?uuid=release_2_5"; 435 - sha256 = "14wanday1l7wj2lnpabbxw8rcsa0zbvcdi1w88rdr5gbsq3xwasm"; 436 }; 437 438 disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.5"); ··· 452 pname = "fifo"; 453 version = "0.2-0"; 454 knownRockspec = (fetchurl { 455 - url = "https://luafr.org/luarocks/fifo-0.2-0.rockspec"; 456 sha256 = "0vr9apmai2cyra2n573nr3dyk929gzcs4nm1096jdxcixmvh2ymq"; 457 }).outPath; 458 src = fetchurl { ··· 476 pname = "fluent"; 477 version = "0.2.0-0"; 478 knownRockspec = (fetchurl { 479 - url = "https://luarocks.org/fluent-0.2.0-0.rockspec"; 480 sha256 = "1x3nk8xdf923rvdijr0jx8v6w3wxxfch7ri3kxca0pw80b5bc2fa"; 481 }).outPath; 482 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 504 }) {}; 505 506 gitsigns-nvim = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast 507 - , fetchgit, lua, plenary-nvim 508 }: 509 buildLuarocksPackage { 510 pname = "gitsigns.nvim"; ··· 512 513 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 514 "url": "https://github.com/lewis6991/gitsigns.nvim", 515 - "rev": "5eb87a0b05914d3763277ebe257bd5bafcdde8cd", 516 - "date": "2021-12-06T18:02:22+00:00", 517 - "path": "/nix/store/c5l5bz7m5f48l57p4yrpxfhqga0cxsny-gitsigns.nvim", 518 - "sha256": "02cmgc3fgrwx6v6ylzqxdwgk9jsmd8j2q6fdnfbllg3zjwx3agcd", 519 "fetchLFS": false, 520 "fetchSubmodules": true, 521 "deepClone": false, ··· 524 '') ["date" "path"]) ; 525 526 disabled = with lua; (luaversion != "5.1"); 527 - propagatedBuildInputs = [ lua plenary-nvim ]; 528 529 meta = { 530 homepage = "http://github.com/lewis6991/gitsigns.nvim"; ··· 540 pname = "http"; 541 version = "0.3-0"; 542 knownRockspec = (fetchurl { 543 - url = "https://luafr.org/luarocks/http-0.3-0.rockspec"; 544 sha256 = "0fn3irkf5nnmfc83alc40b316hs8l7zdq2xlaiaa65sjd8acfvia"; 545 }).outPath; 546 src = fetchurl { ··· 564 }: 565 buildLuarocksPackage { 566 pname = "inspect"; 567 - version = "3.1.2-0"; 568 knownRockspec = (fetchurl { 569 - url = "https://luarocks.org/inspect-3.1.2-0.rockspec"; 570 - sha256 = "13jbv3rhj4mv2farrxns88g7j34ljag7vz0kma0fm2pzdz3686vx"; 571 }).outPath; 572 src = fetchurl { 573 - url = "https://github.com/kikito/inspect.lua/archive/v3.1.2.tar.gz"; 574 - sha256 = "08ln4p5bmvcs8wj8hzs4ny66m63abyxjkmcxhjji5ay99g85cn3b"; 575 }; 576 577 disabled = with lua; (luaOlder "5.1"); ··· 626 627 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 628 "url": "https://github.com/stevedonovan/LDoc.git", 629 - "rev": "bbd498ab39fa49318b36378430d3cdab571f8ba0", 630 - "date": "2021-06-24T13:07:51+02:00", 631 - "path": "/nix/store/pzk1qi4fdviz2pq5bg3q91jmrg8wziqx-LDoc", 632 - "sha256": "05wd5m5v3gv777kgikj46216slxyf1zdbzl4idara9lcfw3mfyyw", 633 "fetchLFS": false, 634 "fetchSubmodules": true, 635 "deepClone": false, ··· 673 propagatedBuildInputs = [ lua ]; 674 675 meta = { 676 - homepage = "https://github.com/pavouk/lgi"; 677 description = "Lua bindings to GObject libraries"; 678 license.fullName = "MIT/X11"; 679 }; ··· 708 pname = "ljsyscall"; 709 version = "0.12-1"; 710 knownRockspec = (fetchurl { 711 - url = "https://luarocks.org/ljsyscall-0.12-1.rockspec"; 712 sha256 = "0zna5s852vn7q414z56kkyqwpighaghyq7h7in3myap4d9vcgm01"; 713 }).outPath; 714 src = fetchurl { ··· 734 pname = "lmathx"; 735 version = "20150624-1"; 736 knownRockspec = (fetchurl { 737 - url = "https://luarocks.org/lmathx-20150624-1.rockspec"; 738 sha256 = "181wzsj1mxjyia43y8zwaydxahnl7a70qzcgc8jhhgic7jyi9pgv"; 739 }).outPath; 740 src = fetchurl { ··· 759 pname = "lmpfrlib"; 760 version = "20170112-2"; 761 knownRockspec = (fetchurl { 762 - url = "https://luarocks.org/lmpfrlib-20170112-2.rockspec"; 763 sha256 = "1x7qiwmk5b9fi87fn7yvivdsis8h9fk9r3ipqiry5ahx72vzdm7d"; 764 }).outPath; 765 src = fetchurl { ··· 785 pname = "loadkit"; 786 version = "1.1.0-1"; 787 knownRockspec = (fetchurl { 788 - url = "https://luarocks.org/loadkit-1.1.0-1.rockspec"; 789 sha256 = "08fx0xh90r2zvjlfjkyrnw2p95xk1a0qgvlnq4siwdb2mm6fq12l"; 790 }).outPath; 791 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 819 pname = "lpeg"; 820 version = "1.0.2-1"; 821 knownRockspec = (fetchurl { 822 - url = "https://luafr.org/luarocks/lpeg-1.0.2-1.rockspec"; 823 sha256 = "08a8p5cwlwpjawk8sczb7bq2whdsng4mmhphahyklf1bkvl2li89"; 824 }).outPath; 825 src = fetchurl { ··· 845 pname = "lpeg_patterns"; 846 version = "0.5-0"; 847 knownRockspec = (fetchurl { 848 - url = "https://luafr.org/luarocks/lpeg_patterns-0.5-0.rockspec"; 849 sha256 = "1vzl3ryryc624mchclzsfl3hsrprb9q214zbi1xsjcc4ckq5qfh7"; 850 }).outPath; 851 src = fetchurl { ··· 869 pname = "lpeglabel"; 870 version = "1.6.0-1"; 871 knownRockspec = (fetchurl { 872 - url = "https://luafr.org/luarocks/lpeglabel-1.6.0-1.rockspec"; 873 sha256 = "13gc32pggng6f95xx5zw9n9ian518wlgb26mna9kh4q2xa1k42pm"; 874 }).outPath; 875 src = fetchurl { ··· 894 pname = "lpty"; 895 version = "1.2.2-1"; 896 knownRockspec = (fetchurl { 897 - url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/lpty-1.2.2-1.rockspec"; 898 sha256 = "04af4mhiqrw3br4qzz7yznw9zy2m50wddwzgvzkvhd99ng71fkzg"; 899 }).outPath; 900 src = fetchurl { ··· 919 pname = "lrexlib-gnu"; 920 version = "2.9.1-1"; 921 knownRockspec = (fetchurl { 922 - url = "https://luafr.org/luarocks/lrexlib-gnu-2.9.1-1.rockspec"; 923 sha256 = "1jfjxh26iwsavipkwmscwv52l77qxzvibfmlvpskcpawyii7xcw8"; 924 }).outPath; 925 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 952 pname = "lrexlib-pcre"; 953 version = "2.9.1-1"; 954 knownRockspec = (fetchurl { 955 - url = "https://luafr.org/luarocks/lrexlib-pcre-2.9.1-1.rockspec"; 956 sha256 = "036k27xaplxn128b3p67xiqm8k40s7bxvh87wc8v2cx1cc4b9ia4"; 957 }).outPath; 958 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 986 pname = "lrexlib-posix"; 987 version = "2.9.1-1"; 988 knownRockspec = (fetchurl { 989 - url = "https://luarocks.org/lrexlib-posix-2.9.1-1.rockspec"; 990 sha256 = "1zxrx9yifm9ry4wbjgv86rlvq3ff6qivldvib3ha4767azla0j0r"; 991 }).outPath; 992 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1019 pname = "lua-cjson"; 1020 version = "2.1.0.6-1"; 1021 knownRockspec = (fetchurl { 1022 - url = "https://luarocks.org/lua-cjson-2.1.0.6-1.rockspec"; 1023 sha256 = "1x6dk17lwmgkafpki99yl1hlypchbrxr9sxqafrmx7wwvzbz6q11"; 1024 }).outPath; 1025 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1052 pname = "lua-cmsgpack"; 1053 version = "0.4.0-0"; 1054 knownRockspec = (fetchurl { 1055 - url = "https://luarocks.org/lua-cmsgpack-0.4.0-0.rockspec"; 1056 sha256 = "10cvr6knx3qvjcw1q9v05f2qy607mai7lbq321nx682aa0n1fzin"; 1057 }).outPath; 1058 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1085 pname = "lua-iconv"; 1086 version = "7-3"; 1087 knownRockspec = (fetchurl { 1088 - url = "https://luarocks.org/lua-iconv-7-3.rockspec"; 1089 sha256 = "0qh5vsaxd7s31p7a8rl08lwd6zv90wnvp15nll4fcz452kffpp72"; 1090 }).outPath; 1091 src = fetchurl { ··· 1110 pname = "lua-lsp"; 1111 version = "0.1.0-2"; 1112 knownRockspec = (fetchurl { 1113 - url = "https://luarocks.org/lua-lsp-0.1.0-2.rockspec"; 1114 sha256 = "19jsz00qlgbyims6cg8i40la7v8kr7zsxrrr3dg0kdg0i36xqs6c"; 1115 }).outPath; 1116 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1143 pname = "lua-messagepack"; 1144 version = "0.5.2-1"; 1145 knownRockspec = (fetchurl { 1146 - url = "https://luarocks.org/lua-messagepack-0.5.2-1.rockspec"; 1147 sha256 = "15liz6v8hsqgb3xrcd74a71nnjcz79gpc3ak351hk6k4gyjq2rfc"; 1148 }).outPath; 1149 src = fetchurl { ··· 1166 }: 1167 buildLuarocksPackage { 1168 pname = "lua-resty-http"; 1169 - version = "0.16.1-0"; 1170 knownRockspec = (fetchurl { 1171 - url = "https://luarocks.org/lua-resty-http-0.16.1-0.rockspec"; 1172 - sha256 = "1475zncd9zvnrblc3r60cwf49c7v0w3khqmi6wqrc5k331m0wm8w"; 1173 }).outPath; 1174 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 1175 "url": "https://github.com/ledgetech/lua-resty-http", 1176 - "rev": "9bf951dfe162dd9710a0e1f4525738d4902e9d20", 1177 - "date": "2021-04-09T17:11:35+01:00", 1178 - "path": "/nix/store/zzd1xj4r0iy3srs2hgv4mlm6wflmk24x-lua-resty-http", 1179 - "sha256": "1whwn2fwm8c9jda4z1sb5636sfy4pfgjdxw0grcgmf6451xi57nw", 1180 "fetchLFS": false, 1181 "fetchSubmodules": true, 1182 "deepClone": false, ··· 1201 pname = "lua-resty-jwt"; 1202 version = "0.2.3-0"; 1203 knownRockspec = (fetchurl { 1204 - url = "https://luarocks.org/lua-resty-jwt-0.2.3-0.rockspec"; 1205 sha256 = "1fxdwfr4pna3fdfm85kin97n53caq73h807wjb59wpqiynbqzc8c"; 1206 }).outPath; 1207 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1232 }: 1233 buildLuarocksPackage { 1234 pname = "lua-resty-openidc"; 1235 - version = "1.7.4-1"; 1236 knownRockspec = (fetchurl { 1237 - url = "https://luarocks.org/lua-resty-openidc-1.7.4-1.rockspec"; 1238 - sha256 = "12r03pzx1lpaxzy71iqh0kf1zs6gx1k89vpxc5va9r7nr47a56vy"; 1239 }).outPath; 1240 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 1241 "url": "https://github.com/zmartzone/lua-resty-openidc", 1242 - "rev": "0c75741b41bc9a8b5dbe0b27f81a2851a6c68b60", 1243 - "date": "2020-11-17T17:42:16+01:00", 1244 - "path": "/nix/store/240kss5xx1br5n3qz6djw21cs1fj4pfg-lua-resty-openidc", 1245 - "sha256": "1gw71av1r0c6v4f1h0bj0l6way2hmipic6wmipnavr17bz7m1q7z", 1246 "fetchLFS": false, 1247 "fetchSubmodules": true, 1248 "deepClone": false, ··· 1264 , fetchgit}: 1265 buildLuarocksPackage { 1266 pname = "lua-resty-openssl"; 1267 - version = "0.8.2-1"; 1268 knownRockspec = (fetchurl { 1269 - url = "https://luarocks.org/lua-resty-openssl-0.8.2-1.rockspec"; 1270 - sha256 = "1dxaxh3l4vhrv5p2pwphl7jn7jpcjq3dmawfl9wbp3a88121gbsx"; 1271 }).outPath; 1272 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 1273 "url": "https://github.com/fffonion/lua-resty-openssl.git", 1274 - "rev": "53e2d4ba7e8c31181c1fd71d3817911da0533675", 1275 - "date": "2021-11-22T12:07:07+08:00", 1276 - "path": "/nix/store/x7s51wf9ysxs2xs4adixf7ypmadfwp5c-lua-resty-openssl", 1277 - "sha256": "19cvqz81d0lxql55pgsbgynval0jxh8sicps94nzapvj90xqjviy", 1278 "fetchLFS": false, 1279 "fetchSubmodules": true, 1280 "deepClone": false, ··· 1295 }: 1296 buildLuarocksPackage { 1297 pname = "lua-resty-session"; 1298 - version = "3.8-1"; 1299 knownRockspec = (fetchurl { 1300 - url = "https://luarocks.org/lua-resty-session-3.8-1.rockspec"; 1301 - sha256 = "0pz86bshawysmsnfc5q1yh13gr1458j2nh8r93a4rrmk1wggc4ka"; 1302 }).outPath; 1303 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 1304 "url": "https://github.com/bungle/lua-resty-session.git", 1305 - "rev": "2cd1f8484fdd429505ac33abf7a44adda1f367bf", 1306 - "date": "2021-01-04T14:02:41+02:00", 1307 - "path": "/nix/store/jqc8arr46mx1xbmrsw503zza1kmz7mcv-lua-resty-session", 1308 - "sha256": "09q8xbxkr431i2k21vdyx740rv325v0zmnx0qa3q9x15kcfsd2fm", 1309 "fetchLFS": false, 1310 "fetchSubmodules": true, 1311 "deepClone": false, ··· 1329 pname = "lua-term"; 1330 version = "0.7-1"; 1331 knownRockspec = (fetchurl { 1332 - url = "https://luarocks.org/lua-term-0.7-1.rockspec"; 1333 sha256 = "0r9g5jw7pqr1dyj6w58dqlr7y7l0jp077n8nnji4phf10biyrvg2"; 1334 }).outPath; 1335 src = fetchurl { ··· 1352 pname = "lua-toml"; 1353 version = "2.0-1"; 1354 knownRockspec = (fetchurl { 1355 - url = "https://luarocks.org/lua-toml-2.0-1.rockspec"; 1356 sha256 = "0zd3hrj1ifq89rjby3yn9y96vk20ablljvqdap981navzlbb7zvq"; 1357 }).outPath; 1358 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1385 pname = "lua-yajl"; 1386 version = "2.0-1"; 1387 knownRockspec = (fetchurl { 1388 - url = "https://luarocks.org/lua-yajl-2.0-1.rockspec"; 1389 sha256 = "0h600zgq5qc9z3cid1kr35q3qb98alg0m3qf0a3mfj33hya6pcxp"; 1390 }).outPath; 1391 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1417 }: 1418 buildLuarocksPackage { 1419 pname = "lua-zlib"; 1420 - version = "1.2-1"; 1421 knownRockspec = (fetchurl { 1422 - url = "https://luarocks.org/lua-zlib-1.2-1.rockspec"; 1423 - sha256 = "18rpbg9b4vsnh3svapiqrvwwshw1abb5l5fd7441byx1nm3fjq9w"; 1424 }).outPath; 1425 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 1426 "url": "https://github.com/brimworks/lua-zlib.git", ··· 1435 } 1436 '') ["date" "path"]) ; 1437 1438 - disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.5"); 1439 propagatedBuildInputs = [ lua ]; 1440 1441 meta = { ··· 1503 }: 1504 buildLuarocksPackage { 1505 pname = "luacheck"; 1506 - version = "0.25.0-1"; 1507 knownRockspec = (fetchurl { 1508 - url = "https://luarocks.org/luacheck-0.25.0-1.rockspec"; 1509 - sha256 = "11mvbpnykibg0dx9sdh5x9gpvrhkmvrw76qvjz337x83f8gmvy91"; 1510 }).outPath; 1511 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 1512 - "url": "https://github.com/luarocks/luacheck.git", 1513 - "rev": "abf7386a892df4ce566fef9e4640ddbf9af78411", 1514 - "date": "2021-08-10T12:19:20-03:00", 1515 - "path": "/nix/store/9cdlf6c3y0087qwh48ky8ysxxx3lirlj-luacheck", 1516 - "sha256": "1ymfkr0qmg6idrrxf9x6mfq14skag8h09kl2qlalwiykicrdljs1", 1517 "fetchLFS": false, 1518 "fetchSubmodules": true, 1519 "deepClone": false, ··· 1525 propagatedBuildInputs = [ lua argparse luafilesystem ]; 1526 1527 meta = { 1528 - homepage = "https://github.com/luarocks/luacheck"; 1529 description = "A static analyzer and a linter for Lua"; 1530 license.fullName = "MIT"; 1531 }; ··· 1538 pname = "luacov"; 1539 version = "0.15.0-1"; 1540 knownRockspec = (fetchurl { 1541 - url = "https://luarocks.org/luacov-0.15.0-1.rockspec"; 1542 sha256 = "18byfl23c73pazi60hsx0vd74hqq80mzixab76j36cyn8k4ni9db"; 1543 }).outPath; 1544 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1571 pname = "luadbi"; 1572 version = "0.7.2-1"; 1573 knownRockspec = (fetchurl { 1574 - url = "https://luarocks.org/luadbi-0.7.2-1.rockspec"; 1575 sha256 = "0lj1qki20w6bl76cvlcazlmwh170b9wkv5nwlxbrr3cn6w7h370b"; 1576 }).outPath; 1577 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1604 pname = "luadbi-mysql"; 1605 version = "0.7.2-1"; 1606 knownRockspec = (fetchurl { 1607 - url = "https://luarocks.org/luadbi-mysql-0.7.2-1.rockspec"; 1608 sha256 = "0gnyqnvcfif06rzzrdw6w6hchp4jrjiwm0rmfx2r8ljchj2bvml5"; 1609 }).outPath; 1610 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1637 pname = "luadbi-postgresql"; 1638 version = "0.7.2-1"; 1639 knownRockspec = (fetchurl { 1640 - url = "https://luarocks.org/luadbi-postgresql-0.7.2-1.rockspec"; 1641 sha256 = "07rx4agw4hjyzf8157apdwfqh9s26nqndmkr3wm7v09ygjvdjiix"; 1642 }).outPath; 1643 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1670 pname = "luadbi-sqlite3"; 1671 version = "0.7.2-1"; 1672 knownRockspec = (fetchurl { 1673 - url = "https://luarocks.org/luadbi-sqlite3-0.7.2-1.rockspec"; 1674 sha256 = "022iba0jbiafz8iv1h0iv95rhcivbfq5yg341nxk3dm87yf220vh"; 1675 }).outPath; 1676 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1703 pname = "luaepnf"; 1704 version = "0.3-2"; 1705 knownRockspec = (fetchurl { 1706 - url = "https://luarocks.org/luaepnf-0.3-2.rockspec"; 1707 sha256 = "0kqmnj11wmfpc9mz04zzq8ab4mnbkrhcgc525wrq6pgl3p5li8aa"; 1708 }).outPath; 1709 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1736 pname = "luaevent"; 1737 version = "0.4.6-1"; 1738 knownRockspec = (fetchurl { 1739 - url = "https://luarocks.org/luaevent-0.4.6-1.rockspec"; 1740 sha256 = "03zixadhx4a7nh67n0sm6sy97c8i9va1a78hibhrl7cfbqc2zc7f"; 1741 }).outPath; 1742 src = fetchurl { ··· 1761 pname = "luaexpat"; 1762 version = "1.4.1-1"; 1763 knownRockspec = (fetchurl { 1764 - url = "https://luarocks.org/luaexpat-1.4.1-1.rockspec"; 1765 sha256 = "1abwd385x7wnza7qqz5s4aj6m2l1c23pjmbgnpq73q0s17pn1h0c"; 1766 }).outPath; 1767 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1828 pname = "luafilesystem"; 1829 version = "1.7.0-2"; 1830 knownRockspec = (fetchurl { 1831 - url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/luafilesystem-1.7.0-2.rockspec"; 1832 sha256 = "0xivgn8bbkx1g5a30jrjcv4hg5mpiiyrm3fhlz9lndgbh4cnjrq6"; 1833 }).outPath; 1834 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1862 pname = "lualogging"; 1863 version = "1.6.0-2"; 1864 knownRockspec = (fetchurl { 1865 - url = "https://luarocks.org/lualogging-1.6.0-2.rockspec"; 1866 sha256 = "1235sfss0gmcw744rnhzfffhd1z732g2b2vsbpbz9kcvvhznmamb"; 1867 }).outPath; 1868 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1894 pname = "luaossl"; 1895 version = "20200709-0"; 1896 knownRockspec = (fetchurl { 1897 - url = "https://luarocks.org/luaossl-20200709-0.rockspec"; 1898 sha256 = "0izxxrzc49q4jancza43b2y4hfvasflpcag771nrhapk1n8k45f3"; 1899 }).outPath; 1900 src = fetchurl { ··· 1918 pname = "luaposix"; 1919 version = "34.1.1-1"; 1920 knownRockspec = (fetchurl { 1921 - url = "https://luarocks.org/luaposix-34.1.1-1.rockspec"; 1922 sha256 = "0hx6my54axjcb3bklr991wji374qq6mwa3ily6dvb72vi2534nwz"; 1923 }).outPath; 1924 src = fetchurl { ··· 1942 }: 1943 buildLuarocksPackage { 1944 pname = "luarepl"; 1945 - version = "0.9-1"; 1946 knownRockspec = (fetchurl { 1947 - url = "https://luarocks.org/luarepl-0.9-1.rockspec"; 1948 - sha256 = "1409lanxv4s8kq5rrh46dvld77ip33qzfn3vac3i9zpzbmgb5i8z"; 1949 }).outPath; 1950 src = fetchurl { 1951 - url = "https://github.com/hoelzro/lua-repl/archive/0.9.tar.gz"; 1952 - sha256 = "04xka7b84d9mrz3gyf8ywhw08xp65v8jrnzs8ry8k9540aqs721w"; 1953 }; 1954 1955 disabled = with lua; (luaOlder "5.1"); ··· 1967 }: 1968 buildLuarocksPackage { 1969 pname = "luasec"; 1970 - version = "1.0.2-1"; 1971 knownRockspec = (fetchurl { 1972 - url = "https://luarocks.org/luasec-1.0.2-1.rockspec"; 1973 - sha256 = "02qkbfnvn3943zf2fnz3amnz1z05ipx9mnsn3i2rmpjpvvd414dg"; 1974 }).outPath; 1975 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 1976 "url": "https://github.com/brunoos/luasec", 1977 - "rev": "ef14b27a2c8e541cac071165048250e85a7216df", 1978 - "date": "2021-08-14T10:28:09-03:00", 1979 - "path": "/nix/store/jk2npg54asnmj5fnpldn8dxym9gx8x4g-luasec", 1980 - "sha256": "14hx72qw3gjgz12v5bwpz3irgbf69f8584z8y7lglccbyydp4jla", 1981 "fetchLFS": false, 1982 "fetchSubmodules": true, 1983 "deepClone": false, ··· 1997 }) {}; 1998 1999 luasocket = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast 2000 - , fetchurl, lua 2001 }: 2002 buildLuarocksPackage { 2003 pname = "luasocket"; 2004 - version = "3.0rc1-2"; 2005 knownRockspec = (fetchurl { 2006 - url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/luasocket-3.0rc1-2.rockspec"; 2007 - sha256 = "17fbkihp4zypv5wwgxz8dnghj37pf5bhpi2llg4gbljp1bl2f42c"; 2008 }).outPath; 2009 - src = fetchurl { 2010 - url = "https://github.com/diegonehab/luasocket/archive/v3.0-rc1.zip"; 2011 - sha256 = "0x0fg07cg08ybgkpzif7zmzaaq5ga979rxwd9rj95kfws9bbrl0y"; 2012 - }; 2013 2014 disabled = with lua; (luaOlder "5.1"); 2015 propagatedBuildInputs = [ lua ]; 2016 2017 meta = { 2018 - homepage = "http://luaforge.net/projects/luasocket/"; 2019 description = "Network support for the Lua language"; 2020 license.fullName = "MIT"; 2021 }; ··· 2028 pname = "luasql-sqlite3"; 2029 version = "2.6.0-1"; 2030 knownRockspec = (fetchurl { 2031 - url = "https://luarocks.org/luasql-sqlite3-2.6.0-1.rockspec"; 2032 sha256 = "0w32znsfcaklcja6avqx7daaxbf0hr2v8g8bmz0fysb3401lmp02"; 2033 }).outPath; 2034 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 2035 "url": "https://github.com/keplerproject/luasql.git", 2036 - "rev": "ce22164f63783afac9c644fd37c231e56fc097cb", 2037 - "date": "2021-10-14T09:38:24-03:00", 2038 - "path": "/nix/store/h8r8axcc76x7y6gwc2jzsmr7h2lqgbxa-luasql", 2039 - "sha256": "10gq3x7vqkafvfk9fs4039rl1xhnqpl2v60z4qpd96wbcy205gnk", 2040 "fetchLFS": false, 2041 "fetchSubmodules": true, 2042 "deepClone": false, ··· 2062 pname = "luassert"; 2063 version = "1.8.0-0"; 2064 knownRockspec = (fetchurl { 2065 - url = "https://luarocks.org/luassert-1.8.0-0.rockspec"; 2066 sha256 = "1194y81nlkq4qmrrgl7z82i6vgvhqvp1p673kq0arjix8mv3zyz1"; 2067 }).outPath; 2068 src = fetchurl { ··· 2087 pname = "luasystem"; 2088 version = "0.2.1-0"; 2089 knownRockspec = (fetchurl { 2090 - url = "https://luarocks.org/luasystem-0.2.1-0.rockspec"; 2091 sha256 = "0xj5q7lzsbmlw5d3zbjqf3jpj78wcn348h2jcxn5ph4n4hx73z3n"; 2092 }).outPath; 2093 src = fetchurl { ··· 2112 pname = "luaunbound"; 2113 version = "1.0.0-1"; 2114 knownRockspec = (fetchurl { 2115 - url = "https://luarocks.org/luaunbound-1.0.0-1.rockspec"; 2116 sha256 = "1zlkibdwrj5p97nhs33cz8xx0323z3kiq5x7v0h3i7v6j0h8ppvn"; 2117 }).outPath; 2118 src = fetchurl { ··· 2137 pname = "luautf8"; 2138 version = "0.1.3-1"; 2139 knownRockspec = (fetchurl { 2140 - url = "https://luarocks.org/luautf8-0.1.3-1.rockspec"; 2141 sha256 = "16i9wfgd0f299g1afgjp0hhczlrk5g8i0kq3ka0f8bwj3mp2wmcp"; 2142 }).outPath; 2143 src = fetchurl { ··· 2163 pname = "luazip"; 2164 version = "1.2.7-1"; 2165 knownRockspec = (fetchurl { 2166 - url = "https://luarocks.org/luazip-1.2.7-1.rockspec"; 2167 sha256 = "1wxy3p2ksaq4s8lg925mi9cvbh875gsapgkzm323dr8qaxxg7mba"; 2168 }).outPath; 2169 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 2196 pname = "luuid"; 2197 version = "20120509-2"; 2198 knownRockspec = (fetchurl { 2199 - url = "https://luarocks.org/luuid-20120509-2.rockspec"; 2200 sha256 = "1q2fv25wfbiqn49mqv26gs4pyllch311akcf7jjn27l5ik8ji5b6"; 2201 }).outPath; 2202 src = fetchurl { ··· 2214 }; 2215 }) {}; 2216 2217 - luv = callPackage ({ buildLuarocksPackage, luaOlder, luaAtLeast 2218 , cmake, fetchurl, lua 2219 }: 2220 buildLuarocksPackage { 2221 pname = "luv"; 2222 version = "1.43.0-0"; 2223 knownRockspec = (fetchurl { 2224 - url = "https://luarocks.org/luv-1.43.0-0.rockspec"; 2225 sha256 = "0z5a7yp20xbb3f9w73skm9fj89gxxqv72nrxjq3kycsc6c2v3m8f"; 2226 }).outPath; 2227 - 2228 - src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 2229 - "url": "https://github.com/luvit/luv.git", 2230 - "rev": "1.43.0-0", 2231 - "date": "2022-03-12T16:05:50+08:00", 2232 - "path": "/nix/store/d7f3sdw5l0cm8xkjdm4m6jkmx794w48j-luv", 2233 - "sha256": "sha256-CcUX69XzgWlJEwHUhhtqs9sDA5TNIusKek5yV2Nt3Wc=", 2234 - "fetchLFS": false, 2235 - "fetchSubmodules": true, 2236 - "deepClone": false, 2237 - "leaveDotGit": false 2238 - } 2239 - '') ["date" "path"]) ; 2240 2241 disabled = with lua; (luaOlder "5.1"); 2242 nativeBuildInputs = [ cmake ]; ··· 2256 pname = "lyaml"; 2257 version = "6.2.7-1"; 2258 knownRockspec = (fetchurl { 2259 - url = "https://luarocks.org/lyaml-6.2.7-1.rockspec"; 2260 sha256 = "0m5bnzg24nyk35gcn4rydgzk0ysk1f6rslxwxd0w3drl1bg64zja"; 2261 }).outPath; 2262 src = fetchurl { ··· 2282 pname = "markdown"; 2283 version = "0.33-1"; 2284 knownRockspec = (fetchurl { 2285 - url = "https://luarocks.org/markdown-0.33-1.rockspec"; 2286 sha256 = "02sixijfi6av8h59kx3ngrhygjn2sx1c85c0qfy20gxiz72wi1pl"; 2287 }).outPath; 2288 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 2315 pname = "mediator_lua"; 2316 version = "1.1.2-0"; 2317 knownRockspec = (fetchurl { 2318 - url = "https://luarocks.org/mediator_lua-1.1.2-0.rockspec"; 2319 sha256 = "0frzvf7i256260a1s8xh92crwa2m42972qxfq29zl05aw3pyn7bm"; 2320 }).outPath; 2321 src = fetchurl { ··· 2370 pname = "mpack"; 2371 version = "1.0.9-0"; 2372 knownRockspec = (fetchurl { 2373 - url = "https://luarocks.org/mpack-1.0.9-0.rockspec"; 2374 sha256 = "1v10kmw3qw559bbm142z40ib26bwvcyi64qjrk0vf8v6n1mx8wcn"; 2375 }).outPath; 2376 src = fetchurl { ··· 2391 }: 2392 buildLuarocksPackage { 2393 pname = "nvim-client"; 2394 - version = "0.2.2-1"; 2395 2396 src = fetchurl { 2397 - url = "https://github.com/neovim/lua-client/archive/0.2.2-1.tar.gz"; 2398 - sha256 = "1h736im524lq0vwlpihv9b317jarpkf3j13a25xl5qq8y8asm8mr"; 2399 }; 2400 2401 disabled = with lua; (luaOlder "5.1"); ··· 2417 2418 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 2419 "url": "https://github.com/lunarmodules/penlight.git", 2420 - "rev": "0653cdb05591454a9804a7fee8c873b8f06b0b8f", 2421 - "date": "2021-08-31T23:42:29+02:00", 2422 - "path": "/nix/store/zf3k6z36bxsrbxkkmsa4w6m7vxvlpfgn-penlight", 2423 - "sha256": "0l1819dyr9hzmimnjjg99fad6k3ksmlm77hgvdybgz8558lj4g1i", 2424 "fetchLFS": false, 2425 "fetchSubmodules": true, 2426 "deepClone": false, ··· 2448 2449 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 2450 "url": "https://github.com/nvim-lua/plenary.nvim", 2451 - "rev": "c2bb2d8fd5b44bfc6aad3a5463c84576a98dd4a9", 2452 - "date": "2021-12-06T21:11:29+01:00", 2453 - "path": "/nix/store/h376md0lpbv31n5wyrq0cilkpx2lkr18-plenary.nvim", 2454 - "sha256": "12csjz882yv9wwhzx964fq210655m8820491xjsrjlwccfc09i35", 2455 "fetchLFS": false, 2456 "fetchSubmodules": true, 2457 "deepClone": false, ··· 2470 }) {}; 2471 2472 rapidjson = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast 2473 - , fetchgit, lua 2474 }: 2475 buildLuarocksPackage { 2476 pname = "rapidjson"; ··· 2490 '') ["date" "path"]) ; 2491 2492 disabled = with lua; (luaOlder "5.1"); 2493 propagatedBuildInputs = [ lua ]; 2494 2495 meta = { ··· 2504 }: 2505 buildLuarocksPackage { 2506 pname = "readline"; 2507 - version = "3.0-0"; 2508 knownRockspec = (fetchurl { 2509 - url = "https://luarocks.org/readline-3.0-0.rockspec"; 2510 - sha256 = "1bjj8yn61vc0fzy1lvrfp6cyakj4bf2255xcqai4h3rcg0i5cmpr"; 2511 }).outPath; 2512 src = fetchurl { 2513 - url = "http://www.pjb.com.au/comp/lua/readline-3.0.tar.gz"; 2514 - sha256 = "1rr2b7q8w3i4bm1i634sd6kzhw6v1fpnh53mj09af6xdq1rfhr5n"; 2515 }; 2516 2517 disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.5"); ··· 2555 2556 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 2557 "url": "https://github.com/lua-stdlib/_debug.git", 2558 - "rev": "3236c1561bfc2724a3abd153a6e10c7957b35cf2", 2559 - "date": "2020-04-15T16:34:01-07:00", 2560 - "path": "/nix/store/rgbn0nn7glm7s52d90ds87j10bx20nij-_debug", 2561 - "sha256": "0p6jz6syh2r8qfk08jf2hp4p902rkamjzpzl8xhkpzf8rdzs937w", 2562 "fetchLFS": false, 2563 "fetchSubmodules": true, 2564 "deepClone": false, ··· 2585 2586 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 2587 "url": "https://github.com/lua-stdlib/normalize.git", 2588 - "rev": "fb1d61b88b03406e291f58ec4981edfc538b8216", 2589 - "date": "2020-04-15T17:16:16-07:00", 2590 - "path": "/nix/store/jr4agcn13fk56b8105p6yr9gn767fkds-normalize", 2591 - "sha256": "0jiykdjxc4b5my12fnzrw3bxracjgxc265xrn8kfx95350kvbzl1", 2592 "fetchLFS": false, 2593 "fetchSubmodules": true, 2594 "deepClone": false, ··· 2613 pname = "stdlib"; 2614 version = "41.2.2-1"; 2615 knownRockspec = (fetchurl { 2616 - url = "https://luarocks.org/stdlib-41.2.2-1.rockspec"; 2617 sha256 = "0rscb4cm8s8bb8fk8rknc269y7bjqpslspsaxgs91i8bvabja6f6"; 2618 }).outPath; 2619 src = fetchurl { ··· 2639 pname = "tl"; 2640 version = "0.13.2-1"; 2641 knownRockspec = (fetchurl { 2642 - url = "https://luarocks.org/tl-0.13.2-1.rockspec"; 2643 sha256 = "0a9nr03q6w1689drd0r2y8m7qbyxm8n6bkgjplwkr6c6abvbis3f"; 2644 }).outPath; 2645 src = fetchgit ( removeAttrs (builtins.fromJSON ''{
··· 15 pname = "alt-getopt"; 16 version = "0.8.0-1"; 17 knownRockspec = (fetchurl { 18 + url = "mirror://luarocks/alt-getopt-0.8.0-1.rockspec"; 19 sha256 = "17yxi1lsrbkmwzcn1x48x8758d7v1frsz1bmnpqfv4vfnlh0x210"; 20 }).outPath; 21 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 125 pname = "bit32"; 126 version = "5.3.0-1"; 127 knownRockspec = (fetchurl { 128 + url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/bit32-5.3.0-1.rockspec"; 129 sha256 = "1d6xdihpksrj5a3yvsvnmf3vfk15hj6f8n1rrs65m7adh87hc0yd"; 130 }).outPath; 131 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 159 pname = "busted"; 160 version = "2.0.0-1"; 161 knownRockspec = (fetchurl { 162 + url = "mirror://luarocks/busted-2.0.0-1.rockspec"; 163 sha256 = "0cbw95bjxl667n9apcgng2kr5hq6bc7gp3vryw4dzixmfabxkcbw"; 164 }).outPath; 165 src = fetchurl { ··· 184 pname = "cassowary"; 185 version = "2.3.2-1"; 186 knownRockspec = (fetchurl { 187 + url = "mirror://luarocks/cassowary-2.3.2-1.rockspec"; 188 sha256 = "0c6sflm8zpgbcdj47s3rd34h69h3nqcciaaqd1wdx5m0lwc3mii0"; 189 }).outPath; 190 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 218 pname = "cldr"; 219 version = "0.2.0-0"; 220 knownRockspec = (fetchurl { 221 + url = "mirror://luarocks/cldr-0.2.0-0.rockspec"; 222 sha256 = "1vjwrlrdy10bacn0324fvs4sx85xryyg7npw2mp1k9kmasfr8r1s"; 223 }).outPath; 224 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 252 pname = "compat53"; 253 version = "0.7-1"; 254 knownRockspec = (fetchurl { 255 + url = "mirror://luarocks/compat53-0.7-1.rockspec"; 256 sha256 = "1r7a3q1cjrcmdycrv2ikgl83irjhxs53sa88v2fdpr9aaamlb101"; 257 }).outPath; 258 src = fetchurl { ··· 278 pname = "cosmo"; 279 version = "16.06.04-1"; 280 knownRockspec = (fetchurl { 281 + url = "mirror://luarocks/cosmo-16.06.04-1.rockspec"; 282 sha256 = "0ipv1hrlhvaz1myz6qxabq7b7kb3bz456cya3r292487a3g9h9pb"; 283 }).outPath; 284 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 310 pname = "coxpcall"; 311 version = "1.17.0-1"; 312 knownRockspec = (fetchurl { 313 + url = "mirror://luarocks/coxpcall-1.17.0-1.rockspec"; 314 sha256 = "0mf0nggg4ajahy5y1q5zh2zx9rmgzw06572bxx6k8b736b8j7gca"; 315 }).outPath; 316 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 341 pname = "cqueues"; 342 version = "20200726.52-0"; 343 knownRockspec = (fetchurl { 344 + url = "mirror://luarocks/cqueues-20200726.52-0.rockspec"; 345 sha256 = "0w2kq9w0wda56k02rjmvmzccz6bc3mn70s9v7npjadh85i5zlhhp"; 346 }).outPath; 347 src = fetchurl { ··· 399 400 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 401 "url": "https://github.com/astoff/digestif", 402 + "rev": "1fac471a153b99da7f858e63edfa19ec2afee791", 403 + "date": "2022-03-13T17:25:22+01:00", 404 + "path": "/nix/store/4fxlwjvv07gbdi094abl59h8j5ly4ghm-digestif", 405 + "sha256": "1mlmn3v97il5jsl28hjjgvm0dix5r6rsrdzavq25pbv0c46b3zzf", 406 "fetchLFS": false, 407 "fetchSubmodules": true, 408 "deepClone": false, ··· 425 }: 426 buildLuarocksPackage { 427 pname = "dkjson"; 428 + version = "2.6-1"; 429 knownRockspec = (fetchurl { 430 + url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/dkjson-2.6-1.rockspec"; 431 + sha256 = "1hhmgz2nixqg23shfnl0kq6wxdadx36z6hhsrz33g7idbm6rbwm1"; 432 }).outPath; 433 src = fetchurl { 434 + url = "http://dkolf.de/src/dkjson-lua.fsl/tarball/dkjson-2.6.tar.gz?uuid=release_2_6"; 435 + sha256 = "0wwpdz20fvg5j36902892mnb99craf22697r6v7xdblqnd7fw1xx"; 436 }; 437 438 disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.5"); ··· 452 pname = "fifo"; 453 version = "0.2-0"; 454 knownRockspec = (fetchurl { 455 + url = "mirror://luarocks/fifo-0.2-0.rockspec"; 456 sha256 = "0vr9apmai2cyra2n573nr3dyk929gzcs4nm1096jdxcixmvh2ymq"; 457 }).outPath; 458 src = fetchurl { ··· 476 pname = "fluent"; 477 version = "0.2.0-0"; 478 knownRockspec = (fetchurl { 479 + url = "mirror://luarocks/fluent-0.2.0-0.rockspec"; 480 sha256 = "1x3nk8xdf923rvdijr0jx8v6w3wxxfch7ri3kxca0pw80b5bc2fa"; 481 }).outPath; 482 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 504 }) {}; 505 506 gitsigns-nvim = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast 507 + , fetchgit, lua 508 }: 509 buildLuarocksPackage { 510 pname = "gitsigns.nvim"; ··· 512 513 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 514 "url": "https://github.com/lewis6991/gitsigns.nvim", 515 + "rev": "27aeb2e715c32cbb99aa0b326b31739464b61644", 516 + "date": "2022-05-26T12:55:53+01:00", 517 + "path": "/nix/store/bfz0bk523dk4dciiknrzvp87yvnbgcb2-gitsigns.nvim", 518 + "sha256": "04m1767cndrx46xsa6frf77xv64hmr6w21dk2wh4s0sqjvqqm1r6", 519 "fetchLFS": false, 520 "fetchSubmodules": true, 521 "deepClone": false, ··· 524 '') ["date" "path"]) ; 525 526 disabled = with lua; (luaversion != "5.1"); 527 + propagatedBuildInputs = [ lua ]; 528 529 meta = { 530 homepage = "http://github.com/lewis6991/gitsigns.nvim"; ··· 540 pname = "http"; 541 version = "0.3-0"; 542 knownRockspec = (fetchurl { 543 + url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/http-0.3-0.rockspec"; 544 sha256 = "0fn3irkf5nnmfc83alc40b316hs8l7zdq2xlaiaa65sjd8acfvia"; 545 }).outPath; 546 src = fetchurl { ··· 564 }: 565 buildLuarocksPackage { 566 pname = "inspect"; 567 + version = "3.1.3-0"; 568 knownRockspec = (fetchurl { 569 + url = "mirror://luarocks/inspect-3.1.3-0.rockspec"; 570 + sha256 = "1iivb2jmz0pacmac2msyqwvjjx8q6py4h959m8fkigia6srg5ins"; 571 }).outPath; 572 src = fetchurl { 573 + url = "https://github.com/kikito/inspect.lua/archive/v3.1.3.tar.gz"; 574 + sha256 = "1sqylz5hmj5sbv4gi9988j6av3cb5lwkd7wiyim1h5lr7xhnlf23"; 575 }; 576 577 disabled = with lua; (luaOlder "5.1"); ··· 626 627 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 628 "url": "https://github.com/stevedonovan/LDoc.git", 629 + "rev": "e97398356b27473e5ba0626427daaec54f407e22", 630 + "date": "2022-01-17T13:53:47+03:00", 631 + "path": "/nix/store/6s0dmcz2jgjhjhakr5miq8ffgkchd0wh-LDoc", 632 + "sha256": "13k4vi12s37izsjqcnfcliwlizr1ic0vwb0zlxcsghi31k031him", 633 "fetchLFS": false, 634 "fetchSubmodules": true, 635 "deepClone": false, ··· 673 propagatedBuildInputs = [ lua ]; 674 675 meta = { 676 + homepage = "http://github.com/pavouk/lgi"; 677 description = "Lua bindings to GObject libraries"; 678 license.fullName = "MIT/X11"; 679 }; ··· 708 pname = "ljsyscall"; 709 version = "0.12-1"; 710 knownRockspec = (fetchurl { 711 + url = "mirror://luarocks/ljsyscall-0.12-1.rockspec"; 712 sha256 = "0zna5s852vn7q414z56kkyqwpighaghyq7h7in3myap4d9vcgm01"; 713 }).outPath; 714 src = fetchurl { ··· 734 pname = "lmathx"; 735 version = "20150624-1"; 736 knownRockspec = (fetchurl { 737 + url = "mirror://luarocks/lmathx-20150624-1.rockspec"; 738 sha256 = "181wzsj1mxjyia43y8zwaydxahnl7a70qzcgc8jhhgic7jyi9pgv"; 739 }).outPath; 740 src = fetchurl { ··· 759 pname = "lmpfrlib"; 760 version = "20170112-2"; 761 knownRockspec = (fetchurl { 762 + url = "mirror://luarocks/lmpfrlib-20170112-2.rockspec"; 763 sha256 = "1x7qiwmk5b9fi87fn7yvivdsis8h9fk9r3ipqiry5ahx72vzdm7d"; 764 }).outPath; 765 src = fetchurl { ··· 785 pname = "loadkit"; 786 version = "1.1.0-1"; 787 knownRockspec = (fetchurl { 788 + url = "mirror://luarocks/loadkit-1.1.0-1.rockspec"; 789 sha256 = "08fx0xh90r2zvjlfjkyrnw2p95xk1a0qgvlnq4siwdb2mm6fq12l"; 790 }).outPath; 791 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 819 pname = "lpeg"; 820 version = "1.0.2-1"; 821 knownRockspec = (fetchurl { 822 + url = "mirror://luarocks/lpeg-1.0.2-1.rockspec"; 823 sha256 = "08a8p5cwlwpjawk8sczb7bq2whdsng4mmhphahyklf1bkvl2li89"; 824 }).outPath; 825 src = fetchurl { ··· 845 pname = "lpeg_patterns"; 846 version = "0.5-0"; 847 knownRockspec = (fetchurl { 848 + url = "mirror://luarocks/lpeg_patterns-0.5-0.rockspec"; 849 sha256 = "1vzl3ryryc624mchclzsfl3hsrprb9q214zbi1xsjcc4ckq5qfh7"; 850 }).outPath; 851 src = fetchurl { ··· 869 pname = "lpeglabel"; 870 version = "1.6.0-1"; 871 knownRockspec = (fetchurl { 872 + url = "mirror://luarocks/lpeglabel-1.6.0-1.rockspec"; 873 sha256 = "13gc32pggng6f95xx5zw9n9ian518wlgb26mna9kh4q2xa1k42pm"; 874 }).outPath; 875 src = fetchurl { ··· 894 pname = "lpty"; 895 version = "1.2.2-1"; 896 knownRockspec = (fetchurl { 897 + url = "mirror://luarocks/lpty-1.2.2-1.rockspec"; 898 sha256 = "04af4mhiqrw3br4qzz7yznw9zy2m50wddwzgvzkvhd99ng71fkzg"; 899 }).outPath; 900 src = fetchurl { ··· 919 pname = "lrexlib-gnu"; 920 version = "2.9.1-1"; 921 knownRockspec = (fetchurl { 922 + url = "mirror://luarocks/lrexlib-gnu-2.9.1-1.rockspec"; 923 sha256 = "1jfjxh26iwsavipkwmscwv52l77qxzvibfmlvpskcpawyii7xcw8"; 924 }).outPath; 925 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 952 pname = "lrexlib-pcre"; 953 version = "2.9.1-1"; 954 knownRockspec = (fetchurl { 955 + url = "mirror://luarocks/lrexlib-pcre-2.9.1-1.rockspec"; 956 sha256 = "036k27xaplxn128b3p67xiqm8k40s7bxvh87wc8v2cx1cc4b9ia4"; 957 }).outPath; 958 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 986 pname = "lrexlib-posix"; 987 version = "2.9.1-1"; 988 knownRockspec = (fetchurl { 989 + url = "mirror://luarocks/lrexlib-posix-2.9.1-1.rockspec"; 990 sha256 = "1zxrx9yifm9ry4wbjgv86rlvq3ff6qivldvib3ha4767azla0j0r"; 991 }).outPath; 992 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1019 pname = "lua-cjson"; 1020 version = "2.1.0.6-1"; 1021 knownRockspec = (fetchurl { 1022 + url = "mirror://luarocks/lua-cjson-2.1.0.6-1.rockspec"; 1023 sha256 = "1x6dk17lwmgkafpki99yl1hlypchbrxr9sxqafrmx7wwvzbz6q11"; 1024 }).outPath; 1025 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1052 pname = "lua-cmsgpack"; 1053 version = "0.4.0-0"; 1054 knownRockspec = (fetchurl { 1055 + url = "mirror://luarocks/lua-cmsgpack-0.4.0-0.rockspec"; 1056 sha256 = "10cvr6knx3qvjcw1q9v05f2qy607mai7lbq321nx682aa0n1fzin"; 1057 }).outPath; 1058 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1085 pname = "lua-iconv"; 1086 version = "7-3"; 1087 knownRockspec = (fetchurl { 1088 + url = "mirror://luarocks/lua-iconv-7-3.rockspec"; 1089 sha256 = "0qh5vsaxd7s31p7a8rl08lwd6zv90wnvp15nll4fcz452kffpp72"; 1090 }).outPath; 1091 src = fetchurl { ··· 1110 pname = "lua-lsp"; 1111 version = "0.1.0-2"; 1112 knownRockspec = (fetchurl { 1113 + url = "mirror://luarocks/lua-lsp-0.1.0-2.rockspec"; 1114 sha256 = "19jsz00qlgbyims6cg8i40la7v8kr7zsxrrr3dg0kdg0i36xqs6c"; 1115 }).outPath; 1116 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1143 pname = "lua-messagepack"; 1144 version = "0.5.2-1"; 1145 knownRockspec = (fetchurl { 1146 + url = "mirror://luarocks/lua-messagepack-0.5.2-1.rockspec"; 1147 sha256 = "15liz6v8hsqgb3xrcd74a71nnjcz79gpc3ak351hk6k4gyjq2rfc"; 1148 }).outPath; 1149 src = fetchurl { ··· 1166 }: 1167 buildLuarocksPackage { 1168 pname = "lua-resty-http"; 1169 + version = "0.17.0.beta.1-0"; 1170 knownRockspec = (fetchurl { 1171 + url = "mirror://luarocks/lua-resty-http-0.17.0.beta.1-0.rockspec"; 1172 + sha256 = "1cjl007k43cyrwvj0p58hvp00q4lnd9rq3v3pcvwi5an2pvxnv80"; 1173 }).outPath; 1174 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 1175 "url": "https://github.com/ledgetech/lua-resty-http", 1176 + "rev": "8cb73c4cc2118f0c62d9132e3b3b14aa36192e34", 1177 + "date": "2022-02-11T16:44:50+00:00", 1178 + "path": "/nix/store/29kr6whllphz0nla5nh1f8q30dgp9vnz-lua-resty-http", 1179 + "sha256": "0y253dnnx59a5c1nbkcv1p5kq7kdsd5i094i7wzpg5ar6xwvqhjb", 1180 "fetchLFS": false, 1181 "fetchSubmodules": true, 1182 "deepClone": false, ··· 1201 pname = "lua-resty-jwt"; 1202 version = "0.2.3-0"; 1203 knownRockspec = (fetchurl { 1204 + url = "mirror://luarocks/lua-resty-jwt-0.2.3-0.rockspec"; 1205 sha256 = "1fxdwfr4pna3fdfm85kin97n53caq73h807wjb59wpqiynbqzc8c"; 1206 }).outPath; 1207 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1232 }: 1233 buildLuarocksPackage { 1234 pname = "lua-resty-openidc"; 1235 + version = "1.7.5-1"; 1236 knownRockspec = (fetchurl { 1237 + url = "mirror://luarocks/lua-resty-openidc-1.7.5-1.rockspec"; 1238 + sha256 = "14z69c0v35hmhlqvg7kndagpqxa4j7i3cgkm0iyfradqlvgamab4"; 1239 }).outPath; 1240 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 1241 "url": "https://github.com/zmartzone/lua-resty-openidc", 1242 + "rev": "85e30a13e08156ef3d782ecf7236758334234c6c", 1243 + "date": "2021-12-21T16:23:45+01:00", 1244 + "path": "/nix/store/yr827kcbbrvxpymny5sa43sb1wf0vzqj-lua-resty-openidc", 1245 + "sha256": "111mnnl639mnyig105zp5bfynjsdnvs201wpg68zd218bh5f362l", 1246 "fetchLFS": false, 1247 "fetchSubmodules": true, 1248 "deepClone": false, ··· 1264 , fetchgit}: 1265 buildLuarocksPackage { 1266 pname = "lua-resty-openssl"; 1267 + version = "0.8.8-1"; 1268 knownRockspec = (fetchurl { 1269 + url = "mirror://luarocks/lua-resty-openssl-0.8.8-1.rockspec"; 1270 + sha256 = "17arjjhrxs3sas6d65ffh8nmvb220vrhwiwac3qam42im7zc8544"; 1271 }).outPath; 1272 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 1273 "url": "https://github.com/fffonion/lua-resty-openssl.git", 1274 + "rev": "7aad15a46bf9f5b81809be53f86ebbdb20ee2e8d", 1275 + "date": "2022-04-14T19:05:18+08:00", 1276 + "path": "/nix/store/3a8qz63k5xmkx44djm3prwhmig8wmjnf-lua-resty-openssl", 1277 + "sha256": "07h1sbfp9l04hr8h6zfgbhs9ray26gr3pa149733wzbdxfkl3bcz", 1278 "fetchLFS": false, 1279 "fetchSubmodules": true, 1280 "deepClone": false, ··· 1295 }: 1296 buildLuarocksPackage { 1297 pname = "lua-resty-session"; 1298 + version = "3.10-1"; 1299 knownRockspec = (fetchurl { 1300 + url = "mirror://luarocks/lua-resty-session-3.10-1.rockspec"; 1301 + sha256 = "1a939ndnyqdn633dxv9nsfkgj59ig71822syx9qk0ai3v6426mw3"; 1302 }).outPath; 1303 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 1304 "url": "https://github.com/bungle/lua-resty-session.git", 1305 + "rev": "e6bf2630c90df7b3db35e859f0aa7e096af3e918", 1306 + "date": "2022-01-14T20:16:34+02:00", 1307 + "path": "/nix/store/76fxliqmhghj6r5qg5q2r59n6nzapra5-lua-resty-session", 1308 + "sha256": "1lx0pbb5swyl0fhxycqx0fs3r158rczb78fav02wlz43yc3nbfax", 1309 "fetchLFS": false, 1310 "fetchSubmodules": true, 1311 "deepClone": false, ··· 1329 pname = "lua-term"; 1330 version = "0.7-1"; 1331 knownRockspec = (fetchurl { 1332 + url = "mirror://luarocks/lua-term-0.7-1.rockspec"; 1333 sha256 = "0r9g5jw7pqr1dyj6w58dqlr7y7l0jp077n8nnji4phf10biyrvg2"; 1334 }).outPath; 1335 src = fetchurl { ··· 1352 pname = "lua-toml"; 1353 version = "2.0-1"; 1354 knownRockspec = (fetchurl { 1355 + url = "mirror://luarocks/lua-toml-2.0-1.rockspec"; 1356 sha256 = "0zd3hrj1ifq89rjby3yn9y96vk20ablljvqdap981navzlbb7zvq"; 1357 }).outPath; 1358 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1385 pname = "lua-yajl"; 1386 version = "2.0-1"; 1387 knownRockspec = (fetchurl { 1388 + url = "mirror://luarocks/lua-yajl-2.0-1.rockspec"; 1389 sha256 = "0h600zgq5qc9z3cid1kr35q3qb98alg0m3qf0a3mfj33hya6pcxp"; 1390 }).outPath; 1391 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1417 }: 1418 buildLuarocksPackage { 1419 pname = "lua-zlib"; 1420 + version = "1.2-2"; 1421 knownRockspec = (fetchurl { 1422 + url = "mirror://luarocks/lua-zlib-1.2-2.rockspec"; 1423 + sha256 = "1ycjy59w6rkhasqqbiyra0f1sj87fswcz25zwxy4gyv7rrwy5hxd"; 1424 }).outPath; 1425 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 1426 "url": "https://github.com/brimworks/lua-zlib.git", ··· 1435 } 1436 '') ["date" "path"]) ; 1437 1438 + disabled = with lua; (luaOlder "5.1"); 1439 propagatedBuildInputs = [ lua ]; 1440 1441 meta = { ··· 1503 }: 1504 buildLuarocksPackage { 1505 pname = "luacheck"; 1506 + version = "0.26.1-1"; 1507 knownRockspec = (fetchurl { 1508 + url = "mirror://luarocks/luacheck-0.26.1-1.rockspec"; 1509 + sha256 = "11r5g6xi1s2d7cpmz2fysfgi78wpszy58rxfkwikqpi6kyc8qmf5"; 1510 }).outPath; 1511 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 1512 + "url": "https://github.com/lunarmodules/luacheck.git", 1513 + "rev": "2445a9dd3859655646bd6eb848459f2b46b4a3e3", 1514 + "date": "2022-04-23T17:22:03+03:00", 1515 + "path": "/nix/store/7a8qrmy41bnn1wgs93b5gi48k30v5bfj-luacheck", 1516 + "sha256": "0zrcni7p0bpqmb383608kmfyxwfxs9qa42g3sb4lhvzg2zggri5q", 1517 "fetchLFS": false, 1518 "fetchSubmodules": true, 1519 "deepClone": false, ··· 1525 propagatedBuildInputs = [ lua argparse luafilesystem ]; 1526 1527 meta = { 1528 + homepage = "https://github.com/lunarmodules/luacheck"; 1529 description = "A static analyzer and a linter for Lua"; 1530 license.fullName = "MIT"; 1531 }; ··· 1538 pname = "luacov"; 1539 version = "0.15.0-1"; 1540 knownRockspec = (fetchurl { 1541 + url = "mirror://luarocks/luacov-0.15.0-1.rockspec"; 1542 sha256 = "18byfl23c73pazi60hsx0vd74hqq80mzixab76j36cyn8k4ni9db"; 1543 }).outPath; 1544 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1571 pname = "luadbi"; 1572 version = "0.7.2-1"; 1573 knownRockspec = (fetchurl { 1574 + url = "mirror://luarocks/luadbi-0.7.2-1.rockspec"; 1575 sha256 = "0lj1qki20w6bl76cvlcazlmwh170b9wkv5nwlxbrr3cn6w7h370b"; 1576 }).outPath; 1577 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1604 pname = "luadbi-mysql"; 1605 version = "0.7.2-1"; 1606 knownRockspec = (fetchurl { 1607 + url = "mirror://luarocks/luadbi-mysql-0.7.2-1.rockspec"; 1608 sha256 = "0gnyqnvcfif06rzzrdw6w6hchp4jrjiwm0rmfx2r8ljchj2bvml5"; 1609 }).outPath; 1610 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1637 pname = "luadbi-postgresql"; 1638 version = "0.7.2-1"; 1639 knownRockspec = (fetchurl { 1640 + url = "mirror://luarocks/luadbi-postgresql-0.7.2-1.rockspec"; 1641 sha256 = "07rx4agw4hjyzf8157apdwfqh9s26nqndmkr3wm7v09ygjvdjiix"; 1642 }).outPath; 1643 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1670 pname = "luadbi-sqlite3"; 1671 version = "0.7.2-1"; 1672 knownRockspec = (fetchurl { 1673 + url = "mirror://luarocks/luadbi-sqlite3-0.7.2-1.rockspec"; 1674 sha256 = "022iba0jbiafz8iv1h0iv95rhcivbfq5yg341nxk3dm87yf220vh"; 1675 }).outPath; 1676 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1703 pname = "luaepnf"; 1704 version = "0.3-2"; 1705 knownRockspec = (fetchurl { 1706 + url = "mirror://luarocks/luaepnf-0.3-2.rockspec"; 1707 sha256 = "0kqmnj11wmfpc9mz04zzq8ab4mnbkrhcgc525wrq6pgl3p5li8aa"; 1708 }).outPath; 1709 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1736 pname = "luaevent"; 1737 version = "0.4.6-1"; 1738 knownRockspec = (fetchurl { 1739 + url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/luaevent-0.4.6-1.rockspec"; 1740 sha256 = "03zixadhx4a7nh67n0sm6sy97c8i9va1a78hibhrl7cfbqc2zc7f"; 1741 }).outPath; 1742 src = fetchurl { ··· 1761 pname = "luaexpat"; 1762 version = "1.4.1-1"; 1763 knownRockspec = (fetchurl { 1764 + url = "mirror://luarocks/luaexpat-1.4.1-1.rockspec"; 1765 sha256 = "1abwd385x7wnza7qqz5s4aj6m2l1c23pjmbgnpq73q0s17pn1h0c"; 1766 }).outPath; 1767 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1828 pname = "luafilesystem"; 1829 version = "1.7.0-2"; 1830 knownRockspec = (fetchurl { 1831 + url = "mirror://luarocks/luafilesystem-1.7.0-2.rockspec"; 1832 sha256 = "0xivgn8bbkx1g5a30jrjcv4hg5mpiiyrm3fhlz9lndgbh4cnjrq6"; 1833 }).outPath; 1834 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1862 pname = "lualogging"; 1863 version = "1.6.0-2"; 1864 knownRockspec = (fetchurl { 1865 + url = "mirror://luarocks/lualogging-1.6.0-2.rockspec"; 1866 sha256 = "1235sfss0gmcw744rnhzfffhd1z732g2b2vsbpbz9kcvvhznmamb"; 1867 }).outPath; 1868 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 1894 pname = "luaossl"; 1895 version = "20200709-0"; 1896 knownRockspec = (fetchurl { 1897 + url = "mirror://luarocks/luaossl-20200709-0.rockspec"; 1898 sha256 = "0izxxrzc49q4jancza43b2y4hfvasflpcag771nrhapk1n8k45f3"; 1899 }).outPath; 1900 src = fetchurl { ··· 1918 pname = "luaposix"; 1919 version = "34.1.1-1"; 1920 knownRockspec = (fetchurl { 1921 + url = "mirror://luarocks/luaposix-34.1.1-1.rockspec"; 1922 sha256 = "0hx6my54axjcb3bklr991wji374qq6mwa3ily6dvb72vi2534nwz"; 1923 }).outPath; 1924 src = fetchurl { ··· 1942 }: 1943 buildLuarocksPackage { 1944 pname = "luarepl"; 1945 + version = "0.10-1"; 1946 knownRockspec = (fetchurl { 1947 + url = "mirror://luarocks/luarepl-0.10-1.rockspec"; 1948 + sha256 = "12zdljfs4wg55mj7a38iwg7p5i1pmc934v9qlpi61sw4brp6x8d3"; 1949 }).outPath; 1950 src = fetchurl { 1951 + url = "https://github.com/hoelzro/lua-repl/archive/0.10.tar.gz"; 1952 + sha256 = "0wv37h9w6y5pgr39m7yxbf8imkwvaila6rnwjcp0xsxl5c1rzfjm"; 1953 }; 1954 1955 disabled = with lua; (luaOlder "5.1"); ··· 1967 }: 1968 buildLuarocksPackage { 1969 pname = "luasec"; 1970 + version = "1.1.0-1"; 1971 knownRockspec = (fetchurl { 1972 + url = "mirror://luarocks/luasec-1.1.0-1.rockspec"; 1973 + sha256 = "1j080wx40cfxfmb42w6jf06yp2wqfnlf281lda6i7lwh4rh2800m"; 1974 }).outPath; 1975 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 1976 "url": "https://github.com/brunoos/luasec", 1977 + "rev": "df27c62f4cea33cb3525fed2a4b280997ed11aad", 1978 + "date": "2022-04-13T10:46:36-03:00", 1979 + "path": "/nix/store/h9bxbfm36ab2z314lpny78jympq9cxli-luasec", 1980 + "sha256": "04zch1ims50phgzqnbpxdfnxyrr9kpb8wi5bm9hhsizrzsx637is", 1981 "fetchLFS": false, 1982 "fetchSubmodules": true, 1983 "deepClone": false, ··· 1997 }) {}; 1998 1999 luasocket = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast 2000 + , fetchgit, lua 2001 }: 2002 buildLuarocksPackage { 2003 pname = "luasocket"; 2004 + version = "3.0.0-1"; 2005 knownRockspec = (fetchurl { 2006 + url = "mirror://luarocks/luasocket-3.0.0-1.rockspec"; 2007 + sha256 = "00j6jss7ifrqsylh1k9254i715z17j99hhawhlkmha1y6wn4glam"; 2008 }).outPath; 2009 + src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 2010 + "url": "https://github.com/lunarmodules/luasocket.git", 2011 + "rev": "88c8a85cb6528232288ec590910b7a966aace52b", 2012 + "date": "2022-03-25T11:05:48+03:00", 2013 + "path": "/nix/store/vn80kf268mjilsnm7850ag4zhan5na2c-luasocket", 2014 + "sha256": "0263gmxdpb2snv9yrwqsg3q641a9gm6migqsmi871hrhxaq0l9c1", 2015 + "fetchLFS": false, 2016 + "fetchSubmodules": true, 2017 + "deepClone": false, 2018 + "leaveDotGit": false 2019 + } 2020 + '') ["date" "path"]) ; 2021 2022 disabled = with lua; (luaOlder "5.1"); 2023 propagatedBuildInputs = [ lua ]; 2024 2025 meta = { 2026 + homepage = "https://github.com/lunarmodules/luasocket"; 2027 description = "Network support for the Lua language"; 2028 license.fullName = "MIT"; 2029 }; ··· 2036 pname = "luasql-sqlite3"; 2037 version = "2.6.0-1"; 2038 knownRockspec = (fetchurl { 2039 + url = "mirror://luarocks/luasql-sqlite3-2.6.0-1.rockspec"; 2040 sha256 = "0w32znsfcaklcja6avqx7daaxbf0hr2v8g8bmz0fysb3401lmp02"; 2041 }).outPath; 2042 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 2043 "url": "https://github.com/keplerproject/luasql.git", 2044 + "rev": "fb70ea47433a66f9b72811cd046dd7d7418a0e89", 2045 + "date": "2022-05-29T22:25:54-03:00", 2046 + "path": "/nix/store/zkir0i3j5jxb704bi5cnn2i51niabl7c-luasql", 2047 + "sha256": "1gnp1892v0g5kzsfrg3l3ykhq81nfv11mhb0djhgrjqx7zaxi24l", 2048 "fetchLFS": false, 2049 "fetchSubmodules": true, 2050 "deepClone": false, ··· 2070 pname = "luassert"; 2071 version = "1.8.0-0"; 2072 knownRockspec = (fetchurl { 2073 + url = "mirror://luarocks/luassert-1.8.0-0.rockspec"; 2074 sha256 = "1194y81nlkq4qmrrgl7z82i6vgvhqvp1p673kq0arjix8mv3zyz1"; 2075 }).outPath; 2076 src = fetchurl { ··· 2095 pname = "luasystem"; 2096 version = "0.2.1-0"; 2097 knownRockspec = (fetchurl { 2098 + url = "mirror://luarocks/luasystem-0.2.1-0.rockspec"; 2099 sha256 = "0xj5q7lzsbmlw5d3zbjqf3jpj78wcn348h2jcxn5ph4n4hx73z3n"; 2100 }).outPath; 2101 src = fetchurl { ··· 2120 pname = "luaunbound"; 2121 version = "1.0.0-1"; 2122 knownRockspec = (fetchurl { 2123 + url = "mirror://luarocks/luaunbound-1.0.0-1.rockspec"; 2124 sha256 = "1zlkibdwrj5p97nhs33cz8xx0323z3kiq5x7v0h3i7v6j0h8ppvn"; 2125 }).outPath; 2126 src = fetchurl { ··· 2145 pname = "luautf8"; 2146 version = "0.1.3-1"; 2147 knownRockspec = (fetchurl { 2148 + url = "mirror://luarocks/luautf8-0.1.3-1.rockspec"; 2149 sha256 = "16i9wfgd0f299g1afgjp0hhczlrk5g8i0kq3ka0f8bwj3mp2wmcp"; 2150 }).outPath; 2151 src = fetchurl { ··· 2171 pname = "luazip"; 2172 version = "1.2.7-1"; 2173 knownRockspec = (fetchurl { 2174 + url = "mirror://luarocks/luazip-1.2.7-1.rockspec"; 2175 sha256 = "1wxy3p2ksaq4s8lg925mi9cvbh875gsapgkzm323dr8qaxxg7mba"; 2176 }).outPath; 2177 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 2204 pname = "luuid"; 2205 version = "20120509-2"; 2206 knownRockspec = (fetchurl { 2207 + url = "mirror://luarocks/luuid-20120509-2.rockspec"; 2208 sha256 = "1q2fv25wfbiqn49mqv26gs4pyllch311akcf7jjn27l5ik8ji5b6"; 2209 }).outPath; 2210 src = fetchurl { ··· 2222 }; 2223 }) {}; 2224 2225 + luv = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast 2226 , cmake, fetchurl, lua 2227 }: 2228 buildLuarocksPackage { 2229 pname = "luv"; 2230 version = "1.43.0-0"; 2231 knownRockspec = (fetchurl { 2232 + url = "mirror://luarocks/luv-1.43.0-0.rockspec"; 2233 sha256 = "0z5a7yp20xbb3f9w73skm9fj89gxxqv72nrxjq3kycsc6c2v3m8f"; 2234 }).outPath; 2235 + src = fetchurl { 2236 + url = "https://github.com/luvit/luv/releases/download/1.43.0-0/luv-1.43.0-0.tar.gz"; 2237 + sha256 = "1qlx1r79sfn8r20yx19bhdr0v58ykpwgwzy5vma9p2ngrlynyyjn"; 2238 + }; 2239 2240 disabled = with lua; (luaOlder "5.1"); 2241 nativeBuildInputs = [ cmake ]; ··· 2255 pname = "lyaml"; 2256 version = "6.2.7-1"; 2257 knownRockspec = (fetchurl { 2258 + url = "mirror://luarocks/lyaml-6.2.7-1.rockspec"; 2259 sha256 = "0m5bnzg24nyk35gcn4rydgzk0ysk1f6rslxwxd0w3drl1bg64zja"; 2260 }).outPath; 2261 src = fetchurl { ··· 2281 pname = "markdown"; 2282 version = "0.33-1"; 2283 knownRockspec = (fetchurl { 2284 + url = "mirror://luarocks/markdown-0.33-1.rockspec"; 2285 sha256 = "02sixijfi6av8h59kx3ngrhygjn2sx1c85c0qfy20gxiz72wi1pl"; 2286 }).outPath; 2287 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ ··· 2314 pname = "mediator_lua"; 2315 version = "1.1.2-0"; 2316 knownRockspec = (fetchurl { 2317 + url = "mirror://luarocks/mediator_lua-1.1.2-0.rockspec"; 2318 sha256 = "0frzvf7i256260a1s8xh92crwa2m42972qxfq29zl05aw3pyn7bm"; 2319 }).outPath; 2320 src = fetchurl { ··· 2369 pname = "mpack"; 2370 version = "1.0.9-0"; 2371 knownRockspec = (fetchurl { 2372 + url = "mirror://luarocks/mpack-1.0.9-0.rockspec"; 2373 sha256 = "1v10kmw3qw559bbm142z40ib26bwvcyi64qjrk0vf8v6n1mx8wcn"; 2374 }).outPath; 2375 src = fetchurl { ··· 2390 }: 2391 buildLuarocksPackage { 2392 pname = "nvim-client"; 2393 + version = "0.2.3-1"; 2394 2395 src = fetchurl { 2396 + url = "https://github.com/neovim/lua-client/archive/0.2.3-1.tar.gz"; 2397 + sha256 = "0w6rc7b9gmz17x4l1q2nv275bkzwvg3pfg5mzsd4wymy2iwrqphf"; 2398 }; 2399 2400 disabled = with lua; (luaOlder "5.1"); ··· 2416 2417 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 2418 "url": "https://github.com/lunarmodules/penlight.git", 2419 + "rev": "a7b9f888cd72dfa875e3b7cc3b88be632f567d79", 2420 + "date": "2022-03-24T13:21:29+01:00", 2421 + "path": "/nix/store/vk0z1hx9rwl45g3nn0f6c4m6mx8d9p65-penlight", 2422 + "sha256": "0w5w13gdbbnli23zmixy20jq6z3j5p6z3br3abpl5qh36b01i5p4", 2423 "fetchLFS": false, 2424 "fetchSubmodules": true, 2425 "deepClone": false, ··· 2447 2448 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 2449 "url": "https://github.com/nvim-lua/plenary.nvim", 2450 + "rev": "54b2e3d58f567983feabaeb9408eccf6b7f32206", 2451 + "date": "2022-06-01T15:32:39+02:00", 2452 + "path": "/nix/store/j29rrzs7dsm6720rsjmzk7r1a27zv7h1-plenary.nvim", 2453 + "sha256": "1ldjdc7yq4awlllr9dcv8fnkcwgdpvj0py5mhvx3v1yjniwrkn2i", 2454 "fetchLFS": false, 2455 "fetchSubmodules": true, 2456 "deepClone": false, ··· 2469 }) {}; 2470 2471 rapidjson = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast 2472 + , cmake, fetchgit, lua 2473 }: 2474 buildLuarocksPackage { 2475 pname = "rapidjson"; ··· 2489 '') ["date" "path"]) ; 2490 2491 disabled = with lua; (luaOlder "5.1"); 2492 + nativeBuildInputs = [ cmake ]; 2493 propagatedBuildInputs = [ lua ]; 2494 2495 meta = { ··· 2504 }: 2505 buildLuarocksPackage { 2506 pname = "readline"; 2507 + version = "3.1-0"; 2508 knownRockspec = (fetchurl { 2509 + url = "mirror://luarocks/readline-3.1-0.rockspec"; 2510 + sha256 = "0bl5hsplnlg8fx3v83sz48y2p1rlxfig3iycnk1pn3xi724kscnc"; 2511 }).outPath; 2512 src = fetchurl { 2513 + url = "http://www.pjb.com.au/comp/lua/readline-3.1.tar.gz"; 2514 + sha256 = "0i02jsywj9mb4lwiyp742xgz53i9z5xzpx34lh54hcd6q3xkcrw2"; 2515 }; 2516 2517 disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.5"); ··· 2555 2556 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 2557 "url": "https://github.com/lua-stdlib/_debug.git", 2558 + "rev": "eaaa493937974889007158fa8681835b312d2a35", 2559 + "date": "2022-01-02T17:12:19-08:00", 2560 + "path": "/nix/store/qrzwpcg9airmlnayfgxspy7p7pa8csyl-_debug", 2561 + "sha256": "0nik882xm0d243ah8v2z5przcny7pfbbj529yn4qyvvz67lsfydb", 2562 "fetchLFS": false, 2563 "fetchSubmodules": true, 2564 "deepClone": false, ··· 2585 2586 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 2587 "url": "https://github.com/lua-stdlib/normalize.git", 2588 + "rev": "ccc697998af22d9d7f675e73f4b27c7a52151b5c", 2589 + "date": "2022-01-02T16:33:35-08:00", 2590 + "path": "/nix/store/nvyy1ibp43pzaldj6ark02ypqr45wmy1-normalize", 2591 + "sha256": "1m6x4lp7xzghvagbqjljyqfcpilh76j25b71da6jd304xc9r0ngy", 2592 "fetchLFS": false, 2593 "fetchSubmodules": true, 2594 "deepClone": false, ··· 2613 pname = "stdlib"; 2614 version = "41.2.2-1"; 2615 knownRockspec = (fetchurl { 2616 + url = "mirror://luarocks/stdlib-41.2.2-1.rockspec"; 2617 sha256 = "0rscb4cm8s8bb8fk8rknc269y7bjqpslspsaxgs91i8bvabja6f6"; 2618 }).outPath; 2619 src = fetchurl { ··· 2639 pname = "tl"; 2640 version = "0.13.2-1"; 2641 knownRockspec = (fetchurl { 2642 + url = "mirror://luarocks/tl-0.13.2-1.rockspec"; 2643 sha256 = "0a9nr03q6w1689drd0r2y8m7qbyxm8n6bkgjplwkr6c6abvbis3f"; 2644 }).outPath; 2645 src = fetchgit ( removeAttrs (builtins.fromJSON ''{
+20 -10
pkgs/development/lua-modules/overrides.nix
··· 15 }); 16 17 busted = prev.busted.overrideAttrs(oa: { 18 postConfigure = '' 19 substituteInPlace ''${rockspecFilename} \ 20 --replace "'lua_cliargs = 3.0-1'," "'lua_cliargs >= 3.0-1'," 21 ''; 22 postInstall = '' 23 - install -D completions/zsh/_busted $out/share/zsh/site-functions/_busted 24 - install -D completions/bash/busted.bash $out/share/bash-completion/completions/busted 25 ''; 26 }); 27 ··· 199 # until Alloyed/lua-lsp#28 200 postConfigure = '' 201 substituteInPlace ''${rockspecFilename} \ 202 - --replace '"lpeglabel ~> 1.5",' '"lpeglabel >= 1.5",' 203 ''; 204 }); 205 ··· 332 # we shouldn't use luarocks machinery to build complex cmake components 333 libluv = pkgs.stdenv.mkDerivation { 334 335 - inherit (prev.luv) pname version meta src; 336 337 cmakeFlags = [ 338 "-DBUILD_SHARED_LIBS=ON" 339 "-DBUILD_MODULE=OFF" 340 "-DWITH_SHARED_LIBUV=ON" 341 ]; 342 343 - buildInputs = [ pkgs.libuv ]; 344 345 nativeBuildInputs = [ pkgs.pkg-config pkgs.cmake ] 346 ++ pkgs.lib.optionals pkgs.stdenv.isDarwin [ pkgs.fixDarwinDylibNames ]; ··· 350 351 buildInputs = [ pkgs.pkg-config pkgs.libuv ]; 352 353 - doInstallCheck = true; 354 - 355 # Use system libuv instead of building local and statically linking 356 extraVariables = { 357 "WITH_SHARED_LIBUV" = "ON"; 358 }; 359 360 # we unset the LUA_PATH since the hook erases the interpreter defaults (To fix) 361 - installCheckPhase = '' 362 unset LUA_PATH 363 rm tests/test-{dns,thread}.lua 364 - lua tests/run.lua 365 ''; 366 367 passthru.libluv = final.libluv; ··· 401 })).overrideAttrs (old: { 402 # Without this, source root is wrongly set to ./readline-2.6/doc 403 setSourceRoot = '' 404 - sourceRoot=./readline-3.0 405 ''; 406 }); 407
··· 15 }); 16 17 busted = prev.busted.overrideAttrs(oa: { 18 + nativeBuildInputs = [ 19 + pkgs.installShellFiles 20 + ]; 21 postConfigure = '' 22 substituteInPlace ''${rockspecFilename} \ 23 --replace "'lua_cliargs = 3.0-1'," "'lua_cliargs >= 3.0-1'," 24 ''; 25 postInstall = '' 26 + installShellCompletion --cmd busted \ 27 + --zsh completions/zsh/_busted \ 28 + --bash completions/bash/busted.bash 29 ''; 30 }); 31 ··· 203 # until Alloyed/lua-lsp#28 204 postConfigure = '' 205 substituteInPlace ''${rockspecFilename} \ 206 + --replace '"dkjson ~> 2.5",' '"dkjson >= 2.5",' 207 ''; 208 }); 209 ··· 336 # we shouldn't use luarocks machinery to build complex cmake components 337 libluv = pkgs.stdenv.mkDerivation { 338 339 + pname = "libluv"; 340 + inherit (prev.luv) version meta src; 341 342 cmakeFlags = [ 343 "-DBUILD_SHARED_LIBS=ON" 344 "-DBUILD_MODULE=OFF" 345 "-DWITH_SHARED_LIBUV=ON" 346 + "-DLUA_BUILD_TYPE=System" 347 + "-DWITH_LUA_ENGINE=${if isLuaJIT then "LuaJit" else "Lua"}" 348 ]; 349 350 + # to make sure we dont use bundled deps 351 + postUnpack = '' 352 + rm -rf deps/lua deps/libuv 353 + ''; 354 + 355 + buildInputs = [ pkgs.libuv final.lua ]; 356 357 nativeBuildInputs = [ pkgs.pkg-config pkgs.cmake ] 358 ++ pkgs.lib.optionals pkgs.stdenv.isDarwin [ pkgs.fixDarwinDylibNames ]; ··· 362 363 buildInputs = [ pkgs.pkg-config pkgs.libuv ]; 364 365 # Use system libuv instead of building local and statically linking 366 extraVariables = { 367 "WITH_SHARED_LIBUV" = "ON"; 368 }; 369 370 # we unset the LUA_PATH since the hook erases the interpreter defaults (To fix) 371 + # tests is not run since they are not part of the tarball anymore 372 + preCheck = '' 373 unset LUA_PATH 374 rm tests/test-{dns,thread}.lua 375 ''; 376 377 passthru.libluv = final.libluv; ··· 411 })).overrideAttrs (old: { 412 # Without this, source root is wrongly set to ./readline-2.6/doc 413 setSourceRoot = '' 414 + sourceRoot=./readline-${pkgs.lib.versions.majorMinor old.version} 415 ''; 416 }); 417
+2 -2
pkgs/development/python-modules/pyinsteon/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "pyinsteon"; 19 - version = "1.1.0"; 20 format = "setuptools"; 21 22 disabled = pythonOlder "3.6"; ··· 25 owner = pname; 26 repo = pname; 27 rev = "refs/tags/${version}"; 28 - hash = "sha256-YoDCvYpbw06MXx371SNarrtQ0t4xlhwm1CBbl524P7c="; 29 }; 30 31 propagatedBuildInputs = [
··· 16 17 buildPythonPackage rec { 18 pname = "pyinsteon"; 19 + version = "1.1.1"; 20 format = "setuptools"; 21 22 disabled = pythonOlder "3.6"; ··· 25 owner = pname; 26 repo = pname; 27 rev = "refs/tags/${version}"; 28 + hash = "sha256-KrsZfLJRYqlV/VwMElv4YoT3/vvfJmrN47s7dGm4isw="; 29 }; 30 31 propagatedBuildInputs = [
+2 -13
pkgs/development/tools/build-managers/conan/default.nix
··· 21 sha256 = "1dv6mjsm67l1razcgmq66riqmsb36wns17mnipqr610v0z0zf5j0"; 22 }; 23 }); 24 - # https://github.com/conan-io/conan/issues/8876 25 - pyjwt = super.pyjwt.overridePythonAttrs (oldAttrs: rec { 26 - version = "1.7.1"; 27 - src = oldAttrs.src.override { 28 - inherit version; 29 - sha256 = "8d59a976fb773f3e6a39c85636357c4f0e242707394cadadd9814f5cbaa20e96"; 30 - }; 31 - disabledTests = [ 32 - "test_ec_verify_should_return_false_if_signature_invalid" 33 - ]; 34 - }); 35 distro = super.distro.overridePythonAttrs (oldAttrs: rec { 36 version = "1.5.0"; 37 src = oldAttrs.src.override { ··· 43 }; 44 45 in newPython.pkgs.buildPythonApplication rec { 46 - version = "1.47.0"; 47 pname = "conan"; 48 49 src = fetchFromGitHub { 50 owner = "conan-io"; 51 repo = "conan"; 52 rev = version; 53 - sha256 = "1zs2xb22rsy5fsc0fd7c95vrx1mfz7vasyg1lqkzyfimvn5zah6n"; 54 }; 55 56 propagatedBuildInputs = with newPython.pkgs; [
··· 21 sha256 = "1dv6mjsm67l1razcgmq66riqmsb36wns17mnipqr610v0z0zf5j0"; 22 }; 23 }); 24 distro = super.distro.overridePythonAttrs (oldAttrs: rec { 25 version = "1.5.0"; 26 src = oldAttrs.src.override { ··· 32 }; 33 34 in newPython.pkgs.buildPythonApplication rec { 35 + version = "1.49.0"; 36 pname = "conan"; 37 38 src = fetchFromGitHub { 39 owner = "conan-io"; 40 repo = "conan"; 41 rev = version; 42 + hash = "sha256-BJGstNAnAZtpwagsCY+4quTd0/79zL+v4ifKikS3vaw="; 43 }; 44 45 propagatedBuildInputs = with newPython.pkgs; [
+9 -2
pkgs/development/tools/misc/luarocks/default.nix
··· 3 , lua 4 # for 'luarocks pack' 5 , zip 6 # some packages need to be compiled with cmake 7 , cmake 8 , installShellFiles ··· 10 11 stdenv.mkDerivation rec { 12 pname = "luarocks"; 13 - version = "3.8.0"; 14 15 src = fetchFromGitHub { 16 owner = "luarocks"; 17 repo = "luarocks"; 18 rev = "v${version}"; 19 - sha256 = "sha256-tPSAtveOodF2w54d82hEyaTj91imtySJUTsk/gje2dQ="; 20 }; 21 22 patches = [ ./darwin-3.7.0.patch ]; ··· 70 export PATH="src/bin:''${PATH:-}" 71 export LUA_PATH="src/?.lua;''${LUA_PATH:-}" 72 ''; 73 74 meta = with lib; { 75 description = "A package manager for Lua";
··· 3 , lua 4 # for 'luarocks pack' 5 , zip 6 + , nix-update-script 7 # some packages need to be compiled with cmake 8 , cmake 9 , installShellFiles ··· 11 12 stdenv.mkDerivation rec { 13 pname = "luarocks"; 14 + version = "3.9.0"; 15 16 src = fetchFromGitHub { 17 owner = "luarocks"; 18 repo = "luarocks"; 19 rev = "v${version}"; 20 + sha256 = "sha256-i0NmF268aK5lr4zjYyhk4TPUO7Zyz0Cl0fSW43Pmd1Q="; 21 }; 22 23 patches = [ ./darwin-3.7.0.patch ]; ··· 71 export PATH="src/bin:''${PATH:-}" 72 export LUA_PATH="src/?.lua;''${LUA_PATH:-}" 73 ''; 74 + 75 + passthru = { 76 + updateScript = nix-update-script { 77 + attrPath = pname; 78 + }; 79 + }; 80 81 meta = with lib; { 82 description = "A package manager for Lua";
+10 -4
pkgs/development/tools/misc/luarocks/luarocks-nix.nix
··· 1 - { luarocks, fetchFromGitHub }: 2 luarocks.overrideAttrs(old: { 3 pname = "luarocks-nix"; 4 - version = "2021-01-22"; 5 src = fetchFromGitHub { 6 owner = "nix-community"; 7 repo = "luarocks-nix"; 8 - rev = "6aa1d59e88eaef72d699477c3e7aa98b274ca405"; 9 - sha256 = "sha256-nQLl01RFYZYhpShz0gHxnhwFPvTgALpAbjFPIuTD2D0="; 10 }; 11 patches = []; 12 13 meta.mainProgram = "luarocks"; 14 })
··· 1 + { luarocks, fetchFromGitHub, nix-update-script }: 2 luarocks.overrideAttrs(old: { 3 pname = "luarocks-nix"; 4 + 5 src = fetchFromGitHub { 6 owner = "nix-community"; 7 repo = "luarocks-nix"; 8 + rev = "b1ff9eeb64c7c1dc5fc177008d6f2be9191c6aa2"; 9 + sha256 = "sha256-mkzrf/6yMyLMIEDwsuCIxi1HJvg57ybyZPXVheFAAHE="; 10 }; 11 patches = []; 12 + 13 + passthru = { 14 + updateScript = nix-update-script { 15 + attrPath = "luarocks-nix"; 16 + }; 17 + }; 18 19 meta.mainProgram = "luarocks"; 20 })
+2 -2
pkgs/development/tools/neil/default.nix
··· 7 8 stdenv.mkDerivation rec { 9 pname = "neil"; 10 - version = "0.0.23"; 11 12 src = fetchFromGitHub { 13 owner = "babashka"; 14 repo = "neil"; 15 rev = "v${version}"; 16 - sha256 = "0fx34gkhkklzq3hzk1cj2l4rgqrq9vif5y8b0nx9gg4136yj85cg"; 17 }; 18 19 nativeBuildInputs = [ makeWrapper ];
··· 7 8 stdenv.mkDerivation rec { 9 pname = "neil"; 10 + version = "0.0.31"; 11 12 src = fetchFromGitHub { 13 owner = "babashka"; 14 repo = "neil"; 15 rev = "v${version}"; 16 + sha256 = "sha256-+TDFSg7WA/roIqkuvECPS2UyBqiKQSLp1dooBsVP4uk="; 17 }; 18 19 nativeBuildInputs = [ makeWrapper ];
+15 -1
pkgs/games/rocksndiamonds/default.nix
··· 1 - { lib, stdenv, fetchurl, makeDesktopItem, SDL2, SDL2_image, SDL2_mixer, SDL2_net }: 2 3 stdenv.mkDerivation rec { 4 pname = "rocksndiamonds"; ··· 8 url = "https://www.artsoft.org/RELEASES/unix/${pname}/rocksndiamonds-${version}.tar.gz"; 9 sha256 = "1k0m6l5g886d9mwwh6q0gw75qsb85mpf8i0rglh047app56nsk72"; 10 }; 11 12 desktopItem = makeDesktopItem { 13 name = "rocksndiamonds";
··· 1 + { lib, stdenv, fetchurl, fetchpatch, makeDesktopItem, SDL2, SDL2_image, SDL2_mixer, SDL2_net }: 2 3 stdenv.mkDerivation rec { 4 pname = "rocksndiamonds"; ··· 8 url = "https://www.artsoft.org/RELEASES/unix/${pname}/rocksndiamonds-${version}.tar.gz"; 9 sha256 = "1k0m6l5g886d9mwwh6q0gw75qsb85mpf8i0rglh047app56nsk72"; 10 }; 11 + 12 + patches = [ 13 + # Pull upstream fix for -fno-common toolchain. 14 + (fetchpatch { 15 + name = "fno-common-p1.patch"; 16 + url = "https://git.artsoft.org/?p=rocksndiamonds.git;a=patch;h=b4271393b10b7c664a58f3db7349a3875c1676fe"; 17 + sha256 = "0bdy4d2ril917radmm0c2yh2gqfyh7q1c8kahig5xknn2rkf2iac"; 18 + }) 19 + (fetchpatch { 20 + name = "fno-common-p2.patch"; 21 + url = "https://git.artsoft.org/?p=rocksndiamonds.git;a=patch;h=81dbde8a570a94dd2e938eff2f52dc5a3ecced21"; 22 + sha256 = "1mk5yb8pxrpxvvsxw3pjcbgx2c658baq9vmqqipbj5byhkkw7v2l"; 23 + }) 24 + ]; 25 26 desktopItem = makeDesktopItem { 27 name = "rocksndiamonds";
-5
pkgs/test/vim/default.nix
··· 23 vimrcConfig.vam.pluginDictionaries = [{name = "vim-nix"; }]; 24 }; 25 26 - test_vim_with_vim_nix_using_pathogen = vim_configurable.customize { 27 - name = "vim-with-vim-addon-nix-using-pathogen"; 28 - vimrcConfig.pathogen.pluginNames = [ "vim-nix" ]; 29 - }; 30 - 31 test_vim_with_vim_nix_using_plug = vim_configurable.customize { 32 name = "vim-with-vim-addon-nix-using-plug"; 33 vimrcConfig.plug.plugins = with vimPlugins; [ vim-nix ];
··· 23 vimrcConfig.vam.pluginDictionaries = [{name = "vim-nix"; }]; 24 }; 25 26 test_vim_with_vim_nix_using_plug = vim_configurable.customize { 27 name = "vim-with-vim-addon-nix-using-plug"; 28 vimrcConfig.plug.plugins = with vimPlugins; [ vim-nix ];