lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
2003e6ba d9701718

+1067 -527
+6
maintainers/maintainer-list.nix
··· 678 githubId = 36147; 679 name = "Alireza Meskin"; 680 }; 681 alkasm = { 682 email = "alexreynolds00@gmail.com"; 683 github = "alkasm";
··· 678 githubId = 36147; 679 name = "Alireza Meskin"; 680 }; 681 + alizter = { 682 + email = "alizter@gmail.com"; 683 + github = "Alizter"; 684 + githubId = 8614547; 685 + name = "Ali Caglayan"; 686 + }; 687 alkasm = { 688 email = "alexreynolds00@gmail.com"; 689 github = "alkasm";
+1
maintainers/team-list.nix
··· 142 # gares has no entry in the maintainers list 143 siraben 144 vbgl 145 ]; 146 scope = "Maintain the Coq theorem prover and related packages."; 147 shortName = "Coq";
··· 142 # gares has no entry in the maintainers list 143 siraben 144 vbgl 145 + alizter 146 ]; 147 scope = "Maintain the Coq theorem prover and related packages."; 148 shortName = "Coq";
+1
nixos/doc/manual/release-notes/rl-2305.section.md
··· 33 - [Cloudlog](https://www.magicbug.co.uk/cloudlog/), a web-based Amateur Radio logging application. Available as [services.cloudlog](#opt-services.cloudlog.enable). 34 35 - [fzf](https://github.com/junegunn/fzf), a command line fuzzyfinder. Available as [programs.fzf](#opt-programs.fzf.fuzzyCompletion). 36 37 - [gemstash](https://github.com/rubygems/gemstash), a RubyGems.org cache and private gem server. Available as [services.gemstash](#opt-services.gemstash.enable). 38
··· 33 - [Cloudlog](https://www.magicbug.co.uk/cloudlog/), a web-based Amateur Radio logging application. Available as [services.cloudlog](#opt-services.cloudlog.enable). 34 35 - [fzf](https://github.com/junegunn/fzf), a command line fuzzyfinder. Available as [programs.fzf](#opt-programs.fzf.fuzzyCompletion). 36 + - [readarr](https://github.com/Readarr/Readarr), Book Manager and Automation (Sonarr for Ebooks). Available as [services.readarr](options.html#opt-services.readarr.enable). 37 38 - [gemstash](https://github.com/rubygems/gemstash), a RubyGems.org cache and private gem server. Available as [services.gemstash](#opt-services.gemstash.enable). 39
+2
nixos/modules/module-list.nix
··· 665 ./services/misc/prowlarr.nix 666 ./services/misc/pykms.nix 667 ./services/misc/radarr.nix 668 ./services/misc/redmine.nix 669 ./services/misc/ripple-data-api.nix 670 ./services/misc/rippled.nix ··· 803 ./services/networking/bitlbee.nix 804 ./services/networking/blockbook-frontend.nix 805 ./services/networking/blocky.nix 806 ./services/networking/charybdis.nix 807 ./services/networking/chisel-server.nix 808 ./services/networking/cjdns.nix
··· 665 ./services/misc/prowlarr.nix 666 ./services/misc/pykms.nix 667 ./services/misc/radarr.nix 668 + ./services/misc/readarr.nix 669 ./services/misc/redmine.nix 670 ./services/misc/ripple-data-api.nix 671 ./services/misc/rippled.nix ··· 804 ./services/networking/bitlbee.nix 805 ./services/networking/blockbook-frontend.nix 806 ./services/networking/blocky.nix 807 + ./services/networking/cgit.nix 808 ./services/networking/charybdis.nix 809 ./services/networking/chisel-server.nix 810 ./services/networking/cjdns.nix
+88
nixos/modules/services/misc/readarr.nix
···
··· 1 + { config, pkgs, lib, ... }: 2 + 3 + with lib; 4 + 5 + let 6 + cfg = config.services.readarr; 7 + in 8 + { 9 + options = { 10 + services.readarr = { 11 + enable = mkEnableOption (lib.mdDoc "Readarr"); 12 + 13 + dataDir = mkOption { 14 + type = types.str; 15 + default = "/var/lib/readarr/"; 16 + description = lib.mdDoc "The directory where Readarr stores its data files."; 17 + }; 18 + 19 + package = mkOption { 20 + type = types.package; 21 + default = pkgs.readarr; 22 + defaultText = literalExpression "pkgs.readarr"; 23 + description = lib.mdDoc "The Readarr package to use"; 24 + }; 25 + 26 + openFirewall = mkOption { 27 + type = types.bool; 28 + default = false; 29 + description = lib.mdDoc '' 30 + Open ports in the firewall for Readarr 31 + ''; 32 + }; 33 + 34 + user = mkOption { 35 + type = types.str; 36 + default = "readarr"; 37 + description = lib.mdDoc '' 38 + User account under which Readarr runs. 39 + ''; 40 + }; 41 + 42 + group = mkOption { 43 + type = types.str; 44 + default = "readarr"; 45 + description = lib.mdDoc '' 46 + Group under which Readarr runs. 47 + ''; 48 + }; 49 + }; 50 + }; 51 + 52 + config = mkIf cfg.enable { 53 + systemd.tmpfiles.rules = [ 54 + "d '${cfg.dataDir}' 0700 ${cfg.user} ${cfg.group} - -" 55 + ]; 56 + 57 + systemd.services.readarr = { 58 + description = "Readarr"; 59 + after = [ "network.target" ]; 60 + wantedBy = [ "multi-user.target" ]; 61 + 62 + serviceConfig = { 63 + Type = "simple"; 64 + User = cfg.user; 65 + Group = cfg.group; 66 + ExecStart = "${cfg.package}/bin/Readarr -nobrowser -data='${cfg.dataDir}'"; 67 + Restart = "on-failure"; 68 + }; 69 + }; 70 + 71 + networking.firewall = mkIf cfg.openFirewall { 72 + allowedTCPPorts = [ 8787 ]; 73 + }; 74 + 75 + users.users = mkIf (cfg.user == "readarr") { 76 + readarr = { 77 + description = "Readarr service"; 78 + home = cfg.dataDir; 79 + group = cfg.group; 80 + isSystemUser = true; 81 + }; 82 + }; 83 + 84 + users.groups = mkIf (cfg.group == "readarr") { 85 + readarr = { }; 86 + }; 87 + }; 88 + }
+203
nixos/modules/services/networking/cgit.nix
···
··· 1 + { config, lib, pkgs, ...}: 2 + 3 + with lib; 4 + 5 + let 6 + cfgs = config.services.cgit; 7 + 8 + settingType = with types; oneOf [ bool int str ]; 9 + 10 + genAttrs' = names: f: listToAttrs (map f names); 11 + 12 + regexEscape = 13 + let 14 + # taken from https://github.com/python/cpython/blob/05cb728d68a278d11466f9a6c8258d914135c96c/Lib/re.py#L251-L266 15 + special = [ 16 + "(" ")" "[" "]" "{" "}" "?" "*" "+" "-" "|" "^" "$" "\\" "." "&" "~" 17 + "#" " " "\t" "\n" "\r" "\v" "\f" 18 + ]; 19 + in 20 + replaceStrings special (map (c: "\\${c}") special); 21 + 22 + stripLocation = cfg: removeSuffix "/" cfg.nginx.location; 23 + 24 + regexLocation = cfg: regexEscape (stripLocation cfg); 25 + 26 + mkFastcgiPass = cfg: '' 27 + ${if cfg.nginx.location == "/" then '' 28 + fastcgi_param PATH_INFO $uri; 29 + '' else '' 30 + fastcgi_split_path_info ^(${regexLocation cfg})(/.+)$; 31 + fastcgi_param PATH_INFO $fastcgi_path_info; 32 + '' 33 + }fastcgi_pass unix:${config.services.fcgiwrap.socketAddress}; 34 + ''; 35 + 36 + cgitrcLine = name: value: "${name}=${ 37 + if value == true then 38 + "1" 39 + else if value == false then 40 + "0" 41 + else 42 + toString value 43 + }"; 44 + 45 + mkCgitrc = cfg: pkgs.writeText "cgitrc" '' 46 + # global settings 47 + ${concatStringsSep "\n" ( 48 + mapAttrsToList 49 + cgitrcLine 50 + ({ virtual-root = cfg.nginx.location; } // cfg.settings) 51 + ) 52 + } 53 + ${optionalString (cfg.scanPath != null) (cgitrcLine "scan-path" cfg.scanPath)} 54 + 55 + # repository settings 56 + ${concatStrings ( 57 + mapAttrsToList 58 + (url: settings: '' 59 + ${cgitrcLine "repo.url" url} 60 + ${concatStringsSep "\n" ( 61 + mapAttrsToList (name: cgitrcLine "repo.${name}") settings 62 + ) 63 + } 64 + '') 65 + cfg.repos 66 + ) 67 + } 68 + 69 + # extra config 70 + ${cfg.extraConfig} 71 + ''; 72 + 73 + mkCgitReposDir = cfg: 74 + if cfg.scanPath != null then 75 + cfg.scanPath 76 + else 77 + pkgs.runCommand "cgit-repos" { 78 + preferLocalBuild = true; 79 + allowSubstitutes = false; 80 + } '' 81 + mkdir -p "$out" 82 + ${ 83 + concatStrings ( 84 + mapAttrsToList 85 + (name: value: '' 86 + ln -s ${escapeShellArg value.path} "$out"/${escapeShellArg name} 87 + '') 88 + cfg.repos 89 + ) 90 + } 91 + ''; 92 + 93 + in 94 + { 95 + options = { 96 + services.cgit = mkOption { 97 + description = mdDoc "Configure cgit instances."; 98 + default = {}; 99 + type = types.attrsOf (types.submodule ({ config, ... }: { 100 + options = { 101 + enable = mkEnableOption (mdDoc "cgit"); 102 + 103 + package = mkPackageOptionMD pkgs "cgit" {}; 104 + 105 + nginx.virtualHost = mkOption { 106 + description = mdDoc "VirtualHost to serve cgit on, defaults to the attribute name."; 107 + type = types.str; 108 + default = config._module.args.name; 109 + example = "git.example.com"; 110 + }; 111 + 112 + nginx.location = mkOption { 113 + description = mdDoc "Location to serve cgit under."; 114 + type = types.str; 115 + default = "/"; 116 + example = "/git/"; 117 + }; 118 + 119 + repos = mkOption { 120 + description = mdDoc "cgit repository settings, see cgitrc(5)"; 121 + type = with types; attrsOf (attrsOf settingType); 122 + default = {}; 123 + example = { 124 + blah = { 125 + path = "/var/lib/git/example"; 126 + desc = "An example repository"; 127 + }; 128 + }; 129 + }; 130 + 131 + scanPath = mkOption { 132 + description = mdDoc "A path which will be scanned for repositories."; 133 + type = types.nullOr types.path; 134 + default = null; 135 + example = "/var/lib/git"; 136 + }; 137 + 138 + settings = mkOption { 139 + description = mdDoc "cgit configuration, see cgitrc(5)"; 140 + type = types.attrsOf settingType; 141 + default = {}; 142 + example = literalExpression '' 143 + { 144 + enable-follow-links = true; 145 + source-filter = "''${pkgs.cgit}/lib/cgit/filters/syntax-highlighting.py"; 146 + } 147 + ''; 148 + }; 149 + 150 + extraConfig = mkOption { 151 + description = mdDoc "These lines go to the end of cgitrc verbatim."; 152 + type = types.lines; 153 + default = ""; 154 + }; 155 + }; 156 + })); 157 + }; 158 + }; 159 + 160 + config = mkIf (any (cfg: cfg.enable) (attrValues cfgs)) { 161 + assertions = mapAttrsToList (vhost: cfg: { 162 + assertion = !cfg.enable || (cfg.scanPath == null) != (cfg.repos == {}); 163 + message = "Exactly one of services.cgit.${vhost}.scanPath or services.cgit.${vhost}.repos must be set."; 164 + }) cfgs; 165 + 166 + services.fcgiwrap.enable = true; 167 + 168 + services.nginx.enable = true; 169 + 170 + services.nginx.virtualHosts = mkMerge (mapAttrsToList (_: cfg: { 171 + ${cfg.nginx.virtualHost} = { 172 + locations = ( 173 + genAttrs' 174 + [ "cgit.css" "cgit.png" "favicon.ico" "robots.txt" ] 175 + (name: nameValuePair "= ${stripLocation cfg}/${name}" { 176 + extraConfig = '' 177 + alias ${cfg.package}/cgit/${name}; 178 + ''; 179 + }) 180 + ) // { 181 + "~ ${regexLocation cfg}/.+/(info/refs|git-upload-pack)" = { 182 + fastcgiParams = rec { 183 + SCRIPT_FILENAME = "${pkgs.git}/libexec/git-core/git-http-backend"; 184 + GIT_HTTP_EXPORT_ALL = "1"; 185 + GIT_PROJECT_ROOT = mkCgitReposDir cfg; 186 + HOME = GIT_PROJECT_ROOT; 187 + }; 188 + extraConfig = mkFastcgiPass cfg; 189 + }; 190 + "${stripLocation cfg}/" = { 191 + fastcgiParams = { 192 + SCRIPT_FILENAME = "${cfg.package}/cgit/cgit.cgi"; 193 + QUERY_STRING = "$args"; 194 + HTTP_HOST = "$server_name"; 195 + CGIT_CONFIG = mkCgitrc cfg; 196 + }; 197 + extraConfig = mkFastcgiPass cfg; 198 + }; 199 + }; 200 + }; 201 + }) cfgs); 202 + }; 203 + }
+1 -1
nixos/modules/services/networking/ntp/chrony.nix
··· 203 PrivateMounts = true; 204 # System Call Filtering 205 SystemCallArchitectures = "native"; 206 - SystemCallFilter = [ "~@cpu-emulation @debug @keyring @mount @obsolete @privileged @resources" "@clock" "@setuid" "capset" "chown" ] ++ lib.optional pkgs.stdenv.hostPlatform.isAarch64 "fchownat"; 207 }; 208 }; 209 };
··· 203 PrivateMounts = true; 204 # System Call Filtering 205 SystemCallArchitectures = "native"; 206 + SystemCallFilter = [ "~@cpu-emulation @debug @keyring @mount @obsolete @privileged @resources" "@clock" "@setuid" "capset" "@chown" ]; 207 }; 208 }; 209 };
+2
nixos/tests/all-tests.nix
··· 126 ceph-single-node-bluestore = handleTestOn ["x86_64-linux"] ./ceph-single-node-bluestore.nix {}; 127 certmgr = handleTest ./certmgr.nix {}; 128 cfssl = handleTestOn ["aarch64-linux" "x86_64-linux"] ./cfssl.nix {}; 129 charliecloud = handleTest ./charliecloud.nix {}; 130 chromium = (handleTestOn ["aarch64-linux" "x86_64-linux"] ./chromium.nix {}).stable or {}; 131 chrony-ptp = handleTestOn ["aarch64-linux" "x86_64-linux"] ./chrony-ptp.nix {}; ··· 585 radarr = handleTest ./radarr.nix {}; 586 radicale = handleTest ./radicale.nix {}; 587 rasdaemon = handleTest ./rasdaemon.nix {}; 588 redis = handleTest ./redis.nix {}; 589 redmine = handleTest ./redmine.nix {}; 590 restartByActivationScript = handleTest ./restart-by-activation-script.nix {};
··· 126 ceph-single-node-bluestore = handleTestOn ["x86_64-linux"] ./ceph-single-node-bluestore.nix {}; 127 certmgr = handleTest ./certmgr.nix {}; 128 cfssl = handleTestOn ["aarch64-linux" "x86_64-linux"] ./cfssl.nix {}; 129 + cgit = handleTest ./cgit.nix {}; 130 charliecloud = handleTest ./charliecloud.nix {}; 131 chromium = (handleTestOn ["aarch64-linux" "x86_64-linux"] ./chromium.nix {}).stable or {}; 132 chrony-ptp = handleTestOn ["aarch64-linux" "x86_64-linux"] ./chrony-ptp.nix {}; ··· 586 radarr = handleTest ./radarr.nix {}; 587 radicale = handleTest ./radicale.nix {}; 588 rasdaemon = handleTest ./rasdaemon.nix {}; 589 + readarr = handleTest ./readarr.nix {}; 590 redis = handleTest ./redis.nix {}; 591 redmine = handleTest ./redmine.nix {}; 592 restartByActivationScript = handleTest ./restart-by-activation-script.nix {};
+73
nixos/tests/cgit.nix
···
··· 1 + import ./make-test-python.nix ({ pkgs, ... }: 2 + let 3 + robotsTxt = pkgs.writeText "cgit-robots.txt" '' 4 + User-agent: * 5 + Disallow: / 6 + ''; 7 + in { 8 + name = "cgit"; 9 + meta = with pkgs.lib.maintainers; { 10 + maintainers = [ schnusch ]; 11 + }; 12 + 13 + nodes = { 14 + server = { ... }: { 15 + services.cgit."localhost" = { 16 + enable = true; 17 + package = pkgs.cgit.overrideAttrs ({ postInstall, ... }: { 18 + postInstall = '' 19 + ${postInstall} 20 + cp ${robotsTxt} "$out/cgit/robots.txt" 21 + ''; 22 + }); 23 + nginx.location = "/(c)git/"; 24 + repos = { 25 + some-repo = { 26 + path = "/srv/git/some-repo"; 27 + desc = "some-repo description"; 28 + }; 29 + }; 30 + }; 31 + 32 + environment.systemPackages = [ pkgs.git ]; 33 + }; 34 + }; 35 + 36 + testScript = { nodes, ... }: '' 37 + start_all() 38 + 39 + server.wait_for_unit("nginx.service") 40 + server.wait_for_unit("network.target") 41 + server.wait_for_open_port(80) 42 + 43 + server.succeed("curl -fsS http://localhost/%28c%29git/cgit.css") 44 + 45 + server.succeed("curl -fsS http://localhost/%28c%29git/robots.txt | diff -u - ${robotsTxt}") 46 + 47 + server.succeed( 48 + "curl -fsS http://localhost/%28c%29git/ | grep -F 'some-repo description'" 49 + ) 50 + 51 + server.fail("curl -fsS http://localhost/robots.txt") 52 + 53 + server.succeed("${pkgs.writeShellScript "setup-cgit-test-repo" '' 54 + set -e 55 + git init --bare -b master /srv/git/some-repo 56 + git init -b master reference 57 + cd reference 58 + git remote add origin /srv/git/some-repo 59 + date > date.txt 60 + git add date.txt 61 + git -c user.name=test -c user.email=test@localhost commit -m 'add date' 62 + git push -u origin master 63 + ''}") 64 + 65 + server.succeed( 66 + "curl -fsS 'http://localhost/%28c%29git/some-repo/plain/date.txt?id=master' | diff -u reference/date.txt -" 67 + ) 68 + 69 + server.succeed( 70 + "git clone http://localhost/%28c%29git/some-repo && diff -u reference/date.txt some-repo/date.txt" 71 + ) 72 + ''; 73 + })
+18
nixos/tests/readarr.nix
···
··· 1 + import ./make-test-python.nix ({ lib, ... }: 2 + 3 + with lib; 4 + 5 + { 6 + name = "readarr"; 7 + meta.maintainers = with maintainers; [ jocelynthode ]; 8 + 9 + nodes.machine = 10 + { pkgs, ... }: 11 + { services.readarr.enable = true; }; 12 + 13 + testScript = '' 14 + machine.wait_for_unit("readarr.service") 15 + machine.wait_for_open_port(8787) 16 + machine.succeed("curl --fail http://localhost:8787/") 17 + ''; 18 + })
+314 -338
pkgs/applications/editors/vim/plugins/generated.nix
··· 29 30 ChatGPT-nvim = buildVimPluginFrom2Nix { 31 pname = "ChatGPT.nvim"; 32 - version = "2023-03-04"; 33 src = fetchFromGitHub { 34 owner = "jackMort"; 35 repo = "ChatGPT.nvim"; 36 - rev = "1ebbec2053a5d79bfbffc5291396fdbeea41329b"; 37 - sha256 = "0finyr9xzy69pdgniwzhv08mkasg4kpay6g0viw0vskv4a5a58ki"; 38 }; 39 meta.homepage = "https://github.com/jackMort/ChatGPT.nvim/"; 40 }; ··· 293 294 SchemaStore-nvim = buildVimPluginFrom2Nix { 295 pname = "SchemaStore.nvim"; 296 - version = "2023-03-02"; 297 src = fetchFromGitHub { 298 owner = "b0o"; 299 repo = "SchemaStore.nvim"; 300 - rev = "809c05360a0dabfc018093a090045d292d362ef4"; 301 - sha256 = "0snw06vb1vi34j99r4ivil4byqd40hv35f0qcfsrzga25s8gi055"; 302 }; 303 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 304 }; ··· 353 354 SpaceVim = buildVimPluginFrom2Nix { 355 pname = "SpaceVim"; 356 - version = "2023-02-21"; 357 src = fetchFromGitHub { 358 owner = "SpaceVim"; 359 repo = "SpaceVim"; 360 - rev = "4c07aa025f5ec3c35159942fd4f913499cbed3cc"; 361 - sha256 = "0grpcsdswa2ig2v3dw225qw67hz7cpvd7fhszbnnvqwfmnmzqyz9"; 362 }; 363 meta.homepage = "https://github.com/SpaceVim/SpaceVim/"; 364 }; 365 366 - Spacegray-vim = buildVimPluginFrom2Nix { 367 - pname = "Spacegray.vim"; 368 - version = "2021-07-06"; 369 - src = fetchFromGitHub { 370 - owner = "ackyshake"; 371 - repo = "Spacegray.vim"; 372 - rev = "c699ca10ed421c462bd1c87a158faaa570dc8e28"; 373 - sha256 = "0ma8w6p5jh6llka49x5j5ql8fmhv0bx5hhsn5b2phak79yqg1k61"; 374 - }; 375 - meta.homepage = "https://github.com/ackyshake/Spacegray.vim/"; 376 - }; 377 - 378 SudoEdit-vim = buildVimPluginFrom2Nix { 379 pname = "SudoEdit.vim"; 380 version = "2022-11-03"; ··· 387 meta.homepage = "https://github.com/chrisbra/SudoEdit.vim/"; 388 }; 389 390 - VimCompletesMe = buildVimPluginFrom2Nix { 391 - pname = "VimCompletesMe"; 392 - version = "2022-02-18"; 393 - src = fetchFromGitHub { 394 - owner = "ackyshake"; 395 - repo = "VimCompletesMe"; 396 - rev = "9adf692d7ae6424038458a89d4a411f0a27d1388"; 397 - sha256 = "1sndgb3291dyifaa8adri2mb8cgbinbar3nw1fnf67k9ahwycaz0"; 398 - }; 399 - meta.homepage = "https://github.com/ackyshake/VimCompletesMe/"; 400 - }; 401 - 402 VimOrganizer = buildVimPluginFrom2Nix { 403 pname = "VimOrganizer"; 404 version = "2020-12-15"; ··· 449 450 YouCompleteMe = buildVimPluginFrom2Nix { 451 pname = "YouCompleteMe"; 452 - version = "2023-02-27"; 453 src = fetchFromGitHub { 454 owner = "ycm-core"; 455 repo = "YouCompleteMe"; 456 - rev = "0de94d11f9286ecd176aa8a7299aabb8646d16c9"; 457 - sha256 = "0lfq8vsh46sdjf310fn6zvc6hpbr2z12cac6shrvvjdwn4wpbfz0"; 458 fetchSubmodules = true; 459 }; 460 meta.homepage = "https://github.com/ycm-core/YouCompleteMe/"; ··· 535 536 ai-vim = buildVimPluginFrom2Nix { 537 pname = "ai.vim"; 538 - version = "2023-03-05"; 539 src = fetchFromGitHub { 540 owner = "aduros"; 541 repo = "ai.vim"; 542 - rev = "436d3d9d490367c9f47c6ef427daca1c0942ea22"; 543 - sha256 = "1fm02v0npvl6cfddq5yy55rw3a0h76x76vvcglgcw8w9xcq9aviv"; 544 }; 545 meta.homepage = "https://github.com/aduros/ai.vim/"; 546 }; ··· 559 560 ale = buildVimPluginFrom2Nix { 561 pname = "ale"; 562 - version = "2023-02-21"; 563 src = fetchFromGitHub { 564 owner = "dense-analysis"; 565 repo = "ale"; 566 - rev = "c8e914604963063b7bb827e9b6f5a6ca741dad60"; 567 - sha256 = "1qsj1gpgg946q49awy700a5z2kdn4dhlnswqjx6qi7jdv8ly8slv"; 568 }; 569 meta.homepage = "https://github.com/dense-analysis/ale/"; 570 }; ··· 583 584 alpha-nvim = buildVimPluginFrom2Nix { 585 pname = "alpha-nvim"; 586 - version = "2023-03-03"; 587 src = fetchFromGitHub { 588 owner = "goolord"; 589 repo = "alpha-nvim"; 590 - rev = "4b0ba68022d8612b04b26844f1ce5e708c0d23b0"; 591 - sha256 = "06vswjzazbnybj2a6prsd9ckgk36fwj0059vhk55qjxsalrh0zfv"; 592 }; 593 meta.homepage = "https://github.com/goolord/alpha-nvim/"; 594 }; ··· 727 728 aurora = buildVimPluginFrom2Nix { 729 pname = "aurora"; 730 - version = "2023-02-16"; 731 src = fetchFromGitHub { 732 owner = "ray-x"; 733 repo = "aurora"; 734 - rev = "7c1be58365428ef18c3621bacc5aaf188f8a4b9e"; 735 - sha256 = "196km3z2pl0zbk8sy7c8z82a7wicla15ylfdraxpxh362sry8ayq"; 736 }; 737 meta.homepage = "https://github.com/ray-x/aurora/"; 738 }; ··· 775 776 auto-session = buildVimPluginFrom2Nix { 777 pname = "auto-session"; 778 - version = "2023-02-11"; 779 src = fetchFromGitHub { 780 owner = "rmagatti"; 781 repo = "auto-session"; 782 - rev = "04ccdac802200ecc363b251cf922b2b022bb515c"; 783 - sha256 = "02xvdvy0jakpbgkp33ll21rcqpiybngwgxjsvvw6wg4wqg8dzykv"; 784 }; 785 meta.homepage = "https://github.com/rmagatti/auto-session/"; 786 }; ··· 847 848 barbar-nvim = buildVimPluginFrom2Nix { 849 pname = "barbar.nvim"; 850 - version = "2023-03-02"; 851 src = fetchFromGitHub { 852 owner = "romgrk"; 853 repo = "barbar.nvim"; 854 - rev = "b2956f1a3cb8a8e1b6cd4d3f678cc40abdb5ec92"; 855 - sha256 = "1b57ryzcl9ff4nky8zq3lzg9g96pl3ig3c4kmiz8dg0zjgsn0x4p"; 856 }; 857 meta.homepage = "https://github.com/romgrk/barbar.nvim/"; 858 }; 859 860 barbecue-nvim = buildVimPluginFrom2Nix { 861 pname = "barbecue.nvim"; 862 - version = "2023-02-23"; 863 src = fetchFromGitHub { 864 owner = "utilyre"; 865 repo = "barbecue.nvim"; 866 - rev = "23348f3979912fb36a1442fb0d07e8d2e739aea2"; 867 - sha256 = "0lwpx013yxq28s0k5k0sbbyb8nxmjr8nl6xsy2zjillb3rkkaf7v"; 868 }; 869 meta.homepage = "https://github.com/utilyre/barbecue.nvim/"; 870 }; ··· 1087 1088 ccc-nvim = buildVimPluginFrom2Nix { 1089 pname = "ccc.nvim"; 1090 - version = "2023-03-03"; 1091 src = fetchFromGitHub { 1092 owner = "uga-rosa"; 1093 repo = "ccc.nvim"; 1094 - rev = "e66fd3a18eff0c9c4c772a5e5fd9ad68753c6d8e"; 1095 - sha256 = "0205xra3ag9x6l173y5gfxjkmhzgp02slfarx5930j50k0mmn5is"; 1096 }; 1097 meta.homepage = "https://github.com/uga-rosa/ccc.nvim/"; 1098 }; ··· 1159 1160 clangd_extensions-nvim = buildVimPluginFrom2Nix { 1161 pname = "clangd_extensions.nvim"; 1162 - version = "2023-02-20"; 1163 src = fetchFromGitHub { 1164 owner = "p00f"; 1165 repo = "clangd_extensions.nvim"; 1166 - rev = "722ee39d4c1b309bef4a6c2da1749c3e3358757f"; 1167 - sha256 = "1wdni05s0d1p5wmzr30sazqm3fi8n178jf1fdwwlbjpvalgjn5kp"; 1168 }; 1169 meta.homepage = "https://github.com/p00f/clangd_extensions.nvim/"; 1170 }; ··· 1891 1892 comment-nvim = buildVimPluginFrom2Nix { 1893 pname = "comment.nvim"; 1894 - version = "2023-02-16"; 1895 src = fetchFromGitHub { 1896 owner = "numtostr"; 1897 repo = "comment.nvim"; 1898 - rev = "6821b3ae27a57f1f3cf8ed030e4a55d70d0c4e43"; 1899 - sha256 = "1c3qrbjzz0kl1k1gjkgil0ni944ac80ps76rdhs9jd7chbn7l0sb"; 1900 }; 1901 meta.homepage = "https://github.com/numtostr/comment.nvim/"; 1902 }; ··· 1963 1964 compiler-explorer-nvim = buildVimPluginFrom2Nix { 1965 pname = "compiler-explorer.nvim"; 1966 - version = "2023-02-06"; 1967 src = fetchFromGitHub { 1968 owner = "krady21"; 1969 repo = "compiler-explorer.nvim"; 1970 - rev = "26009c1d6265a6b6e86d8e74a81a235892f67e87"; 1971 - sha256 = "0g2b0mxssx6sjmn2iqlipwj50jmw8hfq648xcg3f78phmn03b4s4"; 1972 }; 1973 meta.homepage = "https://github.com/krady21/compiler-explorer.nvim/"; 1974 }; ··· 2155 2156 coq_nvim = buildVimPluginFrom2Nix { 2157 pname = "coq_nvim"; 2158 - version = "2023-03-05"; 2159 src = fetchFromGitHub { 2160 owner = "ms-jpq"; 2161 repo = "coq_nvim"; 2162 - rev = "a25bbdd8fb1bf0259f255c73e1119c3a75727a93"; 2163 - sha256 = "11ddr1prx4k3vkg66h6fwwjdlr1l0zc69j73l80sgjy6v8n32dvm"; 2164 }; 2165 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 2166 }; ··· 2191 2192 crates-nvim = buildVimPluginFrom2Nix { 2193 pname = "crates.nvim"; 2194 - version = "2023-02-22"; 2195 src = fetchFromGitHub { 2196 owner = "saecki"; 2197 repo = "crates.nvim"; 2198 - rev = "c33aae75745877ee1ef16f5781478f4f2f120623"; 2199 - sha256 = "1yd7msvgvbmvnnvv94izl33cnny36bmpnv4hkw757j7p88yxpan5"; 2200 }; 2201 meta.homepage = "https://github.com/saecki/crates.nvim/"; 2202 }; ··· 2299 2300 dashboard-nvim = buildVimPluginFrom2Nix { 2301 pname = "dashboard-nvim"; 2302 - version = "2023-03-06"; 2303 src = fetchFromGitHub { 2304 owner = "glepnir"; 2305 repo = "dashboard-nvim"; 2306 - rev = "d6362d5dc18caee23e580ce4b39cdca71d99a7f3"; 2307 - sha256 = "1mjlqs8pvccqrmq0wygnr7arydllyvzznj68bzki23wmbdpa256n"; 2308 }; 2309 meta.homepage = "https://github.com/glepnir/dashboard-nvim/"; 2310 }; ··· 2395 2396 deol-nvim = buildVimPluginFrom2Nix { 2397 pname = "deol.nvim"; 2398 - version = "2023-03-03"; 2399 src = fetchFromGitHub { 2400 owner = "Shougo"; 2401 repo = "deol.nvim"; 2402 - rev = "28acc58a394b5faf718ad40243164e5f588f2df5"; 2403 - sha256 = "0p9fcvn1x5hng9z8ra3v7nyybdshsq53vw76gl554klwg91gn8ak"; 2404 }; 2405 meta.homepage = "https://github.com/Shougo/deol.nvim/"; 2406 }; ··· 2685 2686 diffview-nvim = buildVimPluginFrom2Nix { 2687 pname = "diffview.nvim"; 2688 - version = "2023-03-05"; 2689 src = fetchFromGitHub { 2690 owner = "sindrets"; 2691 repo = "diffview.nvim"; 2692 - rev = "ffeff288c47739a1fcb411343716b993bfaa48e5"; 2693 - sha256 = "0hbcsigr7i02krr4wnbw6ib2c202iz2vrnckck32a89si01m1l38"; 2694 }; 2695 meta.homepage = "https://github.com/sindrets/diffview.nvim/"; 2696 }; ··· 2781 2782 editorconfig-vim = buildVimPluginFrom2Nix { 2783 pname = "editorconfig-vim"; 2784 - version = "2023-02-07"; 2785 src = fetchFromGitHub { 2786 owner = "editorconfig"; 2787 repo = "editorconfig-vim"; 2788 - rev = "1d54632f7fcad38df8e428f349bc58b15af4b206"; 2789 - sha256 = "1692rzbv64332wi0cmyf0g5m8k039vvrijxmryrqnxaf15493mbw"; 2790 fetchSubmodules = true; 2791 }; 2792 meta.homepage = "https://github.com/editorconfig/editorconfig-vim/"; ··· 2917 pname = "feline.nvim"; 2918 version = "2022-12-22"; 2919 src = fetchFromGitHub { 2920 - owner = "feline-nvim"; 2921 repo = "feline.nvim"; 2922 rev = "d48b6f92c6ccdd6654c956f437be49ea160b5b0c"; 2923 sha256 = "1d3sj499mj63djy2bjp7yx5qyrzsq8gphzy3wl9fnfnni1bzwg4g"; 2924 }; 2925 - meta.homepage = "https://github.com/feline-nvim/feline.nvim/"; 2926 }; 2927 2928 fennel-vim = buildVimPluginFrom2Nix { ··· 2939 2940 fern-vim = buildVimPluginFrom2Nix { 2941 pname = "fern.vim"; 2942 - version = "2023-02-08"; 2943 src = fetchFromGitHub { 2944 owner = "lambdalisue"; 2945 repo = "fern.vim"; 2946 - rev = "1856f0390b1ae15d446b94dc47ccf5b967537ad1"; 2947 - sha256 = "06c54lhn30ibn721l6vh5gx4kdyrk39w2kkcwrlhskpx6dipava5"; 2948 }; 2949 meta.homepage = "https://github.com/lambdalisue/fern.vim/"; 2950 }; ··· 2987 2988 firenvim = buildVimPluginFrom2Nix { 2989 pname = "firenvim"; 2990 - version = "2023-03-01"; 2991 src = fetchFromGitHub { 2992 owner = "glacambre"; 2993 repo = "firenvim"; 2994 - rev = "8a5bde3dc52c58c40ddc9784149ba21489371021"; 2995 - sha256 = "1mnf46i1xydms08kzp52d58k9hk0f8qx0h83hnxvy1yv09q4q4cr"; 2996 }; 2997 meta.homepage = "https://github.com/glacambre/firenvim/"; 2998 }; ··· 3216 3217 fzf-lua = buildVimPluginFrom2Nix { 3218 pname = "fzf-lua"; 3219 - version = "2023-02-27"; 3220 src = fetchFromGitHub { 3221 owner = "ibhagwan"; 3222 repo = "fzf-lua"; 3223 - rev = "d4c2e3f32da453afb55e1becbe4b92357576db9b"; 3224 - sha256 = "0hji2bm5d8yvz7m07bab7qb58is3n17z9xl8sfxhj19k20917bbz"; 3225 }; 3226 meta.homepage = "https://github.com/ibhagwan/fzf-lua/"; 3227 }; ··· 3264 3265 gentoo-syntax = buildVimPluginFrom2Nix { 3266 pname = "gentoo-syntax"; 3267 - version = "2023-02-08"; 3268 src = fetchFromGitHub { 3269 owner = "gentoo"; 3270 repo = "gentoo-syntax"; 3271 - rev = "8340095e5a8263494abadf5a81970ff92091e004"; 3272 - sha256 = "0glp8nnj9jsps465srn59bdc6g5pnyrs3n9kxghp0wzf8hrx2zic"; 3273 }; 3274 meta.homepage = "https://github.com/gentoo/gentoo-syntax/"; 3275 }; ··· 3372 3373 gitsigns-nvim = buildNeovimPluginFrom2Nix { 3374 pname = "gitsigns.nvim"; 3375 - version = "2023-03-01"; 3376 src = fetchFromGitHub { 3377 owner = "lewis6991"; 3378 repo = "gitsigns.nvim"; 3379 - rev = "3b6c0a6412b31b91eb26bb8f712562cf7bb1d3be"; 3380 - sha256 = "07r6qplvm4svc0cj4khsa83bc66dkrv93jbb1vg9l0v9h5ds8b9p"; 3381 }; 3382 meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; 3383 }; ··· 3432 3433 go-nvim = buildVimPluginFrom2Nix { 3434 pname = "go.nvim"; 3435 - version = "2023-03-06"; 3436 src = fetchFromGitHub { 3437 owner = "ray-x"; 3438 repo = "go.nvim"; 3439 - rev = "0225f85e0a3246c6daf1ecbbbf9009d754879643"; 3440 - sha256 = "0pdy3856p9apll1jlm0z7knkjkx61c03pbi0997zsgaskxr3h6qr"; 3441 }; 3442 meta.homepage = "https://github.com/ray-x/go.nvim/"; 3443 }; ··· 3564 3565 gruvbox-nvim = buildVimPluginFrom2Nix { 3566 pname = "gruvbox.nvim"; 3567 - version = "2023-02-27"; 3568 src = fetchFromGitHub { 3569 owner = "ellisonleao"; 3570 repo = "gruvbox.nvim"; 3571 - rev = "3e31f9ab01fed42ebac75738c681daacb8c82bff"; 3572 - sha256 = "0klqcd3cdyzvbbl26yz482a3sj2qyfb9f2xkf91hnzb2dx2cazhz"; 3573 }; 3574 meta.homepage = "https://github.com/ellisonleao/gruvbox.nvim/"; 3575 }; ··· 3635 3636 haskell-tools-nvim = buildNeovimPluginFrom2Nix { 3637 pname = "haskell-tools.nvim"; 3638 - version = "2023-03-05"; 3639 src = fetchFromGitHub { 3640 owner = "MrcJkb"; 3641 repo = "haskell-tools.nvim"; 3642 - rev = "29a1619e56a0ff024587e0c482d1a691576343d3"; 3643 - sha256 = "1zd50s1h44lhp6apy6nvddl0l0mapl4m96gjasgyg2bsrsyczz6l"; 3644 }; 3645 meta.homepage = "https://github.com/MrcJkb/haskell-tools.nvim/"; 3646 }; ··· 3683 3684 heirline-nvim = buildVimPluginFrom2Nix { 3685 pname = "heirline.nvim"; 3686 - version = "2023-02-19"; 3687 src = fetchFromGitHub { 3688 owner = "rebelot"; 3689 repo = "heirline.nvim"; 3690 - rev = "b69415d912d466db17b8ee1eb777cc7f776a9286"; 3691 - sha256 = "0pv320i23wwp58xy3lpiy4j90y6fl8frmw19nk0c8dy9c10pdg6s"; 3692 }; 3693 meta.homepage = "https://github.com/rebelot/heirline.nvim/"; 3694 }; ··· 4103 4104 kanagawa-nvim = buildVimPluginFrom2Nix { 4105 pname = "kanagawa.nvim"; 4106 - version = "2023-03-06"; 4107 src = fetchFromGitHub { 4108 owner = "rebelot"; 4109 repo = "kanagawa.nvim"; 4110 - rev = "193427320939d111845bd095b301d9d57e6f28f6"; 4111 - sha256 = "0wd6wkgbr9vfsji7g7b0zbsxykq1yiya8nsy9r8qkdxq1cn1isjg"; 4112 }; 4113 meta.homepage = "https://github.com/rebelot/kanagawa.nvim/"; 4114 }; ··· 4187 4188 lazy-lsp-nvim = buildVimPluginFrom2Nix { 4189 pname = "lazy-lsp.nvim"; 4190 - version = "2023-02-27"; 4191 src = fetchFromGitHub { 4192 owner = "dundalek"; 4193 repo = "lazy-lsp.nvim"; 4194 - rev = "92a7cc4e4122e38f5fd5ee68f34416b3cf9f477d"; 4195 - sha256 = "0pgh22lv711iafkivbpfbpdkb3fw8zfrqpz30glxcdamva178fx5"; 4196 }; 4197 meta.homepage = "https://github.com/dundalek/lazy-lsp.nvim/"; 4198 }; 4199 4200 lazy-nvim = buildVimPluginFrom2Nix { 4201 pname = "lazy.nvim"; 4202 - version = "2023-03-06"; 4203 src = fetchFromGitHub { 4204 owner = "folke"; 4205 repo = "lazy.nvim"; 4206 - rev = "e89acede13f46a5db229133cf0c87aee74938c56"; 4207 - sha256 = "0ynhwx4q73fqzlkkyfahlxd4rd231w1bymmjj621k3dpkcw1gw7k"; 4208 }; 4209 meta.homepage = "https://github.com/folke/lazy.nvim/"; 4210 }; ··· 4259 4260 leap-nvim = buildVimPluginFrom2Nix { 4261 pname = "leap.nvim"; 4262 - version = "2023-03-03"; 4263 src = fetchFromGitHub { 4264 owner = "ggandor"; 4265 repo = "leap.nvim"; 4266 - rev = "d34680b16af977928228e57c68e5a162f1649e3c"; 4267 - sha256 = "1ykqzjakhpyr8znxilg4w0xgadkq3p93d6mkp3n4my886i6d4881"; 4268 }; 4269 meta.homepage = "https://github.com/ggandor/leap.nvim/"; 4270 }; ··· 4607 4608 lsp-zero-nvim = buildVimPluginFrom2Nix { 4609 pname = "lsp-zero.nvim"; 4610 - version = "2023-03-04"; 4611 src = fetchFromGitHub { 4612 owner = "VonHeikemen"; 4613 repo = "lsp-zero.nvim"; 4614 - rev = "79d2091809a295aba94f9ea72cd622bca198d046"; 4615 - sha256 = "0vq1n4c2qk84vr4axzkqy2svc3z2kanvqd7apdiqb0zh59qc8bw6"; 4616 }; 4617 meta.homepage = "https://github.com/VonHeikemen/lsp-zero.nvim/"; 4618 }; ··· 4714 4715 luasnip = buildVimPluginFrom2Nix { 4716 pname = "luasnip"; 4717 - version = "2023-03-05"; 4718 src = fetchFromGitHub { 4719 owner = "l3mon4d3"; 4720 repo = "luasnip"; 4721 - rev = "9b5be5e9b460fad7134991d3fd0434466959db08"; 4722 - sha256 = "197yzj8i7bqbnikhq89cza9wj1hbhd4yhyj77b5iwv26p252jnbq"; 4723 fetchSubmodules = true; 4724 }; 4725 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; ··· 4739 4740 lush-nvim = buildNeovimPluginFrom2Nix { 4741 pname = "lush.nvim"; 4742 - version = "2023-01-02"; 4743 src = fetchFromGitHub { 4744 owner = "rktjmp"; 4745 repo = "lush.nvim"; 4746 - rev = "b1e8eb1da3fee95ef31515a73c9eff9bf251088d"; 4747 - sha256 = "0q3prq4fm9rpczl7b1lgqnhs0z5jgvpdy0cp45jfpw4bvcy6vkpq"; 4748 }; 4749 meta.homepage = "https://github.com/rktjmp/lush.nvim/"; 4750 }; ··· 4787 4788 mason-lspconfig-nvim = buildVimPluginFrom2Nix { 4789 pname = "mason-lspconfig.nvim"; 4790 - version = "2023-03-03"; 4791 src = fetchFromGitHub { 4792 owner = "williamboman"; 4793 repo = "mason-lspconfig.nvim"; 4794 - rev = "e4badf7984f7a5f0ac7dc10657dbedbd99a82f94"; 4795 - sha256 = "0s7jrvbd75zfhf07jf3gihv2j6rrvwfbvdwd07k14hzhm46xw914"; 4796 }; 4797 meta.homepage = "https://github.com/williamboman/mason-lspconfig.nvim/"; 4798 }; ··· 4811 4812 mason-nvim = buildVimPluginFrom2Nix { 4813 pname = "mason.nvim"; 4814 - version = "2023-03-05"; 4815 src = fetchFromGitHub { 4816 owner = "williamboman"; 4817 repo = "mason.nvim"; 4818 - rev = "8dbd5ca28c70f15814d1749717f86da9bfd1c8ba"; 4819 - sha256 = "0v8irgx18spljayrv1pdpnmnl4c9qsl74fny9b6kf9lrp2xbmfwk"; 4820 }; 4821 meta.homepage = "https://github.com/williamboman/mason.nvim/"; 4822 }; ··· 4835 4836 material-nvim = buildVimPluginFrom2Nix { 4837 pname = "material.nvim"; 4838 - version = "2023-03-02"; 4839 src = fetchFromGitHub { 4840 owner = "marko-cerovac"; 4841 repo = "material.nvim"; 4842 - rev = "bd945ff7374dedebd0868f262aa8452d5f0f1910"; 4843 - sha256 = "1pqsnnqb7byia9figdjnkqrn0ppria39d039xx772n2nsyz9n070"; 4844 }; 4845 meta.homepage = "https://github.com/marko-cerovac/material.nvim/"; 4846 }; ··· 4883 4884 mini-nvim = buildVimPluginFrom2Nix { 4885 pname = "mini.nvim"; 4886 - version = "2023-03-04"; 4887 src = fetchFromGitHub { 4888 owner = "echasnovski"; 4889 repo = "mini.nvim"; 4890 - rev = "c65901227e5a3671dbcb054745566a1c78f9f0c8"; 4891 - sha256 = "1100nsfnryg2xdjza1ar01s080jahafwwcpzn01fgkkr32kvvkrj"; 4892 }; 4893 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 4894 }; ··· 5243 5244 neoconf-nvim = buildVimPluginFrom2Nix { 5245 pname = "neoconf.nvim"; 5246 - version = "2023-03-06"; 5247 src = fetchFromGitHub { 5248 owner = "folke"; 5249 repo = "neoconf.nvim"; 5250 - rev = "c2604560ea764ad5f72e52f38c52ef7fc2d1be98"; 5251 - sha256 = "1azfgk373wy883lmfwv7kp4y213nx9kcxn76v274mb5dl2bi4k4n"; 5252 }; 5253 meta.homepage = "https://github.com/folke/neoconf.nvim/"; 5254 }; ··· 5267 5268 neodev-nvim = buildVimPluginFrom2Nix { 5269 pname = "neodev.nvim"; 5270 - version = "2023-03-03"; 5271 src = fetchFromGitHub { 5272 owner = "folke"; 5273 repo = "neodev.nvim"; 5274 - rev = "c6b8ff8f0d261c8fb99a55ec7cc5dcf9cb928293"; 5275 - sha256 = "1zsj7rbvv0sjz5sbhwp7zzbap490vgivispbqnvgafxyk0v78xni"; 5276 }; 5277 meta.homepage = "https://github.com/folke/neodev.nvim/"; 5278 }; ··· 5303 5304 neogit = buildVimPluginFrom2Nix { 5305 pname = "neogit"; 5306 - version = "2023-03-03"; 5307 src = fetchFromGitHub { 5308 owner = "TimUntersberger"; 5309 repo = "neogit"; 5310 - rev = "85380916cec322b1351785cac4f4e3f24de36b2a"; 5311 - sha256 = "0pyykjbwih2zswigqrganm9aaw6brdpxacy8vyr2p9xkv2nsli1k"; 5312 }; 5313 meta.homepage = "https://github.com/TimUntersberger/neogit/"; 5314 }; ··· 5363 5364 neorg = buildVimPluginFrom2Nix { 5365 pname = "neorg"; 5366 - version = "2023-02-28"; 5367 src = fetchFromGitHub { 5368 owner = "nvim-neorg"; 5369 repo = "neorg"; 5370 - rev = "764dec5de14947f2f5d08bd3e0452324538e9a4d"; 5371 - sha256 = "0qii2n70xlh5s8icnpgb1yn86w262p6smk0a2qyqrgy2m64ayjin"; 5372 }; 5373 meta.homepage = "https://github.com/nvim-neorg/neorg/"; 5374 }; ··· 5411 5412 neoterm = buildVimPluginFrom2Nix { 5413 pname = "neoterm"; 5414 - version = "2022-08-22"; 5415 src = fetchFromGitHub { 5416 owner = "kassio"; 5417 repo = "neoterm"; 5418 - rev = "e1148589b8b9e1e72ef755d4495286c3b8516771"; 5419 - sha256 = "06k0r92qhgp1sb1jacfwxqbzn69cw604s5qla4q32a38a2spbmcr"; 5420 }; 5421 meta.homepage = "https://github.com/kassio/neoterm/"; 5422 }; ··· 5435 5436 neotest-haskell = buildVimPluginFrom2Nix { 5437 pname = "neotest-haskell"; 5438 - version = "2023-03-05"; 5439 src = fetchFromGitHub { 5440 owner = "MrcJkb"; 5441 repo = "neotest-haskell"; 5442 - rev = "2cbceaf57884b2548bb5516acea342944c983216"; 5443 - sha256 = "03wfi20l278yx0v95a5hwj91zcriqzjdl3hdl34hjkw6glj3sr3h"; 5444 }; 5445 meta.homepage = "https://github.com/MrcJkb/neotest-haskell/"; 5446 }; ··· 5567 5568 nightfox-nvim = buildVimPluginFrom2Nix { 5569 pname = "nightfox.nvim"; 5570 - version = "2023-03-05"; 5571 src = fetchFromGitHub { 5572 owner = "EdenEast"; 5573 repo = "nightfox.nvim"; 5574 - rev = "3f647a560306306cb35854d639b39717f5390175"; 5575 - sha256 = "0vlq852jr1mjaf2x1npi27jh3i6bl8npvpfkcrgjcigd8hwcr206"; 5576 }; 5577 meta.homepage = "https://github.com/EdenEast/nightfox.nvim/"; 5578 }; ··· 5603 5604 nlsp-settings-nvim = buildVimPluginFrom2Nix { 5605 pname = "nlsp-settings.nvim"; 5606 - version = "2023-03-06"; 5607 src = fetchFromGitHub { 5608 owner = "tamago324"; 5609 repo = "nlsp-settings.nvim"; 5610 - rev = "7be82f345f82f304ae817e3910d001aa96be01b1"; 5611 - sha256 = "1skrfbn196q1vhbvkh2z57ix32lfyhycbgkzpaf80f59jkcclwrq"; 5612 }; 5613 meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; 5614 }; ··· 5661 meta.homepage = "https://github.com/folke/noice.nvim/"; 5662 }; 5663 5664 - nord-vim = buildVimPluginFrom2Nix { 5665 - pname = "nord-vim"; 5666 - version = "2022-10-08"; 5667 - src = fetchFromGitHub { 5668 - owner = "arcticicestudio"; 5669 - repo = "nord-vim"; 5670 - rev = "0748955e9e8d9770b44f2bec8456189430b37d9d"; 5671 - sha256 = "1xifxwyjwfr9z801mm9sfh2sy0xf5ydhbg8ssi5mpdilffpkghp6"; 5672 - }; 5673 - meta.homepage = "https://github.com/arcticicestudio/nord-vim/"; 5674 - }; 5675 - 5676 nord-nvim = buildVimPluginFrom2Nix { 5677 pname = "nord.nvim"; 5678 version = "2023-01-20"; ··· 5723 5724 null-ls-nvim = buildVimPluginFrom2Nix { 5725 pname = "null-ls.nvim"; 5726 - version = "2023-03-04"; 5727 src = fetchFromGitHub { 5728 owner = "jose-elias-alvarez"; 5729 repo = "null-ls.nvim"; 5730 - rev = "456cd2754c56c991c5e4df60a807d054c1bc7148"; 5731 - sha256 = "03nhv5iby38x6whs3ialqsi16482w96mz5dhkq5qki3mkcaqin8z"; 5732 }; 5733 meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; 5734 }; ··· 5783 5784 nvim-autopairs = buildVimPluginFrom2Nix { 5785 pname = "nvim-autopairs"; 5786 - version = "2023-03-01"; 5787 src = fetchFromGitHub { 5788 owner = "windwp"; 5789 repo = "nvim-autopairs"; 5790 - rev = "ab49517cfd1765b3f3de52c1f0fda6190b44e27b"; 5791 - sha256 = "059whyg91hi7abr14fg60pfpnm87cl1iqz31hfl5wiiwrfaa1fsf"; 5792 }; 5793 meta.homepage = "https://github.com/windwp/nvim-autopairs/"; 5794 }; 5795 5796 nvim-base16 = buildVimPluginFrom2Nix { 5797 pname = "nvim-base16"; 5798 - version = "2023-03-05"; 5799 src = fetchFromGitHub { 5800 owner = "RRethy"; 5801 repo = "nvim-base16"; 5802 - rev = "0cab02bac9ca02a70db9e1d07e25fdb630b18a21"; 5803 - sha256 = "1id7k4kknckivgxjxp90b5hkxyyfrfka4kvyiid6aa2lz1nmcbpb"; 5804 }; 5805 meta.homepage = "https://github.com/RRethy/nvim-base16/"; 5806 }; ··· 5819 5820 nvim-bqf = buildVimPluginFrom2Nix { 5821 pname = "nvim-bqf"; 5822 - version = "2023-02-20"; 5823 src = fetchFromGitHub { 5824 owner = "kevinhwang91"; 5825 repo = "nvim-bqf"; 5826 - rev = "b71e6bc220ea2ef8f09d5e6b39d52609a965f322"; 5827 - sha256 = "0kl2p55vrq1qwbk4r7mrly0gmw794h6nxivb17f4zn8lmvvcbmjc"; 5828 }; 5829 meta.homepage = "https://github.com/kevinhwang91/nvim-bqf/"; 5830 }; ··· 5963 5964 nvim-dap = buildVimPluginFrom2Nix { 5965 pname = "nvim-dap"; 5966 - version = "2023-03-04"; 5967 src = fetchFromGitHub { 5968 owner = "mfussenegger"; 5969 repo = "nvim-dap"; 5970 - rev = "c1bfcd89ef440a44d02ade7e71befb1e5aa358ca"; 5971 - sha256 = "151xls5s4zg3w0sia0wbypaqxfwyw4zmzifjvs9z9g53anb7zffv"; 5972 }; 5973 meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; 5974 }; ··· 6083 6084 nvim-highlight-colors = buildVimPluginFrom2Nix { 6085 pname = "nvim-highlight-colors"; 6086 - version = "2023-01-20"; 6087 src = fetchFromGitHub { 6088 owner = "brenoprata10"; 6089 repo = "nvim-highlight-colors"; 6090 - rev = "af051bfe2971fc888d21cdfc59f5444904353b43"; 6091 - sha256 = "0xi4546f7qcdmyq04l1rjzyvw7rj9dlhmhskwk1pzq90rnd8xa5w"; 6092 }; 6093 meta.homepage = "https://github.com/brenoprata10/nvim-highlight-colors/"; 6094 }; 6095 6096 nvim-highlite = buildVimPluginFrom2Nix { 6097 pname = "nvim-highlite"; 6098 - version = "2023-03-01"; 6099 src = fetchFromGitHub { 6100 owner = "Iron-E"; 6101 repo = "nvim-highlite"; 6102 - rev = "ab18169ccf4251d455edca3f6448a559c6322b10"; 6103 - sha256 = "0d4nslrj1yyddkqd09m0y6wanhlnismbzz2i876bg2v9pi8d1prg"; 6104 }; 6105 meta.homepage = "https://github.com/Iron-E/nvim-highlite/"; 6106 }; ··· 6131 6132 nvim-jdtls = buildVimPluginFrom2Nix { 6133 pname = "nvim-jdtls"; 6134 - version = "2023-02-28"; 6135 src = fetchFromGitHub { 6136 owner = "mfussenegger"; 6137 repo = "nvim-jdtls"; 6138 - rev = "db08bfb87300fca2db91d15b64ca88a62970fb58"; 6139 - sha256 = "0rybpdkcja0kadf9arwx6r33nj7mzmadq660w7jcni3niy7545sw"; 6140 }; 6141 meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/"; 6142 }; ··· 6215 6216 nvim-lspconfig = buildVimPluginFrom2Nix { 6217 pname = "nvim-lspconfig"; 6218 - version = "2023-03-06"; 6219 src = fetchFromGitHub { 6220 owner = "neovim"; 6221 repo = "nvim-lspconfig"; 6222 - rev = "1a2d5f5224c65b0709bf5da0ccd9cad29272083a"; 6223 - sha256 = "1qhq71zbyz9idmm56wxq64k1i46dmn4n2cpjxmpawlab7m2wvi3c"; 6224 }; 6225 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 6226 }; ··· 6335 6336 nvim-nu = buildVimPluginFrom2Nix { 6337 pname = "nvim-nu"; 6338 - version = "2023-02-18"; 6339 src = fetchFromGitHub { 6340 owner = "LhKipp"; 6341 repo = "nvim-nu"; 6342 - rev = "ebacb8363ed3c21ffd4e47e277dde8f34609585b"; 6343 - sha256 = "0wd9ddyllmrisdcbp6mxl7nhcxs449k0rbwm0vshk3wig1wz4gdi"; 6344 }; 6345 meta.homepage = "https://github.com/LhKipp/nvim-nu/"; 6346 }; ··· 6407 6408 nvim-snippy = buildVimPluginFrom2Nix { 6409 pname = "nvim-snippy"; 6410 - version = "2023-02-18"; 6411 src = fetchFromGitHub { 6412 owner = "dcampos"; 6413 repo = "nvim-snippy"; 6414 - rev = "80104ebd1e77d019f736bee46de2f1dbfe36f8af"; 6415 - sha256 = "144vv4yggmhsdrzqfrazj9cxm0pqcxlyqc7h535ss8cg0wqgx9bp"; 6416 }; 6417 meta.homepage = "https://github.com/dcampos/nvim-snippy/"; 6418 }; ··· 6443 6444 nvim-surround = buildVimPluginFrom2Nix { 6445 pname = "nvim-surround"; 6446 - version = "2023-03-03"; 6447 src = fetchFromGitHub { 6448 owner = "kylechui"; 6449 repo = "nvim-surround"; 6450 - rev = "8680311f6de05d45b010883db7cc1912b7f0d0e4"; 6451 - sha256 = "0svkczs2xiy72vbcnsbkd4jbivq1raspmy89mb6q3zz6b1r0p5rv"; 6452 }; 6453 meta.homepage = "https://github.com/kylechui/nvim-surround/"; 6454 }; ··· 6491 6492 nvim-treesitter = buildVimPluginFrom2Nix { 6493 pname = "nvim-treesitter"; 6494 - version = "2023-03-06"; 6495 src = fetchFromGitHub { 6496 owner = "nvim-treesitter"; 6497 repo = "nvim-treesitter"; 6498 - rev = "980f0816cc28c20e45715687a0a21b5b39af59eb"; 6499 - sha256 = "1w1n2z4qbp72nwg6nvsch1c4pzfsx19r8z11yqpqq19k4vky36vc"; 6500 }; 6501 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 6502 }; 6503 6504 nvim-treesitter-context = buildVimPluginFrom2Nix { 6505 pname = "nvim-treesitter-context"; 6506 - version = "2023-02-13"; 6507 src = fetchFromGitHub { 6508 owner = "nvim-treesitter"; 6509 repo = "nvim-treesitter-context"; 6510 - rev = "895ec44f5c89bc67ba5440aef3d1f2efa3d59a41"; 6511 - sha256 = "0d9j5wz1fqk8ipf2x8vym0m3zpydslivwsnha8h1qz6yp6zyq5hc"; 6512 }; 6513 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; 6514 }; 6515 6516 nvim-treesitter-pyfold = buildVimPluginFrom2Nix { 6517 pname = "nvim-treesitter-pyfold"; 6518 - version = "2022-03-14"; 6519 src = fetchFromGitHub { 6520 owner = "eddiebergman"; 6521 repo = "nvim-treesitter-pyfold"; 6522 - rev = "46e0c3ebed0934fffcc2a23b52393059b76bff3f"; 6523 - sha256 = "1fwmwkpnr0cy663cy5yx5spm5hrv8xhsgvk891dqbm1pydxbpa1z"; 6524 }; 6525 meta.homepage = "https://github.com/eddiebergman/nvim-treesitter-pyfold/"; 6526 }; ··· 6539 6540 nvim-treesitter-textobjects = buildVimPluginFrom2Nix { 6541 pname = "nvim-treesitter-textobjects"; 6542 - version = "2023-02-25"; 6543 src = fetchFromGitHub { 6544 owner = "nvim-treesitter"; 6545 repo = "nvim-treesitter-textobjects"; 6546 - rev = "4b30081d2736e09f90c890a8a7adfe4df36f5b36"; 6547 - sha256 = "1w6wv5mpw05hmx0p4y3r3nir81wwrp6alj23gjwrqpzcjhdvh4z9"; 6548 }; 6549 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects/"; 6550 }; ··· 6575 6576 nvim-ts-rainbow = buildVimPluginFrom2Nix { 6577 pname = "nvim-ts-rainbow"; 6578 - version = "2023-02-21"; 6579 src = fetchFromGitHub { 6580 owner = "mrjones2014"; 6581 repo = "nvim-ts-rainbow"; 6582 - rev = "81f9a2e752edc793a34355be952dd1ebb1d5701b"; 6583 - sha256 = "1zc8p31dmlwsqrz8p9r6xnhq9zwgvq82crgr339w0ndn3m0wy508"; 6584 }; 6585 meta.homepage = "https://github.com/mrjones2014/nvim-ts-rainbow/"; 6586 }; 6587 6588 nvim-ts-rainbow2 = buildVimPluginFrom2Nix { 6589 pname = "nvim-ts-rainbow2"; 6590 - version = "2023-03-03"; 6591 src = fetchgit { 6592 url = "https://gitlab.com/HiPhish/nvim-ts-rainbow2"; 6593 - rev = "293e12e90f0928845582b9a3db7258eaa8e92a65"; 6594 - sha256 = "069nyc2bxi5wyvbnyqmdif2vqk7fv0kfgz3b7r7xgjf6s4kgw9yl"; 6595 }; 6596 meta.homepage = "https://gitlab.com/HiPhish/nvim-ts-rainbow2"; 6597 }; ··· 6610 6611 nvim-web-devicons = buildVimPluginFrom2Nix { 6612 pname = "nvim-web-devicons"; 6613 - version = "2023-03-06"; 6614 src = fetchFromGitHub { 6615 owner = "nvim-tree"; 6616 repo = "nvim-web-devicons"; 6617 - rev = "b2060eac2fbc84e0637ea706378ff66451e7c424"; 6618 - sha256 = "1x31lcf20cq8bb2cwdvx1cmsa18m315ni70qxrx99gncab6vwkz0"; 6619 }; 6620 meta.homepage = "https://github.com/nvim-tree/nvim-web-devicons/"; 6621 }; ··· 6706 6707 oil-nvim = buildVimPluginFrom2Nix { 6708 pname = "oil.nvim"; 6709 - version = "2023-03-06"; 6710 src = fetchFromGitHub { 6711 owner = "stevearc"; 6712 repo = "oil.nvim"; 6713 - rev = "b36ba91b7a4d05ee43617383f68cf6ed6fc2f08e"; 6714 - sha256 = "1xnyv6wlvh87yzjhbmxirp8agc3w1p6hgiw1gayfv9x72jvp4c8m"; 6715 fetchSubmodules = true; 6716 }; 6717 meta.homepage = "https://github.com/stevearc/oil.nvim/"; ··· 6743 6744 onedark-nvim = buildVimPluginFrom2Nix { 6745 pname = "onedark.nvim"; 6746 - version = "2023-02-14"; 6747 src = fetchFromGitHub { 6748 owner = "navarasu"; 6749 repo = "onedark.nvim"; 6750 - rev = "1fe908fb4acdcee26573e9ccde0de94ec77e5e84"; 6751 - sha256 = "03n2109p1jpl1gjznjci8wi84b2lminvw0avxx6dx6sv5b8z2x67"; 6752 }; 6753 meta.homepage = "https://github.com/navarasu/onedark.nvim/"; 6754 }; ··· 6767 6768 onedarkpro-nvim = buildVimPluginFrom2Nix { 6769 pname = "onedarkpro.nvim"; 6770 - version = "2023-03-04"; 6771 src = fetchFromGitHub { 6772 owner = "olimorris"; 6773 repo = "onedarkpro.nvim"; 6774 - rev = "435a38f7d84373584f3f3b283fe5b1d7c0fb8abf"; 6775 - sha256 = "167k6j4n01djxb39l9zq1d8xmbd7lxjz1272d112myp01ccycp3x"; 6776 }; 6777 meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; 6778 }; ··· 6791 6792 onenord-nvim = buildVimPluginFrom2Nix { 6793 pname = "onenord.nvim"; 6794 - version = "2023-02-06"; 6795 src = fetchFromGitHub { 6796 owner = "rmehri01"; 6797 repo = "onenord.nvim"; 6798 - rev = "71bdcdf105a8feb16cd5248b40e44c88832f75ca"; 6799 - sha256 = "0pflq1p48rd3s5vfi2bk04ick2iyl8fg1a25qpawm8wb1ds10ln4"; 6800 }; 6801 meta.homepage = "https://github.com/rmehri01/onenord.nvim/"; 6802 }; ··· 6827 6828 orgmode = buildVimPluginFrom2Nix { 6829 pname = "orgmode"; 6830 - version = "2023-02-11"; 6831 src = fetchFromGitHub { 6832 owner = "nvim-orgmode"; 6833 repo = "orgmode"; 6834 - rev = "313ce5a04e7fc3d677ad906a94fc49c1f54d1572"; 6835 - sha256 = "1d9a7ddyd09ym53nvijiy5z67mj79a93fqsm35jxfv4wkcraq9xd"; 6836 }; 6837 meta.homepage = "https://github.com/nvim-orgmode/orgmode/"; 6838 }; 6839 6840 oxocarbon-nvim = buildVimPluginFrom2Nix { 6841 pname = "oxocarbon.nvim"; 6842 - version = "2023-03-05"; 6843 src = fetchFromGitHub { 6844 owner = "nyoom-engineering"; 6845 repo = "oxocarbon.nvim"; 6846 - rev = "149e8dec961562c63091ad6910fec4ead61eaa7f"; 6847 - sha256 = "0y628knjcc4hbqaq5vblxjfmn7ihfai1zx0axwb8rqwq13kwbpz0"; 6848 }; 6849 meta.homepage = "https://github.com/nyoom-engineering/oxocarbon.nvim/"; 6850 }; ··· 7273 7274 readline-vim = buildVimPluginFrom2Nix { 7275 pname = "readline.vim"; 7276 - version = "2022-08-20"; 7277 src = fetchFromGitHub { 7278 owner = "ryvnf"; 7279 repo = "readline.vim"; 7280 - rev = "1213ebcf558b4ee2e9df2c761cc01cc076fc764f"; 7281 - sha256 = "03sn2rpadd746ax5ynidi8msp90phzb3a82w523q8b07kn32dgdw"; 7282 }; 7283 meta.homepage = "https://github.com/ryvnf/readline.vim/"; 7284 }; ··· 7297 7298 registers-nvim = buildVimPluginFrom2Nix { 7299 pname = "registers.nvim"; 7300 - version = "2023-02-17"; 7301 src = fetchFromGitHub { 7302 owner = "tversteeg"; 7303 repo = "registers.nvim"; 7304 - rev = "2d08fffeb8533d3678bd796010c13c7fa2534263"; 7305 - sha256 = "060rh1a4cdbs8w28l3lkgk8r7k80pd44dqczdb2bpnhyvc7mckn1"; 7306 }; 7307 meta.homepage = "https://github.com/tversteeg/registers.nvim/"; 7308 }; ··· 7839 7840 sqlite-lua = buildVimPluginFrom2Nix { 7841 pname = "sqlite.lua"; 7842 - version = "2023-01-23"; 7843 src = fetchFromGitHub { 7844 owner = "kkharji"; 7845 repo = "sqlite.lua"; 7846 - rev = "93ff5824682ecc874200e338fd8ca9ccd08508f8"; 7847 - sha256 = "07wv8shiilibgnp7l0pk9b6qwydwwfvdzdv2vvwn0k0jpaxsjvmy"; 7848 }; 7849 meta.homepage = "https://github.com/kkharji/sqlite.lua/"; 7850 }; ··· 8261 8262 telescope-file-browser-nvim = buildVimPluginFrom2Nix { 8263 pname = "telescope-file-browser.nvim"; 8264 - version = "2023-03-03"; 8265 src = fetchFromGitHub { 8266 owner = "nvim-telescope"; 8267 repo = "telescope-file-browser.nvim"; 8268 - rev = "61b3769065131129716974f7fb63f82ee409bd80"; 8269 - sha256 = "0qxnr7fkjbj9f4cvdqwnq8hxv50v0z5d8dzdjpfzr0x4f3ahcdvx"; 8270 }; 8271 meta.homepage = "https://github.com/nvim-telescope/telescope-file-browser.nvim/"; 8272 }; ··· 8358 8359 telescope-manix = buildNeovimPluginFrom2Nix { 8360 pname = "telescope-manix"; 8361 - version = "2023-02-03"; 8362 src = fetchFromGitHub { 8363 owner = "MrcJkb"; 8364 repo = "telescope-manix"; 8365 - rev = "28c0100c90dc200dd42471003d458fa8a2b71428"; 8366 - sha256 = "0sd914iybjxrvfmakzw8wb6k97sjvw1nnmfli7a0wvrrbak562rk"; 8367 }; 8368 meta.homepage = "https://github.com/MrcJkb/telescope-manix/"; 8369 }; ··· 8719 8720 toggleterm-nvim = buildVimPluginFrom2Nix { 8721 pname = "toggleterm.nvim"; 8722 - version = "2023-02-26"; 8723 src = fetchFromGitHub { 8724 owner = "akinsho"; 8725 repo = "toggleterm.nvim"; 8726 - rev = "31d38d11390bcd35a568fcc65a79b7d6ec89de62"; 8727 - sha256 = "1g134rc5gwrdpi2w3ab1k07v4spl5frimc68mkw7jx14ipwxf7q8"; 8728 }; 8729 meta.homepage = "https://github.com/akinsho/toggleterm.nvim/"; 8730 }; 8731 8732 tokyonight-nvim = buildVimPluginFrom2Nix { 8733 pname = "tokyonight.nvim"; 8734 - version = "2023-03-06"; 8735 src = fetchFromGitHub { 8736 owner = "folke"; 8737 repo = "tokyonight.nvim"; 8738 - rev = "a310c1ddb3a7d8b940834238f79f7bfd494ba76a"; 8739 - sha256 = "0wz9n7jmhwz1c7fdqfbpr51qls4n464r1rrp05ygrw1f7kbcw12d"; 8740 }; 8741 meta.homepage = "https://github.com/folke/tokyonight.nvim/"; 8742 }; ··· 8911 8912 unison = buildVimPluginFrom2Nix { 8913 pname = "unison"; 8914 - version = "2023-03-04"; 8915 src = fetchFromGitHub { 8916 owner = "unisonweb"; 8917 repo = "unison"; 8918 - rev = "5f4f9e3c6c745a222d6ab9e3b7dc1ef796a3e81f"; 8919 - sha256 = "14kh6bk6dh6ilj7n2rfjfipn6r1nl2g439w0kxqw05rgidzrnnq5"; 8920 }; 8921 meta.homepage = "https://github.com/unisonweb/unison/"; 8922 }; ··· 9007 9008 vifm-vim = buildVimPluginFrom2Nix { 9009 pname = "vifm.vim"; 9010 - version = "2023-03-05"; 9011 src = fetchFromGitHub { 9012 owner = "vifm"; 9013 repo = "vifm.vim"; 9014 - rev = "d0bceccaea6bd3fe017f4f609e7c91ff712196e3"; 9015 - sha256 = "06694178b5a4yqhc6wml0wkw1qfdpn6w29cgzg726j55lizf9mi5"; 9016 }; 9017 meta.homepage = "https://github.com/vifm/vifm.vim/"; 9018 }; ··· 9739 9740 vim-clap = buildVimPluginFrom2Nix { 9741 pname = "vim-clap"; 9742 - version = "2023-02-17"; 9743 src = fetchFromGitHub { 9744 owner = "liuchengxu"; 9745 repo = "vim-clap"; 9746 - rev = "ee44975ea9797d932de737a770ab6b743b5aa5db"; 9747 - sha256 = "14dsjy49jngi8r851casmyg1swwlx0kmhnalkfqs59jkda7bkg33"; 9748 }; 9749 meta.homepage = "https://github.com/liuchengxu/vim-clap/"; 9750 }; ··· 9955 9956 vim-css-color = buildVimPluginFrom2Nix { 9957 pname = "vim-css-color"; 9958 - version = "2022-10-28"; 9959 src = fetchFromGitHub { 9960 owner = "ap"; 9961 repo = "vim-css-color"; 9962 - rev = "1c4b78f5512980227ca747e76f1f6c904f2eb3dc"; 9963 - sha256 = "03r3sllai2nn3zhyc2v3cyxmpxw6incv9jfy74nr2p94yz9yasqh"; 9964 }; 9965 meta.homepage = "https://github.com/ap/vim-css-color/"; 9966 }; ··· 10531 10532 vim-fugitive = buildVimPluginFrom2Nix { 10533 pname = "vim-fugitive"; 10534 - version = "2023-03-06"; 10535 src = fetchFromGitHub { 10536 owner = "tpope"; 10537 repo = "vim-fugitive"; 10538 - rev = "caf1bc99b63a80cc3a35cc9d05320dfa75d7ebfa"; 10539 - sha256 = "12ldjrmip3wgyb2sk1a9d9ikdwg642cw077pmn2x9xim9p88b6y7"; 10540 }; 10541 meta.homepage = "https://github.com/tpope/vim-fugitive/"; 10542 }; ··· 11217 11218 vim-kitty-navigator = buildVimPluginFrom2Nix { 11219 pname = "vim-kitty-navigator"; 11220 - version = "2023-02-17"; 11221 src = fetchFromGitHub { 11222 owner = "knubie"; 11223 repo = "vim-kitty-navigator"; 11224 - rev = "98cf55a5074695e3fca1ccace66ab5563e35111e"; 11225 - sha256 = "1kavcc0vpzgzly39qpbcb6a1kmp456c0jz6jc3vmw3sql8c070fa"; 11226 }; 11227 meta.homepage = "https://github.com/knubie/vim-kitty-navigator/"; 11228 }; ··· 11409 11410 vim-lsp = buildVimPluginFrom2Nix { 11411 pname = "vim-lsp"; 11412 - version = "2023-03-04"; 11413 src = fetchFromGitHub { 11414 owner = "prabirshrestha"; 11415 repo = "vim-lsp"; 11416 - rev = "80cd62f8f2c9c571aa31027b77ab7b8aac3d6346"; 11417 - sha256 = "1sykxwg2xhv1gsrlwhv3j6mm1gyl7ph5zscw9bnb1qffs4iqd4a6"; 11418 }; 11419 meta.homepage = "https://github.com/prabirshrestha/vim-lsp/"; 11420 }; ··· 11518 11519 vim-matchup = buildVimPluginFrom2Nix { 11520 pname = "vim-matchup"; 11521 - version = "2023-02-19"; 11522 src = fetchFromGitHub { 11523 owner = "andymass"; 11524 repo = "vim-matchup"; 11525 - rev = "3a48818a8113a502f245c29d894201421727577a"; 11526 - sha256 = "1hxsjs83i2rjkmhvsxrxk1y6as9xi8b5ji9abvwvb90p2a765987"; 11527 }; 11528 meta.homepage = "https://github.com/andymass/vim-matchup/"; 11529 }; ··· 11950 11951 vim-oscyank = buildVimPluginFrom2Nix { 11952 pname = "vim-oscyank"; 11953 - version = "2023-02-26"; 11954 src = fetchFromGitHub { 11955 owner = "ojroques"; 11956 repo = "vim-oscyank"; 11957 - rev = "14685fcc4f487ca42dfe786dd54e4b2913370085"; 11958 - sha256 = "1svilmpw4ln2734978llwgxzgn5fpnmqswfq4mmq67ibkv68205j"; 11959 }; 11960 meta.homepage = "https://github.com/ojroques/vim-oscyank/"; 11961 }; ··· 12562 12563 vim-sensible = buildVimPluginFrom2Nix { 12564 pname = "vim-sensible"; 12565 - version = "2023-02-23"; 12566 src = fetchFromGitHub { 12567 owner = "tpope"; 12568 repo = "vim-sensible"; 12569 - rev = "a7eea09ba654a371a90ca77186bf10930b897e80"; 12570 - sha256 = "1pch0f3xwzm0kj70in7n9yza05sgnw34rm8fgxmjfm5n19vslrz5"; 12571 }; 12572 meta.homepage = "https://github.com/tpope/vim-sensible/"; 12573 }; ··· 13211 13212 vim-tpipeline = buildVimPluginFrom2Nix { 13213 pname = "vim-tpipeline"; 13214 - version = "2023-03-05"; 13215 src = fetchFromGitHub { 13216 owner = "vimpostor"; 13217 repo = "vim-tpipeline"; 13218 - rev = "7c94396ca10e53b09c2c0da8e0dab0fbf5a8acf1"; 13219 - sha256 = "03pd044wqxh24c5jm2wwa15icbhf9dd1cw3645lphy1zsyy59rsx"; 13220 }; 13221 meta.homepage = "https://github.com/vimpostor/vim-tpipeline/"; 13222 }; 13223 13224 vim-trailing-whitespace = buildVimPluginFrom2Nix { 13225 pname = "vim-trailing-whitespace"; 13226 - version = "2023-02-13"; 13227 src = fetchFromGitHub { 13228 owner = "bronson"; 13229 repo = "vim-trailing-whitespace"; 13230 - rev = "41f24890005f6bce34b1603e7c0d530fd70bc2da"; 13231 - sha256 = "1ms54fyxwxh4albrdgxpv99k3rwdbb1wy5ss95l585hmk9hfr27q"; 13232 }; 13233 meta.homepage = "https://github.com/bronson/vim-trailing-whitespace/"; 13234 }; ··· 13547 13548 vim-xkbswitch = buildVimPluginFrom2Nix { 13549 pname = "vim-xkbswitch"; 13550 - version = "2023-03-05"; 13551 src = fetchFromGitHub { 13552 owner = "lyokha"; 13553 repo = "vim-xkbswitch"; 13554 - rev = "6e7ebd59489f2e4d0562850ff2ba04831a26b00b"; 13555 - sha256 = "17x5sn33kg8zg7jxm5wg4fzj0733vgz3z43d6r0f03zg5l7p27lf"; 13556 }; 13557 meta.homepage = "https://github.com/lyokha/vim-xkbswitch/"; 13558 }; ··· 13751 13752 vimspector = buildVimPluginFrom2Nix { 13753 pname = "vimspector"; 13754 - version = "2023-02-22"; 13755 src = fetchFromGitHub { 13756 owner = "puremourning"; 13757 repo = "vimspector"; 13758 - rev = "1dba52e6e886bc60184da405a11f8ec22d2f2b49"; 13759 - sha256 = "0xgjm626bzs8pf6c79syn49nriprllz289pi62jkwsnh2hxkncxn"; 13760 fetchSubmodules = true; 13761 }; 13762 meta.homepage = "https://github.com/puremourning/vimspector/"; ··· 13764 13765 vimtex = buildVimPluginFrom2Nix { 13766 pname = "vimtex"; 13767 - version = "2023-03-05"; 13768 src = fetchFromGitHub { 13769 owner = "lervag"; 13770 repo = "vimtex"; 13771 - rev = "6f7e507ed1c397838798e43a8249612864c929ba"; 13772 - sha256 = "0qvp05ad880qpmsnxiv43yas6i2wzd344gmlg2x9ydh1h5bgm2m8"; 13773 }; 13774 meta.homepage = "https://github.com/lervag/vimtex/"; 13775 }; ··· 13788 13789 vimwiki = buildVimPluginFrom2Nix { 13790 pname = "vimwiki"; 13791 - version = "2022-12-05"; 13792 src = fetchFromGitHub { 13793 owner = "vimwiki"; 13794 repo = "vimwiki"; 13795 - rev = "fea8bee382b2051b0137fd2cacf0862823ee69b3"; 13796 - sha256 = "1iwwy7ay01jkxgq83frr1xq0y3jvvs86paa43mn1ky6gk3q57s80"; 13797 }; 13798 meta.homepage = "https://github.com/vimwiki/vimwiki/"; 13799 }; ··· 14149 14150 catppuccin-nvim = buildVimPluginFrom2Nix { 14151 pname = "catppuccin-nvim"; 14152 - version = "2023-03-05"; 14153 src = fetchFromGitHub { 14154 owner = "catppuccin"; 14155 repo = "nvim"; 14156 - rev = "5e2c9cf8277c42fb634007126c36d765fd176f4a"; 14157 - sha256 = "0g9sjx5l0b71wvbgz71v3rm8y55dhi3bmx790aj8bs4f96npdvnp"; 14158 }; 14159 meta.homepage = "https://github.com/catppuccin/nvim/"; 14160 }; ··· 14221 14222 lspsaga-nvim-original = buildVimPluginFrom2Nix { 14223 pname = "lspsaga-nvim-original"; 14224 - version = "2023-03-06"; 14225 src = fetchFromGitHub { 14226 owner = "glepnir"; 14227 repo = "lspsaga.nvim"; 14228 - rev = "109286f8def4187c3a35494b8760fd14105e9d8c"; 14229 - sha256 = "0pf2q8m4jsh9mlxyw0788mh80lfx8wnj1k0h3xg1d0czxdlad9w8"; 14230 }; 14231 meta.homepage = "https://github.com/glepnir/lspsaga.nvim/"; 14232 }; ··· 14243 meta.homepage = "https://github.com/mattn/calendar-vim/"; 14244 }; 14245 14246 pure-lua = buildVimPluginFrom2Nix { 14247 pname = "pure-lua"; 14248 version = "2021-05-16"; ··· 14257 14258 rose-pine = buildVimPluginFrom2Nix { 14259 pname = "rose-pine"; 14260 - version = "2023-03-04"; 14261 src = fetchFromGitHub { 14262 owner = "rose-pine"; 14263 repo = "neovim"; 14264 - rev = "f977f0885384776e5f0e3bffa51abbbfd57d90cc"; 14265 - sha256 = "1kav03xi1vwasvl56dlwcjy7bli6vynpkf0afhrm8r4dqzxfa6cc"; 14266 }; 14267 meta.homepage = "https://github.com/rose-pine/neovim/"; 14268 };
··· 29 30 ChatGPT-nvim = buildVimPluginFrom2Nix { 31 pname = "ChatGPT.nvim"; 32 + version = "2023-03-11"; 33 src = fetchFromGitHub { 34 owner = "jackMort"; 35 repo = "ChatGPT.nvim"; 36 + rev = "3ad20aeee036378478bfb75788c6e287964ece8e"; 37 + sha256 = "1wjj3gv3qpa9liy7sz14ah7np6k3qw5vnkx6qggm9rzcrqf7jidp"; 38 }; 39 meta.homepage = "https://github.com/jackMort/ChatGPT.nvim/"; 40 }; ··· 293 294 SchemaStore-nvim = buildVimPluginFrom2Nix { 295 pname = "SchemaStore.nvim"; 296 + version = "2023-03-10"; 297 src = fetchFromGitHub { 298 owner = "b0o"; 299 repo = "SchemaStore.nvim"; 300 + rev = "083485d0ec106c46eb38b525342dc8e23a9921c9"; 301 + sha256 = "1bcjh8a3mqvnbgp12c3ln7snwaarrdsn33bi1lwvcdas341gk23v"; 302 }; 303 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 304 }; ··· 353 354 SpaceVim = buildVimPluginFrom2Nix { 355 pname = "SpaceVim"; 356 + version = "2023-03-11"; 357 src = fetchFromGitHub { 358 owner = "SpaceVim"; 359 repo = "SpaceVim"; 360 + rev = "e96ea26df67f57b1a1bab575f8376e14ee876016"; 361 + sha256 = "0s30f9z0rib1wjndr57qi4xcj8m36z3y7kj44lpinbmmryba5pgg"; 362 }; 363 meta.homepage = "https://github.com/SpaceVim/SpaceVim/"; 364 }; 365 366 SudoEdit-vim = buildVimPluginFrom2Nix { 367 pname = "SudoEdit.vim"; 368 version = "2022-11-03"; ··· 375 meta.homepage = "https://github.com/chrisbra/SudoEdit.vim/"; 376 }; 377 378 VimOrganizer = buildVimPluginFrom2Nix { 379 pname = "VimOrganizer"; 380 version = "2020-12-15"; ··· 425 426 YouCompleteMe = buildVimPluginFrom2Nix { 427 pname = "YouCompleteMe"; 428 + version = "2023-03-09"; 429 src = fetchFromGitHub { 430 owner = "ycm-core"; 431 repo = "YouCompleteMe"; 432 + rev = "aaebb55b6536d780a684201e9b214c034441c98f"; 433 + sha256 = "0xi6qp2idl168v0nb91h3pda32m2dd11zdd2bz18vnch4b48rdy5"; 434 fetchSubmodules = true; 435 }; 436 meta.homepage = "https://github.com/ycm-core/YouCompleteMe/"; ··· 511 512 ai-vim = buildVimPluginFrom2Nix { 513 pname = "ai.vim"; 514 + version = "2023-03-11"; 515 src = fetchFromGitHub { 516 owner = "aduros"; 517 repo = "ai.vim"; 518 + rev = "512359e0935e62a7bda308bd7c16b7de2787532d"; 519 + sha256 = "1kbjv2p1ngsd244mr0c7nl5wvg51naxxhfirgcz3fsxc90j22952"; 520 }; 521 meta.homepage = "https://github.com/aduros/ai.vim/"; 522 }; ··· 535 536 ale = buildVimPluginFrom2Nix { 537 pname = "ale"; 538 + version = "2023-03-11"; 539 src = fetchFromGitHub { 540 owner = "dense-analysis"; 541 repo = "ale"; 542 + rev = "011e4f6590e8fb26ee2b55bd6b368f1bb784a537"; 543 + sha256 = "0bmq01wmbnrb7ni5kyz7dr9q4s1dhhv8z5i8jnf9pnvgkvpq45mr"; 544 }; 545 meta.homepage = "https://github.com/dense-analysis/ale/"; 546 }; ··· 559 560 alpha-nvim = buildVimPluginFrom2Nix { 561 pname = "alpha-nvim"; 562 + version = "2023-03-09"; 563 src = fetchFromGitHub { 564 owner = "goolord"; 565 repo = "alpha-nvim"; 566 + rev = "4e1c4dedf5983e84b3ed305228b2235c56c7023c"; 567 + sha256 = "1vircxn0rlwfl6q6q087js977zy0dpd5x9riddv9px9zvpqxzcw9"; 568 }; 569 meta.homepage = "https://github.com/goolord/alpha-nvim/"; 570 }; ··· 703 704 aurora = buildVimPluginFrom2Nix { 705 pname = "aurora"; 706 + version = "2023-03-08"; 707 src = fetchFromGitHub { 708 owner = "ray-x"; 709 repo = "aurora"; 710 + rev = "31113f89c8b558f59cf3867079c8c5520b6945ba"; 711 + sha256 = "02ivk0fvgvryjnhgvh8la9minmrg90dgvmgbwav2y17ir5ypv45p"; 712 }; 713 meta.homepage = "https://github.com/ray-x/aurora/"; 714 }; ··· 751 752 auto-session = buildVimPluginFrom2Nix { 753 pname = "auto-session"; 754 + version = "2023-03-10"; 755 src = fetchFromGitHub { 756 owner = "rmagatti"; 757 repo = "auto-session"; 758 + rev = "1d3dd70a2d48e0f3441128eb4fb0b437a0bf2cc4"; 759 + sha256 = "1wrb5bn4dg4ava7mknil5dhkr5nn0m60l78y5q6zqdlrxfsskzhy"; 760 }; 761 meta.homepage = "https://github.com/rmagatti/auto-session/"; 762 }; ··· 823 824 barbar-nvim = buildVimPluginFrom2Nix { 825 pname = "barbar.nvim"; 826 + version = "2023-03-10"; 827 src = fetchFromGitHub { 828 owner = "romgrk"; 829 repo = "barbar.nvim"; 830 + rev = "de5682f7b7de872d1bfd02aa1368cd0c34d13b49"; 831 + sha256 = "0g8230x3a49sj1j0c9knjd7dqs9lrm2ap24pfaxsbavc1w4zdh2m"; 832 }; 833 meta.homepage = "https://github.com/romgrk/barbar.nvim/"; 834 }; 835 836 barbecue-nvim = buildVimPluginFrom2Nix { 837 pname = "barbecue.nvim"; 838 + version = "2023-03-07"; 839 src = fetchFromGitHub { 840 owner = "utilyre"; 841 repo = "barbecue.nvim"; 842 + rev = "65df9a7d51f11df6bd4f8bd9f0d8b378e92bb9b0"; 843 + sha256 = "1kaa12cr02bc1p9ywr9l6zd0pb1dpjdcn6m4m65fxd97sdqn97wj"; 844 }; 845 meta.homepage = "https://github.com/utilyre/barbecue.nvim/"; 846 }; ··· 1063 1064 ccc-nvim = buildVimPluginFrom2Nix { 1065 pname = "ccc.nvim"; 1066 + version = "2023-03-11"; 1067 src = fetchFromGitHub { 1068 owner = "uga-rosa"; 1069 repo = "ccc.nvim"; 1070 + rev = "4869fb385990ec0495e0f175fdd01bd388a7e839"; 1071 + sha256 = "0bb79zj40792grrw1lzqd6ssxqacacblb3szxwvnm9pwps9nc1jw"; 1072 }; 1073 meta.homepage = "https://github.com/uga-rosa/ccc.nvim/"; 1074 }; ··· 1135 1136 clangd_extensions-nvim = buildVimPluginFrom2Nix { 1137 pname = "clangd_extensions.nvim"; 1138 + version = "2023-03-10"; 1139 src = fetchFromGitHub { 1140 owner = "p00f"; 1141 repo = "clangd_extensions.nvim"; 1142 + rev = "798e377ec859087132b81d2f347b5080580bd6b1"; 1143 + sha256 = "0566w1s1ffidaix14qx7d4grg0h7pnciaapg25d7nriwf2a8fqzm"; 1144 }; 1145 meta.homepage = "https://github.com/p00f/clangd_extensions.nvim/"; 1146 }; ··· 1867 1868 comment-nvim = buildVimPluginFrom2Nix { 1869 pname = "comment.nvim"; 1870 + version = "2023-03-10"; 1871 src = fetchFromGitHub { 1872 owner = "numtostr"; 1873 repo = "comment.nvim"; 1874 + rev = "8d3aa5c22c2d45e788c7a5fe13ad77368b783c20"; 1875 + sha256 = "0qxzy4dr9cr5q59yi7mw883id51zpb3mnrv6r0aqh9flswkljllr"; 1876 }; 1877 meta.homepage = "https://github.com/numtostr/comment.nvim/"; 1878 }; ··· 1939 1940 compiler-explorer-nvim = buildVimPluginFrom2Nix { 1941 pname = "compiler-explorer.nvim"; 1942 + version = "2023-03-07"; 1943 src = fetchFromGitHub { 1944 owner = "krady21"; 1945 repo = "compiler-explorer.nvim"; 1946 + rev = "0e1c954923915e45bbd0806b65d9171a0384546b"; 1947 + sha256 = "0ag6p4k3fgwz7lzd3n8nwbnfi2nrcqandlsambcmzhgma4zi59j4"; 1948 }; 1949 meta.homepage = "https://github.com/krady21/compiler-explorer.nvim/"; 1950 }; ··· 2131 2132 coq_nvim = buildVimPluginFrom2Nix { 2133 pname = "coq_nvim"; 2134 + version = "2023-03-10"; 2135 src = fetchFromGitHub { 2136 owner = "ms-jpq"; 2137 repo = "coq_nvim"; 2138 + rev = "b33c5e010067a2d9674ad5253858da6489ae65d6"; 2139 + sha256 = "1s23c1j95a73cxc1fxwbncv4z74gf8pw9p0kk6qz22xpk6zcypv7"; 2140 }; 2141 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 2142 }; ··· 2167 2168 crates-nvim = buildVimPluginFrom2Nix { 2169 pname = "crates.nvim"; 2170 + version = "2023-03-11"; 2171 src = fetchFromGitHub { 2172 owner = "saecki"; 2173 repo = "crates.nvim"; 2174 + rev = "8d96e24fc244a04cd5a7de1666b077b1b4deef73"; 2175 + sha256 = "0y4nhwwwyp83gzax1klw5w72l8f3v89b7pkac3xph5qvxk06njn1"; 2176 }; 2177 meta.homepage = "https://github.com/saecki/crates.nvim/"; 2178 }; ··· 2275 2276 dashboard-nvim = buildVimPluginFrom2Nix { 2277 pname = "dashboard-nvim"; 2278 + version = "2023-03-09"; 2279 src = fetchFromGitHub { 2280 owner = "glepnir"; 2281 repo = "dashboard-nvim"; 2282 + rev = "6e31bf683a1852399ace9914edfd3aa1be3e5e23"; 2283 + sha256 = "17h3awklj9x8k3w09c8hzy01nv07i5hwg5qm3y443xi6gs578apv"; 2284 }; 2285 meta.homepage = "https://github.com/glepnir/dashboard-nvim/"; 2286 }; ··· 2371 2372 deol-nvim = buildVimPluginFrom2Nix { 2373 pname = "deol.nvim"; 2374 + version = "2023-03-09"; 2375 src = fetchFromGitHub { 2376 owner = "Shougo"; 2377 repo = "deol.nvim"; 2378 + rev = "50a9e70da17020af11562d6eb07b310f106c4ecf"; 2379 + sha256 = "085amk2agpal2y3hd10m7wwbyhcqbqya1frvcfk0ghlxmiq0ak3s"; 2380 }; 2381 meta.homepage = "https://github.com/Shougo/deol.nvim/"; 2382 }; ··· 2661 2662 diffview-nvim = buildVimPluginFrom2Nix { 2663 pname = "diffview.nvim"; 2664 + version = "2023-03-11"; 2665 src = fetchFromGitHub { 2666 owner = "sindrets"; 2667 repo = "diffview.nvim"; 2668 + rev = "e783ed49acc6b210b295af5c792de811f99559be"; 2669 + sha256 = "0xngir0bsg9p9hkqk0sjhrarjrynd5vmyxx32ckdsvccxlqqiwqf"; 2670 }; 2671 meta.homepage = "https://github.com/sindrets/diffview.nvim/"; 2672 }; ··· 2757 2758 editorconfig-vim = buildVimPluginFrom2Nix { 2759 pname = "editorconfig-vim"; 2760 + version = "2023-03-10"; 2761 src = fetchFromGitHub { 2762 owner = "editorconfig"; 2763 repo = "editorconfig-vim"; 2764 + rev = "6e2b0920f5836aaf882b43ee52700d3f509cdd1d"; 2765 + sha256 = "0qq4v8ya84rnq6rhmfsannpczqyqb8jw1iflnyw6875fa3rf3qn3"; 2766 fetchSubmodules = true; 2767 }; 2768 meta.homepage = "https://github.com/editorconfig/editorconfig-vim/"; ··· 2893 pname = "feline.nvim"; 2894 version = "2022-12-22"; 2895 src = fetchFromGitHub { 2896 + owner = "famiu"; 2897 repo = "feline.nvim"; 2898 rev = "d48b6f92c6ccdd6654c956f437be49ea160b5b0c"; 2899 sha256 = "1d3sj499mj63djy2bjp7yx5qyrzsq8gphzy3wl9fnfnni1bzwg4g"; 2900 }; 2901 + meta.homepage = "https://github.com/famiu/feline.nvim/"; 2902 }; 2903 2904 fennel-vim = buildVimPluginFrom2Nix { ··· 2915 2916 fern-vim = buildVimPluginFrom2Nix { 2917 pname = "fern.vim"; 2918 + version = "2023-03-10"; 2919 src = fetchFromGitHub { 2920 owner = "lambdalisue"; 2921 repo = "fern.vim"; 2922 + rev = "dae5eb2debe023fce0e3dfafbf879bd89946d6d0"; 2923 + sha256 = "0qa1dazlhq5157rzm3bg3i9vk6iylhccr2qrzvmqdal3c9wari9p"; 2924 }; 2925 meta.homepage = "https://github.com/lambdalisue/fern.vim/"; 2926 }; ··· 2963 2964 firenvim = buildVimPluginFrom2Nix { 2965 pname = "firenvim"; 2966 + version = "2023-03-10"; 2967 src = fetchFromGitHub { 2968 owner = "glacambre"; 2969 repo = "firenvim"; 2970 + rev = "87c9f70d3e6aa2790982aafef3c696dbe962d35b"; 2971 + sha256 = "0f3jsayilkhch75xdhsv3hrdydsfk5v52cb4ss4kvxbb4cnkli1w"; 2972 }; 2973 meta.homepage = "https://github.com/glacambre/firenvim/"; 2974 }; ··· 3192 3193 fzf-lua = buildVimPluginFrom2Nix { 3194 pname = "fzf-lua"; 3195 + version = "2023-03-11"; 3196 src = fetchFromGitHub { 3197 owner = "ibhagwan"; 3198 repo = "fzf-lua"; 3199 + rev = "a553b614f1b89fdbf645efef977f4b7aa0fa6c19"; 3200 + sha256 = "1b0xny4w8g9r1rr17lnl675qplb5smkx8jyq0z15192i2714ksgi"; 3201 }; 3202 meta.homepage = "https://github.com/ibhagwan/fzf-lua/"; 3203 }; ··· 3240 3241 gentoo-syntax = buildVimPluginFrom2Nix { 3242 pname = "gentoo-syntax"; 3243 + version = "2023-03-09"; 3244 src = fetchFromGitHub { 3245 owner = "gentoo"; 3246 repo = "gentoo-syntax"; 3247 + rev = "347fa38461e86eda45f10a275b038386d4f608e1"; 3248 + sha256 = "0yhsch3z41jgnbi7972sqzycpfmirxp8mkfg383xkz1wbk62x1i6"; 3249 }; 3250 meta.homepage = "https://github.com/gentoo/gentoo-syntax/"; 3251 }; ··· 3348 3349 gitsigns-nvim = buildNeovimPluginFrom2Nix { 3350 pname = "gitsigns.nvim"; 3351 + version = "2023-03-06"; 3352 src = fetchFromGitHub { 3353 owner = "lewis6991"; 3354 repo = "gitsigns.nvim"; 3355 + rev = "b1f9cf7c5c5639c006c937fc1819e09f358210fc"; 3356 + sha256 = "0069gpcvh96c2a29i9ymidsifxhjqxmm4vx1m7c5frrxxrsba5li"; 3357 }; 3358 meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; 3359 }; ··· 3408 3409 go-nvim = buildVimPluginFrom2Nix { 3410 pname = "go.nvim"; 3411 + version = "2023-03-10"; 3412 src = fetchFromGitHub { 3413 owner = "ray-x"; 3414 repo = "go.nvim"; 3415 + rev = "f80661a7109373aedee491acd8ddadc57e5c60aa"; 3416 + sha256 = "1fzc99r07hb5fis0jxzasblzwvczs6vpqldlj8nmcx06flis53ll"; 3417 }; 3418 meta.homepage = "https://github.com/ray-x/go.nvim/"; 3419 }; ··· 3540 3541 gruvbox-nvim = buildVimPluginFrom2Nix { 3542 pname = "gruvbox.nvim"; 3543 + version = "2023-03-10"; 3544 src = fetchFromGitHub { 3545 owner = "ellisonleao"; 3546 repo = "gruvbox.nvim"; 3547 + rev = "331507561a46d6ce484f576299e0297e277bac7f"; 3548 + sha256 = "1myvjfyh8dyy0rpnbfcpljyamlnphavjhw4mzbrrq4wwm2lwcwb4"; 3549 }; 3550 meta.homepage = "https://github.com/ellisonleao/gruvbox.nvim/"; 3551 }; ··· 3611 3612 haskell-tools-nvim = buildNeovimPluginFrom2Nix { 3613 pname = "haskell-tools.nvim"; 3614 + version = "2023-03-09"; 3615 src = fetchFromGitHub { 3616 owner = "MrcJkb"; 3617 repo = "haskell-tools.nvim"; 3618 + rev = "344a3d968987f8e347053a89daadc6b026c8c458"; 3619 + sha256 = "14111h5fgrwj33s9kng7nzz9j8656xqcylw55qdddd07d2clcyph"; 3620 }; 3621 meta.homepage = "https://github.com/MrcJkb/haskell-tools.nvim/"; 3622 }; ··· 3659 3660 heirline-nvim = buildVimPluginFrom2Nix { 3661 pname = "heirline.nvim"; 3662 + version = "2023-03-07"; 3663 src = fetchFromGitHub { 3664 owner = "rebelot"; 3665 repo = "heirline.nvim"; 3666 + rev = "00f7e271775362792116e252d931590a9344d6a9"; 3667 + sha256 = "1cf9av6h5xdzkvzrmwscld65257syx0mk1czi5gkwg10apyyhfzw"; 3668 }; 3669 meta.homepage = "https://github.com/rebelot/heirline.nvim/"; 3670 }; ··· 4079 4080 kanagawa-nvim = buildVimPluginFrom2Nix { 4081 pname = "kanagawa.nvim"; 4082 + version = "2023-03-10"; 4083 src = fetchFromGitHub { 4084 owner = "rebelot"; 4085 repo = "kanagawa.nvim"; 4086 + rev = "3579d55c47366a536e07cf83df397a9f5f806813"; 4087 + sha256 = "1h40m2scxi8cswdjdxm5wq6bpv5ciza7zd0x3zdwi01cg73r5gyr"; 4088 }; 4089 meta.homepage = "https://github.com/rebelot/kanagawa.nvim/"; 4090 }; ··· 4163 4164 lazy-lsp-nvim = buildVimPluginFrom2Nix { 4165 pname = "lazy-lsp.nvim"; 4166 + version = "2023-03-06"; 4167 src = fetchFromGitHub { 4168 owner = "dundalek"; 4169 repo = "lazy-lsp.nvim"; 4170 + rev = "f0d8f0ddf34bd7e1eb9d5ee6ed65a67138769d22"; 4171 + sha256 = "0dpgfansqili9prnp1fdnhjg6gmq5snaalh6q18gsk6c9lrw0laf"; 4172 }; 4173 meta.homepage = "https://github.com/dundalek/lazy-lsp.nvim/"; 4174 }; 4175 4176 lazy-nvim = buildVimPluginFrom2Nix { 4177 pname = "lazy.nvim"; 4178 + version = "2023-03-07"; 4179 src = fetchFromGitHub { 4180 owner = "folke"; 4181 repo = "lazy.nvim"; 4182 + rev = "5b4444f0d7e556deba3f7ca949a2ba0e2c3369fb"; 4183 + sha256 = "0zc8k5d3pgz4xhhshwjaks7q72f61h1iix2305kybnyhi0kslsxd"; 4184 }; 4185 meta.homepage = "https://github.com/folke/lazy.nvim/"; 4186 }; ··· 4235 4236 leap-nvim = buildVimPluginFrom2Nix { 4237 pname = "leap.nvim"; 4238 + version = "2023-03-07"; 4239 src = fetchFromGitHub { 4240 owner = "ggandor"; 4241 repo = "leap.nvim"; 4242 + rev = "dd4cabf7699ae8e2e17cfc29910ec605da32226d"; 4243 + sha256 = "0ymgfbn7hgvb7d5fqpi3q4gxrmy7m5njb5cc7rnvfg9wi5ici7np"; 4244 }; 4245 meta.homepage = "https://github.com/ggandor/leap.nvim/"; 4246 }; ··· 4583 4584 lsp-zero-nvim = buildVimPluginFrom2Nix { 4585 pname = "lsp-zero.nvim"; 4586 + version = "2023-03-11"; 4587 src = fetchFromGitHub { 4588 owner = "VonHeikemen"; 4589 repo = "lsp-zero.nvim"; 4590 + rev = "63951c8f9701871abd6858d26f3bcc6b99ce5c74"; 4591 + sha256 = "09wmdrv0npkwnh8zzz0fkvn505q1rl011jr1dphiap09nhaqvrvc"; 4592 }; 4593 meta.homepage = "https://github.com/VonHeikemen/lsp-zero.nvim/"; 4594 }; ··· 4690 4691 luasnip = buildVimPluginFrom2Nix { 4692 pname = "luasnip"; 4693 + version = "2023-03-08"; 4694 src = fetchFromGitHub { 4695 owner = "l3mon4d3"; 4696 repo = "luasnip"; 4697 + rev = "836d4f5a9970819b60b1010fd8709a2ff88416d8"; 4698 + sha256 = "1kskc6wyw4f7l2vwyyrc9bww3h6r2mqdxqyj66p9bhip97qr4i3d"; 4699 fetchSubmodules = true; 4700 }; 4701 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; ··· 4715 4716 lush-nvim = buildNeovimPluginFrom2Nix { 4717 pname = "lush.nvim"; 4718 + version = "2023-03-09"; 4719 src = fetchFromGitHub { 4720 owner = "rktjmp"; 4721 repo = "lush.nvim"; 4722 + rev = "62180850d230e1650fe5543048bb15c4452916d6"; 4723 + sha256 = "1c6iw967vba4gqrbs4ki4p980avsjg0dk8kklxz26994x7y9bza0"; 4724 }; 4725 meta.homepage = "https://github.com/rktjmp/lush.nvim/"; 4726 }; ··· 4763 4764 mason-lspconfig-nvim = buildVimPluginFrom2Nix { 4765 pname = "mason-lspconfig.nvim"; 4766 + version = "2023-03-06"; 4767 src = fetchFromGitHub { 4768 owner = "williamboman"; 4769 repo = "mason-lspconfig.nvim"; 4770 + rev = "a31e011135a79d63c71254c250c9158e1056a1cb"; 4771 + sha256 = "0wqkq7qa64xrpw58hymq4skpx23nzcsfbbjlm76kv7hz4pp9q5a7"; 4772 }; 4773 meta.homepage = "https://github.com/williamboman/mason-lspconfig.nvim/"; 4774 }; ··· 4787 4788 mason-nvim = buildVimPluginFrom2Nix { 4789 pname = "mason.nvim"; 4790 + version = "2023-03-10"; 4791 src = fetchFromGitHub { 4792 owner = "williamboman"; 4793 repo = "mason.nvim"; 4794 + rev = "e52225531a8b622ff79c6e11ffd3df9acea8327b"; 4795 + sha256 = "0k5c43jwxg4f0xpdrx4qzf83nc00170grx2crd593kij5aljmn50"; 4796 }; 4797 meta.homepage = "https://github.com/williamboman/mason.nvim/"; 4798 }; ··· 4811 4812 material-nvim = buildVimPluginFrom2Nix { 4813 pname = "material.nvim"; 4814 + version = "2023-03-10"; 4815 src = fetchFromGitHub { 4816 owner = "marko-cerovac"; 4817 repo = "material.nvim"; 4818 + rev = "18d5e8af4c4bc77382bda5e5ae2830ab515cf5c6"; 4819 + sha256 = "0ws5mig2kwwspwl3b9abqbwwni8xzx252k7k2dhw4dm2h7hkkzsv"; 4820 }; 4821 meta.homepage = "https://github.com/marko-cerovac/material.nvim/"; 4822 }; ··· 4859 4860 mini-nvim = buildVimPluginFrom2Nix { 4861 pname = "mini.nvim"; 4862 + version = "2023-03-10"; 4863 src = fetchFromGitHub { 4864 owner = "echasnovski"; 4865 repo = "mini.nvim"; 4866 + rev = "82693318b691de0676c17457b5d7d26a7798f761"; 4867 + sha256 = "0vks9yl7a3314yfq8kjghxbl4ag3zaxnjgara075wm7x9nkn0ycf"; 4868 }; 4869 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 4870 }; ··· 5219 5220 neoconf-nvim = buildVimPluginFrom2Nix { 5221 pname = "neoconf.nvim"; 5222 + version = "2023-03-10"; 5223 src = fetchFromGitHub { 5224 owner = "folke"; 5225 repo = "neoconf.nvim"; 5226 + rev = "36b0be969326e70143bcd878d4a27f574eabc292"; 5227 + sha256 = "0cr4s1j1crfqh6ds5abxa4miqjky5pv7h24824i51ji2yv7vz8mm"; 5228 }; 5229 meta.homepage = "https://github.com/folke/neoconf.nvim/"; 5230 }; ··· 5243 5244 neodev-nvim = buildVimPluginFrom2Nix { 5245 pname = "neodev.nvim"; 5246 + version = "2023-03-11"; 5247 src = fetchFromGitHub { 5248 owner = "folke"; 5249 repo = "neodev.nvim"; 5250 + rev = "418c54441da2506ee9c99150c38e3f350bcad8c4"; 5251 + sha256 = "1g9dzf2dhfm4vxqpcr075nh6gb62l79gv88khiq1y5958qw095cr"; 5252 }; 5253 meta.homepage = "https://github.com/folke/neodev.nvim/"; 5254 }; ··· 5279 5280 neogit = buildVimPluginFrom2Nix { 5281 pname = "neogit"; 5282 + version = "2023-03-08"; 5283 src = fetchFromGitHub { 5284 owner = "TimUntersberger"; 5285 repo = "neogit"; 5286 + rev = "c4068a22a60981f1bedd9672cdad34b79411ed7a"; 5287 + sha256 = "14nbmjvkq61plw5sc360ppnlf2qhsrxh5znjwjbi5kij9ky8p7ch"; 5288 }; 5289 meta.homepage = "https://github.com/TimUntersberger/neogit/"; 5290 }; ··· 5339 5340 neorg = buildVimPluginFrom2Nix { 5341 pname = "neorg"; 5342 + version = "2023-03-10"; 5343 src = fetchFromGitHub { 5344 owner = "nvim-neorg"; 5345 repo = "neorg"; 5346 + rev = "c2680e67a0aeeb9b0ef6f4d008228de63d14e46b"; 5347 + sha256 = "1hsz1yg2z498x8vsk8k4bvx0hxjj2s4hhvcd34dln7v2539pz5sk"; 5348 }; 5349 meta.homepage = "https://github.com/nvim-neorg/neorg/"; 5350 }; ··· 5387 5388 neoterm = buildVimPluginFrom2Nix { 5389 pname = "neoterm"; 5390 + version = "2023-03-09"; 5391 src = fetchFromGitHub { 5392 owner = "kassio"; 5393 repo = "neoterm"; 5394 + rev = "eca22dc90a9db5e52d8baf91f31991ad540ffe36"; 5395 + sha256 = "097i8fv37mw0923qldsql71s1lgmbvl28gk96w0sz12adq8g4byh"; 5396 }; 5397 meta.homepage = "https://github.com/kassio/neoterm/"; 5398 }; ··· 5411 5412 neotest-haskell = buildVimPluginFrom2Nix { 5413 pname = "neotest-haskell"; 5414 + version = "2023-03-10"; 5415 src = fetchFromGitHub { 5416 owner = "MrcJkb"; 5417 repo = "neotest-haskell"; 5418 + rev = "9776e8881e976a340f1df693a04fd570b9198193"; 5419 + sha256 = "0kc7kqma8nz4hfy6c11mm2aa9jz2b5083qa38wqpshmz408va729"; 5420 }; 5421 meta.homepage = "https://github.com/MrcJkb/neotest-haskell/"; 5422 }; ··· 5543 5544 nightfox-nvim = buildVimPluginFrom2Nix { 5545 pname = "nightfox.nvim"; 5546 + version = "2023-03-11"; 5547 src = fetchFromGitHub { 5548 owner = "EdenEast"; 5549 repo = "nightfox.nvim"; 5550 + rev = "a8044b084e0114609ec2c59cc4fa94c709a457d4"; 5551 + sha256 = "0pdszkzhlfi2fd3i04gxs8gy880qvbqicz6jf7db9abxby2zmfx3"; 5552 }; 5553 meta.homepage = "https://github.com/EdenEast/nightfox.nvim/"; 5554 }; ··· 5579 5580 nlsp-settings-nvim = buildVimPluginFrom2Nix { 5581 pname = "nlsp-settings.nvim"; 5582 + version = "2023-03-09"; 5583 src = fetchFromGitHub { 5584 owner = "tamago324"; 5585 repo = "nlsp-settings.nvim"; 5586 + rev = "1b9fed5dec33c6c731dc8ff91d337091930474be"; 5587 + sha256 = "0bs6j61fjd4ycvhyr54h40v2rj3rymn2s7ncnzbdsczgp3y9wzxi"; 5588 }; 5589 meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; 5590 }; ··· 5637 meta.homepage = "https://github.com/folke/noice.nvim/"; 5638 }; 5639 5640 nord-nvim = buildVimPluginFrom2Nix { 5641 pname = "nord.nvim"; 5642 version = "2023-01-20"; ··· 5687 5688 null-ls-nvim = buildVimPluginFrom2Nix { 5689 pname = "null-ls.nvim"; 5690 + version = "2023-03-10"; 5691 src = fetchFromGitHub { 5692 owner = "jose-elias-alvarez"; 5693 repo = "null-ls.nvim"; 5694 + rev = "e172e1e3011e3d032dbeba6414644ba968570828"; 5695 + sha256 = "1srbfrjx1zzkkvvd9h9g0hyhrqs4yh6z8znwmzxr9xajg2f7m6kd"; 5696 }; 5697 meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; 5698 }; ··· 5747 5748 nvim-autopairs = buildVimPluginFrom2Nix { 5749 pname = "nvim-autopairs"; 5750 + version = "2023-03-07"; 5751 src = fetchFromGitHub { 5752 owner = "windwp"; 5753 repo = "nvim-autopairs"; 5754 + rev = "e755f366721bc9e189ddecd39554559045ac0a18"; 5755 + sha256 = "07r9h19q3800r93ac4qawyl745mppp3035j9xffmx2igj5zvjmk5"; 5756 }; 5757 meta.homepage = "https://github.com/windwp/nvim-autopairs/"; 5758 }; 5759 5760 nvim-base16 = buildVimPluginFrom2Nix { 5761 pname = "nvim-base16"; 5762 + version = "2023-03-07"; 5763 src = fetchFromGitHub { 5764 owner = "RRethy"; 5765 repo = "nvim-base16"; 5766 + rev = "22bad36cd64e85afb0c9d0e9b92106b5ea6dabc6"; 5767 + sha256 = "1yv1vr32qwk0k92hwf6fjklbb1rfxzrswlsymfq6w4dvc4dc8vch"; 5768 }; 5769 meta.homepage = "https://github.com/RRethy/nvim-base16/"; 5770 }; ··· 5783 5784 nvim-bqf = buildVimPluginFrom2Nix { 5785 pname = "nvim-bqf"; 5786 + version = "2023-03-09"; 5787 src = fetchFromGitHub { 5788 owner = "kevinhwang91"; 5789 repo = "nvim-bqf"; 5790 + rev = "1276701ed0216b94d7919d5c07845dcdf05fbde5"; 5791 + sha256 = "0vkd6vhjprb6s6mz6rgfr179yfd9s7vjd5pf4np11cbn99r57186"; 5792 }; 5793 meta.homepage = "https://github.com/kevinhwang91/nvim-bqf/"; 5794 }; ··· 5927 5928 nvim-dap = buildVimPluginFrom2Nix { 5929 pname = "nvim-dap"; 5930 + version = "2023-03-08"; 5931 src = fetchFromGitHub { 5932 owner = "mfussenegger"; 5933 repo = "nvim-dap"; 5934 + rev = "73196075627a4f079c62b0dd4aff8ce0a1b7cf57"; 5935 + sha256 = "0xpg446ww6xyxwypfzcfkqfmj068xmjjrxlyqw54mnlwy3wy6fmb"; 5936 }; 5937 meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; 5938 }; ··· 6047 6048 nvim-highlight-colors = buildVimPluginFrom2Nix { 6049 pname = "nvim-highlight-colors"; 6050 + version = "2023-03-07"; 6051 src = fetchFromGitHub { 6052 owner = "brenoprata10"; 6053 repo = "nvim-highlight-colors"; 6054 + rev = "ce11467796389a4e5838c22384f94c624121796b"; 6055 + sha256 = "1pyhjazxl1ijg1m8gvaw92lslh61052yk12plnqyl8mlla3a9zb2"; 6056 }; 6057 meta.homepage = "https://github.com/brenoprata10/nvim-highlight-colors/"; 6058 }; 6059 6060 nvim-highlite = buildVimPluginFrom2Nix { 6061 pname = "nvim-highlite"; 6062 + version = "2023-03-11"; 6063 src = fetchFromGitHub { 6064 owner = "Iron-E"; 6065 repo = "nvim-highlite"; 6066 + rev = "6336cf91dcd7a3919a57d8cfba582b7651eb9d60"; 6067 + sha256 = "0w008x0xsn7rp94kpjnyx06hl730pp7fscj1dnwwgphwr41r41wz"; 6068 }; 6069 meta.homepage = "https://github.com/Iron-E/nvim-highlite/"; 6070 }; ··· 6095 6096 nvim-jdtls = buildVimPluginFrom2Nix { 6097 pname = "nvim-jdtls"; 6098 + version = "2023-03-10"; 6099 src = fetchFromGitHub { 6100 owner = "mfussenegger"; 6101 repo = "nvim-jdtls"; 6102 + rev = "9fcc9495b5d03f8d50e4af936fd0f905f045a6c2"; 6103 + sha256 = "00j52k5qx8lr5z2hbhb6lz1acp8si8a4xwb4kj6v7g58a9ikbdsn"; 6104 }; 6105 meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/"; 6106 }; ··· 6179 6180 nvim-lspconfig = buildVimPluginFrom2Nix { 6181 pname = "nvim-lspconfig"; 6182 + version = "2023-03-10"; 6183 src = fetchFromGitHub { 6184 owner = "neovim"; 6185 repo = "nvim-lspconfig"; 6186 + rev = "4bb0f1845c5cc6465aecedc773fc2d619fcd8faf"; 6187 + sha256 = "1p014wf031wnh195jd13sxbhdcxx3z2a8d95i6fv2rqvwlhzh3yq"; 6188 }; 6189 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 6190 }; ··· 6299 6300 nvim-nu = buildVimPluginFrom2Nix { 6301 pname = "nvim-nu"; 6302 + version = "2023-03-07"; 6303 src = fetchFromGitHub { 6304 owner = "LhKipp"; 6305 repo = "nvim-nu"; 6306 + rev = "f45f36a97fb0ea6e39f08cc2fac7a2fb3dc3999b"; 6307 + sha256 = "0sck8ac7f2b46yqv0v114jakf934z4z2x6pix0fiipgyfza2vfax"; 6308 }; 6309 meta.homepage = "https://github.com/LhKipp/nvim-nu/"; 6310 }; ··· 6371 6372 nvim-snippy = buildVimPluginFrom2Nix { 6373 pname = "nvim-snippy"; 6374 + version = "2023-03-10"; 6375 src = fetchFromGitHub { 6376 owner = "dcampos"; 6377 repo = "nvim-snippy"; 6378 + rev = "ab38022c766e440c494e18f1e7e487d6be053c9c"; 6379 + sha256 = "1ndnh2h43bjdqq7vz9963lcyxpk46j8gprdms7gzyrxf378ac7kk"; 6380 }; 6381 meta.homepage = "https://github.com/dcampos/nvim-snippy/"; 6382 }; ··· 6407 6408 nvim-surround = buildVimPluginFrom2Nix { 6409 pname = "nvim-surround"; 6410 + version = "2023-03-11"; 6411 src = fetchFromGitHub { 6412 owner = "kylechui"; 6413 repo = "nvim-surround"; 6414 + rev = "177c95c12542cf20a422b19a87ba1ae80254445a"; 6415 + sha256 = "0rzq7xyhrmxd8pms72vx0kr5r3wh689ccn1pdyc8n63q6akiffn1"; 6416 }; 6417 meta.homepage = "https://github.com/kylechui/nvim-surround/"; 6418 }; ··· 6455 6456 nvim-treesitter = buildVimPluginFrom2Nix { 6457 pname = "nvim-treesitter"; 6458 + version = "2023-03-11"; 6459 src = fetchFromGitHub { 6460 owner = "nvim-treesitter"; 6461 repo = "nvim-treesitter"; 6462 + rev = "5d59d18d3e6559e525fd933c41070303c5bae32b"; 6463 + sha256 = "10ppmv3ijr49g5k05lf1ydkxdi5v38aynm0y2mj89c2p83dps8gv"; 6464 }; 6465 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 6466 }; 6467 6468 nvim-treesitter-context = buildVimPluginFrom2Nix { 6469 pname = "nvim-treesitter-context"; 6470 + version = "2023-03-11"; 6471 src = fetchFromGitHub { 6472 owner = "nvim-treesitter"; 6473 repo = "nvim-treesitter-context"; 6474 + rev = "67dcaf9d913d31a9e87d8deceb7eaecf1c33bb22"; 6475 + sha256 = "1q56y6y3kf7by39nfsg1l466yzjwjjbdnrqfjiqrnjv32pm7nfa9"; 6476 }; 6477 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; 6478 }; 6479 6480 nvim-treesitter-pyfold = buildVimPluginFrom2Nix { 6481 pname = "nvim-treesitter-pyfold"; 6482 + version = "2023-03-11"; 6483 src = fetchFromGitHub { 6484 owner = "eddiebergman"; 6485 repo = "nvim-treesitter-pyfold"; 6486 + rev = "af8c9ef24caad5e4a57f89ae06102ea1bad64e02"; 6487 + sha256 = "0s6dgiwzyycycjd8bx434ki2qrhnyl1rahnbijjj79hd5wgzms7l"; 6488 }; 6489 meta.homepage = "https://github.com/eddiebergman/nvim-treesitter-pyfold/"; 6490 }; ··· 6503 6504 nvim-treesitter-textobjects = buildVimPluginFrom2Nix { 6505 pname = "nvim-treesitter-textobjects"; 6506 + version = "2023-03-09"; 6507 src = fetchFromGitHub { 6508 owner = "nvim-treesitter"; 6509 repo = "nvim-treesitter-textobjects"; 6510 + rev = "542e0879d524ba717234fcba049b6c2da7989d5a"; 6511 + sha256 = "0v5rjjjlfh9rddn4w7g1b5ng5z613gsg650i6yqvpsl2z7bgxdyx"; 6512 }; 6513 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects/"; 6514 }; ··· 6539 6540 nvim-ts-rainbow = buildVimPluginFrom2Nix { 6541 pname = "nvim-ts-rainbow"; 6542 + version = "2023-03-06"; 6543 src = fetchFromGitHub { 6544 owner = "mrjones2014"; 6545 repo = "nvim-ts-rainbow"; 6546 + rev = "840039440e012ad798ef31349b93a5d4365023ff"; 6547 + sha256 = "1w4v8s986vr0jir6rhy64s58rybvira3kbl6yyh0i64krwysd716"; 6548 }; 6549 meta.homepage = "https://github.com/mrjones2014/nvim-ts-rainbow/"; 6550 }; 6551 6552 nvim-ts-rainbow2 = buildVimPluginFrom2Nix { 6553 pname = "nvim-ts-rainbow2"; 6554 + version = "2023-03-07"; 6555 src = fetchgit { 6556 url = "https://gitlab.com/HiPhish/nvim-ts-rainbow2"; 6557 + rev = "6bcb1472c321a15eef5a7a015b4fefa8758e6513"; 6558 + sha256 = "1shym9028sv5zs2ianyvivm2ij3j013d098yc4vrs0yf5l9vpdy4"; 6559 }; 6560 meta.homepage = "https://gitlab.com/HiPhish/nvim-ts-rainbow2"; 6561 }; ··· 6574 6575 nvim-web-devicons = buildVimPluginFrom2Nix { 6576 pname = "nvim-web-devicons"; 6577 + version = "2023-03-07"; 6578 src = fetchFromGitHub { 6579 owner = "nvim-tree"; 6580 repo = "nvim-web-devicons"; 6581 + rev = "4af94fec29f508159ceab5413383e5dedd6c24e3"; 6582 + sha256 = "0v4ajp8s4450qfbbxradka0kbh1k4fdvia9h0r15ah9qrlczfaih"; 6583 }; 6584 meta.homepage = "https://github.com/nvim-tree/nvim-web-devicons/"; 6585 }; ··· 6670 6671 oil-nvim = buildVimPluginFrom2Nix { 6672 pname = "oil.nvim"; 6673 + version = "2023-03-07"; 6674 src = fetchFromGitHub { 6675 owner = "stevearc"; 6676 repo = "oil.nvim"; 6677 + rev = "33d5701a8de02bdba171d0795e4422e002f61742"; 6678 + sha256 = "1x3x4dmvmjrsay4x0kfz18jkp1aq9cgndgmwnlli1f432hmf3nps"; 6679 fetchSubmodules = true; 6680 }; 6681 meta.homepage = "https://github.com/stevearc/oil.nvim/"; ··· 6707 6708 onedark-nvim = buildVimPluginFrom2Nix { 6709 pname = "onedark.nvim"; 6710 + version = "2023-03-06"; 6711 src = fetchFromGitHub { 6712 owner = "navarasu"; 6713 repo = "onedark.nvim"; 6714 + rev = "4497678c6b1847b663c4b23000d55f28a2f846ce"; 6715 + sha256 = "05809lpabxliha56pjg0973wv3p3nmz6z76kxyw1r9x69ds9z34h"; 6716 }; 6717 meta.homepage = "https://github.com/navarasu/onedark.nvim/"; 6718 }; ··· 6731 6732 onedarkpro-nvim = buildVimPluginFrom2Nix { 6733 pname = "onedarkpro.nvim"; 6734 + version = "2023-03-11"; 6735 src = fetchFromGitHub { 6736 owner = "olimorris"; 6737 repo = "onedarkpro.nvim"; 6738 + rev = "6e9afac9fc4e3c866086c7a73951683959bb04b0"; 6739 + sha256 = "0dmnph1lsv5lb79f6wwnhxz41yw499648j53q215vsjaqxql6drv"; 6740 }; 6741 meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; 6742 }; ··· 6755 6756 onenord-nvim = buildVimPluginFrom2Nix { 6757 pname = "onenord.nvim"; 6758 + version = "2023-03-08"; 6759 src = fetchFromGitHub { 6760 owner = "rmehri01"; 6761 repo = "onenord.nvim"; 6762 + rev = "c2181be38edea8c8629353163b528ed217f11116"; 6763 + sha256 = "07hrppbj1njnjdyq4v6vxx3nfycr4dx45my23h0ix2kwqhw8f4ad"; 6764 }; 6765 meta.homepage = "https://github.com/rmehri01/onenord.nvim/"; 6766 }; ··· 6791 6792 orgmode = buildVimPluginFrom2Nix { 6793 pname = "orgmode"; 6794 + version = "2023-03-11"; 6795 src = fetchFromGitHub { 6796 owner = "nvim-orgmode"; 6797 repo = "orgmode"; 6798 + rev = "c54f6591121d2c331ad12b4251974054332fbe36"; 6799 + sha256 = "0gc5zjcvffklc1phcnk6gv9pspnbjvjrpqs9hpkfqnbly65mdvh4"; 6800 }; 6801 meta.homepage = "https://github.com/nvim-orgmode/orgmode/"; 6802 }; 6803 6804 oxocarbon-nvim = buildVimPluginFrom2Nix { 6805 pname = "oxocarbon.nvim"; 6806 + version = "2023-03-10"; 6807 src = fetchFromGitHub { 6808 owner = "nyoom-engineering"; 6809 repo = "oxocarbon.nvim"; 6810 + rev = "dd29f538e6cfa0827896a4078db97119a8ca5c5e"; 6811 + sha256 = "0qv3461n1cwggw33q3wrw4sy90rplqyp6xbgk2m7gsvvqf2i6yaw"; 6812 }; 6813 meta.homepage = "https://github.com/nyoom-engineering/oxocarbon.nvim/"; 6814 }; ··· 7237 7238 readline-vim = buildVimPluginFrom2Nix { 7239 pname = "readline.vim"; 7240 + version = "2023-03-09"; 7241 src = fetchFromGitHub { 7242 owner = "ryvnf"; 7243 repo = "readline.vim"; 7244 + rev = "a15ff3ed2aa7a44d258a1eb832465d8de53c137c"; 7245 + sha256 = "0hk6fhyizvjqjyqn8rsh9b2j1aafsir9sz8f0q6zg477f25miw7q"; 7246 }; 7247 meta.homepage = "https://github.com/ryvnf/readline.vim/"; 7248 }; ··· 7261 7262 registers-nvim = buildVimPluginFrom2Nix { 7263 pname = "registers.nvim"; 7264 + version = "2023-03-06"; 7265 src = fetchFromGitHub { 7266 owner = "tversteeg"; 7267 repo = "registers.nvim"; 7268 + rev = "0a461e635403065b3f9a525bd77eff30759cfba0"; 7269 + sha256 = "08mg2rjbvyrgj5l1j3nzv7iwfsvm0wx5838lgk95zqb151sas4r7"; 7270 }; 7271 meta.homepage = "https://github.com/tversteeg/registers.nvim/"; 7272 }; ··· 7803 7804 sqlite-lua = buildVimPluginFrom2Nix { 7805 pname = "sqlite.lua"; 7806 + version = "2023-03-07"; 7807 src = fetchFromGitHub { 7808 owner = "kkharji"; 7809 repo = "sqlite.lua"; 7810 + rev = "5162c8e2cc580f66ffe4bb4a7ae97a412596faba"; 7811 + sha256 = "08ci0lyc0rzk522h09nbfwjzwqb1y0fvapd4fg73y0zxnim45z5z"; 7812 }; 7813 meta.homepage = "https://github.com/kkharji/sqlite.lua/"; 7814 }; ··· 8225 8226 telescope-file-browser-nvim = buildVimPluginFrom2Nix { 8227 pname = "telescope-file-browser.nvim"; 8228 + version = "2023-03-09"; 8229 src = fetchFromGitHub { 8230 owner = "nvim-telescope"; 8231 repo = "telescope-file-browser.nvim"; 8232 + rev = "94fe37a1ea217dd2f90d91222bc1531521146ac3"; 8233 + sha256 = "0qqck9cw709x8xbk5l2slnrmhm7dqagzvn22k5k3i6d6n37yw6qs"; 8234 }; 8235 meta.homepage = "https://github.com/nvim-telescope/telescope-file-browser.nvim/"; 8236 }; ··· 8322 8323 telescope-manix = buildNeovimPluginFrom2Nix { 8324 pname = "telescope-manix"; 8325 + version = "2023-03-08"; 8326 src = fetchFromGitHub { 8327 owner = "MrcJkb"; 8328 repo = "telescope-manix"; 8329 + rev = "0f198947a50587119f678635a889d0461ada710b"; 8330 + sha256 = "0l4sj1mdvf4q5skzjdwq564px6fsx64bdviwb9lkyn6crh65ffa1"; 8331 }; 8332 meta.homepage = "https://github.com/MrcJkb/telescope-manix/"; 8333 }; ··· 8683 8684 toggleterm-nvim = buildVimPluginFrom2Nix { 8685 pname = "toggleterm.nvim"; 8686 + version = "2023-03-11"; 8687 src = fetchFromGitHub { 8688 owner = "akinsho"; 8689 repo = "toggleterm.nvim"; 8690 + rev = "fd63194901fa80c65f6ff2951b8a975b0c13d9b1"; 8691 + sha256 = "0mzhj00d6k4apzq2bl1cajx16pvcin0zpq0mhavlviwb1r37yri7"; 8692 }; 8693 meta.homepage = "https://github.com/akinsho/toggleterm.nvim/"; 8694 }; 8695 8696 tokyonight-nvim = buildVimPluginFrom2Nix { 8697 pname = "tokyonight.nvim"; 8698 + version = "2023-03-08"; 8699 src = fetchFromGitHub { 8700 owner = "folke"; 8701 repo = "tokyonight.nvim"; 8702 + rev = "3ebc29df627c5cf70eb6acb8f0843c9ea9cf6348"; 8703 + sha256 = "16iq60snxaw6n7gxmcvahahzmb1b3pw07rc9cab597qh3vhhszy9"; 8704 }; 8705 meta.homepage = "https://github.com/folke/tokyonight.nvim/"; 8706 }; ··· 8875 8876 unison = buildVimPluginFrom2Nix { 8877 pname = "unison"; 8878 + version = "2023-03-09"; 8879 src = fetchFromGitHub { 8880 owner = "unisonweb"; 8881 repo = "unison"; 8882 + rev = "a7aecd32c38c8fc98955bed010dfe602c994430a"; 8883 + sha256 = "1icgrkrxhz0jq002gyc7rswh3zymi6xb3i6iz3kkiawhmfjbw7pb"; 8884 }; 8885 meta.homepage = "https://github.com/unisonweb/unison/"; 8886 }; ··· 8971 8972 vifm-vim = buildVimPluginFrom2Nix { 8973 pname = "vifm.vim"; 8974 + version = "2023-03-10"; 8975 src = fetchFromGitHub { 8976 owner = "vifm"; 8977 repo = "vifm.vim"; 8978 + rev = "639cfcb386fa419d8e27c69f489d6fedc53ec292"; 8979 + sha256 = "0h4cpdz7li2dcciqkfy3dasg31i69mg56kq4zx1rcch1pzqw4wlb"; 8980 }; 8981 meta.homepage = "https://github.com/vifm/vifm.vim/"; 8982 }; ··· 9703 9704 vim-clap = buildVimPluginFrom2Nix { 9705 pname = "vim-clap"; 9706 + version = "2023-03-11"; 9707 src = fetchFromGitHub { 9708 owner = "liuchengxu"; 9709 repo = "vim-clap"; 9710 + rev = "8fe5c4133a1d6f08b8982688fc7361f6130c979f"; 9711 + sha256 = "109wbz36sq6m6xzr34av7dngpd38iy6j3cdvr6dbs9g93bqi7pam"; 9712 }; 9713 meta.homepage = "https://github.com/liuchengxu/vim-clap/"; 9714 }; ··· 9919 9920 vim-css-color = buildVimPluginFrom2Nix { 9921 pname = "vim-css-color"; 9922 + version = "2023-03-08"; 9923 src = fetchFromGitHub { 9924 owner = "ap"; 9925 repo = "vim-css-color"; 9926 + rev = "5687a7978bc80263cd03d0a667c2f56890cfb940"; 9927 + sha256 = "1bm5ay1c9jw34ax9bxivq9b3crfgizphfq40rd406jdyg72ahgbk"; 9928 }; 9929 meta.homepage = "https://github.com/ap/vim-css-color/"; 9930 }; ··· 10495 10496 vim-fugitive = buildVimPluginFrom2Nix { 10497 pname = "vim-fugitive"; 10498 + version = "2023-03-09"; 10499 src = fetchFromGitHub { 10500 owner = "tpope"; 10501 repo = "vim-fugitive"; 10502 + rev = "5b52a0f395065d6cb7b65a00a5e17eaf9ebd64d5"; 10503 + sha256 = "1skvg3w7aaj0cnjx6fdrbfdn46yi62j14jcb46b832a05zgsymq7"; 10504 }; 10505 meta.homepage = "https://github.com/tpope/vim-fugitive/"; 10506 }; ··· 11181 11182 vim-kitty-navigator = buildVimPluginFrom2Nix { 11183 pname = "vim-kitty-navigator"; 11184 + version = "2023-03-08"; 11185 src = fetchFromGitHub { 11186 owner = "knubie"; 11187 repo = "vim-kitty-navigator"; 11188 + rev = "949ab618060ebcfcfb055c759f3ef9b8a2c6f184"; 11189 + sha256 = "19r48l3z3p1kymkm0z8g4y78bgpg8xc920hf7mr6pim2pfypacq2"; 11190 }; 11191 meta.homepage = "https://github.com/knubie/vim-kitty-navigator/"; 11192 }; ··· 11373 11374 vim-lsp = buildVimPluginFrom2Nix { 11375 pname = "vim-lsp"; 11376 + version = "2023-03-09"; 11377 src = fetchFromGitHub { 11378 owner = "prabirshrestha"; 11379 repo = "vim-lsp"; 11380 + rev = "e82e73a5ebb7df7a9661b3ee296d1b8c5934497f"; 11381 + sha256 = "17drblghy3nynrrcbpxmr3rg7qrfczgklfg19riibz5dymv2rv8k"; 11382 }; 11383 meta.homepage = "https://github.com/prabirshrestha/vim-lsp/"; 11384 }; ··· 11482 11483 vim-matchup = buildVimPluginFrom2Nix { 11484 pname = "vim-matchup"; 11485 + version = "2023-03-07"; 11486 src = fetchFromGitHub { 11487 owner = "andymass"; 11488 repo = "vim-matchup"; 11489 + rev = "fef9f334e64f024ac49eda92ef6274e826fe2de9"; 11490 + sha256 = "1lvk2q46vn4b31igvcjzxdw6s09vk48wxi7iszq9lk3p3p2dclck"; 11491 }; 11492 meta.homepage = "https://github.com/andymass/vim-matchup/"; 11493 }; ··· 11914 11915 vim-oscyank = buildVimPluginFrom2Nix { 11916 pname = "vim-oscyank"; 11917 + version = "2023-03-06"; 11918 src = fetchFromGitHub { 11919 owner = "ojroques"; 11920 repo = "vim-oscyank"; 11921 + rev = "ffe827a27dae98aa826e2295336c650c9a434da0"; 11922 + sha256 = "1hj1yviw2lkinnb4l15psg2c9gmcx4csmlh0hp32kbslwmv56y92"; 11923 }; 11924 meta.homepage = "https://github.com/ojroques/vim-oscyank/"; 11925 }; ··· 12526 12527 vim-sensible = buildVimPluginFrom2Nix { 12528 pname = "vim-sensible"; 12529 + version = "2023-03-08"; 12530 src = fetchFromGitHub { 12531 owner = "tpope"; 12532 repo = "vim-sensible"; 12533 + rev = "5693bb650a26723975276bef7b1da2f00a571e0e"; 12534 + sha256 = "0m6ycmn4w2nkg42d0h9xlwcivvd5466kagimpvdzzqxjma7qczh0"; 12535 }; 12536 meta.homepage = "https://github.com/tpope/vim-sensible/"; 12537 }; ··· 13175 13176 vim-tpipeline = buildVimPluginFrom2Nix { 13177 pname = "vim-tpipeline"; 13178 + version = "2023-03-06"; 13179 src = fetchFromGitHub { 13180 owner = "vimpostor"; 13181 repo = "vim-tpipeline"; 13182 + rev = "c3805441a378ed3891cefebea1c2e62a66cffb73"; 13183 + sha256 = "0zml0nipnrjqibbdq5dpgn2fgf0h963841cxnlps1rbsrs2m2ss5"; 13184 }; 13185 meta.homepage = "https://github.com/vimpostor/vim-tpipeline/"; 13186 }; 13187 13188 vim-trailing-whitespace = buildVimPluginFrom2Nix { 13189 pname = "vim-trailing-whitespace"; 13190 + version = "2023-02-28"; 13191 src = fetchFromGitHub { 13192 owner = "bronson"; 13193 repo = "vim-trailing-whitespace"; 13194 + rev = "5540b3faa2288b226a8d9a4e8244558b12c598aa"; 13195 + sha256 = "11gfrw8r0yn0qx3bb2mg1griqmqfn19vfapam8apspfi2b6rfwg4"; 13196 }; 13197 meta.homepage = "https://github.com/bronson/vim-trailing-whitespace/"; 13198 }; ··· 13511 13512 vim-xkbswitch = buildVimPluginFrom2Nix { 13513 pname = "vim-xkbswitch"; 13514 + version = "2023-03-06"; 13515 src = fetchFromGitHub { 13516 owner = "lyokha"; 13517 repo = "vim-xkbswitch"; 13518 + rev = "99821a4b8ee2a05996954a2894d043af001f2d7b"; 13519 + sha256 = "1jbng45aiypb526ji6nd9d26d4zjj6il4jz808452b5q1immdrpc"; 13520 }; 13521 meta.homepage = "https://github.com/lyokha/vim-xkbswitch/"; 13522 }; ··· 13715 13716 vimspector = buildVimPluginFrom2Nix { 13717 pname = "vimspector"; 13718 + version = "2023-03-11"; 13719 src = fetchFromGitHub { 13720 owner = "puremourning"; 13721 repo = "vimspector"; 13722 + rev = "93fd1058697394789b413ae70b19428533ebf7b1"; 13723 + sha256 = "1grqrpmffl0wk5fnhcp6fpykwjdvqg9qpkdni02869z4xcih9n39"; 13724 fetchSubmodules = true; 13725 }; 13726 meta.homepage = "https://github.com/puremourning/vimspector/"; ··· 13728 13729 vimtex = buildVimPluginFrom2Nix { 13730 pname = "vimtex"; 13731 + version = "2023-03-11"; 13732 src = fetchFromGitHub { 13733 owner = "lervag"; 13734 repo = "vimtex"; 13735 + rev = "c39907f3caad8157b5b5fb628e9d035a8aee7d76"; 13736 + sha256 = "04n908dy9dla70kyw4a238p8qap04jbh67pfp7ddz3ic5w00y70w"; 13737 }; 13738 meta.homepage = "https://github.com/lervag/vimtex/"; 13739 }; ··· 13752 13753 vimwiki = buildVimPluginFrom2Nix { 13754 pname = "vimwiki"; 13755 + version = "2023-03-10"; 13756 src = fetchFromGitHub { 13757 owner = "vimwiki"; 13758 repo = "vimwiki"; 13759 + rev = "acff8a5b1dd0f9f29797d979819b6e96efa5a656"; 13760 + sha256 = "1d39cqn1v2pzqc3znprsq27i79mvvyi1g0qk582965ha17569l0k"; 13761 }; 13762 meta.homepage = "https://github.com/vimwiki/vimwiki/"; 13763 }; ··· 14113 14114 catppuccin-nvim = buildVimPluginFrom2Nix { 14115 pname = "catppuccin-nvim"; 14116 + version = "2023-03-09"; 14117 src = fetchFromGitHub { 14118 owner = "catppuccin"; 14119 repo = "nvim"; 14120 + rev = "90c4d1c6e1f8dd2cff9962b36a70b1e681947621"; 14121 + sha256 = "1y5sp0g2r3x9vmwp45p0rxd0369bvrc5z2f9fk54n278qrg3xi7l"; 14122 }; 14123 meta.homepage = "https://github.com/catppuccin/nvim/"; 14124 }; ··· 14185 14186 lspsaga-nvim-original = buildVimPluginFrom2Nix { 14187 pname = "lspsaga-nvim-original"; 14188 + version = "2023-03-09"; 14189 src = fetchFromGitHub { 14190 owner = "glepnir"; 14191 repo = "lspsaga.nvim"; 14192 + rev = "db6cdf51bf5ae45e4aa65760e597cf0d587c66ee"; 14193 + sha256 = "1zpra73xf320wbi4cfrlzriyklgpgcbdmaphd88lvpkqy5shrfwy"; 14194 }; 14195 meta.homepage = "https://github.com/glepnir/lspsaga.nvim/"; 14196 }; ··· 14207 meta.homepage = "https://github.com/mattn/calendar-vim/"; 14208 }; 14209 14210 + nord-vim = buildVimPluginFrom2Nix { 14211 + pname = "nord-vim"; 14212 + version = "2023-03-07"; 14213 + src = fetchFromGitHub { 14214 + owner = "nordtheme"; 14215 + repo = "vim"; 14216 + rev = "684c345b8a8bf5e37919c38be6edaaa9356dbf4b"; 14217 + sha256 = "1c6mbi0j5r1s0765jj513h5yxzp59n1brar2jsa398ig3508cv9b"; 14218 + }; 14219 + meta.homepage = "https://github.com/nordtheme/vim/"; 14220 + }; 14221 + 14222 pure-lua = buildVimPluginFrom2Nix { 14223 pname = "pure-lua"; 14224 version = "2021-05-16"; ··· 14233 14234 rose-pine = buildVimPluginFrom2Nix { 14235 pname = "rose-pine"; 14236 + version = "2023-03-09"; 14237 src = fetchFromGitHub { 14238 owner = "rose-pine"; 14239 repo = "neovim"; 14240 + rev = "63821c18a2840b3172fc5df15d9268d80f46fa17"; 14241 + sha256 = "1m85hwk6y321q7m95s4xd2alby7r3ipgybhf9jrkzjwi3z3yfmmq"; 14242 }; 14243 meta.homepage = "https://github.com/rose-pine/neovim/"; 14244 };
+64 -20
pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix
··· 523 }; 524 meta.homepage = "https://github.com/PrestonKnopp/tree-sitter-gdscript"; 525 }; 526 git_rebase = buildGrammar { 527 language = "git_rebase"; 528 version = "d8a4207"; ··· 570 }; 571 gleam = buildGrammar { 572 language = "gleam"; 573 - version = "cfcbca3"; 574 src = fetchFromGitHub { 575 - owner = "J3RN"; 576 repo = "tree-sitter-gleam"; 577 - rev = "cfcbca3f8f734773878e00d7bfcedea98eb10be2"; 578 - hash = "sha256-lwaTlIIh4jA92ECMuxV7NtebKrjJSNoXtCe90YIQ4eE="; 579 }; 580 - meta.homepage = "https://github.com/J3RN/tree-sitter-gleam"; 581 }; 582 glimmer = buildGrammar { 583 language = "glimmer"; ··· 678 hash = "sha256-TSbi4Ik/AjswuIdTaFfJ53S0c/qfq0JYPzVv07JASmc="; 679 }; 680 meta.homepage = "https://github.com/slackhq/tree-sitter-hack"; 681 }; 682 haskell = buildGrammar { 683 language = "haskell"; ··· 1280 }; 1281 prql = buildGrammar { 1282 language = "prql"; 1283 - version = "5f6c4e4"; 1284 src = fetchFromGitHub { 1285 owner = "PRQL"; 1286 repo = "tree-sitter-prql"; 1287 - rev = "5f6c4e4a90633b19e2077c1d37248989789d64be"; 1288 - hash = "sha256-unmRen1XJgT60lMfsIsp0PBghfBGqMoiEN9nB8Hu6gQ="; 1289 }; 1290 meta.homepage = "https://github.com/PRQL/tree-sitter-prql"; 1291 }; ··· 1346 }; 1347 query = buildGrammar { 1348 language = "query"; 1349 - version = "0717de0"; 1350 src = fetchFromGitHub { 1351 owner = "nvim-treesitter"; 1352 repo = "tree-sitter-query"; 1353 - rev = "0717de07078a20a8608c98ad5f26c208949d0e15"; 1354 - hash = "sha256-dWWof8rYFTto3A4BfbKTKcNieRbwFdF6xDXW9tQvAqQ="; 1355 }; 1356 meta.homepage = "https://github.com/nvim-treesitter/tree-sitter-query"; 1357 }; ··· 1478 }; 1479 scheme = buildGrammar { 1480 language = "scheme"; 1481 - version = "67b90a3"; 1482 src = fetchFromGitHub { 1483 owner = "6cdh"; 1484 repo = "tree-sitter-scheme"; 1485 - rev = "67b90a365bebf4406af4e5a546d6336de787e135"; 1486 - hash = "sha256-aHYOzOPK74Jd6MWFsap/k+dG+aJDTXQ05q7NoP5kfd8="; 1487 }; 1488 meta.homepage = "https://github.com/6cdh/tree-sitter-scheme"; 1489 }; ··· 1555 }; 1556 sql = buildGrammar { 1557 language = "sql"; 1558 - version = "1cb7c7a"; 1559 src = fetchFromGitHub { 1560 owner = "derekstride"; 1561 repo = "tree-sitter-sql"; 1562 - rev = "1cb7c7a11015983f6d173847d5a3574f8e20107b"; 1563 - hash = "sha256-zdaFE5G19MLH4W5ZF0HfRNNMJV9Evp+X70eXHDmD/pA="; 1564 }; 1565 generate = true; 1566 meta.homepage = "https://github.com/derekstride/tree-sitter-sql"; 1567 }; 1568 starlark = buildGrammar { 1569 language = "starlark"; 1570 version = "8ad93a7"; ··· 1780 }; 1781 meta.homepage = "https://github.com/Philipp-M/tree-sitter-ungrammar"; 1782 }; 1783 v = buildGrammar { 1784 language = "v"; 1785 version = "66cf9d3"; ··· 1893 }; 1894 yuck = buildGrammar { 1895 language = "yuck"; 1896 - version = "48af129"; 1897 src = fetchFromGitHub { 1898 owner = "Philipp-M"; 1899 repo = "tree-sitter-yuck"; 1900 - rev = "48af129ab5411cd6f7ae2b36f53c1192572fa030"; 1901 - hash = "sha256-G/aY771G7R78FhS7WxktlMf/0K+PR80WqfwmH+gQhwQ="; 1902 }; 1903 meta.homepage = "https://github.com/Philipp-M/tree-sitter-yuck"; 1904 };
··· 523 }; 524 meta.homepage = "https://github.com/PrestonKnopp/tree-sitter-gdscript"; 525 }; 526 + git_config = buildGrammar { 527 + language = "git_config"; 528 + version = "a01b498"; 529 + src = fetchFromGitHub { 530 + owner = "the-mikedavis"; 531 + repo = "tree-sitter-git-config"; 532 + rev = "a01b498b25003d97a5f93b0da0e6f28307454347"; 533 + hash = "sha256-9gLmao4zmDYj7uxrngjMa4AG9yIkKyptgaCBcL4GZYA="; 534 + }; 535 + meta.homepage = "https://github.com/the-mikedavis/tree-sitter-git-config"; 536 + }; 537 git_rebase = buildGrammar { 538 language = "git_rebase"; 539 version = "d8a4207"; ··· 581 }; 582 gleam = buildGrammar { 583 language = "gleam"; 584 + version = "ae79782"; 585 src = fetchFromGitHub { 586 + owner = "gleam-lang"; 587 repo = "tree-sitter-gleam"; 588 + rev = "ae79782c00656945db69641378e688cdb78d52c1"; 589 + hash = "sha256-8zxNOQnYvCHdkeyQwBGKL8fkRRinB3GUogPuw2X5n4I="; 590 }; 591 + meta.homepage = "https://github.com/gleam-lang/tree-sitter-gleam"; 592 }; 593 glimmer = buildGrammar { 594 language = "glimmer"; ··· 689 hash = "sha256-TSbi4Ik/AjswuIdTaFfJ53S0c/qfq0JYPzVv07JASmc="; 690 }; 691 meta.homepage = "https://github.com/slackhq/tree-sitter-hack"; 692 + }; 693 + hare = buildGrammar { 694 + language = "hare"; 695 + version = "f0a9e62"; 696 + src = fetchFromGitHub { 697 + owner = "amaanq"; 698 + repo = "tree-sitter-hare"; 699 + rev = "f0a9e6207a8c84bbd11143c8eb0c6cf70dc6d8b4"; 700 + hash = "sha256-zJxkbAzAbA3aRuSHWEF26msbVszK7OxgXP6YPZBUu8w="; 701 + }; 702 + meta.homepage = "https://github.com/amaanq/tree-sitter-hare"; 703 }; 704 haskell = buildGrammar { 705 language = "haskell"; ··· 1302 }; 1303 prql = buildGrammar { 1304 language = "prql"; 1305 + version = "4045dcf"; 1306 src = fetchFromGitHub { 1307 owner = "PRQL"; 1308 repo = "tree-sitter-prql"; 1309 + rev = "4045dcff3f8ac04669855b32584053dec065bba4"; 1310 + hash = "sha256-+uyCgWon/yCRAOTpzpcDovxyXrIZ4UDwwWG4ndMz0iY="; 1311 }; 1312 meta.homepage = "https://github.com/PRQL/tree-sitter-prql"; 1313 }; ··· 1368 }; 1369 query = buildGrammar { 1370 language = "query"; 1371 + version = "e975044"; 1372 src = fetchFromGitHub { 1373 owner = "nvim-treesitter"; 1374 repo = "tree-sitter-query"; 1375 + rev = "e97504446f14f529d5a8e649667d3d60391e4dfd"; 1376 + hash = "sha256-Gv882sbL2fmR++h4/I7dFCp+g6pddRCaLyX7+loEoHU="; 1377 }; 1378 meta.homepage = "https://github.com/nvim-treesitter/tree-sitter-query"; 1379 }; ··· 1500 }; 1501 scheme = buildGrammar { 1502 language = "scheme"; 1503 + version = "38aef90"; 1504 src = fetchFromGitHub { 1505 owner = "6cdh"; 1506 repo = "tree-sitter-scheme"; 1507 + rev = "38aef90f54ef8f2e8e402b1f6f036ed19c636759"; 1508 + hash = "sha256-RftYAEUwqlJrOnDs1Cmz5KmJMMBz5h5m7jXpNjWjDYQ="; 1509 }; 1510 meta.homepage = "https://github.com/6cdh/tree-sitter-scheme"; 1511 }; ··· 1577 }; 1578 sql = buildGrammar { 1579 language = "sql"; 1580 + version = "b2f6b30"; 1581 src = fetchFromGitHub { 1582 owner = "derekstride"; 1583 repo = "tree-sitter-sql"; 1584 + rev = "b2f6b30ce12cbddfb663473457b670f2b3bffaa9"; 1585 + hash = "sha256-moFrlfsb1kpXFXaxRB/8Mu0XAXkQZgKlZefGj+/6NX4="; 1586 }; 1587 generate = true; 1588 meta.homepage = "https://github.com/derekstride/tree-sitter-sql"; 1589 }; 1590 + squirrel = buildGrammar { 1591 + language = "squirrel"; 1592 + version = "3fefc6b"; 1593 + src = fetchFromGitHub { 1594 + owner = "amaanq"; 1595 + repo = "tree-sitter-squirrel"; 1596 + rev = "3fefc6b9bb2b4de1b1c461783f675918cd957546"; 1597 + hash = "sha256-gxj6HCO1ALbQWgadmR93Ot8hxkxsQuAw5D1o8f8mo48="; 1598 + }; 1599 + meta.homepage = "https://github.com/amaanq/tree-sitter-squirrel"; 1600 + }; 1601 starlark = buildGrammar { 1602 language = "starlark"; 1603 version = "8ad93a7"; ··· 1813 }; 1814 meta.homepage = "https://github.com/Philipp-M/tree-sitter-ungrammar"; 1815 }; 1816 + uxntal = buildGrammar { 1817 + language = "uxntal"; 1818 + version = "14e4760"; 1819 + src = fetchFromGitHub { 1820 + owner = "amaanq"; 1821 + repo = "tree-sitter-uxntal"; 1822 + rev = "14e47600afef0affffcbfbe1543381b1ac8fbc5c"; 1823 + hash = "sha256-SgBWJ8b/9kMkSDafx+6eSl+FS4Hkd1Ei2ALhTLL7yRk="; 1824 + }; 1825 + meta.homepage = "https://github.com/amaanq/tree-sitter-uxntal"; 1826 + }; 1827 v = buildGrammar { 1828 language = "v"; 1829 version = "66cf9d3"; ··· 1937 }; 1938 yuck = buildGrammar { 1939 language = "yuck"; 1940 + version = "c348825"; 1941 src = fetchFromGitHub { 1942 owner = "Philipp-M"; 1943 repo = "tree-sitter-yuck"; 1944 + rev = "c348825d3f86dec71dee0e1223c6bd73114e3579"; 1945 + hash = "sha256-H4tsLDo9Egp1mpZGcA5Z9C9wPFNxPEBDTugUYKeYW9I="; 1946 }; 1947 meta.homepage = "https://github.com/Philipp-M/tree-sitter-yuck"; 1948 };
+27 -10
pkgs/applications/editors/vim/plugins/overrides.nix
··· 831 propagatedBuildInputs = [ sniprun-bin ]; 832 }; 833 834 sqlite-lua = super.sqlite-lua.overrideAttrs (old: { 835 postPatch = let 836 libsqlite = "${sqlite.out}/lib/libsqlite3${stdenv.hostPlatform.extensions.sharedLibrary}"; ··· 1105 libiconv 1106 ]; 1107 1108 - cargoSha256 = "sha256-MR9n2+B2TUNnWxZhBbXZCBereLxYntBxLfx9g14vDUw="; 1109 }; 1110 in 1111 '' ··· 1333 }; 1334 }); 1335 1336 vimsence = super.vimsence.overrideAttrs (old: { 1337 meta = with lib; { 1338 description = "Discord rich presence for Vim"; ··· 1355 1356 vimshell-vim = super.vimshell-vim.overrideAttrs (old: { 1357 dependencies = with self; [ vimproc-vim ]; 1358 - }); 1359 - 1360 - vim-trailing-whitespace = super.vim-trailing-whitespace.overrideAttrs (old: { 1361 - patches = [(fetchpatch { 1362 - # https://github.com/bronson/vim-trailing-whitespace/pull/30 1363 - name = "fix-add-dynamic-TerminalOpen-for-both-vim-and-nvim.patch"; 1364 - url = "https://github.com/bronson/vim-trailing-whitespace/commit/99ef803ebdc01d62b418a3e9386d5f10797bfac3.patch"; 1365 - hash = "sha256-cyanHUKxhbY8c6EkAbpUq7QcEBQABCwZ6NoEUOpd2F8="; 1366 - })]; 1367 }); 1368 1369 vim-zettel = super.vim-zettel.overrideAttrs (old: {
··· 831 propagatedBuildInputs = [ sniprun-bin ]; 832 }; 833 834 + # The GitHub repository returns 404, which breaks the update script 835 + Spacegray-vim = buildVimPluginFrom2Nix { 836 + pname = "Spacegray.vim"; 837 + version = "2021-07-06"; 838 + src = fetchFromGitHub { 839 + owner = "ackyshake"; 840 + repo = "Spacegray.vim"; 841 + rev = "c699ca10ed421c462bd1c87a158faaa570dc8e28"; 842 + sha256 = "0ma8w6p5jh6llka49x5j5ql8fmhv0bx5hhsn5b2phak79yqg1k61"; 843 + }; 844 + meta.homepage = "https://github.com/ackyshake/Spacegray.vim/"; 845 + }; 846 + 847 sqlite-lua = super.sqlite-lua.overrideAttrs (old: { 848 postPatch = let 849 libsqlite = "${sqlite.out}/lib/libsqlite3${stdenv.hostPlatform.extensions.sharedLibrary}"; ··· 1118 libiconv 1119 ]; 1120 1121 + cargoHash = "sha256-BFUC6fQ5LpTKx2ztCuFVzXTWzSDl03VYsmVcxBXbiT4="; 1122 }; 1123 in 1124 '' ··· 1346 }; 1347 }); 1348 1349 + # The GitHub repository returns 404, which breaks the update script 1350 + VimCompletesMe = buildVimPluginFrom2Nix { 1351 + pname = "VimCompletesMe"; 1352 + version = "2022-02-18"; 1353 + src = fetchFromGitHub { 1354 + owner = "ackyshake"; 1355 + repo = "VimCompletesMe"; 1356 + rev = "9adf692d7ae6424038458a89d4a411f0a27d1388"; 1357 + sha256 = "1sndgb3291dyifaa8adri2mb8cgbinbar3nw1fnf67k9ahwycaz0"; 1358 + }; 1359 + meta.homepage = "https://github.com/ackyshake/VimCompletesMe/"; 1360 + }; 1361 + 1362 vimsence = super.vimsence.overrideAttrs (old: { 1363 meta = with lib; { 1364 description = "Discord rich presence for Vim"; ··· 1381 1382 vimshell-vim = super.vimshell-vim.overrideAttrs (old: { 1383 dependencies = with self; [ vimproc-vim ]; 1384 }); 1385 1386 vim-zettel = super.vim-zettel.overrideAttrs (old: {
+1 -3
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 29 https://github.com/tmhedberg/SimpylFold/,, 30 https://github.com/jaredgorski/SpaceCamp/,, 31 https://github.com/SpaceVim/SpaceVim/,, 32 - https://github.com/ackyshake/Spacegray.vim/,, 33 https://github.com/chrisbra/SudoEdit.vim/,, 34 - https://github.com/ackyshake/VimCompletesMe/,, 35 https://github.com/hsitz/VimOrganizer/,, 36 https://github.com/VundleVim/Vundle.vim/,, 37 https://github.com/esneider/YUNOcommit.vim/,, ··· 476 https://github.com/mcchrish/nnn.vim/,, 477 https://github.com/shortcuts/no-neck-pain.nvim/,HEAD, 478 https://github.com/folke/noice.nvim/,HEAD, 479 - https://github.com/arcticicestudio/nord-vim/,, 480 https://github.com/shaunsingh/nord.nvim/,, 481 https://github.com/andersevenrud/nordic.nvim/,, 482 https://github.com/jlesquembre/nterm.nvim/,, ··· 756 https://github.com/jbyuki/venn.nvim/,, 757 https://github.com/vhda/verilog_systemverilog.vim/,, 758 https://github.com/vifm/vifm.vim/,, 759 https://github.com/dracula/vim/,,dracula-vim 760 https://github.com/embark-theme/vim/,,embark-vim 761 https://github.com/catppuccin/vim/,HEAD,catppuccin-vim
··· 29 https://github.com/tmhedberg/SimpylFold/,, 30 https://github.com/jaredgorski/SpaceCamp/,, 31 https://github.com/SpaceVim/SpaceVim/,, 32 https://github.com/chrisbra/SudoEdit.vim/,, 33 https://github.com/hsitz/VimOrganizer/,, 34 https://github.com/VundleVim/Vundle.vim/,, 35 https://github.com/esneider/YUNOcommit.vim/,, ··· 474 https://github.com/mcchrish/nnn.vim/,, 475 https://github.com/shortcuts/no-neck-pain.nvim/,HEAD, 476 https://github.com/folke/noice.nvim/,HEAD, 477 https://github.com/shaunsingh/nord.nvim/,, 478 https://github.com/andersevenrud/nordic.nvim/,, 479 https://github.com/jlesquembre/nterm.nvim/,, ··· 753 https://github.com/jbyuki/venn.nvim/,, 754 https://github.com/vhda/verilog_systemverilog.vim/,, 755 https://github.com/vifm/vifm.vim/,, 756 + https://github.com/nordtheme/vim/,,nord-vim 757 https://github.com/dracula/vim/,,dracula-vim 758 https://github.com/embark-theme/vim/,,embark-vim 759 https://github.com/catppuccin/vim/,HEAD,catppuccin-vim
+15 -16
pkgs/applications/editors/vscode/extensions/language-packs.nix
··· 4 5 let 6 7 - buildVscodeLanguagePack = { language, sha256 }: 8 buildVscodeMarketplaceExtension { 9 mktplcRef = { 10 name = "vscode-language-pack-${language}"; 11 publisher = "MS-CEINTL"; 12 - version = "1.64.3"; 13 - inherit sha256; 14 }; 15 meta = { 16 license = lib.licenses.mit; ··· 24 # French 25 vscode-language-pack-fr = buildVscodeLanguagePack { 26 language = "fr"; 27 - sha256 = "sha256-6ynT1sbMgKO8iZReQ6KxFpR1VL3Nuo58MvXCtp+67vA="; 28 }; 29 # Italian 30 vscode-language-pack-it = buildVscodeLanguagePack { 31 language = "it"; 32 - sha256 = "sha256-5aNFpzNMZAZJH3n0rJevke9P6AW0au5i8+r4PXsb9Rg="; 33 }; 34 # German 35 vscode-language-pack-de = buildVscodeLanguagePack { 36 language = "de"; 37 - sha256 = "sha256-oEaWtsgktHKw52lnZTESkpzC/TTY8LO4yX11IgtMG5U="; 38 }; 39 # Spanish 40 vscode-language-pack-es = buildVscodeLanguagePack { 41 language = "es"; 42 - sha256 = "sha256-utLWbved3WCCk3XzqedbYzmyaKfbMrAmR0btT09GlxA="; 43 }; 44 # Russian 45 vscode-language-pack-ru = buildVscodeLanguagePack { 46 language = "ru"; 47 - sha256 = "sha256-0Wr2ICOiaaj4jZ555bxUJcmXO/yWDyn0UmdvxUF3WSQ="; 48 }; 49 # Chinese (Simplified) 50 vscode-language-pack-zh-hans = buildVscodeLanguagePack { 51 language = "zh-hans"; 52 - sha256 = "sha256-irTSQcVXf/V3MuZwfx4tFcvBk+xhbFZTnb7IG28s/p4="; 53 }; 54 # Chinese (Traditional) 55 vscode-language-pack-zh-hant = buildVscodeLanguagePack { 56 language = "zh-hant"; 57 - sha256 = "sha256-3IA/VTTTEqS6jrDYv50GnLXOTSC1XAMvqOVfOuvIdIs="; 58 }; 59 # Japanese 60 vscode-language-pack-ja = buildVscodeLanguagePack { 61 language = "ja"; 62 - sha256 = "sha256-rxod70ddrppEYYzukksVY1dTXR8osLFAsIPr1fSFZDg="; 63 }; 64 # Korean 65 vscode-language-pack-ko = buildVscodeLanguagePack { 66 language = "ko"; 67 - sha256 = "sha256-QYFaxJz1PqKKIiLosLQ8Tu3JNXzpxLFqgIHjjRLwjA4="; 68 }; 69 # Czech 70 vscode-language-pack-cs = buildVscodeLanguagePack { 71 language = "cs"; 72 - sha256 = "sha256-eMk+syy2h+Xb3k6QB8PqYaF4I1ydaY6eRsvOXmelh9Q="; 73 }; 74 # Portuguese (Brazil) 75 vscode-language-pack-pt-br = buildVscodeLanguagePack { 76 language = "pt-BR"; 77 - sha256 = "sha256-7Trz38KBl4sD7608MvTs02pUsdD05oHEj3Sp1LvtI7I="; 78 }; 79 # Turkish 80 vscode-language-pack-tr = buildVscodeLanguagePack { 81 language = "tr"; 82 - sha256 = "sha256-T4CTpbve3vrNdW4VDfHDg8U8cQEtuxPV5LvNdtKrqzA"; 83 }; 84 # Pseudo Language 85 vscode-language-pack-qps-ploc = buildVscodeLanguagePack { 86 language = "qps-ploc"; 87 - sha256 = "sha256-rPvCr3uQPfM8vwKoV7Un5aiMZClhf6TvG1PEe3xYNI0="; 88 }; 89 }
··· 4 5 let 6 7 + buildVscodeLanguagePack = { language, version ? "1.76.2023030809", sha256 }: 8 buildVscodeMarketplaceExtension { 9 mktplcRef = { 10 name = "vscode-language-pack-${language}"; 11 publisher = "MS-CEINTL"; 12 + inherit version sha256; 13 }; 14 meta = { 15 license = lib.licenses.mit; ··· 23 # French 24 vscode-language-pack-fr = buildVscodeLanguagePack { 25 language = "fr"; 26 + sha256 = "19brasjwwgdskgwayclmsywf007i2d47vx7dwq6hq2bhx4rd6xfy"; 27 }; 28 # Italian 29 vscode-language-pack-it = buildVscodeLanguagePack { 30 language = "it"; 31 + sha256 = "1s5x3w125fliimr0i218mars4xjl70hsz0ihxrjk97c66yzg3gw7"; 32 }; 33 # German 34 vscode-language-pack-de = buildVscodeLanguagePack { 35 language = "de"; 36 + sha256 = "0ih8h3n5mcadclxxlrgajq7kprgj9fbklccc00r0z8vqnmlc0dw0"; 37 }; 38 # Spanish 39 vscode-language-pack-es = buildVscodeLanguagePack { 40 language = "es"; 41 + sha256 = "077n4mlx9qxqlp018wfi6hm3syhxsp2xzyih42kpsp71xi8j113r"; 42 }; 43 # Russian 44 vscode-language-pack-ru = buildVscodeLanguagePack { 45 language = "ru"; 46 + sha256 = "04mdxspm8i1dra0qmim4n4qin050adm2zk9pcnn3z4qbf3yvvnf4"; 47 }; 48 # Chinese (Simplified) 49 vscode-language-pack-zh-hans = buildVscodeLanguagePack { 50 language = "zh-hans"; 51 + sha256 = "0f2bg5nm4sybwf84afvhc22yjp66rzdz4s1iaa31yxb4c1ij2vsr"; 52 }; 53 # Chinese (Traditional) 54 vscode-language-pack-zh-hant = buildVscodeLanguagePack { 55 language = "zh-hant"; 56 + sha256 = "1dspg6x7n9b89cirf63m2y0p6r2m197qzgvvavqfm7bv6cpskha0"; 57 }; 58 # Japanese 59 vscode-language-pack-ja = buildVscodeLanguagePack { 60 language = "ja"; 61 + sha256 = "1idiv9xqfqhz1y3pd4h3ayy3svccr4jhrm23nf9h80g38k74qayi"; 62 }; 63 # Korean 64 vscode-language-pack-ko = buildVscodeLanguagePack { 65 language = "ko"; 66 + sha256 = "0g980sfa386by741sxxlapc2cjsbkfvldcc5kylxvf2drigyvka7"; 67 }; 68 # Czech 69 vscode-language-pack-cs = buildVscodeLanguagePack { 70 language = "cs"; 71 + sha256 = "0sm3xxiv8lrln051yjq6s5jmpvkbphv1i90lrx472pwknmiwx74a"; 72 }; 73 # Portuguese (Brazil) 74 vscode-language-pack-pt-br = buildVscodeLanguagePack { 75 language = "pt-BR"; 76 + sha256 = "1k4y528im6sr8n4blh6k4xng4d534siaaflvnarizs3py9wa61d1"; 77 }; 78 # Turkish 79 vscode-language-pack-tr = buildVscodeLanguagePack { 80 language = "tr"; 81 + sha256 = "1yf59idj6g77sqkm46bdadklvbvb3ncxzd9mfm9y32h54fxffh6a"; 82 }; 83 # Pseudo Language 84 vscode-language-pack-qps-ploc = buildVscodeLanguagePack { 85 language = "qps-ploc"; 86 + sha256 = "1dmn58fx8mpbn84zqyy09a1j67b5988gn7xjmfdk73bbd7hzbmji"; 87 }; 88 }
+3 -3
pkgs/applications/networking/cluster/kyverno/default.nix
··· 2 3 buildGoModule rec { 4 pname = "kyverno"; 5 - version = "1.9.0"; 6 7 src = fetchFromGitHub { 8 owner = "kyverno"; 9 repo = "kyverno"; 10 rev = "v${version}"; 11 - sha256 = "sha256-i8uKhzvU9ftlzgzU4ViYg6z+OUNNHGbiFhFAwDKwtnw="; 12 }; 13 14 ldflags = [ ··· 18 "-X github.com/kyverno/kyverno/pkg/version.BuildTime=1970-01-01_00:00:00" 19 ]; 20 21 - vendorHash = "sha256-BGIh1wzHIk1kSvk/sQ/tDBhGIOOx0o6Dk4LbK9Z1FAQ="; 22 23 subPackages = [ "cmd/cli/kubectl-kyverno" ]; 24
··· 2 3 buildGoModule rec { 4 pname = "kyverno"; 5 + version = "1.9.1"; 6 7 src = fetchFromGitHub { 8 owner = "kyverno"; 9 repo = "kyverno"; 10 rev = "v${version}"; 11 + sha256 = "sha256-FHSvouD/7jZ70O3td6HLqXlOhMDbKPwqTy41Xwijyk4="; 12 }; 13 14 ldflags = [ ··· 18 "-X github.com/kyverno/kyverno/pkg/version.BuildTime=1970-01-01_00:00:00" 19 ]; 20 21 + vendorHash = "sha256-jE1v9Ec4lEVcx+YjVtcsuNPCqr3x1pt8BMmC+OTwlRM="; 22 23 subPackages = [ "cmd/cli/kubectl-kyverno" ]; 24
+3 -3
pkgs/applications/networking/cluster/rancher/default.nix
··· 2 3 buildGoModule rec { 4 pname = "rancher"; 5 - version = "2.6.9"; 6 7 src = fetchFromGitHub { 8 owner = "rancher"; 9 repo = "cli"; 10 rev = "v${version}"; 11 - sha256 = "sha256-co4LVd5A0bJ4CIuCfv6WyV8XCMbPCFAAcV12WekYrw4="; 12 }; 13 14 ldflags = [ ··· 19 "-static" 20 ]; 21 22 - vendorSha256 = "sha256-oclMnt6uJa8SG2fNM0fi+HCVMMi4rkykx8VpK/tXilQ="; 23 24 postInstall = '' 25 mv $out/bin/cli $out/bin/rancher
··· 2 3 buildGoModule rec { 4 pname = "rancher"; 5 + version = "2.6.11"; 6 7 src = fetchFromGitHub { 8 owner = "rancher"; 9 repo = "cli"; 10 rev = "v${version}"; 11 + sha256 = "sha256-1hIYFQ9Uwrm6chPXka0yK2XoZYHqv5lJoyENZmgMAwc="; 12 }; 13 14 ldflags = [ ··· 19 "-static" 20 ]; 21 22 + vendorHash = "sha256-oclMnt6uJa8SG2fNM0fi+HCVMMi4rkykx8VpK/tXilQ="; 23 24 postInstall = '' 25 mv $out/bin/cli $out/bin/rancher
+2 -2
pkgs/applications/networking/cluster/rke/default.nix
··· 2 3 buildGoModule rec { 4 pname = "rke"; 5 - version = "1.4.2"; 6 7 src = fetchFromGitHub { 8 owner = "rancher"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-4aT9SguxN7oaewnrxme1nCFfaQytSJ9Aeb0WEQACtUA="; 12 }; 13 14 vendorHash = "sha256-zV1lrJhzrUAcEk6jYLCFrHcYw3CZart46qXErCTjZyQ=";
··· 2 3 buildGoModule rec { 4 pname = "rke"; 5 + version = "1.4.3"; 6 7 src = fetchFromGitHub { 8 owner = "rancher"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-UTvDrrveFDrPD0ar87Q3NZSxTyCAe5gpp3e2QPeMMm4="; 12 }; 13 14 vendorHash = "sha256-zV1lrJhzrUAcEk6jYLCFrHcYw3CZart46qXErCTjZyQ=";
+4 -4
pkgs/applications/networking/cluster/werf/default.nix
··· 10 11 buildGoModule rec { 12 pname = "werf"; 13 - version = "1.2.204"; 14 15 src = fetchFromGitHub { 16 owner = "werf"; 17 repo = "werf"; 18 rev = "v${version}"; 19 - hash = "sha256-/AMOnoED7MKvX/UTRWVGyXw8xuAHQWCnBnA6aQujXiE="; 20 }; 21 22 - vendorHash = "sha256-SzqGcbfDtBfgnu6CRPyk2tPdwNDhM1RfteKTXVvivw4="; 23 24 proxyVendor = true; 25 ··· 64 integration/suites \ 65 pkg/true_git/*test.go \ 66 test/e2e 67 - '' + lib.optionalString (stdenv.isLinux && stdenv.isAarch64) '' 68 # Remove failing tests. 69 rm -rf \ 70 cmd/werf/docs/replacers/kubectl/kubectl_test.go
··· 10 11 buildGoModule rec { 12 pname = "werf"; 13 + version = "1.2.207"; 14 15 src = fetchFromGitHub { 16 owner = "werf"; 17 repo = "werf"; 18 rev = "v${version}"; 19 + hash = "sha256-qAptDffM4ZufEPmrhxlGgMyNoih7JYptUVnPfyXy7ok="; 20 }; 21 22 + vendorHash = "sha256-QQ0CjyBz1gY6o2I45DA9iD7rrJGVTvWvl4u8ZHuHNeg="; 23 24 proxyVendor = true; 25 ··· 64 integration/suites \ 65 pkg/true_git/*test.go \ 66 test/e2e 67 + 68 # Remove failing tests. 69 rm -rf \ 70 cmd/werf/docs/replacers/kubectl/kubectl_test.go
+3 -3
pkgs/applications/science/logic/abc/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "abc-verifier"; 7 - version = "unstable-2023-02-04"; 8 9 src = fetchFromGitHub { 10 owner = "yosyshq"; 11 repo = "abc"; 12 - rev = "a8f0ef2368aa56b3ad20a52298a02e63b2a93e2d"; 13 - hash = "sha256-48i6AKQhMG5hcnkS0vejOy1PqFbeb6FpU7Yx0rEvHDI="; 14 }; 15 16 nativeBuildInputs = [ cmake ];
··· 4 5 stdenv.mkDerivation rec { 6 pname = "abc-verifier"; 7 + version = "unstable-2023-02-23"; 8 9 src = fetchFromGitHub { 10 owner = "yosyshq"; 11 repo = "abc"; 12 + rev = "2c1c83f75b8078ced51f92c697da3e712feb3ac3"; 13 + hash = "sha256-THcyEifIp9v1bOofFVm9NFPqgI6NfKKys+Ea2KyNpv8="; 14 }; 15 16 nativeBuildInputs = [ cmake ];
+2 -1
pkgs/applications/science/logic/tamarin-prover/default.nix
··· 1 { haskellPackages, mkDerivation, fetchFromGitHub, lib 2 # the following are non-haskell dependencies 3 - , makeWrapper, which, maude, graphviz 4 }: 5 6 let ··· 76 executableToolDepends = [ makeWrapper which maude graphviz ]; 77 postInstall = '' 78 wrapProgram $out/bin/tamarin-prover \ 79 --prefix PATH : ${lib.makeBinPath [ which maude graphviz ]} 80 # so that the package can be used as a vim plugin to install syntax coloration 81 install -Dt $out/share/vim-plugins/tamarin-prover/syntax/ etc/syntax/spthy.vim
··· 1 { haskellPackages, mkDerivation, fetchFromGitHub, lib 2 # the following are non-haskell dependencies 3 + , makeWrapper, which, maude, graphviz, glibcLocales 4 }: 5 6 let ··· 76 executableToolDepends = [ makeWrapper which maude graphviz ]; 77 postInstall = '' 78 wrapProgram $out/bin/tamarin-prover \ 79 + --set LOCALE_ARCHIVE "${glibcLocales}/lib/locale/locale-archive" \ 80 --prefix PATH : ${lib.makeBinPath [ which maude graphviz ]} 81 # so that the package can be used as a vim plugin to install syntax coloration 82 install -Dt $out/share/vim-plugins/tamarin-prover/syntax/ etc/syntax/spthy.vim
+2 -2
pkgs/applications/version-management/git-machete/default.nix
··· 12 13 buildPythonApplication rec { 14 pname = "git-machete"; 15 - version = "3.16.0"; 16 17 src = fetchFromGitHub { 18 owner = "virtuslab"; 19 repo = pname; 20 rev = "v${version}"; 21 - hash = "sha256-94qYCyWqVwMMptlJIe4o4/mEHnhcMubcupd+Qs2SYH0="; 22 }; 23 24 nativeBuildInputs = [ installShellFiles ];
··· 12 13 buildPythonApplication rec { 14 pname = "git-machete"; 15 + version = "3.16.1"; 16 17 src = fetchFromGitHub { 18 owner = "virtuslab"; 19 repo = pname; 20 rev = "v${version}"; 21 + hash = "sha256-Js32YKzQcrQfVt7RWXFPA7guR8Tpd1jCTuwboV1zyw0="; 22 }; 23 24 nativeBuildInputs = [ installShellFiles ];
+6 -4
pkgs/desktops/deepin/apps/deepin-reader/default.nix
··· 16 , libspectre 17 , openjpeg 18 , djvulibre 19 - , gtest 20 , qtbase 21 }: 22 23 stdenv.mkDerivation rec { 24 pname = "deepin-reader"; 25 - version = "5.10.28"; 26 27 src = fetchFromGitHub { 28 owner = "linuxdeepin"; 29 repo = pname; 30 rev = version; 31 - sha256 = "sha256-0jHhsxEjBbu3ktvjX1eKnkZDwzRk9MrUSJSdYeOvWtI="; 32 }; 33 34 patches = [ ./use-pkg-config.diff ]; ··· 56 libspectre 57 djvulibre 58 openjpeg 59 - gtest 60 ]; 61 62 # qt5integration must be placed before qtsvg in QT_PLUGIN_PATH
··· 16 , libspectre 17 , openjpeg 18 , djvulibre 19 , qtbase 20 }: 21 22 stdenv.mkDerivation rec { 23 pname = "deepin-reader"; 24 + version = "5.10.29"; 25 26 src = fetchFromGitHub { 27 owner = "linuxdeepin"; 28 repo = pname; 29 rev = version; 30 + sha256 = "sha256-IpgmTmnrPWc9EFZVM+S2nFxdpPjbgXqEWUnK/O9FmUg="; 31 }; 32 33 patches = [ ./use-pkg-config.diff ]; ··· 55 libspectre 56 djvulibre 57 openjpeg 58 + ]; 59 + 60 + qmakeFlags = [ 61 + "DEFINES+=VERSION=${version}" 62 ]; 63 64 # qt5integration must be placed before qtsvg in QT_PLUGIN_PATH
+6
pkgs/desktops/pantheon/apps/elementary-mail/default.nix
··· 44 url = "https://github.com/elementary/mail/commit/9e6eb73a8420c9bf327e59c25e7e6d8fa87d480a.patch"; 45 sha256 = "sha256-idkVymePLa7vgfuou0HIrbWRCaWAgZliDcp4HyZBArs="; 46 }) 47 ]; 48 49 nativeBuildInputs = [
··· 44 url = "https://github.com/elementary/mail/commit/9e6eb73a8420c9bf327e59c25e7e6d8fa87d480a.patch"; 45 sha256 = "sha256-idkVymePLa7vgfuou0HIrbWRCaWAgZliDcp4HyZBArs="; 46 }) 47 + # Fix crash on setting message flag 48 + # https://github.com/elementary/mail/pull/825 49 + (fetchpatch { 50 + url = "https://github.com/elementary/mail/commit/c630f926196e44e086ddda6086cb8b9bdd3efc83.patch"; 51 + sha256 = "sha256-4vEETSHA1Gd8GpBZuko4X+9AjG7SFwUlK2MxrWq+iOE="; 52 + }) 53 ]; 54 55 nativeBuildInputs = [
+2 -2
pkgs/development/compilers/yosys/default.nix
··· 71 72 in stdenv.mkDerivation rec { 73 pname = "yosys"; 74 - version = "0.26"; 75 76 src = fetchFromGitHub { 77 owner = "YosysHQ"; 78 repo = "yosys"; 79 rev = "${pname}-${version}"; 80 - hash = "sha256-0xV+323YTK+VhnD05SmvGv8uT4TzqA9IZ/iKl1as1Kc="; 81 }; 82 83 enableParallelBuilding = true;
··· 71 72 in stdenv.mkDerivation rec { 73 pname = "yosys"; 74 + version = "0.27"; 75 76 src = fetchFromGitHub { 77 owner = "YosysHQ"; 78 repo = "yosys"; 79 rev = "${pname}-${version}"; 80 + hash = "sha256-u6SeVlmQVCF3xCGajxsv0ZAgMKg6aa6WdN3DLKTPNYo="; 81 }; 82 83 enableParallelBuilding = true;
-5
pkgs/development/haskell-modules/configuration-darwin.nix
··· 318 # https://github.com/NixOS/nixpkgs/issues/149692 319 Agda = removeConfigureFlag "-foptimise-heavily" super.Agda; 320 321 - # regex-rure's test suite fails with a dylib not loaded error due to some 322 - # rpath issue. 323 - regex-rure = dontDistribute (markBroken super.regex-rure); 324 - jacinda = dontDistribute super.jacinda; 325 - 326 } // lib.optionalAttrs pkgs.stdenv.isx86_64 { # x86_64-darwin 327 328 # tests appear to be failing to link or something:
··· 318 # https://github.com/NixOS/nixpkgs/issues/149692 319 Agda = removeConfigureFlag "-foptimise-heavily" super.Agda; 320 321 } // lib.optionalAttrs pkgs.stdenv.isx86_64 { # x86_64-darwin 322 323 # tests appear to be failing to link or something:
-3
pkgs/development/libraries/SDL2/default.nix
··· 33 , udev 34 , ibusSupport ? false 35 , ibus 36 - , fcitxSupport ? false 37 - , fcitx 38 , libdecorSupport ? stdenv.isLinux && !stdenv.hostPlatform.isAndroid 39 , libdecor 40 , pipewireSupport ? stdenv.isLinux && !stdenv.hostPlatform.isAndroid ··· 109 buildInputs = [ libiconv ] 110 ++ dlopenBuildInputs 111 ++ lib.optional ibusSupport ibus 112 - ++ lib.optional fcitxSupport fcitx 113 ++ lib.optionals stdenv.isDarwin [ AudioUnit Cocoa CoreAudio CoreServices ForceFeedback OpenGL ]; 114 115 enableParallelBuilding = true;
··· 33 , udev 34 , ibusSupport ? false 35 , ibus 36 , libdecorSupport ? stdenv.isLinux && !stdenv.hostPlatform.isAndroid 37 , libdecor 38 , pipewireSupport ? stdenv.isLinux && !stdenv.hostPlatform.isAndroid ··· 107 buildInputs = [ libiconv ] 108 ++ dlopenBuildInputs 109 ++ lib.optional ibusSupport ibus 110 ++ lib.optionals stdenv.isDarwin [ AudioUnit Cocoa CoreAudio CoreServices ForceFeedback OpenGL ]; 111 112 enableParallelBuilding = true;
+10 -8
pkgs/development/libraries/allegro/5.nix
··· 20 21 nativeBuildInputs = [ cmake pkg-config ]; 22 buildInputs = [ 23 - texinfo libXext xorgproto libX11 libXpm libXt libXcursor 24 - alsa-lib zlib libpng libvorbis libXxf86dga libXxf86misc 25 - libXxf86vm openal libGLU libGL 26 - libjpeg flac 27 - libXi libXfixes 28 - enet libtheora freetype physfs libopus gtk3 pcre libXdmcp 29 - libpulseaudio libpthreadstubs 30 ]; 31 32 postPatch = '' 33 sed -e 's@/XInput2.h@/XI2.h@g' -i CMakeLists.txt "src/"*.c 34 ''; 35 36 cmakeFlags = [ "-DCMAKE_SKIP_RPATH=ON" ]; ··· 40 homepage = "https://liballeg.org/"; 41 license = licenses.zlib; 42 maintainers = [ maintainers.raskin ]; 43 - platforms = platforms.linux; 44 }; 45 }
··· 20 21 nativeBuildInputs = [ cmake pkg-config ]; 22 buildInputs = [ 23 + texinfo zlib libpng libvorbis openal libGLU libGL 24 + libjpeg flac enet libtheora freetype physfs libopus 25 + gtk3 pcre 26 + ] ++ lib.optionals stdenv.isLinux [ 27 + libXext xorgproto libX11 libXpm libXt libXcursor alsa-lib 28 + libXxf86dga libXxf86misc libXxf86vm libXi libXfixes 29 + libXdmcp libpulseaudio libpthreadstubs 30 ]; 31 32 postPatch = '' 33 sed -e 's@/XInput2.h@/XI2.h@g' -i CMakeLists.txt "src/"*.c 34 + sed -e 's@Kernel/IOKit/hidsystem/IOHIDUsageTables.h@IOKit/hid/IOHIDUsageTables.h@g' -i include/allegro5/platform/alosx.h 35 + sed -e 's@OpenAL/@AL/@g' -i addons/audio/openal.c 36 ''; 37 38 cmakeFlags = [ "-DCMAKE_SKIP_RPATH=ON" ]; ··· 42 homepage = "https://liballeg.org/"; 43 license = licenses.zlib; 44 maintainers = [ maintainers.raskin ]; 45 + platforms = platforms.linux ++ platforms.darwin; 46 }; 47 }
+1 -1
pkgs/development/libraries/rocalution/default.nix
··· 21 22 stdenv.mkDerivation (finalAttrs: { 23 pname = "rocalution"; 24 - version = "5.4.2"; 25 26 outputs = [ 27 "out"
··· 21 22 stdenv.mkDerivation (finalAttrs: { 23 pname = "rocalution"; 24 + version = "5.4.3"; 25 26 outputs = [ 27 "out"
+6 -6
pkgs/development/libraries/rure/Cargo.lock
··· 4 5 [[package]] 6 name = "aho-corasick" 7 - version = "0.7.19" 8 source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e" 10 dependencies = [ 11 "memchr", 12 ] 13 14 [[package]] 15 name = "libc" 16 - version = "0.2.137" 17 source = "registry+https://github.com/rust-lang/crates.io-index" 18 - checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89" 19 20 [[package]] 21 name = "memchr" ··· 25 26 [[package]] 27 name = "regex" 28 - version = "1.7.0" 29 source = "registry+https://github.com/rust-lang/crates.io-index" 30 - checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" 31 dependencies = [ 32 "aho-corasick", 33 "memchr",
··· 4 5 [[package]] 6 name = "aho-corasick" 7 + version = "0.7.20" 8 source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 10 dependencies = [ 11 "memchr", 12 ] 13 14 [[package]] 15 name = "libc" 16 + version = "0.2.140" 17 source = "registry+https://github.com/rust-lang/crates.io-index" 18 + checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" 19 20 [[package]] 21 name = "memchr" ··· 25 26 [[package]] 27 name = "regex" 28 + version = "1.7.1" 29 source = "registry+https://github.com/rust-lang/crates.io-index" 30 + checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" 31 dependencies = [ 32 "aho-corasick", 33 "memchr",
+5
pkgs/development/libraries/rure/default.nix
··· 2 , stdenv 3 , rustPlatform 4 , fetchCrate 5 }: 6 7 let ··· 26 postInstall = '' 27 install -Dm644 include/rure.h -t "$dev/include" 28 ''; 29 30 passthru.updateScript = ./update.sh; 31
··· 2 , stdenv 3 , rustPlatform 4 , fetchCrate 5 + , fixDarwinDylibNames 6 }: 7 8 let ··· 27 postInstall = '' 28 install -Dm644 include/rure.h -t "$dev/include" 29 ''; 30 + 31 + nativeBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 32 + fixDarwinDylibNames 33 + ]; 34 35 passthru.updateScript = ./update.sh; 36
-36
pkgs/development/ocaml-modules/gmetadom/default.nix
··· 1 - {stdenv, lib, fetchurl, ocaml, findlib, gdome2, libxslt, pkg-config}: 2 - 3 - let 4 - pname = "gmetadom"; 5 - in 6 - 7 - stdenv.mkDerivation rec { 8 - name = "${pname}-${version}"; 9 - version = "0.2.6"; 10 - 11 - src = fetchurl { 12 - url = "mirror://sourceforge/project/${pname}/${pname}/${version}/${pname}-${version}.tar.gz"; 13 - sha256 = "0skmlv0pnqvg99wzzzi1h4zhwzd82xg7xpkj1kwpfy7bzinjh7ig"; 14 - }; 15 - 16 - patches = [ ./gcc-4.3.patch ]; 17 - 18 - dontDisableStatic = true; 19 - 20 - preConfigure='' 21 - configureFlags="--with-ocaml-lib-prefix=$out/lib/ocaml/${ocaml.version}/site-lib" 22 - ''; 23 - 24 - nativeBuildInputs = [ pkg-config ocaml findlib ]; 25 - buildInputs = [ libxslt ]; 26 - propagatedBuildInputs = [ gdome2 ]; 27 - 28 - strictDeps = true; 29 - 30 - meta = { 31 - homepage = "https://gmetadom.sourceforge.net/"; 32 - description = "A collection of librares, each library providing a DOM implementation"; 33 - license = lib.licenses.lgpl21Plus; 34 - maintainers = [ lib.maintainers.roconnor ]; 35 - }; 36 - }
···
-18
pkgs/development/ocaml-modules/gmetadom/gcc-4.3.patch
··· 1 - #! /bin/sh /usr/share/dpatch/dpatch-run 2 - ## gcc-4.3.dpatch by Stefano Zacchiroli <zack@debian.org> 3 - ## 4 - ## All lines beginning with `## DP:' are a description of the patch. 5 - ## DP: ensure sources build with gcc-4.3 6 - 7 - @DPATCH@ 8 - diff -urNad trunk~/src/shared/Traits.hh.in trunk/src/shared/Traits.hh.in 9 - --- trunk~/src/shared/Traits.hh.in 2003-01-14 12:41:55.000000000 +0100 10 - +++ trunk/src/shared/Traits.hh.in 2008-05-01 15:45:39.000000000 +0200 11 - @@ -26,6 +26,7 @@ 12 - */ 13 - 14 - #include <string> 15 - +#include <cstring> 16 - 17 - #include "@DOM_NAMESPACE@Char.hh" 18 -
···
+2 -2
pkgs/development/python-modules/goodwe/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "goodwe"; 11 - version = "0.2.27"; 12 format = "pyproject"; 13 14 disabled = pythonOlder "3.8"; ··· 17 owner = "marcelblijleven"; 18 repo = pname; 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-J7hmtFEvJ2ivVi5UsahcpWen/gw65bf3rhBEpiOKsWk="; 21 }; 22 23 postPatch = ''
··· 8 9 buildPythonPackage rec { 10 pname = "goodwe"; 11 + version = "0.2.28"; 12 format = "pyproject"; 13 14 disabled = pythonOlder "3.8"; ··· 17 owner = "marcelblijleven"; 18 repo = pname; 19 rev = "refs/tags/v${version}"; 20 + hash = "sha256-HkOlvZaCQOt+jbmzal17W5eU7SEq+kzTgbFd3fiTY/A="; 21 }; 22 23 postPatch = ''
+2 -2
pkgs/development/tools/misc/devspace/default.nix
··· 5 6 buildGoModule rec { 7 pname = "devspace"; 8 - version = "6.3.0"; 9 10 src = fetchFromGitHub { 11 owner = "loft-sh"; 12 repo = "devspace"; 13 rev = "v${version}"; 14 - sha256 = "sha256-ISyimfjTWU4niGeL8cSRRsUMNq3OQOvKJw7MCbY0K7o="; 15 }; 16 17 vendorSha256 = null;
··· 5 6 buildGoModule rec { 7 pname = "devspace"; 8 + version = "6.3.1"; 9 10 src = fetchFromGitHub { 11 owner = "loft-sh"; 12 repo = "devspace"; 13 rev = "v${version}"; 14 + sha256 = "sha256-N7u9qZBoaaxqcH+9lU0JoemEPYAuztkDyqVo/GWtS8c="; 15 }; 16 17 vendorSha256 = null;
+10 -3
pkgs/development/tools/rust/cargo-binstall/default.nix
··· 11 12 rustPlatform.buildRustPackage rec { 13 pname = "cargo-binstall"; 14 - version = "0.20.1"; 15 16 src = fetchFromGitHub { 17 owner = "cargo-bins"; 18 repo = "cargo-binstall"; 19 rev = "v${version}"; 20 - hash = "sha256-wM8DawrniyJxj8Omgj+hiePa521p4hIAngfzEHFNO58="; 21 }; 22 23 - cargoHash = "sha256-ZanPmdFMDGZhRHVVGt03OJWz8HnSYFdm42W6rpytu5Y="; 24 25 nativeBuildInputs = [ 26 pkg-config ··· 41 "rustls" 42 "trust-dns" 43 "zstd-thin" 44 ]; 45 46 # remove cargo config so it can find the linker on aarch64-unknown-linux-gnu
··· 11 12 rustPlatform.buildRustPackage rec { 13 pname = "cargo-binstall"; 14 + version = "0.21.0"; 15 16 src = fetchFromGitHub { 17 owner = "cargo-bins"; 18 repo = "cargo-binstall"; 19 rev = "v${version}"; 20 + hash = "sha256-btpXmtnsnZy7ai+WlWtgLjwbHqQvIphNM7aqMmA5Wjs="; 21 }; 22 23 + cargoHash = "sha256-bfdyLXfasPeUAxiA7tFV1vc4tVnTO84GFOdBWjTx/4s="; 24 25 nativeBuildInputs = [ 26 pkg-config ··· 41 "rustls" 42 "trust-dns" 43 "zstd-thin" 44 + ]; 45 + 46 + checkFlags = [ 47 + # requires internet access 48 + "--skip=download::test::test_and_extract" 49 + "--skip=gh_api_client::test::test_gh_api_client_cargo_binstall_no_such_release" 50 + "--skip=gh_api_client::test::test_gh_api_client_cargo_binstall_v0_20_1" 51 ]; 52 53 # remove cargo config so it can find the linker on aarch64-unknown-linux-gnu
+3 -3
pkgs/development/tools/selene/default.nix
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "selene"; 13 - version = "0.24.0"; 14 15 src = fetchFromGitHub { 16 owner = "kampfkarren"; 17 repo = pname; 18 rev = version; 19 - sha256 = "sha256-tw9OLdXhqxgqROub0P/+nd4LQGNw3QDxlCyyf8ogRQM="; 20 }; 21 22 - cargoSha256 = "sha256-5/xAX8BhB81cB7x2Pe/MKCV0Fi76ZcO6XHFQxTVIuLA="; 23 24 nativeBuildInputs = lib.optionals robloxSupport [ 25 pkg-config
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "selene"; 13 + version = "0.25.0"; 14 15 src = fetchFromGitHub { 16 owner = "kampfkarren"; 17 repo = pname; 18 rev = version; 19 + sha256 = "sha256-aKU+1eoLm/h5Rj/vAZOyAnyl5/TpStL5g8PPdYCJ8o0="; 20 }; 21 22 + cargoSha256 = "sha256-y2BoV59oJPMBf9rUgMhHu87teurwPSNowRbuPfXubGA="; 23 24 nativeBuildInputs = lib.optionals robloxSupport [ 25 pkg-config
+3 -3
pkgs/servers/dendrite/default.nix
··· 3 4 buildGoModule rec { 5 pname = "matrix-dendrite"; 6 - version = "0.11.0"; 7 8 src = fetchFromGitHub { 9 owner = "matrix-org"; 10 repo = "dendrite"; 11 rev = "v${version}"; 12 - sha256 = "sha256-EJUHpV+ZsMMSMsJGhF0Atblksg5rgI3a2qcRxLyZP38="; 13 }; 14 15 - vendorHash = "sha256-Ygd5wC4j0kAbEMMVct5WXZvkcYSqqK8d7ZZ9CDU1RHU="; 16 17 subPackages = [ 18 # The server as a monolith: https://matrix-org.github.io/dendrite/installation/install/monolith
··· 3 4 buildGoModule rec { 5 pname = "matrix-dendrite"; 6 + version = "0.11.1"; 7 8 src = fetchFromGitHub { 9 owner = "matrix-org"; 10 repo = "dendrite"; 11 rev = "v${version}"; 12 + hash = "sha256-+REY5an0gTbADEozCI6bkUWbW9VWTtWZ4xXj9qcIkwc="; 13 }; 14 15 + vendorHash = "sha256-/O7zzXYM03K+MresuXIHtgMuD9yS2+NIaLEnm/WRYeA="; 16 17 subPackages = [ 18 # The server as a monolith: https://matrix-org.github.io/dendrite/installation/install/monolith
+53
pkgs/servers/readarr/default.nix
···
··· 1 + { lib, stdenv, fetchurl, libmediainfo, sqlite, curl, makeWrapper, icu, dotnet-runtime, openssl, nixosTests }: 2 + 3 + let 4 + os = if stdenv.isDarwin then "osx" else "linux"; 5 + arch = { 6 + x86_64-linux = "x64"; 7 + aarch64-linux = "arm64"; 8 + x86_64-darwin = "x64"; 9 + }."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 10 + hash = { 11 + x64-linux_hash = "sha256-ABk2wxNse8dcFWEMpaXnsALz171/1JQaAFzmpz36we0="; 12 + arm64-linux_hash = "sha256-c1eVCPE8RH9u99hYJZBiNBpanBv3WeSTVaD+Gq1yxUk="; 13 + x64-osx_hash = "sha256-9UEi8YbpZ1baZ9lnG7SJcYnvJRgP7BsqcIt9Z3UdDv8="; 14 + }."${arch}-${os}_hash"; 15 + in stdenv.mkDerivation rec { 16 + pname = "readarr"; 17 + version = "0.1.4.1596"; 18 + 19 + src = fetchurl { 20 + url = "https://github.com/Readarr/Readarr/releases/download/v${version}/Readarr.develop.${version}.${os}-core-${arch}.tar.gz"; 21 + sha256 = hash; 22 + }; 23 + 24 + nativeBuildInputs = [ makeWrapper ]; 25 + 26 + installPhase = '' 27 + runHook preInstall 28 + 29 + mkdir -p $out/{bin,share/${pname}-${version}} 30 + cp -r * $out/share/${pname}-${version}/. 31 + makeWrapper "${dotnet-runtime}/bin/dotnet" $out/bin/Readarr \ 32 + --add-flags "$out/share/${pname}-${version}/Readarr.dll" \ 33 + --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ curl sqlite libmediainfo icu openssl ]} 34 + 35 + runHook postInstall 36 + ''; 37 + 38 + 39 + passthru = { 40 + updateScript = ./update.sh; 41 + tests.smoke-test = nixosTests.readarr; 42 + }; 43 + 44 + meta = with lib; { 45 + description = "A Usenet/BitTorrent ebook downloader"; 46 + homepage = "https://readarr.com"; 47 + license = licenses.gpl3; 48 + maintainers = [ maintainers.jocelynthode ]; 49 + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 50 + platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ]; 51 + }; 52 + } 53 +
+44
pkgs/servers/readarr/update.sh
···
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell -i bash -p curl gnused nix-prefetch jq 3 + 4 + set -e 5 + 6 + dirname="$(dirname "$0")" 7 + 8 + updateHash() 9 + { 10 + version=$1 11 + arch=$2 12 + os=$3 13 + 14 + hashKey="${arch}-${os}_hash" 15 + 16 + url="https://github.com/Readarr/Readarr/releases/download/v$version/Readarr.develop.$version.$os-core-$arch.tar.gz" 17 + hash=$(nix-prefetch-url --type sha256 $url) 18 + sriHash="$(nix hash to-sri --type sha256 $hash)" 19 + 20 + sed -i "s|$hashKey = \"[a-zA-Z0-9\/+-=]*\";|$hashKey = \"$sriHash\";|g" "$dirname/default.nix" 21 + } 22 + 23 + updateVersion() 24 + { 25 + sed -i "s/version = \"[0-9.]*\";/version = \"$1\";/g" "$dirname/default.nix" 26 + } 27 + 28 + currentVersion=$(cd $dirname && nix eval --raw -f ../../.. readarr.version) 29 + 30 + # We cannot use the latest releases as in the past Readarr released old version with v2.0 and then went back to 0.1 31 + latestTag=$(curl https://api.github.com/repos/Readarr/Readarr/releases | jq -r ".[0].tag_name") 32 + latestVersion="$(expr $latestTag : 'v\(.*\)')" 33 + 34 + if [[ "$currentVersion" == "$latestVersion" ]]; then 35 + echo "Readarr is up-to-date: ${currentVersion}" 36 + exit 0 37 + fi 38 + 39 + updateVersion $latestVersion 40 + 41 + updateHash $latestVersion x64 linux 42 + updateHash $latestVersion arm64 linux 43 + updateHash $latestVersion x64 osx 44 +
+3 -3
pkgs/servers/static-web-server/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "static-web-server"; 5 - version = "2.14.2"; 6 7 src = fetchFromGitHub { 8 owner = "static-web-server"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-c+bPe1t7Nhpx5fwwpLYtsuzxleLd4b1SwBFBaySmLOg="; 12 }; 13 14 - cargoSha256 = "sha256-K+YXl1SFVe6aBt663QXlQFD8jB5pvlLwNqUvUP+5aU8="; 15 16 buildInputs = lib.optionals stdenv.isDarwin [ 17 darwin.apple_sdk.frameworks.Security
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "static-web-server"; 5 + version = "2.15.0"; 6 7 src = fetchFromGitHub { 8 owner = "static-web-server"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-TzMXVwtvslM57ucHT5NHMjsLex2VjuvyqP9gMdQXfFs="; 12 }; 13 14 + cargoSha256 = "sha256-sx6zlSpJNeLpmM64eyhKI7M422dEBaud7q4iz4zmmf0="; 15 16 buildInputs = lib.optionals stdenv.isDarwin [ 17 darwin.apple_sdk.frameworks.Security
+6 -5
pkgs/servers/web-apps/engelsystem/default.nix
··· 3 let 4 phpExt = php.withExtensions 5 ({ enabled, all }: with all; [ filter mysqlnd mysqli pdo pdo_mysql ]); 6 - in stdenv.mkDerivation rec { 7 pname = "engelsystem"; 8 - version = "3.1.0"; 9 10 src = fetchzip { 11 url = 12 - "https://github.com/engelsystem/engelsystem/releases/download/v3.1.0/engelsystem-v3.1.0.zip"; 13 - sha256 = "01wra7li7n5kn1l6xkrmw4vlvvyqh089zs43qzn98hj0mw8gw7ai"; 14 }; 15 16 buildInputs = [ phpExt ]; ··· 20 21 # prepare 22 rm -r ./storage/ 23 - rm -r ./docker/ 24 25 ln -sf /etc/engelsystem/config.php ./config/config.php 26 ln -sf /var/lib/engelsystem/storage/ ./storage ··· 43 description = 44 "Coordinate your volunteers in teams, assign them to work shifts or let them decide for themselves when and where they want to help with what"; 45 homepage = "https://engelsystem.de"; 46 license = licenses.gpl2; 47 maintainers = with maintainers; [ kloenk ]; 48 mainProgram = "migrate";
··· 3 let 4 phpExt = php.withExtensions 5 ({ enabled, all }: with all; [ filter mysqlnd mysqli pdo pdo_mysql ]); 6 + in 7 + stdenv.mkDerivation rec { 8 pname = "engelsystem"; 9 + version = "3.3.0"; 10 11 src = fetchzip { 12 url = 13 + "https://github.com/engelsystem/engelsystem/releases/download/v3.3.0/engelsystem-v3.3.0.zip"; 14 + hash = "sha256-DS0klm26udXsiiFToeOJooA1WUR8gk0qf/UJL8E77ps="; 15 }; 16 17 buildInputs = [ phpExt ]; ··· 21 22 # prepare 23 rm -r ./storage/ 24 25 ln -sf /etc/engelsystem/config.php ./config/config.php 26 ln -sf /var/lib/engelsystem/storage/ ./storage ··· 43 description = 44 "Coordinate your volunteers in teams, assign them to work shifts or let them decide for themselves when and where they want to help with what"; 45 homepage = "https://engelsystem.de"; 46 + changelog = "https://github.com/engelsystem/engelsystem/releases/tag/v${version}"; 47 license = licenses.gpl2; 48 maintainers = with maintainers; [ kloenk ]; 49 mainProgram = "migrate";
+2 -2
pkgs/servers/x11/xorg/default.nix
··· 896 builder = ./builder.sh; 897 src = fetchurl { 898 url = "mirror://xorg/individual/lib/libX11-1.8.4.tar.xz"; 899 - sha256 = "sha256-yaKHpa76mATOPPr89Rb+lu0/fo5FwOLuWehMhnV99Rg="; 900 }; 901 hardeningDisable = [ "bindnow" "relro" ]; 902 strictDeps = true; ··· 3328 builder = ./builder.sh; 3329 src = fetchurl { 3330 url = "mirror://xorg/individual/xserver/xorg-server-21.1.7.tar.xz"; 3331 - sha256 = "sha256-2cYLLdDsUjJspqsg2w5JCx/09Wb1nKdC1lMuknlYd7s="; 3332 }; 3333 hardeningDisable = [ "bindnow" "relro" ]; 3334 strictDeps = true;
··· 896 builder = ./builder.sh; 897 src = fetchurl { 898 url = "mirror://xorg/individual/lib/libX11-1.8.4.tar.xz"; 899 + sha256 = "067mgmsqck78b7pf5h25irz3zvcnzqbgbz7s7k70967smsjqg8n9"; 900 }; 901 hardeningDisable = [ "bindnow" "relro" ]; 902 strictDeps = true; ··· 3328 builder = ./builder.sh; 3329 src = fetchurl { 3330 url = "mirror://xorg/individual/xserver/xorg-server-21.1.7.tar.xz"; 3331 + sha256 = "1fvpb1wr4bjksr1ag77mcvsz87qb947dn85blrn34lpcs0nhpinr"; 3332 }; 3333 hardeningDisable = [ "bindnow" "relro" ]; 3334 strictDeps = true;
+43
pkgs/tools/misc/psql2csv/default.nix
···
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchFromGitHub 4 + , coreutils 5 + , gnused 6 + , postgresql 7 + , makeWrapper 8 + }: 9 + 10 + stdenvNoCC.mkDerivation rec { 11 + pname = "psql2csv"; 12 + version = "0.12"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "fphilipe"; 16 + repo = "psql2csv"; 17 + rev = "v${version}"; 18 + hash = "sha256-XIdZ2+Jlw2JLn4KXD9h3+xXymu4FhibAfp5uGGkVwLQ="; 19 + }; 20 + 21 + nativeBuildInputs = [ makeWrapper ]; 22 + 23 + dontConfigure = true; 24 + dontBuild = true; 25 + 26 + installPhase = '' 27 + runHook preInstall 28 + 29 + install -Dm755 -t $out/bin psql2csv 30 + wrapProgram $out/bin/psql2csv \ 31 + --prefix PATH : ${lib.makeBinPath [ coreutils gnused postgresql ]} 32 + 33 + runHook postInstall 34 + ''; 35 + 36 + meta = with lib; { 37 + description = "Tool to run a PostreSQL query and output the result as CSV"; 38 + homepage = "https://github.com/fphilipe/psql2csv"; 39 + license = licenses.mit; 40 + maintainers = with maintainers; [ azahi ]; 41 + inherit (postgresql.meta) platforms; 42 + }; 43 + }
+3 -3
pkgs/tools/misc/topgrade/default.nix
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "topgrade"; 13 - version = "10.3.1"; 14 15 src = fetchFromGitHub { 16 owner = "topgrade-rs"; 17 repo = "topgrade"; 18 rev = "v${version}"; 19 - hash = "sha256-sOXp/oo29oVdmn3qEb7HCSlYYOvbTpD21dX4JSYaqps="; 20 }; 21 22 - cargoHash = "sha256-fZjMTVn4gx1hvtiD5NRkXY2f9HNSv7Vx3HdHypne5U0="; 23 24 nativeBuildInputs = [ 25 installShellFiles
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "topgrade"; 13 + version = "10.3.2"; 14 15 src = fetchFromGitHub { 16 owner = "topgrade-rs"; 17 repo = "topgrade"; 18 rev = "v${version}"; 19 + hash = "sha256-yYRKNiX8JvCP44+mdLIOSjpxaVDz1YUNrj/IZ0bC72Y="; 20 }; 21 22 + cargoHash = "sha256-2b6TOkjoycPA8rwca3nT212Yxl6q2Hmvv0f4Ic9hnWM="; 23 24 nativeBuildInputs = [ 25 installShellFiles
+3 -3
pkgs/tools/networking/shadowsocks-rust/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "shadowsocks-rust"; 5 - version = "1.15.2"; 6 7 src = fetchFromGitHub { 8 rev = "v${version}"; 9 owner = "shadowsocks"; 10 repo = pname; 11 - hash = "sha256-CvAOvtC5U2njQuUjFxjnGeqhuxrCw4XI6goo1TxIhIU="; 12 }; 13 14 - cargoHash = "sha256-ctZlYo82M7GKVvrEkw/7+aH9R0MeEsyv3IKl9k4SbiA="; 15 16 nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ]; 17
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "shadowsocks-rust"; 5 + version = "1.15.3"; 6 7 src = fetchFromGitHub { 8 rev = "v${version}"; 9 owner = "shadowsocks"; 10 repo = pname; 11 + hash = "sha256-HU+9y4btWbYrkHazOudY2j9RceieBK3BS2jgLbwcEdk="; 12 }; 13 14 + cargoHash = "sha256-YORQHX4RPPHDErgo4c3SxvxklJ9mxHeP/1GiwhuL+J0="; 15 16 nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ]; 17
+3 -3
pkgs/tools/security/httpx/default.nix
··· 5 6 buildGoModule rec { 7 pname = "httpx"; 8 - version = "1.2.7"; 9 10 src = fetchFromGitHub { 11 owner = "projectdiscovery"; 12 repo = "httpx"; 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-kZU7k7vAKgQfCQobGa5i5ZnO8ARUSozv4gz93g912uM="; 15 }; 16 17 - vendorHash = "sha256-1EQt7L+dQvpBOGVHeaIOCUG960yv5h9nuQNnF4wSoug="; 18 19 # Tests require network access 20 doCheck = false;
··· 5 6 buildGoModule rec { 7 pname = "httpx"; 8 + version = "1.2.8"; 9 10 src = fetchFromGitHub { 11 owner = "projectdiscovery"; 12 repo = "httpx"; 13 rev = "refs/tags/v${version}"; 14 + hash = "sha256-uZTYRsOAmuROA8ZrePruE+eDIx9TW98ljByDkstZC1Q="; 15 }; 16 17 + vendorHash = "sha256-czW1bnQp5+Om5EfW1DvCkAaNaqfAupmSJJvS14xKQUg="; 18 19 # Tests require network access 20 doCheck = false;
+1 -1
pkgs/tools/security/scorecard/default.nix
··· 72 changelog = "https://github.com/ossf/scorecard/releases/tag/v${version}"; 73 description = "Security health metrics for Open Source"; 74 license = licenses.asl20; 75 - maintainers = with maintainers; [ jk ]; 76 }; 77 }
··· 72 changelog = "https://github.com/ossf/scorecard/releases/tag/v${version}"; 73 description = "Security health metrics for Open Source"; 74 license = licenses.asl20; 75 + maintainers = with maintainers; [ jk developer-guy ]; 76 }; 77 }
+11 -3
pkgs/tools/system/ipmitool/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, autoreconfHook, openssl, readline }: 2 3 - stdenv.mkDerivation rec { 4 pname = "ipmitool"; 5 version = "1.8.19"; 6 ··· 16 17 postPatch = '' 18 substituteInPlace configure.ac \ 19 - --replace 'AC_MSG_WARN([** Neither wget nor curl could be found.])' 'AM_CONDITIONAL([DOWNLOAD], [false])' 20 ''; 21 22 meta = with lib; {
··· 1 + { stdenv, lib, fetchFromGitHub, autoreconfHook, openssl, readline, fetchurl }: 2 + 3 + let 4 + 5 + iana-enterprise-numbers = fetchurl { 6 + url = "https://web.archive.org/web/20230312103209id_/https://www.iana.org/assignments/enterprise-numbers.txt"; 7 + sha256 = "sha256-huFWygMEylBKBMLV16UE6xLWP6Aw1FGYk5h1q5CErUs="; 8 + }; 9 10 + in stdenv.mkDerivation rec { 11 pname = "ipmitool"; 12 version = "1.8.19"; 13 ··· 23 24 postPatch = '' 25 substituteInPlace configure.ac \ 26 + --replace 'AC_MSG_WARN([** Neither wget nor curl could be found.])' 'AM_CONDITIONAL([DOWNLOAD], [true])' 27 + cp ${iana-enterprise-numbers} enterprise-numbers 28 ''; 29 30 meta = with lib; {
+4
pkgs/top-level/all-packages.nix
··· 11539 11540 react-native-debugger = callPackage ../development/tools/react-native-debugger { }; 11541 11542 read-edid = callPackage ../os-specific/linux/read-edid { }; 11543 11544 readstat = callPackage ../applications/science/math/readstat { }; ··· 25453 prometheus-cpp = callPackage ../development/libraries/prometheus-cpp { }; 25454 25455 proximity-sort = callPackage ../tools/misc/proximity-sort { }; 25456 25457 psqlodbc = callPackage ../development/libraries/psqlodbc { }; 25458
··· 11539 11540 react-native-debugger = callPackage ../development/tools/react-native-debugger { }; 11541 11542 + readarr = callPackage ../servers/readarr { }; 11543 + 11544 read-edid = callPackage ../os-specific/linux/read-edid { }; 11545 11546 readstat = callPackage ../applications/science/math/readstat { }; ··· 25455 prometheus-cpp = callPackage ../development/libraries/prometheus-cpp { }; 25456 25457 proximity-sort = callPackage ../tools/misc/proximity-sort { }; 25458 + 25459 + psql2csv = callPackage ../tools/misc/psql2csv { }; 25460 25461 psqlodbc = callPackage ../development/libraries/psqlodbc { }; 25462
-2
pkgs/top-level/ocaml-packages.nix
··· 615 git-binary = pkgs.git; 616 }; 617 618 - gmetadom = callPackage ../development/ocaml-modules/gmetadom { }; 619 - 620 graphics = 621 if lib.versionOlder "4.09" ocaml.version 622 then callPackage ../development/ocaml-modules/graphics { }
··· 615 git-binary = pkgs.git; 616 }; 617 618 graphics = 619 if lib.versionOlder "4.09" ocaml.version 620 then callPackage ../development/ocaml-modules/graphics { }