Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
e49a0448 c67f06b3

+1301 -612
+5
maintainers/maintainer-list.nix
··· 6616 githubId = 11212268; 6617 name = "gruve-p"; 6618 }; 6619 gschwartz = { 6620 email = "gsch@pennmedicine.upenn.edu"; 6621 github = "GregorySchwartz";
··· 6616 githubId = 11212268; 6617 name = "gruve-p"; 6618 }; 6619 + grxnola = { 6620 + github = "grxnola"; 6621 + githubId = 49906709; 6622 + name = "grxnola"; 6623 + }; 6624 gschwartz = { 6625 email = "gsch@pennmedicine.upenn.edu"; 6626 github = "GregorySchwartz";
+1
nixos/modules/module-list.nix
··· 346 ./services/audio/squeezelite.nix 347 ./services/audio/tts.nix 348 ./services/audio/wyoming/faster-whisper.nix 349 ./services/audio/wyoming/piper.nix 350 ./services/audio/ympd.nix 351 ./services/backup/automysqlbackup.nix
··· 346 ./services/audio/squeezelite.nix 347 ./services/audio/tts.nix 348 ./services/audio/wyoming/faster-whisper.nix 349 + ./services/audio/wyoming/openwakeword.nix 350 ./services/audio/wyoming/piper.nix 351 ./services/audio/ympd.nix 352 ./services/backup/automysqlbackup.nix
+157
nixos/modules/services/audio/wyoming/openwakeword.nix
···
··· 1 + { config 2 + , lib 3 + , pkgs 4 + , ... 5 + }: 6 + 7 + let 8 + cfg = config.services.wyoming.openwakeword; 9 + 10 + inherit (lib) 11 + concatMapStringsSep 12 + escapeShellArgs 13 + mkOption 14 + mdDoc 15 + mkEnableOption 16 + mkIf 17 + mkPackageOptionMD 18 + types 19 + ; 20 + 21 + inherit (builtins) 22 + toString 23 + ; 24 + 25 + models = [ 26 + # wyoming_openwakeword/models/*.tflite 27 + "alexa" 28 + "hey_jarvis" 29 + "hey_mycroft" 30 + "hey_rhasspy" 31 + "ok_nabu" 32 + ]; 33 + 34 + in 35 + 36 + { 37 + meta.buildDocsInSandbox = false; 38 + 39 + options.services.wyoming.openwakeword = with types; { 40 + enable = mkEnableOption (mdDoc "Wyoming openWakeWord server"); 41 + 42 + package = mkPackageOptionMD pkgs "wyoming-openwakeword" { }; 43 + 44 + uri = mkOption { 45 + type = strMatching "^(tcp|unix)://.*$"; 46 + default = "tcp://0.0.0.0:10400"; 47 + example = "tcp://192.0.2.1:5000"; 48 + description = mdDoc '' 49 + URI to bind the wyoming server to. 50 + ''; 51 + }; 52 + 53 + models = mkOption { 54 + type = listOf (enum models); 55 + default = models; 56 + description = mdDoc '' 57 + List of wake word models that should be made available. 58 + ''; 59 + }; 60 + 61 + preloadModels = mkOption { 62 + type = listOf (enum models); 63 + default = [ 64 + "ok_nabu" 65 + ]; 66 + description = mdDoc '' 67 + List of wake word models to preload after startup. 68 + ''; 69 + }; 70 + 71 + threshold = mkOption { 72 + type = float; 73 + default = 0.5; 74 + description = mdDoc '' 75 + Activation threshold (0-1), where higher means fewer activations. 76 + 77 + See trigger level for the relationship between activations and 78 + wake word detections. 79 + ''; 80 + apply = toString; 81 + }; 82 + 83 + triggerLevel = mkOption { 84 + type = int; 85 + default = 1; 86 + description = mdDoc '' 87 + Number of activations before a detection is registered. 88 + 89 + A higher trigger level means fewer detections. 90 + ''; 91 + apply = toString; 92 + }; 93 + 94 + extraArgs = mkOption { 95 + type = listOf str; 96 + default = [ ]; 97 + description = mdDoc '' 98 + Extra arguments to pass to the server commandline. 99 + ''; 100 + apply = escapeShellArgs; 101 + }; 102 + }; 103 + 104 + config = mkIf cfg.enable { 105 + systemd.services."wyoming-openwakeword" = { 106 + description = "Wyoming openWakeWord server"; 107 + after = [ 108 + "network-online.target" 109 + ]; 110 + wantedBy = [ 111 + "multi-user.target" 112 + ]; 113 + serviceConfig = { 114 + DynamicUser = true; 115 + User = "wyoming-openwakeword"; 116 + # https://github.com/home-assistant/addons/blob/master/openwakeword/rootfs/etc/s6-overlay/s6-rc.d/openwakeword/run 117 + ExecStart = '' 118 + ${cfg.package}/bin/wyoming-openwakeword \ 119 + --uri ${cfg.uri} \ 120 + ${concatMapStringsSep " " (model: "--model ${model}") cfg.models} \ 121 + ${concatMapStringsSep " " (model: "--preload-model ${model}") cfg.preloadModels} \ 122 + --threshold ${cfg.threshold} \ 123 + --trigger-level ${cfg.triggerLevel} ${cfg.extraArgs} 124 + ''; 125 + CapabilityBoundingSet = ""; 126 + DeviceAllow = ""; 127 + DevicePolicy = "closed"; 128 + LockPersonality = true; 129 + MemoryDenyWriteExecute = true; 130 + PrivateDevices = true; 131 + PrivateUsers = true; 132 + ProtectHome = true; 133 + ProtectHostname = true; 134 + ProtectKernelLogs = true; 135 + ProtectKernelModules = true; 136 + ProtectKernelTunables = true; 137 + ProtectControlGroups = true; 138 + ProtectProc = "invisible"; 139 + ProcSubset = "pid"; 140 + RestrictAddressFamilies = [ 141 + "AF_INET" 142 + "AF_INET6" 143 + "AF_UNIX" 144 + ]; 145 + RestrictNamespaces = true; 146 + RestrictRealtime = true; 147 + RuntimeDirectory = "wyoming-openwakeword"; 148 + SystemCallArchitectures = "native"; 149 + SystemCallFilter = [ 150 + "@system-service" 151 + "~@privileged" 152 + ]; 153 + UMask = "0077"; 154 + }; 155 + }; 156 + }; 157 + }
+2 -2
pkgs/applications/audio/furnace/default.nix
··· 28 29 stdenv.mkDerivation rec { 30 pname = "furnace"; 31 - version = "0.6pre16"; 32 33 src = fetchFromGitHub { 34 owner = "tildearrow"; 35 repo = "furnace"; 36 rev = "v${version}"; 37 fetchSubmodules = true; 38 - hash = "sha256-n66Bv8xB/0KMJYoMILxsaKoaX+E0OFGI3QGqhxKTFUQ="; 39 }; 40 41 postPatch = lib.optionalString stdenv.hostPlatform.isLinux ''
··· 28 29 stdenv.mkDerivation rec { 30 pname = "furnace"; 31 + version = "0.6pre18"; 32 33 src = fetchFromGitHub { 34 owner = "tildearrow"; 35 repo = "furnace"; 36 rev = "v${version}"; 37 fetchSubmodules = true; 38 + hash = "sha256-RLmXP/F3WnADx/NUPAJZpGSQZ7CGm1bG4UJYAcIeHME="; 39 }; 40 41 postPatch = lib.optionalString stdenv.hostPlatform.isLinux ''
+3 -3
pkgs/applications/audio/mmlgui/default.nix
··· 15 16 stdenv.mkDerivation rec { 17 pname = "mmlgui"; 18 - version = "unstable-2023-06-12"; 19 20 src = fetchFromGitHub { 21 owner = "superctr"; 22 repo = "mmlgui"; 23 - rev = "d680f576aba769b0d63300fbed57a0e9e54dfa4b"; 24 fetchSubmodules = true; 25 - hash = "sha256-BqwayGQBIa0ru22Xci8vHNYPFr9scZSdrUOlDtGBnno="; 26 }; 27 28 postPatch = ''
··· 15 16 stdenv.mkDerivation rec { 17 pname = "mmlgui"; 18 + version = "unstable-2023-09-20"; 19 20 src = fetchFromGitHub { 21 owner = "superctr"; 22 repo = "mmlgui"; 23 + rev = "a941dbcb34d2e1d56ac4489fbec5f893e9b8fb6d"; 24 fetchSubmodules = true; 25 + hash = "sha256-d5DznY0WRJpiUEtUQ8Yihc0Ej8+k5cYTqrzUSp/1wg4="; 26 }; 27 28 postPatch = ''
+430 -442
pkgs/applications/editors/vim/plugins/generated.nix
··· 65 66 Coqtail = buildVimPlugin { 67 pname = "Coqtail"; 68 - version = "2023-08-05"; 69 src = fetchFromGitHub { 70 owner = "whonore"; 71 repo = "Coqtail"; 72 - rev = "dfe3939c9caff69d9af76bfd74f1a40fb7dc5609"; 73 - sha256 = "0av2m075n6z05ah9ndrgnp9s16yrz6n2lj0igd9fh3c5k41x5xks"; 74 }; 75 meta.homepage = "https://github.com/whonore/Coqtail/"; 76 }; ··· 173 174 LazyVim = buildVimPlugin { 175 pname = "LazyVim"; 176 - version = "2023-09-04"; 177 src = fetchFromGitHub { 178 owner = "LazyVim"; 179 repo = "LazyVim"; 180 - rev = "a72a84972d85e5bbc6b9d60a0983b37efef21b8a"; 181 - sha256 = "15j0aq3x8n22a7r5kw7mynch82527xgjlj4z03kzyrfwagnrnjf3"; 182 }; 183 meta.homepage = "https://github.com/LazyVim/LazyVim/"; 184 }; 185 186 LeaderF = buildVimPlugin { 187 pname = "LeaderF"; 188 - version = "2023-09-15"; 189 src = fetchFromGitHub { 190 owner = "Yggdroot"; 191 repo = "LeaderF"; 192 - rev = "9c4451d2c1a6ea1f32e39fe52d58f6f5655b231d"; 193 - sha256 = "1czr6nbwdba4m9yd1y892za5bkhx58m9svkz36g2blpma7cq65lw"; 194 }; 195 meta.homepage = "https://github.com/Yggdroot/LeaderF/"; 196 }; ··· 305 306 SchemaStore-nvim = buildVimPlugin { 307 pname = "SchemaStore.nvim"; 308 - version = "2023-09-15"; 309 src = fetchFromGitHub { 310 owner = "b0o"; 311 repo = "SchemaStore.nvim"; 312 - rev = "2a6a5d3e2bc8a5727b6d083d2920d12a392ed05b"; 313 - sha256 = "097nqimjz2c5g0rsbbvp36haga334sfrlpqvfwwp8zyxxkgh7n77"; 314 }; 315 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 316 }; ··· 377 378 SpaceVim = buildVimPlugin { 379 pname = "SpaceVim"; 380 - version = "2023-09-16"; 381 src = fetchFromGitHub { 382 owner = "SpaceVim"; 383 repo = "SpaceVim"; 384 - rev = "92395fbeae1ba673aa618e673e731cefa0effa5b"; 385 - sha256 = "10rhrxq866rlkbh24c5khnk6lkm78370smd6dph4pa5mrx6dbqjn"; 386 }; 387 meta.homepage = "https://github.com/SpaceVim/SpaceVim/"; 388 }; ··· 449 450 YouCompleteMe = buildVimPlugin { 451 pname = "YouCompleteMe"; 452 - version = "2023-09-14"; 453 src = fetchFromGitHub { 454 owner = "ycm-core"; 455 repo = "YouCompleteMe"; 456 - rev = "91ee858de446a150c10cf2aacaeed90db9235880"; 457 - sha256 = "08qhz4c5kl8y1r5ikk5174y738fai1s3s6sy114f2fmggx8130nq"; 458 fetchSubmodules = true; 459 }; 460 meta.homepage = "https://github.com/ycm-core/YouCompleteMe/"; ··· 522 523 aerial-nvim = buildVimPlugin { 524 pname = "aerial.nvim"; 525 - version = "2023-09-16"; 526 src = fetchFromGitHub { 527 owner = "stevearc"; 528 repo = "aerial.nvim"; 529 - rev = "bed048ddef3e7b7fd992bc3a28c413aaa25d63de"; 530 - sha256 = "08x46r1k87wrf8bdlbzbnv4czrn4qq1hp7apl7q13gmp1dyf3llm"; 531 fetchSubmodules = true; 532 }; 533 meta.homepage = "https://github.com/stevearc/aerial.nvim/"; ··· 583 584 ale = buildVimPlugin { 585 pname = "ale"; 586 - version = "2023-09-16"; 587 src = fetchFromGitHub { 588 owner = "dense-analysis"; 589 repo = "ale"; 590 - rev = "cf270a1adadff2fa8b2931940ef8192b975f1ee4"; 591 - sha256 = "1pbfb2jp6ygwy3k22aihsdshh5nr0bz0s5n596nn9b875l5q3fzc"; 592 }; 593 meta.homepage = "https://github.com/dense-analysis/ale/"; 594 }; ··· 775 776 asyncrun-vim = buildVimPlugin { 777 pname = "asyncrun.vim"; 778 - version = "2023-08-20"; 779 src = fetchFromGitHub { 780 owner = "skywind3000"; 781 repo = "asyncrun.vim"; 782 - rev = "42385d54b8546c163b946fd50eed2103ef7993c9"; 783 - sha256 = "1brqg6315z4rwsjv28yf86lynzshzpwxys248mpfzyhkz5jfad1y"; 784 }; 785 meta.homepage = "https://github.com/skywind3000/asyncrun.vim/"; 786 }; 787 788 asynctasks-vim = buildVimPlugin { 789 pname = "asynctasks.vim"; 790 - version = "2023-09-16"; 791 src = fetchFromGitHub { 792 owner = "skywind3000"; 793 repo = "asynctasks.vim"; 794 - rev = "15daa3b70b2b8b78cfbf04dd070b962ab1283406"; 795 - sha256 = "1cwn0fbf0xh7zp7v13qbpfx1hyvy7m9ixn8wxwyrqzx5xhf6xj3j"; 796 }; 797 meta.homepage = "https://github.com/skywind3000/asynctasks.vim/"; 798 }; ··· 1063 1064 blamer-nvim = buildVimPlugin { 1065 pname = "blamer.nvim"; 1066 - version = "2021-11-17"; 1067 src = fetchFromGitHub { 1068 owner = "APZelos"; 1069 repo = "blamer.nvim"; 1070 - rev = "f4eb22a9013642c411725fdda945ae45f8d93181"; 1071 - sha256 = "1czjagkfjw57f2nvjjgbma1gcy1ylcd68dyfc5ivr2wc6fdw5lks"; 1072 }; 1073 meta.homepage = "https://github.com/APZelos/blamer.nvim/"; 1074 }; ··· 1171 1172 bufferline-nvim = buildVimPlugin { 1173 pname = "bufferline.nvim"; 1174 - version = "2023-08-29"; 1175 src = fetchFromGitHub { 1176 owner = "akinsho"; 1177 repo = "bufferline.nvim"; 1178 - rev = "9961d87bb3ec008213c46ba14b3f384a5f520eb5"; 1179 - sha256 = "0g521d6ngl7wajipqpksarxld0pwdk7878yjw64j7lc6p80si3js"; 1180 }; 1181 meta.homepage = "https://github.com/akinsho/bufferline.nvim/"; 1182 }; ··· 1243 1244 ccc-nvim = buildVimPlugin { 1245 pname = "ccc.nvim"; 1246 - version = "2023-06-12"; 1247 src = fetchFromGitHub { 1248 owner = "uga-rosa"; 1249 repo = "ccc.nvim"; 1250 - rev = "4a0ddaf787cc82796e84ab8a7f70d086f250aeb6"; 1251 - sha256 = "1qm3dp7w2rqnyvgsrn0j7s14nw2a1z7dfhyawkvzslsv6z4z4njg"; 1252 }; 1253 meta.homepage = "https://github.com/uga-rosa/ccc.nvim/"; 1254 }; ··· 1747 1748 cmp-omni = buildVimPlugin { 1749 pname = "cmp-omni"; 1750 - version = "2023-05-25"; 1751 src = fetchFromGitHub { 1752 owner = "hrsh7th"; 1753 repo = "cmp-omni"; 1754 - rev = "9436e6cdd7c5dfa24a99a60d9280b24dbdea3649"; 1755 - sha256 = "0jypzs5y9pq55db5jkmvshlx4lzi82mxcfr53nsb0nd3xr38ywxd"; 1756 }; 1757 meta.homepage = "https://github.com/hrsh7th/cmp-omni/"; 1758 }; ··· 1819 1820 cmp-spell = buildVimPlugin { 1821 pname = "cmp-spell"; 1822 - version = "2022-10-10"; 1823 src = fetchFromGitHub { 1824 owner = "f3fora"; 1825 repo = "cmp-spell"; 1826 - rev = "60584cb75e5e8bba5a0c9e4c3ab0791e0698bffa"; 1827 - sha256 = "1lzv8wbq1w45pbig7lcgyj46nmz4gkag7b37j72p04bixr7wgabv"; 1828 }; 1829 meta.homepage = "https://github.com/f3fora/cmp-spell/"; 1830 }; ··· 2023 2024 coc-nvim = buildVimPlugin { 2025 pname = "coc.nvim"; 2026 - version = "2023-09-15"; 2027 src = fetchFromGitHub { 2028 owner = "neoclide"; 2029 repo = "coc.nvim"; 2030 - rev = "b4735a634aa397491fd6adcebd7deff501592f62"; 2031 - sha256 = "1yvyrdv95xskklv6dmpq656bhy5hixfswzymfcxqqchhz7w7nc7q"; 2032 }; 2033 meta.homepage = "https://github.com/neoclide/coc.nvim/"; 2034 }; ··· 2047 2048 codeium-vim = buildVimPlugin { 2049 pname = "codeium.vim"; 2050 - version = "2023-09-15"; 2051 src = fetchFromGitHub { 2052 owner = "Exafunction"; 2053 repo = "codeium.vim"; 2054 - rev = "45dd945883c2ff87553d78710797ad7a2602b269"; 2055 - sha256 = "042ah6laxrjlghc9nd7b1116qghh750x6qh9gg9apbha4w5zcpxx"; 2056 }; 2057 meta.homepage = "https://github.com/Exafunction/codeium.vim/"; 2058 }; 2059 2060 codewindow-nvim = buildVimPlugin { 2061 pname = "codewindow.nvim"; 2062 - version = "2023-07-23"; 2063 src = fetchFromGitHub { 2064 owner = "gorbit99"; 2065 repo = "codewindow.nvim"; 2066 - rev = "11fb5520898d22a563fe6a124a61c0d2887f3d3f"; 2067 - sha256 = "1rnw5z3vwc183gvk3v3xciyzgqwfp0jsd5vckj5gpig1lg9l4yzf"; 2068 }; 2069 meta.homepage = "https://github.com/gorbit99/codewindow.nvim/"; 2070 }; ··· 2107 2108 com-cloudedmountain-ide-neovim = buildVimPlugin { 2109 pname = "com.cloudedmountain.ide.neovim"; 2110 - version = "2023-01-07"; 2111 src = fetchFromGitHub { 2112 owner = "Domeee"; 2113 repo = "com.cloudedmountain.ide.neovim"; 2114 - rev = "d479b806f06cd6714e321cf88e94aae858e8274e"; 2115 - sha256 = "0nwp8drcy1bxd493gmi3bz41yw0avpvbfwx9dq03x9kxsjc81rsz"; 2116 }; 2117 meta.homepage = "https://github.com/Domeee/com.cloudedmountain.ide.neovim/"; 2118 }; ··· 2335 2336 copilot-lua = buildVimPlugin { 2337 pname = "copilot.lua"; 2338 - version = "2023-09-04"; 2339 src = fetchFromGitHub { 2340 owner = "zbirenbaum"; 2341 repo = "copilot.lua"; 2342 - rev = "2c942f33ba5c621c906e625e00a1bb504b65e2f0"; 2343 - sha256 = "0dwvqf2spg0vg8vi5w2a75dyyl5s9kz3mgn9xbyp8a6pqdnvqfk1"; 2344 }; 2345 meta.homepage = "https://github.com/zbirenbaum/copilot.lua/"; 2346 }; 2347 2348 copilot-vim = buildVimPlugin { 2349 pname = "copilot.vim"; 2350 - version = "2023-09-02"; 2351 src = fetchFromGitHub { 2352 owner = "github"; 2353 repo = "copilot.vim"; 2354 - rev = "719dd8d0beab993dbad47a9e86ecb0dbd4a99da5"; 2355 - sha256 = "07shpmy4296mvcqzjs7hhaw1vg81rjncg6r1q8p1jxc6w5gq7b2g"; 2356 }; 2357 meta.homepage = "https://github.com/github/copilot.vim/"; 2358 }; ··· 2431 2432 crates-nvim = buildVimPlugin { 2433 pname = "crates.nvim"; 2434 - version = "2023-09-11"; 2435 src = fetchFromGitHub { 2436 owner = "saecki"; 2437 repo = "crates.nvim"; 2438 - rev = "db629b5cfb2aa8de9e44efb795657297ee95ca91"; 2439 - sha256 = "00ndgfa070044sqjg41lxv26vvjahfa6b1ysydyccln9wa27n6nc"; 2440 }; 2441 meta.homepage = "https://github.com/saecki/crates.nvim/"; 2442 }; ··· 2467 2468 csv-vim = buildVimPlugin { 2469 pname = "csv.vim"; 2470 - version = "2023-05-04"; 2471 src = fetchFromGitHub { 2472 owner = "chrisbra"; 2473 repo = "csv.vim"; 2474 - rev = "15ff93edf5b26c466affbb356e0696b7d6a3b499"; 2475 - sha256 = "0mjvy0lbcd3j5dnfq2575m29pbs8w3asdwmknhnk6by6aih3mdsj"; 2476 }; 2477 meta.homepage = "https://github.com/chrisbra/csv.vim/"; 2478 }; ··· 2551 2552 dashboard-nvim = buildVimPlugin { 2553 pname = "dashboard-nvim"; 2554 - version = "2023-09-09"; 2555 src = fetchFromGitHub { 2556 owner = "nvimdev"; 2557 repo = "dashboard-nvim"; 2558 - rev = "bbe0234168501b8ba46f24b4fb3cb7c5b88c0784"; 2559 - sha256 = "1876r48hxfz0x1ylkwr3ljgmls861rcjxx5rs686bqmdrwffm9lj"; 2560 }; 2561 meta.homepage = "https://github.com/nvimdev/dashboard-nvim/"; 2562 }; ··· 2949 2950 diffview-nvim = buildVimPlugin { 2951 pname = "diffview.nvim"; 2952 - version = "2023-08-21"; 2953 src = fetchFromGitHub { 2954 owner = "sindrets"; 2955 repo = "diffview.nvim"; 2956 - rev = "7e5a85c186027cab1e825d018f07c350177077fc"; 2957 - sha256 = "0jzlrk8dbijwzv5gc80s4bh3ji3bcxxdfffk5jbzlijjs76cpwl9"; 2958 }; 2959 meta.homepage = "https://github.com/sindrets/diffview.nvim/"; 2960 }; ··· 3021 3022 dressing-nvim = buildVimPlugin { 3023 pname = "dressing.nvim"; 3024 - version = "2023-09-05"; 3025 src = fetchFromGitHub { 3026 owner = "stevearc"; 3027 repo = "dressing.nvim"; 3028 - rev = "c1e1d5fa44fe08811b6ef4aadac2b50e602f9504"; 3029 - sha256 = "0kxal34ll2xqgaa9sc1pyh7481q1kcfkqsn356brfwf277hflr7a"; 3030 }; 3031 meta.homepage = "https://github.com/stevearc/dressing.nvim/"; 3032 }; 3033 3034 dropbar-nvim = buildVimPlugin { 3035 pname = "dropbar.nvim"; 3036 - version = "2023-09-05"; 3037 src = fetchFromGitHub { 3038 owner = "Bekaboo"; 3039 repo = "dropbar.nvim"; 3040 - rev = "d9e2b240e9d4fe42fc74c9e40127f3217f00e14b"; 3041 - sha256 = "0bp845ll7pj7il0zkyqdvq735grfws6lw8hywqfwa15xxqys6xwf"; 3042 }; 3043 meta.homepage = "https://github.com/Bekaboo/dropbar.nvim/"; 3044 }; ··· 3093 3094 editorconfig-vim = buildVimPlugin { 3095 pname = "editorconfig-vim"; 3096 - version = "2023-08-30"; 3097 src = fetchFromGitHub { 3098 owner = "editorconfig"; 3099 repo = "editorconfig-vim"; 3100 - rev = "aefcf3d735122f349b172302d164d5eb61cd7e5f"; 3101 - sha256 = "1aj3bx2gf348mka27bw7k85kgm8j9gpiih5p79zrsry515vy0smx"; 3102 fetchSubmodules = true; 3103 }; 3104 meta.homepage = "https://github.com/editorconfig/editorconfig-vim/"; ··· 3118 3119 efmls-configs-nvim = buildVimPlugin { 3120 pname = "efmls-configs-nvim"; 3121 - version = "2023-09-16"; 3122 src = fetchFromGitHub { 3123 owner = "creativenull"; 3124 repo = "efmls-configs-nvim"; 3125 - rev = "055323cf4fefe7032165867a8e9ffa7b638b5770"; 3126 - sha256 = "10ifgv4iaqi4pcfv1q7xqvizf0755vv342m226h524b17f2q1skx"; 3127 }; 3128 meta.homepage = "https://github.com/creativenull/efmls-configs-nvim/"; 3129 }; 3130 3131 elixir-tools-nvim = buildVimPlugin { 3132 pname = "elixir-tools.nvim"; 3133 - version = "2023-09-15"; 3134 src = fetchFromGitHub { 3135 owner = "elixir-tools"; 3136 repo = "elixir-tools.nvim"; 3137 - rev = "33eace2f6943d8240f8030e76569806f11090f5b"; 3138 - sha256 = "1mh235yss7j5z7qqidpf365s0bl22h9mvmfdb8s76gvgasf33rg3"; 3139 }; 3140 meta.homepage = "https://github.com/elixir-tools/elixir-tools.nvim/"; 3141 }; ··· 3384 3385 flash-nvim = buildVimPlugin { 3386 pname = "flash.nvim"; 3387 - version = "2023-08-29"; 3388 src = fetchFromGitHub { 3389 owner = "folke"; 3390 repo = "flash.nvim"; 3391 - rev = "8a8e74922a383c253b7f92e042b749150140c8d1"; 3392 - sha256 = "19a1i4lh4ij5x7pqrvs43yw24li1zajxrm6zrlbiffwppl7903dl"; 3393 }; 3394 meta.homepage = "https://github.com/folke/flash.nvim/"; 3395 }; 3396 3397 flatten-nvim = buildVimPlugin { 3398 pname = "flatten.nvim"; 3399 - version = "2023-09-15"; 3400 src = fetchFromGitHub { 3401 owner = "willothy"; 3402 repo = "flatten.nvim"; 3403 - rev = "9d0fa9964f88de09990e661d1014487f9ad028fd"; 3404 - sha256 = "1hsykmrvrmp2kfspqw5h8r72pn1ipjidn3675zfzanzp92ldxrb5"; 3405 }; 3406 meta.homepage = "https://github.com/willothy/flatten.nvim/"; 3407 }; ··· 3468 3469 flutter-tools-nvim = buildVimPlugin { 3470 pname = "flutter-tools.nvim"; 3471 - version = "2023-09-13"; 3472 src = fetchFromGitHub { 3473 owner = "akinsho"; 3474 repo = "flutter-tools.nvim"; 3475 - rev = "974859e9fafbff48450a85c0c7f57cb576c53626"; 3476 - sha256 = "04zaghw9dbwxz48rrssihr7907rcg6g3dmrxihhyzqqw6q33i2b2"; 3477 }; 3478 meta.homepage = "https://github.com/akinsho/flutter-tools.nvim/"; 3479 }; ··· 3492 3493 formatter-nvim = buildVimPlugin { 3494 pname = "formatter.nvim"; 3495 - version = "2023-08-14"; 3496 src = fetchFromGitHub { 3497 owner = "mhartington"; 3498 repo = "formatter.nvim"; 3499 - rev = "44c89f09dcc220dc2a9b056e93c3a87c86e79804"; 3500 - sha256 = "0x07bqrwqzw56rvwarxxf9ylx01fk5a7ds1zq1fvjxizyf1qya03"; 3501 }; 3502 meta.homepage = "https://github.com/mhartington/formatter.nvim/"; 3503 }; ··· 3624 3625 fzf-lua = buildVimPlugin { 3626 pname = "fzf-lua"; 3627 - version = "2023-09-16"; 3628 src = fetchFromGitHub { 3629 owner = "ibhagwan"; 3630 repo = "fzf-lua"; 3631 - rev = "30df82df8f5f0932bc07ff11f64b94bdf89b884d"; 3632 - sha256 = "01ar6p0iknlk131g7j1x1cfb9yngnql2q7yalr0dlq4g1kv30id9"; 3633 }; 3634 meta.homepage = "https://github.com/ibhagwan/fzf-lua/"; 3635 }; 3636 3637 fzf-vim = buildVimPlugin { 3638 pname = "fzf.vim"; 3639 - version = "2023-09-16"; 3640 src = fetchFromGitHub { 3641 owner = "junegunn"; 3642 repo = "fzf.vim"; 3643 - rev = "fe362d413a0286b1474c1d235c6eb1d0cd6ae8a4"; 3644 - sha256 = "0ff2h9ry67zpjjmn4f384bbfcmkyq7kbbsl3s6c1ykhhj6943b7g"; 3645 }; 3646 meta.homepage = "https://github.com/junegunn/fzf.vim/"; 3647 }; ··· 3720 3721 git-blame-nvim = buildVimPlugin { 3722 pname = "git-blame.nvim"; 3723 - version = "2023-09-14"; 3724 src = fetchFromGitHub { 3725 owner = "f-person"; 3726 repo = "git-blame.nvim"; 3727 - rev = "02fadac1702c014ce49a9499137d798934bdb465"; 3728 - sha256 = "1i5d388blpsrpms4ljqgy6sm1yhh172bf4ydjdbhvw16m6gpdkpm"; 3729 }; 3730 meta.homepage = "https://github.com/f-person/git-blame.nvim/"; 3731 }; 3732 3733 git-conflict-nvim = buildVimPlugin { 3734 pname = "git-conflict.nvim"; 3735 - version = "2023-09-13"; 3736 src = fetchFromGitHub { 3737 owner = "akinsho"; 3738 repo = "git-conflict.nvim"; 3739 - rev = "a0f1bffdb7ccb81bb16f4bbfd9740775835b71b3"; 3740 - sha256 = "13hx5ipfakilx0zfgq9jdv0i7yykqvvjly128diw4yxpzwvi7rnb"; 3741 }; 3742 meta.homepage = "https://github.com/akinsho/git-conflict.nvim/"; 3743 }; ··· 3792 3793 gitsigns-nvim = buildNeovimPlugin { 3794 pname = "gitsigns.nvim"; 3795 - version = "2023-09-12"; 3796 src = fetchFromGitHub { 3797 owner = "lewis6991"; 3798 repo = "gitsigns.nvim"; 3799 - rev = "907ae8636016aab2f283576fc60d46ca3427e579"; 3800 - sha256 = "0v2ikhhqqxrfzp6wnqcszazq3zbmlf1g3n1jgln459bsyj7qq00v"; 3801 }; 3802 meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; 3803 }; ··· 3852 3853 go-nvim = buildVimPlugin { 3854 pname = "go.nvim"; 3855 - version = "2023-09-07"; 3856 src = fetchFromGitHub { 3857 owner = "ray-x"; 3858 repo = "go.nvim"; 3859 - rev = "5e9e083f4927402eab6ab233e970b397daa2e826"; 3860 - sha256 = "0mqfmmaazx18ji75rwvvcw1slyrhllpgdlzfwg61q5bnkr8a2p92"; 3861 }; 3862 meta.homepage = "https://github.com/ray-x/go.nvim/"; 3863 }; ··· 3900 3901 goto-preview = buildVimPlugin { 3902 pname = "goto-preview"; 3903 - version = "2023-07-19"; 3904 src = fetchFromGitHub { 3905 owner = "rmagatti"; 3906 repo = "goto-preview"; 3907 - rev = "84532db88f8ee272bcd1c07cda55884e23fd9087"; 3908 - sha256 = "0insrplfq6rwm9bgfj5adjk8c4mbvqhpzbd32lqq6bg4960m09vl"; 3909 }; 3910 meta.homepage = "https://github.com/rmagatti/goto-preview/"; 3911 }; ··· 3984 3985 gruvbox-nvim = buildVimPlugin { 3986 pname = "gruvbox.nvim"; 3987 - version = "2023-08-29"; 3988 src = fetchFromGitHub { 3989 owner = "ellisonleao"; 3990 repo = "gruvbox.nvim"; 3991 - rev = "7fb36e0f67aa6f3d7f3e54f37ca7032ea1af0b59"; 3992 - sha256 = "0i9aivg66fg9rp9m9z8vzg3g15yfki5c9hrwhd5j577k5m8bybj6"; 3993 }; 3994 meta.homepage = "https://github.com/ellisonleao/gruvbox.nvim/"; 3995 }; ··· 4032 4033 hardtime-nvim = buildVimPlugin { 4034 pname = "hardtime.nvim"; 4035 - version = "2023-09-11"; 4036 src = fetchFromGitHub { 4037 owner = "m4xshen"; 4038 repo = "hardtime.nvim"; 4039 - rev = "370dea43c353c57bd2c9c985f43812b0634adb7b"; 4040 - sha256 = "070caab311blcl0j2ygmvv0rdqqb6kad6bvwwgravrwb3d4yy1a0"; 4041 }; 4042 meta.homepage = "https://github.com/m4xshen/hardtime.nvim/"; 4043 }; ··· 4067 4068 haskell-tools-nvim = buildNeovimPlugin { 4069 pname = "haskell-tools.nvim"; 4070 - version = "2023-09-14"; 4071 src = fetchFromGitHub { 4072 owner = "MrcJkb"; 4073 repo = "haskell-tools.nvim"; 4074 - rev = "c41aad691fc16fc2ff334e7a2b4df79886323dad"; 4075 - sha256 = "088a55l4z6qmqi7dhsimarnhi7dpkcs44m4wwy4rsxwbc88g42fk"; 4076 }; 4077 meta.homepage = "https://github.com/MrcJkb/haskell-tools.nvim/"; 4078 }; ··· 4163 4164 highlight-undo-nvim = buildVimPlugin { 4165 pname = "highlight-undo.nvim"; 4166 - version = "2023-08-17"; 4167 src = fetchFromGitHub { 4168 owner = "tzachar"; 4169 repo = "highlight-undo.nvim"; 4170 - rev = "d9e674a2eb4d95ee16cd477d47eab7ddc586e336"; 4171 - sha256 = "02ic1ag8k28na6ia48bwkmg0ca961dliizjzsvhp28hkvvx6py9r"; 4172 }; 4173 meta.homepage = "https://github.com/tzachar/highlight-undo.nvim/"; 4174 }; ··· 4234 4235 hop-nvim = buildVimPlugin { 4236 pname = "hop.nvim"; 4237 - version = "2023-09-09"; 4238 src = fetchFromGitHub { 4239 - owner = "phaazon"; 4240 repo = "hop.nvim"; 4241 - rev = "1a1eceafe54b5081eae4cb91c723abd1d450f34b"; 4242 - sha256 = "08h18cam2yr57qvfsnf1bra28vbl6013wlchnr5crb757xw8aysa"; 4243 }; 4244 - meta.homepage = "https://github.com/phaazon/hop.nvim/"; 4245 }; 4246 4247 hotpot-nvim = buildVimPlugin { ··· 4342 4343 image-nvim = buildVimPlugin { 4344 pname = "image.nvim"; 4345 - version = "2023-09-02"; 4346 src = fetchFromGitHub { 4347 owner = "3rd"; 4348 repo = "image.nvim"; 4349 - rev = "84e8324b603b50d753203113babbef6800982cf4"; 4350 - sha256 = "01g6zci4qlfwavlhja8h80z65z71ig9sgrblwys7r44rbdm748iz"; 4351 }; 4352 meta.homepage = "https://github.com/3rd/image.nvim/"; 4353 }; ··· 4414 4415 indent-blankline-nvim = buildVimPlugin { 4416 pname = "indent-blankline.nvim"; 4417 - version = "2023-08-22"; 4418 src = fetchFromGitHub { 4419 owner = "lukas-reineke"; 4420 repo = "indent-blankline.nvim"; 4421 - rev = "9637670896b68805430e2f72cf5d16be5b97a22a"; 4422 - sha256 = "01h49q9j3hh5mi3hxsaipfsc03ypgg14r79fbm6sy63rh8a66jnl"; 4423 }; 4424 meta.homepage = "https://github.com/lukas-reineke/indent-blankline.nvim/"; 4425 }; ··· 4775 4776 lazy-nvim = buildVimPlugin { 4777 pname = "lazy.nvim"; 4778 - version = "2023-08-26"; 4779 src = fetchFromGitHub { 4780 owner = "folke"; 4781 repo = "lazy.nvim"; 4782 - rev = "2a9354c7d2368d78cbd5575a51a2af5bd8a6ad01"; 4783 - sha256 = "01c09qqzjlmsksac39g2bqygx0xh5ibzb3s4v35b9mlhfyylaxyk"; 4784 }; 4785 meta.homepage = "https://github.com/folke/lazy.nvim/"; 4786 }; 4787 4788 lazygit-nvim = buildVimPlugin { 4789 pname = "lazygit.nvim"; 4790 - version = "2023-09-05"; 4791 src = fetchFromGitHub { 4792 owner = "kdheepak"; 4793 repo = "lazygit.nvim"; 4794 - rev = "75c920883f44243f2bbb172be423e484a58f7c45"; 4795 - sha256 = "101vnzc67yxadziyyjc07kca7jd9ms3gfqjkaq7lg3gh5q1gh5my"; 4796 }; 4797 meta.homepage = "https://github.com/kdheepak/lazygit.nvim/"; 4798 }; 4799 4800 lean-nvim = buildVimPlugin { 4801 pname = "lean.nvim"; 4802 - version = "2023-09-14"; 4803 src = fetchFromGitHub { 4804 owner = "Julian"; 4805 repo = "lean.nvim"; 4806 - rev = "ad8305e07dd6226724e87607c9c5a8331bb3f62e"; 4807 - sha256 = "1q99m9xmdalnisnk4nixwgkkf2mq8s3vh4kd2kaxd2psg3a0a5dy"; 4808 }; 4809 meta.homepage = "https://github.com/Julian/lean.nvim/"; 4810 }; ··· 5207 5208 lsp_lines-nvim = buildVimPlugin { 5209 pname = "lsp_lines.nvim"; 5210 - version = "2023-05-15"; 5211 src = fetchgit { 5212 url = "https://git.sr.ht/~whynothugo/lsp_lines.nvim"; 5213 - rev = "f53af96d4789eef39a082dbcce078d2bfc384ece"; 5214 - sha256 = "11nsp21n1lhjl6m4mgj1vdcvalik9dmvv8baflzd2njb5g3gc5v6"; 5215 }; 5216 meta.homepage = "https://git.sr.ht/~whynothugo/lsp_lines.nvim"; 5217 }; 5218 5219 lsp_signature-nvim = buildVimPlugin { 5220 pname = "lsp_signature.nvim"; 5221 - version = "2023-09-11"; 5222 src = fetchFromGitHub { 5223 owner = "ray-x"; 5224 repo = "lsp_signature.nvim"; 5225 - rev = "51784ba4ce87b362c139b8c2db6583c0aec20536"; 5226 - sha256 = "10bbmwzsk882qp8x9c516v8jk73sslg0ac1vcqchkw3yc9gn73jc"; 5227 }; 5228 meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/"; 5229 }; ··· 5254 5255 lspsaga-nvim = buildVimPlugin { 5256 pname = "lspsaga.nvim"; 5257 - version = "2023-09-15"; 5258 src = fetchFromGitHub { 5259 owner = "nvimdev"; 5260 repo = "lspsaga.nvim"; 5261 - rev = "32c1b404489723771d385579d695b61cf12bf3a4"; 5262 - sha256 = "1i4f220r1m5sczbgzmm0bc8dzvbv9vwfy4qlsrcjv2jg9xgmapzj"; 5263 }; 5264 meta.homepage = "https://github.com/nvimdev/lspsaga.nvim/"; 5265 }; ··· 5302 5303 luasnip = buildVimPlugin { 5304 pname = "luasnip"; 5305 - version = "2023-08-31"; 5306 src = fetchFromGitHub { 5307 owner = "l3mon4d3"; 5308 repo = "luasnip"; 5309 - rev = "ea7d7ea510c641c4f15042becd27f35b3e5b3c2b"; 5310 - sha256 = "0r0k265m5nf0rl8hma13yjw8fyd08629h1awa94lk0s6dvk7mkh0"; 5311 fetchSubmodules = true; 5312 }; 5313 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; ··· 5327 5328 lush-nvim = buildNeovimPlugin { 5329 pname = "lush.nvim"; 5330 - version = "2023-08-03"; 5331 src = fetchFromGitHub { 5332 owner = "rktjmp"; 5333 repo = "lush.nvim"; 5334 - rev = "a8f0f7b9f837887f13a61d67b40ae26188fe4d62"; 5335 - sha256 = "1zni7l5ldfv1inq30b7kqg1mv26558hif4nssawk5mjisjwdlwsp"; 5336 }; 5337 meta.homepage = "https://github.com/rktjmp/lush.nvim/"; 5338 }; ··· 5411 5412 mason-lspconfig-nvim = buildVimPlugin { 5413 pname = "mason-lspconfig.nvim"; 5414 - version = "2023-09-14"; 5415 src = fetchFromGitHub { 5416 owner = "williamboman"; 5417 repo = "mason-lspconfig.nvim"; 5418 - rev = "f014db32437aa61c86fc0ef1067cd2bc6a37205c"; 5419 - sha256 = "0wagin4cr5rjjcnjlnh8z3g0sw7aml44y6wm3l9s170d7inqqylm"; 5420 }; 5421 meta.homepage = "https://github.com/williamboman/mason-lspconfig.nvim/"; 5422 }; 5423 5424 mason-tool-installer-nvim = buildVimPlugin { 5425 pname = "mason-tool-installer.nvim"; 5426 - version = "2023-07-13"; 5427 src = fetchFromGitHub { 5428 owner = "WhoIsSethDaniel"; 5429 repo = "mason-tool-installer.nvim"; 5430 - rev = "031903fefbf59371502092ef9e22cab9161d90ba"; 5431 - sha256 = "1za6shsh5ykdv9ivf971b3ckfxk25p8lsd9qdgrmm5bag6vih8cl"; 5432 }; 5433 meta.homepage = "https://github.com/WhoIsSethDaniel/mason-tool-installer.nvim/"; 5434 }; ··· 5531 5532 mini-nvim = buildVimPlugin { 5533 pname = "mini.nvim"; 5534 - version = "2023-09-14"; 5535 src = fetchFromGitHub { 5536 owner = "echasnovski"; 5537 repo = "mini.nvim"; 5538 - rev = "e2273ec6186a7af206cc73de10970c0c3867c46d"; 5539 - sha256 = "0rry8fiyinjgp0s6qphdixra1wgg01k8da1xb8qcd39qx0nrlpf2"; 5540 }; 5541 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 5542 }; ··· 5615 5616 monokai-pro-nvim = buildVimPlugin { 5617 pname = "monokai-pro.nvim"; 5618 - version = "2023-09-05"; 5619 src = fetchFromGitHub { 5620 owner = "loctvl842"; 5621 repo = "monokai-pro.nvim"; 5622 - rev = "488a0152331c59a33d7f8bdef6eb88dae299c808"; 5623 - sha256 = "1nmak9fp7mkbwxrmd3h23468ywsdfcjfyq29p0c4nhglyxlnqhal"; 5624 }; 5625 meta.homepage = "https://github.com/loctvl842/monokai-pro.nvim/"; 5626 }; ··· 5915 5916 neo-tree-nvim = buildVimPlugin { 5917 pname = "neo-tree.nvim"; 5918 - version = "2023-09-16"; 5919 src = fetchFromGitHub { 5920 owner = "nvim-neo-tree"; 5921 repo = "neo-tree.nvim"; 5922 - rev = "54fe2a5f6f698094b34461a11370fcc29b8a4393"; 5923 - sha256 = "18y0saknah3hhxjjqprk608m0y1ccqs03rjs29q6yv7lin1mwxy2"; 5924 }; 5925 meta.homepage = "https://github.com/nvim-neo-tree/neo-tree.nvim/"; 5926 }; ··· 5939 5940 neoconf-nvim = buildVimPlugin { 5941 pname = "neoconf.nvim"; 5942 - version = "2023-09-16"; 5943 src = fetchFromGitHub { 5944 owner = "folke"; 5945 repo = "neoconf.nvim"; 5946 - rev = "a4eb3675cb87be2e2dcb283dddc8c7aabd2c50ca"; 5947 - sha256 = "0kqm855707llmacig446q809gplwddp98vgsxz00c0gbgvpb7r33"; 5948 }; 5949 meta.homepage = "https://github.com/folke/neoconf.nvim/"; 5950 }; ··· 5963 5964 neodev-nvim = buildVimPlugin { 5965 pname = "neodev.nvim"; 5966 - version = "2023-09-15"; 5967 src = fetchFromGitHub { 5968 owner = "folke"; 5969 repo = "neodev.nvim"; 5970 - rev = "471324e6c746284dbbdc1d357799d1911bb7e120"; 5971 - sha256 = "156lr9mrvwg0b5p933617yhdzdygsgcrayw94sq1zxhqpwc9zbjz"; 5972 }; 5973 meta.homepage = "https://github.com/folke/neodev.nvim/"; 5974 }; 5975 5976 neoformat = buildVimPlugin { 5977 pname = "neoformat"; 5978 - version = "2023-08-20"; 5979 src = fetchFromGitHub { 5980 owner = "sbdchd"; 5981 repo = "neoformat"; 5982 - rev = "0c285d7a7c06a6ee88db70871a274797693fce42"; 5983 - sha256 = "1vmgj3dd728wbg4hxzaqrvzypbpkxhawdsqy43lp1bbq27b008bf"; 5984 }; 5985 meta.homepage = "https://github.com/sbdchd/neoformat/"; 5986 }; ··· 5999 6000 neogit = buildVimPlugin { 6001 pname = "neogit"; 6002 - version = "2023-09-15"; 6003 src = fetchFromGitHub { 6004 owner = "NeogitOrg"; 6005 repo = "neogit"; 6006 - rev = "9d9355137b1e2503a47fedfc395e75a8330163e8"; 6007 - sha256 = "1ma0yfff1nk091yhs092qvgb2qm86ly4x19ahijj8xa7q85v6p4p"; 6008 }; 6009 meta.homepage = "https://github.com/NeogitOrg/neogit/"; 6010 }; ··· 6071 6072 neorg = buildVimPlugin { 6073 pname = "neorg"; 6074 - version = "2023-09-15"; 6075 src = fetchFromGitHub { 6076 owner = "nvim-neorg"; 6077 repo = "neorg"; 6078 - rev = "069cf8a460594ca6f4233c83aac1a31a96c62d98"; 6079 - sha256 = "0a1gr33nr8fagipfmhl98jdpafgc8czi5w3ixbn1nazwigjp3air"; 6080 }; 6081 meta.homepage = "https://github.com/nvim-neorg/neorg/"; 6082 }; ··· 6216 6217 neotest-haskell = buildVimPlugin { 6218 pname = "neotest-haskell"; 6219 - version = "2023-09-11"; 6220 src = fetchFromGitHub { 6221 owner = "MrcJkb"; 6222 repo = "neotest-haskell"; 6223 - rev = "cda6f5ab76f63e9f24b0008f7df9525ded5e8721"; 6224 - sha256 = "0xa4qzcaik7hpiv3dv1n7nb15640qnh70ggwzkbp30yhjqb3rjn6"; 6225 }; 6226 meta.homepage = "https://github.com/MrcJkb/neotest-haskell/"; 6227 }; ··· 6264 6265 neotest-plenary = buildVimPlugin { 6266 pname = "neotest-plenary"; 6267 - version = "2023-04-27"; 6268 src = fetchFromGitHub { 6269 owner = "nvim-neotest"; 6270 repo = "neotest-plenary"; 6271 - rev = "e0d9b1530307a03abcc52fc0ae28f054dea3f752"; 6272 - sha256 = "1d5ay6jbc8f10zp7nffx67d627389szr8zkvdx02pzq21m9dsv92"; 6273 }; 6274 meta.homepage = "https://github.com/nvim-neotest/neotest-plenary/"; 6275 }; ··· 6288 6289 neotest-rspec = buildVimPlugin { 6290 pname = "neotest-rspec"; 6291 - version = "2023-08-25"; 6292 src = fetchFromGitHub { 6293 owner = "olimorris"; 6294 repo = "neotest-rspec"; 6295 - rev = "5638880f0adcdb5366fe57a477dfa94074463709"; 6296 - sha256 = "17104fdfiv8iw9g2l2yvkakmqa1pkyb6dj6yh5qnczpylwilkgci"; 6297 }; 6298 meta.homepage = "https://github.com/olimorris/neotest-rspec/"; 6299 }; 6300 6301 neotest-rust = buildVimPlugin { 6302 pname = "neotest-rust"; 6303 - version = "2023-09-16"; 6304 src = fetchFromGitHub { 6305 owner = "rouge8"; 6306 repo = "neotest-rust"; 6307 - rev = "c8894d826a2cb5003cb6bc0a2fa8f7a359899130"; 6308 - sha256 = "1awrcpdaz1bn8bqfxg0wv7gh1bg9kvan45m8yv4l3m4g8xs7fq1d"; 6309 }; 6310 meta.homepage = "https://github.com/rouge8/neotest-rust/"; 6311 }; ··· 6480 6481 nightfox-nvim = buildVimPlugin { 6482 pname = "nightfox.nvim"; 6483 - version = "2023-09-05"; 6484 src = fetchFromGitHub { 6485 owner = "EdenEast"; 6486 repo = "nightfox.nvim"; 6487 - rev = "e886e39e592e89f316536a6f070365a9d88901c9"; 6488 - sha256 = "08jdrfjkjx6gkf17h8wh7swnjg19bagb0lxcdhg4bsgb87mbi99v"; 6489 }; 6490 meta.homepage = "https://github.com/EdenEast/nightfox.nvim/"; 6491 }; ··· 6564 6565 noice-nvim = buildVimPlugin { 6566 pname = "noice.nvim"; 6567 - version = "2023-08-30"; 6568 src = fetchFromGitHub { 6569 owner = "folke"; 6570 repo = "noice.nvim"; 6571 - rev = "74c2902146b080035beb19944baf6f014a954720"; 6572 - sha256 = "10sjrxvnhrx1bi77lcdn5qz9kww4qcanajqzp2v8d3jlm5p2cc2c"; 6573 }; 6574 meta.homepage = "https://github.com/folke/noice.nvim/"; 6575 }; ··· 6660 6661 nvchad = buildVimPlugin { 6662 pname = "nvchad"; 6663 - version = "2023-09-16"; 6664 src = fetchFromGitHub { 6665 owner = "nvchad"; 6666 repo = "nvchad"; 6667 - rev = "3091ea58359bb85f087499bd73fbc0a57a935c34"; 6668 - sha256 = "0vfgh6a459jqlmsjnnf6dwkm1mqim3g6znlkbgdlizrlm16hfj5n"; 6669 }; 6670 meta.homepage = "https://github.com/nvchad/nvchad/"; 6671 }; ··· 6708 6709 nvim-autopairs = buildVimPlugin { 6710 pname = "nvim-autopairs"; 6711 - version = "2023-09-08"; 6712 src = fetchFromGitHub { 6713 owner = "windwp"; 6714 repo = "nvim-autopairs"; 6715 - rev = "defad64afbf19381fe31488a7582bbac421d6e38"; 6716 - sha256 = "05ihrriym44g01rryaah2h2xnl183dpwcsf8q8rxzr29z0jpxxip"; 6717 }; 6718 meta.homepage = "https://github.com/windwp/nvim-autopairs/"; 6719 }; ··· 6744 6745 nvim-bqf = buildVimPlugin { 6746 pname = "nvim-bqf"; 6747 - version = "2023-09-12"; 6748 src = fetchFromGitHub { 6749 owner = "kevinhwang91"; 6750 repo = "nvim-bqf"; 6751 - rev = "a906a9dfc1bd7b3ac51ac954e32e157ffad9a7cd"; 6752 - sha256 = "03zn97fwhw661xfmj9mcvskryph12a7lh6sflcapd0pdx2fwbr7l"; 6753 }; 6754 meta.homepage = "https://github.com/kevinhwang91/nvim-bqf/"; 6755 }; ··· 6804 6805 nvim-cokeline = buildVimPlugin { 6806 pname = "nvim-cokeline"; 6807 - version = "2023-09-08"; 6808 src = fetchFromGitHub { 6809 owner = "willothy"; 6810 repo = "nvim-cokeline"; 6811 - rev = "dae7f8d04a2a4a999adc19858d3748ee9229831d"; 6812 - sha256 = "0fa0ahb1alagdmdnk6fiivdgcplm3fw40bpv51i4975gbhdj7ibd"; 6813 }; 6814 meta.homepage = "https://github.com/willothy/nvim-cokeline/"; 6815 }; ··· 7032 7033 nvim-highlite = buildVimPlugin { 7034 pname = "nvim-highlite"; 7035 - version = "2023-08-29"; 7036 src = fetchFromGitHub { 7037 owner = "Iron-E"; 7038 repo = "nvim-highlite"; 7039 - rev = "b93d2c63ed39f76c4fea9348bb0ad3e261e89695"; 7040 - sha256 = "00jgq2qiqp6i8mm1vrp3g4g9kvb42yvfr0d37afg97jwkim0k3g5"; 7041 }; 7042 meta.homepage = "https://github.com/Iron-E/nvim-highlite/"; 7043 }; ··· 7068 7069 nvim-jdtls = buildVimPlugin { 7070 pname = "nvim-jdtls"; 7071 - version = "2023-09-14"; 7072 src = fetchFromGitHub { 7073 owner = "mfussenegger"; 7074 repo = "nvim-jdtls"; 7075 - rev = "697b39e3db0e0d0ce9ee4c2df506a4e0386af6c2"; 7076 - sha256 = "0iaccv986r4z1lmfih24dk2ls501bfqw3n7z4h0mwbf7xqm9jml3"; 7077 }; 7078 meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/"; 7079 }; ··· 7139 7140 nvim-lilypond-suite = buildVimPlugin { 7141 pname = "nvim-lilypond-suite"; 7142 - version = "2023-09-15"; 7143 src = fetchFromGitHub { 7144 owner = "martineausimon"; 7145 repo = "nvim-lilypond-suite"; 7146 - rev = "b734d3f3e91b1cdf7944d10b842e2898188669d6"; 7147 - sha256 = "00vbhfglgspbmv1ar5xjdcv8kv3s1y8a6cqalw6va5wazzy2slci"; 7148 }; 7149 meta.homepage = "https://github.com/martineausimon/nvim-lilypond-suite/"; 7150 }; 7151 7152 nvim-lint = buildVimPlugin { 7153 pname = "nvim-lint"; 7154 - version = "2023-09-14"; 7155 src = fetchFromGitHub { 7156 owner = "mfussenegger"; 7157 repo = "nvim-lint"; 7158 - rev = "12517fb62b9760053b3edebc0b03308921a30f5c"; 7159 - sha256 = "1qsn5ziprl8wz606rjpri18i25hdsc12b39w4xb2nqkxwx3hdi2l"; 7160 }; 7161 meta.homepage = "https://github.com/mfussenegger/nvim-lint/"; 7162 }; ··· 7187 7188 nvim-lspconfig = buildVimPlugin { 7189 pname = "nvim-lspconfig"; 7190 - version = "2023-09-15"; 7191 src = fetchFromGitHub { 7192 owner = "neovim"; 7193 repo = "nvim-lspconfig"; 7194 - rev = "cc388d3f6b9c7c943ae2b2dcd46ad470fd257f91"; 7195 - sha256 = "0xw1xya93qks2azp0rg2k7fyg2ak31c3z897af9d3lx0nrhy31xs"; 7196 }; 7197 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 7198 }; ··· 7247 7248 nvim-metals = buildVimPlugin { 7249 pname = "nvim-metals"; 7250 - version = "2023-08-17"; 7251 src = fetchFromGitHub { 7252 owner = "scalameta"; 7253 repo = "nvim-metals"; 7254 - rev = "57cff9a240f3337129188997887d8848fe6022ad"; 7255 - sha256 = "0ysrq30k3fblgd1hlvywrq1jrkcgdnm3habcaw13b2xfp4hqlps7"; 7256 }; 7257 meta.homepage = "https://github.com/scalameta/nvim-metals/"; 7258 }; ··· 7283 7284 nvim-navic = buildVimPlugin { 7285 pname = "nvim-navic"; 7286 - version = "2023-07-21"; 7287 src = fetchFromGitHub { 7288 owner = "smiteshp"; 7289 repo = "nvim-navic"; 7290 - rev = "9c89730da6a05acfeb6a197e212dfadf5aa60ca0"; 7291 - sha256 = "1ginwysk4apjx2f045isidnzw863zrv272bdmzh247vi5za57c1k"; 7292 }; 7293 meta.homepage = "https://github.com/smiteshp/nvim-navic/"; 7294 }; ··· 7319 7320 nvim-notify = buildVimPlugin { 7321 pname = "nvim-notify"; 7322 - version = "2023-09-10"; 7323 src = fetchFromGitHub { 7324 owner = "rcarriga"; 7325 repo = "nvim-notify"; 7326 - rev = "94859430020f5cf32a1b97ddd9e596fed9db7981"; 7327 - sha256 = "04fcm8277csv8davwirndinm0cpnb5h8azr2cxnw1szgqry2yh7k"; 7328 }; 7329 meta.homepage = "https://github.com/rcarriga/nvim-notify/"; 7330 }; ··· 7535 7536 nvim-tree-lua = buildVimPlugin { 7537 pname = "nvim-tree.lua"; 7538 - version = "2023-09-16"; 7539 src = fetchFromGitHub { 7540 owner = "nvim-tree"; 7541 repo = "nvim-tree.lua"; 7542 - rev = "7f7665a17b60d80533b7a69cfad3b6875f2dd453"; 7543 - sha256 = "1cv3zc1d6cvqxf9kpi6dw7xzr9qj3zj6v990x7hfpds38f2ps87l"; 7544 }; 7545 meta.homepage = "https://github.com/nvim-tree/nvim-tree.lua/"; 7546 }; 7547 7548 nvim-treesitter = buildVimPlugin { 7549 pname = "nvim-treesitter"; 7550 - version = "2023-09-16"; 7551 src = fetchFromGitHub { 7552 owner = "nvim-treesitter"; 7553 repo = "nvim-treesitter"; 7554 - rev = "794266a4edc8ab57b0d637626f01b5278a9123d8"; 7555 - sha256 = "0h2wa98ljgkr56yfcbif4xyn2721padzfavj3fd89wib3ylk5qzx"; 7556 }; 7557 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 7558 }; 7559 7560 nvim-treesitter-context = buildVimPlugin { 7561 pname = "nvim-treesitter-context"; 7562 - version = "2023-09-06"; 7563 src = fetchFromGitHub { 7564 owner = "nvim-treesitter"; 7565 repo = "nvim-treesitter-context"; 7566 - rev = "b6c763db8cc486215ba96e0a67418848a710ab25"; 7567 - sha256 = "0zawrncadph3ra9fb48d63g4lg7ng5gkskkxl3hqy71lcngsi51b"; 7568 }; 7569 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; 7570 }; 7571 7572 nvim-treesitter-endwise = buildVimPlugin { 7573 pname = "nvim-treesitter-endwise"; 7574 - version = "2023-06-28"; 7575 src = fetchFromGitHub { 7576 owner = "RRethy"; 7577 repo = "nvim-treesitter-endwise"; 7578 - rev = "9298b3ac8fd6d0d8f9e321194c6d3fd37e417cf9"; 7579 - sha256 = "1zkc892v347380awywfyfk0q8nsavi37zgz9yhizc4am6lphn391"; 7580 }; 7581 meta.homepage = "https://github.com/RRethy/nvim-treesitter-endwise/"; 7582 }; ··· 7678 7679 nvim-ufo = buildVimPlugin { 7680 pname = "nvim-ufo"; 7681 - version = "2023-09-13"; 7682 src = fetchFromGitHub { 7683 owner = "kevinhwang91"; 7684 repo = "nvim-ufo"; 7685 - rev = "ddec0c27e9cd2d22df4ecacc45e9d6ce567f7c35"; 7686 - sha256 = "1jyrhrpp5144nnni1m054h94a99gmlp9c3hhjmg27zm9hwwd01z0"; 7687 }; 7688 meta.homepage = "https://github.com/kevinhwang91/nvim-ufo/"; 7689 }; ··· 7702 7703 nvim-web-devicons = buildVimPlugin { 7704 pname = "nvim-web-devicons"; 7705 - version = "2023-09-15"; 7706 src = fetchFromGitHub { 7707 owner = "nvim-tree"; 7708 repo = "nvim-web-devicons"; 7709 - rev = "973ab742f143a796a779af4d786ec409116a0d87"; 7710 - sha256 = "1fmvym6ryxmff5559s6aw6nv4h5cgz2lnkjnhzbwws4iryvc90zl"; 7711 }; 7712 meta.homepage = "https://github.com/nvim-tree/nvim-web-devicons/"; 7713 }; ··· 7726 7727 nvim-window-picker = buildVimPlugin { 7728 pname = "nvim-window-picker"; 7729 - version = "2023-07-29"; 7730 src = fetchFromGitHub { 7731 owner = "s1n7ax"; 7732 repo = "nvim-window-picker"; 7733 - rev = "1b1bb834b0acb9eebb11a61664efc665757f1ba2"; 7734 - sha256 = "1ds2x5hnliw8c7zkqvmnij9bycnxgf3q0vnl0bzb7ki3jc2qg1r8"; 7735 }; 7736 meta.homepage = "https://github.com/s1n7ax/nvim-window-picker/"; 7737 }; ··· 7810 7811 octo-nvim = buildVimPlugin { 7812 pname = "octo.nvim"; 7813 - version = "2023-08-28"; 7814 src = fetchFromGitHub { 7815 owner = "pwntester"; 7816 repo = "octo.nvim"; 7817 - rev = "d1e52f9b3c755fcebb93d635821663a2c0f53281"; 7818 - sha256 = "0gvb7g6844w9ll6w7qwh5ian0vz5sr90nyw7x3pybms8w74wvcrn"; 7819 }; 7820 meta.homepage = "https://github.com/pwntester/octo.nvim/"; 7821 }; 7822 7823 oil-nvim = buildVimPlugin { 7824 pname = "oil.nvim"; 7825 - version = "2023-09-12"; 7826 src = fetchFromGitHub { 7827 owner = "stevearc"; 7828 repo = "oil.nvim"; 7829 - rev = "9e036c6a4868b971127f3cb6bac6197bb4103723"; 7830 - sha256 = "1q6r479xfcx1xwrm0b2zzv88qjilbm4pw2nvcsdlczhdwqnsq0al"; 7831 fetchSubmodules = true; 7832 }; 7833 meta.homepage = "https://github.com/stevearc/oil.nvim/"; ··· 7883 7884 onedarkpro-nvim = buildVimPlugin { 7885 pname = "onedarkpro.nvim"; 7886 - version = "2023-09-16"; 7887 src = fetchFromGitHub { 7888 owner = "olimorris"; 7889 repo = "onedarkpro.nvim"; 7890 - rev = "15c9b5b4ff38b3dcde4370e0a1ce12b927451dd4"; 7891 - sha256 = "1y8a7hyd2aghzgf83s3y4yanhzmcxads19hqfbl84cqf3lg4f4k8"; 7892 }; 7893 meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; 7894 }; ··· 7943 7944 openingh-nvim = buildVimPlugin { 7945 pname = "openingh.nvim"; 7946 - version = "2023-08-28"; 7947 src = fetchFromGitHub { 7948 owner = "Almo7aya"; 7949 repo = "openingh.nvim"; 7950 - rev = "27655e19d4cad90f2ceed4f0a08cf7ebfb3a8e40"; 7951 - sha256 = "0jl5y6pgwdjin7rcrw8p2xv7x6z8gz9wkn7ijx3ixs5278q8wijb"; 7952 }; 7953 meta.homepage = "https://github.com/Almo7aya/openingh.nvim/"; 7954 }; ··· 7967 7968 orgmode = buildVimPlugin { 7969 pname = "orgmode"; 7970 - version = "2023-09-15"; 7971 src = fetchFromGitHub { 7972 owner = "nvim-orgmode"; 7973 repo = "orgmode"; 7974 - rev = "34f977c090da2ff9f8cea01eecae8bd7d83fdef9"; 7975 - sha256 = "1dxnd0b7fljfzkfqvbf7snkz1ia8npc4x458pakd641r9ad3ny6z"; 7976 }; 7977 meta.homepage = "https://github.com/nvim-orgmode/orgmode/"; 7978 }; ··· 7995 src = fetchFromGitHub { 7996 owner = "jmbuhr"; 7997 repo = "otter.nvim"; 7998 - rev = "3501362a98fbbb64d23fe5fbcd2a98307f9229f8"; 7999 - sha256 = "0innvpbih3w22mara59nnxcpsg9rnn7xlxgb3db5gy7f3g2am5r5"; 8000 }; 8001 meta.homepage = "https://github.com/jmbuhr/otter.nvim/"; 8002 }; 8003 8004 overseer-nvim = buildVimPlugin { 8005 pname = "overseer.nvim"; 8006 - version = "2023-09-14"; 8007 src = fetchFromGitHub { 8008 owner = "stevearc"; 8009 repo = "overseer.nvim"; 8010 - rev = "2749d8893a069a0020eba3ddbc26f1624a57d7b3"; 8011 - sha256 = "0976kdjsdjdk41zda42hi3wnk0x08iqlmiajs2amzgxdyj4x349r"; 8012 fetchSubmodules = true; 8013 }; 8014 meta.homepage = "https://github.com/stevearc/overseer.nvim/"; ··· 8016 8017 oxocarbon-nvim = buildVimPlugin { 8018 pname = "oxocarbon.nvim"; 8019 - version = "2023-08-30"; 8020 src = fetchFromGitHub { 8021 owner = "nyoom-engineering"; 8022 repo = "oxocarbon.nvim"; 8023 - rev = "162a92e2bcca588a01c2f9fd857bdb4dabd8d72c"; 8024 - sha256 = "06q6ykda4pbkqblkqvk7l1gjw9hwn06l13v1sann39dzgwi1yrw7"; 8025 }; 8026 meta.homepage = "https://github.com/nyoom-engineering/oxocarbon.nvim/"; 8027 }; ··· 8365 8366 python-mode = buildVimPlugin { 8367 pname = "python-mode"; 8368 - version = "2023-07-03"; 8369 src = fetchFromGitHub { 8370 owner = "python-mode"; 8371 repo = "python-mode"; 8372 - rev = "57384b9f278ed1c2b402fe48aad05781882561f1"; 8373 - sha256 = "1y30inljvpjrq1yphfjv1x2f0m5bn6gbqg69f3b51fs53sqaswi8"; 8374 fetchSubmodules = true; 8375 }; 8376 meta.homepage = "https://github.com/python-mode/python-mode/"; ··· 8474 8475 rainbow-delimiters-nvim = buildVimPlugin { 8476 pname = "rainbow-delimiters.nvim"; 8477 - version = "2023-08-26"; 8478 src = fetchgit { 8479 url = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim"; 8480 - rev = "9cbd3dc409af1f5531778ccd1ea6bce668241f39"; 8481 - sha256 = "0qz4my1xw1vww2109s8icscwfysa2aak3kjq2wym2smm259gd8g1"; 8482 }; 8483 meta.homepage = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim"; 8484 }; ··· 8557 8558 refactoring-nvim = buildVimPlugin { 8559 pname = "refactoring.nvim"; 8560 - version = "2023-08-31"; 8561 src = fetchFromGitHub { 8562 owner = "theprimeagen"; 8563 repo = "refactoring.nvim"; 8564 - rev = "2ec9bc0fb5f3c8c6a0f776f0159dd2a3b1663554"; 8565 - sha256 = "038cczxj9ba3axb3aw5r2dsp5anzacnwnnp61i1pk7kk8l3wg2ck"; 8566 }; 8567 meta.homepage = "https://github.com/theprimeagen/refactoring.nvim/"; 8568 }; ··· 8617 8618 rest-nvim = buildNeovimPlugin { 8619 pname = "rest.nvim"; 8620 - version = "2023-09-15"; 8621 src = fetchFromGitHub { 8622 owner = "rest-nvim"; 8623 repo = "rest.nvim"; 8624 - rev = "f13ae54ae2545d4d612593d4a442cbb33a1b5b65"; 8625 - sha256 = "0xiyg3yghjvvfzg2qa3gi28n9bm86083sghsv68wc7848s8s5ka4"; 8626 }; 8627 meta.homepage = "https://github.com/rest-nvim/rest.nvim/"; 8628 }; ··· 8881 8882 sg-nvim = buildVimPlugin { 8883 pname = "sg.nvim"; 8884 - version = "2023-09-12"; 8885 src = fetchFromGitHub { 8886 owner = "sourcegraph"; 8887 repo = "sg.nvim"; 8888 - rev = "a6a677225bffd66bc98e03ed77438cde93a6fd31"; 8889 - sha256 = "1410d2z73xnkcyfx3cq4p30qlbg6177alw9anpn7akvhhgr0dlz2"; 8890 }; 8891 meta.homepage = "https://github.com/sourcegraph/sg.nvim/"; 8892 }; ··· 9195 9196 srcery-vim = buildVimPlugin { 9197 pname = "srcery-vim"; 9198 - version = "2023-09-04"; 9199 src = fetchFromGitHub { 9200 owner = "srcery-colors"; 9201 repo = "srcery-vim"; 9202 - rev = "755e4ab8a63ec2b4ea756a2fa128d642771369e5"; 9203 - sha256 = "0f7bhdhpa79f457rhnmg64vl6nnzxmrkl47n30q31y9rvz9v9bp6"; 9204 }; 9205 meta.homepage = "https://github.com/srcery-colors/srcery-vim/"; 9206 }; ··· 9436 9437 tabby-nvim = buildVimPlugin { 9438 pname = "tabby.nvim"; 9439 - version = "2023-08-30"; 9440 src = fetchFromGitHub { 9441 owner = "nanozuki"; 9442 repo = "tabby.nvim"; 9443 - rev = "e0a20dc4c0e16ca755184c34a27391f31a91e463"; 9444 - sha256 = "16bh1wbdvp2zlk2aq5b7xplirqlqg4mwldspapsmahjjh3mdzg8m"; 9445 }; 9446 meta.homepage = "https://github.com/nanozuki/tabby.nvim/"; 9447 }; ··· 9545 9546 tagbar = buildVimPlugin { 9547 pname = "tagbar"; 9548 - version = "2023-08-15"; 9549 src = fetchFromGitHub { 9550 owner = "preservim"; 9551 repo = "tagbar"; 9552 - rev = "402e3e117fc7b47e43dbb87c51064daae3bc3bf3"; 9553 - sha256 = "0cg7s68lr0282ci1r34ixnkvls830j2j5k5dr55vqqkqi7614n3p"; 9554 }; 9555 meta.homepage = "https://github.com/preservim/tagbar/"; 9556 }; ··· 9593 9594 tcomment_vim = buildVimPlugin { 9595 pname = "tcomment_vim"; 9596 - version = "2022-12-17"; 9597 src = fetchFromGitHub { 9598 owner = "tomtom"; 9599 repo = "tcomment_vim"; 9600 - rev = "b4930f9da28647e5417d462c341013f88184be7e"; 9601 - sha256 = "06nlnnrxh3jgnlcbbr7czpaz9v7n2g60mw28lshc14wzqpl01vvx"; 9602 }; 9603 meta.homepage = "https://github.com/tomtom/tcomment_vim/"; 9604 }; ··· 9666 9667 telescope-file-browser-nvim = buildVimPlugin { 9668 pname = "telescope-file-browser.nvim"; 9669 - version = "2023-09-15"; 9670 src = fetchFromGitHub { 9671 owner = "nvim-telescope"; 9672 repo = "telescope-file-browser.nvim"; 9673 - rev = "bec4b0fd6c293f5c42d7929d8eff49e5af43e7f3"; 9674 - sha256 = "1rnda6ckr18xhwh9zfx9kvypbd7ynxxkf3k4ml2qz48m2y9gyadn"; 9675 }; 9676 meta.homepage = "https://github.com/nvim-telescope/telescope-file-browser.nvim/"; 9677 }; 9678 9679 telescope-frecency-nvim = buildVimPlugin { 9680 pname = "telescope-frecency.nvim"; 9681 - version = "2023-08-27"; 9682 src = fetchFromGitHub { 9683 owner = "nvim-telescope"; 9684 repo = "telescope-frecency.nvim"; 9685 - rev = "fbda5d91d6e787f5977787fa4a81da5c8e22160a"; 9686 - sha256 = "1cm2jr0f719jhr4q5w8fh0c8qjncrvhck18h4g42xsgyhrkvfy2g"; 9687 }; 9688 meta.homepage = "https://github.com/nvim-telescope/telescope-frecency.nvim/"; 9689 }; ··· 9908 9909 telescope-nvim = buildNeovimPlugin { 9910 pname = "telescope.nvim"; 9911 - version = "2023-09-16"; 9912 src = fetchFromGitHub { 9913 owner = "nvim-telescope"; 9914 repo = "telescope.nvim"; 9915 - rev = "b543aaa2c9cf8123ed2fe7dbb6c211a9cd415124"; 9916 - sha256 = "0k0jymfkp9n65pb5iak7kf89pl41zr7iwg19ww31j3b814am4pjd"; 9917 }; 9918 meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 9919 }; 9920 9921 telescope_hoogle = buildVimPlugin { 9922 pname = "telescope_hoogle"; 9923 - version = "2022-10-27"; 9924 src = fetchFromGitHub { 9925 owner = "luc-tielen"; 9926 repo = "telescope_hoogle"; 9927 - rev = "6322f74655a2773974377a8fc8d170c00f24938f"; 9928 - sha256 = "1pjq5bwnrxb3qhvvqd9v996hqfkbg5ah7qmbzrq1287h13m5jy2n"; 9929 }; 9930 meta.homepage = "https://github.com/luc-tielen/telescope_hoogle/"; 9931 }; ··· 10149 10150 toggleterm-nvim = buildVimPlugin { 10151 pname = "toggleterm.nvim"; 10152 - version = "2023-09-11"; 10153 src = fetchFromGitHub { 10154 owner = "akinsho"; 10155 repo = "toggleterm.nvim"; 10156 - rev = "0427b908ebefcb3701c7f2cfbdafa37d11afe71a"; 10157 - sha256 = "1wxrwl530kxm8k8ymgk3w77av770ndr1hhzfk315jgl2p5hqmqm0"; 10158 }; 10159 meta.homepage = "https://github.com/akinsho/toggleterm.nvim/"; 10160 }; 10161 10162 tokyonight-nvim = buildVimPlugin { 10163 pname = "tokyonight.nvim"; 10164 - version = "2023-08-29"; 10165 src = fetchFromGitHub { 10166 owner = "folke"; 10167 repo = "tokyonight.nvim"; 10168 - rev = "9a01eada39558dc3243278e6805d90e8dff45dc0"; 10169 - sha256 = "1rd7d16gqy9g2dixnsk186lqc17a4d1h5c2409s0xi7wzj7czw68"; 10170 }; 10171 meta.homepage = "https://github.com/folke/tokyonight.nvim/"; 10172 }; ··· 10197 10198 treesj = buildVimPlugin { 10199 pname = "treesj"; 10200 - version = "2023-08-25"; 10201 src = fetchFromGitHub { 10202 owner = "Wansmer"; 10203 repo = "treesj"; 10204 - rev = "bff8c32b826e188fa558e94c7c93ac17a8ef0365"; 10205 - sha256 = "0m30d7d9bgs7ni2npgzd7h83l47a9phi4qs3g1za4znqsjj2wmbd"; 10206 }; 10207 meta.homepage = "https://github.com/Wansmer/treesj/"; 10208 }; ··· 10281 10282 twilight-nvim = buildVimPlugin { 10283 pname = "twilight.nvim"; 10284 - version = "2023-05-22"; 10285 src = fetchFromGitHub { 10286 owner = "folke"; 10287 repo = "twilight.nvim"; 10288 - rev = "a4843e6e67092a1e6fa9666f02bf0ab59174c1df"; 10289 - sha256 = "1d9c77kq55nyl5jlma4m1qg69hldm6zm75d0sjzc3ifq6f82ai0g"; 10290 }; 10291 meta.homepage = "https://github.com/folke/twilight.nvim/"; 10292 }; ··· 10317 10318 typst-vim = buildVimPlugin { 10319 pname = "typst.vim"; 10320 - version = "2023-09-11"; 10321 src = fetchFromGitHub { 10322 owner = "kaarmu"; 10323 repo = "typst.vim"; 10324 - rev = "1e672863c52184264dec59d234030a4898bb67cb"; 10325 - sha256 = "18ksiv66rjfw8hmysl8m7zkhd69w3dj7aqlfq6ph6vy0cqh6c4sf"; 10326 }; 10327 meta.homepage = "https://github.com/kaarmu/typst.vim/"; 10328 }; 10329 10330 ultisnips = buildVimPlugin { 10331 pname = "ultisnips"; 10332 - version = "2023-08-05"; 10333 src = fetchFromGitHub { 10334 owner = "SirVer"; 10335 repo = "ultisnips"; 10336 - rev = "24a3ebb36687b6d59a19d63173713575b486d739"; 10337 - sha256 = "0v6iq1mcnj1a6p2fks544wwhkgm0h8xnwr7ms427b1abvmj0sikz"; 10338 }; 10339 meta.homepage = "https://github.com/SirVer/ultisnips/"; 10340 }; ··· 10353 10354 unicode-vim = buildVimPlugin { 10355 pname = "unicode.vim"; 10356 - version = "2023-03-19"; 10357 src = fetchFromGitHub { 10358 owner = "chrisbra"; 10359 repo = "unicode.vim"; 10360 - rev = "c8aa12b1e2e1b6254885b12bdb239ce6c885fdb1"; 10361 - sha256 = "1mvsb0l9wi903rfazskgn0yzylcb1xkdaqvlcbj1w5yay372x4i9"; 10362 }; 10363 meta.homepage = "https://github.com/chrisbra/unicode.vim/"; 10364 }; 10365 10366 unison = buildVimPlugin { 10367 pname = "unison"; 10368 - version = "2023-09-14"; 10369 src = fetchFromGitHub { 10370 owner = "unisonweb"; 10371 repo = "unison"; 10372 - rev = "bb06e1cce822f807c0e2db04c13c8cd5dad0803d"; 10373 - sha256 = "11qichfhqadp0xhral514szaq5bcc6ymf3cph0xy92sgk0a9rn27"; 10374 }; 10375 meta.homepage = "https://github.com/unisonweb/unison/"; 10376 }; ··· 10389 10390 urlview-nvim = buildVimPlugin { 10391 pname = "urlview.nvim"; 10392 - version = "2023-05-23"; 10393 src = fetchFromGitHub { 10394 owner = "axieax"; 10395 repo = "urlview.nvim"; 10396 - rev = "b183133fd25caa6dd98b415e0f62e51e061cd522"; 10397 - sha256 = "0ychlw7lnnpmjflb5f5xyspv63kyrdzbxx88aw9ifaqiiyz3i4aq"; 10398 }; 10399 meta.homepage = "https://github.com/axieax/urlview.nvim/"; 10400 }; ··· 10545 10546 vim-abolish = buildVimPlugin { 10547 pname = "vim-abolish"; 10548 - version = "2023-04-10"; 10549 src = fetchFromGitHub { 10550 owner = "tpope"; 10551 repo = "vim-abolish"; 10552 - rev = "cb3dcb220262777082f63972298d57ef9e9455ec"; 10553 - sha256 = "0xriiima13cv84jlv37qd6ab4l6fjapqd8a8xsr5c87k0kkyyg13"; 10554 }; 10555 meta.homepage = "https://github.com/tpope/vim-abolish/"; 10556 }; ··· 10905 10906 vim-argwrap = buildVimPlugin { 10907 pname = "vim-argwrap"; 10908 - version = "2022-07-14"; 10909 src = fetchFromGitHub { 10910 owner = "FooSoft"; 10911 repo = "vim-argwrap"; 10912 - rev = "feaba6b8b6ca099d267c81ee2c4ba43ce6de8499"; 10913 - sha256 = "08hjsxwm0fxgc54awzr7fmq1mrddq3rah40wnj44l4lsd73f5lba"; 10914 }; 10915 meta.homepage = "https://github.com/FooSoft/vim-argwrap/"; 10916 }; ··· 11541 11542 vim-dadbod-ui = buildVimPlugin { 11543 pname = "vim-dadbod-ui"; 11544 - version = "2023-09-15"; 11545 src = fetchFromGitHub { 11546 owner = "kristijanhusak"; 11547 repo = "vim-dadbod-ui"; 11548 - rev = "0df3e984ba43d1688e4223315b4f27cbb556f6ad"; 11549 - sha256 = "1kb3h7y0bmnrb5g6mwkwcf1y3bm8yc85f0sfgzzybca0y3dbp7ii"; 11550 }; 11551 meta.homepage = "https://github.com/kristijanhusak/vim-dadbod-ui/"; 11552 }; ··· 11985 11986 vim-flake8 = buildVimPlugin { 11987 pname = "vim-flake8"; 11988 - version = "2023-03-22"; 11989 src = fetchFromGitHub { 11990 owner = "nvie"; 11991 repo = "vim-flake8"; 11992 - rev = "5b950566e20d877184a06b1d2fe8bad0998b3ece"; 11993 - sha256 = "1mpj8n38fr1gfp65cah4w141cw381ms17zwmvl2iga2hz60rnz0d"; 11994 }; 11995 meta.homepage = "https://github.com/nvie/vim-flake8/"; 11996 }; ··· 12081 12082 vim-fugitive = buildVimPlugin { 12083 pname = "vim-fugitive"; 12084 - version = "2023-09-08"; 12085 src = fetchFromGitHub { 12086 owner = "tpope"; 12087 repo = "vim-fugitive"; 12088 - rev = "6fcb0ad03982de646e3fecb6915e585651b9a9fb"; 12089 - sha256 = "1acl8akxdgpanyn56y4lyvgljrhf2dlrdhisl924l9r0zba0kc3i"; 12090 }; 12091 meta.homepage = "https://github.com/tpope/vim-fugitive/"; 12092 }; ··· 12550 12551 vim-illuminate = buildVimPlugin { 12552 pname = "vim-illuminate"; 12553 - version = "2023-09-12"; 12554 src = fetchFromGitHub { 12555 owner = "RRethy"; 12556 repo = "vim-illuminate"; 12557 - rev = "8c910b2f84ae6acd9b4b17330bb94dd783c0c11a"; 12558 - sha256 = "0v6w5lm8f39yg9s3lfh15a2sbw8sr6pfiz6p83fmigrxncvb49cp"; 12559 }; 12560 meta.homepage = "https://github.com/RRethy/vim-illuminate/"; 12561 }; ··· 12851 12852 vim-latex-live-preview = buildVimPlugin { 12853 pname = "vim-latex-live-preview"; 12854 - version = "2023-04-01"; 12855 src = fetchFromGitHub { 12856 owner = "xuhdev"; 12857 repo = "vim-latex-live-preview"; 12858 - rev = "e1a6a31b123bf6b15635cac6d391afcb2670187a"; 12859 - sha256 = "163zvzchxmpff2slj769bqagfblq6n7h3gyxn557dfl7hj5bfs2y"; 12860 }; 12861 meta.homepage = "https://github.com/xuhdev/vim-latex-live-preview/"; 12862 }; ··· 13067 13068 vim-lsp-settings = buildVimPlugin { 13069 pname = "vim-lsp-settings"; 13070 - version = "2023-09-03"; 13071 src = fetchFromGitHub { 13072 owner = "mattn"; 13073 repo = "vim-lsp-settings"; 13074 - rev = "7344e006d06070a7e3f09655de552040a26a49c9"; 13075 - sha256 = "0v76sp0v5h4i41hda62rnqxvxc55wd9mnk2idnnp2p67xkb41pvy"; 13076 }; 13077 meta.homepage = "https://github.com/mattn/vim-lsp-settings/"; 13078 }; ··· 13151 13152 vim-markdown = buildVimPlugin { 13153 pname = "vim-markdown"; 13154 - version = "2023-04-08"; 13155 src = fetchFromGitHub { 13156 owner = "preservim"; 13157 repo = "vim-markdown"; 13158 - rev = "cc82d88e2a791f54d2b6e2b26e41f743351ac947"; 13159 - sha256 = "1l3vdx87sgqbxbh1jz00xm8s589rca4pszqk4jj9yvn1vxljnk87"; 13160 }; 13161 meta.homepage = "https://github.com/preservim/vim-markdown/"; 13162 }; ··· 13416 13417 vim-nickel = buildVimPlugin { 13418 pname = "vim-nickel"; 13419 - version = "2023-07-05"; 13420 src = fetchFromGitHub { 13421 owner = "nickel-lang"; 13422 repo = "vim-nickel"; 13423 - rev = "535196c1e6b77e05f31a5ba50a5eaef393bbf280"; 13424 - sha256 = "042n288b6c58jihbgsxhilycx56llbqck341zw7gf8sk4sypqhhr"; 13425 }; 13426 meta.homepage = "https://github.com/nickel-lang/vim-nickel/"; 13427 }; ··· 13858 meta.homepage = "https://github.com/sheerun/vim-polyglot/"; 13859 }; 13860 13861 - vim-pony = buildVimPlugin { 13862 - pname = "vim-pony"; 13863 - version = "2018-07-27"; 13864 - src = fetchFromGitHub { 13865 - owner = "jakwings"; 13866 - repo = "vim-pony"; 13867 - rev = "b26f01a869000b73b80dceabd725d91bfe175b75"; 13868 - sha256 = "0if8g94m3xmpda80byfxs649w2is9ah1k8v3028nblan73zlc8x8"; 13869 - }; 13870 - meta.homepage = "https://github.com/jakwings/vim-pony/"; 13871 - }; 13872 - 13873 vim-poweryank = buildVimPlugin { 13874 pname = "vim-poweryank"; 13875 version = "2017-08-13"; ··· 14388 14389 vim-slime = buildVimPlugin { 14390 pname = "vim-slime"; 14391 - version = "2023-08-29"; 14392 src = fetchFromGitHub { 14393 owner = "jpalardy"; 14394 repo = "vim-slime"; 14395 - rev = "7cfe5ac9f5d5512a7aeeb2e0a13a64975ac129e5"; 14396 - sha256 = "1lzvsdzpmrsdacxy73a6jnji3b3rjq3qm1r3qk4l46291xn8b9cw"; 14397 }; 14398 meta.homepage = "https://github.com/jpalardy/vim-slime/"; 14399 }; ··· 14568 14569 vim-startify = buildVimPlugin { 14570 pname = "vim-startify"; 14571 - version = "2021-05-08"; 14572 src = fetchFromGitHub { 14573 owner = "mhinz"; 14574 repo = "vim-startify"; 14575 - rev = "81e36c352a8deea54df5ec1e2f4348685569bed2"; 14576 - sha256 = "1y8yi099lqg03781bnma2bj6x5lkvfq65vhdpnm65mfyak6dpzgz"; 14577 }; 14578 meta.homepage = "https://github.com/mhinz/vim-startify/"; 14579 }; ··· 14917 14918 vim-tmux-navigator = buildVimPlugin { 14919 pname = "vim-tmux-navigator"; 14920 - version = "2023-08-20"; 14921 src = fetchFromGitHub { 14922 owner = "christoomey"; 14923 repo = "vim-tmux-navigator"; 14924 - rev = "addb64a772cb4a3ae1f1363583012b2cada2cd66"; 14925 - sha256 = "0vnsjcslz3w02jlkvpnld8wjb73qpninylp0alpniwqyjm43nrl9"; 14926 }; 14927 meta.homepage = "https://github.com/christoomey/vim-tmux-navigator/"; 14928 }; ··· 15505 15506 vimspector = buildVimPlugin { 15507 pname = "vimspector"; 15508 - version = "2023-09-10"; 15509 src = fetchFromGitHub { 15510 owner = "puremourning"; 15511 repo = "vimspector"; 15512 - rev = "bee01e1186a65f551de456b0a6eea5b445943b1d"; 15513 - sha256 = "1yd0g67vjdqabjjicgwfdsxfbkpmh91w3cfj4m628h4la2iiwg6s"; 15514 fetchSubmodules = true; 15515 }; 15516 meta.homepage = "https://github.com/puremourning/vimspector/"; ··· 15518 15519 vimtex = buildVimPlugin { 15520 pname = "vimtex"; 15521 - version = "2023-09-11"; 15522 src = fetchFromGitHub { 15523 owner = "lervag"; 15524 repo = "vimtex"; 15525 - rev = "2b8a5f16a5768b3ae1780c266b73022dbb658af1"; 15526 - sha256 = "0i6rjzkbcibb9dxgk1406w6w1dab5nja0iiqpp1mwgdb28hjrswv"; 15527 }; 15528 meta.homepage = "https://github.com/lervag/vimtex/"; 15529 }; ··· 15674 15675 wiki-vim = buildVimPlugin { 15676 pname = "wiki.vim"; 15677 - version = "2023-09-04"; 15678 src = fetchFromGitHub { 15679 owner = "lervag"; 15680 repo = "wiki.vim"; 15681 - rev = "04fd37ae2b22c2134830a51ad49ed710c140145d"; 15682 - sha256 = "0gwxm6l6knskpnb2zh0963dr1il3x1m2la38v0z3vr8h5yn74gah"; 15683 }; 15684 meta.homepage = "https://github.com/lervag/wiki.vim/"; 15685 }; ··· 15782 15783 wrapping-nvim = buildVimPlugin { 15784 pname = "wrapping.nvim"; 15785 - version = "2023-08-08"; 15786 src = fetchFromGitHub { 15787 owner = "andrewferrier"; 15788 repo = "wrapping.nvim"; 15789 - rev = "1fc811d99b512ca53a4a773580f9ed5394fe6b2a"; 15790 - sha256 = "01j0whf2f4bzkq9p1bdpf7bhj1v7sj1bzdq47xck1f7fkkk2i8cr"; 15791 }; 15792 meta.homepage = "https://github.com/andrewferrier/wrapping.nvim/"; 15793 }; ··· 15927 15928 zig-vim = buildVimPlugin { 15929 pname = "zig.vim"; 15930 - version = "2023-07-22"; 15931 src = fetchFromGitHub { 15932 owner = "ziglang"; 15933 repo = "zig.vim"; 15934 - rev = "15841fc4fecfb1b6c02da9b4cc17ced135edbf8e"; 15935 - sha256 = "0m9p0055x6j5bz7whln7arz6w7cn02wq4rgs1ynczrvbqd68iji2"; 15936 }; 15937 meta.homepage = "https://github.com/ziglang/zig.vim/"; 15938 }; ··· 15975 15976 catppuccin-nvim = buildVimPlugin { 15977 pname = "catppuccin-nvim"; 15978 - version = "2023-09-11"; 15979 src = fetchFromGitHub { 15980 owner = "catppuccin"; 15981 repo = "nvim"; 15982 - rev = "85e93601e0f0b48aa2c6bbfae4d0e9d7a1898280"; 15983 - sha256 = "0cdgh3x417m4xcwqaj4c76fylfnyyjq2az8jbvw5gxrpvz9lmazk"; 15984 }; 15985 meta.homepage = "https://github.com/catppuccin/nvim/"; 15986 }; ··· 16023 16024 gruvbox-community = buildVimPlugin { 16025 pname = "gruvbox-community"; 16026 - version = "2023-09-12"; 16027 src = fetchFromGitHub { 16028 owner = "gruvbox-community"; 16029 repo = "gruvbox"; 16030 - rev = "121309cebfc5a9b4f71b7b962d0d0df7e82cc456"; 16031 - sha256 = "0211bkj92rk3gv70p7xlqny481s0qk345cgl05m2l1x6bmcm5zps"; 16032 }; 16033 meta.homepage = "https://github.com/gruvbox-community/gruvbox/"; 16034 }; ··· 16047 16048 nightfly = buildVimPlugin { 16049 pname = "nightfly"; 16050 - version = "2023-09-01"; 16051 src = fetchFromGitHub { 16052 owner = "bluz71"; 16053 repo = "vim-nightfly-colors"; 16054 - rev = "2737ba5b8d22ad6803bb0f51099f90c61bab566c"; 16055 - sha256 = "07g6s0p9mqs3s65a027zvpwpfmx191ajg0h8v9qilgzw755barx7"; 16056 }; 16057 meta.homepage = "https://github.com/bluz71/vim-nightfly-colors/"; 16058 }; ··· 16155 16156 vim-docbk-snippets = buildVimPlugin { 16157 pname = "vim-docbk-snippets"; 16158 - version = "2023-06-05"; 16159 src = fetchFromGitHub { 16160 owner = "jhradilek"; 16161 repo = "vim-snippets"; 16162 - rev = "a279b708a49ca410b41b1628f62c56ab4dc0390b"; 16163 - sha256 = "06rnj834nrd0c1g088zfvb2bvbzqzbmbdhga9gza8srjw7p8kvhw"; 16164 }; 16165 meta.homepage = "https://github.com/jhradilek/vim-snippets/"; 16166 };
··· 65 66 Coqtail = buildVimPlugin { 67 pname = "Coqtail"; 68 + version = "2023-09-17"; 69 src = fetchFromGitHub { 70 owner = "whonore"; 71 repo = "Coqtail"; 72 + rev = "6462fb4b41215fac4558608c4d944074075ceb17"; 73 + sha256 = "06c8w36bvgnspn7frmldrvxl40108pbfrn0spzympyg03c693swr"; 74 }; 75 meta.homepage = "https://github.com/whonore/Coqtail/"; 76 }; ··· 173 174 LazyVim = buildVimPlugin { 175 pname = "LazyVim"; 176 + version = "2023-09-29"; 177 src = fetchFromGitHub { 178 owner = "LazyVim"; 179 repo = "LazyVim"; 180 + rev = "6f9adbd4fba4132bd4f12404bd2b90c4a28ff136"; 181 + sha256 = "0d7grxa6pvsi5az4p22dvb6sxjhwx78ivbf80zq0dzvv96dvlyzx"; 182 }; 183 meta.homepage = "https://github.com/LazyVim/LazyVim/"; 184 }; 185 186 LeaderF = buildVimPlugin { 187 pname = "LeaderF"; 188 + version = "2023-09-25"; 189 src = fetchFromGitHub { 190 owner = "Yggdroot"; 191 repo = "LeaderF"; 192 + rev = "a77f45791edeaa82fa75c5959ca73a59d7549549"; 193 + sha256 = "1pw6jk6qlgba87gcdr7iawmbyfa48qy5zf63ghrrddfh1850gxsj"; 194 }; 195 meta.homepage = "https://github.com/Yggdroot/LeaderF/"; 196 }; ··· 305 306 SchemaStore-nvim = buildVimPlugin { 307 pname = "SchemaStore.nvim"; 308 + version = "2023-09-29"; 309 src = fetchFromGitHub { 310 owner = "b0o"; 311 repo = "SchemaStore.nvim"; 312 + rev = "9a4e2f8da367ab671a6d7bf8b5b82e125c71a645"; 313 + sha256 = "1p3kpsjvn9snisak89h0yifkyxq07vqg2c0f7vm3hzc99bs0zrxz"; 314 }; 315 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 316 }; ··· 377 378 SpaceVim = buildVimPlugin { 379 pname = "SpaceVim"; 380 + version = "2023-09-23"; 381 src = fetchFromGitHub { 382 owner = "SpaceVim"; 383 repo = "SpaceVim"; 384 + rev = "f7151f55a9e9b96e332d7cc1e0febdcae6198356"; 385 + sha256 = "155d7b0vgqcsdayry8gz7sz2l3wlabh1pp6jksanjbfcq3gydvxn"; 386 }; 387 meta.homepage = "https://github.com/SpaceVim/SpaceVim/"; 388 }; ··· 449 450 YouCompleteMe = buildVimPlugin { 451 pname = "YouCompleteMe"; 452 + version = "2023-09-27"; 453 src = fetchFromGitHub { 454 owner = "ycm-core"; 455 repo = "YouCompleteMe"; 456 + rev = "3367b9b4a921b673ffe88454ac838f272375e0b2"; 457 + sha256 = "1mqzvnrjf8r9s1g5ah7mfxxl5hcj2jp0phak45h0vvb7g185951w"; 458 fetchSubmodules = true; 459 }; 460 meta.homepage = "https://github.com/ycm-core/YouCompleteMe/"; ··· 522 523 aerial-nvim = buildVimPlugin { 524 pname = "aerial.nvim"; 525 + version = "2023-09-29"; 526 src = fetchFromGitHub { 527 owner = "stevearc"; 528 repo = "aerial.nvim"; 529 + rev = "551a2b679f265917990207e6d8de28018d55f437"; 530 + sha256 = "07jaqdqdd46q2y4n5vbfkg6v7wxyhiy035fi1wrjyvb1rfil766b"; 531 fetchSubmodules = true; 532 }; 533 meta.homepage = "https://github.com/stevearc/aerial.nvim/"; ··· 583 584 ale = buildVimPlugin { 585 pname = "ale"; 586 + version = "2023-09-17"; 587 src = fetchFromGitHub { 588 owner = "dense-analysis"; 589 repo = "ale"; 590 + rev = "53b01d6a546384a28f1ccbed41baae58d7341da4"; 591 + sha256 = "1jqsxgys7285m99y553ydvf0cwdkm98s0mi6mnmghzv3q7d9ngik"; 592 }; 593 meta.homepage = "https://github.com/dense-analysis/ale/"; 594 }; ··· 775 776 asyncrun-vim = buildVimPlugin { 777 pname = "asyncrun.vim"; 778 + version = "2023-09-26"; 779 src = fetchFromGitHub { 780 owner = "skywind3000"; 781 repo = "asyncrun.vim"; 782 + rev = "61cc3081963a12048e00e89f8cedc8bd1cb83b8c"; 783 + sha256 = "1l86kk0ha6yw3i285xaizzrgxvnxf95q0ys44glz8mns1z2jq4zk"; 784 }; 785 meta.homepage = "https://github.com/skywind3000/asyncrun.vim/"; 786 }; 787 788 asynctasks-vim = buildVimPlugin { 789 pname = "asynctasks.vim"; 790 + version = "2023-09-21"; 791 src = fetchFromGitHub { 792 owner = "skywind3000"; 793 repo = "asynctasks.vim"; 794 + rev = "7b77b195a4297d3e4c9dde01c20aa6be17e3fcf3"; 795 + sha256 = "0bvchmk1pdfjmyidf393chmc17y0v6zq92p3ac7dpwyiz01c360l"; 796 }; 797 meta.homepage = "https://github.com/skywind3000/asynctasks.vim/"; 798 }; ··· 1063 1064 blamer-nvim = buildVimPlugin { 1065 pname = "blamer.nvim"; 1066 + version = "2023-09-19"; 1067 src = fetchFromGitHub { 1068 owner = "APZelos"; 1069 repo = "blamer.nvim"; 1070 + rev = "e0d43c11697300eb68f00d69df8b87deb0bf52dc"; 1071 + sha256 = "1r88z0320lsv1q0bhnf8hgzi2qp1a6s1fb198zypc5m0kf410n3v"; 1072 }; 1073 meta.homepage = "https://github.com/APZelos/blamer.nvim/"; 1074 }; ··· 1171 1172 bufferline-nvim = buildVimPlugin { 1173 pname = "bufferline.nvim"; 1174 + version = "2023-09-20"; 1175 src = fetchFromGitHub { 1176 owner = "akinsho"; 1177 repo = "bufferline.nvim"; 1178 + rev = "6ecd37e0fa8b156099daedd2191130e083fb1490"; 1179 + sha256 = "1b70xycm9ggqdqbqhkl2ch6k3r3qsww9zvnl2cs9198lr1f2j0ri"; 1180 }; 1181 meta.homepage = "https://github.com/akinsho/bufferline.nvim/"; 1182 }; ··· 1243 1244 ccc-nvim = buildVimPlugin { 1245 pname = "ccc.nvim"; 1246 + version = "2023-09-26"; 1247 src = fetchFromGitHub { 1248 owner = "uga-rosa"; 1249 repo = "ccc.nvim"; 1250 + rev = "b7ae63e2f4fdf7540ce3f42dd1ec5a27b9930560"; 1251 + sha256 = "01l2rlrmcl72fb0i39wzny9216x8p11mi24g1pgd4ayipx057i68"; 1252 }; 1253 meta.homepage = "https://github.com/uga-rosa/ccc.nvim/"; 1254 }; ··· 1747 1748 cmp-omni = buildVimPlugin { 1749 pname = "cmp-omni"; 1750 + version = "2023-09-24"; 1751 src = fetchFromGitHub { 1752 owner = "hrsh7th"; 1753 repo = "cmp-omni"; 1754 + rev = "4ef610bbd85a5ee4e97e09450c0daecbdc60de86"; 1755 + sha256 = "17963f45rly6p4jl47v7dsvqc02wj36mq7qx5mkmzqmrpwcrj81z"; 1756 }; 1757 meta.homepage = "https://github.com/hrsh7th/cmp-omni/"; 1758 }; ··· 1819 1820 cmp-spell = buildVimPlugin { 1821 pname = "cmp-spell"; 1822 + version = "2023-09-20"; 1823 src = fetchFromGitHub { 1824 owner = "f3fora"; 1825 repo = "cmp-spell"; 1826 + rev = "32a0867efa59b43edbb2db67b0871cfad90c9b66"; 1827 + sha256 = "1yr2cq1b6di4k93pjlshkkf4phhd3lzmkm0s679j35crzgwhxnbd"; 1828 }; 1829 meta.homepage = "https://github.com/f3fora/cmp-spell/"; 1830 }; ··· 2023 2024 coc-nvim = buildVimPlugin { 2025 pname = "coc.nvim"; 2026 + version = "2023-09-21"; 2027 src = fetchFromGitHub { 2028 owner = "neoclide"; 2029 repo = "coc.nvim"; 2030 + rev = "e4cee8e6c310663d2d81489dd9155889bbcd8d12"; 2031 + sha256 = "1a59l2lq1rhfhy5iwapv82mz6jzna0z9nl03xi0brfipknhlmsjh"; 2032 }; 2033 meta.homepage = "https://github.com/neoclide/coc.nvim/"; 2034 }; ··· 2047 2048 codeium-vim = buildVimPlugin { 2049 pname = "codeium.vim"; 2050 + version = "2023-09-26"; 2051 src = fetchFromGitHub { 2052 owner = "Exafunction"; 2053 repo = "codeium.vim"; 2054 + rev = "bee5429aba9bc1df9cb15a2f10fea06ce87a47be"; 2055 + sha256 = "0lnrpxrggy9gds2968iwyyg3m0z07gi9x1fbc5z56girh44vs816"; 2056 }; 2057 meta.homepage = "https://github.com/Exafunction/codeium.vim/"; 2058 }; 2059 2060 codewindow-nvim = buildVimPlugin { 2061 pname = "codewindow.nvim"; 2062 + version = "2023-09-23"; 2063 src = fetchFromGitHub { 2064 owner = "gorbit99"; 2065 repo = "codewindow.nvim"; 2066 + rev = "8c8f5ff66e123491c946c04848d744fcdc7cac6c"; 2067 + sha256 = "18xlrphibm5f49l04wrjzaxb2xfdqmydrj2d4pi7z6vxny6rkvgy"; 2068 }; 2069 meta.homepage = "https://github.com/gorbit99/codewindow.nvim/"; 2070 }; ··· 2107 2108 com-cloudedmountain-ide-neovim = buildVimPlugin { 2109 pname = "com.cloudedmountain.ide.neovim"; 2110 + version = "2023-09-25"; 2111 src = fetchFromGitHub { 2112 owner = "Domeee"; 2113 repo = "com.cloudedmountain.ide.neovim"; 2114 + rev = "ade9b58e458049949dbd308a4d0554c3f20f5e4d"; 2115 + sha256 = "00sf0d5yd1xmfgzr6vf988qm10cdx2arxvvm4r4gy9pcqqfwgm18"; 2116 }; 2117 meta.homepage = "https://github.com/Domeee/com.cloudedmountain.ide.neovim/"; 2118 }; ··· 2335 2336 copilot-lua = buildVimPlugin { 2337 pname = "copilot.lua"; 2338 + version = "2023-09-21"; 2339 src = fetchFromGitHub { 2340 owner = "zbirenbaum"; 2341 repo = "copilot.lua"; 2342 + rev = "1a8032ae496916ccc7a7a52ee79194fbef29f462"; 2343 + sha256 = "0a3k8nb39j0n14ylg84x8c6n8g4m7llx78vad2vz247wnyw4z9sj"; 2344 }; 2345 meta.homepage = "https://github.com/zbirenbaum/copilot.lua/"; 2346 }; 2347 2348 copilot-vim = buildVimPlugin { 2349 pname = "copilot.vim"; 2350 + version = "2023-09-20"; 2351 src = fetchFromGitHub { 2352 owner = "github"; 2353 repo = "copilot.vim"; 2354 + rev = "998cf5ab1b85e844c7e8edb864a997e590df7182"; 2355 + sha256 = "1sf566vwyj21h9vbs64j8458v4ncqpmfb5cr74pyl59qi33yq1zd"; 2356 }; 2357 meta.homepage = "https://github.com/github/copilot.vim/"; 2358 }; ··· 2431 2432 crates-nvim = buildVimPlugin { 2433 pname = "crates.nvim"; 2434 + version = "2023-09-29"; 2435 src = fetchFromGitHub { 2436 owner = "saecki"; 2437 repo = "crates.nvim"; 2438 + rev = "7e0e24b5c28c9fababf2b965f5840e6867c96848"; 2439 + sha256 = "0c1vykv382hbri0r86scxzh8665knam6nim2rh9nq8s4davxxjwn"; 2440 }; 2441 meta.homepage = "https://github.com/saecki/crates.nvim/"; 2442 }; ··· 2467 2468 csv-vim = buildVimPlugin { 2469 pname = "csv.vim"; 2470 + version = "2023-09-28"; 2471 src = fetchFromGitHub { 2472 owner = "chrisbra"; 2473 repo = "csv.vim"; 2474 + rev = "4fd88346aed02123aa5daa1a363868a576c6fdcf"; 2475 + sha256 = "10c2hgzhnv1zr461hvp4cnxpfs0aja43whjimdsb5sjd4xk5x7cc"; 2476 }; 2477 meta.homepage = "https://github.com/chrisbra/csv.vim/"; 2478 }; ··· 2551 2552 dashboard-nvim = buildVimPlugin { 2553 pname = "dashboard-nvim"; 2554 + version = "2023-09-27"; 2555 src = fetchFromGitHub { 2556 owner = "nvimdev"; 2557 repo = "dashboard-nvim"; 2558 + rev = "6b112d40ccf2a7aa6605ce325338c66612c4f7ec"; 2559 + sha256 = "01zlvxafp6vxng14zna9r33586d1pw8ihcl73r631x2jsmyi5zpp"; 2560 }; 2561 meta.homepage = "https://github.com/nvimdev/dashboard-nvim/"; 2562 }; ··· 2949 2950 diffview-nvim = buildVimPlugin { 2951 pname = "diffview.nvim"; 2952 + version = "2023-09-17"; 2953 src = fetchFromGitHub { 2954 owner = "sindrets"; 2955 repo = "diffview.nvim"; 2956 + rev = "a111d19ccceac6530448d329c63f998f77b5626e"; 2957 + sha256 = "18g71p8k2ksfzh3hpm27ry9fd8vi6wkl5czwv3sag8cix1lkm56d"; 2958 }; 2959 meta.homepage = "https://github.com/sindrets/diffview.nvim/"; 2960 }; ··· 3021 3022 dressing-nvim = buildVimPlugin { 3023 pname = "dressing.nvim"; 3024 + version = "2023-09-29"; 3025 src = fetchFromGitHub { 3026 owner = "stevearc"; 3027 repo = "dressing.nvim"; 3028 + rev = "73a7d54b5289000108c7f52402a36cf380fced67"; 3029 + sha256 = "1yafysdnl6irxcwwmir26iff6y2lv2axlss01n3jm6n6fknbvfjy"; 3030 }; 3031 meta.homepage = "https://github.com/stevearc/dressing.nvim/"; 3032 }; 3033 3034 dropbar-nvim = buildVimPlugin { 3035 pname = "dropbar.nvim"; 3036 + version = "2023-09-29"; 3037 src = fetchFromGitHub { 3038 owner = "Bekaboo"; 3039 repo = "dropbar.nvim"; 3040 + rev = "7a91b7ba15fcf78ba0d0081cbce7e31a73963b1c"; 3041 + sha256 = "0k2m566r86l8hhk9czpcv80bpgzsdk7fna6nna3gf2s8z1ymgbs4"; 3042 }; 3043 meta.homepage = "https://github.com/Bekaboo/dropbar.nvim/"; 3044 }; ··· 3093 3094 editorconfig-vim = buildVimPlugin { 3095 pname = "editorconfig-vim"; 3096 + version = "2023-09-23"; 3097 src = fetchFromGitHub { 3098 owner = "editorconfig"; 3099 repo = "editorconfig-vim"; 3100 + rev = "0d54ea863089fb13be423b4aed6cca35f3a5d778"; 3101 + sha256 = "1d5r480njjgvn5w5ldhrj5gi38lqhnlyi1f7fvpjgl0lbyyqwp9s"; 3102 fetchSubmodules = true; 3103 }; 3104 meta.homepage = "https://github.com/editorconfig/editorconfig-vim/"; ··· 3118 3119 efmls-configs-nvim = buildVimPlugin { 3120 pname = "efmls-configs-nvim"; 3121 + version = "2023-09-28"; 3122 src = fetchFromGitHub { 3123 owner = "creativenull"; 3124 repo = "efmls-configs-nvim"; 3125 + rev = "dcdb132451dfc2c0d7ec815e66e69ca5b8ae8577"; 3126 + sha256 = "1rrj7vvdzzzcacvbkl4pzfq7a19jc25bhk31g017az9q2mmap0mz"; 3127 }; 3128 meta.homepage = "https://github.com/creativenull/efmls-configs-nvim/"; 3129 }; 3130 3131 elixir-tools-nvim = buildVimPlugin { 3132 pname = "elixir-tools.nvim"; 3133 + version = "2023-09-19"; 3134 src = fetchFromGitHub { 3135 owner = "elixir-tools"; 3136 repo = "elixir-tools.nvim"; 3137 + rev = "3099bacca3745aa805b04eacad3d2721c9d477f4"; 3138 + sha256 = "0kpwvz1a1h958gr1mig547scg8wpxg4bkrdqmn52ayl27xj5iy1h"; 3139 }; 3140 meta.homepage = "https://github.com/elixir-tools/elixir-tools.nvim/"; 3141 }; ··· 3384 3385 flash-nvim = buildVimPlugin { 3386 pname = "flash.nvim"; 3387 + version = "2023-09-28"; 3388 src = fetchFromGitHub { 3389 owner = "folke"; 3390 repo = "flash.nvim"; 3391 + rev = "0256d8ecab33a9aa69fdaaf885db22e1103e2a3a"; 3392 + sha256 = "10y0346rpxf8yc3f9wacmbsdvziwy7wv35l4i2a04vrwyqxgz2m4"; 3393 }; 3394 meta.homepage = "https://github.com/folke/flash.nvim/"; 3395 }; 3396 3397 flatten-nvim = buildVimPlugin { 3398 pname = "flatten.nvim"; 3399 + version = "2023-09-24"; 3400 src = fetchFromGitHub { 3401 owner = "willothy"; 3402 repo = "flatten.nvim"; 3403 + rev = "67c70f0be3bc536850e1c224a39aef075d23344f"; 3404 + sha256 = "09dsal7a95z62f7nw8rjllm102z1112rfxbkj6fxvbw0y5gxmplk"; 3405 }; 3406 meta.homepage = "https://github.com/willothy/flatten.nvim/"; 3407 }; ··· 3468 3469 flutter-tools-nvim = buildVimPlugin { 3470 pname = "flutter-tools.nvim"; 3471 + version = "2023-09-20"; 3472 src = fetchFromGitHub { 3473 owner = "akinsho"; 3474 repo = "flutter-tools.nvim"; 3475 + rev = "0b01c71ecf05a2edd955b5b53d808bc64f143069"; 3476 + sha256 = "05lcwwq48ab661aw0mbs72vg0v10qlzjspcyhhvdmzajsgwcdqxs"; 3477 }; 3478 meta.homepage = "https://github.com/akinsho/flutter-tools.nvim/"; 3479 }; ··· 3492 3493 formatter-nvim = buildVimPlugin { 3494 pname = "formatter.nvim"; 3495 + version = "2023-09-21"; 3496 src = fetchFromGitHub { 3497 owner = "mhartington"; 3498 repo = "formatter.nvim"; 3499 + rev = "34dcdfa0c75df667743b2a50dd99c84a557376f0"; 3500 + sha256 = "09dks17yi1cbk4gviv7kw7r04rcn8ridq75slm3vxf3jkid095ns"; 3501 }; 3502 meta.homepage = "https://github.com/mhartington/formatter.nvim/"; 3503 }; ··· 3624 3625 fzf-lua = buildVimPlugin { 3626 pname = "fzf-lua"; 3627 + version = "2023-09-29"; 3628 src = fetchFromGitHub { 3629 owner = "ibhagwan"; 3630 repo = "fzf-lua"; 3631 + rev = "f4091b9fa05ae6c2eab2823c0b345be2a27208c6"; 3632 + sha256 = "1q48jk4cm9djkz1czf80f024fv6mdysc38x4r66m5gkqs4vky3ma"; 3633 }; 3634 meta.homepage = "https://github.com/ibhagwan/fzf-lua/"; 3635 }; 3636 3637 fzf-vim = buildVimPlugin { 3638 pname = "fzf.vim"; 3639 + version = "2023-09-17"; 3640 src = fetchFromGitHub { 3641 owner = "junegunn"; 3642 repo = "fzf.vim"; 3643 + rev = "678ee1a549bd873dde35f6146f288a3f2e29d983"; 3644 + sha256 = "0ls94bxj1awx1z0x4h9pmc08zh917gyyllalm562a0a51x6sr9sg"; 3645 }; 3646 meta.homepage = "https://github.com/junegunn/fzf.vim/"; 3647 }; ··· 3720 3721 git-blame-nvim = buildVimPlugin { 3722 pname = "git-blame.nvim"; 3723 + version = "2023-09-29"; 3724 src = fetchFromGitHub { 3725 owner = "f-person"; 3726 repo = "git-blame.nvim"; 3727 + rev = "39df33dad2cbf4eb9d17264bcda0c12e670ef1c2"; 3728 + sha256 = "0faaqj4a0nz005gl1r3hp07zrckq00v9ik0g04wwzbr0phccka8q"; 3729 }; 3730 meta.homepage = "https://github.com/f-person/git-blame.nvim/"; 3731 }; 3732 3733 git-conflict-nvim = buildVimPlugin { 3734 pname = "git-conflict.nvim"; 3735 + version = "2023-09-18"; 3736 src = fetchFromGitHub { 3737 owner = "akinsho"; 3738 repo = "git-conflict.nvim"; 3739 + rev = "896261933afe2fddf6fb043d9cd4d88301b151a9"; 3740 + sha256 = "1pkvhl1bf76nvc9rdyn60dq619pkwr2a03gn2zkqlap28lhw2xn8"; 3741 }; 3742 meta.homepage = "https://github.com/akinsho/git-conflict.nvim/"; 3743 }; ··· 3792 3793 gitsigns-nvim = buildNeovimPlugin { 3794 pname = "gitsigns.nvim"; 3795 + version = "2023-09-24"; 3796 src = fetchFromGitHub { 3797 owner = "lewis6991"; 3798 repo = "gitsigns.nvim"; 3799 + rev = "bdeba1cec3faddd89146690c10b9a87949c0ee66"; 3800 + sha256 = "0amphagvmvdjrp13nxzl8jjs38dy1qicv71g91h998yjfc7av42l"; 3801 }; 3802 meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; 3803 }; ··· 3852 3853 go-nvim = buildVimPlugin { 3854 pname = "go.nvim"; 3855 + version = "2023-09-22"; 3856 src = fetchFromGitHub { 3857 owner = "ray-x"; 3858 repo = "go.nvim"; 3859 + rev = "019936780060efc64c0f22a47afd08fbbe82e026"; 3860 + sha256 = "05r63f4jgql9drvi4176czmqxcpqfkr0i05vm0mlvak6gfrzc6xk"; 3861 }; 3862 meta.homepage = "https://github.com/ray-x/go.nvim/"; 3863 }; ··· 3900 3901 goto-preview = buildVimPlugin { 3902 pname = "goto-preview"; 3903 + version = "2023-09-26"; 3904 src = fetchFromGitHub { 3905 owner = "rmagatti"; 3906 repo = "goto-preview"; 3907 + rev = "b428db4d2a5b7c06e149a020e31b2121fbf57a67"; 3908 + sha256 = "13lc0yjmwzwkdj92rlcwqpyic30z5vq3ss73bkzwl4vkqg413zla"; 3909 }; 3910 meta.homepage = "https://github.com/rmagatti/goto-preview/"; 3911 }; ··· 3984 3985 gruvbox-nvim = buildVimPlugin { 3986 pname = "gruvbox.nvim"; 3987 + version = "2023-09-28"; 3988 src = fetchFromGitHub { 3989 owner = "ellisonleao"; 3990 repo = "gruvbox.nvim"; 3991 + rev = "e810b46367a89e8b733cd100d12a6c8b2fc022c3"; 3992 + sha256 = "1rnzyfwrbcq4i5s7p6w1ig85rjfy7yc0zv3gpwwngjrw2zpnldcs"; 3993 }; 3994 meta.homepage = "https://github.com/ellisonleao/gruvbox.nvim/"; 3995 }; ··· 4032 4033 hardtime-nvim = buildVimPlugin { 4034 pname = "hardtime.nvim"; 4035 + version = "2023-09-23"; 4036 src = fetchFromGitHub { 4037 owner = "m4xshen"; 4038 repo = "hardtime.nvim"; 4039 + rev = "3d98663dbd2ed51a3be97e50dfe7df6c26d62d8d"; 4040 + sha256 = "07fv14zi1c55grzhzbri3rs4bv1lx5ywpkdgvmhgr1h7blm3d9g1"; 4041 }; 4042 meta.homepage = "https://github.com/m4xshen/hardtime.nvim/"; 4043 }; ··· 4067 4068 haskell-tools-nvim = buildNeovimPlugin { 4069 pname = "haskell-tools.nvim"; 4070 + version = "2023-09-27"; 4071 src = fetchFromGitHub { 4072 owner = "MrcJkb"; 4073 repo = "haskell-tools.nvim"; 4074 + rev = "ba67f50e8632f1df02526255e2aaf0239cc44e6e"; 4075 + sha256 = "1i2m51q4ccarxqdvj91mf338kagmzk09yq1r8p85ihad5pmijp23"; 4076 }; 4077 meta.homepage = "https://github.com/MrcJkb/haskell-tools.nvim/"; 4078 }; ··· 4163 4164 highlight-undo-nvim = buildVimPlugin { 4165 pname = "highlight-undo.nvim"; 4166 + version = "2023-09-20"; 4167 src = fetchFromGitHub { 4168 owner = "tzachar"; 4169 repo = "highlight-undo.nvim"; 4170 + rev = "50a6884a8476be04ecce8f1c4ed692c5000ef0a1"; 4171 + sha256 = "09fmds9ibl6n4fgxmmypifnxpyc0slpinc2h5cvx0959i9ak0l13"; 4172 }; 4173 meta.homepage = "https://github.com/tzachar/highlight-undo.nvim/"; 4174 }; ··· 4234 4235 hop-nvim = buildVimPlugin { 4236 pname = "hop.nvim"; 4237 + version = "2023-09-19"; 4238 src = fetchFromGitHub { 4239 + owner = "smoka7"; 4240 repo = "hop.nvim"; 4241 + rev = "f2508f415b9fe34082696009574ca26f57a66531"; 4242 + sha256 = "0l8b2ag894chk8ljznmspr1ac53n3wf6iww37ksd2pdas51la344"; 4243 }; 4244 + meta.homepage = "https://github.com/smoka7/hop.nvim/"; 4245 }; 4246 4247 hotpot-nvim = buildVimPlugin { ··· 4342 4343 image-nvim = buildVimPlugin { 4344 pname = "image.nvim"; 4345 + version = "2023-09-24"; 4346 src = fetchFromGitHub { 4347 owner = "3rd"; 4348 repo = "image.nvim"; 4349 + rev = "961e5a68998dd76bf5e25ae2d96fcf3bb1ee22ae"; 4350 + sha256 = "0k1gj83w3lqx9dass0mff1yhzn9p0ln96sz0cds14kkgyzfq6dw4"; 4351 }; 4352 meta.homepage = "https://github.com/3rd/image.nvim/"; 4353 }; ··· 4414 4415 indent-blankline-nvim = buildVimPlugin { 4416 pname = "indent-blankline.nvim"; 4417 + version = "2023-09-29"; 4418 src = fetchFromGitHub { 4419 owner = "lukas-reineke"; 4420 repo = "indent-blankline.nvim"; 4421 + rev = "2ec42d26c933e7a129fe056dfc11a207afff252d"; 4422 + sha256 = "1l2iqv7vb1v93rb9hqchgqlkss7lg5kiwwgb7x5czlxq2xyw7n7x"; 4423 }; 4424 meta.homepage = "https://github.com/lukas-reineke/indent-blankline.nvim/"; 4425 }; ··· 4775 4776 lazy-nvim = buildVimPlugin { 4777 pname = "lazy.nvim"; 4778 + version = "2023-09-29"; 4779 src = fetchFromGitHub { 4780 owner = "folke"; 4781 repo = "lazy.nvim"; 4782 + rev = "6a2c47e6424a3f1e373bfeb714b716f6be13501c"; 4783 + sha256 = "1m3nswn0i4ai7r9p76nxra7kxsx4lp41pyq6bb832a3zn3q6qxlk"; 4784 }; 4785 meta.homepage = "https://github.com/folke/lazy.nvim/"; 4786 }; 4787 4788 lazygit-nvim = buildVimPlugin { 4789 pname = "lazygit.nvim"; 4790 + version = "2023-09-26"; 4791 src = fetchFromGitHub { 4792 owner = "kdheepak"; 4793 repo = "lazygit.nvim"; 4794 + rev = "de35012036d43bca03628d40d083f7c02a4cda3f"; 4795 + sha256 = "1wgcl487gijm0ydp8n79jc8pmh947vphhh67vk6p79fxaihc56bl"; 4796 }; 4797 meta.homepage = "https://github.com/kdheepak/lazygit.nvim/"; 4798 }; 4799 4800 lean-nvim = buildVimPlugin { 4801 pname = "lean.nvim"; 4802 + version = "2023-09-24"; 4803 src = fetchFromGitHub { 4804 owner = "Julian"; 4805 repo = "lean.nvim"; 4806 + rev = "e639c7eb0f7f2a707b29f50b827e1a3a4b2ada9c"; 4807 + sha256 = "0rfwqip0747h4ppkxzzsqjvdkrr0rrhmpc3qbli18qwqx2vxc7hg"; 4808 }; 4809 meta.homepage = "https://github.com/Julian/lean.nvim/"; 4810 }; ··· 5207 5208 lsp_lines-nvim = buildVimPlugin { 5209 pname = "lsp_lines.nvim"; 5210 + version = "2023-09-25"; 5211 src = fetchgit { 5212 url = "https://git.sr.ht/~whynothugo/lsp_lines.nvim"; 5213 + rev = "9e3f99fbbd28aaec80dc0158c43be8cca8dd5017"; 5214 + sha256 = "1rva0ykikkj8wssga5h0ccqarkvcvi9g2kgr3il889v3zsim7d2m"; 5215 }; 5216 meta.homepage = "https://git.sr.ht/~whynothugo/lsp_lines.nvim"; 5217 }; 5218 5219 lsp_signature-nvim = buildVimPlugin { 5220 pname = "lsp_signature.nvim"; 5221 + version = "2023-09-20"; 5222 src = fetchFromGitHub { 5223 owner = "ray-x"; 5224 repo = "lsp_signature.nvim"; 5225 + rev = "bdf3dc7bb03edd25c2173e0e31c2fb122052ed23"; 5226 + sha256 = "16lca28qd9aik71lb9vkfg0ypsabx36j9aqaqjsihbhb2b2z8v4p"; 5227 }; 5228 meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/"; 5229 }; ··· 5254 5255 lspsaga-nvim = buildVimPlugin { 5256 pname = "lspsaga.nvim"; 5257 + version = "2023-09-26"; 5258 src = fetchFromGitHub { 5259 owner = "nvimdev"; 5260 repo = "lspsaga.nvim"; 5261 + rev = "b7873e556a5451c5febc0d46ba80767b2beea49e"; 5262 + sha256 = "1m1ryhg6cnbxs4xzwn6bj98g10qf14shwdwgplwbyl2yjr5r94hv"; 5263 }; 5264 meta.homepage = "https://github.com/nvimdev/lspsaga.nvim/"; 5265 }; ··· 5302 5303 luasnip = buildVimPlugin { 5304 pname = "luasnip"; 5305 + version = "2023-09-25"; 5306 src = fetchFromGitHub { 5307 owner = "l3mon4d3"; 5308 repo = "luasnip"; 5309 + rev = "480b032f6708573334f4437d3f83307d143f1a72"; 5310 + sha256 = "0jb4aaspl3xcqafqych973qrgnnp5bqhvinf03id8494da8zf9z7"; 5311 fetchSubmodules = true; 5312 }; 5313 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; ··· 5327 5328 lush-nvim = buildNeovimPlugin { 5329 pname = "lush.nvim"; 5330 + version = "2023-09-23"; 5331 src = fetchFromGitHub { 5332 owner = "rktjmp"; 5333 repo = "lush.nvim"; 5334 + rev = "966aad1accd47fa11fbe2539234f81f678fef2de"; 5335 + sha256 = "0g1xib2k42py9qqccjz11qk52ri0drgdk5rb0ls7wzx4v636k15h"; 5336 }; 5337 meta.homepage = "https://github.com/rktjmp/lush.nvim/"; 5338 }; ··· 5411 5412 mason-lspconfig-nvim = buildVimPlugin { 5413 pname = "mason-lspconfig.nvim"; 5414 + version = "2023-09-29"; 5415 src = fetchFromGitHub { 5416 owner = "williamboman"; 5417 repo = "mason-lspconfig.nvim"; 5418 + rev = "81e30dd629de24cbb26d08073ee938ab40006695"; 5419 + sha256 = "145nyyi128h25gdlidpwhkha3xf9sr66pxz76z2ncl8hccjpim35"; 5420 }; 5421 meta.homepage = "https://github.com/williamboman/mason-lspconfig.nvim/"; 5422 }; 5423 5424 mason-tool-installer-nvim = buildVimPlugin { 5425 pname = "mason-tool-installer.nvim"; 5426 + version = "2023-09-23"; 5427 src = fetchFromGitHub { 5428 owner = "WhoIsSethDaniel"; 5429 repo = "mason-tool-installer.nvim"; 5430 + rev = "83dcddb6477f9ba5db98971ef27bd18bdca921b4"; 5431 + sha256 = "1g04jj1z7ak74b8rccwhmg1yqlfxhhn3mblsqzxbz48xy4bjlsdp"; 5432 }; 5433 meta.homepage = "https://github.com/WhoIsSethDaniel/mason-tool-installer.nvim/"; 5434 }; ··· 5531 5532 mini-nvim = buildVimPlugin { 5533 pname = "mini.nvim"; 5534 + version = "2023-09-26"; 5535 src = fetchFromGitHub { 5536 owner = "echasnovski"; 5537 repo = "mini.nvim"; 5538 + rev = "1fdbb864e2015eb6f501394d593630f825154385"; 5539 + sha256 = "1iivgd0hlsi6d3i9lzffy74ilra7rigmdq6z3wrdfv33iwgm1k12"; 5540 }; 5541 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 5542 }; ··· 5615 5616 monokai-pro-nvim = buildVimPlugin { 5617 pname = "monokai-pro.nvim"; 5618 + version = "2023-09-29"; 5619 src = fetchFromGitHub { 5620 owner = "loctvl842"; 5621 repo = "monokai-pro.nvim"; 5622 + rev = "6b3bf9a4e0c988471969f62b36486023b33dd963"; 5623 + sha256 = "1frrsxvvklq6lpwclqsknqwpca1bgb13ijwj17x2x69bnzd13vhi"; 5624 }; 5625 meta.homepage = "https://github.com/loctvl842/monokai-pro.nvim/"; 5626 }; ··· 5915 5916 neo-tree-nvim = buildVimPlugin { 5917 pname = "neo-tree.nvim"; 5918 + version = "2023-09-25"; 5919 src = fetchFromGitHub { 5920 owner = "nvim-neo-tree"; 5921 repo = "neo-tree.nvim"; 5922 + rev = "a73b92c504ebfbbc3be522209ac60949942057c6"; 5923 + sha256 = "1amxljg4c1vhddmrxjw00dm685vd4zsj2r3gf0yk14nl8y7yj3b6"; 5924 }; 5925 meta.homepage = "https://github.com/nvim-neo-tree/neo-tree.nvim/"; 5926 }; ··· 5939 5940 neoconf-nvim = buildVimPlugin { 5941 pname = "neoconf.nvim"; 5942 + version = "2023-09-29"; 5943 src = fetchFromGitHub { 5944 owner = "folke"; 5945 repo = "neoconf.nvim"; 5946 + rev = "86ed5b91927b65352e3d8f315f8256a180805377"; 5947 + sha256 = "1j84jblykjsc6rk530zsdfsjwfgfdnfn7m1knzwyxjh983g4879a"; 5948 }; 5949 meta.homepage = "https://github.com/folke/neoconf.nvim/"; 5950 }; ··· 5963 5964 neodev-nvim = buildVimPlugin { 5965 pname = "neodev.nvim"; 5966 + version = "2023-09-29"; 5967 src = fetchFromGitHub { 5968 owner = "folke"; 5969 repo = "neodev.nvim"; 5970 + rev = "58b1c0740e8ad79ce71e2649a449bb90536435cf"; 5971 + sha256 = "06vflyl0c2b789lm6hgmr0gdvzzmjai8lgllr9cxm73ggh1lgqkf"; 5972 }; 5973 meta.homepage = "https://github.com/folke/neodev.nvim/"; 5974 }; 5975 5976 neoformat = buildVimPlugin { 5977 pname = "neoformat"; 5978 + version = "2023-09-22"; 5979 src = fetchFromGitHub { 5980 owner = "sbdchd"; 5981 repo = "neoformat"; 5982 + rev = "aedb6f9d3f53d5da229095f7d761d749f8c5c7e0"; 5983 + sha256 = "09lk5q7zfvjcfvijk3pr830zl602j3i06zil148fwhkghig0flkg"; 5984 }; 5985 meta.homepage = "https://github.com/sbdchd/neoformat/"; 5986 }; ··· 5999 6000 neogit = buildVimPlugin { 6001 pname = "neogit"; 6002 + version = "2023-09-28"; 6003 src = fetchFromGitHub { 6004 owner = "NeogitOrg"; 6005 repo = "neogit"; 6006 + rev = "e238f075a81806dc2dce803422beef42540a312e"; 6007 + sha256 = "16dl1jlzf9f49bv3ifsc27si07cqbd51wn7nj62pppqbbp0ayfz9"; 6008 }; 6009 meta.homepage = "https://github.com/NeogitOrg/neogit/"; 6010 }; ··· 6071 6072 neorg = buildVimPlugin { 6073 pname = "neorg"; 6074 + version = "2023-09-23"; 6075 src = fetchFromGitHub { 6076 owner = "nvim-neorg"; 6077 repo = "neorg"; 6078 + rev = "745715c873395840a5127413d1ef30a42735605e"; 6079 + sha256 = "0nm85zcai92wm4afhaswsmybhyxak7sfmga6dacv0z4v3gnghhav"; 6080 }; 6081 meta.homepage = "https://github.com/nvim-neorg/neorg/"; 6082 }; ··· 6216 6217 neotest-haskell = buildVimPlugin { 6218 pname = "neotest-haskell"; 6219 + version = "2023-09-24"; 6220 src = fetchFromGitHub { 6221 owner = "MrcJkb"; 6222 repo = "neotest-haskell"; 6223 + rev = "e45d5af30e636daea47866b9a44a56ab382d9b64"; 6224 + sha256 = "1jirv3cahfm8sj43hs587x4w6wdzraafjp7zqn8l3il4yd36lj7g"; 6225 }; 6226 meta.homepage = "https://github.com/MrcJkb/neotest-haskell/"; 6227 }; ··· 6264 6265 neotest-plenary = buildVimPlugin { 6266 pname = "neotest-plenary"; 6267 + version = "2023-09-29"; 6268 src = fetchFromGitHub { 6269 owner = "nvim-neotest"; 6270 repo = "neotest-plenary"; 6271 + rev = "dcaf5ed67a9e28a246e9783319e5aa6c9ea1c584"; 6272 + sha256 = "01dg3n3bnhc1ppai24syq48n5xkm1a3vm731xrah2y0qi390q0l3"; 6273 }; 6274 meta.homepage = "https://github.com/nvim-neotest/neotest-plenary/"; 6275 }; ··· 6288 6289 neotest-rspec = buildVimPlugin { 6290 pname = "neotest-rspec"; 6291 + version = "2023-09-17"; 6292 src = fetchFromGitHub { 6293 owner = "olimorris"; 6294 repo = "neotest-rspec"; 6295 + rev = "51a3b866d85733d2df2c6b5a16d75ce6ed2fbade"; 6296 + sha256 = "028qqd0ywlf93ndy3vqp6pj9pbp3nsibdnkmg3b45g1phc49hbrw"; 6297 }; 6298 meta.homepage = "https://github.com/olimorris/neotest-rspec/"; 6299 }; 6300 6301 neotest-rust = buildVimPlugin { 6302 pname = "neotest-rust"; 6303 + version = "2023-09-20"; 6304 src = fetchFromGitHub { 6305 owner = "rouge8"; 6306 repo = "neotest-rust"; 6307 + rev = "139cff7c85598ec591b5ed7d71ce8ed3b5313b97"; 6308 + sha256 = "1p8c2mnvv131nn7id2panm68nvmmbn44phzzwa2gggdv1snz0xax"; 6309 }; 6310 meta.homepage = "https://github.com/rouge8/neotest-rust/"; 6311 }; ··· 6480 6481 nightfox-nvim = buildVimPlugin { 6482 pname = "nightfox.nvim"; 6483 + version = "2023-09-27"; 6484 src = fetchFromGitHub { 6485 owner = "EdenEast"; 6486 repo = "nightfox.nvim"; 6487 + rev = "fe2fc7b93d66349eff2c5baa6cec922ee3958f56"; 6488 + sha256 = "1paipf7phkkr66xnfsi9hwxlqpj339nza8ni42hc5lg12c4h0p14"; 6489 }; 6490 meta.homepage = "https://github.com/EdenEast/nightfox.nvim/"; 6491 }; ··· 6564 6565 noice-nvim = buildVimPlugin { 6566 pname = "noice.nvim"; 6567 + version = "2023-09-25"; 6568 src = fetchFromGitHub { 6569 owner = "folke"; 6570 repo = "noice.nvim"; 6571 + rev = "396f9146529130904e07c45e90ecdbfa607534f3"; 6572 + sha256 = "0n7z491mg9wlr9vhpzanly9ywykbjavv04qk1f5msj5i5r613jh9"; 6573 }; 6574 meta.homepage = "https://github.com/folke/noice.nvim/"; 6575 }; ··· 6660 6661 nvchad = buildVimPlugin { 6662 pname = "nvchad"; 6663 + version = "2023-09-28"; 6664 src = fetchFromGitHub { 6665 owner = "nvchad"; 6666 repo = "nvchad"; 6667 + rev = "195fe4ae72365c75757c5d0df677f3b29d8697ce"; 6668 + sha256 = "01ycw6c0dlzyjpkp5kklp484ccygmrww65k5pcqgipvhzq0ldfm4"; 6669 }; 6670 meta.homepage = "https://github.com/nvchad/nvchad/"; 6671 }; ··· 6708 6709 nvim-autopairs = buildVimPlugin { 6710 pname = "nvim-autopairs"; 6711 + version = "2023-09-23"; 6712 src = fetchFromGitHub { 6713 owner = "windwp"; 6714 repo = "nvim-autopairs"; 6715 + rev = "de4f7138a68d5d5063170f2182fd27faf06b0b54"; 6716 + sha256 = "0ppip04x0z98aq7b0zpg1yyy2cgqr94jgf5dy2dr1wvgrjh9lxhd"; 6717 }; 6718 meta.homepage = "https://github.com/windwp/nvim-autopairs/"; 6719 }; ··· 6744 6745 nvim-bqf = buildVimPlugin { 6746 pname = "nvim-bqf"; 6747 + version = "2023-09-19"; 6748 src = fetchFromGitHub { 6749 owner = "kevinhwang91"; 6750 repo = "nvim-bqf"; 6751 + rev = "8784eebf34371049b641646d00232c2603215297"; 6752 + sha256 = "1vrp72kc1f1rkfdb9xnmd792l4h1j7vrnhf99l54pi700dnbjzcg"; 6753 }; 6754 meta.homepage = "https://github.com/kevinhwang91/nvim-bqf/"; 6755 }; ··· 6804 6805 nvim-cokeline = buildVimPlugin { 6806 pname = "nvim-cokeline"; 6807 + version = "2023-09-25"; 6808 src = fetchFromGitHub { 6809 owner = "willothy"; 6810 repo = "nvim-cokeline"; 6811 + rev = "52e050a319f37a5f752fe8f461db209ab03a3188"; 6812 + sha256 = "0i8h1a7m4q3rsxbsxqbzlyyk4yv77kr56lvfs94d1xj8wq7nqgp7"; 6813 }; 6814 meta.homepage = "https://github.com/willothy/nvim-cokeline/"; 6815 }; ··· 7032 7033 nvim-highlite = buildVimPlugin { 7034 pname = "nvim-highlite"; 7035 + version = "2023-09-28"; 7036 src = fetchFromGitHub { 7037 owner = "Iron-E"; 7038 repo = "nvim-highlite"; 7039 + rev = "c1a83ce4f3e12250ffa30a9aab79dad8d9b9fb95"; 7040 + sha256 = "0n49zyifb0ljm88b52gpb9808gzpplgwc1cmbjy4f87zgn4smqkv"; 7041 }; 7042 meta.homepage = "https://github.com/Iron-E/nvim-highlite/"; 7043 }; ··· 7068 7069 nvim-jdtls = buildVimPlugin { 7070 pname = "nvim-jdtls"; 7071 + version = "2023-09-19"; 7072 src = fetchFromGitHub { 7073 owner = "mfussenegger"; 7074 repo = "nvim-jdtls"; 7075 + rev = "3ca419c52a7c20a2565237db2c110ed68fc7e6f1"; 7076 + sha256 = "1jy5yklfc3fvajy5mqwfi4h6p5bxb71ar1hnck8k8hciggrijhrq"; 7077 }; 7078 meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/"; 7079 }; ··· 7139 7140 nvim-lilypond-suite = buildVimPlugin { 7141 pname = "nvim-lilypond-suite"; 7142 + version = "2023-09-27"; 7143 src = fetchFromGitHub { 7144 owner = "martineausimon"; 7145 repo = "nvim-lilypond-suite"; 7146 + rev = "ac99483249bfa202395e3abcfce7bd39288d93e7"; 7147 + sha256 = "11l0bbbaxxinm17j9aqw7an1nfd77pgmkmh3acdx5ppnk8d9141z"; 7148 }; 7149 meta.homepage = "https://github.com/martineausimon/nvim-lilypond-suite/"; 7150 }; 7151 7152 nvim-lint = buildVimPlugin { 7153 pname = "nvim-lint"; 7154 + version = "2023-09-21"; 7155 src = fetchFromGitHub { 7156 owner = "mfussenegger"; 7157 repo = "nvim-lint"; 7158 + rev = "67f74e630a84ecfa73a82783c487bdedd8cecdc3"; 7159 + sha256 = "1rmpyjbv7a4ipy9nndarp5xv0azkqpw3c51fjw6fpx0yhlk72slc"; 7160 }; 7161 meta.homepage = "https://github.com/mfussenegger/nvim-lint/"; 7162 }; ··· 7187 7188 nvim-lspconfig = buildVimPlugin { 7189 pname = "nvim-lspconfig"; 7190 + version = "2023-09-29"; 7191 src = fetchFromGitHub { 7192 owner = "neovim"; 7193 repo = "nvim-lspconfig"; 7194 + rev = "61b40df9c17943e43e7e698873caab0e7dbcdadc"; 7195 + sha256 = "1dwrns9i46p3b53dkbhs76gic7i1s49mvdc2ka31qpx3yqks10g1"; 7196 }; 7197 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 7198 }; ··· 7247 7248 nvim-metals = buildVimPlugin { 7249 pname = "nvim-metals"; 7250 + version = "2023-09-18"; 7251 src = fetchFromGitHub { 7252 owner = "scalameta"; 7253 repo = "nvim-metals"; 7254 + rev = "f41c14ae8500ceccb71e6695574b67881f0b5a93"; 7255 + sha256 = "177l4rl3in93qk0ncjalr0bj5jfiv5z5c1g6n0b7d8wvlc3j24cm"; 7256 }; 7257 meta.homepage = "https://github.com/scalameta/nvim-metals/"; 7258 }; ··· 7283 7284 nvim-navic = buildVimPlugin { 7285 pname = "nvim-navic"; 7286 + version = "2023-09-18"; 7287 src = fetchFromGitHub { 7288 owner = "smiteshp"; 7289 repo = "nvim-navic"; 7290 + rev = "0ffa7ffe6588f3417e680439872f5049e38a24db"; 7291 + sha256 = "04fd7gcs6hhc44pya1k8ds332hm1jpg44w3ri14g3r2850b8b02z"; 7292 }; 7293 meta.homepage = "https://github.com/smiteshp/nvim-navic/"; 7294 }; ··· 7319 7320 nvim-notify = buildVimPlugin { 7321 pname = "nvim-notify"; 7322 + version = "2023-09-28"; 7323 src = fetchFromGitHub { 7324 owner = "rcarriga"; 7325 repo = "nvim-notify"; 7326 + rev = "e4a2022f4fec2d5ebc79afa612f96d8b11c627b3"; 7327 + sha256 = "1a7s4y8xd1plcidnzs29rhqw7mfbj1q01bqffqjmimii9v6azmfn"; 7328 }; 7329 meta.homepage = "https://github.com/rcarriga/nvim-notify/"; 7330 }; ··· 7535 7536 nvim-tree-lua = buildVimPlugin { 7537 pname = "nvim-tree.lua"; 7538 + version = "2023-09-26"; 7539 src = fetchFromGitHub { 7540 owner = "nvim-tree"; 7541 repo = "nvim-tree.lua"; 7542 + rev = "934469b9b6df369e198fb3016969e56393b0dc07"; 7543 + sha256 = "1z2bwxqyzvniyqg5003b4azaakdh6dcwfssiakk7681fnngj2iqn"; 7544 }; 7545 meta.homepage = "https://github.com/nvim-tree/nvim-tree.lua/"; 7546 }; 7547 7548 nvim-treesitter = buildVimPlugin { 7549 pname = "nvim-treesitter"; 7550 + version = "2023-09-29"; 7551 src = fetchFromGitHub { 7552 owner = "nvim-treesitter"; 7553 repo = "nvim-treesitter"; 7554 + rev = "16ea2969ea0a5ba902fceece9b2db10c7c9ba2d6"; 7555 + sha256 = "0m1v1wiizqp7wfndjba6l52n3z4hkzsvq2imvgy7myqg091hj4hk"; 7556 }; 7557 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 7558 }; 7559 7560 nvim-treesitter-context = buildVimPlugin { 7561 pname = "nvim-treesitter-context"; 7562 + version = "2023-09-27"; 7563 src = fetchFromGitHub { 7564 owner = "nvim-treesitter"; 7565 repo = "nvim-treesitter-context"; 7566 + rev = "44d270e9d1647088de596a2e04fdc806a50cd838"; 7567 + sha256 = "0zkjgqsgcv956jf63jhdipb2ra1j5mfxw08nlz8ni4vccd9yw5qa"; 7568 }; 7569 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; 7570 }; 7571 7572 nvim-treesitter-endwise = buildVimPlugin { 7573 pname = "nvim-treesitter-endwise"; 7574 + version = "2023-09-23"; 7575 src = fetchFromGitHub { 7576 owner = "RRethy"; 7577 repo = "nvim-treesitter-endwise"; 7578 + rev = "4c344ffc8d54d7e1ba2cefaaa2c10ea93aa1cc2d"; 7579 + sha256 = "0320lz13zymw70wx7malkw4nkma3scz4kz35mq59f9p51dan6iky"; 7580 }; 7581 meta.homepage = "https://github.com/RRethy/nvim-treesitter-endwise/"; 7582 }; ··· 7678 7679 nvim-ufo = buildVimPlugin { 7680 pname = "nvim-ufo"; 7681 + version = "2023-09-22"; 7682 src = fetchFromGitHub { 7683 owner = "kevinhwang91"; 7684 repo = "nvim-ufo"; 7685 + rev = "6f2ccdf2da390d62f8f9e15fc5ddbcbd312e1e66"; 7686 + sha256 = "05k9f2zxk1kkzp8xzsyc6j5szvvd8znjim10sj27jc0rmg5qldam"; 7687 }; 7688 meta.homepage = "https://github.com/kevinhwang91/nvim-ufo/"; 7689 }; ··· 7702 7703 nvim-web-devicons = buildVimPlugin { 7704 pname = "nvim-web-devicons"; 7705 + version = "2023-09-24"; 7706 src = fetchFromGitHub { 7707 owner = "nvim-tree"; 7708 repo = "nvim-web-devicons"; 7709 + rev = "45d0237c427baba8cd05e0ab26d30e2ee58c2c82"; 7710 + sha256 = "0cbp2xv6gnjd1plc8psj0qgwxfrfqw7qg8jn1cgr1la563jjlnlk"; 7711 }; 7712 meta.homepage = "https://github.com/nvim-tree/nvim-web-devicons/"; 7713 }; ··· 7726 7727 nvim-window-picker = buildVimPlugin { 7728 pname = "nvim-window-picker"; 7729 + version = "2023-09-24"; 7730 src = fetchFromGitHub { 7731 owner = "s1n7ax"; 7732 repo = "nvim-window-picker"; 7733 + rev = "e7b6699fbd007bbe61dc444734b9bade445b2984"; 7734 + sha256 = "01l5d0bylgv1kg4wlq3n2rk656fzh0scy68l88nkbra7qqj9d5i2"; 7735 }; 7736 meta.homepage = "https://github.com/s1n7ax/nvim-window-picker/"; 7737 }; ··· 7810 7811 octo-nvim = buildVimPlugin { 7812 pname = "octo.nvim"; 7813 + version = "2023-09-26"; 7814 src = fetchFromGitHub { 7815 owner = "pwntester"; 7816 repo = "octo.nvim"; 7817 + rev = "04334f0602b351e4995f352b6fed3d6f91f64610"; 7818 + sha256 = "1sjig39rj9xli6nrf58xgvqbdnhrmz5zjdicn28pv7d67mydgvbw"; 7819 }; 7820 meta.homepage = "https://github.com/pwntester/octo.nvim/"; 7821 }; 7822 7823 oil-nvim = buildVimPlugin { 7824 pname = "oil.nvim"; 7825 + version = "2023-09-29"; 7826 src = fetchFromGitHub { 7827 owner = "stevearc"; 7828 repo = "oil.nvim"; 7829 + rev = "bfc5a4c48f4a53b95648e41d91e49b83fb03e919"; 7830 + sha256 = "0jgj24lrgr6jbvwln5lb3qx6b1kw8hxa0k09pqzrmpwzp6h6zmyc"; 7831 fetchSubmodules = true; 7832 }; 7833 meta.homepage = "https://github.com/stevearc/oil.nvim/"; ··· 7883 7884 onedarkpro-nvim = buildVimPlugin { 7885 pname = "onedarkpro.nvim"; 7886 + version = "2023-09-29"; 7887 src = fetchFromGitHub { 7888 owner = "olimorris"; 7889 repo = "onedarkpro.nvim"; 7890 + rev = "7c02b4eeb310173ef6d741e60200d72b76923eae"; 7891 + sha256 = "1vmix76dr7sv199nwmvmxxgp7cqysi77m79p4bgsx2mynmkdx4p4"; 7892 }; 7893 meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; 7894 }; ··· 7943 7944 openingh-nvim = buildVimPlugin { 7945 pname = "openingh.nvim"; 7946 + version = "2023-09-26"; 7947 src = fetchFromGitHub { 7948 owner = "Almo7aya"; 7949 repo = "openingh.nvim"; 7950 + rev = "cdca4f17dbc2ed85ea5e54c594eb57c4057d9290"; 7951 + sha256 = "04jx2pprk1072a06vanyml6bv4qh0hhfmjz145jjp69rn1pzqm8f"; 7952 }; 7953 meta.homepage = "https://github.com/Almo7aya/openingh.nvim/"; 7954 }; ··· 7967 7968 orgmode = buildVimPlugin { 7969 pname = "orgmode"; 7970 + version = "2023-09-27"; 7971 src = fetchFromGitHub { 7972 owner = "nvim-orgmode"; 7973 repo = "orgmode"; 7974 + rev = "6e40eec330afdcec051a2fb6d85b92d3a04b6dac"; 7975 + sha256 = "03yxbwj3xcbnbi622gfnq4hn9w1isq0rqwrvhi84mxnmpg934win"; 7976 }; 7977 meta.homepage = "https://github.com/nvim-orgmode/orgmode/"; 7978 }; ··· 7995 src = fetchFromGitHub { 7996 owner = "jmbuhr"; 7997 repo = "otter.nvim"; 7998 + rev = "2752dd199d73342f13a1bd599a99822505e2803f"; 7999 + sha256 = "00jmwd8la3cadhy2dzl3gzq8wbgn6xwjb9l35h1w1k161pl5p882"; 8000 }; 8001 meta.homepage = "https://github.com/jmbuhr/otter.nvim/"; 8002 }; 8003 8004 overseer-nvim = buildVimPlugin { 8005 pname = "overseer.nvim"; 8006 + version = "2023-09-26"; 8007 src = fetchFromGitHub { 8008 owner = "stevearc"; 8009 repo = "overseer.nvim"; 8010 + rev = "8065976876cea89d0b99ffef4d997b930296f0e8"; 8011 + sha256 = "1sk0pf90hib69nyjr5vfr3kqgy0jh400nix6d8yp8qvdw5y1aw4a"; 8012 fetchSubmodules = true; 8013 }; 8014 meta.homepage = "https://github.com/stevearc/overseer.nvim/"; ··· 8016 8017 oxocarbon-nvim = buildVimPlugin { 8018 pname = "oxocarbon.nvim"; 8019 + version = "2023-09-23"; 8020 src = fetchFromGitHub { 8021 owner = "nyoom-engineering"; 8022 repo = "oxocarbon.nvim"; 8023 + rev = "b47c0ecab3a4270815afb3b05e03423b04cca8f2"; 8024 + sha256 = "1hkjc7x5ma8pmz5vi93ygqmbdfammikpvjjxkw9axlh5wh8ys48y"; 8025 }; 8026 meta.homepage = "https://github.com/nyoom-engineering/oxocarbon.nvim/"; 8027 }; ··· 8365 8366 python-mode = buildVimPlugin { 8367 pname = "python-mode"; 8368 + version = "2023-09-23"; 8369 src = fetchFromGitHub { 8370 owner = "python-mode"; 8371 repo = "python-mode"; 8372 + rev = "e01c27e8c17b3af2b9df7f6fc5a8a44afc3ad020"; 8373 + sha256 = "0g2gcxax1h44rzyv0wfsz78w62cak9riynqh190gncqhzjzswdfp"; 8374 fetchSubmodules = true; 8375 }; 8376 meta.homepage = "https://github.com/python-mode/python-mode/"; ··· 8474 8475 rainbow-delimiters-nvim = buildVimPlugin { 8476 pname = "rainbow-delimiters.nvim"; 8477 + version = "2023-09-28"; 8478 src = fetchgit { 8479 url = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim"; 8480 + rev = "ece052dbcb2b3d2980f0f9881e41277929813644"; 8481 + sha256 = "05rc0mgn3jbp1aiac7531cidpc1s79qi1zhj2l7cz9353cfq0j47"; 8482 }; 8483 meta.homepage = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim"; 8484 }; ··· 8557 8558 refactoring-nvim = buildVimPlugin { 8559 pname = "refactoring.nvim"; 8560 + version = "2023-09-18"; 8561 src = fetchFromGitHub { 8562 owner = "theprimeagen"; 8563 repo = "refactoring.nvim"; 8564 + rev = "be6505be8bdd306646bb81399312c02927a60a51"; 8565 + sha256 = "1h4hbg5x80anr4imfnlvvmcyqr0jg3s0jkpgzhpzq1783b89sj9s"; 8566 }; 8567 meta.homepage = "https://github.com/theprimeagen/refactoring.nvim/"; 8568 }; ··· 8617 8618 rest-nvim = buildNeovimPlugin { 8619 pname = "rest.nvim"; 8620 + version = "2023-09-25"; 8621 src = fetchFromGitHub { 8622 owner = "rest-nvim"; 8623 repo = "rest.nvim"; 8624 + rev = "16c1c8d80a6a65c409be4342130a8a61a7497f98"; 8625 + sha256 = "13nrxchxca1xj5cdw7dy4r5xfgq251ym1aj3kdykn4gakqgs6mxz"; 8626 }; 8627 meta.homepage = "https://github.com/rest-nvim/rest.nvim/"; 8628 }; ··· 8881 8882 sg-nvim = buildVimPlugin { 8883 pname = "sg.nvim"; 8884 + version = "2023-09-27"; 8885 src = fetchFromGitHub { 8886 owner = "sourcegraph"; 8887 repo = "sg.nvim"; 8888 + rev = "b0b543285dfefd47eeae93f3f5c812c1dce26ff4"; 8889 + sha256 = "09sldl3858nlhm10xzbrd3nigf05ia34n2ml4mqrzmb0zkkzidn6"; 8890 }; 8891 meta.homepage = "https://github.com/sourcegraph/sg.nvim/"; 8892 }; ··· 9195 9196 srcery-vim = buildVimPlugin { 9197 pname = "srcery-vim"; 9198 + version = "2023-09-25"; 9199 src = fetchFromGitHub { 9200 owner = "srcery-colors"; 9201 repo = "srcery-vim"; 9202 + rev = "8ea4c4f5caf61ac4ab887fc53eabc916985db881"; 9203 + sha256 = "0z6i35gcf4qcy9cgsrg2bg2alh0sk6zxqvid8lgkmds4qgrvhxp3"; 9204 }; 9205 meta.homepage = "https://github.com/srcery-colors/srcery-vim/"; 9206 }; ··· 9436 9437 tabby-nvim = buildVimPlugin { 9438 pname = "tabby.nvim"; 9439 + version = "2023-09-21"; 9440 src = fetchFromGitHub { 9441 owner = "nanozuki"; 9442 repo = "tabby.nvim"; 9443 + rev = "9e537762cbb7647357eab22c61c7c5dda00138dd"; 9444 + sha256 = "0wznkhpd3wax8jqw6wa2802x649jv8ph89plz1qwc08ia47lwcfb"; 9445 }; 9446 meta.homepage = "https://github.com/nanozuki/tabby.nvim/"; 9447 }; ··· 9545 9546 tagbar = buildVimPlugin { 9547 pname = "tagbar"; 9548 + version = "2023-09-25"; 9549 src = fetchFromGitHub { 9550 owner = "preservim"; 9551 repo = "tagbar"; 9552 + rev = "5d6990e4fc5b3e3b88a3af90146f2561c4f6d828"; 9553 + sha256 = "08i5gx57hsj4840m1b85064077l3gbdiyxq04g6s1m1zpj0xq7zj"; 9554 }; 9555 meta.homepage = "https://github.com/preservim/tagbar/"; 9556 }; ··· 9593 9594 tcomment_vim = buildVimPlugin { 9595 pname = "tcomment_vim"; 9596 + version = "2023-09-22"; 9597 src = fetchFromGitHub { 9598 owner = "tomtom"; 9599 repo = "tcomment_vim"; 9600 + rev = "593c9a6e1d411e276aee3eb459bcdaabb21550e5"; 9601 + sha256 = "0hx20j02h753q9jmwhzbddr0bf0z5magc3ayrc3yw8sjvhnqvrhw"; 9602 }; 9603 meta.homepage = "https://github.com/tomtom/tcomment_vim/"; 9604 }; ··· 9666 9667 telescope-file-browser-nvim = buildVimPlugin { 9668 pname = "telescope-file-browser.nvim"; 9669 + version = "2023-09-23"; 9670 src = fetchFromGitHub { 9671 owner = "nvim-telescope"; 9672 repo = "telescope-file-browser.nvim"; 9673 + rev = "6e51d0cd6447cf2525412220ff0a2885eef9039c"; 9674 + sha256 = "1ksx2w2vaxnjyvj937la3fsiw7z0ary5qjnylxspw0zqp6d2ri9q"; 9675 }; 9676 meta.homepage = "https://github.com/nvim-telescope/telescope-file-browser.nvim/"; 9677 }; 9678 9679 telescope-frecency-nvim = buildVimPlugin { 9680 pname = "telescope-frecency.nvim"; 9681 + version = "2023-09-17"; 9682 src = fetchFromGitHub { 9683 owner = "nvim-telescope"; 9684 repo = "telescope-frecency.nvim"; 9685 + rev = "eaaabc90ed082b84a2e9b0ce4ab8c6753b7c50f9"; 9686 + sha256 = "1hmm956km88zns0w0wpk1yphxh0bjhxzwln7f9igiz7wgq0b10nr"; 9687 }; 9688 meta.homepage = "https://github.com/nvim-telescope/telescope-frecency.nvim/"; 9689 }; ··· 9908 9909 telescope-nvim = buildNeovimPlugin { 9910 pname = "telescope.nvim"; 9911 + version = "2023-09-29"; 9912 src = fetchFromGitHub { 9913 owner = "nvim-telescope"; 9914 repo = "telescope.nvim"; 9915 + rev = "ffe90fac32122f401429b14d383137bd92a685d0"; 9916 + sha256 = "1wf2kq3pv98fzy12hv19jg80r9phr96j2x5qvzbqfagglc1zb3jf"; 9917 }; 9918 meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 9919 }; 9920 9921 telescope_hoogle = buildVimPlugin { 9922 pname = "telescope_hoogle"; 9923 + version = "2023-09-20"; 9924 src = fetchFromGitHub { 9925 owner = "luc-tielen"; 9926 repo = "telescope_hoogle"; 9927 + rev = "5c2ae51bcf905a7101134a597e6f7be2dc05f975"; 9928 + sha256 = "0nmzpyh9sdbvxf0hzvga748i4wnd0l6jmlwp8bmx84zazp93c667"; 9929 }; 9930 meta.homepage = "https://github.com/luc-tielen/telescope_hoogle/"; 9931 }; ··· 10149 10150 toggleterm-nvim = buildVimPlugin { 10151 pname = "toggleterm.nvim"; 10152 + version = "2023-09-25"; 10153 src = fetchFromGitHub { 10154 owner = "akinsho"; 10155 repo = "toggleterm.nvim"; 10156 + rev = "61e8ad370d4da5d84c77e31671027bc094ac06ca"; 10157 + sha256 = "0cwqlaqvbnw4ncm717v052mzb943jcynrfpx38c8aspzjqybdcpj"; 10158 }; 10159 meta.homepage = "https://github.com/akinsho/toggleterm.nvim/"; 10160 }; 10161 10162 tokyonight-nvim = buildVimPlugin { 10163 pname = "tokyonight.nvim"; 10164 + version = "2023-09-28"; 10165 src = fetchFromGitHub { 10166 owner = "folke"; 10167 repo = "tokyonight.nvim"; 10168 + rev = "e89caa3ad6d8da9d0dd981ec74a82c55adc61ffd"; 10169 + sha256 = "11r0vd7yzmlim6r48nby0zm508fxfcmhcm7fz7alhwb480h7s22a"; 10170 }; 10171 meta.homepage = "https://github.com/folke/tokyonight.nvim/"; 10172 }; ··· 10197 10198 treesj = buildVimPlugin { 10199 pname = "treesj"; 10200 + version = "2023-09-28"; 10201 src = fetchFromGitHub { 10202 owner = "Wansmer"; 10203 repo = "treesj"; 10204 + rev = "81d0ae51b84143e228d27b6cf79d09012d2021cb"; 10205 + sha256 = "0pk3zvz982gfdfwz4a1c8zr9ilqsip42l8bfc0vmnd7gc1r096w8"; 10206 }; 10207 meta.homepage = "https://github.com/Wansmer/treesj/"; 10208 }; ··· 10281 10282 twilight-nvim = buildVimPlugin { 10283 pname = "twilight.nvim"; 10284 + version = "2023-09-25"; 10285 src = fetchFromGitHub { 10286 owner = "folke"; 10287 repo = "twilight.nvim"; 10288 + rev = "8b7b50c0cb2dc781b2f4262a5ddd57571556d1e4"; 10289 + sha256 = "0j3vvj1hdsxj36pi4fnfcnj34hk26igicnvzk6xch4rwjlakqlaq"; 10290 }; 10291 meta.homepage = "https://github.com/folke/twilight.nvim/"; 10292 }; ··· 10317 10318 typst-vim = buildVimPlugin { 10319 pname = "typst.vim"; 10320 + version = "2023-09-19"; 10321 src = fetchFromGitHub { 10322 owner = "kaarmu"; 10323 repo = "typst.vim"; 10324 + rev = "65f9e78c11829a643d1539f3481c0ff875c83603"; 10325 + sha256 = "1q5v37l4awz5pm8cqvbvvwjizf45m7nqnxqv0inxzr70g9gqp7qv"; 10326 }; 10327 meta.homepage = "https://github.com/kaarmu/typst.vim/"; 10328 }; 10329 10330 ultisnips = buildVimPlugin { 10331 pname = "ultisnips"; 10332 + version = "2023-09-25"; 10333 src = fetchFromGitHub { 10334 owner = "SirVer"; 10335 repo = "ultisnips"; 10336 + rev = "f6d1501b630cb783b0af8507c5588328f826d40f"; 10337 + sha256 = "0h0rcqrfk4r48phlsb8nhvxb89vm9820lhbmkqvk1bqkjblsv279"; 10338 }; 10339 meta.homepage = "https://github.com/SirVer/ultisnips/"; 10340 }; ··· 10353 10354 unicode-vim = buildVimPlugin { 10355 pname = "unicode.vim"; 10356 + version = "2023-09-20"; 10357 src = fetchFromGitHub { 10358 owner = "chrisbra"; 10359 repo = "unicode.vim"; 10360 + rev = "bc20d0fb3331a7b41708388c56bb8221c2104da7"; 10361 + sha256 = "1nrx791gj66sky9bb039n7hwkvcic7wr1nrrb1vrx1sgqmwfpy6f"; 10362 }; 10363 meta.homepage = "https://github.com/chrisbra/unicode.vim/"; 10364 }; 10365 10366 unison = buildVimPlugin { 10367 pname = "unison"; 10368 + version = "2023-09-27"; 10369 src = fetchFromGitHub { 10370 owner = "unisonweb"; 10371 repo = "unison"; 10372 + rev = "58bbcb098cc57fc876c33a7ded70df41a226a2c3"; 10373 + sha256 = "0nlggvc0nq6033jvb9p5kvczqdwbgdpk0dcf79072pih4mqxnfw2"; 10374 }; 10375 meta.homepage = "https://github.com/unisonweb/unison/"; 10376 }; ··· 10389 10390 urlview-nvim = buildVimPlugin { 10391 pname = "urlview.nvim"; 10392 + version = "2023-09-19"; 10393 src = fetchFromGitHub { 10394 owner = "axieax"; 10395 repo = "urlview.nvim"; 10396 + rev = "bdbdf1e020e283551f003e71b0004096c746ef57"; 10397 + sha256 = "1bf226s400vyjffr6zqx9kr52qznzcgx1jnh356vfx3fjxsq81nl"; 10398 }; 10399 meta.homepage = "https://github.com/axieax/urlview.nvim/"; 10400 }; ··· 10545 10546 vim-abolish = buildVimPlugin { 10547 pname = "vim-abolish"; 10548 + version = "2023-09-29"; 10549 src = fetchFromGitHub { 10550 owner = "tpope"; 10551 repo = "vim-abolish"; 10552 + rev = "dcbfe065297d31823561ba787f51056c147aa682"; 10553 + sha256 = "1yvpk0cnsx1b1q2wp52fv4mj71w8ssz4dcbbdix65m8qna6d0m9h"; 10554 }; 10555 meta.homepage = "https://github.com/tpope/vim-abolish/"; 10556 }; ··· 10905 10906 vim-argwrap = buildVimPlugin { 10907 pname = "vim-argwrap"; 10908 + version = "2023-09-23"; 10909 src = fetchFromGitHub { 10910 owner = "FooSoft"; 10911 repo = "vim-argwrap"; 10912 + rev = "b532cb6805864da4cfcfe0bb6a1ced61e291be02"; 10913 + sha256 = "1z51vrh49260aydz135mmq3k8912k8svbg6l4n83ghfjjzdlp5q0"; 10914 }; 10915 meta.homepage = "https://github.com/FooSoft/vim-argwrap/"; 10916 }; ··· 11541 11542 vim-dadbod-ui = buildVimPlugin { 11543 pname = "vim-dadbod-ui"; 11544 + version = "2023-09-29"; 11545 src = fetchFromGitHub { 11546 owner = "kristijanhusak"; 11547 repo = "vim-dadbod-ui"; 11548 + rev = "95fd22469507e86b78aa55d868c14108adee2881"; 11549 + sha256 = "049bqzh61rj3xril9mxb8h75jr074126pgvq65c90h4rm9ddk4ql"; 11550 }; 11551 meta.homepage = "https://github.com/kristijanhusak/vim-dadbod-ui/"; 11552 }; ··· 11985 11986 vim-flake8 = buildVimPlugin { 11987 pname = "vim-flake8"; 11988 + version = "2023-09-20"; 11989 src = fetchFromGitHub { 11990 owner = "nvie"; 11991 repo = "vim-flake8"; 11992 + rev = "fe47074aa4228b460ebc0d4b159345f886babbd9"; 11993 + sha256 = "1zb88dsb1m29cav42i95xz1h0f8zpx5p1snrlm7769fqx9gdyzcq"; 11994 }; 11995 meta.homepage = "https://github.com/nvie/vim-flake8/"; 11996 }; ··· 12081 12082 vim-fugitive = buildVimPlugin { 12083 pname = "vim-fugitive"; 12084 + version = "2023-09-18"; 12085 src = fetchFromGitHub { 12086 owner = "tpope"; 12087 repo = "vim-fugitive"; 12088 + rev = "99db68d9b3304580bd383da7aaee05c7a954a344"; 12089 + sha256 = "04c5zip3rll58zswjmns42g4wl69s7gbq7qja4w8q4p7phgb5l5w"; 12090 }; 12091 meta.homepage = "https://github.com/tpope/vim-fugitive/"; 12092 }; ··· 12550 12551 vim-illuminate = buildVimPlugin { 12552 pname = "vim-illuminate"; 12553 + version = "2023-09-26"; 12554 src = fetchFromGitHub { 12555 owner = "RRethy"; 12556 repo = "vim-illuminate"; 12557 + rev = "1b5d70332a51a1de05f281069851865a2bb1e6d7"; 12558 + sha256 = "0dbbak53d5hi8jkp0wxcb3x6kysdi7ry2w1k9n0lj64qkmp5afnb"; 12559 }; 12560 meta.homepage = "https://github.com/RRethy/vim-illuminate/"; 12561 }; ··· 12851 12852 vim-latex-live-preview = buildVimPlugin { 12853 pname = "vim-latex-live-preview"; 12854 + version = "2023-09-25"; 12855 src = fetchFromGitHub { 12856 owner = "xuhdev"; 12857 repo = "vim-latex-live-preview"; 12858 + rev = "e1906cd4930a58ebaa5eb446436df23522eafb51"; 12859 + sha256 = "1adfyk96prwbf8dmznnfqvz27jxq0fpjygdhbrcc8b2i93i2dia2"; 12860 }; 12861 meta.homepage = "https://github.com/xuhdev/vim-latex-live-preview/"; 12862 }; ··· 13067 13068 vim-lsp-settings = buildVimPlugin { 13069 pname = "vim-lsp-settings"; 13070 + version = "2023-09-17"; 13071 src = fetchFromGitHub { 13072 owner = "mattn"; 13073 repo = "vim-lsp-settings"; 13074 + rev = "7613a3f702ae7ff2794b659a9769494203f5cb67"; 13075 + sha256 = "0fa56dn9jmqz0hwd2jjc9g4j0rqyw5d5v64vzs8lq6r52fvzcm6j"; 13076 }; 13077 meta.homepage = "https://github.com/mattn/vim-lsp-settings/"; 13078 }; ··· 13151 13152 vim-markdown = buildVimPlugin { 13153 pname = "vim-markdown"; 13154 + version = "2023-09-20"; 13155 src = fetchFromGitHub { 13156 owner = "preservim"; 13157 repo = "vim-markdown"; 13158 + rev = "4e9b4deda11d05a157ab34e97f76089669b5b7af"; 13159 + sha256 = "027i9y3f0dh6m3fw4fr7jd3pichbs9004c5hqm4i2fz82vb35smm"; 13160 }; 13161 meta.homepage = "https://github.com/preservim/vim-markdown/"; 13162 }; ··· 13416 13417 vim-nickel = buildVimPlugin { 13418 pname = "vim-nickel"; 13419 + version = "2023-09-26"; 13420 src = fetchFromGitHub { 13421 owner = "nickel-lang"; 13422 repo = "vim-nickel"; 13423 + rev = "f22898d88affc0958453b42e1147ba076637e0ed"; 13424 + sha256 = "1yczwjs3svan4hmsmb3lzn3i2n50qfkmkncqyrvsy5qyrlv19gy1"; 13425 }; 13426 meta.homepage = "https://github.com/nickel-lang/vim-nickel/"; 13427 }; ··· 13858 meta.homepage = "https://github.com/sheerun/vim-polyglot/"; 13859 }; 13860 13861 vim-poweryank = buildVimPlugin { 13862 pname = "vim-poweryank"; 13863 version = "2017-08-13"; ··· 14376 14377 vim-slime = buildVimPlugin { 14378 pname = "vim-slime"; 14379 + version = "2023-09-29"; 14380 src = fetchFromGitHub { 14381 owner = "jpalardy"; 14382 repo = "vim-slime"; 14383 + rev = "3c523dd9d12f96703d07fa35e75d1afe45eecd96"; 14384 + sha256 = "0j9db2lvlzizhxf5arg3rfb1cxdsnqa3f8ri7afpl9n2zsa5prp0"; 14385 }; 14386 meta.homepage = "https://github.com/jpalardy/vim-slime/"; 14387 }; ··· 14556 14557 vim-startify = buildVimPlugin { 14558 pname = "vim-startify"; 14559 + version = "2023-09-20"; 14560 src = fetchFromGitHub { 14561 owner = "mhinz"; 14562 repo = "vim-startify"; 14563 + rev = "4e089dffdad46f3f5593f34362d530e8fe823dcf"; 14564 + sha256 = "1ycqfqnmalqzrx1yy9a1fc2p0w922x4sqv2222bi9xjzmh77z4sv"; 14565 }; 14566 meta.homepage = "https://github.com/mhinz/vim-startify/"; 14567 }; ··· 14905 14906 vim-tmux-navigator = buildVimPlugin { 14907 pname = "vim-tmux-navigator"; 14908 + version = "2023-09-16"; 14909 src = fetchFromGitHub { 14910 owner = "christoomey"; 14911 repo = "vim-tmux-navigator"; 14912 + rev = "7db70e08ea03b3e4d91f63713d76134512e28d7e"; 14913 + sha256 = "05mz1lpc0akanxf7pcrlwp08v84x69ah6042cc2pzqsjj5l24a64"; 14914 }; 14915 meta.homepage = "https://github.com/christoomey/vim-tmux-navigator/"; 14916 }; ··· 15493 15494 vimspector = buildVimPlugin { 15495 pname = "vimspector"; 15496 + version = "2023-09-25"; 15497 src = fetchFromGitHub { 15498 owner = "puremourning"; 15499 repo = "vimspector"; 15500 + rev = "162a176f217616bac51ab1eb3b018b6e15b02e3a"; 15501 + sha256 = "1afnmrh9vp1zxsyn6w81pqmsnqd49vvipd80hsy8pxpzj4lpca9n"; 15502 fetchSubmodules = true; 15503 }; 15504 meta.homepage = "https://github.com/puremourning/vimspector/"; ··· 15506 15507 vimtex = buildVimPlugin { 15508 pname = "vimtex"; 15509 + version = "2023-09-28"; 15510 src = fetchFromGitHub { 15511 owner = "lervag"; 15512 repo = "vimtex"; 15513 + rev = "7d453a61b0256337f341a1195ca9eb3f3890a7df"; 15514 + sha256 = "0yk9zmcyl3mbfr5m1vs9w593irc78a9xwsn048qf7bpkwwmp1b0h"; 15515 }; 15516 meta.homepage = "https://github.com/lervag/vimtex/"; 15517 }; ··· 15662 15663 wiki-vim = buildVimPlugin { 15664 pname = "wiki.vim"; 15665 + version = "2023-09-25"; 15666 src = fetchFromGitHub { 15667 owner = "lervag"; 15668 repo = "wiki.vim"; 15669 + rev = "65b67f3669a0db078dab2750d3c51c680ee14df1"; 15670 + sha256 = "1j6bkk2gqmdaszs6q97yxjqnp3akl1wrlbvs6r31pz0faaswaqb8"; 15671 }; 15672 meta.homepage = "https://github.com/lervag/wiki.vim/"; 15673 }; ··· 15770 15771 wrapping-nvim = buildVimPlugin { 15772 pname = "wrapping.nvim"; 15773 + version = "2023-09-23"; 15774 src = fetchFromGitHub { 15775 owner = "andrewferrier"; 15776 repo = "wrapping.nvim"; 15777 + rev = "e1ce68aae5ea729fc20e5bc17fb569314f76b9bb"; 15778 + sha256 = "1wsvy0j3zgd34ssbnajih8sx12666v0yywp7vr6bijz0hc4mlihs"; 15779 }; 15780 meta.homepage = "https://github.com/andrewferrier/wrapping.nvim/"; 15781 }; ··· 15915 15916 zig-vim = buildVimPlugin { 15917 pname = "zig.vim"; 15918 + version = "2023-09-27"; 15919 src = fetchFromGitHub { 15920 owner = "ziglang"; 15921 repo = "zig.vim"; 15922 + rev = "a34fb9850a56bb1f1e62bb5cfd0641c8baaeb3f9"; 15923 + sha256 = "0zgd892b8z8blbs7z29qwwkvp43633iri9jf5rin9bgicj412cg9"; 15924 }; 15925 meta.homepage = "https://github.com/ziglang/zig.vim/"; 15926 }; ··· 15963 15964 catppuccin-nvim = buildVimPlugin { 15965 pname = "catppuccin-nvim"; 15966 + version = "2023-09-29"; 15967 src = fetchFromGitHub { 15968 owner = "catppuccin"; 15969 repo = "nvim"; 15970 + rev = "18267654c665310c665d3b7c6bc43d5f5ea5e410"; 15971 + sha256 = "0gncnwp8h64z33g97ra9vaad5lfknfn3w87p7axhbjw6fdsy99ii"; 15972 }; 15973 meta.homepage = "https://github.com/catppuccin/nvim/"; 15974 }; ··· 16011 16012 gruvbox-community = buildVimPlugin { 16013 pname = "gruvbox-community"; 16014 + version = "2023-09-19"; 16015 src = fetchFromGitHub { 16016 owner = "gruvbox-community"; 16017 repo = "gruvbox"; 16018 + rev = "86c767ff91e2518da44ba8c78b3bc6c979cf5403"; 16019 + sha256 = "1map59hiin7qwwyliqxqwq3v64hskn4xpxisnfpj7ci56c9viby8"; 16020 }; 16021 meta.homepage = "https://github.com/gruvbox-community/gruvbox/"; 16022 }; ··· 16035 16036 nightfly = buildVimPlugin { 16037 pname = "nightfly"; 16038 + version = "2023-09-29"; 16039 src = fetchFromGitHub { 16040 owner = "bluz71"; 16041 repo = "vim-nightfly-colors"; 16042 + rev = "28108adbd8674fe2788aa918c4a520a355654be3"; 16043 + sha256 = "1r82v8pzih9bp5bkad58q3w8r302l26id3471470sab7808cv8a8"; 16044 }; 16045 meta.homepage = "https://github.com/bluz71/vim-nightfly-colors/"; 16046 }; ··· 16143 16144 vim-docbk-snippets = buildVimPlugin { 16145 pname = "vim-docbk-snippets"; 16146 + version = "2023-09-29"; 16147 src = fetchFromGitHub { 16148 owner = "jhradilek"; 16149 repo = "vim-snippets"; 16150 + rev = "73aa6c7a3dcd9ac452271fbd4f8a2bdf66a7513e"; 16151 + sha256 = "1wpn6gfw1r89232d779lz8wy19asrribindlcsaikrsqvml3a0hr"; 16152 }; 16153 meta.homepage = "https://github.com/jhradilek/vim-snippets/"; 16154 };
+117 -59
pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix
··· 16 }; 17 agda = buildGrammar { 18 language = "agda"; 19 - version = "0.0.0+rev=80ea622"; 20 src = fetchFromGitHub { 21 - owner = "AusCyberman"; 22 repo = "tree-sitter-agda"; 23 - rev = "80ea622cf952a0059e168e5c92a798b2f1925652"; 24 - hash = "sha256-D63jvITL2RA8yg/TBSi6GsOxwLKzSHibbm3hwIKzesU="; 25 }; 26 - meta.homepage = "https://github.com/AusCyberman/tree-sitter-agda"; 27 }; 28 arduino = buildGrammar { 29 language = "arduino"; ··· 49 }; 50 awk = buildGrammar { 51 language = "awk"; 52 - version = "0.0.0+rev=2444262"; 53 src = fetchFromGitHub { 54 owner = "Beaglefoot"; 55 repo = "tree-sitter-awk"; 56 - rev = "244426241376b08d9531616290d657106ec8f7ff"; 57 - hash = "sha256-rNQxGMgK9O1wpi1Rdhz/3I210w92AIPAJzEf0v/ICz8="; 58 }; 59 meta.homepage = "https://github.com/Beaglefoot/tree-sitter-awk"; 60 }; 61 bash = buildGrammar { 62 language = "bash"; 63 - version = "0.0.0+rev=bdcd56c"; 64 src = fetchFromGitHub { 65 owner = "tree-sitter"; 66 repo = "tree-sitter-bash"; 67 - rev = "bdcd56c5a3896f7bbb7684e223c43d9f24380351"; 68 - hash = "sha256-zkhCk19kd/KiqYTamFxui7KDE9d+P9pLjc1KVTvYPhI="; 69 }; 70 meta.homepage = "https://github.com/tree-sitter/tree-sitter-bash"; 71 }; ··· 115 }; 116 bitbake = buildGrammar { 117 language = "bitbake"; 118 - version = "0.0.0+rev=ed92abd"; 119 src = fetchFromGitHub { 120 owner = "amaanq"; 121 repo = "tree-sitter-bitbake"; 122 - rev = "ed92abd7b67ab66a6fa3a747a0157f01d2e467d8"; 123 - hash = "sha256-HfWUDYiBCmtlu5fFX287BSDHyCiD7gqIVFDTxH5APAE="; 124 }; 125 meta.homepage = "https://github.com/amaanq/tree-sitter-bitbake"; 126 }; ··· 303 }; 304 cuda = buildGrammar { 305 language = "cuda"; 306 - version = "0.0.0+rev=f00c914"; 307 src = fetchFromGitHub { 308 owner = "theHamsta"; 309 repo = "tree-sitter-cuda"; 310 - rev = "f00c91430124797e798cbf28e09075d7d192938a"; 311 - hash = "sha256-9Jx6O4yfIrbCLTEPgpoZZ+3yxhi2r0MwrbiHCUexa60="; 312 }; 313 meta.homepage = "https://github.com/theHamsta/tree-sitter-cuda"; 314 }; ··· 381 }; 382 dockerfile = buildGrammar { 383 language = "dockerfile"; 384 - version = "0.0.0+rev=c0a9d69"; 385 src = fetchFromGitHub { 386 owner = "camdencheek"; 387 repo = "tree-sitter-dockerfile"; 388 - rev = "c0a9d694d9bf8ab79a919f5f9c7bc9c169caf321"; 389 - hash = "sha256-dNrLw9E3I3LqQUqYx+YUBZTlSoAp/qoOf6+RL7Lv3ew="; 390 }; 391 meta.homepage = "https://github.com/camdencheek/tree-sitter-dockerfile"; 392 }; ··· 515 }; 516 erlang = buildGrammar { 517 language = "erlang"; 518 - version = "0.0.0+rev=7aa24fe"; 519 src = fetchFromGitHub { 520 owner = "WhatsApp"; 521 repo = "tree-sitter-erlang"; 522 - rev = "7aa24fe8616072fc1a659f72d5b60bd8c01fb5cc"; 523 - hash = "sha256-7rhwMBq5u5bVjyCE4j3f5tzY+9jL80Xd5hgkJjlqSr8="; 524 }; 525 meta.homepage = "https://github.com/WhatsApp/tree-sitter-erlang"; 526 }; ··· 636 }; 637 git_config = buildGrammar { 638 language = "git_config"; 639 - version = "0.0.0+rev=a01b498"; 640 src = fetchFromGitHub { 641 owner = "the-mikedavis"; 642 repo = "tree-sitter-git-config"; 643 - rev = "a01b498b25003d97a5f93b0da0e6f28307454347"; 644 - hash = "sha256-9gLmao4zmDYj7uxrngjMa4AG9yIkKyptgaCBcL4GZYA="; 645 }; 646 meta.homepage = "https://github.com/the-mikedavis/tree-sitter-git-config"; 647 }; ··· 691 }; 692 gleam = buildGrammar { 693 language = "gleam"; 694 - version = "0.0.0+rev=297031d"; 695 src = fetchFromGitHub { 696 owner = "gleam-lang"; 697 repo = "tree-sitter-gleam"; 698 - rev = "297031dce60e07acf90345d62777623469e46027"; 699 - hash = "sha256-/LieoIseeZwQttCHnAOfwWRpCmBnUdWTcGwSOyjHexg="; 700 }; 701 meta.homepage = "https://github.com/gleam-lang/tree-sitter-gleam"; 702 }; ··· 713 }; 714 glsl = buildGrammar { 715 language = "glsl"; 716 - version = "0.0.0+rev=64e786e"; 717 src = fetchFromGitHub { 718 owner = "theHamsta"; 719 repo = "tree-sitter-glsl"; 720 - rev = "64e786e36398b1e18ccfdbfd964d922a67392ebc"; 721 - hash = "sha256-6G5j3xfkbcFjAT6OWQyTgeryJEW2SSnyOhedF0QPmSw="; 722 }; 723 meta.homepage = "https://github.com/theHamsta/tree-sitter-glsl"; 724 }; ··· 834 }; 835 haskell = buildGrammar { 836 language = "haskell"; 837 - version = "0.0.0+rev=9970682"; 838 src = fetchFromGitHub { 839 owner = "tree-sitter"; 840 repo = "tree-sitter-haskell"; 841 - rev = "99706824b92f162d4e0f47c7e930bbccb367276e"; 842 - hash = "sha256-JJvXkunDFRjWoXipxl1o2P+lRIDa4kw/Ys3LUu3piIY="; 843 }; 844 meta.homepage = "https://github.com/tree-sitter/tree-sitter-haskell"; 845 }; 846 haskell_persistent = buildGrammar { 847 language = "haskell_persistent"; 848 - version = "0.0.0+rev=58a6ccf"; 849 src = fetchFromGitHub { 850 owner = "MercuryTechnologies"; 851 repo = "tree-sitter-haskell-persistent"; 852 - rev = "58a6ccfd56d9f1de8fb9f77e6c42151f8f0d0f3d"; 853 - hash = "sha256-p4Anm/xeG/d7nYBPDABcdDih/a+0rMjwtVUJru7m9QY="; 854 }; 855 meta.homepage = "https://github.com/MercuryTechnologies/tree-sitter-haskell-persistent"; 856 }; ··· 1186 }; 1187 luadoc = buildGrammar { 1188 language = "luadoc"; 1189 - version = "0.0.0+rev=8981072"; 1190 src = fetchFromGitHub { 1191 owner = "amaanq"; 1192 repo = "tree-sitter-luadoc"; 1193 - rev = "8981072676ec8bd74def6134be4f883655f7c082"; 1194 - hash = "sha256-HRHZDX0/duvQza0SJwCI/uKO0d12VYtvpuYB+KCkfow="; 1195 }; 1196 meta.homepage = "https://github.com/amaanq/tree-sitter-luadoc"; 1197 }; ··· 1489 }; 1490 php = buildGrammar { 1491 language = "php"; 1492 - version = "0.0.0+rev=ce2c73a"; 1493 src = fetchFromGitHub { 1494 owner = "tree-sitter"; 1495 repo = "tree-sitter-php"; 1496 - rev = "ce2c73a8d84b5648e8792698dc9fd955e5f6a906"; 1497 - hash = "sha256-HZOIz9KiZ13aqeQtCeQln56RRRPUSgT7ulPJs54fzJc="; 1498 }; 1499 meta.homepage = "https://github.com/tree-sitter/tree-sitter-php"; 1500 }; ··· 1644 }; 1645 python = buildGrammar { 1646 language = "python"; 1647 - version = "0.0.0+rev=c01fb4e"; 1648 src = fetchFromGitHub { 1649 owner = "tree-sitter"; 1650 repo = "tree-sitter-python"; 1651 - rev = "c01fb4e38587e959b9058b8cd34b9e6a3068c827"; 1652 - hash = "sha256-cV/QwvEQkIQcgo0Pm+3pUH2LhpYOPsuWMgjXMa8dv+s="; 1653 }; 1654 meta.homepage = "https://github.com/tree-sitter/tree-sitter-python"; 1655 }; ··· 1831 }; 1832 rust = buildGrammar { 1833 language = "rust"; 1834 - version = "0.0.0+rev=17a6b15"; 1835 src = fetchFromGitHub { 1836 owner = "tree-sitter"; 1837 repo = "tree-sitter-rust"; 1838 - rev = "17a6b15562b09db1f27b8f5f26f17edbb2aac097"; 1839 - hash = "sha256-seWoMuA87ZWCq3mUXopVeDCcTxX/Bh+B4PFLVa0CBQA="; 1840 }; 1841 meta.homepage = "https://github.com/tree-sitter/tree-sitter-rust"; 1842 }; 1843 scala = buildGrammar { 1844 language = "scala"; 1845 - version = "0.0.0+rev=70afdd5"; 1846 src = fetchFromGitHub { 1847 owner = "tree-sitter"; 1848 repo = "tree-sitter-scala"; 1849 - rev = "70afdd5632d57dd63a960972ab25945e353a52f6"; 1850 - hash = "sha256-bi0Lqo/Zs2Uaz1efuKAARpEDg5Hm59oUe7eSXgL1Wow="; 1851 }; 1852 meta.homepage = "https://github.com/tree-sitter/tree-sitter-scala"; 1853 }; ··· 1940 }; 1941 meta.homepage = "https://github.com/JoranHonig/tree-sitter-solidity"; 1942 }; 1943 sparql = buildGrammar { 1944 language = "sparql"; 1945 version = "0.0.0+rev=05f949d"; ··· 1973 }; 1974 meta.homepage = "https://github.com/amaanq/tree-sitter-squirrel"; 1975 }; 1976 starlark = buildGrammar { 1977 language = "starlark"; 1978 version = "0.0.0+rev=c45ce2b"; ··· 2064 }; 2065 t32 = buildGrammar { 2066 language = "t32"; 2067 - version = "0.0.0+rev=5e6ce99"; 2068 src = fetchFromGitLab { 2069 owner = "xasc"; 2070 repo = "tree-sitter-t32"; 2071 - rev = "5e6ce99611b2fef9b4d812e43898b176185c61ed"; 2072 - hash = "sha256-3gRMvJh8vVr7E2b0/RDGqjrlhzjZciWgOYbE+e3dkeE="; 2073 }; 2074 meta.homepage = "https://gitlab.com/xasc/tree-sitter-t32.git"; 2075 }; ··· 2107 }; 2108 location = "dialects/terraform"; 2109 meta.homepage = "https://github.com/MichaHoffmann/tree-sitter-hcl"; 2110 }; 2111 thrift = buildGrammar { 2112 language = "thrift"; ··· 2368 }; 2369 wing = buildGrammar { 2370 language = "wing"; 2371 - version = "0.0.0+rev=430ec75"; 2372 src = fetchFromGitHub { 2373 owner = "winglang"; 2374 repo = "wing"; 2375 - rev = "430ec7527a3eee00719ce9735854177629410f63"; 2376 - hash = "sha256-vfmpob+2yh/Lnhc6b+Lz0nB7bwk2tMbbIFs1iASj19M="; 2377 }; 2378 location = "libs/tree-sitter-wing"; 2379 generate = true;
··· 16 }; 17 agda = buildGrammar { 18 language = "agda"; 19 + version = "0.0.0+rev=c21c3a0"; 20 src = fetchFromGitHub { 21 + owner = "tree-sitter"; 22 repo = "tree-sitter-agda"; 23 + rev = "c21c3a0f996363ed17b8ac99d827fe5a4821f217"; 24 + hash = "sha256-EV0J38zcfSHaBqzu2Rcut1l20FpB+xneFRaizEX1DXg="; 25 }; 26 + meta.homepage = "https://github.com/tree-sitter/tree-sitter-agda"; 27 + }; 28 + apex = buildGrammar { 29 + language = "apex"; 30 + version = "0.0.0+rev=e63bcdc"; 31 + src = fetchFromGitHub { 32 + owner = "aheber"; 33 + repo = "tree-sitter-sfapex"; 34 + rev = "e63bcdcc26ae808b3fe79dfb8fa61bebdb95bda4"; 35 + hash = "sha256-7kfg8oqi39sExBuuKxmUgg5m9g22TW94rccas/7/5zE="; 36 + }; 37 + location = "apex"; 38 + meta.homepage = "https://github.com/aheber/tree-sitter-sfapex"; 39 }; 40 arduino = buildGrammar { 41 language = "arduino"; ··· 61 }; 62 awk = buildGrammar { 63 language = "awk"; 64 + version = "0.0.0+rev=374da90"; 65 src = fetchFromGitHub { 66 owner = "Beaglefoot"; 67 repo = "tree-sitter-awk"; 68 + rev = "374da90decaa60fea7a22490a77440ece6d4161d"; 69 + hash = "sha256-gbA6VyhPh2lH9FqYKj9sL8uhuMizCmV0U42s5gvk7AE="; 70 }; 71 meta.homepage = "https://github.com/Beaglefoot/tree-sitter-awk"; 72 }; 73 bash = buildGrammar { 74 language = "bash"; 75 + version = "0.0.0+rev=fd4e40d"; 76 src = fetchFromGitHub { 77 owner = "tree-sitter"; 78 repo = "tree-sitter-bash"; 79 + rev = "fd4e40dab883d6456da4d847de8321aee9c80805"; 80 + hash = "sha256-dJUJGrpBWBLjcqiqxCnJ/MENwa2+uxAmQD71aYloxsw="; 81 }; 82 meta.homepage = "https://github.com/tree-sitter/tree-sitter-bash"; 83 }; ··· 127 }; 128 bitbake = buildGrammar { 129 language = "bitbake"; 130 + version = "0.0.0+rev=6cb07d9"; 131 src = fetchFromGitHub { 132 owner = "amaanq"; 133 repo = "tree-sitter-bitbake"; 134 + rev = "6cb07d98f1cad180b8ea28965e59ee05023a5693"; 135 + hash = "sha256-KfX0vzxHn4XVtmjOSPl31t17e+rSEoSacjAFQCl4+Ik="; 136 }; 137 meta.homepage = "https://github.com/amaanq/tree-sitter-bitbake"; 138 }; ··· 315 }; 316 cuda = buildGrammar { 317 language = "cuda"; 318 + version = "0.0.0+rev=275cfb9"; 319 src = fetchFromGitHub { 320 owner = "theHamsta"; 321 repo = "tree-sitter-cuda"; 322 + rev = "275cfb95013b88382e11490aef1e7c9b17a95ef7"; 323 + hash = "sha256-3sb9YLPRPjafSLGvyjLSuu+vqvolF63CI0MWZzvEGJw="; 324 }; 325 meta.homepage = "https://github.com/theHamsta/tree-sitter-cuda"; 326 }; ··· 393 }; 394 dockerfile = buildGrammar { 395 language = "dockerfile"; 396 + version = "0.0.0+rev=1800d5a"; 397 src = fetchFromGitHub { 398 owner = "camdencheek"; 399 repo = "tree-sitter-dockerfile"; 400 + rev = "1800d5a06789797065ba5e7d80712b6bbf5483d7"; 401 + hash = "sha256-qt626fHCZkHkl8yrEtDbJ+l7wwmU0XMcP0oPwrCYNgI="; 402 }; 403 meta.homepage = "https://github.com/camdencheek/tree-sitter-dockerfile"; 404 }; ··· 527 }; 528 erlang = buildGrammar { 529 language = "erlang"; 530 + version = "0.0.0+rev=4a0ec79"; 531 src = fetchFromGitHub { 532 owner = "WhatsApp"; 533 repo = "tree-sitter-erlang"; 534 + rev = "4a0ec79b7eb7671efe935cd97967430c34598c7d"; 535 + hash = "sha256-q1V5lJsSQyx7ji4T+leIfSH9wAZRHW0XeLnY3Rc9WWI="; 536 }; 537 meta.homepage = "https://github.com/WhatsApp/tree-sitter-erlang"; 538 }; ··· 648 }; 649 git_config = buildGrammar { 650 language = "git_config"; 651 + version = "0.0.0+rev=9c2a1b7"; 652 src = fetchFromGitHub { 653 owner = "the-mikedavis"; 654 repo = "tree-sitter-git-config"; 655 + rev = "9c2a1b7894e6d9eedfe99805b829b4ecd871375e"; 656 + hash = "sha256-O0w0BhhPPwhnKfniAFSPMWfBsZUTrijifAsmFiAncWg="; 657 }; 658 meta.homepage = "https://github.com/the-mikedavis/tree-sitter-git-config"; 659 }; ··· 703 }; 704 gleam = buildGrammar { 705 language = "gleam"; 706 + version = "0.0.0+rev=32c8f1e"; 707 src = fetchFromGitHub { 708 owner = "gleam-lang"; 709 repo = "tree-sitter-gleam"; 710 + rev = "32c8f1e32aee036583ca09e7e6e4ea881852b42c"; 711 + hash = "sha256-tAYlenGQM+TK8AR8RtyDULBgWjAXgHx13/lrhNAZVhs="; 712 }; 713 meta.homepage = "https://github.com/gleam-lang/tree-sitter-gleam"; 714 }; ··· 725 }; 726 glsl = buildGrammar { 727 language = "glsl"; 728 + version = "0.0.0+rev=ec6100d"; 729 src = fetchFromGitHub { 730 owner = "theHamsta"; 731 repo = "tree-sitter-glsl"; 732 + rev = "ec6100d2bdf22363ca8a711a212f2144ea49233f"; 733 + hash = "sha256-QFsOq/1GH40XgnBT9V3Eb7aQabtBGOtxHp65FdugOz8="; 734 }; 735 meta.homepage = "https://github.com/theHamsta/tree-sitter-glsl"; 736 }; ··· 846 }; 847 haskell = buildGrammar { 848 language = "haskell"; 849 + version = "0.0.0+rev=d7ac98f"; 850 src = fetchFromGitHub { 851 owner = "tree-sitter"; 852 repo = "tree-sitter-haskell"; 853 + rev = "d7ac98f49e3ed7e17541256fe3881a967d7ffdd3"; 854 + hash = "sha256-XEfZSNnvF2BMOWwTfk6GXSnSpbKVfAYk7I3XbO1tIBg="; 855 }; 856 meta.homepage = "https://github.com/tree-sitter/tree-sitter-haskell"; 857 }; 858 haskell_persistent = buildGrammar { 859 language = "haskell_persistent"; 860 + version = "0.0.0+rev=577259b"; 861 src = fetchFromGitHub { 862 owner = "MercuryTechnologies"; 863 repo = "tree-sitter-haskell-persistent"; 864 + rev = "577259b4068b2c281c9ebf94c109bd50a74d5857"; 865 + hash = "sha256-ASdkBQ57GfpLF8NXgDzJMB/Marz9p1q03TZkwMgF/eQ="; 866 }; 867 meta.homepage = "https://github.com/MercuryTechnologies/tree-sitter-haskell-persistent"; 868 }; ··· 1198 }; 1199 luadoc = buildGrammar { 1200 language = "luadoc"; 1201 + version = "0.0.0+rev=990926b"; 1202 src = fetchFromGitHub { 1203 owner = "amaanq"; 1204 repo = "tree-sitter-luadoc"; 1205 + rev = "990926b13488a4bc0fc0804fc0f8400b5b0a1fb4"; 1206 + hash = "sha256-LU8zF6gM8tlwfbdUy/tlg5ubhyFKUrwF/vU8NPXlOGQ="; 1207 }; 1208 meta.homepage = "https://github.com/amaanq/tree-sitter-luadoc"; 1209 }; ··· 1501 }; 1502 php = buildGrammar { 1503 language = "php"; 1504 + version = "0.0.0+rev=a05c611"; 1505 src = fetchFromGitHub { 1506 owner = "tree-sitter"; 1507 repo = "tree-sitter-php"; 1508 + rev = "a05c6112a1dfdd9e586cb275700931e68d3c7c85"; 1509 + hash = "sha256-9t+9TnyBVkQVrxHhCzoBkfIjHoKw3HW4gTJjNv+DpPw="; 1510 }; 1511 meta.homepage = "https://github.com/tree-sitter/tree-sitter-php"; 1512 }; ··· 1656 }; 1657 python = buildGrammar { 1658 language = "python"; 1659 + version = "0.0.0+rev=a901729"; 1660 src = fetchFromGitHub { 1661 owner = "tree-sitter"; 1662 repo = "tree-sitter-python"; 1663 + rev = "a901729099257aac932d79c60adb5e8a53fa7e6c"; 1664 + hash = "sha256-gRhD3M1DkmwYQDDnyRq6QMTWUJUY0vbetGnN+pBTd84="; 1665 }; 1666 meta.homepage = "https://github.com/tree-sitter/tree-sitter-python"; 1667 }; ··· 1843 }; 1844 rust = buildGrammar { 1845 language = "rust"; 1846 + version = "0.0.0+rev=48e0533"; 1847 src = fetchFromGitHub { 1848 owner = "tree-sitter"; 1849 repo = "tree-sitter-rust"; 1850 + rev = "48e053397b587de97790b055a1097b7c8a4ef846"; 1851 + hash = "sha256-ht0l1a3esvBbVHNbUosItmqxwL7mDp+QyhIU6XTUiEk="; 1852 }; 1853 meta.homepage = "https://github.com/tree-sitter/tree-sitter-rust"; 1854 }; 1855 scala = buildGrammar { 1856 language = "scala"; 1857 + version = "0.0.0+rev=1b4c2fa"; 1858 src = fetchFromGitHub { 1859 owner = "tree-sitter"; 1860 repo = "tree-sitter-scala"; 1861 + rev = "1b4c2fa5c55c5fd83cbb0d2f818f916aba221a42"; 1862 + hash = "sha256-93uWT5KMqCUwntdL5U2Vc71ci+uP3OdP9y6kVZ3bYLo="; 1863 }; 1864 meta.homepage = "https://github.com/tree-sitter/tree-sitter-scala"; 1865 }; ··· 1952 }; 1953 meta.homepage = "https://github.com/JoranHonig/tree-sitter-solidity"; 1954 }; 1955 + soql = buildGrammar { 1956 + language = "soql"; 1957 + version = "0.0.0+rev=e63bcdc"; 1958 + src = fetchFromGitHub { 1959 + owner = "aheber"; 1960 + repo = "tree-sitter-sfapex"; 1961 + rev = "e63bcdcc26ae808b3fe79dfb8fa61bebdb95bda4"; 1962 + hash = "sha256-7kfg8oqi39sExBuuKxmUgg5m9g22TW94rccas/7/5zE="; 1963 + }; 1964 + location = "soql"; 1965 + meta.homepage = "https://github.com/aheber/tree-sitter-sfapex"; 1966 + }; 1967 + sosl = buildGrammar { 1968 + language = "sosl"; 1969 + version = "0.0.0+rev=e63bcdc"; 1970 + src = fetchFromGitHub { 1971 + owner = "aheber"; 1972 + repo = "tree-sitter-sfapex"; 1973 + rev = "e63bcdcc26ae808b3fe79dfb8fa61bebdb95bda4"; 1974 + hash = "sha256-7kfg8oqi39sExBuuKxmUgg5m9g22TW94rccas/7/5zE="; 1975 + }; 1976 + location = "sosl"; 1977 + meta.homepage = "https://github.com/aheber/tree-sitter-sfapex"; 1978 + }; 1979 sparql = buildGrammar { 1980 language = "sparql"; 1981 version = "0.0.0+rev=05f949d"; ··· 2009 }; 2010 meta.homepage = "https://github.com/amaanq/tree-sitter-squirrel"; 2011 }; 2012 + ssh_config = buildGrammar { 2013 + language = "ssh_config"; 2014 + version = "0.0.0+rev=e400863"; 2015 + src = fetchFromGitHub { 2016 + owner = "ObserverOfTime"; 2017 + repo = "tree-sitter-ssh-config"; 2018 + rev = "e4008633536870f3fed3198c96503250af0b0a12"; 2019 + hash = "sha256-jPEJQgFys+gwwLiIXmhHvrsT9ai0R7wXJVxRQANACkI="; 2020 + }; 2021 + meta.homepage = "https://github.com/ObserverOfTime/tree-sitter-ssh-config"; 2022 + }; 2023 starlark = buildGrammar { 2024 language = "starlark"; 2025 version = "0.0.0+rev=c45ce2b"; ··· 2111 }; 2112 t32 = buildGrammar { 2113 language = "t32"; 2114 + version = "0.0.0+rev=c544082"; 2115 src = fetchFromGitLab { 2116 owner = "xasc"; 2117 repo = "tree-sitter-t32"; 2118 + rev = "c544082904fd1d27da5493857bd3fc278bae2a1a"; 2119 + hash = "sha256-0iH5zEe5/BD2Wi4jb67grCXafmHhJkSD/NkjqGZZ3pY="; 2120 }; 2121 meta.homepage = "https://gitlab.com/xasc/tree-sitter-t32.git"; 2122 }; ··· 2154 }; 2155 location = "dialects/terraform"; 2156 meta.homepage = "https://github.com/MichaHoffmann/tree-sitter-hcl"; 2157 + }; 2158 + textproto = buildGrammar { 2159 + language = "textproto"; 2160 + version = "0.0.0+rev=8dacf02"; 2161 + src = fetchFromGitHub { 2162 + owner = "PorterAtGoogle"; 2163 + repo = "tree-sitter-textproto"; 2164 + rev = "8dacf02aa402892c91079f8577998ed5148c0496"; 2165 + hash = "sha256-MpQTrNjjNO2Bj5qR6ESwI9SZtJPmcS6ckqjAR0qaLx8="; 2166 + }; 2167 + meta.homepage = "https://github.com/PorterAtGoogle/tree-sitter-textproto"; 2168 }; 2169 thrift = buildGrammar { 2170 language = "thrift"; ··· 2426 }; 2427 wing = buildGrammar { 2428 language = "wing"; 2429 + version = "0.0.0+rev=fac3f72"; 2430 src = fetchFromGitHub { 2431 owner = "winglang"; 2432 repo = "wing"; 2433 + rev = "fac3f72d80d379fea61d1eca782cb99ac6d78b62"; 2434 + hash = "sha256-/PIqwqG5h2iFVzpTTlXOrAKEDNctcxRHIhGyv5jlkIw="; 2435 }; 2436 location = "libs/tree-sitter-wing"; 2437 generate = true;
+14 -1
pkgs/applications/editors/vim/plugins/overrides.nix
··· 165 meta.homepage = "https://github.com/sblumentritt/bitbake.vim/"; 166 }; 167 168 chadtree = super.chadtree.overrideAttrs { 169 passthru.python3Dependencies = ps: with ps; [ 170 pynvim-pp ··· 986 pname = "sg-nvim-rust"; 987 inherit (old) version src; 988 989 - cargoHash = "sha256-JwEOfxGH2wiFkdepxBsUYrpQ2kMV6koqpkD7s+gbWw8="; 990 991 nativeBuildInputs = [ pkg-config ]; 992
··· 165 meta.homepage = "https://github.com/sblumentritt/bitbake.vim/"; 166 }; 167 168 + # The GitHub repository returns 404, which breaks the update script 169 + vim-pony = buildVimPlugin { 170 + pname = "vim-pony"; 171 + version = "2018-07-27"; 172 + src = fetchFromGitHub { 173 + owner = "jakwings"; 174 + repo = "vim-pony"; 175 + rev = "b26f01a869000b73b80dceabd725d91bfe175b75"; 176 + sha256 = "0if8g94m3xmpda80byfxs649w2is9ah1k8v3028nblan73zlc8x8"; 177 + }; 178 + meta.homepage = "https://github.com/jakwings/vim-pony/"; 179 + }; 180 + 181 chadtree = super.chadtree.overrideAttrs { 182 passthru.python3Dependencies = ps: with ps; [ 183 pynvim-pp ··· 999 pname = "sg-nvim-rust"; 1000 inherit (old) version src; 1001 1002 + cargoHash = "sha256-HdewCCraJ2jj2KAVnjzND+4O52jqfABonFU6ybWWAWY="; 1003 1004 nativeBuildInputs = [ pkg-config ]; 1005
+1 -2
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 353 https://github.com/calops/hmts.nvim/,, 354 https://github.com/edluffy/hologram.nvim/,, 355 https://github.com/urbit/hoon.vim/,, 356 - https://github.com/phaazon/hop.nvim/,, 357 https://github.com/rktjmp/hotpot.nvim/,, 358 https://github.com/lewis6991/hover.nvim/,HEAD, 359 https://github.com/othree/html5.vim/,HEAD, ··· 1167 https://github.com/powerman/vim-plugin-AnsiEsc/,, 1168 https://github.com/hasundue/vim-pluto/,HEAD, 1169 https://github.com/sheerun/vim-polyglot/,, 1170 - https://github.com/jakwings/vim-pony/,, 1171 https://github.com/haya14busa/vim-poweryank/,, 1172 https://github.com/prettier/vim-prettier/,, 1173 https://github.com/thinca/vim-prettyprint/,,
··· 353 https://github.com/calops/hmts.nvim/,, 354 https://github.com/edluffy/hologram.nvim/,, 355 https://github.com/urbit/hoon.vim/,, 356 + https://github.com/smoka7/hop.nvim/,, 357 https://github.com/rktjmp/hotpot.nvim/,, 358 https://github.com/lewis6991/hover.nvim/,HEAD, 359 https://github.com/othree/html5.vim/,HEAD, ··· 1167 https://github.com/powerman/vim-plugin-AnsiEsc/,, 1168 https://github.com/hasundue/vim-pluto/,HEAD, 1169 https://github.com/sheerun/vim-polyglot/,, 1170 https://github.com/haya14busa/vim-poweryank/,, 1171 https://github.com/prettier/vim-prettier/,, 1172 https://github.com/thinca/vim-prettyprint/,,
+1
pkgs/applications/emulators/fs-uae/launcher.nix
··· 39 # fs-uae-launcher search side by side for fs-uae 40 # see $src/fsgs/plugins/pluginexecutablefinder.py#find_executable 41 ln -s ${fsuae}/bin/fs-uae $out/bin 42 ''; 43 44 meta = {
··· 39 # fs-uae-launcher search side by side for fs-uae 40 # see $src/fsgs/plugins/pluginexecutablefinder.py#find_executable 41 ln -s ${fsuae}/bin/fs-uae $out/bin 42 + ln -s ${fsuae}/bin/fs-uae-device-helper $out/bin 43 ''; 44 45 meta = {
+9 -1
pkgs/applications/graphics/luminance-hdr/default.nix
··· 1 - { lib, mkDerivation, cmake, fetchFromGitHub, pkg-config 2 , boost, exiv2, fftwFloat, gsl 3 , ilmbase, lcms2, libraw, libtiff, openexr 4 , qtbase, qtdeclarative, qttools, qtwebengine, eigen ··· 14 rev = "v.${version}"; 15 sha256 = "sha256-PWqtYGx8drfMVp7D7MzN1sIUTQ+Xz5yyeHN87p2r6PY="; 16 }; 17 18 env.NIX_CFLAGS_COMPILE = "-I${ilmbase.dev}/include/OpenEXR"; 19
··· 1 + { lib, mkDerivation, cmake, fetchFromGitHub, fetchpatch, pkg-config 2 , boost, exiv2, fftwFloat, gsl 3 , ilmbase, lcms2, libraw, libtiff, openexr 4 , qtbase, qtdeclarative, qttools, qtwebengine, eigen ··· 14 rev = "v.${version}"; 15 sha256 = "sha256-PWqtYGx8drfMVp7D7MzN1sIUTQ+Xz5yyeHN87p2r6PY="; 16 }; 17 + 18 + patches = [ 19 + (fetchpatch { 20 + name = "exiv2-0.28.patch"; 21 + url = "https://gitlab.archlinux.org/archlinux/packaging/packages/luminancehdr/-/raw/2e4a7321c7d20a52da104f4aa4dc76ac7224d94b/exiv2-0.28.patch"; 22 + hash = "sha256-Hj+lqAd5VuTjmip8Po7YiGOWWDxnu4IMXOiEFBukXpk="; 23 + }) 24 + ]; 25 26 env.NIX_CFLAGS_COMPILE = "-I${ilmbase.dev}/include/OpenEXR"; 27
+2 -2
pkgs/applications/misc/spicetify-cli/default.nix
··· 2 3 buildGoModule rec { 4 pname = "spicetify-cli"; 5 - version = "2.23.2"; 6 7 src = fetchFromGitHub { 8 owner = "spicetify"; 9 repo = "spicetify-cli"; 10 rev = "v${version}"; 11 - hash = "sha256-wL4aZt64NWlGabEjU885dv8WYz4MNPM4saDoraaRMjw="; 12 }; 13 14 vendorHash = "sha256-rMMTUT7HIgYvxGcqR02VmxOh1ihE6xuIboDsnuOo09g=";
··· 2 3 buildGoModule rec { 4 pname = "spicetify-cli"; 5 + version = "2.24.2"; 6 7 src = fetchFromGitHub { 8 owner = "spicetify"; 9 repo = "spicetify-cli"; 10 rev = "v${version}"; 11 + hash = "sha256-jzEtXmlpt6foldLW57ZcpevX8CDc+c8iIynT5nOD9qY="; 12 }; 13 14 vendorHash = "sha256-rMMTUT7HIgYvxGcqR02VmxOh1ihE6xuIboDsnuOo09g=";
+2 -2
pkgs/applications/networking/browsers/brave/default.nix
··· 91 92 stdenv.mkDerivation rec { 93 pname = "brave"; 94 - version = "1.58.129"; 95 96 src = fetchurl { 97 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; 98 - sha256 = "sha256-AJ287Ph6iGnodw3Xt2XMlryBlBLNnvEI8rwpuo5ubKc="; 99 }; 100 101 dontConfigure = true;
··· 91 92 stdenv.mkDerivation rec { 93 pname = "brave"; 94 + version = "1.58.135"; 95 96 src = fetchurl { 97 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; 98 + sha256 = "sha256-tJfpBIZvBr0diympUmImXYELPERJIzCSuOB0aovhodI="; 99 }; 100 101 dontConfigure = true;
+6 -6
pkgs/applications/networking/browsers/microsoft-edge/default.nix
··· 1 { 2 stable = import ./browser.nix { 3 channel = "stable"; 4 - version = "117.0.2045.40"; 5 revision = "1"; 6 - sha256 = "sha256-gRlw+hxix4CnviCrH+evmiwSctXJts8/68Oiwr5VKzk="; 7 }; 8 beta = import ./browser.nix { 9 channel = "beta"; 10 - version = "118.0.2088.11"; 11 revision = "1"; 12 - sha256 = "sha256-r++W+tnFxh85c9k4VooCy+6mre/8nU/7nrrt+AK1x+M="; 13 }; 14 dev = import ./browser.nix { 15 channel = "dev"; 16 - version = "119.0.2109.1"; 17 revision = "1"; 18 - sha256 = "sha256-ZIL8CD8eb/JvJs8P9GoT+yXWccS9roqPl6iDz+0K7LI="; 19 }; 20 }
··· 1 { 2 stable = import ./browser.nix { 3 channel = "stable"; 4 + version = "117.0.2045.47"; 5 revision = "1"; 6 + sha256 = "sha256-h4iw+H8f62JEih1tWTpjxNC9+wu3hHQOM2VJid1kHNQ="; 7 }; 8 beta = import ./browser.nix { 9 channel = "beta"; 10 + version = "118.0.2088.17"; 11 revision = "1"; 12 + sha256 = "sha256-3Z37M2ZQRJ5uA7NcinMlF1XEsYVv9A+ppPZZf34ye6Q="; 13 }; 14 dev = import ./browser.nix { 15 channel = "dev"; 16 + version = "119.0.2116.0"; 17 revision = "1"; 18 + sha256 = "sha256-raLRFSHZyHaxKi6EG62VIbcW29HTjTnBFw7IJFVbm5I="; 19 }; 20 }
+4 -4
pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
··· 1 { callPackage }: builtins.mapAttrs (pname: attrs: callPackage ./generic.nix (attrs // { inherit pname; })) { 2 signal-desktop = { 3 dir = "Signal"; 4 - version = "6.31.0"; 5 - hash = "sha256-JYufuFbIYUR3F+MHGZjmDtwTHPDhWLTkjCDDz+8hDrQ="; 6 }; 7 signal-desktop-beta = { 8 dir = "Signal Beta"; 9 - version = "6.32.0-beta.1"; 10 - hash = "sha256-7G4vjnEQnYOIVwXmBt1yZULvDaWXWTDgZCLWCZUq2Gs="; 11 }; 12 }
··· 1 { callPackage }: builtins.mapAttrs (pname: attrs: callPackage ./generic.nix (attrs // { inherit pname; })) { 2 signal-desktop = { 3 dir = "Signal"; 4 + version = "6.32.0"; 5 + hash = "sha256-FZ2wG3nkgIndeoUfXag/9jftXGDSY/MNpT8mqSZpJzA="; 6 }; 7 signal-desktop-beta = { 8 dir = "Signal Beta"; 9 + version = "6.33.0-beta.1"; 10 + hash = "sha256-FLCZvRYUysiE8BLMJVnn0hOkA3km0z383AjN6JvOyWI="; 11 }; 12 }
+2 -2
pkgs/applications/networking/instant-messengers/zulip/default.nix
··· 5 6 let 7 pname = "zulip"; 8 - version = "5.10.2"; 9 10 src = fetchurl { 11 url = "https://github.com/zulip/zulip-desktop/releases/download/v${version}/Zulip-${version}-x86_64.AppImage"; 12 - hash = "sha256-lz9PiikIEgGWW1N5KeNJmtIRB+0zFjWsR92PY1r0+NU="; 13 name="${pname}-${version}.AppImage"; 14 }; 15
··· 5 6 let 7 pname = "zulip"; 8 + version = "5.10.3"; 9 10 src = fetchurl { 11 url = "https://github.com/zulip/zulip-desktop/releases/download/v${version}/Zulip-${version}-x86_64.AppImage"; 12 + hash = "sha256-AnaW/zH2Vng8lpzv6LHlzCUnNWJoLpsSpmD0iZfteFg="; 13 name="${pname}-${version}.AppImage"; 14 }; 15
+3 -3
pkgs/applications/networking/sync/storj-uplink/default.nix
··· 5 6 buildGoModule rec { 7 pname = "storj-uplink"; 8 - version = "1.87.3"; 9 10 src = fetchFromGitHub { 11 owner = "storj"; 12 repo = "storj"; 13 rev = "v${version}"; 14 - hash = "sha256-16h7PzZVFnaHMyODLk9tSrW8OiXQlcuDobANG1ZQVxs="; 15 }; 16 17 subPackages = [ "cmd/uplink" ]; 18 19 - vendorHash = "sha256-gskOhLdrRzbvZwuOlm04fjeSXhNr/cqVGejEPZVtuBk="; 20 21 ldflags = [ "-s" "-w" ]; 22
··· 5 6 buildGoModule rec { 7 pname = "storj-uplink"; 8 + version = "1.89.2"; 9 10 src = fetchFromGitHub { 11 owner = "storj"; 12 repo = "storj"; 13 rev = "v${version}"; 14 + hash = "sha256-tbzdfKA3ojwTvJ+t7jLLy3iKQ/x/0lXDcb2w1XcyEhs="; 15 }; 16 17 subPackages = [ "cmd/uplink" ]; 18 19 + vendorHash = "sha256-AME5EM2j7PQ/DodK+3BiVepTRbwMqqItQbmCJ2lrGM8="; 20 21 ldflags = [ "-s" "-w" ]; 22
+34
pkgs/by-name/gu/guile-goblins/package.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , guile 5 + , guile-fibers 6 + , guile-gcrypt 7 + , texinfo 8 + , pkg-config 9 + }: 10 + stdenv.mkDerivation rec { 11 + pname = "guile-goblins"; 12 + version = "0.11.0"; 13 + 14 + src = fetchurl { 15 + url = "https://spritely.institute/files/releases/guile-goblins/guile-goblins-${version}.tar.gz"; 16 + hash = "sha256-1FD35xvayqC04oPdgts08DJl6PVnhc9K/Dr+NYtxhMU="; 17 + }; 18 + 19 + strictDeps = true; 20 + nativeBuildInputs = [ guile pkg-config texinfo ]; 21 + buildInputs = [ guile guile-fibers guile-gcrypt ]; 22 + makeFlags = [ "GUILE_AUTO_COMPILE=0" ]; 23 + 24 + # tests hang on darwin, and fail randomly on aarch64-linux on ofborg 25 + doCheck = !stdenv.isDarwin && !stdenv.isAarch64; 26 + 27 + meta = with lib; { 28 + description = "Spritely Goblins for Guile"; 29 + homepage = "https://spritely.institute/goblins/"; 30 + license = licenses.asl20; 31 + maintainers = with maintainers; [ grxnola ]; 32 + platforms = guile.meta.platforms; 33 + }; 34 + }
+4 -2
pkgs/development/libraries/libime/default.nix
··· 7 , boost 8 , python3 9 , fcitx5 10 }: 11 12 let ··· 27 in 28 stdenv.mkDerivation rec { 29 pname = "libime"; 30 - version = "1.1.0"; 31 32 src = fetchFromGitHub { 33 owner = "fcitx"; 34 repo = "libime"; 35 rev = version; 36 - sha256 = "sha256-r1Px93Ly7FzcRaPUNTHNcedzHPHocnUj8t8VMZqXkFM="; 37 fetchSubmodules = true; 38 }; 39 ··· 50 ]; 51 52 buildInputs = [ 53 boost 54 fcitx5 55 ];
··· 7 , boost 8 , python3 9 , fcitx5 10 + , zstd 11 }: 12 13 let ··· 28 in 29 stdenv.mkDerivation rec { 30 pname = "libime"; 31 + version = "1.1.2"; 32 33 src = fetchFromGitHub { 34 owner = "fcitx"; 35 repo = "libime"; 36 rev = version; 37 + sha256 = "sha256-0+NVGxujFOJvxX+Tk4mVYsk2Nl7WK6hjl0oylrT6PXU="; 38 fetchSubmodules = true; 39 }; 40 ··· 51 ]; 52 53 buildInputs = [ 54 + zstd 55 boost 56 fcitx5 57 ];
+2 -2
pkgs/development/libraries/xeus/default.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "xeus"; 13 - version = "3.1.1"; 14 15 src = fetchFromGitHub { 16 owner = "jupyter-xeus"; 17 repo = pname; 18 rev = version; 19 - sha256 = "sha256-jZZe8SegQuFLoH2Qp+etoKELGEWdlYQPXj14DNIMJ/0="; 20 }; 21 22 nativeBuildInputs = [
··· 10 11 stdenv.mkDerivation rec { 12 pname = "xeus"; 13 + version = "3.1.2"; 14 15 src = fetchFromGitHub { 16 owner = "jupyter-xeus"; 17 repo = pname; 18 rev = version; 19 + sha256 = "sha256-bSZ5ImgFztiNYGrn513LLm4OtO1hYGak3xAsBN224g8="; 20 }; 21 22 nativeBuildInputs = [
+41
pkgs/development/python-modules/aiohttp-basicauth/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , aiohttp 5 + , pytestCheckHook 6 + , pytest-asyncio 7 + , pythonOlder 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "aiohttp-basicauth"; 12 + version = "1.0.0"; 13 + format = "setuptools"; 14 + 15 + disable = pythonOlder "3.6"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "romis2012"; 19 + repo = "aiohttp-basicauth"; 20 + rev = "v${version}"; 21 + hash = "sha256-UaRzauHmBHYwXFqRwDn1py79BScqq5j5SWALM4dQBP4="; 22 + }; 23 + 24 + propagatedBuildInputs = [ 25 + aiohttp 26 + ]; 27 + 28 + nativeCheckInputs = [ 29 + pytestCheckHook 30 + pytest-asyncio 31 + ]; 32 + 33 + pythonImportsCheck = [ "aiohttp_basicauth" ]; 34 + 35 + meta = with lib; { 36 + description = "HTTP basic authentication middleware for aiohttp 3.0"; 37 + homepage = "https://github.com/romis2012/aiohttp-basicauth"; 38 + license = licenses.asl20; 39 + maintainers = with maintainers; [ mbalatsko ]; 40 + }; 41 + }
+65
pkgs/development/python-modules/aioprometheus/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , orjson 5 + , quantile-python 6 + , aiohttp 7 + , aiohttp-basicauth 8 + , starlette 9 + , quart 10 + , pytestCheckHook 11 + , httpx 12 + , fastapi 13 + , uvicorn 14 + , pythonOlder 15 + }: 16 + 17 + buildPythonPackage rec { 18 + pname = "aioprometheus"; 19 + version = "unstable-2023-03-14"; 20 + format = "setuptools"; 21 + 22 + disable = pythonOlder "3.8"; 23 + 24 + src = fetchFromGitHub { 25 + owner = "claws"; 26 + repo = "aioprometheus"; 27 + rev = "4786678b413d166c0b6e0041558d11bc1a7097b2"; 28 + hash = "sha256-2z68rQkMjYqkszg5Noj9owWUWQGOEp/91RGiWiyZVOY="; 29 + }; 30 + 31 + propagatedBuildInputs = [ 32 + orjson 33 + quantile-python 34 + ]; 35 + 36 + passthru.optional-dependencies = { 37 + aiohttp = [ 38 + aiohttp 39 + ]; 40 + starlette = [ 41 + starlette 42 + ]; 43 + quart = [ 44 + quart 45 + ]; 46 + }; 47 + 48 + nativeCheckInputs = [ 49 + pytestCheckHook 50 + aiohttp-basicauth 51 + httpx 52 + fastapi 53 + uvicorn 54 + ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies); 55 + 56 + pythonImportsCheck = [ "aioprometheus" ]; 57 + 58 + meta = with lib; { 59 + description = "A Prometheus Python client library for asyncio-based applications"; 60 + homepage = "https://github.com/claws/aioprometheus"; 61 + changelog = "https://github.com/claws/aioprometheus/blob/${src.rev}/CHANGELOG.md"; 62 + license = licenses.mit; 63 + maintainers = with maintainers; [ mbalatsko ]; 64 + }; 65 + }
+2 -2
pkgs/development/python-modules/aiowaqi/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "aiowaqi"; 16 - version = "1.1.0"; 17 format = "pyproject"; 18 19 disabled = pythonOlder "3.11"; ··· 22 owner = "joostlek"; 23 repo = "python-waqi"; 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-CQCF59Tp0VE7PNHPdVzzZegLUNDkslzKapELDjZn1k4="; 26 }; 27 28 postPatch = ''
··· 13 14 buildPythonPackage rec { 15 pname = "aiowaqi"; 16 + version = "1.1.1"; 17 format = "pyproject"; 18 19 disabled = pythonOlder "3.11"; ··· 22 owner = "joostlek"; 23 repo = "python-waqi"; 24 rev = "refs/tags/v${version}"; 25 + hash = "sha256-JB1GtDLfz9FHVS7XEkHUCN2jwXvIwBBgoBisNuOpjL0="; 26 }; 27 28 postPatch = ''
+2 -2
pkgs/development/python-modules/alexapy/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "alexapy"; 22 - version = "1.26.9"; 23 format = "pyproject"; 24 25 disabled = pythonOlder "3.10"; ··· 28 owner = "keatontaylor"; 29 repo = "alexapy"; 30 rev = "refs/tags/v${version}"; 31 - hash = "sha256-mDh4kYwRXpvVCh+nBmQblmlmgG98P6+UmgG4ZioQ68M="; 32 }; 33 34 pythonRelaxDeps = [
··· 19 20 buildPythonPackage rec { 21 pname = "alexapy"; 22 + version = "1.27.1"; 23 format = "pyproject"; 24 25 disabled = pythonOlder "3.10"; ··· 28 owner = "keatontaylor"; 29 repo = "alexapy"; 30 rev = "refs/tags/v${version}"; 31 + hash = "sha256-pMTVZ2iE/a1yNsWhmxkIQFkl18x06ZLjslj8hjKVBEA="; 32 }; 33 34 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/garth/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "garth"; 15 - version = "0.4.31"; 16 format = "pyproject"; 17 18 disabled = pythonOlder "3.9"; 19 20 src = fetchPypi { 21 inherit pname version; 22 - hash = "sha256-8Suo/BxKmergzKcD62rsmo3MHG0qCdJfqxbkrQdAxxo="; 23 }; 24 25 nativeBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "garth"; 15 + version = "0.4.32"; 16 format = "pyproject"; 17 18 disabled = pythonOlder "3.9"; 19 20 src = fetchPypi { 21 inherit pname version; 22 + hash = "sha256-SVd+yWapVIQnSG5W6u83XpIK8iugXTc6b0zO7+U572c="; 23 }; 24 25 nativeBuildInputs = [
+62
pkgs/development/python-modules/greynoise/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , click 5 + , ansimarkup 6 + , cachetools 7 + , colorama 8 + , click-default-group 9 + , click-repl 10 + , dict2xml 11 + , jinja2 12 + , more-itertools 13 + , requests 14 + , six 15 + , pytestCheckHook 16 + , mock 17 + , pythonOlder 18 + }: 19 + 20 + buildPythonPackage rec { 21 + pname = "greynoise"; 22 + version = "2.0.1"; 23 + format = "setuptools"; 24 + 25 + disable = pythonOlder "3.6"; 26 + 27 + src = fetchFromGitHub { 28 + owner = "GreyNoise-Intelligence"; 29 + repo = "pygreynoise"; 30 + rev = "v${version}"; 31 + hash = "sha256-zevom7JqXnZuotXfGtfPOmQNh32dANS4Uc6tHUuq08s="; 32 + }; 33 + 34 + propagatedBuildInputs = [ 35 + click 36 + ansimarkup 37 + cachetools 38 + colorama 39 + click-default-group 40 + click-repl 41 + dict2xml 42 + jinja2 43 + more-itertools 44 + requests 45 + six 46 + ]; 47 + 48 + nativeCheckInputs = [ 49 + pytestCheckHook 50 + mock 51 + ]; 52 + 53 + pythonImportsCheck = [ "greynoise" ]; 54 + 55 + meta = with lib; { 56 + description = "Python3 library and command line for GreyNoise"; 57 + homepage = "https://github.com/GreyNoise-Intelligence/pygreynoise"; 58 + changelog = "https://github.com/GreyNoise-Intelligence/pygreynoise/blob/${src.rev}/CHANGELOG.rst"; 59 + license = licenses.mit; 60 + maintainers = with maintainers; [ mbalatsko ]; 61 + }; 62 + }
+14
pkgs/development/python-modules/jax/default.nix
··· 12 , numpy 13 , opt-einsum 14 , pytestCheckHook 15 , pythonOlder 16 , scipy 17 , stdenv ··· 61 jaxlib' 62 matplotlib 63 pytestCheckHook 64 ]; 65 66 # NOTE: Don't run the tests in the expiremental directory as they require flax 67 # which creates a circular dependency. See https://discourse.nixos.org/t/how-to-nix-ify-python-packages-with-circular-dependencies/14648/2. 68 # Not a big deal, this is how the JAX docs suggest running the test suite 69 # anyhow. 70 pytestFlagsArray = [ 71 "-W ignore::DeprecationWarning" 72 "tests/" 73 ]; ··· 94 "test_for_loop_fixpoint_correctly_identifies_loop_varying_residuals_unrolled_for_loop" 95 "testQdwhWithRandomMatrix3" 96 "testScanGrad_jit_scan" 97 ]; 98 99 disabledTestPaths = lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
··· 12 , numpy 13 , opt-einsum 14 , pytestCheckHook 15 + , pytest-xdist 16 , pythonOlder 17 , scipy 18 , stdenv ··· 62 jaxlib' 63 matplotlib 64 pytestCheckHook 65 + pytest-xdist 66 ]; 67 + 68 + # high parallelism will result in the tests getting stuck 69 + dontUsePytestXdist = true; 70 71 # NOTE: Don't run the tests in the expiremental directory as they require flax 72 # which creates a circular dependency. See https://discourse.nixos.org/t/how-to-nix-ify-python-packages-with-circular-dependencies/14648/2. 73 # Not a big deal, this is how the JAX docs suggest running the test suite 74 # anyhow. 75 pytestFlagsArray = [ 76 + "--numprocesses=4" 77 "-W ignore::DeprecationWarning" 78 "tests/" 79 ]; ··· 100 "test_for_loop_fixpoint_correctly_identifies_loop_varying_residuals_unrolled_for_loop" 101 "testQdwhWithRandomMatrix3" 102 "testScanGrad_jit_scan" 103 + 104 + # See https://github.com/google/jax/issues/17867. 105 + "test_array" 106 + "test_async" 107 + "test_copy0" 108 + "test_device_put" 109 + "test_make_array_from_callback" 110 + "test_make_array_from_single_device_arrays" 111 ]; 112 113 disabledTestPaths = lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
+2 -2
pkgs/development/python-modules/minio/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "minio"; 19 - version = "7.1.16"; 20 format = "setuptools"; 21 22 disabled = pythonOlder "3.7"; ··· 25 owner = "minio"; 26 repo = "minio-py"; 27 rev = "refs/tags/${version}"; 28 - hash = "sha256-avGCAaqP2gLlrLDFzUJZW/KaT2lrueVjgsAJSk1eyX0="; 29 }; 30 31 propagatedBuildInputs = [
··· 16 17 buildPythonPackage rec { 18 pname = "minio"; 19 + version = "7.1.17"; 20 format = "setuptools"; 21 22 disabled = pythonOlder "3.7"; ··· 25 owner = "minio"; 26 repo = "minio-py"; 27 rev = "refs/tags/${version}"; 28 + hash = "sha256-I0Q1SkZ1zQ9s2HbMTc2EzUnnOti14zQBxHVJasaukug="; 29 }; 30 31 propagatedBuildInputs = [
+9
pkgs/development/python-modules/ml-dtypes/default.nix
··· 2 , buildPythonPackage 3 , pythonOlder 4 , fetchFromGitHub 5 , setuptools 6 , pybind11 7 , numpy ··· 26 # Hence, we rely on the bundled eigen library. 27 fetchSubmodules = true; 28 }; 29 30 postPatch = '' 31 substituteInPlace pyproject.toml \
··· 2 , buildPythonPackage 3 , pythonOlder 4 , fetchFromGitHub 5 + , fetchpatch 6 , setuptools 7 , pybind11 8 , numpy ··· 27 # Hence, we rely on the bundled eigen library. 28 fetchSubmodules = true; 29 }; 30 + 31 + patches = [ 32 + # See https://github.com/jax-ml/ml_dtypes/issues/106. 33 + (fetchpatch { 34 + url = "https://github.com/jax-ml/ml_dtypes/commit/c082a2df6bc0686b35c4b4a303fd1990485e181f.patch"; 35 + hash = "sha256-aVJy9vT00b98xOrJCdbCHSZBI3uyjafmN88Z2rjBS48="; 36 + }) 37 + ]; 38 39 postPatch = '' 40 substituteInPlace pyproject.toml \
+27
pkgs/development/python-modules/quantile-python/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + }: 5 + 6 + buildPythonPackage rec { 7 + pname = "quantile-python"; 8 + version = "1.1"; 9 + format = "setuptools"; 10 + 11 + src = fetchPypi { 12 + inherit pname version; 13 + hash = "sha256-VYYp6IxJfvO5sQgTScGuamG1NZDjF3JCmP9UxnTbeWk="; 14 + }; 15 + 16 + # package has no tests 17 + doCheck = false; 18 + 19 + pythonImportsCheck = [ "quantile" ]; 20 + 21 + meta = with lib; { 22 + description = "Python Implementation of Graham Cormode and S. Muthukrishnan's Effective Computation of Biased Quantiles over Data Streams in ICDE'05"; 23 + homepage = "https://github.com/matttproud/python_quantile_estimation"; 24 + license = licenses.asl20; 25 + maintainers = with maintainers; [ mbalatsko ]; 26 + }; 27 + }
+2 -2
pkgs/development/python-modules/requests-pkcs12/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "requests-pkcs12"; 11 - version = "1.21"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; ··· 17 owner = "m-click"; 18 repo = "requests_pkcs12"; 19 rev = version; 20 - hash = "sha256-0avykVnMzClFqjDdC4BW9jnZzupinG5JUwq8TuCWkgo="; 21 }; 22 23 propagatedBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "requests-pkcs12"; 11 + version = "1.22"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; ··· 17 owner = "m-click"; 18 repo = "requests_pkcs12"; 19 rev = version; 20 + hash = "sha256-YMFeWbPTwxP/+lYojXEbJf87FNHL6QrzOdOKF5JERSE="; 21 }; 22 23 propagatedBuildInputs = [
+3 -2
pkgs/development/python-modules/volvooncall/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "volvooncall"; 20 - version = "0.10.3"; 21 format = "setuptools"; 22 23 disabled = pythonOlder "3.10"; ··· 26 owner = "molobrakos"; 27 repo = "volvooncall"; 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-FLrsU3u/0+T09cu2zU2fLjuAy9PWAikgbaW8xBALjwU="; 30 }; 31 32 patches = [ ··· 69 homepage = "https://github.com/molobrakos/volvooncall"; 70 changelog = "https://github.com/molobrakos/volvooncall/releases/tag/v${version}"; 71 license = licenses.unlicense; 72 maintainers = with maintainers; [ dotlambda ]; 73 }; 74 }
··· 17 18 buildPythonPackage rec { 19 pname = "volvooncall"; 20 + version = "0.10.4"; 21 format = "setuptools"; 22 23 disabled = pythonOlder "3.10"; ··· 26 owner = "molobrakos"; 27 repo = "volvooncall"; 28 rev = "refs/tags/v${version}"; 29 + hash = "sha256-xr3g93rt3jvxVZrZY7cFh5eBP3k0arsejsgvx8p5EV4="; 30 }; 31 32 patches = [ ··· 69 homepage = "https://github.com/molobrakos/volvooncall"; 70 changelog = "https://github.com/molobrakos/volvooncall/releases/tag/v${version}"; 71 license = licenses.unlicense; 72 + mainProgram = "voc"; 73 maintainers = with maintainers; [ dotlambda ]; 74 }; 75 }
+56
pkgs/development/python-modules/webrtc-noise-gain/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , stdenv 5 + 6 + # build-system 7 + , pybind11 8 + , setuptools 9 + 10 + # native dependencies 11 + , abseil-cpp 12 + , darwin 13 + 14 + # tests 15 + , pytestCheckHook 16 + }: 17 + 18 + buildPythonPackage rec { 19 + pname = "webrtc-noise-gain"; 20 + version = "1.2.2"; 21 + pyproject = true; 22 + 23 + src = fetchFromGitHub { 24 + owner = "rhasspy"; 25 + repo = "webrtc-noise-gain"; 26 + rev = "v${version}"; 27 + hash = "sha256-yHuCa2To9/9kD+tLG239I1aepuhcPUV4a4O1TQtBPlE="; 28 + }; 29 + 30 + nativeBuildInputs = [ 31 + pybind11 32 + setuptools 33 + ]; 34 + 35 + buildInputs = [ 36 + abseil-cpp 37 + ] ++ lib.optionals (stdenv.isDarwin) [ 38 + darwin.apple_sdk.frameworks.CoreServices 39 + ]; 40 + 41 + pythonImportsCheck = [ 42 + "webrtc_noise_gain" 43 + ]; 44 + 45 + nativeCheckInputs = [ 46 + pytestCheckHook 47 + ]; 48 + 49 + meta = with lib; { 50 + description = "Tiny wrapper around webrtc-audio-processing for noise suppression/auto gain only"; 51 + homepage = "https://github.com/rhasspy/webrtc-noise-gain"; 52 + changelog = "https://github.com/rhasspy/webrtc-noise-gain/blob/${src.rev}/CHANGELOG.md"; 53 + license = licenses.mit; 54 + maintainers = with maintainers; [ hexa ]; 55 + }; 56 + }
+15 -2
pkgs/development/python-modules/wyoming/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 }: 5 6 buildPythonPackage rec { 7 pname = "wyoming"; 8 - version = "1.1.0"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - hash = "sha256-I5GgDu9HRj6fIX66q3RuDeB13h6dpwxrSBxKhzE+Fus="; 14 }; 15 16 pythonImportsCheck = [ ··· 19 20 # no tests 21 doCheck = false; 22 23 meta = with lib; { 24 description = "Protocol for Rhasspy Voice Assistant";
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 + 5 + # tests 6 + , wyoming-faster-whisper 7 + , wyoming-openwakeword 8 + , wyoming-piper 9 }: 10 11 buildPythonPackage rec { 12 pname = "wyoming"; 13 + version = "1.2.0"; 14 format = "setuptools"; 15 16 src = fetchPypi { 17 inherit pname version; 18 + hash = "sha256-mgNhc8PMRrwfvGZEcgIvQ/P2dysdDo2juvZccvb2C/g="; 19 }; 20 21 pythonImportsCheck = [ ··· 24 25 # no tests 26 doCheck = false; 27 + 28 + passthru.tests = { 29 + inherit 30 + wyoming-faster-whisper 31 + wyoming-openwakeword 32 + wyoming-piper 33 + ; 34 + }; 35 36 meta = with lib; { 37 description = "Protocol for Rhasspy Voice Assistant";
+2 -2
pkgs/development/python-modules/zigpy-znp/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "zigpy-znp"; 19 - version = "0.11.4"; 20 format = "setuptools"; 21 22 disabled = pythonOlder "3.7"; ··· 25 owner = "zigpy"; 26 repo = pname; 27 rev = "refs/tags/v${version}"; 28 - hash = "sha256-wt7ZsMXOh+CbhJCUMS7RhzozYlyINRs0xOF7ecwkNCU="; 29 }; 30 31 postPatch = ''
··· 16 17 buildPythonPackage rec { 18 pname = "zigpy-znp"; 19 + version = "0.11.5"; 20 format = "setuptools"; 21 22 disabled = pythonOlder "3.7"; ··· 25 owner = "zigpy"; 26 repo = pname; 27 rev = "refs/tags/v${version}"; 28 + hash = "sha256-Ti8H9FC8/xYS4je+d7EgRmDvBTmlOdiWUbuX+cbE2hY="; 29 }; 30 31 postPatch = ''
+2 -1
pkgs/development/tools/fermyon-spin/default.nix
··· 33 sha256 = packageHash; 34 }; 35 36 - nativeBuildInputs = [ 37 autoPatchelfHook 38 ]; 39 ··· 51 description = "Framework for building, deploying, and running fast, secure, and composable cloud microservices with WebAssembly."; 52 homepage = "https://github.com/fermyon/spin"; 53 license = with licenses; [ asl20 ]; 54 maintainers = with maintainers; [ mglolenstine ]; 55 platforms = platforms.linux ++ platforms.darwin; 56 };
··· 33 sha256 = packageHash; 34 }; 35 36 + nativeBuildInputs = lib.optionals stdenv.isLinux [ 37 autoPatchelfHook 38 ]; 39 ··· 51 description = "Framework for building, deploying, and running fast, secure, and composable cloud microservices with WebAssembly."; 52 homepage = "https://github.com/fermyon/spin"; 53 license = with licenses; [ asl20 ]; 54 + mainProgram = "spin"; 55 maintainers = with maintainers; [ mglolenstine ]; 56 platforms = platforms.linux ++ platforms.darwin; 57 };
+2 -2
pkgs/development/tools/kafkactl/default.nix
··· 5 6 buildGoModule rec { 7 pname = "kafkactl"; 8 - version = "3.3.0"; 9 10 src = fetchFromGitHub { 11 owner = "deviceinsight"; 12 repo = pname; 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-Yh+82gtHACTfctnIHQS+t7Pn+eZ5ZY5ySh/ae6g81lU="; 15 }; 16 17 vendorHash = "sha256-5LHL0L7xTmy3yBs7rtrC1uvUjLKBU8LpjQaHyeRyFhw=";
··· 5 6 buildGoModule rec { 7 pname = "kafkactl"; 8 + version = "3.4.0"; 9 10 src = fetchFromGitHub { 11 owner = "deviceinsight"; 12 repo = pname; 13 rev = "refs/tags/v${version}"; 14 + hash = "sha256-8/MqcJ7kxlmVkZCa7PWZ6kzo6D/9Zwx2rOJs675mJUE="; 15 }; 16 17 vendorHash = "sha256-5LHL0L7xTmy3yBs7rtrC1uvUjLKBU8LpjQaHyeRyFhw=";
+3 -3
pkgs/development/tools/oxlint/default.nix
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "oxlint"; 10 - version = "0.0.12"; 11 12 src = fetchFromGitHub { 13 owner = "web-infra-dev"; 14 repo = "oxc"; 15 rev = "oxlint_v${version}"; 16 - hash = "sha256-/8h06MpkrOBg+bQ7yi9MDiYFGFhgFLjtBXBxvaOCnwI="; 17 }; 18 19 - cargoHash = "sha256-syc+kQq0kiuXUw7MFw02GoZM91syS0P5sQI6ns8z0ys="; 20 21 buildInputs = lib.optionals stdenv.isDarwin [ 22 darwin.apple_sdk.frameworks.Security
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "oxlint"; 10 + version = "0.0.13"; 11 12 src = fetchFromGitHub { 13 owner = "web-infra-dev"; 14 repo = "oxc"; 15 rev = "oxlint_v${version}"; 16 + hash = "sha256-2Ne0RqwAX0uHWJLAgDRTipSjjWl2Va71uo06IgI9f0Y="; 17 }; 18 19 + cargoHash = "sha256-WI8EvFEz0lflt93YZbGORCLLop7k44yI9r2I1y+Gjkk="; 20 21 buildInputs = lib.optionals stdenv.isDarwin [ 22 darwin.apple_sdk.frameworks.Security
+2 -1
pkgs/games/prismlauncher/wrapper.nix
··· 3 , symlinkJoin 4 , prismlauncher-unwrapped 5 , wrapQtAppsHook 6 , qtbase # needed for wrapQtAppsHook 7 , qtsvg 8 , qtwayland ··· 85 in 86 [ "--prefix PRISMLAUNCHER_JAVA_PATHS : ${lib.makeSearchPath "bin/java" jdks}" ] 87 ++ lib.optionals stdenv.isLinux [ 88 - "--set LD_LIBRARY_PATH /run/opengl-driver/lib:${lib.makeLibraryPath runtimeLibs}" 89 # xorg.xrandr needed for LWJGL [2.9.2, 3) https://github.com/LWJGL/lwjgl/issues/128 90 "--prefix PATH : ${lib.makeBinPath runtimePrograms}" 91 ];
··· 3 , symlinkJoin 4 , prismlauncher-unwrapped 5 , wrapQtAppsHook 6 + , addOpenGLRunpath 7 , qtbase # needed for wrapQtAppsHook 8 , qtsvg 9 , qtwayland ··· 86 in 87 [ "--prefix PRISMLAUNCHER_JAVA_PATHS : ${lib.makeSearchPath "bin/java" jdks}" ] 88 ++ lib.optionals stdenv.isLinux [ 89 + "--set LD_LIBRARY_PATH ${addOpenGLRunpath.driverLink}/lib:${lib.makeLibraryPath runtimeLibs}" 90 # xorg.xrandr needed for LWJGL [2.9.2, 3) https://github.com/LWJGL/lwjgl/issues/128 91 "--prefix PATH : ${lib.makeBinPath runtimePrograms}" 92 ];
+49 -7
pkgs/games/srb2/cmake.patch
··· 1 diff --git a/CMakeLists.txt b/CMakeLists.txt 2 - index 915912af5..f5c2cf9cc 100644 3 --- a/CMakeLists.txt 4 +++ b/CMakeLists.txt 5 - @@ -91,11 +91,6 @@ if("${CMAKE_HOST_SYSTEM_NAME}" STREQUAL Windows) 6 endif() 7 endif() 8 - else() 9 - CPMAddPackage( 10 - NAME Ccache.cmake 11 - GITHUB_REPOSITORY TheLartians/Ccache.cmake 12 - VERSION 1.2 13 - ) 14 endif() 15 - 16 # Dependencies 17 - -- 18 - 2.40.1 19 -
··· 1 diff --git a/CMakeLists.txt b/CMakeLists.txt 2 + index 80a3bdcd6..380a1573a 100644 3 --- a/CMakeLists.txt 4 +++ b/CMakeLists.txt 5 + @@ -61,7 +61,7 @@ option( 6 + "Link dependencies using CMake's find_package and do not use internal builds" 7 + ${SRB2_CONFIG_SYSTEM_LIBRARIES_DEFAULT} 8 + ) 9 + -option(SRB2_CONFIG_ENABLE_TESTS "Build the test suite" ON) 10 + +option(SRB2_CONFIG_ENABLE_TESTS "Build the test suite" OFF) 11 + # This option isn't recommended for distribution builds and probably won't work (yet). 12 + cmake_dependent_option( 13 + SRB2_CONFIG_SHARED_INTERNAL_LIBRARIES 14 + @@ -80,25 +80,6 @@ option(SRB2_CONFIG_ZDEBUG "Compile with ZDEBUG defined." OFF) 15 + option(SRB2_CONFIG_PROFILEMODE "Compile for profiling (GCC only)." OFF) 16 + set(SRB2_CONFIG_ASSET_DIRECTORY "" CACHE PATH "Path to directory that contains all asset files for the installer. If set, assets will be part of installation and cpack.") 17 + 18 + -if(SRB2_CONFIG_ENABLE_TESTS) 19 + - # https://github.com/catchorg/Catch2 20 + - CPMAddPackage( 21 + - NAME Catch2 22 + - VERSION 3.4.0 23 + - GITHUB_REPOSITORY catchorg/Catch2 24 + - OPTIONS 25 + - "CATCH_INSTALL_DOCS OFF" 26 + - ) 27 + - list(APPEND CMAKE_MODULE_PATH "${Catch2_SOURCE_DIR}/extras") 28 + - include(CTest) 29 + - include(Catch) 30 + - add_executable(srb2tests) 31 + - # To add tests, use target_sources to add individual test files to the target in subdirs. 32 + - target_link_libraries(srb2tests PRIVATE Catch2::Catch2 Catch2::Catch2WithMain) 33 + - target_compile_features(srb2tests PRIVATE c_std_11 cxx_std_17) 34 + - catch_discover_tests(srb2tests) 35 + -endif() 36 + - 37 + # Enable CCache 38 + # (Set USE_CCACHE=ON to use, CCACHE_OPTIONS for options) 39 + if("${CMAKE_HOST_SYSTEM_NAME}" STREQUAL Windows) 40 + @@ -113,12 +94,6 @@ if("${CMAKE_HOST_SYSTEM_NAME}" STREQUAL Windows) 41 + message(WARNING "USE_CCACHE was set but ccache is not found (set CCACHE_TOOL_PATH)") 42 endif() 43 endif() 44 + -else() 45 - CPMAddPackage( 46 - NAME Ccache.cmake 47 - GITHUB_REPOSITORY TheLartians/Ccache.cmake 48 - VERSION 1.2 49 - ) 50 endif() 51 + 52 # Dependencies 53 + @@ -179,7 +154,7 @@ include(GitUtilities) 54 + if("${SRB2_SDL2_EXE_NAME}" STREQUAL "") 55 + # cause a reconfigure if the branch changes 56 + get_git_dir(SRB2_GIT_DIR) 57 + - configure_file("${SRB2_GIT_DIR}/HEAD" HEAD COPYONLY) 58 + + #configure_file("${SRB2_GIT_DIR}/HEAD" HEAD COPYONLY) 59 + 60 + git_current_branch(SRB2_GIT_REVISION) 61 +
+7 -4
pkgs/games/srb2/default.nix
··· 20 21 stdenv.mkDerivation (finalAttrs: { 22 pname = "srb2"; 23 - version = "2.2.11"; 24 25 src = fetchFromGitHub { 26 owner = "STJr"; 27 repo = "SRB2"; 28 rev = "SRB2_release_${finalAttrs.version}"; 29 - hash = "sha256-tyiXivJWjNnL+4YynUV6k6iaMs8o9HkHrp+qFj2+qvQ="; 30 }; 31 32 nativeBuildInputs = [ ··· 57 58 src = fetchurl { 59 url = "https://github.com/STJr/SRB2/releases/download/SRB2_release_${finalAttrs.version}/SRB2-v${lib.replaceStrings ["."] [""] finalAttrs.version}-Full.zip"; 60 - hash = "sha256-KsJIkCczD/HyIwEy5dI3zsHbWFCMBaCoCHizfupFoWM="; 61 }; 62 63 sourceRoot = "."; ··· 77 ]; 78 79 patches = [ 80 - # Fix unknown command "CPMAddPackage" by not using Ccache.cmake 81 ./cmake.patch 82 ]; 83 84 desktopItems = [ ··· 111 platforms = platforms.linux; 112 license = licenses.gpl2Plus; 113 maintainers = with maintainers; [ zeratax donovanglover ]; 114 }; 115 })
··· 20 21 stdenv.mkDerivation (finalAttrs: { 22 pname = "srb2"; 23 + version = "2.2.13"; 24 25 src = fetchFromGitHub { 26 owner = "STJr"; 27 repo = "SRB2"; 28 rev = "SRB2_release_${finalAttrs.version}"; 29 + hash = "sha256-OSkkjCz7ZW5+0vh6l7+TpnHLzXmd/5QvTidRQSHJYX8="; 30 }; 31 32 nativeBuildInputs = [ ··· 57 58 src = fetchurl { 59 url = "https://github.com/STJr/SRB2/releases/download/SRB2_release_${finalAttrs.version}/SRB2-v${lib.replaceStrings ["."] [""] finalAttrs.version}-Full.zip"; 60 + hash = "sha256-g7kaNRE1tjcF5J2v+kTnrDzz4zs5f1b/NH67ce2ifUo="; 61 }; 62 63 sourceRoot = "."; ··· 77 ]; 78 79 patches = [ 80 + # Make the build work without internet connectivity 81 + # See: https://build.opensuse.org/request/show/1109889 82 ./cmake.patch 83 + ./thirdparty.patch 84 ]; 85 86 desktopItems = [ ··· 113 platforms = platforms.linux; 114 license = licenses.gpl2Plus; 115 maintainers = with maintainers; [ zeratax donovanglover ]; 116 + mainProgram = "srb2"; 117 }; 118 })
+12
pkgs/games/srb2/thirdparty.patch
···
··· 1 + diff --git a/thirdparty/CMakeLists.txt b/thirdparty/CMakeLists.txt 2 + index f33b3bf3f..1214f179c 100644 3 + --- a/thirdparty/CMakeLists.txt 4 + +++ b/thirdparty/CMakeLists.txt 5 + @@ -16,6 +16,5 @@ if(NOT "${SRB2_CONFIG_SYSTEM_LIBRARIES}") 6 + include("cpm-png.cmake") 7 + include("cpm-curl.cmake") 8 + include("cpm-openmpt.cmake") 9 + + include("cpm-libgme.cmake") 10 + endif() 11 + - 12 + -include("cpm-libgme.cmake")
+3 -3
pkgs/servers/bloat/default.nix
··· 6 7 buildGoModule { 8 pname = "bloat"; 9 - version = "unstable-2023-09-18"; 10 11 src = fetchgit { 12 url = "git://git.freesoftwareextremist.com/bloat"; 13 - rev = "e50f12b6158ffae6b0b59f2902798ae86d263b5d"; 14 - hash = "sha256-vejk2f/FC0gS8t16u37pVgp2qzaGRXfcEYzqyP+QbGY="; 15 }; 16 17 vendorHash = null;
··· 6 7 buildGoModule { 8 pname = "bloat"; 9 + version = "unstable-2023-09-24"; 10 11 src = fetchgit { 12 url = "git://git.freesoftwareextremist.com/bloat"; 13 + rev = "8e3999fc3d9761f9ce71c35a7154a77c251caa66"; 14 + hash = "sha256-+JHBTYZETAmxUxb2SBMIuZ5/StU7mHQceHbjDmta+Kw="; 15 }; 16 17 vendorHash = null;
+3 -3
pkgs/servers/dendrite/default.nix
··· 3 4 buildGoModule rec { 5 pname = "matrix-dendrite"; 6 - version = "0.13.2"; 7 8 src = fetchFromGitHub { 9 owner = "matrix-org"; 10 repo = "dendrite"; 11 rev = "v${version}"; 12 - hash = "sha256-I8k3E/7RXJFIaEX1Zw6oFDT6UkQvZBZuyTxUZZQYr+s="; 13 }; 14 15 - vendorHash = "sha256-H2wtGjGTzqN8OXAI2ksCBgTJsmJYLQu5aFu9OP03/DA="; 16 17 subPackages = [ 18 # The server
··· 3 4 buildGoModule rec { 5 pname = "matrix-dendrite"; 6 + version = "0.13.3"; 7 8 src = fetchFromGitHub { 9 owner = "matrix-org"; 10 repo = "dendrite"; 11 rev = "v${version}"; 12 + hash = "sha256-wM9ayB3L9pc3696Ze5hVZPKGwrB5fD+64Wf8DUIjf1k="; 13 }; 14 15 + vendorHash = "sha256-COljILLiAFoX8IShpAmLrxkw6yw7YQE4lpe8IR92j6g="; 16 17 subPackages = [ 18 # The server
+2 -2
pkgs/servers/home-automation/evcc/default.nix
··· 16 17 buildGo121Module rec { 18 pname = "evcc"; 19 - version = "0.120.1"; 20 21 src = fetchFromGitHub { 22 owner = "evcc-io"; 23 repo = pname; 24 rev = version; 25 - hash = "sha256-mifpswB8hA7Ke2r2afYRlGDdhbz7AYxMZBNaRQvUodQ="; 26 }; 27 28 vendorHash = "sha256-LNMNqlb/aj+ZHuwMvtK//oWyi34mm47ShAAD427szS4=";
··· 16 17 buildGo121Module rec { 18 pname = "evcc"; 19 + version = "0.120.3"; 20 21 src = fetchFromGitHub { 22 owner = "evcc-io"; 23 repo = pname; 24 rev = version; 25 + hash = "sha256-FYjDuGIsdGhPXOdYMQuoMp6L4MH70fpOymqw4+bu5hc="; 26 }; 27 28 vendorHash = "sha256-LNMNqlb/aj+ZHuwMvtK//oWyi34mm47ShAAD427szS4=";
+4 -4
pkgs/servers/search/typesense/sources.json
··· 1 { 2 - "version": "0.25.0", 3 "platforms": { 4 "aarch64-linux": { 5 "arch": "linux-arm64", 6 - "hash": "sha256-R1ayDJah8EMZVVw5fQpHNXMUMwtOJWEPtx4qz5KbniM=" 7 }, 8 "x86_64-linux": { 9 "arch": "linux-amd64", 10 - "hash": "sha256-/EDDYaGP43LuOq90Vx8z/fmp4ougyuiTP1L5DmQPZ0Q=" 11 }, 12 "x86_64-darwin": { 13 "arch": "darwin-amd64", 14 - "hash": "sha256-M2yUAto7KlNY8zswSXqVwH120QV8OrGljobbZkjUSoQ=" 15 } 16 } 17 }
··· 1 { 2 + "version": "0.25.1", 3 "platforms": { 4 "aarch64-linux": { 5 "arch": "linux-arm64", 6 + "hash": "sha256-u5gkAcSw0AG0+NK3/1O90leOyM8I03/EXxFAXoFSqt4=" 7 }, 8 "x86_64-linux": { 9 "arch": "linux-amd64", 10 + "hash": "sha256-XebMzmTkLn+kKa0gAnoSMPmPxbxysfPnes4RQ3hqShc=" 11 }, 12 "x86_64-darwin": { 13 "arch": "darwin-amd64", 14 + "hash": "sha256-zz8GObtjDgMWx4HDcwugMWeS/n40/1jPwN/8rXIb5+8=" 15 } 16 } 17 }
+2 -2
pkgs/servers/web-apps/galene/default.nix
··· 2 3 buildGoModule rec { 4 pname = "galene"; 5 - version = "0.7.1"; 6 7 src = fetchFromGitHub { 8 owner = "jech"; 9 repo = "galene"; 10 rev = "galene-${version}"; 11 - hash = "sha256-dqve8ZQgJZYVyB43Dk2y966sn3zC2xtD2/jMFtcUj24="; 12 }; 13 14 vendorHash = "sha256-+itNqxEy0S2g5UGpUIthJE2ILQzToISref/8F4zTmYg=";
··· 2 3 buildGoModule rec { 4 pname = "galene"; 5 + version = "0.7.2"; 6 7 src = fetchFromGitHub { 8 owner = "jech"; 9 repo = "galene"; 10 rev = "galene-${version}"; 11 + hash = "sha256-9jFloYrAQXmhmRoJxGp1UUxzFEkzB32iohStbb39suU="; 12 }; 13 14 vendorHash = "sha256-+itNqxEy0S2g5UGpUIthJE2ILQzToISref/8F4zTmYg=";
+63
pkgs/tools/audio/wyoming/openwakeword.nix
···
··· 1 + { lib 2 + , python3 3 + , python3Packages 4 + , fetchFromGitHub 5 + , fetchpatch 6 + }: 7 + 8 + python3.pkgs.buildPythonApplication { 9 + pname = "wyoming-openwakeword"; 10 + version = "1.5.1"; 11 + pyproject = true; 12 + 13 + src = fetchFromGitHub { 14 + owner = "rhasspy"; 15 + repo = "rhasspy3"; 16 + rev = "e16d7d374a64f671db48142c7b635b327660ebcf"; 17 + hash = "sha256-SbWsRmR1hfuU3yJbuu+r7M43ugHeNwLgu5S8MqkbCQA="; 18 + }; 19 + 20 + patches = [ 21 + (fetchpatch { 22 + # import tflite entrypoint from tensorflow 23 + url = "https://github.com/rhasspy/rhasspy3/commit/23b1bc9cf1e9aa78453feb11e27d5dafe26de068.patch"; 24 + hash = "sha256-fjLJ+VI4c8ABBWx1IjZ6nS8MGqdry4rgcThKiaAvz+Q="; 25 + }) 26 + (fetchpatch { 27 + # add commandline entrypoint 28 + url = "https://github.com/rhasspy/rhasspy3/commit/7662b82cd85e16817a3c6f4153e855bf57436ac3.patch"; 29 + hash = "sha256-41CLkVDSAJJpZ5irwIf/Z4wHoCuKDrqFBAjKCx7ta50="; 30 + }) 31 + ]; 32 + 33 + postPatch = '' 34 + cd programs/wake/openwakeword-lite/server 35 + ''; 36 + 37 + nativeBuildInputs = with python3Packages; [ 38 + setuptools 39 + wheel 40 + ]; 41 + 42 + propagatedBuildInputs = with python3Packages; [ 43 + tensorflow-bin 44 + webrtc-noise-gain 45 + wyoming 46 + ]; 47 + 48 + passthru.optional-dependencies.webrtc = with python3Packages; [ 49 + webrtc-noise-gain 50 + ]; 51 + 52 + pythonImportsCheck = [ 53 + "wyoming_openwakeword" 54 + ]; 55 + 56 + meta = with lib; { 57 + description = "An open source voice assistant toolkit for many human languages"; 58 + homepage = "https://github.com/rhasspy/rhasspy3/commit/fe44635132079db74d0c76c6b3553b842aa1e318"; 59 + license = licenses.mit; 60 + maintainers = with maintainers; [ hexa ]; 61 + mainProgram = "wyoming-openwakeword"; 62 + }; 63 + }
+2 -2
pkgs/tools/audio/wyoming/piper.nix
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "wyoming-piper"; 8 - version = "1.2.0"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 pname = "wyoming_piper"; 13 inherit version; 14 - hash = "sha256-cdCWpejHNCjyYtIxGms9yaEerRmFnGllUN7+3uQy4mQ="; 15 }; 16 17 patches = [
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "wyoming-piper"; 8 + version = "1.3.2"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 pname = "wyoming_piper"; 13 inherit version; 14 + hash = "sha256-WyoHwIF3xC5nOa7iQ8/esfdwahbU6YJzK5G2Vi3mV4M="; 15 }; 16 17 patches = [
+2 -2
pkgs/tools/backup/discordchatexporter-cli/default.nix
··· 8 9 buildDotnetModule rec { 10 pname = "discordchatexporter-cli"; 11 - version = "2.41"; 12 13 src = fetchFromGitHub { 14 owner = "tyrrrz"; 15 repo = "discordchatexporter"; 16 rev = version; 17 - hash = "sha256-a9lHnh4V+bCSvQvAsJKiSGiCbxDj5GOkdPDvP8tsWys="; 18 }; 19 20 projectFile = "DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj";
··· 8 9 buildDotnetModule rec { 10 pname = "discordchatexporter-cli"; 11 + version = "2.41.1"; 12 13 src = fetchFromGitHub { 14 owner = "tyrrrz"; 15 repo = "discordchatexporter"; 16 rev = version; 17 + hash = "sha256-69Q08KSV77rOHLryG3T4R7bqrl5ypQS0i8sbsP//OUw="; 18 }; 19 20 projectFile = "DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj";
+4 -3
pkgs/tools/backup/discordchatexporter-cli/deps.nix
··· 11 (fetchNuGet { pname = "DotnetRuntimeBootstrapper"; version = "2.5.1"; sha256 = "192795akjmdxvp8p52g256rg0nzriipfsr8j808h69j6himhp4d7"; }) 12 (fetchNuGet { pname = "Gress"; version = "2.1.1"; sha256 = "1svz1flhyl26h3xjch0acjjinympgf6bhj5vpb188njfih3ip4ck"; }) 13 (fetchNuGet { pname = "JsonExtensions"; version = "1.2.0"; sha256 = "0g54hibabbqqfhxjlnxwv1rxagpali5agvnpymp2w3dk8h6q66xy"; }) 14 - (fetchNuGet { pname = "Polly"; version = "7.2.4"; sha256 = "0lvhi2a18p6ay780lbw18656297s9i45cvpp4dr9k5lhg7fwl2y1"; }) 15 - (fetchNuGet { pname = "RazorBlade"; version = "0.4.3"; sha256 = "1wnp7dd1ir9w1ipp424h4f3z832b6i1dx1cljyf1ry9lrb3i91is"; }) 16 (fetchNuGet { pname = "Spectre.Console"; version = "0.47.0"; sha256 = "0gc9ana660an7d76w9qd8l62lv66dc69vr5lslr896b1313ywakp"; }) 17 (fetchNuGet { pname = "Superpower"; version = "3.0.0"; sha256 = "0p6riay4732j1fahc081dzgs9q4z3n2fpxrin4zfpj6q2226dhz4"; }) 18 (fetchNuGet { pname = "System.Memory"; version = "4.5.5"; sha256 = "08jsfwimcarfzrhlyvjjid61j02irx6xsklf32rv57x2aaikvx0h"; }) 19 (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "7.0.0"; sha256 = "0sn6hxdjm7bw3xgsmg041ccchsa4sp02aa27cislw3x61dbr68kq"; }) 20 (fetchNuGet { pname = "WebMarkupMin.Core"; version = "2.14.0"; sha256 = "0c41zw1bwz6ybxagq5vr26cx7najd17rrdbqjpn8mabynq380ayr"; }) 21 - (fetchNuGet { pname = "YoutubeExplode"; version = "6.3.1"; sha256 = "1rkj7rjm8vl4lygfqbil5cgj271wvnhcdpcybb74m6mlf7w7dg1q"; }) 22 ]
··· 11 (fetchNuGet { pname = "DotnetRuntimeBootstrapper"; version = "2.5.1"; sha256 = "192795akjmdxvp8p52g256rg0nzriipfsr8j808h69j6himhp4d7"; }) 12 (fetchNuGet { pname = "Gress"; version = "2.1.1"; sha256 = "1svz1flhyl26h3xjch0acjjinympgf6bhj5vpb188njfih3ip4ck"; }) 13 (fetchNuGet { pname = "JsonExtensions"; version = "1.2.0"; sha256 = "0g54hibabbqqfhxjlnxwv1rxagpali5agvnpymp2w3dk8h6q66xy"; }) 14 + (fetchNuGet { pname = "Polly"; version = "8.0.0"; sha256 = "08wzmkz9qjz61sczmipm8m5j4bg8dg4mbjgspagx4hh28q8mvagn"; }) 15 + (fetchNuGet { pname = "Polly.Core"; version = "8.0.0"; sha256 = "10w6z81kidkdhbwkhyas9kc1zmvz0r3mzcsii01wpydw27v0rzxp"; }) 16 + (fetchNuGet { pname = "RazorBlade"; version = "0.4.4"; sha256 = "1dkyyn58gcrl1sh6mv3g7zqapqg8lb5nzn10aj3vh4l51wpl0l5r"; }) 17 (fetchNuGet { pname = "Spectre.Console"; version = "0.47.0"; sha256 = "0gc9ana660an7d76w9qd8l62lv66dc69vr5lslr896b1313ywakp"; }) 18 (fetchNuGet { pname = "Superpower"; version = "3.0.0"; sha256 = "0p6riay4732j1fahc081dzgs9q4z3n2fpxrin4zfpj6q2226dhz4"; }) 19 (fetchNuGet { pname = "System.Memory"; version = "4.5.5"; sha256 = "08jsfwimcarfzrhlyvjjid61j02irx6xsklf32rv57x2aaikvx0h"; }) 20 (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "7.0.0"; sha256 = "0sn6hxdjm7bw3xgsmg041ccchsa4sp02aa27cislw3x61dbr68kq"; }) 21 (fetchNuGet { pname = "WebMarkupMin.Core"; version = "2.14.0"; sha256 = "0c41zw1bwz6ybxagq5vr26cx7najd17rrdbqjpn8mabynq380ayr"; }) 22 + (fetchNuGet { pname = "YoutubeExplode"; version = "6.3.4"; sha256 = "0zlfga8aigxxqa96jmqsp95h5plvxxlgymsrbcl5z1ds9ga0ldkd"; }) 23 ]
+2 -2
pkgs/tools/inputmethods/fcitx5/default.nix
··· 43 in 44 stdenv.mkDerivation rec { 45 pname = "fcitx5"; 46 - version = "5.1.0"; 47 48 src = fetchFromGitHub { 49 owner = "fcitx"; 50 repo = pname; 51 rev = version; 52 - hash = "sha256-tnYyHhldPmMZcygpcOcbaYFQbRQjPr/FlvyYfRylTmQ="; 53 }; 54 55 prePatch = ''
··· 43 in 44 stdenv.mkDerivation rec { 45 pname = "fcitx5"; 46 + version = "5.1.1"; 47 48 src = fetchFromGitHub { 49 owner = "fcitx"; 50 repo = pname; 51 rev = version; 52 + hash = "sha256-R8stzpfQttBZFFSu8ikUz/2eL+b98/X672uVFsha9H0="; 53 }; 54 55 prePatch = ''
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-anthy.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "fcitx5-anthy"; 5 - version = "5.1.0"; 6 7 src = fetchurl { 8 url = "https://download.fcitx-im.org/fcitx5/fcitx5-anthy/${pname}-${version}.tar.xz"; 9 - sha256 = "sha256-tyWxNhCreJaAc+IUH85iayo8OALcY0ytFc7Aa8Ye80M="; 10 }; 11 12 nativeBuildInputs = [ cmake extra-cmake-modules pkg-config ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "fcitx5-anthy"; 5 + version = "5.1.1"; 6 7 src = fetchurl { 8 url = "https://download.fcitx-im.org/fcitx5/fcitx5-anthy/${pname}-${version}.tar.xz"; 9 + sha256 = "sha256-kUelkzVr1zOC4bbNP2EFPnhtygkJnKCFdlHeSkBGLGw="; 10 }; 11 12 nativeBuildInputs = [ cmake extra-cmake-modules pkg-config ];
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-chinese-addons.nix
··· 31 32 mkDerivation rec { 33 pname = "fcitx5-chinese-addons"; 34 - version = "5.1.0"; 35 36 src = fetchFromGitHub { 37 owner = "fcitx"; 38 repo = pname; 39 rev = version; 40 - sha256 = "sha256-Z5X/yKxj8jX/einrebkP6rSCSrKvaQ7vOlbmT1IKXfY="; 41 }; 42 43 cmakeFlags = [
··· 31 32 mkDerivation rec { 33 pname = "fcitx5-chinese-addons"; 34 + version = "5.1.1"; 35 36 src = fetchFromGitHub { 37 owner = "fcitx"; 38 repo = pname; 39 rev = version; 40 + sha256 = "sha256-XC8NQYVvGhh6GFrKtJi9GeBHxWrtw9DJzeeDvKAQEdk="; 41 }; 42 43 cmakeFlags = [
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-configtool.nix
··· 21 22 mkDerivation rec { 23 pname = "fcitx5-configtool"; 24 - version = "5.1.0"; 25 26 src = fetchFromGitHub { 27 owner = "fcitx"; 28 repo = pname; 29 rev = version; 30 - sha256 = "sha256-kjoAcoqLJ8XHMI6NUr5DZfltWfX3GPco3VGseze6qbw="; 31 }; 32 33 cmakeFlags = [
··· 21 22 mkDerivation rec { 23 pname = "fcitx5-configtool"; 24 + version = "5.1.1"; 25 26 src = fetchFromGitHub { 27 owner = "fcitx"; 28 repo = pname; 29 rev = version; 30 + sha256 = "sha256-5f75UTGCWsuMdZKhssSpUiVaRR05YY0bumVUNq2wJtY="; 31 }; 32 33 cmakeFlags = [
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-lua.nix
··· 9 }: 10 stdenv.mkDerivation rec { 11 pname = "fcitx5-lua"; 12 - version = "5.0.10"; 13 14 src = fetchFromGitHub { 15 owner = "fcitx"; 16 repo = pname; 17 rev = version; 18 - sha256 = "sha256-0ESgQv8kyc+zv/tDZtBZ+QhFFswD80ApwswFlJs8tOU="; 19 }; 20 21 nativeBuildInputs = [ cmake extra-cmake-modules ];
··· 9 }: 10 stdenv.mkDerivation rec { 11 pname = "fcitx5-lua"; 12 + version = "5.0.11"; 13 14 src = fetchFromGitHub { 15 owner = "fcitx"; 16 repo = pname; 17 rev = version; 18 + sha256 = "sha256-FgRETT4YLA/B/5mBAJxyF2WI8TM0J51vdlJeoiJST1M="; 19 }; 20 21 nativeBuildInputs = [ cmake extra-cmake-modules ];
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-qt.nix
··· 13 14 mkDerivation rec { 15 pname = "fcitx5-qt"; 16 - version = "5.1.0"; 17 18 src = fetchFromGitHub { 19 owner = "fcitx"; 20 repo = pname; 21 rev = version; 22 - sha256 = "sha256-LWOELt1uo5TtM85ppxt6MK7fvUuocHkWXYjUE1yyOV4="; 23 }; 24 25 preConfigure = ''
··· 13 14 mkDerivation rec { 15 pname = "fcitx5-qt"; 16 + version = "5.1.1"; 17 18 src = fetchFromGitHub { 19 owner = "fcitx"; 20 repo = pname; 21 rev = version; 22 + sha256 = "sha256-IkaaLFMyPVaL5taRN4e+QxMEsNhhXlA1fWBn/6PeGnI="; 23 }; 24 25 preConfigure = ''
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-rime.nix
··· 14 15 stdenv.mkDerivation rec { 16 pname = "fcitx5-rime"; 17 - version = "5.1.1"; 18 19 src = fetchurl { 20 url = "https://download.fcitx-im.org/fcitx5/${pname}/${pname}-${version}.tar.xz"; 21 - hash = "sha256-qo0m/asTranm70PHPLwWCn/jX+FWNEGRKBRNNW+B28A="; 22 }; 23 24 cmakeFlags = [
··· 14 15 stdenv.mkDerivation rec { 16 pname = "fcitx5-rime"; 17 + version = "5.1.2"; 18 19 src = fetchurl { 20 url = "https://download.fcitx-im.org/fcitx5/${pname}/${pname}-${version}.tar.xz"; 21 + hash = "sha256-0WcBM6kOKATuh6I8yEzl+HkK5/k4Ku6brZ+s1ncKlpw="; 22 }; 23 24 cmakeFlags = [
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-unikey.nix
··· 11 12 stdenv.mkDerivation rec { 13 pname = "fcitx5-unikey"; 14 - version = "5.1.0"; 15 16 src = fetchFromGitHub { 17 owner = "fcitx"; 18 repo = "fcitx5-unikey"; 19 rev = version; 20 - sha256 = "sha256-X00/jGtbApWtS9+S6lTXJ0+BK7SUsLA1sKxq0vW1VNE="; 21 }; 22 23 nativeBuildInputs = [ cmake extra-cmake-modules wrapQtAppsHook ];
··· 11 12 stdenv.mkDerivation rec { 13 pname = "fcitx5-unikey"; 14 + version = "5.1.1"; 15 16 src = fetchFromGitHub { 17 owner = "fcitx"; 18 repo = "fcitx5-unikey"; 19 rev = version; 20 + sha256 = "sha256-9t8YYYGTiY+HteoRI1m833ITcbYb/KpHczyUd8lllc8="; 21 }; 22 23 nativeBuildInputs = [ cmake extra-cmake-modules wrapQtAppsHook ];
+3 -3
pkgs/tools/networking/sing-box/default.nix
··· 11 12 buildGoModule rec { 13 pname = "sing-box"; 14 - version = "1.4.6"; 15 16 src = fetchFromGitHub { 17 owner = "SagerNet"; 18 repo = pname; 19 rev = "v${version}"; 20 - hash = "sha256-8T/jcf8t0VtM1/o3rDsuUVElpUVwPPu7Omv985SILQY="; 21 }; 22 23 - vendorHash = "sha256-e211xmxU8cmx5f8cDvzSg7l8ljvbLv5Dw+sWy35oEiM="; 24 25 tags = [ 26 "with_quic"
··· 11 12 buildGoModule rec { 13 pname = "sing-box"; 14 + version = "1.5.0"; 15 16 src = fetchFromGitHub { 17 owner = "SagerNet"; 18 repo = pname; 19 rev = "v${version}"; 20 + hash = "sha256-Q5WSIh5k8cQPUlV0DHbg/g3aHVtsEb/lCWODg9SLTyM="; 21 }; 22 23 + vendorHash = "sha256-YGnrZbc9oK//EVUtfBkQnuTfdn7kcTuOZM0+67BiWrA="; 24 25 tags = [ 26 "with_quic"
+3 -3
pkgs/tools/security/step-cli/default.nix
··· 5 6 buildGoModule rec { 7 pname = "step-cli"; 8 - version = "0.24.4"; 9 10 src = fetchFromGitHub { 11 owner = "smallstep"; 12 repo = "cli"; 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-QSV1+EKaz0anV+Kj5sUEJgVEZkSi4cQG5GiWsgGKN/I="; 15 }; 16 17 ldflags = [ ··· 25 rm command/certificate/remote_test.go 26 ''; 27 28 - vendorHash = "sha256-R2lnbHTIfgKdgeZ21JLKlVuPIwvNmjXSlzb8bwrva2U="; 29 30 meta = with lib; { 31 description = "A zero trust swiss army knife for working with X509, OAuth, JWT, OATH OTP, etc";
··· 5 6 buildGoModule rec { 7 pname = "step-cli"; 8 + version = "0.25.0"; 9 10 src = fetchFromGitHub { 11 owner = "smallstep"; 12 repo = "cli"; 13 rev = "refs/tags/v${version}"; 14 + hash = "sha256-8sMF7KSrHyApdXZ3Oy4KogEqd6R8KlQVkqIcvYQBPJY="; 15 }; 16 17 ldflags = [ ··· 25 rm command/certificate/remote_test.go 26 ''; 27 28 + vendorHash = "sha256-c+2mOAMdGcqeL7zAURso3XVcnb93HNS/i6c63kiIHKU="; 29 30 meta = with lib; { 31 description = "A zero trust swiss army knife for working with X509, OAuth, JWT, OATH OTP, etc";
+2 -2
pkgs/tools/security/volatility3/default.nix
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "volatility3"; 8 - version = "2.4.1"; 9 10 src = fetchFromGitHub { 11 owner = "volatilityfoundation"; 12 repo = pname; 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-Oi9uy1zNRnKJc+31+IjMiza72EUopiM75sP+Mjjw+aE="; 15 }; 16 17 propagatedBuildInputs = with python3.pkgs; [
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "volatility3"; 8 + version = "2.5.0"; 9 10 src = fetchFromGitHub { 11 owner = "volatilityfoundation"; 12 repo = pname; 13 rev = "refs/tags/v${version}"; 14 + hash = "sha256-yutQbrWmJGDsTccQcR+HtC8JvgmsXfCxbxxcMLDx5vk="; 15 }; 16 17 propagatedBuildInputs = with python3.pkgs; [
+2
pkgs/top-level/all-packages.nix
··· 37470 37471 wyoming-faster-whisper = callPackage ../tools/audio/wyoming/faster-whisper.nix { }; 37472 37473 wyoming-piper = callPackage ../tools/audio/wyoming/piper.nix { }; 37474 37475 ### GAMES
··· 37470 37471 wyoming-faster-whisper = callPackage ../tools/audio/wyoming/faster-whisper.nix { }; 37472 37473 + wyoming-openwakeword = callPackage ../tools/audio/wyoming/openwakeword.nix { }; 37474 + 37475 wyoming-piper = callPackage ../tools/audio/wyoming/piper.nix { }; 37476 37477 ### GAMES
+10
pkgs/top-level/python-packages.nix
··· 224 225 aiohttp-apispec = callPackage ../development/python-modules/aiohttp-apispec { }; 226 227 aiohttp-cors = callPackage ../development/python-modules/aiohttp-cors { }; 228 229 aiohttp-jinja2 = callPackage ../development/python-modules/aiohttp-jinja2 { }; ··· 317 aiopg = callPackage ../development/python-modules/aiopg { }; 318 319 aioprocessing = callPackage ../development/python-modules/aioprocessing { }; 320 321 aiopulse = callPackage ../development/python-modules/aiopulse { }; 322 ··· 4696 4697 gremlinpython = callPackage ../development/python-modules/gremlinpython { }; 4698 4699 growattserver = callPackage ../development/python-modules/growattserver { }; 4700 4701 gridnet = callPackage ../development/python-modules/gridnet { }; ··· 11114 11115 quantiphy = callPackage ../development/python-modules/quantiphy { }; 11116 11117 quantiphy-eval = callPackage ../development/python-modules/quantiphy-eval { }; 11118 11119 quantum-gateway = callPackage ../development/python-modules/quantum-gateway { }; ··· 13946 webob = callPackage ../development/python-modules/webob { }; 13947 13948 weboob = callPackage ../development/python-modules/weboob { }; 13949 13950 webrtcvad = callPackage ../development/python-modules/webrtcvad { }; 13951
··· 224 225 aiohttp-apispec = callPackage ../development/python-modules/aiohttp-apispec { }; 226 227 + aiohttp-basicauth = callPackage ../development/python-modules/aiohttp-basicauth { }; 228 + 229 aiohttp-cors = callPackage ../development/python-modules/aiohttp-cors { }; 230 231 aiohttp-jinja2 = callPackage ../development/python-modules/aiohttp-jinja2 { }; ··· 319 aiopg = callPackage ../development/python-modules/aiopg { }; 320 321 aioprocessing = callPackage ../development/python-modules/aioprocessing { }; 322 + 323 + aioprometheus = callPackage ../development/python-modules/aioprometheus { }; 324 325 aiopulse = callPackage ../development/python-modules/aiopulse { }; 326 ··· 4700 4701 gremlinpython = callPackage ../development/python-modules/gremlinpython { }; 4702 4703 + greynoise = callPackage ../development/python-modules/greynoise { }; 4704 + 4705 growattserver = callPackage ../development/python-modules/growattserver { }; 4706 4707 gridnet = callPackage ../development/python-modules/gridnet { }; ··· 11120 11121 quantiphy = callPackage ../development/python-modules/quantiphy { }; 11122 11123 + quantile-python = callPackage ../development/python-modules/quantile-python { }; 11124 + 11125 quantiphy-eval = callPackage ../development/python-modules/quantiphy-eval { }; 11126 11127 quantum-gateway = callPackage ../development/python-modules/quantum-gateway { }; ··· 13954 webob = callPackage ../development/python-modules/webob { }; 13955 13956 weboob = callPackage ../development/python-modules/weboob { }; 13957 + 13958 + webrtc-noise-gain = callPackage ../development/python-modules/webrtc-noise-gain { }; 13959 13960 webrtcvad = callPackage ../development/python-modules/webrtcvad { }; 13961