Merge master into staging-next

authored by nixpkgs-ci[bot] and committed by GitHub 4ff4c825 51bce876

+1283 -1114
+6
maintainers/maintainer-list.nix
··· 16655 githubId = 1776903; 16656 name = "Andrew Abbott"; 16657 }; 16658 mirrorwitch = { 16659 email = "mirrorwitch@transmom.love"; 16660 github = "mirrorwitch";
··· 16655 githubId = 1776903; 16656 name = "Andrew Abbott"; 16657 }; 16658 + mirror230469 = { 16659 + email = "mirror230469@disroot.org"; 16660 + github = "mirror230469"; 16661 + githubId = 215964377; 16662 + name = "mirror"; 16663 + }; 16664 mirrorwitch = { 16665 email = "mirrorwitch@transmom.love"; 16666 github = "mirrorwitch";
+8
nixos/doc/manual/release-notes/rl-2511.section.md
··· 107 108 - The `dovecot` systemd service was renamed from `dovecot2` to `dovecot`. The former is now just an alias. Update any overrides on the systemd unit to the new name. 109 110 - The `yeahwm` package and `services.xserver.windowManager.yeahwm` module were removed due to the package being broken and unmaintained upstream. 111 112 - The `services.postgresql` module now sets up a systemd unit `postgresql.target`. Depending on `postgresql.target` guarantees that postgres is in read-write mode and initial/ensure scripts were executed. Depending on `postgresql.service` only guarantees a read-only connection.
··· 107 108 - The `dovecot` systemd service was renamed from `dovecot2` to `dovecot`. The former is now just an alias. Update any overrides on the systemd unit to the new name. 109 110 + - `Prosody` has been updated to major release 13 which removed some obsoleted modules and brought a couple of major and breaking changes: 111 + - The `http_files` module is now disabled by default because it now requires `http_files_dir` to be configured. 112 + - The `vcard_muc` module has been removed and got replaced by the inbuilt `muc_vcard` module. 113 + - The `http_upload` module has been removed and you must migrate to the `http_file_share` module to stay XEP-0423 compliant. The `httpFileShare` options got expanded to better facility that. 114 + - The `admin_shell` module is now always being loaded to make `prosodyctl` functional. 115 + - The `mime_types_file` setting is now set to `"${pkgs.mailcap}/etc/mime.types"` to prevent errors. 116 + For a complete list of changes, please see [their announcement](https://blog.prosody.im/prosody-13.0.0-released/). 117 + 118 - The `yeahwm` package and `services.xserver.windowManager.yeahwm` module were removed due to the package being broken and unmaintained upstream. 119 120 - The `services.postgresql` module now sets up a systemd unit `postgresql.target`. Depending on `postgresql.target` guarantees that postgres is in read-write mode and initial/ensure scripts were executed. Depending on `postgresql.service` only guarantees a read-only connection.
+88 -102
nixos/modules/services/networking/prosody.nix
··· 182 183 http_files = mkOption { 184 type = types.bool; 185 - default = true; 186 description = "Serve static files from a directory over HTTP"; 187 }; 188 ··· 369 kick other. Useful in jitsi-meet to kick ghosts. 370 ''; 371 }; 372 - vcard_muc = mkOption { 373 - type = types.bool; 374 - default = true; 375 - description = "Adds the ability to set vCard for Multi User Chat rooms"; 376 - }; 377 378 # Extra parameters. Defaulting to prosody default values. 379 # Adding them explicitly to make them visible from the options ··· 423 }; 424 }; 425 426 - uploadHttpOpts = _: { 427 - options = { 428 - domain = mkOption { 429 - type = types.nullOr types.str; 430 - description = "Domain name for the http-upload service"; 431 - }; 432 - uploadFileSizeLimit = mkOption { 433 - type = types.str; 434 - default = "50 * 1024 * 1024"; 435 - description = "Maximum file size, in bytes. Defaults to 50MB."; 436 - }; 437 - uploadExpireAfter = mkOption { 438 - type = types.str; 439 - default = "60 * 60 * 24 * 7"; 440 - description = "Max age of a file before it gets deleted, in seconds."; 441 - }; 442 - userQuota = mkOption { 443 - type = types.nullOr types.int; 444 - default = null; 445 - example = 1234; 446 - description = '' 447 - Maximum size of all uploaded files per user, in bytes. There 448 - will be no quota if this option is set to null. 449 - ''; 450 - }; 451 - httpUploadPath = mkOption { 452 - type = types.str; 453 - description = '' 454 - Directory where the uploaded files will be stored when the http_upload module is used. 455 - By default, uploaded files are put in a sub-directory of the default Prosody storage path (usually /var/lib/prosody). 456 - ''; 457 - default = "/var/lib/prosody"; 458 - }; 459 - }; 460 - }; 461 - 462 - httpFileShareOpts = _: { 463 - freeformType = 464 - with types; 465 - let 466 - atom = oneOf [ 467 - int 468 - bool 469 - str 470 - (listOf atom) 471 - ]; 472 - in 473 - attrsOf (nullOr atom) 474 - // { 475 - description = "int, bool, string or list of them"; 476 }; 477 - options.domain = mkOption { 478 - type = with types; nullOr str; 479 - description = "Domain name for a http_file_share service."; 480 }; 481 - }; 482 483 vHostOpts = _: { 484 options = { ··· 510 511 configFile = 512 let 513 - httpDiscoItems = 514 - optional (cfg.uploadHttp != null) { 515 - url = cfg.uploadHttp.domain; 516 - description = "HTTP upload endpoint"; 517 - } 518 - ++ optional (cfg.httpFileShare != null) { 519 - url = cfg.httpFileShare.domain; 520 - description = "HTTP file share endpoint"; 521 - }; 522 mucDiscoItems = builtins.foldl' ( 523 acc: muc: 524 [ ··· 546 admins = ${toLua cfg.admins} 547 548 modules_enabled = { 549 - 550 ${lib.concatStringsSep "\n " ( 551 lib.mapAttrsToList (name: val: optionalString val "${toLua name};") cfg.modules 552 )} ··· 575 http_ports = ${toLua cfg.httpPorts} 576 https_ports = ${toLua cfg.httpsPorts} 577 578 ${cfg.extraConfig} 579 580 ${lib.concatMapStrings (muc: '' 581 Component ${toLua muc.domain} "muc" 582 - modules_enabled = { "muc_mam"; ${optionalString muc.vcard_muc ''"vcard_muc";''} ${optionalString muc.allowners_muc ''"muc_allowners";''} } 583 name = ${toLua muc.name} 584 restrict_room_creation = ${toLua muc.restrictRoomCreation} 585 max_history_messages = ${toLua muc.maxHistoryMessages} ··· 597 ${muc.extraConfig} 598 '') cfg.muc} 599 600 - ${lib.optionalString (cfg.uploadHttp != null) '' 601 - Component ${toLua cfg.uploadHttp.domain} "http_upload" 602 - http_upload_file_size_limit = ${cfg.uploadHttp.uploadFileSizeLimit} 603 - http_upload_expire_after = ${cfg.uploadHttp.uploadExpireAfter} 604 - ${lib.optionalString ( 605 - cfg.uploadHttp.userQuota != null 606 - ) "http_upload_quota = ${toLua cfg.uploadHttp.userQuota}"} 607 - http_upload_path = ${toLua cfg.uploadHttp.httpUploadPath} 608 - ''} 609 - 610 - ${lib.optionalString (cfg.httpFileShare != null) '' 611 - Component ${toLua cfg.httpFileShare.domain} "http_file_share" 612 - ${settingsToLua " http_file_share_" (cfg.httpFileShare // { domain = null; })} 613 - ''} 614 615 ${lib.concatStringsSep "\n" ( 616 lib.mapAttrsToList (n: v: '' ··· 621 '') cfg.virtualHosts 622 )} 623 ''; 624 - 625 in 626 { 627 options = { ··· 817 description = "Additional path in which to look find plugins/modules"; 818 }; 819 820 - uploadHttp = mkOption { 821 - description = '' 822 - Configures the old Prosody builtin HTTP server to handle user uploads. 823 - ''; 824 - type = types.nullOr (types.submodule uploadHttpOpts); 825 - default = null; 826 - example = { 827 - domain = "uploads.my-xmpp-example-host.org"; 828 - }; 829 - }; 830 - 831 httpFileShare = mkOption { 832 description = '' 833 Configures the http_file_share module to handle user uploads. 834 ''; 835 type = types.nullOr (types.submodule httpFileShareOpts); 836 default = null; ··· 919 }; 920 }; 921 922 config = mkIf cfg.enable { 923 assertions = 924 let ··· 941 + genericErrMsg; 942 } 943 { 944 - assertion = cfg.uploadHttp != null || cfg.httpFileShare != null || !cfg.xmppComplianceSuite; 945 message = '' 946 - You need to setup the http_upload or http_file_share modules through config.services.prosody.uploadHttp 947 - or config.services.prosody.httpFileShare to comply with XEP-0423. 948 '' 949 + genericErrMsg; 950 } ··· 953 errors; 954 955 environment.systemPackages = [ cfg.package ]; 956 957 environment.etc."prosody/prosody.cfg.lua".source = 958 if cfg.checkConfig then ··· 993 { 994 User = cfg.user; 995 Group = cfg.group; 996 - Type = "forking"; 997 RuntimeDirectory = [ "prosody" ]; 998 PIDFile = "/run/prosody/prosody.pid"; 999 - ExecStart = "${cfg.package}/bin/prosodyctl start"; 1000 ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; 1001 1002 MemoryDenyWriteExecute = true; 1003 PrivateDevices = true; 1004 PrivateMounts = true;
··· 182 183 http_files = mkOption { 184 type = types.bool; 185 + default = false; 186 description = "Serve static files from a directory over HTTP"; 187 }; 188 ··· 369 kick other. Useful in jitsi-meet to kick ghosts. 370 ''; 371 }; 372 373 # Extra parameters. Defaulting to prosody default values. 374 # Adding them explicitly to make them visible from the options ··· 418 }; 419 }; 420 421 + httpFileShareOpts = 422 + { config, options, ... }: 423 + { 424 + freeformType = 425 + with types; 426 + let 427 + atom = oneOf [ 428 + int 429 + bool 430 + str 431 + (listOf atom) 432 + ]; 433 + in 434 + attrsOf (nullOr atom) 435 + // { 436 + description = "int, bool, string or list of them"; 437 + }; 438 + options = { 439 + domain = mkOption { 440 + type = with types; nullOr str; 441 + description = "Domain name for a http_file_share service."; 442 + }; 443 + http_host = mkOption { 444 + type = types.nullOr types.str; 445 + default = null; 446 + description = '' 447 + To avoid an additional DNS record and certificate, you may set this option to your primary domain (e.g. "example.com") 448 + or use a reverse proxy to handle the HTTP for that domain. 449 + ''; 450 + }; 451 + size_limit = mkOption { 452 + type = types.int; 453 + default = 10 * 1024 * 1024; 454 + defaultText = "10 * 1024 * 1024"; 455 + description = "Maximum file size, in bytes."; 456 + }; 457 + expires_after = mkOption { 458 + type = types.str; 459 + default = "1 week"; 460 + description = "Max age of a file before it gets deleted."; 461 + }; 462 + daily_quota = mkOption { 463 + type = types.nullOr types.int; 464 + default = 10 * config.size_limit; 465 + defaultText = lib.literalExpression "10 * ${options.size_limit}"; 466 + example = "100*1024*1024"; 467 + description = '' 468 + Maximum size of daily uploaded files per user, in bytes. 469 + ''; 470 + }; 471 }; 472 }; 473 474 vHostOpts = _: { 475 options = { ··· 501 502 configFile = 503 let 504 + httpDiscoItems = optional (cfg.httpFileShare != null) { 505 + url = cfg.httpFileShare.domain; 506 + description = "HTTP file share endpoint"; 507 + }; 508 mucDiscoItems = builtins.foldl' ( 509 acc: muc: 510 [ ··· 532 admins = ${toLua cfg.admins} 533 534 modules_enabled = { 535 + "admin_shell"; -- for prosodyctl 536 ${lib.concatStringsSep "\n " ( 537 lib.mapAttrsToList (name: val: optionalString val "${toLua name};") cfg.modules 538 )} ··· 561 http_ports = ${toLua cfg.httpPorts} 562 https_ports = ${toLua cfg.httpsPorts} 563 564 + mime_types_file = "${pkgs.mailcap}/etc/mime.types" 565 + 566 ${cfg.extraConfig} 567 568 ${lib.concatMapStrings (muc: '' 569 Component ${toLua muc.domain} "muc" 570 + modules_enabled = {${optionalString cfg.modules.mam ''" muc_mam",''}${optionalString muc.allowners_muc ''" muc_allowners",''} } 571 name = ${toLua muc.name} 572 restrict_room_creation = ${toLua muc.restrictRoomCreation} 573 max_history_messages = ${toLua muc.maxHistoryMessages} ··· 585 ${muc.extraConfig} 586 '') cfg.muc} 587 588 + ${ 589 + lib.optionalString (cfg.httpFileShare != null) '' 590 + Component ${toLua cfg.httpFileShare.domain} "http_file_share" 591 + modules_disabled = { "s2s" } 592 + '' 593 + + lib.optionalString (cfg.httpFileShare.http_host != null) '' 594 + http_host = "${cfg.httpFileShare.http_host}" 595 + '' 596 + + '' 597 + ${settingsToLua " http_file_share_" (cfg.httpFileShare // { domain = null; })} 598 + '' 599 + } 600 601 ${lib.concatStringsSep "\n" ( 602 lib.mapAttrsToList (n: v: '' ··· 607 '') cfg.virtualHosts 608 )} 609 ''; 610 in 611 { 612 options = { ··· 802 description = "Additional path in which to look find plugins/modules"; 803 }; 804 805 httpFileShare = mkOption { 806 description = '' 807 Configures the http_file_share module to handle user uploads. 808 + 809 + See <https://prosody.im/doc/modules/mod_http_file_share> for a full list of options. 810 ''; 811 type = types.nullOr (types.submodule httpFileShareOpts); 812 default = null; ··· 895 }; 896 }; 897 898 + imports = [ 899 + (lib.mkRemovedOptionModule [ "services" "prosody" "uploadHttp" ] 900 + "mod_http_upload has been obsoloted and been replaced by mod_http_file_share which can be configured with httpFileShare options." 901 + ) 902 + ]; 903 + 904 config = mkIf cfg.enable { 905 assertions = 906 let ··· 923 + genericErrMsg; 924 } 925 { 926 + assertion = cfg.httpFileShare != null || !cfg.xmppComplianceSuite; 927 message = '' 928 + You need to setup http_file_share modules through config.services.prosody.httpFileShare to comply with XEP-0423. 929 '' 930 + genericErrMsg; 931 } ··· 934 errors; 935 936 environment.systemPackages = [ cfg.package ]; 937 + 938 + # prevent error if not all certs are configured by the user 939 + environment.etc."prosody/certs/.dummy".text = ""; 940 941 environment.etc."prosody/prosody.cfg.lua".source = 942 if cfg.checkConfig then ··· 977 { 978 User = cfg.user; 979 Group = cfg.group; 980 + Type = "simple"; 981 RuntimeDirectory = [ "prosody" ]; 982 PIDFile = "/run/prosody/prosody.pid"; 983 + ExecStart = "${lib.getExe cfg.package} -F"; 984 ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; 985 + Restart = "on-abnormal"; 986 987 + AmbientCapabilities = [ "CAP_NET_BIND_SERVICE" ]; 988 MemoryDenyWriteExecute = true; 989 PrivateDevices = true; 990 PrivateMounts = true;
+6 -44
nixos/tests/paretosecurity.nix
··· 8 { 9 imports = [ ./common/user-account.nix ]; 10 11 - networking.firewall.enable = true; 12 - services.paretosecurity = { 13 - enable = true; 14 - 15 - # Create a patched version of the package that points to the local dashboard 16 - # for easier testing 17 - package = pkgs.paretosecurity.overrideAttrs (oldAttrs: { 18 - postPatch = oldAttrs.postPatch or "" + '' 19 - substituteInPlace team/report.go \ 20 - --replace-warn 'const reportURL = "https://cloud.paretosecurity.com"' \ 21 - 'const reportURL = "http://cloud"' 22 - ''; 23 - }); 24 - }; 25 26 }; 27 28 - nodes.cloud = { 29 - networking.firewall.allowedTCPPorts = [ 80 ]; 30 - 31 - services.nginx = { 32 - enable = true; 33 - virtualHosts."cloud" = { 34 - locations."/api/v1/team/".extraConfig = '' 35 - add_header Content-Type application/json; 36 - return 200 '{"message": "Linked device."}'; 37 - ''; 38 - }; 39 - }; 40 - }; 41 - 42 nodes.xfce = 43 { pkgs, ... }: 44 { ··· 70 testScript = '' 71 # Test setup 72 terminal.succeed("su - alice -c 'mkdir -p /home/alice/.config'") 73 - for m in [terminal, cloud]: 74 - m.systemctl("start network-online.target") 75 - m.wait_for_unit("network-online.target") 76 77 # Test 1: Test the systemd socket is installed & enabled 78 terminal.succeed('systemctl is-enabled paretosecurity.socket') ··· 91 + "'" 92 ) 93 94 - # Test 3: Test linking 95 - terminal.succeed("su - alice -c 'paretosecurity link" 96 - + " paretosecurity://enrollTeam/?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9." 97 - + "eyJ0b2tlbiI6ImR1bW15LXRva2VuIiwidGVhbUlEIjoiZHVtbXktdGVhbS1pZCIsImlhdCI6" 98 - + "MTcwMDAwMDAwMCwiZXhwIjoxOTAwMDAwMDAwfQ.WgnL6_S0EBJHwF1wEVUG8GtIcoVvK5IjWbZpUeZr4Qw'") 99 - 100 - config = terminal.succeed("cat /home/alice/.config/pareto.toml") 101 - assert 'AuthToken = "dummy-token"' in config 102 - assert 'TeamID = "dummy-team-id"' in config 103 - 104 - # Test 4: Test the tray icon 105 xfce.wait_for_x() 106 for unit in [ 107 'paretosecurity-trayicon', ··· 115 xfce.succeed("xdotool click 1") 116 xfce.wait_for_text("Run Checks") 117 118 - # Test 5: Desktop entry 119 xfce.succeed("xdotool mousemove 10 10") 120 xfce.succeed("xdotool click 1") # hide the tray icon window 121 xfce.succeed("xdotool click 1") # show the Applications menu ··· 123 xfce.succeed("xdotool click 1") 124 xfce.wait_for_text("Pareto Security") 125 126 - # Test 6: paretosecurity:// URL handler is registered 127 xfce.succeed("su - alice -c 'xdg-open paretosecurity://foo'") 128 ''; 129 }
··· 8 { 9 imports = [ ./common/user-account.nix ]; 10 11 + services.paretosecurity.enable = true; 12 13 }; 14 15 nodes.xfce = 16 { pkgs, ... }: 17 { ··· 43 testScript = '' 44 # Test setup 45 terminal.succeed("su - alice -c 'mkdir -p /home/alice/.config'") 46 + terminal.systemctl("start network-online.target") 47 + terminal.wait_for_unit("network-online.target") 48 49 # Test 1: Test the systemd socket is installed & enabled 50 terminal.succeed('systemctl is-enabled paretosecurity.socket') ··· 63 + "'" 64 ) 65 66 + # Test 3: Test the tray icon 67 xfce.wait_for_x() 68 for unit in [ 69 'paretosecurity-trayicon', ··· 77 xfce.succeed("xdotool click 1") 78 xfce.wait_for_text("Run Checks") 79 80 + # Test 4: Desktop entry 81 xfce.succeed("xdotool mousemove 10 10") 82 xfce.succeed("xdotool click 1") # hide the tray icon window 83 xfce.succeed("xdotool click 1") # show the Applications menu ··· 85 xfce.succeed("xdotool click 1") 86 xfce.wait_for_text("Pareto Security") 87 88 + # Test 5: paretosecurity:// URL handler is registered 89 xfce.succeed("su - alice -c 'xdg-open paretosecurity://foo'") 90 ''; 91 }
+25 -37
nixos/tests/xmpp/prosody.nix
··· 2 cert = 3 pkgs: 4 pkgs.runCommand "selfSignedCerts" { buildInputs = [ pkgs.openssl ]; } '' 5 - openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -nodes -subj '/CN=example.com/CN=uploads.example.com/CN=conference.example.com' -days 36500 6 mkdir -p $out 7 cp key.pem cert.pem $out 8 ''; 9 createUsers = 10 pkgs: 11 - pkgs.writeScriptBin "create-prosody-users" '' 12 - #!${pkgs.bash}/bin/bash 13 set -e 14 - 15 - # Creates and set password for the 2 xmpp test users. 16 - # 17 - # Doing that in a bash script instead of doing that in the test 18 - # script allow us to easily provision the users when running that 19 - # test interactively. 20 - 21 prosodyctl register cthon98 example.com nothunter2 22 prosodyctl register azurediamond example.com hunter2 23 ''; 24 delUsers = 25 pkgs: 26 - pkgs.writeScriptBin "delete-prosody-users" '' 27 - #!${pkgs.bash}/bin/bash 28 set -e 29 - 30 - # Deletes the test users. 31 - # 32 - # Doing that in a bash script instead of doing that in the test 33 - # script allow us to easily provision the users when running that 34 - # test interactively. 35 - 36 prosodyctl deluser cthon98@example.com 37 prosodyctl deluser azurediamond@example.com 38 ''; ··· 44 { 45 nodes, 46 pkgs, 47 - config, 48 ... 49 }: 50 { 51 security.pki.certificateFiles = [ "${cert pkgs}/cert.pem" ]; 52 - console.keyMap = "fr-bepo"; 53 networking.extraHosts = '' 54 - ${nodes.server.config.networking.primaryIPAddress} example.com 55 - ${nodes.server.config.networking.primaryIPAddress} conference.example.com 56 - ${nodes.server.config.networking.primaryIPAddress} uploads.example.com 57 ''; 58 environment.systemPackages = [ 59 (pkgs.callPackage ./xmpp-sendmessage.nix { connectTo = "example.com"; }) 60 ]; 61 }; 62 server = 63 { config, pkgs, ... }: 64 { 65 security.pki.certificateFiles = [ "${cert pkgs}/cert.pem" ]; 66 - console.keyMap = "fr-bepo"; 67 networking.extraHosts = '' 68 ${config.networking.primaryIPAddress} example.com 69 ${config.networking.primaryIPAddress} conference.example.com ··· 89 domain = "conference.example.com"; 90 } 91 ]; 92 - uploadHttp = { 93 domain = "uploads.example.com"; 94 }; 95 }; 96 }; 97 }; 98 99 - testScript = 100 - { nodes, ... }: 101 - '' 102 - # Check with sqlite storage 103 - start_all() 104 - server.wait_for_unit("prosody.service") 105 - server.succeed('prosodyctl status | grep "Prosody is running"') 106 107 - server.succeed("create-prosody-users") 108 - client.succeed("send-message") 109 - server.succeed("delete-prosody-users") 110 - ''; 111 }
··· 2 cert = 3 pkgs: 4 pkgs.runCommand "selfSignedCerts" { buildInputs = [ pkgs.openssl ]; } '' 5 + openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -nodes -days 365 \ 6 + -subj '/C=GB/CN=example.com' -addext "subjectAltName = DNS:example.com,DNS:uploads.example.com,DNS:conference.example.com" 7 mkdir -p $out 8 cp key.pem cert.pem $out 9 ''; 10 + 11 + # Creates and set password for the 2 xmpp test users. 12 + # 13 + # Doing that in a bash script instead of doing that in the test 14 + # script allow us to easily provision the users when running that 15 + # test interactively. 16 createUsers = 17 pkgs: 18 + pkgs.writeShellScriptBin "create-prosody-users" '' 19 set -e 20 prosodyctl register cthon98 example.com nothunter2 21 prosodyctl register azurediamond example.com hunter2 22 ''; 23 + # Deletes the test users. 24 delUsers = 25 pkgs: 26 + pkgs.writeShellScriptBin "delete-prosody-users" '' 27 set -e 28 prosodyctl deluser cthon98@example.com 29 prosodyctl deluser azurediamond@example.com 30 ''; ··· 36 { 37 nodes, 38 pkgs, 39 ... 40 }: 41 { 42 security.pki.certificateFiles = [ "${cert pkgs}/cert.pem" ]; 43 networking.extraHosts = '' 44 + ${nodes.server.networking.primaryIPAddress} example.com 45 + ${nodes.server.networking.primaryIPAddress} conference.example.com 46 + ${nodes.server.networking.primaryIPAddress} uploads.example.com 47 ''; 48 environment.systemPackages = [ 49 (pkgs.callPackage ./xmpp-sendmessage.nix { connectTo = "example.com"; }) 50 ]; 51 }; 52 + 53 server = 54 { config, pkgs, ... }: 55 { 56 security.pki.certificateFiles = [ "${cert pkgs}/cert.pem" ]; 57 networking.extraHosts = '' 58 ${config.networking.primaryIPAddress} example.com 59 ${config.networking.primaryIPAddress} conference.example.com ··· 79 domain = "conference.example.com"; 80 } 81 ]; 82 + httpFileShare = { 83 domain = "uploads.example.com"; 84 }; 85 }; 86 }; 87 }; 88 89 + testScript = _: '' 90 + # Check with sqlite storage 91 + start_all() 92 + server.wait_for_unit("prosody.service") 93 + server.succeed('prosodyctl status | grep "Prosody is running"') 94 95 + server.succeed("create-prosody-users") 96 + client.succeed("send-message") 97 + server.succeed("delete-prosody-users") 98 + ''; 99 }
+371 -371
pkgs/applications/editors/vim/plugins/generated.nix
··· 74 75 CopilotChat-nvim = buildVimPlugin { 76 pname = "CopilotChat.nvim"; 77 - version = "2025-07-12"; 78 src = fetchFromGitHub { 79 owner = "CopilotC-Nvim"; 80 repo = "CopilotChat.nvim"; 81 - rev = "f7eb423baccbb27f5b5608fb91acee2d6bc769c7"; 82 - sha256 = "0wkbgrg17vv4f4qcaqyx45y1qrj77bizg8pj6jmfw0hqp2amfrsh"; 83 }; 84 meta.homepage = "https://github.com/CopilotC-Nvim/CopilotChat.nvim/"; 85 meta.hydraPlatforms = [ ]; ··· 87 88 Coqtail = buildVimPlugin { 89 pname = "Coqtail"; 90 - version = "2025-07-20"; 91 src = fetchFromGitHub { 92 owner = "whonore"; 93 repo = "Coqtail"; 94 - rev = "192e4059d6df00dc76c98b9b451833ba76a70d09"; 95 - sha256 = "0ngl2c6fg5vn05cys5ah3p02x4pylcx1j9nn6kk1qq8409ma01qb"; 96 }; 97 meta.homepage = "https://github.com/whonore/Coqtail/"; 98 meta.hydraPlatforms = [ ]; ··· 399 400 SchemaStore-nvim = buildVimPlugin { 401 pname = "SchemaStore.nvim"; 402 - version = "2025-07-16"; 403 src = fetchFromGitHub { 404 owner = "b0o"; 405 repo = "SchemaStore.nvim"; 406 - rev = "c957914d75b4a008ce09f4116e57e59fe6e3fae1"; 407 - sha256 = "0g27hi0yljhk8v0994mjv3cvmqzc9b9xihl26y153j0dirvw99g6"; 408 }; 409 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 410 meta.hydraPlatforms = [ ]; ··· 1129 1130 auto-fix-return-nvim = buildVimPlugin { 1131 pname = "auto-fix-return.nvim"; 1132 - version = "2025-07-22"; 1133 src = fetchFromGitHub { 1134 owner = "Jay-Madden"; 1135 repo = "auto-fix-return.nvim"; 1136 - rev = "c9e1fb024c2ec0ce6f0c8e0f7b76e4a2a7140384"; 1137 - sha256 = "1pnhby2gi9my8bbgpnx9jwnip334jiv4xqmiwk1nlvsgb6p7kvm4"; 1138 }; 1139 meta.homepage = "https://github.com/Jay-Madden/auto-fix-return.nvim/"; 1140 meta.hydraPlatforms = [ ]; ··· 1194 1195 auto-session = buildVimPlugin { 1196 pname = "auto-session"; 1197 - version = "2025-07-21"; 1198 src = fetchFromGitHub { 1199 owner = "rmagatti"; 1200 repo = "auto-session"; 1201 - rev = "ee320d7a59c1dfe83df7c9d58150d9f194690d53"; 1202 - sha256 = "0969v1wn2yazb8p2dqd4dqlla5js9iy3ps30yzrrp5fagkhmnmqz"; 1203 }; 1204 meta.homepage = "https://github.com/rmagatti/auto-session/"; 1205 meta.hydraPlatforms = [ ]; ··· 1259 1260 aw-watcher-nvim = buildVimPlugin { 1261 pname = "aw-watcher.nvim"; 1262 - version = "2025-03-23"; 1263 src = fetchFromGitHub { 1264 owner = "lowitea"; 1265 repo = "aw-watcher.nvim"; 1266 - rev = "be7b03748f59b6602502baf08e7f7736cc7279a5"; 1267 - sha256 = "10gvwc3ccz40w87dvwnks3adzgk196h0s3cwvrdbmad070xnav30"; 1268 }; 1269 meta.homepage = "https://github.com/lowitea/aw-watcher.nvim/"; 1270 meta.hydraPlatforms = [ ]; ··· 1390 1391 base16-nvim = buildVimPlugin { 1392 pname = "base16-nvim"; 1393 - version = "2025-06-25"; 1394 src = fetchFromGitHub { 1395 owner = "RRethy"; 1396 repo = "base16-nvim"; 1397 - rev = "aa923daec4e778cd31ccfb0dcf083aff3c442159"; 1398 - sha256 = "11aprmrby37gfkvk568j44d2pz4p2ppll4jlbx4ysfyshwg1zzb0"; 1399 }; 1400 meta.homepage = "https://github.com/RRethy/base16-nvim/"; 1401 meta.hydraPlatforms = [ ]; ··· 1559 1560 blink-cmp-git = buildVimPlugin { 1561 pname = "blink-cmp-git"; 1562 - version = "2025-07-05"; 1563 src = fetchFromGitHub { 1564 owner = "Kaiser-Yang"; 1565 repo = "blink-cmp-git"; 1566 - rev = "31dad5db284641c94537de29865bb46495c53071"; 1567 - sha256 = "0j5xgqm20cxfry0ixpac79z9ndkrk15fyhkdv9kbb25nxdcwrshk"; 1568 }; 1569 meta.homepage = "https://github.com/Kaiser-Yang/blink-cmp-git/"; 1570 meta.hydraPlatforms = [ ]; ··· 1624 1625 blink-copilot = buildVimPlugin { 1626 pname = "blink-copilot"; 1627 - version = "2025-04-24"; 1628 src = fetchFromGitHub { 1629 owner = "fang2hou"; 1630 repo = "blink-copilot"; 1631 - rev = "bdc45bbbed2ec252b3a29f4adecf031e157b5573"; 1632 - sha256 = "0czzypx273zi4cmn8bxy9czh709i8a3zyyfdmlkz9j9b1r905zpc"; 1633 }; 1634 meta.homepage = "https://github.com/fang2hou/blink-copilot/"; 1635 meta.hydraPlatforms = [ ]; ··· 1663 1664 blink-ripgrep-nvim = buildVimPlugin { 1665 pname = "blink-ripgrep.nvim"; 1666 - version = "2025-07-23"; 1667 src = fetchFromGitHub { 1668 owner = "mikavilpas"; 1669 repo = "blink-ripgrep.nvim"; 1670 - rev = "19066e6571640911dfe43ee220de6e443ffe80f2"; 1671 - sha256 = "0jjzwqx13w5gldss8x9r9y3j0v2gpjqhnjqfiwa6vq3fw21dnfcz"; 1672 }; 1673 meta.homepage = "https://github.com/mikavilpas/blink-ripgrep.nvim/"; 1674 meta.hydraPlatforms = [ ]; ··· 1884 1885 catppuccin-nvim = buildVimPlugin { 1886 pname = "catppuccin-nvim"; 1887 - version = "2025-07-23"; 1888 src = fetchFromGitHub { 1889 owner = "catppuccin"; 1890 repo = "nvim"; 1891 - rev = "e762a47478377612e59f01aa51db961f605c9aa4"; 1892 - sha256 = "0z4g2wb7gcyvqs1hxvx9p661qvicpl188ip2x83b53bd5cx0j3c3"; 1893 }; 1894 meta.homepage = "https://github.com/catppuccin/nvim/"; 1895 meta.hydraPlatforms = [ ]; ··· 1988 1989 checkmate-nvim = buildVimPlugin { 1990 pname = "checkmate.nvim"; 1991 - version = "2025-06-27"; 1992 src = fetchFromGitHub { 1993 owner = "bngarren"; 1994 repo = "checkmate.nvim"; 1995 - rev = "1b7aa6a9db3580cf4bc22be6654e340b05cbc787"; 1996 - sha256 = "0gsgmrj4wr80r29j3d3dwk0kix8j2qjn60r1b9sq7sac128nca4f"; 1997 }; 1998 meta.homepage = "https://github.com/bngarren/checkmate.nvim/"; 1999 meta.hydraPlatforms = [ ]; ··· 2079 2080 claudecode-nvim = buildVimPlugin { 2081 pname = "claudecode.nvim"; 2082 - version = "2025-06-21"; 2083 src = fetchFromGitHub { 2084 owner = "coder"; 2085 repo = "claudecode.nvim"; 2086 - rev = "91357d810ccf92f6169f3754436901c6ff5237ec"; 2087 - sha256 = "1hdzv8wjm0dgam7fimsm2h2kfnc8mp8gi7qyv4qddgfj7mir77l7"; 2088 }; 2089 meta.homepage = "https://github.com/coder/claudecode.nvim/"; 2090 meta.hydraPlatforms = [ ]; ··· 2638 2639 cmp-path = buildVimPlugin { 2640 pname = "cmp-path"; 2641 - version = "2025-07-01"; 2642 src = fetchFromGitHub { 2643 owner = "hrsh7th"; 2644 repo = "cmp-path"; 2645 - rev = "e52e640b7befd8113b3350f46e8cfcfe98fcf730"; 2646 - sha256 = "1d3l62jvrdxqwiyi4ffyc871bh643n43bgi2n2lib9mx593qsli9"; 2647 }; 2648 meta.homepage = "https://github.com/hrsh7th/cmp-path/"; 2649 meta.hydraPlatforms = [ ]; ··· 2976 2977 codecompanion-history-nvim = buildVimPlugin { 2978 pname = "codecompanion-history.nvim"; 2979 - version = "2025-07-19"; 2980 src = fetchFromGitHub { 2981 owner = "ravitemer"; 2982 repo = "codecompanion-history.nvim"; 2983 - rev = "c54e907ac615d4bc2e909abb498739e5d7166729"; 2984 - sha256 = "1yckxm950j5a877ma5lz4x7xq71k0a6f0g2imps1j31w74rcim1a"; 2985 }; 2986 meta.homepage = "https://github.com/ravitemer/codecompanion-history.nvim/"; 2987 meta.hydraPlatforms = [ ]; ··· 2989 2990 codecompanion-nvim = buildVimPlugin { 2991 pname = "codecompanion.nvim"; 2992 - version = "2025-07-23"; 2993 src = fetchFromGitHub { 2994 owner = "olimorris"; 2995 repo = "codecompanion.nvim"; 2996 - rev = "e23e8e5a5643b089607f21f576f6e63174cc44dc"; 2997 - sha256 = "10df4q0kqi25l0mfrqnhvfxqaifgc02gaqs3v29fzxg3swa9dji8"; 2998 }; 2999 meta.homepage = "https://github.com/olimorris/codecompanion.nvim/"; 3000 meta.hydraPlatforms = [ ]; ··· 3093 3094 comfy-line-numbers-nvim = buildVimPlugin { 3095 pname = "comfy-line-numbers.nvim"; 3096 - version = "2025-05-27"; 3097 src = fetchFromGitHub { 3098 owner = "mluders"; 3099 repo = "comfy-line-numbers.nvim"; 3100 - rev = "eb1c966e22fbabe3a3214c78bda9793ccf9d2a5d"; 3101 - sha256 = "0dp4sk695s2ra89zsb69g1xsh27qkfv16jp7b4nr316idsdf3899"; 3102 }; 3103 meta.homepage = "https://github.com/mluders/comfy-line-numbers.nvim/"; 3104 meta.hydraPlatforms = [ ]; ··· 3354 3355 copilot-lsp = buildVimPlugin { 3356 pname = "copilot-lsp"; 3357 - version = "2025-07-07"; 3358 src = fetchFromGitHub { 3359 owner = "copilotlsp-nvim"; 3360 repo = "copilot-lsp"; 3361 - rev = "4d79a1f56e8e9a53754800545875303c2879ac51"; 3362 - sha256 = "1fnyn4h2yjha89y57pbpkxi5bvcxbn622wcq6gg1dv1z53i531fp"; 3363 }; 3364 meta.homepage = "https://github.com/copilotlsp-nvim/copilot-lsp/"; 3365 meta.hydraPlatforms = [ ]; ··· 3367 3368 copilot-lua = buildVimPlugin { 3369 pname = "copilot.lua"; 3370 - version = "2025-07-16"; 3371 src = fetchFromGitHub { 3372 owner = "zbirenbaum"; 3373 repo = "copilot.lua"; 3374 - rev = "14bf786180b2ca4578915c56989b6d676dddc6f3"; 3375 - sha256 = "1crw5n6m8in96m28x4a79hfkq3wqqa6jmrpkfv52vk26jz2whpr1"; 3376 }; 3377 meta.homepage = "https://github.com/zbirenbaum/copilot.lua/"; 3378 meta.hydraPlatforms = [ ]; ··· 3393 3394 copilot-vim = buildVimPlugin { 3395 pname = "copilot.vim"; 3396 - version = "2025-07-10"; 3397 src = fetchFromGitHub { 3398 owner = "github"; 3399 repo = "copilot.vim"; 3400 - rev = "12995dffe10282b29b8335650bf3e7457f4870e7"; 3401 - sha256 = "1clnwr3v65ifmqkqbj95861i609w0p7wnyisqnf3a8zxvrbvh75w"; 3402 }; 3403 meta.homepage = "https://github.com/github/copilot.vim/"; 3404 meta.hydraPlatforms = [ ]; ··· 3458 3459 coq_nvim = buildVimPlugin { 3460 pname = "coq_nvim"; 3461 - version = "2025-07-14"; 3462 src = fetchFromGitHub { 3463 owner = "ms-jpq"; 3464 repo = "coq_nvim"; 3465 - rev = "ba20d9c9a64c5ace4cb55bd202761885cb94be52"; 3466 - sha256 = "1f71yclixb7mxxiqy847n3djbqqwf5hq6bpjlwpjrkfa4csji381"; 3467 }; 3468 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 3469 meta.hydraPlatforms = [ ]; ··· 3510 3511 crates-nvim = buildVimPlugin { 3512 pname = "crates.nvim"; 3513 - version = "2025-07-22"; 3514 src = fetchFromGitHub { 3515 owner = "saecki"; 3516 repo = "crates.nvim"; 3517 - rev = "c915ab5334a46178f64ce17ab606a79454bcd14f"; 3518 - sha256 = "0plvlgk5r4k7nz94mjphirrg7izn2ans3aipmdlm8vw0drabfnz5"; 3519 }; 3520 meta.homepage = "https://github.com/saecki/crates.nvim/"; 3521 meta.hydraPlatforms = [ ]; ··· 3549 3550 cspell-nvim = buildVimPlugin { 3551 pname = "cspell.nvim"; 3552 - version = "2025-02-02"; 3553 src = fetchFromGitHub { 3554 owner = "davidmh"; 3555 repo = "cspell.nvim"; 3556 - rev = "fb104ec1e06e984baefcad6a0559381f5d933442"; 3557 - sha256 = "0fdnnwkcf4s1nsm6kczbdwbb75vs145r9hkcr4v10pvgnv6jf7w4"; 3558 }; 3559 meta.homepage = "https://github.com/davidmh/cspell.nvim/"; 3560 meta.hydraPlatforms = [ ]; ··· 3653 3654 cyberdream-nvim = buildVimPlugin { 3655 pname = "cyberdream.nvim"; 3656 - version = "2025-05-28"; 3657 src = fetchFromGitHub { 3658 owner = "scottmckendry"; 3659 repo = "cyberdream.nvim"; 3660 - rev = "f660ebfd8840e226d2a5368e08108a7aa84fef36"; 3661 - sha256 = "13zqdfsq5d12djd7xnhgr3zfadzga7204h0r23h1fna5lsxpwrfk"; 3662 }; 3663 meta.homepage = "https://github.com/scottmckendry/cyberdream.nvim/"; 3664 meta.hydraPlatforms = [ ]; ··· 3809 3810 ddc-source-lsp = buildVimPlugin { 3811 pname = "ddc-source-lsp"; 3812 - version = "2025-06-10"; 3813 src = fetchFromGitHub { 3814 owner = "Shougo"; 3815 repo = "ddc-source-lsp"; 3816 - rev = "5b1de333a5c77d74b7c3fa1839578e4bd47ec1c3"; 3817 - sha256 = "0w3qjazmsvgiyvf1nab44x58p7l4ak8l4jy01rbn5k0dimqlyl89"; 3818 }; 3819 meta.homepage = "https://github.com/Shougo/ddc-source-lsp/"; 3820 meta.hydraPlatforms = [ ]; ··· 3874 3875 debugprint-nvim = buildVimPlugin { 3876 pname = "debugprint.nvim"; 3877 - version = "2025-07-24"; 3878 src = fetchFromGitHub { 3879 owner = "andrewferrier"; 3880 repo = "debugprint.nvim"; 3881 - rev = "7e8f7180dfe07692a311360f43fd6f88d0a045a4"; 3882 - sha256 = "1868vqy68bx2i8ynqmw1j3lqhi1c7rxsxssczxld41y15fprqb0j"; 3883 }; 3884 meta.homepage = "https://github.com/andrewferrier/debugprint.nvim/"; 3885 meta.hydraPlatforms = [ ]; ··· 3991 3992 denops-vim = buildVimPlugin { 3993 pname = "denops.vim"; 3994 - version = "2025-07-19"; 3995 src = fetchFromGitHub { 3996 owner = "vim-denops"; 3997 repo = "denops.vim"; 3998 - rev = "0a8841cfa50f42d65252f65c1defce47410ed733"; 3999 - sha256 = "0igff9sb83a29w3xj3qc5whazwz3d0zap3sfp416qzqi4r4illgp"; 4000 }; 4001 meta.homepage = "https://github.com/vim-denops/denops.vim/"; 4002 meta.hydraPlatforms = [ ]; ··· 4487 4488 dropbar-nvim = buildVimPlugin { 4489 pname = "dropbar.nvim"; 4490 - version = "2025-07-23"; 4491 src = fetchFromGitHub { 4492 owner = "Bekaboo"; 4493 repo = "dropbar.nvim"; 4494 - rev = "a55340026e69c46c8db441c76bfdf0c0f3a45de3"; 4495 - sha256 = "17f0sy01hi55ka9balm7i47djxswgs5j8qig1m2gr074ka8s4rns"; 4496 }; 4497 meta.homepage = "https://github.com/Bekaboo/dropbar.nvim/"; 4498 meta.hydraPlatforms = [ ]; ··· 4513 4514 easy-dotnet-nvim = buildVimPlugin { 4515 pname = "easy-dotnet.nvim"; 4516 - version = "2025-07-13"; 4517 src = fetchFromGitHub { 4518 owner = "GustavEikaas"; 4519 repo = "easy-dotnet.nvim"; 4520 - rev = "536471bc60d7b71ac03bb5db55be2c8a863c717d"; 4521 - sha256 = "13pjiyzjh6jsyz305px32a8k4w2ma551ndmi2wdh9l71kpaqci17"; 4522 }; 4523 meta.homepage = "https://github.com/GustavEikaas/easy-dotnet.nvim/"; 4524 meta.hydraPlatforms = [ ]; ··· 4539 4540 ecolog-nvim = buildVimPlugin { 4541 pname = "ecolog.nvim"; 4542 - version = "2025-07-23"; 4543 src = fetchFromGitHub { 4544 - owner = "ssstba"; 4545 repo = "ecolog.nvim"; 4546 - rev = "7293e1ab9e6d11553749497edfd68d8b685aa237"; 4547 - sha256 = "1y8nyf5374vblb89zrin0srapfhmhkfjn793xiz7anqshhxsn29v"; 4548 }; 4549 - meta.homepage = "https://github.com/ssstba/ecolog.nvim/"; 4550 meta.hydraPlatforms = [ ]; 4551 }; 4552 4553 edge = buildVimPlugin { 4554 pname = "edge"; 4555 - version = "2025-06-22"; 4556 src = fetchFromGitHub { 4557 owner = "sainnhe"; 4558 repo = "edge"; 4559 - rev = "b279ccb1205a51eab8a513b6a3d123b25ac83394"; 4560 - sha256 = "0p5s88k3sff8m0f8vq9msyd5cr3kw8wrp47jr3a3knxl6l46y5aq"; 4561 }; 4562 meta.homepage = "https://github.com/sainnhe/edge/"; 4563 meta.hydraPlatforms = [ ]; ··· 4618 4619 efmls-configs-nvim = buildVimPlugin { 4620 pname = "efmls-configs-nvim"; 4621 - version = "2025-06-27"; 4622 src = fetchFromGitHub { 4623 owner = "creativenull"; 4624 repo = "efmls-configs-nvim"; 4625 - rev = "49ce96ec74f8c484c7d2a0bd9f5afffc8cd18151"; 4626 - sha256 = "1lg64qdm8qbrsvqvk85d8wy06rcygv0s24pqc586qcz07s7hbxvv"; 4627 }; 4628 meta.homepage = "https://github.com/creativenull/efmls-configs-nvim/"; 4629 meta.hydraPlatforms = [ ]; ··· 4670 4671 embark-vim = buildVimPlugin { 4672 pname = "embark-vim"; 4673 - version = "2025-07-10"; 4674 src = fetchFromGitHub { 4675 owner = "embark-theme"; 4676 repo = "vim"; 4677 - rev = "17c501c1f69d736f21959a66702cd6590f415a97"; 4678 - sha256 = "0hyg9nracgkf8j5mxpsjlhrlkwm2xq3n5l61qhq3n8k1cx8vxz7n"; 4679 }; 4680 meta.homepage = "https://github.com/embark-theme/vim/"; 4681 meta.hydraPlatforms = [ ]; ··· 4749 4750 everforest = buildVimPlugin { 4751 pname = "everforest"; 4752 - version = "2025-06-22"; 4753 src = fetchFromGitHub { 4754 owner = "sainnhe"; 4755 repo = "everforest"; 4756 - rev = "f40c2e6c8784c99c57c79edc94cd180e76450222"; 4757 - sha256 = "0h1fkk4m64nyvnnn6pp9ggqlp6b1jhaxwsa442y8yxsfpaw26fs9"; 4758 }; 4759 meta.homepage = "https://github.com/sainnhe/everforest/"; 4760 meta.hydraPlatforms = [ ]; ··· 5765 5766 gruvbox-material = buildVimPlugin { 5767 pname = "gruvbox-material"; 5768 - version = "2025-06-22"; 5769 src = fetchFromGitHub { 5770 owner = "sainnhe"; 5771 repo = "gruvbox-material"; 5772 - rev = "66cfeb7050e081a746a62dd0400446433e802368"; 5773 - sha256 = "1kkmyikqkshkg2h3jlv02lq1x8r4gjaqgws8b1w1nyzjhs6gvz0h"; 5774 }; 5775 meta.homepage = "https://github.com/sainnhe/gruvbox-material/"; 5776 meta.hydraPlatforms = [ ]; ··· 5896 5897 hardtime-nvim = buildVimPlugin { 5898 pname = "hardtime.nvim"; 5899 - version = "2025-07-21"; 5900 src = fetchFromGitHub { 5901 owner = "m4xshen"; 5902 repo = "hardtime.nvim"; 5903 - rev = "3541ad24faff78274669eceaf130502eb7f1261a"; 5904 - sha256 = "0bys7azr33s2hkj02x85hf0yhj4pp7c28qdvsyfa93ri8pgqd4c5"; 5905 }; 5906 meta.homepage = "https://github.com/m4xshen/hardtime.nvim/"; 5907 meta.hydraPlatforms = [ ]; ··· 6039 6040 helpview-nvim = buildVimPlugin { 6041 pname = "helpview.nvim"; 6042 - version = "2025-07-19"; 6043 src = fetchFromGitHub { 6044 owner = "OXY2DEV"; 6045 repo = "helpview.nvim"; 6046 - rev = "30ce27a4edd708500b94b26898cc07ec4434f896"; 6047 - sha256 = "0s1d9l7li33w1yggs3ykmcz3nvjhivw7r0bb4gkn9yb63jwjy972"; 6048 fetchSubmodules = true; 6049 }; 6050 meta.homepage = "https://github.com/OXY2DEV/helpview.nvim/"; ··· 6053 6054 hex-nvim = buildVimPlugin { 6055 pname = "hex.nvim"; 6056 - version = "2024-10-09"; 6057 src = fetchFromGitHub { 6058 owner = "RaafatTurki"; 6059 repo = "hex.nvim"; 6060 - rev = "fcff75fcf43b5a6c5b471eed65b3a06c412d6020"; 6061 - sha256 = "1wh8dnx9a8pjq53v7crhxczv0bzvv2gdj2ra7n2w66cql75piw4v"; 6062 }; 6063 meta.homepage = "https://github.com/RaafatTurki/hex.nvim/"; 6064 meta.hydraPlatforms = [ ]; ··· 6782 6783 kanso-nvim = buildVimPlugin { 6784 pname = "kanso.nvim"; 6785 - version = "2025-06-26"; 6786 src = fetchFromGitHub { 6787 owner = "webhooked"; 6788 repo = "kanso.nvim"; 6789 - rev = "748023fd273782e6e056620ce66a176532cdf375"; 6790 - sha256 = "1z654wm7309zm44lwl6jrfcf604fpfa6z7ks3amkaq97ji040jj4"; 6791 }; 6792 meta.homepage = "https://github.com/webhooked/kanso.nvim/"; 6793 meta.hydraPlatforms = [ ]; ··· 6886 6887 kulala-nvim = buildVimPlugin { 6888 pname = "kulala.nvim"; 6889 - version = "2025-07-21"; 6890 src = fetchFromGitHub { 6891 owner = "mistweaverco"; 6892 repo = "kulala.nvim"; 6893 - rev = "6b6e1c8b538cce6654cfc5fb3e4a3acfa316ce57"; 6894 - sha256 = "04gq6jc785crflfrn5pfqmiph05sg691y31qv78a8qxw8c40cw6j"; 6895 fetchSubmodules = true; 6896 }; 6897 meta.homepage = "https://github.com/mistweaverco/kulala.nvim/"; ··· 7043 7044 lean-nvim = buildVimPlugin { 7045 pname = "lean.nvim"; 7046 - version = "2025-07-22"; 7047 src = fetchFromGitHub { 7048 owner = "Julian"; 7049 repo = "lean.nvim"; 7050 - rev = "08edf859efe21d6f7c6f157cf4d91cf312076cf2"; 7051 - sha256 = "1l2vj7h5b027xryivmffipfi8cr7wjxd2z4zarwgbxp0k5c9l3n8"; 7052 }; 7053 meta.homepage = "https://github.com/Julian/lean.nvim/"; 7054 meta.hydraPlatforms = [ ]; ··· 7082 7083 leap-nvim = buildVimPlugin { 7084 pname = "leap.nvim"; 7085 - version = "2025-07-21"; 7086 src = fetchFromGitHub { 7087 owner = "ggandor"; 7088 repo = "leap.nvim"; 7089 - rev = "a95876479037619214a6c5d082738362b8bf61ca"; 7090 - sha256 = "1sgvncl5gvwck2jiacmm0scn3jcixhsv1q9b6428jai9zgkyn13z"; 7091 }; 7092 meta.homepage = "https://github.com/ggandor/leap.nvim/"; 7093 meta.hydraPlatforms = [ ]; ··· 7589 7590 lsp_signature-nvim = buildVimPlugin { 7591 pname = "lsp_signature.nvim"; 7592 - version = "2025-07-02"; 7593 src = fetchFromGitHub { 7594 owner = "ray-x"; 7595 repo = "lsp_signature.nvim"; 7596 - rev = "d9c39937e4e0977357530e988aa8940078bb231f"; 7597 - sha256 = "0m5a5bshycvr9cnb60xx1s0722i1dhpbcpxh6c79h2zrhi15h61n"; 7598 }; 7599 meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/"; 7600 meta.hydraPlatforms = [ ]; ··· 7836 7837 markview-nvim = buildVimPlugin { 7838 pname = "markview.nvim"; 7839 - version = "2025-07-16"; 7840 src = fetchFromGitHub { 7841 owner = "OXY2DEV"; 7842 repo = "markview.nvim"; 7843 - rev = "ec33f2aa333ca1d76f51847922578434d7aeadf7"; 7844 - sha256 = "0hgxpf73hzrwkqndmyb57xpwhj7sy9sdyvsd3w0svr7rnwh36y39"; 7845 fetchSubmodules = true; 7846 }; 7847 meta.homepage = "https://github.com/OXY2DEV/markview.nvim/"; ··· 7850 7851 mason-lspconfig-nvim = buildVimPlugin { 7852 pname = "mason-lspconfig.nvim"; 7853 - version = "2025-07-19"; 7854 src = fetchFromGitHub { 7855 owner = "mason-org"; 7856 repo = "mason-lspconfig.nvim"; 7857 - rev = "bb3a17efc797c34c054463174e5522442576ebd8"; 7858 - sha256 = "1qll10px1fzq3s8pil9sblgppz4cffmb61q5pwa97r4w07r2hcvq"; 7859 }; 7860 meta.homepage = "https://github.com/mason-org/mason-lspconfig.nvim/"; 7861 meta.hydraPlatforms = [ ]; ··· 7876 7877 mason-nvim = buildVimPlugin { 7878 pname = "mason.nvim"; 7879 - version = "2025-05-24"; 7880 src = fetchFromGitHub { 7881 owner = "mason-org"; 7882 repo = "mason.nvim"; 7883 - rev = "8024d64e1330b86044fed4c8494ef3dcd483a67c"; 7884 - sha256 = "0ram5fjbvnwf6zrxp9jiiybfz924is7kgml3gmrslr2yh1b3fcwh"; 7885 }; 7886 meta.homepage = "https://github.com/mason-org/mason.nvim/"; 7887 meta.hydraPlatforms = [ ]; ··· 8448 8449 mini-nvim = buildVimPlugin { 8450 pname = "mini.nvim"; 8451 - version = "2025-07-24"; 8452 src = fetchFromGitHub { 8453 owner = "echasnovski"; 8454 repo = "mini.nvim"; 8455 - rev = "c122e852517adaf7257688e435369c050da113b1"; 8456 - sha256 = "1klj676spa0m0j2as1bv9ais3n37213vmqa1plydfa2jxg72l08p"; 8457 }; 8458 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 8459 meta.hydraPlatforms = [ ]; ··· 8487 8488 mini-pick = buildVimPlugin { 8489 pname = "mini.pick"; 8490 - version = "2025-07-22"; 8491 src = fetchFromGitHub { 8492 owner = "echasnovski"; 8493 repo = "mini.pick"; 8494 - rev = "c8f4ff0251ccb8c6a993ee0dee4e06d9c21a4b99"; 8495 - sha256 = "0lrfzi55a19lqbxpq42fp9p6wwq5w8hwxh8hs6s8dc8f51cbrrvr"; 8496 }; 8497 meta.homepage = "https://github.com/echasnovski/mini.pick/"; 8498 meta.hydraPlatforms = [ ]; ··· 8630 8631 minuet-ai-nvim = buildVimPlugin { 8632 pname = "minuet-ai.nvim"; 8633 - version = "2025-07-18"; 8634 src = fetchFromGitHub { 8635 owner = "milanglacier"; 8636 repo = "minuet-ai.nvim"; 8637 - rev = "5c805bb25c53fc4fc5ce6b65da27da45ba40755b"; 8638 - sha256 = "13mb0p1zwxidl7zng5ciy9fz5dvsm63nkjgj3x1zdmfjz9k610z5"; 8639 }; 8640 meta.homepage = "https://github.com/milanglacier/minuet-ai.nvim/"; 8641 meta.hydraPlatforms = [ ]; ··· 8747 8748 monokai-pro-nvim = buildVimPlugin { 8749 pname = "monokai-pro.nvim"; 8750 - version = "2025-04-21"; 8751 src = fetchFromGitHub { 8752 owner = "loctvl842"; 8753 repo = "monokai-pro.nvim"; 8754 - rev = "31bad737610ec211de086d373c73025f39de93cb"; 8755 - sha256 = "1i22xkmd8r0bbpi5cviqd1dj4i2p1hgm3d8vdafsmg60jlqkd1nd"; 8756 }; 8757 meta.homepage = "https://github.com/loctvl842/monokai-pro.nvim/"; 8758 meta.hydraPlatforms = [ ]; ··· 9098 9099 neo-tree-nvim = buildVimPlugin { 9100 pname = "neo-tree.nvim"; 9101 - version = "2025-07-17"; 9102 src = fetchFromGitHub { 9103 owner = "nvim-neo-tree"; 9104 repo = "neo-tree.nvim"; 9105 - rev = "b85cc7611ff8fb443b0a1591c53669ead195a826"; 9106 - sha256 = "09fcn84sqdmy0kjdxwz8dym112rq7i43fr9wqfif9j7v0l4s7jxy"; 9107 }; 9108 meta.homepage = "https://github.com/nvim-neo-tree/neo-tree.nvim/"; 9109 meta.hydraPlatforms = [ ]; ··· 9124 9125 neoconf-nvim = buildVimPlugin { 9126 pname = "neoconf.nvim"; 9127 - version = "2025-07-05"; 9128 src = fetchFromGitHub { 9129 owner = "folke"; 9130 repo = "neoconf.nvim"; 9131 - rev = "d0a2652eb8e9fc4e6f531a622c8f32eb78b44a98"; 9132 - sha256 = "1kn7k3insqlrv6ygh9hjpdad9l2rz113r3k45w17ziabnayl8m0w"; 9133 }; 9134 meta.homepage = "https://github.com/folke/neoconf.nvim/"; 9135 meta.hydraPlatforms = [ ]; ··· 9176 9177 neoformat = buildVimPlugin { 9178 pname = "neoformat"; 9179 - version = "2025-07-16"; 9180 src = fetchFromGitHub { 9181 owner = "sbdchd"; 9182 repo = "neoformat"; 9183 - rev = "d25ee63a86c1e8036bf0ab635d5609a41426994d"; 9184 - sha256 = "1qyhfawyh6x8rq4i8fnxsf5jbdf7v5xjn2nzypnfdac0rr8bcpkv"; 9185 }; 9186 meta.homepage = "https://github.com/sbdchd/neoformat/"; 9187 meta.hydraPlatforms = [ ]; ··· 9202 9203 neogit = buildVimPlugin { 9204 pname = "neogit"; 9205 - version = "2025-07-24"; 9206 src = fetchFromGitHub { 9207 owner = "NeogitOrg"; 9208 repo = "neogit"; 9209 - rev = "99b811a99a195c4d3a627341bb7ccf6a22c4e6ea"; 9210 - sha256 = "051r84gpan3frhwrf59nqqdxsnk1jcbzc8qllkjm2x9qlr9a4wwx"; 9211 }; 9212 meta.homepage = "https://github.com/NeogitOrg/neogit/"; 9213 meta.hydraPlatforms = [ ]; ··· 9385 9386 neotest-ctest = buildVimPlugin { 9387 pname = "neotest-ctest"; 9388 - version = "2025-07-02"; 9389 src = fetchFromGitHub { 9390 owner = "orjangj"; 9391 repo = "neotest-ctest"; 9392 - rev = "124e8834a07aa522c6e9fa96f03e8ab0b7f2fa05"; 9393 - sha256 = "0rml2m0v14v7ikllya6d55gwm75lfkf2ip11cm8x4n7x2pw17d04"; 9394 }; 9395 meta.homepage = "https://github.com/orjangj/neotest-ctest/"; 9396 meta.hydraPlatforms = [ ]; ··· 9517 9518 neotest-haskell = buildVimPlugin { 9519 pname = "neotest-haskell"; 9520 - version = "2025-07-21"; 9521 src = fetchFromGitHub { 9522 owner = "MrcJkb"; 9523 repo = "neotest-haskell"; 9524 - rev = "f90272eeab89d9e44dc49dc054d960ca1ce7a4ee"; 9525 - sha256 = "182wrrpyw6xy4218blvja753pm56gf2xm60i0pg42hjbygsf6zca"; 9526 }; 9527 meta.homepage = "https://github.com/MrcJkb/neotest-haskell/"; 9528 meta.hydraPlatforms = [ ]; ··· 9530 9531 neotest-java = buildVimPlugin { 9532 pname = "neotest-java"; 9533 - version = "2025-07-05"; 9534 src = fetchFromGitHub { 9535 owner = "rcasia"; 9536 repo = "neotest-java"; 9537 - rev = "e8e150ae103f8b928478770ceebbd34a56104397"; 9538 - sha256 = "1h3yw5vxw40c1rl7638kn4wh6klmw1m0jrwldax6kxsg8j447fdy"; 9539 }; 9540 meta.homepage = "https://github.com/rcasia/neotest-java/"; 9541 meta.hydraPlatforms = [ ]; ··· 9543 9544 neotest-jest = buildVimPlugin { 9545 pname = "neotest-jest"; 9546 - version = "2025-06-30"; 9547 src = fetchFromGitHub { 9548 owner = "nvim-neotest"; 9549 repo = "neotest-jest"; 9550 - rev = "797515e113ac8e19c6855046d7f746d9c0c39c15"; 9551 - sha256 = "09xq5dn9rjd37ab8nf85d26qhb0k8np1j17y6nk8pb7dc3l15w4j"; 9552 }; 9553 meta.homepage = "https://github.com/nvim-neotest/neotest-jest/"; 9554 meta.hydraPlatforms = [ ]; ··· 9842 9843 netman-nvim = buildVimPlugin { 9844 pname = "netman.nvim"; 9845 - version = "2025-01-11"; 9846 src = fetchFromGitHub { 9847 owner = "miversen33"; 9848 repo = "netman.nvim"; 9849 - rev = "61ccf198d1c2570a14cfc6eb216b386b4b226be4"; 9850 - sha256 = "03dhbyxpl5acfkyg14s6fknvla8k7x3ni9ynxbcbsyyrhrb50wzb"; 9851 }; 9852 meta.homepage = "https://github.com/miversen33/netman.nvim/"; 9853 meta.hydraPlatforms = [ ]; ··· 9946 9947 nightfly = buildVimPlugin { 9948 pname = "nightfly"; 9949 - version = "2025-05-28"; 9950 src = fetchFromGitHub { 9951 owner = "bluz71"; 9952 repo = "vim-nightfly-colors"; 9953 - rev = "8c55003e89f321a48a8cd4bb426dd3e7c58f0646"; 9954 - sha256 = "05fs6nfibkqp0sjyckzk6bkczj0yyacvmvpdmcr72484b0l5wnsg"; 9955 }; 9956 meta.homepage = "https://github.com/bluz71/vim-nightfly-colors/"; 9957 meta.hydraPlatforms = [ ]; ··· 10011 10012 nlsp-settings-nvim = buildVimPlugin { 10013 pname = "nlsp-settings.nvim"; 10014 - version = "2025-07-23"; 10015 src = fetchFromGitHub { 10016 owner = "tamago324"; 10017 repo = "nlsp-settings.nvim"; 10018 - rev = "8fa83c8e4bf786504f1e8fae2cd949f9df7367b7"; 10019 - sha256 = "0lkwdg5bazskskgvl2wx509gdvkyhq8f2d87i1f1mbz1g10xax6w"; 10020 }; 10021 meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; 10022 meta.hydraPlatforms = [ ]; ··· 10089 10090 none-ls-nvim = buildVimPlugin { 10091 pname = "none-ls.nvim"; 10092 - version = "2025-07-23"; 10093 src = fetchFromGitHub { 10094 owner = "nvimtools"; 10095 repo = "none-ls.nvim"; 10096 - rev = "103b0926a31be1bc95743c6328cee309768f0a88"; 10097 - sha256 = "0yf10d89ibh5yfpzlfjskdgv5jzs7lprj63ijvzdnf1hhrddbx5g"; 10098 }; 10099 meta.homepage = "https://github.com/nvimtools/none-ls.nvim/"; 10100 meta.hydraPlatforms = [ ]; ··· 10297 10298 nvim-bqf = buildVimPlugin { 10299 pname = "nvim-bqf"; 10300 - version = "2025-07-20"; 10301 src = fetchFromGitHub { 10302 owner = "kevinhwang91"; 10303 repo = "nvim-bqf"; 10304 - rev = "dd17c73912487dccb372deff85d4262d2b89bc2b"; 10305 - sha256 = "0qz0g9lrhxjm3acsdi471wj73i3gqsmazlsa8ic0zqwfm8xd76jq"; 10306 }; 10307 meta.homepage = "https://github.com/kevinhwang91/nvim-bqf/"; 10308 meta.hydraPlatforms = [ ]; ··· 10440 10441 nvim-dap = buildVimPlugin { 10442 pname = "nvim-dap"; 10443 - version = "2025-07-18"; 10444 src = fetchFromGitHub { 10445 owner = "mfussenegger"; 10446 repo = "nvim-dap"; 10447 - rev = "5dd4d50f2e6a2eaf9e57fad023d294ef371bda35"; 10448 - sha256 = "1x8bhcjvqrh4fyjv3lym382xli5c1xxd512v05vy5m60388dzz40"; 10449 }; 10450 meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; 10451 meta.hydraPlatforms = [ ]; ··· 10544 10545 nvim-dap-view = buildVimPlugin { 10546 pname = "nvim-dap-view"; 10547 - version = "2025-07-23"; 10548 src = fetchFromGitHub { 10549 owner = "igorlfs"; 10550 repo = "nvim-dap-view"; 10551 - rev = "390dae6bf67f3342ebb481159932ef0fe54822ba"; 10552 - sha256 = "04lhfna0jkpk9nlmwfzpn31q1dyswlm8s443icp3brkr0zz9c5lw"; 10553 }; 10554 meta.homepage = "https://github.com/igorlfs/nvim-dap-view/"; 10555 meta.hydraPlatforms = [ ]; ··· 10596 10597 nvim-early-retirement = buildVimPlugin { 10598 pname = "nvim-early-retirement"; 10599 - version = "2025-06-16"; 10600 src = fetchFromGitHub { 10601 owner = "chrisgrieser"; 10602 repo = "nvim-early-retirement"; 10603 - rev = "d9ffd8f70ed6d466cecd3e7e2dd1425b0010932f"; 10604 - sha256 = "19nph2kp0l5mpykvii8wajh7svqd89gd8l3jzsyqmxdgkyxdg3nw"; 10605 }; 10606 meta.homepage = "https://github.com/chrisgrieser/nvim-early-retirement/"; 10607 meta.hydraPlatforms = [ ]; ··· 10661 10662 nvim-genghis = buildVimPlugin { 10663 pname = "nvim-genghis"; 10664 - version = "2025-07-12"; 10665 src = fetchFromGitHub { 10666 owner = "chrisgrieser"; 10667 repo = "nvim-genghis"; 10668 - rev = "1353bf05372d62a22c37db74dc6cbfa4eb80fc60"; 10669 - sha256 = "170p7gqwlk89i2k9n14xaziky5i355xkbzcjixyslg9xnrvz0pyb"; 10670 }; 10671 meta.homepage = "https://github.com/chrisgrieser/nvim-genghis/"; 10672 meta.hydraPlatforms = [ ]; ··· 10713 10714 nvim-highlite = buildVimPlugin { 10715 pname = "nvim-highlite"; 10716 - version = "2025-07-19"; 10717 src = fetchFromGitHub { 10718 owner = "Iron-E"; 10719 repo = "nvim-highlite"; 10720 - rev = "80df8ab9ef2a42e3616dedd010a8a49f3627bff0"; 10721 - sha256 = "0hf70x3zw9przy0pcf03pdzgh2wb7dafrhcz016jfcnzgni73q22"; 10722 }; 10723 meta.homepage = "https://github.com/Iron-E/nvim-highlite/"; 10724 meta.hydraPlatforms = [ ]; ··· 10765 10766 nvim-java = buildVimPlugin { 10767 pname = "nvim-java"; 10768 - version = "2025-05-24"; 10769 src = fetchFromGitHub { 10770 owner = "nvim-java"; 10771 repo = "nvim-java"; 10772 - rev = "7c2e81caa301b0d1bc7992b88981af883b3b5d6b"; 10773 - sha256 = "0bfblnhx8rdqs0szmjs7jlpcj81zhp83lqwpfz1ns05nwksv9wlw"; 10774 }; 10775 meta.homepage = "https://github.com/nvim-java/nvim-java/"; 10776 meta.hydraPlatforms = [ ]; ··· 10908 10909 nvim-lilypond-suite = buildVimPlugin { 10910 pname = "nvim-lilypond-suite"; 10911 - version = "2025-06-01"; 10912 src = fetchFromGitHub { 10913 owner = "martineausimon"; 10914 repo = "nvim-lilypond-suite"; 10915 - rev = "8227b50451d60aa370e67cc5f8bad8b14783551c"; 10916 - sha256 = "068b7kygi0wb39hz1gqjl1spqf6lrlas61yw0khxb83j7kwcy655"; 10917 }; 10918 meta.homepage = "https://github.com/martineausimon/nvim-lilypond-suite/"; 10919 meta.hydraPlatforms = [ ]; ··· 10921 10922 nvim-lint = buildVimPlugin { 10923 pname = "nvim-lint"; 10924 - version = "2025-07-20"; 10925 src = fetchFromGitHub { 10926 owner = "mfussenegger"; 10927 repo = "nvim-lint"; 10928 - rev = "9c6207559297b24f0b7c32829f8e45f7d65b991f"; 10929 - sha256 = "1llz8iwy8py2zx6j9k3yfygslwp5zqjlidhdd9gc4dqrl3854blp"; 10930 }; 10931 meta.homepage = "https://github.com/mfussenegger/nvim-lint/"; 10932 meta.hydraPlatforms = [ ]; ··· 10973 10974 nvim-lspconfig = buildVimPlugin { 10975 pname = "nvim-lspconfig"; 10976 - version = "2025-07-24"; 10977 src = fetchFromGitHub { 10978 owner = "neovim"; 10979 repo = "nvim-lspconfig"; 10980 - rev = "169745f176f58becad80363c3f8f2315ed6bb365"; 10981 - sha256 = "01g8p8dasf7a6cliw6rbk5jd00wp7hg40bnx5zil5arlxjlnzdbj"; 10982 }; 10983 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 10984 meta.hydraPlatforms = [ ]; ··· 11038 11039 nvim-metals = buildVimPlugin { 11040 pname = "nvim-metals"; 11041 - version = "2025-07-03"; 11042 src = fetchFromGitHub { 11043 owner = "scalameta"; 11044 repo = "nvim-metals"; 11045 - rev = "6af8bdcca7361fa62c9453e3d50036475a7ca4f3"; 11046 - sha256 = "1yqz8g9j5jclhkmvcgxk18myxx2mr2xw49ql01qc44bfq5r6drg7"; 11047 }; 11048 meta.homepage = "https://github.com/scalameta/nvim-metals/"; 11049 meta.hydraPlatforms = [ ]; ··· 11155 11156 nvim-origami = buildVimPlugin { 11157 pname = "nvim-origami"; 11158 - version = "2025-07-20"; 11159 src = fetchFromGitHub { 11160 owner = "chrisgrieser"; 11161 repo = "nvim-origami"; 11162 - rev = "2b6ac04d1fcff8b5e04ba33fa894d372eacb90e4"; 11163 - sha256 = "1s6dnkjdk2iwhar1p81bvbkqiw4c3ina0xij2v38vh8cixbic8p9"; 11164 }; 11165 meta.homepage = "https://github.com/chrisgrieser/nvim-origami/"; 11166 meta.hydraPlatforms = [ ]; ··· 11272 11273 nvim-rip-substitute = buildVimPlugin { 11274 pname = "nvim-rip-substitute"; 11275 - version = "2025-06-16"; 11276 src = fetchFromGitHub { 11277 owner = "chrisgrieser"; 11278 repo = "nvim-rip-substitute"; 11279 - rev = "9718e040e3593608eb0654cf643be4982d68bb46"; 11280 - sha256 = "14vycvd1sccrg13n0225nl20kikngfn49nfp1pri3c9gy8ksvsl0"; 11281 }; 11282 meta.homepage = "https://github.com/chrisgrieser/nvim-rip-substitute/"; 11283 meta.hydraPlatforms = [ ]; ··· 11285 11286 nvim-scissors = buildVimPlugin { 11287 pname = "nvim-scissors"; 11288 - version = "2025-06-16"; 11289 src = fetchFromGitHub { 11290 owner = "chrisgrieser"; 11291 repo = "nvim-scissors"; 11292 - rev = "cf890edfa78a5ba49176083150dbed1888872ff9"; 11293 - sha256 = "04rzsq8b1yq0x2cghj27i2y4kfb1zbm54df76iip40qksi33igpn"; 11294 }; 11295 meta.homepage = "https://github.com/chrisgrieser/nvim-scissors/"; 11296 meta.hydraPlatforms = [ ]; ··· 11389 11390 nvim-spider = buildVimPlugin { 11391 pname = "nvim-spider"; 11392 - version = "2025-07-20"; 11393 src = fetchFromGitHub { 11394 owner = "chrisgrieser"; 11395 repo = "nvim-spider"; 11396 - rev = "6da0307421bc4be6fe02815faabde51007c4ea1a"; 11397 - sha256 = "03hgv7b8a0fxj78xf5l72y1sngdfrnjxwh0fnj3nxjg3cd79indz"; 11398 }; 11399 meta.homepage = "https://github.com/chrisgrieser/nvim-spider/"; 11400 meta.hydraPlatforms = [ ]; ··· 11402 11403 nvim-surround = buildVimPlugin { 11404 pname = "nvim-surround"; 11405 - version = "2025-05-26"; 11406 src = fetchFromGitHub { 11407 owner = "kylechui"; 11408 repo = "nvim-surround"; 11409 - rev = "8dd9150ca7eae5683660ea20cec86edcd5ca4046"; 11410 - sha256 = "1r7kvq8sa7g3vhj6d885jgq04xpk3xn21zn1sb9lbffdkxxkqs2k"; 11411 }; 11412 meta.homepage = "https://github.com/kylechui/nvim-surround/"; 11413 meta.hydraPlatforms = [ ]; ··· 11454 11455 nvim-tinygit = buildVimPlugin { 11456 pname = "nvim-tinygit"; 11457 - version = "2025-06-21"; 11458 src = fetchFromGitHub { 11459 owner = "chrisgrieser"; 11460 repo = "nvim-tinygit"; 11461 - rev = "3ff8ebde730cdee1404a3e733e0a5b388007bb19"; 11462 - sha256 = "05qkas6x9s87qqrxqryh2i2baixz63f1lfww2a780na832l8vpjq"; 11463 }; 11464 meta.homepage = "https://github.com/chrisgrieser/nvim-tinygit/"; 11465 meta.hydraPlatforms = [ ]; ··· 11467 11468 nvim-tree-lua = buildVimPlugin { 11469 pname = "nvim-tree.lua"; 11470 - version = "2025-07-21"; 11471 src = fetchFromGitHub { 11472 owner = "nvim-tree"; 11473 repo = "nvim-tree.lua"; 11474 - rev = "543ed3cac212dc3993ef9f042f6c0812e34ddd43"; 11475 - sha256 = "1il6pha8w8mnh2sqpbx4j4h6zryyd5kn5n23kp32bh323vv0ygck"; 11476 }; 11477 meta.homepage = "https://github.com/nvim-tree/nvim-tree.lua/"; 11478 meta.hydraPlatforms = [ ]; ··· 11493 11494 nvim-treesitter-context = buildVimPlugin { 11495 pname = "nvim-treesitter-context"; 11496 - version = "2025-06-29"; 11497 src = fetchFromGitHub { 11498 owner = "nvim-treesitter"; 11499 repo = "nvim-treesitter-context"; 11500 - rev = "59f318a65d42a5c4037796886a8874fd57f774fc"; 11501 - sha256 = "09giakcby7gmif3sdqrfv8201q1w8n56d7g59qwbmfcw5vm6wb9k"; 11502 }; 11503 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; 11504 meta.hydraPlatforms = [ ]; ··· 11571 11572 nvim-treesitter-textobjects = buildVimPlugin { 11573 pname = "nvim-treesitter-textobjects"; 11574 - version = "2025-06-14"; 11575 src = fetchFromGitHub { 11576 owner = "nvim-treesitter"; 11577 repo = "nvim-treesitter-textobjects"; 11578 - rev = "89ebe73cd2836db80a22d9748999ace0241917a5"; 11579 - sha256 = "1lvny4hzw0h8f1xdz78ga24w9w7j68ha68sjs9mvqsxn6xqh4ngr"; 11580 }; 11581 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects/"; 11582 meta.hydraPlatforms = [ ]; ··· 11662 11663 nvim-various-textobjs = buildVimPlugin { 11664 pname = "nvim-various-textobjs"; 11665 - version = "2025-06-18"; 11666 src = fetchFromGitHub { 11667 owner = "chrisgrieser"; 11668 repo = "nvim-various-textobjs"; 11669 - rev = "1a3e524c01c26e0174a1eeb69e45d0bd74b1ef94"; 11670 - sha256 = "16kk7fql1kks9bwg953k2llpnl7hm5s1z0094cm0r2ay256y4i68"; 11671 }; 11672 meta.homepage = "https://github.com/chrisgrieser/nvim-various-textobjs/"; 11673 meta.hydraPlatforms = [ ]; ··· 11727 11728 nvim_context_vt = buildVimPlugin { 11729 pname = "nvim_context_vt"; 11730 - version = "2025-07-14"; 11731 src = fetchFromGitHub { 11732 owner = "andersevenrud"; 11733 repo = "nvim_context_vt"; 11734 - rev = "4ee3f8fe1b3aacacd31eaf77378dffcad0ff9465"; 11735 - sha256 = "1h6x29hgx9gz27x6ia0n0wz7n8zm2bb3j0h321y0f616b47nzr32"; 11736 }; 11737 meta.homepage = "https://github.com/andersevenrud/nvim_context_vt/"; 11738 meta.hydraPlatforms = [ ]; ··· 11818 11819 obsidian-nvim = buildVimPlugin { 11820 pname = "obsidian.nvim"; 11821 - version = "2025-07-21"; 11822 src = fetchFromGitHub { 11823 owner = "obsidian-nvim"; 11824 repo = "obsidian.nvim"; 11825 - rev = "f0b231b286bd643d0c79f32d263bb9181389aea5"; 11826 - sha256 = "1lg3kgl4chyvsxi3l19wh77xyii4iwkwg8sfdb2prd864q11zq4b"; 11827 }; 11828 meta.homepage = "https://github.com/obsidian-nvim/obsidian.nvim/"; 11829 meta.hydraPlatforms = [ ]; ··· 11857 11858 octo-nvim = buildVimPlugin { 11859 pname = "octo.nvim"; 11860 - version = "2025-07-22"; 11861 src = fetchFromGitHub { 11862 owner = "pwntester"; 11863 repo = "octo.nvim"; 11864 - rev = "17331ce1fc2537429786db91842c1013721adf38"; 11865 - sha256 = "1jz71jx9a3b9i6c81gqsi1zrxm6ihn3qma2is01iwyxwfnymj1q4"; 11866 }; 11867 meta.homepage = "https://github.com/pwntester/octo.nvim/"; 11868 meta.hydraPlatforms = [ ]; ··· 11948 11949 onedark-nvim = buildVimPlugin { 11950 pname = "onedark.nvim"; 11951 - version = "2025-05-03"; 11952 src = fetchFromGitHub { 11953 owner = "navarasu"; 11954 repo = "onedark.nvim"; 11955 - rev = "11de4da47f3e69cb70c3ae9816bd8af166cbe121"; 11956 - sha256 = "1cqpd4yvcd6szbs95kxxr77mhfvgxcpjfybw8chlnnnwxxyh1k54"; 11957 }; 11958 meta.homepage = "https://github.com/navarasu/onedark.nvim/"; 11959 meta.hydraPlatforms = [ ]; ··· 11987 11988 onedarkpro-nvim = buildVimPlugin { 11989 pname = "onedarkpro.nvim"; 11990 - version = "2025-06-05"; 11991 src = fetchFromGitHub { 11992 owner = "olimorris"; 11993 repo = "onedarkpro.nvim"; 11994 - rev = "5ffd45b3602bc1ed75f0b2be6c5c1f6ba5c6b796"; 11995 - sha256 = "02zn53vda99mjb3ygy6jpjhlb0v4anbjndrn0g9awzi3dyv7gcsa"; 11996 }; 11997 meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; 11998 meta.hydraPlatforms = [ ]; ··· 12052 12053 opencode-nvim = buildVimPlugin { 12054 pname = "opencode.nvim"; 12055 - version = "2025-07-24"; 12056 src = fetchFromGitHub { 12057 owner = "NickvanDyke"; 12058 repo = "opencode.nvim"; 12059 - rev = "db3aa9ca3b738600c81e29646a3356477dabaa87"; 12060 - sha256 = "1yhspgja3zdnsf8r3ahci14cndk3bzxvq0w9jqggd7ya103nq6kz"; 12061 }; 12062 meta.homepage = "https://github.com/NickvanDyke/opencode.nvim/"; 12063 meta.hydraPlatforms = [ ]; ··· 12157 12158 oxocarbon-nvim = buildVimPlugin { 12159 pname = "oxocarbon.nvim"; 12160 - version = "2025-07-05"; 12161 src = fetchFromGitHub { 12162 owner = "nyoom-engineering"; 12163 repo = "oxocarbon.nvim"; 12164 - rev = "1dc7b7ea9df60edd9547b667fd1f789ce9f028fb"; 12165 - sha256 = "1928b611jfzp8alk3v5dl5pdwr0a3qicwdha7mhdkwci7x13ac3y"; 12166 }; 12167 meta.homepage = "https://github.com/nyoom-engineering/oxocarbon.nvim/"; 12168 meta.hydraPlatforms = [ ]; ··· 12691 12692 pum-vim = buildVimPlugin { 12693 pname = "pum.vim"; 12694 - version = "2025-07-18"; 12695 src = fetchFromGitHub { 12696 owner = "Shougo"; 12697 repo = "pum.vim"; 12698 - rev = "39da7aacfea57ee16f8ac38d39796d3a72610db0"; 12699 - sha256 = "1v0dgn58cvxcqrmx3kmwwz1f8ffl12smpv62x0sdh2bpi0nha306"; 12700 }; 12701 meta.homepage = "https://github.com/Shougo/pum.vim/"; 12702 meta.hydraPlatforms = [ ]; ··· 13030 13031 remote-nvim-nvim = buildVimPlugin { 13032 pname = "remote-nvim.nvim"; 13033 - version = "2025-07-03"; 13034 src = fetchFromGitHub { 13035 owner = "amitds1997"; 13036 repo = "remote-nvim.nvim"; 13037 - rev = "9a23aff23c87f8c017cdccba0f35cfb4532399c7"; 13038 - sha256 = "19n854si2nfjqv3x3pi7nzd1hxffbl61mny61787qjw6jd0gkc2a"; 13039 }; 13040 meta.homepage = "https://github.com/amitds1997/remote-nvim.nvim/"; 13041 meta.hydraPlatforms = [ ]; ··· 13043 13044 remote-sshfs-nvim = buildVimPlugin { 13045 pname = "remote-sshfs.nvim"; 13046 - version = "2025-06-02"; 13047 src = fetchFromGitHub { 13048 owner = "nosduco"; 13049 repo = "remote-sshfs.nvim"; 13050 - rev = "6e893c32ff7c5b8d0d501b748c525fa53963fb35"; 13051 - sha256 = "0q4bhq153k3smq4nhiqf9zyni4yyx96swc6radj7j53vwhadafbr"; 13052 }; 13053 meta.homepage = "https://github.com/nosduco/remote-sshfs.nvim/"; 13054 meta.hydraPlatforms = [ ]; ··· 13069 13070 render-markdown-nvim = buildVimPlugin { 13071 pname = "render-markdown.nvim"; 13072 - version = "2025-07-23"; 13073 src = fetchFromGitHub { 13074 owner = "MeanderingProgrammer"; 13075 repo = "render-markdown.nvim"; 13076 - rev = "5c0e241bdbd208b7ae546009378d6bc93c083ef3"; 13077 - sha256 = "16sygfwzmlgbsymlmrbii9vhblgyn8qn1clcjaah7rwby0bwkzq7"; 13078 }; 13079 meta.homepage = "https://github.com/MeanderingProgrammer/render-markdown.nvim/"; 13080 meta.hydraPlatforms = [ ]; ··· 13148 13149 rnvimr = buildVimPlugin { 13150 pname = "rnvimr"; 13151 - version = "2025-02-13"; 13152 src = fetchFromGitHub { 13153 owner = "kevinhwang91"; 13154 repo = "rnvimr"; 13155 - rev = "57f7a8edd629791557d1315463d9fb2e411a45f1"; 13156 - sha256 = "0pr6sdmllswy6g4pi9lrz1rgiin977jfdy05q63vbs5mpyxgqfhd"; 13157 }; 13158 meta.homepage = "https://github.com/kevinhwang91/rnvimr/"; 13159 meta.hydraPlatforms = [ ]; ··· 13200 13201 roslyn-nvim = buildVimPlugin { 13202 pname = "roslyn.nvim"; 13203 - version = "2025-07-14"; 13204 src = fetchFromGitHub { 13205 owner = "seblyng"; 13206 repo = "roslyn.nvim"; 13207 - rev = "3056635ed6ebe5035c94a7c8d0d362e95817839e"; 13208 - sha256 = "0a7gd2fzcwc1812hnswb4g8pr220xd8443j9rd3452zxwyl3r6s6"; 13209 }; 13210 meta.homepage = "https://github.com/seblyng/roslyn.nvim/"; 13211 meta.hydraPlatforms = [ ]; ··· 13317 13318 satellite-nvim = buildVimPlugin { 13319 pname = "satellite.nvim"; 13320 - version = "2025-07-10"; 13321 src = fetchFromGitHub { 13322 owner = "lewis6991"; 13323 repo = "satellite.nvim"; 13324 - rev = "fc9672c9a14371ad948b5c42588d5ccfc4120f42"; 13325 - sha256 = "0210y53kb2zb811azifsd3y7gappf8jydriv1c42y0396k4hlmrg"; 13326 }; 13327 meta.homepage = "https://github.com/lewis6991/satellite.nvim/"; 13328 meta.hydraPlatforms = [ ]; ··· 13512 13513 sideways-vim = buildVimPlugin { 13514 pname = "sideways.vim"; 13515 - version = "2025-04-18"; 13516 src = fetchFromGitHub { 13517 owner = "AndrewRadev"; 13518 repo = "sideways.vim"; 13519 - rev = "3b353b19972a1138261d939055aff4844b9c472f"; 13520 - sha256 = "07jsyq5qa3psv314mvy0a4grbpjp936iqsf7ac22v3rylcvp1dmx"; 13521 fetchSubmodules = true; 13522 }; 13523 meta.homepage = "https://github.com/AndrewRadev/sideways.vim/"; ··· 13578 13579 smart-splits-nvim = buildVimPlugin { 13580 pname = "smart-splits.nvim"; 13581 - version = "2025-07-18"; 13582 src = fetchFromGitHub { 13583 owner = "mrjones2014"; 13584 repo = "smart-splits.nvim"; 13585 - rev = "f59fddc055373ec0fe2bbe2a3e7d7df2ee314994"; 13586 - sha256 = "0s7283iaa6z26zk5zvzn8qxdn4q3vckqzgbz6c43ri0dm0irhzlk"; 13587 }; 13588 meta.homepage = "https://github.com/mrjones2014/smart-splits.nvim/"; 13589 meta.hydraPlatforms = [ ]; ··· 13630 13631 smear-cursor-nvim = buildVimPlugin { 13632 pname = "smear-cursor.nvim"; 13633 - version = "2025-07-23"; 13634 src = fetchFromGitHub { 13635 owner = "sphamba"; 13636 repo = "smear-cursor.nvim"; 13637 - rev = "1a3df9af4ed017fafecd93c6837956914f269472"; 13638 - sha256 = "10k29vy1dxcm5iajsl0rrqyl4w1yh45y7bm1xfwh6dx9zc5rbmrw"; 13639 }; 13640 meta.homepage = "https://github.com/sphamba/smear-cursor.nvim/"; 13641 meta.hydraPlatforms = [ ]; ··· 13669 13670 snipe-nvim = buildVimPlugin { 13671 pname = "snipe.nvim"; 13672 - version = "2025-07-20"; 13673 src = fetchFromGitHub { 13674 owner = "leath-dub"; 13675 repo = "snipe.nvim"; 13676 - rev = "3da8e9770d6619ad51b724a7c1cebb6aae37c08f"; 13677 - sha256 = "1l0jmmb9csf72dkjp4pdx6rk9fnbfimmf2zz3iwik9d1lzrms07d"; 13678 }; 13679 meta.homepage = "https://github.com/leath-dub/snipe.nvim/"; 13680 meta.hydraPlatforms = [ ]; ··· 13721 13722 sonokai = buildVimPlugin { 13723 pname = "sonokai"; 13724 - version = "2025-06-22"; 13725 src = fetchFromGitHub { 13726 owner = "sainnhe"; 13727 repo = "sonokai"; 13728 - rev = "5baf26496047788dc000e9287e5ceb7420b2f42e"; 13729 - sha256 = "0qnnq90kwg3kn8br63kbzhvrc862g5r7i3k0djs6d63x5hin94x2"; 13730 }; 13731 meta.homepage = "https://github.com/sainnhe/sonokai/"; 13732 meta.hydraPlatforms = [ ]; ··· 13734 13735 sort-nvim = buildVimPlugin { 13736 pname = "sort.nvim"; 13737 - version = "2025-07-18"; 13738 src = fetchFromGitHub { 13739 owner = "sQVe"; 13740 repo = "sort.nvim"; 13741 - rev = "278a40e8a2e979197b76741973194124be33c344"; 13742 - sha256 = "0wxaz8d5ycgn2h36w5av3cg1z1r18i1vcaasrfb1ksq9m5n12ayv"; 13743 }; 13744 meta.homepage = "https://github.com/sQVe/sort.nvim/"; 13745 meta.hydraPlatforms = [ ]; ··· 14492 14493 telescope-coc-nvim = buildVimPlugin { 14494 pname = "telescope-coc.nvim"; 14495 - version = "2024-07-31"; 14496 src = fetchFromGitHub { 14497 owner = "fannheyward"; 14498 repo = "telescope-coc.nvim"; 14499 - rev = "b305a2c4f5de45f93b94e1a72078edd6d62e8cc1"; 14500 - sha256 = "0q8h2njyh3fgasvxdhz40cmjns4n8ip3xgdl188kpaf6gk0vwnnv"; 14501 }; 14502 meta.homepage = "https://github.com/fannheyward/telescope-coc.nvim/"; 14503 meta.hydraPlatforms = [ ]; ··· 15066 15067 tinted-nvim = buildVimPlugin { 15068 pname = "tinted-nvim"; 15069 - version = "2025-07-17"; 15070 src = fetchFromGitHub { 15071 owner = "tinted-theming"; 15072 repo = "tinted-nvim"; 15073 - rev = "cd89ac15fe6018f03cf2108fb63c3c9bf32123cc"; 15074 - sha256 = "15n9n5lc5gs0rdd77absf5j04z79cn42a07xwis9ws58na5xb0ds"; 15075 }; 15076 meta.homepage = "https://github.com/tinted-theming/tinted-nvim/"; 15077 meta.hydraPlatforms = [ ]; ··· 15079 15080 tinted-vim = buildVimPlugin { 15081 pname = "tinted-vim"; 15082 - version = "2025-07-23"; 15083 src = fetchFromGitHub { 15084 owner = "tinted-theming"; 15085 repo = "tinted-vim"; 15086 - rev = "78a483a34f34a255a1ffc1fb8b0cf22c4d6c4455"; 15087 - sha256 = "1jnhrpn35bqxpqxj689qiip2jh58ig4fxsrr32dn96fsa4jngqa9"; 15088 }; 15089 meta.homepage = "https://github.com/tinted-theming/tinted-vim/"; 15090 meta.hydraPlatforms = [ ]; ··· 15302 15303 treewalker-nvim = buildVimPlugin { 15304 pname = "treewalker.nvim"; 15305 - version = "2025-07-17"; 15306 src = fetchFromGitHub { 15307 owner = "aaronik"; 15308 repo = "treewalker.nvim"; 15309 - rev = "ae229700e1cce34198280f588568dc49c52d9eb1"; 15310 - sha256 = "011r3xvc6207jrzd049nfwfdiz20d7syy0l5dzqmr5f8m7kjf6dh"; 15311 }; 15312 meta.homepage = "https://github.com/aaronik/treewalker.nvim/"; 15313 meta.hydraPlatforms = [ ]; ··· 15394 15395 ts-autotag-nvim = buildVimPlugin { 15396 pname = "ts-autotag.nvim"; 15397 - version = "2025-01-15"; 15398 src = fetchFromGitHub { 15399 owner = "tronikelis"; 15400 repo = "ts-autotag.nvim"; 15401 - rev = "0f1dc38fddd99b468ef58938d7cd99ce1d6bcb0e"; 15402 - sha256 = "1m0gng9v5dn6mm026nxw0n24bvysr156xhwvf83pv9xqp28xfwar"; 15403 }; 15404 meta.homepage = "https://github.com/tronikelis/ts-autotag.nvim/"; 15405 meta.hydraPlatforms = [ ]; ··· 15654 15655 unison = buildVimPlugin { 15656 pname = "unison"; 15657 - version = "2025-07-24"; 15658 src = fetchFromGitHub { 15659 owner = "unisonweb"; 15660 repo = "unison"; 15661 - rev = "3379c0316a6bdbae58a8de32769c1a76108f74ae"; 15662 - sha256 = "0vbxjzv2n9184060il27k421qb2fwgv403xlri2nmnlc1nlg3wdr"; 15663 }; 15664 meta.homepage = "https://github.com/unisonweb/unison/"; 15665 meta.hydraPlatforms = [ ]; ··· 16278 16279 vim-apm = buildVimPlugin { 16280 pname = "vim-apm"; 16281 - version = "2024-02-03"; 16282 src = fetchFromGitHub { 16283 owner = "ThePrimeagen"; 16284 repo = "vim-apm"; 16285 - rev = "96d452bb97c7b147b87edf75b53d5d724fb4bf64"; 16286 - sha256 = "106rjqi3wg1yn62szi7v5xyira2qz5l5fc987n2abddakqr5ivhp"; 16287 }; 16288 meta.homepage = "https://github.com/ThePrimeagen/vim-apm/"; 16289 meta.hydraPlatforms = [ ]; ··· 17279 17280 vim-elixir = buildVimPlugin { 17281 pname = "vim-elixir"; 17282 - version = "2025-03-13"; 17283 src = fetchFromGitHub { 17284 owner = "elixir-editors"; 17285 repo = "vim-elixir"; 17286 - rev = "1ec9aab0e0de9c737af97e46ead5d65485ae2f9a"; 17287 - sha256 = "0l4yr5m78n4qwkag00rzqmfhb626121naar5mjnlfyxkp4rsvjd6"; 17288 }; 17289 meta.homepage = "https://github.com/elixir-editors/vim-elixir/"; 17290 meta.hydraPlatforms = [ ]; ··· 17942 17943 vim-habamax = buildVimPlugin { 17944 pname = "vim-habamax"; 17945 - version = "2025-07-23"; 17946 src = fetchFromGitHub { 17947 owner = "habamax"; 17948 repo = "vim-habamax"; 17949 - rev = "c7167cc7351f87fa997aa156ba4ccc570740b068"; 17950 - sha256 = "1j718if43azafpwlc83if8dspcdnqhvhffhii43l3vvvs7zcphp9"; 17951 }; 17952 meta.homepage = "https://github.com/habamax/vim-habamax/"; 17953 meta.hydraPlatforms = [ ]; ··· 18828 18829 vim-lsp-settings = buildVimPlugin { 18830 pname = "vim-lsp-settings"; 18831 - version = "2025-07-14"; 18832 src = fetchFromGitHub { 18833 owner = "mattn"; 18834 repo = "vim-lsp-settings"; 18835 - rev = "69909f76c099588354d8d066ae6dc17d8de97ee1"; 18836 - sha256 = "0sn8b0b2xxqcha8ynba95xcz20hssp718x50nxb1g2ms37chw4q2"; 18837 }; 18838 meta.homepage = "https://github.com/mattn/vim-lsp-settings/"; 18839 meta.hydraPlatforms = [ ]; ··· 19088 19089 vim-moonfly-colors = buildVimPlugin { 19090 pname = "vim-moonfly-colors"; 19091 - version = "2025-05-28"; 19092 src = fetchFromGitHub { 19093 owner = "bluz71"; 19094 repo = "vim-moonfly-colors"; 19095 - rev = "ff822100c5d268e0db79e8e725cbd3ade3470de3"; 19096 - sha256 = "14ffclg7yjkyw05bdqwc7rmzf195vjswfpmcfi7sd85rr4d3midz"; 19097 }; 19098 meta.homepage = "https://github.com/bluz71/vim-moonfly-colors/"; 19099 meta.hydraPlatforms = [ ]; ··· 19322 19323 vim-ocaml = buildVimPlugin { 19324 pname = "vim-ocaml"; 19325 - version = "2024-03-22"; 19326 src = fetchFromGitHub { 19327 owner = "ocaml"; 19328 repo = "vim-ocaml"; 19329 - rev = "81be9d05d4ce84be7e118754d0b777006f9c85fb"; 19330 - sha256 = "1r2k7zdicsf1c0j5bx5v7m0vr3s5iyyaawmq5r3rym7qnzhsl6lm"; 19331 }; 19332 meta.homepage = "https://github.com/ocaml/vim-ocaml/"; 19333 meta.hydraPlatforms = [ ]; ··· 20232 20233 vim-signify = buildVimPlugin { 20234 pname = "vim-signify"; 20235 - version = "2024-04-05"; 20236 src = fetchFromGitHub { 20237 owner = "mhinz"; 20238 repo = "vim-signify"; 20239 - rev = "8670143f9e12ed1cd3c9b2c54f345cdd9a4baac3"; 20240 - sha256 = "0wpa5d401slgg41mknm6kiaki7frg7wkzs7ymjyn4l5jxq03x42h"; 20241 }; 20242 meta.homepage = "https://github.com/mhinz/vim-signify/"; 20243 meta.hydraPlatforms = [ ]; ··· 20479 20480 vim-spirv = buildVimPlugin { 20481 pname = "vim-spirv"; 20482 - version = "2025-07-15"; 20483 src = fetchFromGitHub { 20484 owner = "kbenzie"; 20485 repo = "vim-spirv"; 20486 - rev = "4e7787346ca60ddbdcdd6c8651d834a281268067"; 20487 - sha256 = "1j550ynpjh5lyzl56lqsd40qxjwp6na2h55fwcjss55xprlbihdf"; 20488 }; 20489 meta.homepage = "https://github.com/kbenzie/vim-spirv/"; 20490 meta.hydraPlatforms = [ ]; ··· 21208 21209 vim-wakatime = buildVimPlugin { 21210 pname = "vim-wakatime"; 21211 - version = "2025-05-22"; 21212 src = fetchFromGitHub { 21213 owner = "wakatime"; 21214 repo = "vim-wakatime"; 21215 - rev = "f39c4a201ae350aaba713b59d4a4fdd88e0811aa"; 21216 - sha256 = "1a07max0qrivbzgd4qaf3hrdsbpicmrb06km5glqphx9m8f63297"; 21217 }; 21218 meta.homepage = "https://github.com/wakatime/vim-wakatime/"; 21219 meta.hydraPlatforms = [ ]; ··· 21573 21574 vimtex = buildVimPlugin { 21575 pname = "vimtex"; 21576 - version = "2025-07-01"; 21577 src = fetchFromGitHub { 21578 owner = "lervag"; 21579 repo = "vimtex"; 21580 - rev = "7f2633027c8f496a85284de0c11aa32f1e07e049"; 21581 - sha256 = "1jh3ia9whr8xcay4p6n0g9mparb5x55ns9vvw1zfpzfyy4h0jwz9"; 21582 }; 21583 meta.homepage = "https://github.com/lervag/vimtex/"; 21584 meta.hydraPlatforms = [ ]; ··· 21898 21899 windsurf-vim = buildVimPlugin { 21900 pname = "windsurf.vim"; 21901 - version = "2025-04-04"; 21902 src = fetchFromGitHub { 21903 owner = "Exafunction"; 21904 repo = "windsurf.vim"; 21905 - rev = "272c6e2755e8faa90e26bcdcd9fde6b9e61751ea"; 21906 - sha256 = "0d2x0sly9wcbb3qrm43rim3995dk3gdr85dp7gc5nh5c9iw8yxsp"; 21907 }; 21908 meta.homepage = "https://github.com/Exafunction/windsurf.vim/"; 21909 meta.hydraPlatforms = [ ]; ··· 21989 21990 wtf-nvim = buildVimPlugin { 21991 pname = "wtf.nvim"; 21992 - version = "2025-07-13"; 21993 src = fetchFromGitHub { 21994 owner = "piersolenski"; 21995 repo = "wtf.nvim"; 21996 - rev = "cacbcabbe969de27e98166415a0625bbc5df2fe2"; 21997 - sha256 = "15nw15abj3m039kns7pkii232wrggwzzpq852kv30a5l2b47qfhl"; 21998 }; 21999 meta.homepage = "https://github.com/piersolenski/wtf.nvim/"; 22000 meta.hydraPlatforms = [ ]; ··· 22080 22081 yats-vim = buildVimPlugin { 22082 pname = "yats.vim"; 22083 - version = "2025-07-15"; 22084 src = fetchFromGitHub { 22085 owner = "HerringtonDarkholme"; 22086 repo = "yats.vim"; 22087 - rev = "c63094edc324672d7fa945c6c34d4b6445f151b2"; 22088 - sha256 = "14bhv950np0vaxipbvfrcj0f0r4ygvph2pkbffxj9mbckrq08ka2"; 22089 fetchSubmodules = true; 22090 }; 22091 meta.homepage = "https://github.com/HerringtonDarkholme/yats.vim/"; ··· 22094 22095 yazi-nvim = buildVimPlugin { 22096 pname = "yazi.nvim"; 22097 - version = "2025-07-22"; 22098 src = fetchFromGitHub { 22099 owner = "mikavilpas"; 22100 repo = "yazi.nvim"; 22101 - rev = "6e4e9f0353f94ca4965c20dfc2690fb0d21730f0"; 22102 - sha256 = "1pdrranrqrwhslj1b2959gim6im77yxlf807ynxrdzdwcyx7iqhs"; 22103 }; 22104 meta.homepage = "https://github.com/mikavilpas/yazi.nvim/"; 22105 meta.hydraPlatforms = [ ];
··· 74 75 CopilotChat-nvim = buildVimPlugin { 76 pname = "CopilotChat.nvim"; 77 + version = "2025-08-04"; 78 src = fetchFromGitHub { 79 owner = "CopilotC-Nvim"; 80 repo = "CopilotChat.nvim"; 81 + rev = "091bf5455bc5b371bd469e6be1dfcc656524321a"; 82 + sha256 = "12dz713vj8j84drwwlzcm8iffh5mizwkk27d2zdna3c4lpjzp99i"; 83 }; 84 meta.homepage = "https://github.com/CopilotC-Nvim/CopilotChat.nvim/"; 85 meta.hydraPlatforms = [ ]; ··· 87 88 Coqtail = buildVimPlugin { 89 pname = "Coqtail"; 90 + version = "2025-08-03"; 91 src = fetchFromGitHub { 92 owner = "whonore"; 93 repo = "Coqtail"; 94 + rev = "b12c31e8aa8d0f3bddd9a804b315a0de0823b989"; 95 + sha256 = "1lns9vrchs6prdxpxz998z94fsy99k5a7yd3wl2kmywx3pk1d6b4"; 96 }; 97 meta.homepage = "https://github.com/whonore/Coqtail/"; 98 meta.hydraPlatforms = [ ]; ··· 399 400 SchemaStore-nvim = buildVimPlugin { 401 pname = "SchemaStore.nvim"; 402 + version = "2025-08-02"; 403 src = fetchFromGitHub { 404 owner = "b0o"; 405 repo = "SchemaStore.nvim"; 406 + rev = "34e3958a9afd7d1bd938b0cd9eecaa6f1925d4c4"; 407 + sha256 = "0pbdns4a63f2xqw4jhxf1wj5wjyrgw2c1a9az2spgc2ps8vzjs6z"; 408 }; 409 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 410 meta.hydraPlatforms = [ ]; ··· 1129 1130 auto-fix-return-nvim = buildVimPlugin { 1131 pname = "auto-fix-return.nvim"; 1132 + version = "2025-07-26"; 1133 src = fetchFromGitHub { 1134 owner = "Jay-Madden"; 1135 repo = "auto-fix-return.nvim"; 1136 + rev = "0ea48307f89caaf8bc8d17a4a611d9f94adaa768"; 1137 + sha256 = "1knwi21jp50iip7jxpi1z5jdlbbh6bd42m4970k9aj5nyqy3asw7"; 1138 }; 1139 meta.homepage = "https://github.com/Jay-Madden/auto-fix-return.nvim/"; 1140 meta.hydraPlatforms = [ ]; ··· 1194 1195 auto-session = buildVimPlugin { 1196 pname = "auto-session"; 1197 + version = "2025-07-28"; 1198 src = fetchFromGitHub { 1199 owner = "rmagatti"; 1200 repo = "auto-session"; 1201 + rev = "c93a9bfd8a5cbf931a6ead5c824998da874b9f79"; 1202 + sha256 = "03z853sjk06plr8z57g32wwc442bskabqff1shrfxsrh4gn3532j"; 1203 }; 1204 meta.homepage = "https://github.com/rmagatti/auto-session/"; 1205 meta.hydraPlatforms = [ ]; ··· 1259 1260 aw-watcher-nvim = buildVimPlugin { 1261 pname = "aw-watcher.nvim"; 1262 + version = "2025-07-28"; 1263 src = fetchFromGitHub { 1264 owner = "lowitea"; 1265 repo = "aw-watcher.nvim"; 1266 + rev = "c9cdc2285d384f4e2717bd3734435dfc63ff6f48"; 1267 + sha256 = "11x5phlaf53hxadp6b7qksq5viiwpj0p2xli78f0c8q9vjbyk7rs"; 1268 }; 1269 meta.homepage = "https://github.com/lowitea/aw-watcher.nvim/"; 1270 meta.hydraPlatforms = [ ]; ··· 1390 1391 base16-nvim = buildVimPlugin { 1392 pname = "base16-nvim"; 1393 + version = "2025-08-03"; 1394 src = fetchFromGitHub { 1395 owner = "RRethy"; 1396 repo = "base16-nvim"; 1397 + rev = "f7d1fac23d5efdca5758c8423797d2bf705cb36b"; 1398 + sha256 = "1sbn9p7r5wlh3adb7yyshkdln5lbfhpqqgaa5d8w2s8d1djpv8f0"; 1399 }; 1400 meta.homepage = "https://github.com/RRethy/base16-nvim/"; 1401 meta.hydraPlatforms = [ ]; ··· 1559 1560 blink-cmp-git = buildVimPlugin { 1561 pname = "blink-cmp-git"; 1562 + version = "2025-07-25"; 1563 src = fetchFromGitHub { 1564 owner = "Kaiser-Yang"; 1565 repo = "blink-cmp-git"; 1566 + rev = "a820245eb0e5cb44ed0c27c63a41d90635b39e0e"; 1567 + sha256 = "01nqpr6zj4cl1rkng2z32xcbliba7md6v5537xywjxy25zc0z29n"; 1568 }; 1569 meta.homepage = "https://github.com/Kaiser-Yang/blink-cmp-git/"; 1570 meta.hydraPlatforms = [ ]; ··· 1624 1625 blink-copilot = buildVimPlugin { 1626 pname = "blink-copilot"; 1627 + version = "2025-07-26"; 1628 src = fetchFromGitHub { 1629 owner = "fang2hou"; 1630 repo = "blink-copilot"; 1631 + rev = "41e91a659bd9b8cba9ba2ea68a69b52ba5a9ebd8"; 1632 + sha256 = "0sms1k0w4dim5inb696as03vc0w0f1xz318vywl0ry4405m53bv1"; 1633 }; 1634 meta.homepage = "https://github.com/fang2hou/blink-copilot/"; 1635 meta.hydraPlatforms = [ ]; ··· 1663 1664 blink-ripgrep-nvim = buildVimPlugin { 1665 pname = "blink-ripgrep.nvim"; 1666 + version = "2025-08-03"; 1667 src = fetchFromGitHub { 1668 owner = "mikavilpas"; 1669 repo = "blink-ripgrep.nvim"; 1670 + rev = "3162d8517c379c2d2fc46cb4ee7ae9457162e88b"; 1671 + sha256 = "1871hy6ss71ix0c5625ildwpy230kw178jsqgfc398wv408jr2c1"; 1672 }; 1673 meta.homepage = "https://github.com/mikavilpas/blink-ripgrep.nvim/"; 1674 meta.hydraPlatforms = [ ]; ··· 1884 1885 catppuccin-nvim = buildVimPlugin { 1886 pname = "catppuccin-nvim"; 1887 + version = "2025-08-04"; 1888 src = fetchFromGitHub { 1889 owner = "catppuccin"; 1890 repo = "nvim"; 1891 + rev = "8fd0915ec0a2ad6376bfe895e6c4b3ffb5a5bad2"; 1892 + sha256 = "1xvxw0xhzz61adhp28gjhpz95z1sxj74mp1brkzzlyphn1n433xd"; 1893 }; 1894 meta.homepage = "https://github.com/catppuccin/nvim/"; 1895 meta.hydraPlatforms = [ ]; ··· 1988 1989 checkmate-nvim = buildVimPlugin { 1990 pname = "checkmate.nvim"; 1991 + version = "2025-07-28"; 1992 src = fetchFromGitHub { 1993 owner = "bngarren"; 1994 repo = "checkmate.nvim"; 1995 + rev = "b544f3fd447bdf7e752e2ab8caaa68c4370bc2a2"; 1996 + sha256 = "098x5mgqiggrqpphx4awlbl5ybxkagqrz3xab9qaz7rpr8d4n0n9"; 1997 }; 1998 meta.homepage = "https://github.com/bngarren/checkmate.nvim/"; 1999 meta.hydraPlatforms = [ ]; ··· 2079 2080 claudecode-nvim = buildVimPlugin { 2081 pname = "claudecode.nvim"; 2082 + version = "2025-08-04"; 2083 src = fetchFromGitHub { 2084 owner = "coder"; 2085 repo = "claudecode.nvim"; 2086 + rev = "340319e0d31e89b2e076290934f66d4ffb4e4060"; 2087 + sha256 = "1c7hvs7y2jiisadcbd5s7xdapjwjjwizcvfd3h2kzlz5dyhfax5p"; 2088 }; 2089 meta.homepage = "https://github.com/coder/claudecode.nvim/"; 2090 meta.hydraPlatforms = [ ]; ··· 2638 2639 cmp-path = buildVimPlugin { 2640 pname = "cmp-path"; 2641 + version = "2025-07-30"; 2642 src = fetchFromGitHub { 2643 owner = "hrsh7th"; 2644 repo = "cmp-path"; 2645 + rev = "c642487086dbd9a93160e1679a1327be111cbc25"; 2646 + sha256 = "0p6rc6bv68qz0pd200f8ayg8313sjik4rsc6d9xllyjn5pdmv13v"; 2647 }; 2648 meta.homepage = "https://github.com/hrsh7th/cmp-path/"; 2649 meta.hydraPlatforms = [ ]; ··· 2976 2977 codecompanion-history-nvim = buildVimPlugin { 2978 pname = "codecompanion-history.nvim"; 2979 + version = "2025-07-27"; 2980 src = fetchFromGitHub { 2981 owner = "ravitemer"; 2982 repo = "codecompanion-history.nvim"; 2983 + rev = "811b9af74c8fd4752a3422acf2379fba0639a96c"; 2984 + sha256 = "0q2lymvb1mgcx4lsycimrqcjm3g0j4q4l3019lxr8182a2q3slcs"; 2985 }; 2986 meta.homepage = "https://github.com/ravitemer/codecompanion-history.nvim/"; 2987 meta.hydraPlatforms = [ ]; ··· 2989 2990 codecompanion-nvim = buildVimPlugin { 2991 pname = "codecompanion.nvim"; 2992 + version = "2025-08-04"; 2993 src = fetchFromGitHub { 2994 owner = "olimorris"; 2995 repo = "codecompanion.nvim"; 2996 + rev = "cb5ce4bb0707f66fb8bc1e2e96982b97ed7062ed"; 2997 + sha256 = "0627h27nv1mb4br51zlnv8zh0257579ls6ym13k92d54lizjid5i"; 2998 }; 2999 meta.homepage = "https://github.com/olimorris/codecompanion.nvim/"; 3000 meta.hydraPlatforms = [ ]; ··· 3093 3094 comfy-line-numbers-nvim = buildVimPlugin { 3095 pname = "comfy-line-numbers.nvim"; 3096 + version = "2025-08-02"; 3097 src = fetchFromGitHub { 3098 owner = "mluders"; 3099 repo = "comfy-line-numbers.nvim"; 3100 + rev = "31e2f9287b4491ad72defb9e0185eb2739983799"; 3101 + sha256 = "16cwrw7wz71g68kh7nj16xlidxdhgibbrg2rd75aij4452gisvl8"; 3102 }; 3103 meta.homepage = "https://github.com/mluders/comfy-line-numbers.nvim/"; 3104 meta.hydraPlatforms = [ ]; ··· 3354 3355 copilot-lsp = buildVimPlugin { 3356 pname = "copilot-lsp"; 3357 + version = "2025-07-31"; 3358 src = fetchFromGitHub { 3359 owner = "copilotlsp-nvim"; 3360 repo = "copilot-lsp"; 3361 + rev = "173c015ea61cb493997e3b1fa80bf57f6db58c26"; 3362 + sha256 = "0jymlyr8yxgr8icqnh7b5kmsjl7gslx57fizbz7skb5y26m761h2"; 3363 }; 3364 meta.homepage = "https://github.com/copilotlsp-nvim/copilot-lsp/"; 3365 meta.hydraPlatforms = [ ]; ··· 3367 3368 copilot-lua = buildVimPlugin { 3369 pname = "copilot.lua"; 3370 + version = "2025-08-01"; 3371 src = fetchFromGitHub { 3372 owner = "zbirenbaum"; 3373 repo = "copilot.lua"; 3374 + rev = "0f2fd3829dd27d682e46c244cf48d9715726f612"; 3375 + sha256 = "0nm0642zz9j952k2zz5d0ll85yq132qb8zakwjbci8b1q2va5z5i"; 3376 }; 3377 meta.homepage = "https://github.com/zbirenbaum/copilot.lua/"; 3378 meta.hydraPlatforms = [ ]; ··· 3393 3394 copilot-vim = buildVimPlugin { 3395 pname = "copilot.vim"; 3396 + version = "2025-07-28"; 3397 src = fetchFromGitHub { 3398 owner = "github"; 3399 repo = "copilot.vim"; 3400 + rev = "51f80c0ed4f70d1c7e8c0ff11a792a9d84502c03"; 3401 + sha256 = "18zyw39flqgdpmnniii7yri169l2vlnsgckg5gr5la85r99pzfvk"; 3402 }; 3403 meta.homepage = "https://github.com/github/copilot.vim/"; 3404 meta.hydraPlatforms = [ ]; ··· 3458 3459 coq_nvim = buildVimPlugin { 3460 pname = "coq_nvim"; 3461 + version = "2025-07-25"; 3462 src = fetchFromGitHub { 3463 owner = "ms-jpq"; 3464 repo = "coq_nvim"; 3465 + rev = "2732cfa52fffd32d535c782f418da6fb8bf331ea"; 3466 + sha256 = "0dpp2n2ndpcx6kjbqirljrzfis2fzf3mfg79qq1f9s87fpp876hx"; 3467 }; 3468 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 3469 meta.hydraPlatforms = [ ]; ··· 3510 3511 crates-nvim = buildVimPlugin { 3512 pname = "crates.nvim"; 3513 + version = "2025-08-02"; 3514 src = fetchFromGitHub { 3515 owner = "saecki"; 3516 repo = "crates.nvim"; 3517 + rev = "fe66681d97a1eefddb5d7e48bd427b2cb0271881"; 3518 + sha256 = "0dq2656g329g14ibfcy0a5gn956gkcdniddxlr8isfb66cr6hhhh"; 3519 }; 3520 meta.homepage = "https://github.com/saecki/crates.nvim/"; 3521 meta.hydraPlatforms = [ ]; ··· 3549 3550 cspell-nvim = buildVimPlugin { 3551 pname = "cspell.nvim"; 3552 + version = "2025-07-30"; 3553 src = fetchFromGitHub { 3554 owner = "davidmh"; 3555 repo = "cspell.nvim"; 3556 + rev = "07d75238648ef99c0c5c05f4cfd83093d0a01dd4"; 3557 + sha256 = "0jd8rmnm4qmg0ik3yn74hzvizm6qjlzwmrikbl8qlxdysrg9xrrn"; 3558 }; 3559 meta.homepage = "https://github.com/davidmh/cspell.nvim/"; 3560 meta.hydraPlatforms = [ ]; ··· 3653 3654 cyberdream-nvim = buildVimPlugin { 3655 pname = "cyberdream.nvim"; 3656 + version = "2025-07-25"; 3657 src = fetchFromGitHub { 3658 owner = "scottmckendry"; 3659 repo = "cyberdream.nvim"; 3660 + rev = "14b254d37bb725bf9a92f741f0c4a429f253418c"; 3661 + sha256 = "1s1gfhvjysfs5gpzyjgk8bgqcva00dsh6kbq5glzmdyml1hin82v"; 3662 }; 3663 meta.homepage = "https://github.com/scottmckendry/cyberdream.nvim/"; 3664 meta.hydraPlatforms = [ ]; ··· 3809 3810 ddc-source-lsp = buildVimPlugin { 3811 pname = "ddc-source-lsp"; 3812 + version = "2025-08-01"; 3813 src = fetchFromGitHub { 3814 owner = "Shougo"; 3815 repo = "ddc-source-lsp"; 3816 + rev = "8084bee90bc7a3c92f31e9696c8e360c8f889cf9"; 3817 + sha256 = "013s9qrsspc6ybz57mk0s5pixmb9f429a5f5y6ry1nkdp0fplyln"; 3818 }; 3819 meta.homepage = "https://github.com/Shougo/ddc-source-lsp/"; 3820 meta.hydraPlatforms = [ ]; ··· 3874 3875 debugprint-nvim = buildVimPlugin { 3876 pname = "debugprint.nvim"; 3877 + version = "2025-08-01"; 3878 src = fetchFromGitHub { 3879 owner = "andrewferrier"; 3880 repo = "debugprint.nvim"; 3881 + rev = "2f28d5b0773b350c69587d236d1db475985fac58"; 3882 + sha256 = "0nxid6siq33sa7nd3gs6g02j9blsyq8wydnhd9yx800qp88knbr4"; 3883 }; 3884 meta.homepage = "https://github.com/andrewferrier/debugprint.nvim/"; 3885 meta.hydraPlatforms = [ ]; ··· 3991 3992 denops-vim = buildVimPlugin { 3993 pname = "denops.vim"; 3994 + version = "2025-08-04"; 3995 src = fetchFromGitHub { 3996 owner = "vim-denops"; 3997 repo = "denops.vim"; 3998 + rev = "f63fa7ffb3fc9693a742c7c1f774223cc111a2d9"; 3999 + sha256 = "0bgmj41fp0kl7g6129pgcppsl2mc8ylvhj5b1d91s12klxv5jk9y"; 4000 }; 4001 meta.homepage = "https://github.com/vim-denops/denops.vim/"; 4002 meta.hydraPlatforms = [ ]; ··· 4487 4488 dropbar-nvim = buildVimPlugin { 4489 pname = "dropbar.nvim"; 4490 + version = "2025-08-02"; 4491 src = fetchFromGitHub { 4492 owner = "Bekaboo"; 4493 repo = "dropbar.nvim"; 4494 + rev = "418897fe7828b2749ca78056ec8d8ad43136b695"; 4495 + sha256 = "1cjlclvln0rism3xgz0pk52mhry6aisg3x9vk5idk5h0c9afqm0z"; 4496 }; 4497 meta.homepage = "https://github.com/Bekaboo/dropbar.nvim/"; 4498 meta.hydraPlatforms = [ ]; ··· 4513 4514 easy-dotnet-nvim = buildVimPlugin { 4515 pname = "easy-dotnet.nvim"; 4516 + version = "2025-08-04"; 4517 src = fetchFromGitHub { 4518 owner = "GustavEikaas"; 4519 repo = "easy-dotnet.nvim"; 4520 + rev = "66aff649fc3129dc74d0c40de4c8e65099c700b9"; 4521 + sha256 = "1nhl4m3n37fcg8vkqca5shw3s208yxbyjhgqrli5j5knc11756r2"; 4522 }; 4523 meta.homepage = "https://github.com/GustavEikaas/easy-dotnet.nvim/"; 4524 meta.hydraPlatforms = [ ]; ··· 4539 4540 ecolog-nvim = buildVimPlugin { 4541 pname = "ecolog.nvim"; 4542 + version = "2025-08-01"; 4543 src = fetchFromGitHub { 4544 + owner = "ph1losof"; 4545 repo = "ecolog.nvim"; 4546 + rev = "bbd8a8fed814cdd037851a96e725d8b508aea658"; 4547 + sha256 = "1qmpif5vklqj0qnk2i19dxmmm0hm9s21w6f79ym7s5lq0cnv6ap0"; 4548 }; 4549 + meta.homepage = "https://github.com/ph1losof/ecolog.nvim/"; 4550 meta.hydraPlatforms = [ ]; 4551 }; 4552 4553 edge = buildVimPlugin { 4554 pname = "edge"; 4555 + version = "2025-08-03"; 4556 src = fetchFromGitHub { 4557 owner = "sainnhe"; 4558 repo = "edge"; 4559 + rev = "1d203dc579c09db5bf3188e1ce84e0348598ceff"; 4560 + sha256 = "15aaz9160rk7xnjgsr12jd6j8gv7r81cl4gy1n4psg361v08schk"; 4561 }; 4562 meta.homepage = "https://github.com/sainnhe/edge/"; 4563 meta.hydraPlatforms = [ ]; ··· 4618 4619 efmls-configs-nvim = buildVimPlugin { 4620 pname = "efmls-configs-nvim"; 4621 + version = "2025-08-03"; 4622 src = fetchFromGitHub { 4623 owner = "creativenull"; 4624 repo = "efmls-configs-nvim"; 4625 + rev = "5a037773e615ccae3ede9990fd43ea4b1ea26c5a"; 4626 + sha256 = "1gka48ni8jwyh4932xg2xqil1srrzjqmlvjjn73bibffdl6wgc3v"; 4627 }; 4628 meta.homepage = "https://github.com/creativenull/efmls-configs-nvim/"; 4629 meta.hydraPlatforms = [ ]; ··· 4670 4671 embark-vim = buildVimPlugin { 4672 pname = "embark-vim"; 4673 + version = "2025-07-26"; 4674 src = fetchFromGitHub { 4675 owner = "embark-theme"; 4676 repo = "vim"; 4677 + rev = "45e62f417cb99f4cbf50d4b1c9d1e8f912f50224"; 4678 + sha256 = "1wr7z5ypnj479m52avl0g3lfqxhalzrb89gal3hqka2yhhs0axag"; 4679 }; 4680 meta.homepage = "https://github.com/embark-theme/vim/"; 4681 meta.hydraPlatforms = [ ]; ··· 4749 4750 everforest = buildVimPlugin { 4751 pname = "everforest"; 4752 + version = "2025-08-03"; 4753 src = fetchFromGitHub { 4754 owner = "sainnhe"; 4755 repo = "everforest"; 4756 + rev = "4132e797f6ce555de53825b6ef3df0b618456703"; 4757 + sha256 = "0fz56gvf8dsw23vlnrbiniwf7w2rnp0hkywy7yvg66bsd2p8cb3f"; 4758 }; 4759 meta.homepage = "https://github.com/sainnhe/everforest/"; 4760 meta.hydraPlatforms = [ ]; ··· 5765 5766 gruvbox-material = buildVimPlugin { 5767 pname = "gruvbox-material"; 5768 + version = "2025-08-03"; 5769 src = fetchFromGitHub { 5770 owner = "sainnhe"; 5771 repo = "gruvbox-material"; 5772 + rev = "d080710b58e605b45db0b0e4288205ca6f7587f0"; 5773 + sha256 = "1l59p0w6w5rm6d55a8ysnh65b38kqd3lnk6gb2iw57qm736xgl9n"; 5774 }; 5775 meta.homepage = "https://github.com/sainnhe/gruvbox-material/"; 5776 meta.hydraPlatforms = [ ]; ··· 5896 5897 hardtime-nvim = buildVimPlugin { 5898 pname = "hardtime.nvim"; 5899 + version = "2025-07-29"; 5900 src = fetchFromGitHub { 5901 owner = "m4xshen"; 5902 repo = "hardtime.nvim"; 5903 + rev = "6d7664d5bdfaea44c5f50b29f5239fab7b00c273"; 5904 + sha256 = "0vdljivlhwwmr13gl2k7pbvh6z4irg2s3mmyv0y1bkxzmj0780h6"; 5905 }; 5906 meta.homepage = "https://github.com/m4xshen/hardtime.nvim/"; 5907 meta.hydraPlatforms = [ ]; ··· 6039 6040 helpview-nvim = buildVimPlugin { 6041 pname = "helpview.nvim"; 6042 + version = "2025-07-27"; 6043 src = fetchFromGitHub { 6044 owner = "OXY2DEV"; 6045 repo = "helpview.nvim"; 6046 + rev = "10a4fc23876c879bcd364b7d21564e905ff49d36"; 6047 + sha256 = "0wksjzjgi1wdb87hs722dgyvid3blxg8pgxjs32sfcvrffm02alh"; 6048 fetchSubmodules = true; 6049 }; 6050 meta.homepage = "https://github.com/OXY2DEV/helpview.nvim/"; ··· 6053 6054 hex-nvim = buildVimPlugin { 6055 pname = "hex.nvim"; 6056 + version = "2025-07-27"; 6057 src = fetchFromGitHub { 6058 owner = "RaafatTurki"; 6059 repo = "hex.nvim"; 6060 + rev = "b46e63356a69e8d6f046c38a9708d55d17f15038"; 6061 + sha256 = "0s182m35ccfdsc2dphy5n866ai9zfvnn608ic6ykq20dcjiza6b6"; 6062 }; 6063 meta.homepage = "https://github.com/RaafatTurki/hex.nvim/"; 6064 meta.hydraPlatforms = [ ]; ··· 6782 6783 kanso-nvim = buildVimPlugin { 6784 pname = "kanso.nvim"; 6785 + version = "2025-08-03"; 6786 src = fetchFromGitHub { 6787 owner = "webhooked"; 6788 repo = "kanso.nvim"; 6789 + rev = "22ba950771e86b972edf0047a0d74d8f9950b712"; 6790 + sha256 = "09k40z88l6cf7y5srqrxxmahx90k78qwmndlnah125cqxwy992i2"; 6791 }; 6792 meta.homepage = "https://github.com/webhooked/kanso.nvim/"; 6793 meta.hydraPlatforms = [ ]; ··· 6886 6887 kulala-nvim = buildVimPlugin { 6888 pname = "kulala.nvim"; 6889 + version = "2025-08-03"; 6890 src = fetchFromGitHub { 6891 owner = "mistweaverco"; 6892 repo = "kulala.nvim"; 6893 + rev = "65d102f65cfee9f338ba8a0bd43187a7cac898e9"; 6894 + sha256 = "16g66lzb64ddpwz1ymhk6rml6wjx7snh67qgnqm1708fxkjcrd9r"; 6895 fetchSubmodules = true; 6896 }; 6897 meta.homepage = "https://github.com/mistweaverco/kulala.nvim/"; ··· 7043 7044 lean-nvim = buildVimPlugin { 7045 pname = "lean.nvim"; 7046 + version = "2025-08-04"; 7047 src = fetchFromGitHub { 7048 owner = "Julian"; 7049 repo = "lean.nvim"; 7050 + rev = "94c578e838d99601814293d21160a9566caff160"; 7051 + sha256 = "0mxw7kkg0kxfabdrg1x586ybppf2w4qgm6fy4nagdj0pcix5cyra"; 7052 }; 7053 meta.homepage = "https://github.com/Julian/lean.nvim/"; 7054 meta.hydraPlatforms = [ ]; ··· 7082 7083 leap-nvim = buildVimPlugin { 7084 pname = "leap.nvim"; 7085 + version = "2025-08-03"; 7086 src = fetchFromGitHub { 7087 owner = "ggandor"; 7088 repo = "leap.nvim"; 7089 + rev = "02bf52e49c72cc5dabb53ec9494d10d304f0b2c9"; 7090 + sha256 = "0bw0pbqjxwv6fhlwxhq7bl2390fkm7w2zjszf5vxcn1a8ymlrblm"; 7091 }; 7092 meta.homepage = "https://github.com/ggandor/leap.nvim/"; 7093 meta.hydraPlatforms = [ ]; ··· 7589 7590 lsp_signature-nvim = buildVimPlugin { 7591 pname = "lsp_signature.nvim"; 7592 + version = "2025-07-31"; 7593 src = fetchFromGitHub { 7594 owner = "ray-x"; 7595 repo = "lsp_signature.nvim"; 7596 + rev = "62cadce83aaceed677ffe7a2d6a57141af7131ea"; 7597 + sha256 = "131l83vfaj5b1yrsscrlbgs7rxl5n77275c1mpfbvafyy59ypg8f"; 7598 }; 7599 meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/"; 7600 meta.hydraPlatforms = [ ]; ··· 7836 7837 markview-nvim = buildVimPlugin { 7838 pname = "markview.nvim"; 7839 + version = "2025-08-04"; 7840 src = fetchFromGitHub { 7841 owner = "OXY2DEV"; 7842 repo = "markview.nvim"; 7843 + rev = "2d68c060ad4387d9895577af43c3ace41a80de5d"; 7844 + sha256 = "16h0841vmd198cxa5412s0d5ji0xwh9v4q24cd96i4gfqfg19hjv"; 7845 fetchSubmodules = true; 7846 }; 7847 meta.homepage = "https://github.com/OXY2DEV/markview.nvim/"; ··· 7850 7851 mason-lspconfig-nvim = buildVimPlugin { 7852 pname = "mason-lspconfig.nvim"; 7853 + version = "2025-07-31"; 7854 src = fetchFromGitHub { 7855 owner = "mason-org"; 7856 repo = "mason-lspconfig.nvim"; 7857 + rev = "844d247d998c2f9a6a3baad8bb9748edc55ce69f"; 7858 + sha256 = "1fa1x3f43wb3xv8399vb9l89dihh5adjk4ncwfpj7ahw2idar75q"; 7859 }; 7860 meta.homepage = "https://github.com/mason-org/mason-lspconfig.nvim/"; 7861 meta.hydraPlatforms = [ ]; ··· 7876 7877 mason-nvim = buildVimPlugin { 7878 pname = "mason.nvim"; 7879 + version = "2025-08-01"; 7880 src = fetchFromGitHub { 7881 owner = "mason-org"; 7882 repo = "mason.nvim"; 7883 + rev = "9e25c98d4826998460926f8c5c2284848d80ae89"; 7884 + sha256 = "1bc9qbqh3vlli832ivsrycmq2qyawihbl5c245ak2a6rrdvs6vn0"; 7885 }; 7886 meta.homepage = "https://github.com/mason-org/mason.nvim/"; 7887 meta.hydraPlatforms = [ ]; ··· 8448 8449 mini-nvim = buildVimPlugin { 8450 pname = "mini.nvim"; 8451 + version = "2025-08-02"; 8452 src = fetchFromGitHub { 8453 owner = "echasnovski"; 8454 repo = "mini.nvim"; 8455 + rev = "efff26174ca363c059f92e906753db47e81d870b"; 8456 + sha256 = "063vx4jhaqkslw5qd3dandcvydi22dhic36kfs2g3738n2f1dkgk"; 8457 }; 8458 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 8459 meta.hydraPlatforms = [ ]; ··· 8487 8488 mini-pick = buildVimPlugin { 8489 pname = "mini.pick"; 8490 + version = "2025-08-02"; 8491 src = fetchFromGitHub { 8492 owner = "echasnovski"; 8493 repo = "mini.pick"; 8494 + rev = "82ec629ca108c7b96b8b9bb733d235b39e137690"; 8495 + sha256 = "1n9wg6v5wrxnk8x6l33k7949fp20ygr07xkyix8zk7hfyqbg9927"; 8496 }; 8497 meta.homepage = "https://github.com/echasnovski/mini.pick/"; 8498 meta.hydraPlatforms = [ ]; ··· 8630 8631 minuet-ai-nvim = buildVimPlugin { 8632 pname = "minuet-ai.nvim"; 8633 + version = "2025-08-02"; 8634 src = fetchFromGitHub { 8635 owner = "milanglacier"; 8636 repo = "minuet-ai.nvim"; 8637 + rev = "6bc438ef345f20cc0fc593ee7c9d1d19cc2eb72a"; 8638 + sha256 = "0x7ql1qpyiyyav6a29ijm8sxk9sg28siqc2z3fk7dxhlx2vbjs8n"; 8639 }; 8640 meta.homepage = "https://github.com/milanglacier/minuet-ai.nvim/"; 8641 meta.hydraPlatforms = [ ]; ··· 8747 8748 monokai-pro-nvim = buildVimPlugin { 8749 pname = "monokai-pro.nvim"; 8750 + version = "2025-08-03"; 8751 src = fetchFromGitHub { 8752 owner = "loctvl842"; 8753 repo = "monokai-pro.nvim"; 8754 + rev = "1ac671f6da720cba967d28d25c2f16b8b4e18808"; 8755 + sha256 = "0hiwvkgx42kdshmzzjmy9wjw339j88i2kkzq334ma4ajn59nc837"; 8756 }; 8757 meta.homepage = "https://github.com/loctvl842/monokai-pro.nvim/"; 8758 meta.hydraPlatforms = [ ]; ··· 9098 9099 neo-tree-nvim = buildVimPlugin { 9100 pname = "neo-tree.nvim"; 9101 + version = "2025-07-30"; 9102 src = fetchFromGitHub { 9103 owner = "nvim-neo-tree"; 9104 repo = "neo-tree.nvim"; 9105 + rev = "46fa0c22ca39e05fe15744102d21feb07fe9a94a"; 9106 + sha256 = "1wf7lx4qcgyqqk5kq1dglivib2x5id1i5rf619mncivzffhwdnj5"; 9107 }; 9108 meta.homepage = "https://github.com/nvim-neo-tree/neo-tree.nvim/"; 9109 meta.hydraPlatforms = [ ]; ··· 9124 9125 neoconf-nvim = buildVimPlugin { 9126 pname = "neoconf.nvim"; 9127 + version = "2025-08-03"; 9128 src = fetchFromGitHub { 9129 owner = "folke"; 9130 repo = "neoconf.nvim"; 9131 + rev = "b109d170e580f85d9d41f0145cbdb1aa7caaa6fe"; 9132 + sha256 = "18whjcb28fviimxk2xh0y5iaam7sqnzdb6lhiivb5gxv3iwp8xp6"; 9133 }; 9134 meta.homepage = "https://github.com/folke/neoconf.nvim/"; 9135 meta.hydraPlatforms = [ ]; ··· 9176 9177 neoformat = buildVimPlugin { 9178 pname = "neoformat"; 9179 + version = "2025-07-29"; 9180 src = fetchFromGitHub { 9181 owner = "sbdchd"; 9182 repo = "neoformat"; 9183 + rev = "2b11fb9fa383636de5de9ecc7c989436c4e0f9d1"; 9184 + sha256 = "14ng4ss64y41p8hxj847j9p8b7j2k3fqg8x7jfjv27ma8mc27fx5"; 9185 }; 9186 meta.homepage = "https://github.com/sbdchd/neoformat/"; 9187 meta.hydraPlatforms = [ ]; ··· 9202 9203 neogit = buildVimPlugin { 9204 pname = "neogit"; 9205 + version = "2025-07-29"; 9206 src = fetchFromGitHub { 9207 owner = "NeogitOrg"; 9208 repo = "neogit"; 9209 + rev = "a1bcc7b9ab5137f691dcac1e61d5a9b3e9a46507"; 9210 + sha256 = "1lzdrs1l1zjl7vly7s3y2d1cm2z8xrma5p8d6d4djc7p61nrdgjp"; 9211 }; 9212 meta.homepage = "https://github.com/NeogitOrg/neogit/"; 9213 meta.hydraPlatforms = [ ]; ··· 9385 9386 neotest-ctest = buildVimPlugin { 9387 pname = "neotest-ctest"; 9388 + version = "2025-08-03"; 9389 src = fetchFromGitHub { 9390 owner = "orjangj"; 9391 repo = "neotest-ctest"; 9392 + rev = "d8e1f389e98d89cd3845bd83e8d1568802580297"; 9393 + sha256 = "05zsyx0clqfp8d719zmgyx1rqsi612xd424a2b1c60gpq811flz2"; 9394 }; 9395 meta.homepage = "https://github.com/orjangj/neotest-ctest/"; 9396 meta.hydraPlatforms = [ ]; ··· 9517 9518 neotest-haskell = buildVimPlugin { 9519 pname = "neotest-haskell"; 9520 + version = "2025-08-03"; 9521 src = fetchFromGitHub { 9522 owner = "MrcJkb"; 9523 repo = "neotest-haskell"; 9524 + rev = "23eb7d7f78e0c7ceb12b6a7d98d4c0ffacaea6c3"; 9525 + sha256 = "0mgyjcp0kfhdbvhpgi7cfp5x00nylfxn9y6ng9anj1q0gz235y85"; 9526 }; 9527 meta.homepage = "https://github.com/MrcJkb/neotest-haskell/"; 9528 meta.hydraPlatforms = [ ]; ··· 9530 9531 neotest-java = buildVimPlugin { 9532 pname = "neotest-java"; 9533 + version = "2025-07-26"; 9534 src = fetchFromGitHub { 9535 owner = "rcasia"; 9536 repo = "neotest-java"; 9537 + rev = "65e96a745f88ec06e72298378ec39a029171b815"; 9538 + sha256 = "003yl2yz8zhmshzr5pfvbwvpaw4w1d53ckpr0bk3abwnh21i21b6"; 9539 }; 9540 meta.homepage = "https://github.com/rcasia/neotest-java/"; 9541 meta.hydraPlatforms = [ ]; ··· 9543 9544 neotest-jest = buildVimPlugin { 9545 pname = "neotest-jest"; 9546 + version = "2025-08-02"; 9547 src = fetchFromGitHub { 9548 owner = "nvim-neotest"; 9549 repo = "neotest-jest"; 9550 + rev = "46ccc50273838f0b48e3c4814c1c46c0ccfe9edf"; 9551 + sha256 = "0nydhlxd96lagbjmbfrjj1mvn99dkhwamn01wlhm6kx6flj0863q"; 9552 }; 9553 meta.homepage = "https://github.com/nvim-neotest/neotest-jest/"; 9554 meta.hydraPlatforms = [ ]; ··· 9842 9843 netman-nvim = buildVimPlugin { 9844 pname = "netman.nvim"; 9845 + version = "2025-07-31"; 9846 src = fetchFromGitHub { 9847 owner = "miversen33"; 9848 repo = "netman.nvim"; 9849 + rev = "b8ba54ae6c3a4d3191f6815424da33139a8278d4"; 9850 + sha256 = "1nv9xwlf82mpqqig2425nr5sv18xwfz2rjk3hs41gv0ppy6an3xi"; 9851 }; 9852 meta.homepage = "https://github.com/miversen33/netman.nvim/"; 9853 meta.hydraPlatforms = [ ]; ··· 9946 9947 nightfly = buildVimPlugin { 9948 pname = "nightfly"; 9949 + version = "2025-08-03"; 9950 src = fetchFromGitHub { 9951 owner = "bluz71"; 9952 repo = "vim-nightfly-colors"; 9953 + rev = "8d0ee8436a9f37252c1a7976fe76617e8df34a5a"; 9954 + sha256 = "0k7lkxzcxqyw0n6g25xddpjsy3ynmybbjj7rrfmm0shshipyck67"; 9955 }; 9956 meta.homepage = "https://github.com/bluz71/vim-nightfly-colors/"; 9957 meta.hydraPlatforms = [ ]; ··· 10011 10012 nlsp-settings-nvim = buildVimPlugin { 10013 pname = "nlsp-settings.nvim"; 10014 + version = "2025-08-04"; 10015 src = fetchFromGitHub { 10016 owner = "tamago324"; 10017 repo = "nlsp-settings.nvim"; 10018 + rev = "053a667abfdbaf87903b1bff4e59d380bdba1ef4"; 10019 + sha256 = "0c6bxgk99z4b6pbz808f3dsr7pd391145f606mc24glypv7yknwj"; 10020 }; 10021 meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; 10022 meta.hydraPlatforms = [ ]; ··· 10089 10090 none-ls-nvim = buildVimPlugin { 10091 pname = "none-ls.nvim"; 10092 + version = "2025-08-03"; 10093 src = fetchFromGitHub { 10094 owner = "nvimtools"; 10095 repo = "none-ls.nvim"; 10096 + rev = "46f2713c88a0b4e4bf134b59577659851ddd31cf"; 10097 + sha256 = "00kbir2sfag66whb00bhz6gprc3zbskls09jdi81ii6wxh1r4c1i"; 10098 }; 10099 meta.homepage = "https://github.com/nvimtools/none-ls.nvim/"; 10100 meta.hydraPlatforms = [ ]; ··· 10297 10298 nvim-bqf = buildVimPlugin { 10299 pname = "nvim-bqf"; 10300 + version = "2025-08-03"; 10301 src = fetchFromGitHub { 10302 owner = "kevinhwang91"; 10303 repo = "nvim-bqf"; 10304 + rev = "17680cda3538913e88dd4c6456c837db9ace40ae"; 10305 + sha256 = "1iy518h0nwm8azj8b29fwf9cqpsh1h8ajzn9fzhy0fsjfjay3kln"; 10306 }; 10307 meta.homepage = "https://github.com/kevinhwang91/nvim-bqf/"; 10308 meta.hydraPlatforms = [ ]; ··· 10440 10441 nvim-dap = buildVimPlugin { 10442 pname = "nvim-dap"; 10443 + version = "2025-08-02"; 10444 src = fetchFromGitHub { 10445 owner = "mfussenegger"; 10446 repo = "nvim-dap"; 10447 + rev = "a479e25ed5b5d331fb46ee4b9e160ff02ac64310"; 10448 + sha256 = "0id0mfll6ab5y608zhqgb16xgs13yss6c3vppn2pp5jpsvz1x6v6"; 10449 }; 10450 meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; 10451 meta.hydraPlatforms = [ ]; ··· 10544 10545 nvim-dap-view = buildVimPlugin { 10546 pname = "nvim-dap-view"; 10547 + version = "2025-07-30"; 10548 src = fetchFromGitHub { 10549 owner = "igorlfs"; 10550 repo = "nvim-dap-view"; 10551 + rev = "143411d3e5d76814345030d7029af935afc7116d"; 10552 + sha256 = "1dpms4zi5i5awbh88avl4g26agjr9ws7x1zfyhmz5n3rzcrcpzsv"; 10553 }; 10554 meta.homepage = "https://github.com/igorlfs/nvim-dap-view/"; 10555 meta.hydraPlatforms = [ ]; ··· 10596 10597 nvim-early-retirement = buildVimPlugin { 10598 pname = "nvim-early-retirement"; 10599 + version = "2025-08-02"; 10600 src = fetchFromGitHub { 10601 owner = "chrisgrieser"; 10602 repo = "nvim-early-retirement"; 10603 + rev = "cdd07e2acd172a311afae5849b1abc78c25fe434"; 10604 + sha256 = "1k7sylfprwzl9k3dvxg80qgp35y81v7m585yj5g1rc3dlka7ai02"; 10605 }; 10606 meta.homepage = "https://github.com/chrisgrieser/nvim-early-retirement/"; 10607 meta.hydraPlatforms = [ ]; ··· 10661 10662 nvim-genghis = buildVimPlugin { 10663 pname = "nvim-genghis"; 10664 + version = "2025-08-02"; 10665 src = fetchFromGitHub { 10666 owner = "chrisgrieser"; 10667 repo = "nvim-genghis"; 10668 + rev = "8f521e775a06928bd349f095d5bad3c38b816892"; 10669 + sha256 = "1zwlm0hfji7g41cymk7qls1qi8f0kyzzijv8am90p59s2yinrjlm"; 10670 }; 10671 meta.homepage = "https://github.com/chrisgrieser/nvim-genghis/"; 10672 meta.hydraPlatforms = [ ]; ··· 10713 10714 nvim-highlite = buildVimPlugin { 10715 pname = "nvim-highlite"; 10716 + version = "2025-07-25"; 10717 src = fetchFromGitHub { 10718 owner = "Iron-E"; 10719 repo = "nvim-highlite"; 10720 + rev = "bb628cb95cd8cae5d2a9f8ed14d44012e0ea9356"; 10721 + sha256 = "16gbql52rhwddh50yavfnfpg64rp882s4nq6bhqqjmgpqlqr0kvr"; 10722 }; 10723 meta.homepage = "https://github.com/Iron-E/nvim-highlite/"; 10724 meta.hydraPlatforms = [ ]; ··· 10765 10766 nvim-java = buildVimPlugin { 10767 pname = "nvim-java"; 10768 + version = "2025-08-04"; 10769 src = fetchFromGitHub { 10770 owner = "nvim-java"; 10771 repo = "nvim-java"; 10772 + rev = "2776094c745af0d99b5acb24a4594d85b4f99545"; 10773 + sha256 = "0bhq7gh2hx1gbrll1hz0pz7y72n29p1yvxvf77r35nrq1hxh5gsp"; 10774 }; 10775 meta.homepage = "https://github.com/nvim-java/nvim-java/"; 10776 meta.hydraPlatforms = [ ]; ··· 10908 10909 nvim-lilypond-suite = buildVimPlugin { 10910 pname = "nvim-lilypond-suite"; 10911 + version = "2025-07-26"; 10912 src = fetchFromGitHub { 10913 owner = "martineausimon"; 10914 repo = "nvim-lilypond-suite"; 10915 + rev = "2fc9f71760db653b5e18ba49815f30e1e39e18fb"; 10916 + sha256 = "130c9j5wmhz93g9aiqc1w0lv6kg345f4khflwgj2zi55nvj0khhs"; 10917 }; 10918 meta.homepage = "https://github.com/martineausimon/nvim-lilypond-suite/"; 10919 meta.hydraPlatforms = [ ]; ··· 10921 10922 nvim-lint = buildVimPlugin { 10923 pname = "nvim-lint"; 10924 + version = "2025-07-31"; 10925 src = fetchFromGitHub { 10926 owner = "mfussenegger"; 10927 repo = "nvim-lint"; 10928 + rev = "7ef127aaede2a4d5ad8df8321e2eb4e567f29594"; 10929 + sha256 = "06p4xllqkkjm2d3v2shfm5k87lxm993qc3y88kw1w9ypcrrd4r8s"; 10930 }; 10931 meta.homepage = "https://github.com/mfussenegger/nvim-lint/"; 10932 meta.hydraPlatforms = [ ]; ··· 10973 10974 nvim-lspconfig = buildVimPlugin { 10975 pname = "nvim-lspconfig"; 10976 + version = "2025-08-03"; 10977 src = fetchFromGitHub { 10978 owner = "neovim"; 10979 repo = "nvim-lspconfig"; 10980 + rev = "63a38440989c58e1f100373ab603fd24665bdc9a"; 10981 + sha256 = "15bcqk3n5c3m8gnic98mcl2v33l9qxl98i0gfjblqy7n3b2b412c"; 10982 }; 10983 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 10984 meta.hydraPlatforms = [ ]; ··· 11038 11039 nvim-metals = buildVimPlugin { 11040 pname = "nvim-metals"; 11041 + version = "2025-08-02"; 11042 src = fetchFromGitHub { 11043 owner = "scalameta"; 11044 repo = "nvim-metals"; 11045 + rev = "ef937b2d6820a04caeaf55d7fd5af766e268bd59"; 11046 + sha256 = "088r52h18sc824dz5xddipqviabi073yhkh9jv9phf2dhpk4s7kp"; 11047 }; 11048 meta.homepage = "https://github.com/scalameta/nvim-metals/"; 11049 meta.hydraPlatforms = [ ]; ··· 11155 11156 nvim-origami = buildVimPlugin { 11157 pname = "nvim-origami"; 11158 + version = "2025-08-02"; 11159 src = fetchFromGitHub { 11160 owner = "chrisgrieser"; 11161 repo = "nvim-origami"; 11162 + rev = "6705fd653bc709fbd5c17fb86ba6252ca0e885b9"; 11163 + sha256 = "14wnxh4bxf7g6139dbs06h34kkiv5s8njs9n5fbaknhh5dynj0lk"; 11164 }; 11165 meta.homepage = "https://github.com/chrisgrieser/nvim-origami/"; 11166 meta.hydraPlatforms = [ ]; ··· 11272 11273 nvim-rip-substitute = buildVimPlugin { 11274 pname = "nvim-rip-substitute"; 11275 + version = "2025-08-02"; 11276 src = fetchFromGitHub { 11277 owner = "chrisgrieser"; 11278 repo = "nvim-rip-substitute"; 11279 + rev = "4f9ad4ce47f940e6ac7419493074ed63de5b4fa9"; 11280 + sha256 = "1nkk27yxm9gqiaaqmb65kg6ff64xynyv7shyc5y7yz3nj1mdlyz7"; 11281 }; 11282 meta.homepage = "https://github.com/chrisgrieser/nvim-rip-substitute/"; 11283 meta.hydraPlatforms = [ ]; ··· 11285 11286 nvim-scissors = buildVimPlugin { 11287 pname = "nvim-scissors"; 11288 + version = "2025-08-02"; 11289 src = fetchFromGitHub { 11290 owner = "chrisgrieser"; 11291 repo = "nvim-scissors"; 11292 + rev = "d11c2ba40f7530d50534f977798054d25a95a8db"; 11293 + sha256 = "1id9flz427a57hq72anxk540hziigrikcz3p2vjvabby2b2l8zq0"; 11294 }; 11295 meta.homepage = "https://github.com/chrisgrieser/nvim-scissors/"; 11296 meta.hydraPlatforms = [ ]; ··· 11389 11390 nvim-spider = buildVimPlugin { 11391 pname = "nvim-spider"; 11392 + version = "2025-08-02"; 11393 src = fetchFromGitHub { 11394 owner = "chrisgrieser"; 11395 repo = "nvim-spider"; 11396 + rev = "a81d07e07e279923b1a10d0146c543bf079f747e"; 11397 + sha256 = "1vlj94lnd0mg76v6kab2vz45f1fj0dzkbyfv2k3ys8w1h0sy3x1v"; 11398 }; 11399 meta.homepage = "https://github.com/chrisgrieser/nvim-spider/"; 11400 meta.hydraPlatforms = [ ]; ··· 11402 11403 nvim-surround = buildVimPlugin { 11404 pname = "nvim-surround"; 11405 + version = "2025-08-01"; 11406 src = fetchFromGitHub { 11407 owner = "kylechui"; 11408 repo = "nvim-surround"; 11409 + rev = "c271c9082886a24866353764cf96c9d957e95b2b"; 11410 + sha256 = "0v3px2jqsdlrv765fic1plzb8v5jidqmbmprlw5s5magxirgcz6w"; 11411 }; 11412 meta.homepage = "https://github.com/kylechui/nvim-surround/"; 11413 meta.hydraPlatforms = [ ]; ··· 11454 11455 nvim-tinygit = buildVimPlugin { 11456 pname = "nvim-tinygit"; 11457 + version = "2025-08-02"; 11458 src = fetchFromGitHub { 11459 owner = "chrisgrieser"; 11460 repo = "nvim-tinygit"; 11461 + rev = "a8832a2a889e82efe59b7af569795dc0ae657a5a"; 11462 + sha256 = "05c6y28i0gyyxaklvmivlaydfbykwmck071d8nxji18pbvb8ah2m"; 11463 }; 11464 meta.homepage = "https://github.com/chrisgrieser/nvim-tinygit/"; 11465 meta.hydraPlatforms = [ ]; ··· 11467 11468 nvim-tree-lua = buildVimPlugin { 11469 pname = "nvim-tree.lua"; 11470 + version = "2025-08-04"; 11471 src = fetchFromGitHub { 11472 owner = "nvim-tree"; 11473 repo = "nvim-tree.lua"; 11474 + rev = "0a7fcdf3f8ba208f4260988a198c77ec11748339"; 11475 + sha256 = "019d5pxhb0mbv3f6872m782ghxzyd6spivq37maxygjzdi8kqhrm"; 11476 }; 11477 meta.homepage = "https://github.com/nvim-tree/nvim-tree.lua/"; 11478 meta.hydraPlatforms = [ ]; ··· 11493 11494 nvim-treesitter-context = buildVimPlugin { 11495 pname = "nvim-treesitter-context"; 11496 + version = "2025-07-31"; 11497 src = fetchFromGitHub { 11498 owner = "nvim-treesitter"; 11499 repo = "nvim-treesitter-context"; 11500 + rev = "6853ecb2cd8b062365da1cdd1a2e6f934ad55ed6"; 11501 + sha256 = "13dc0z4nm4x1wvgb9bzn9sm5m328a6d05zmhmzq4gvajapws9l5g"; 11502 }; 11503 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; 11504 meta.hydraPlatforms = [ ]; ··· 11571 11572 nvim-treesitter-textobjects = buildVimPlugin { 11573 pname = "nvim-treesitter-textobjects"; 11574 + version = "2025-07-29"; 11575 src = fetchFromGitHub { 11576 owner = "nvim-treesitter"; 11577 repo = "nvim-treesitter-textobjects"; 11578 + rev = "71385f191ec06ffc60e80e6b0c9a9d5daed4824c"; 11579 + sha256 = "0pp8s0wljwhc93jp47ad4pigqm8q7v173374c1vpydhx09qwl4ga"; 11580 }; 11581 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects/"; 11582 meta.hydraPlatforms = [ ]; ··· 11662 11663 nvim-various-textobjs = buildVimPlugin { 11664 pname = "nvim-various-textobjs"; 11665 + version = "2025-08-02"; 11666 src = fetchFromGitHub { 11667 owner = "chrisgrieser"; 11668 repo = "nvim-various-textobjs"; 11669 + rev = "3533004ecdc61cdee21bec3df2efbaeaba536346"; 11670 + sha256 = "0ahcbh0l13lzsggqd1i6asc3w69rh3bripv6vf2y1c329yc0rxwb"; 11671 }; 11672 meta.homepage = "https://github.com/chrisgrieser/nvim-various-textobjs/"; 11673 meta.hydraPlatforms = [ ]; ··· 11727 11728 nvim_context_vt = buildVimPlugin { 11729 pname = "nvim_context_vt"; 11730 + version = "2025-08-02"; 11731 src = fetchFromGitHub { 11732 owner = "andersevenrud"; 11733 repo = "nvim_context_vt"; 11734 + rev = "b69f642f7848fec8c056a7e2c9452e3dec84c2b5"; 11735 + sha256 = "1dyzp6ng67a6zp021nxbimj7rf7bp7rkc4lkl9wrx9fwvxz1x0xi"; 11736 }; 11737 meta.homepage = "https://github.com/andersevenrud/nvim_context_vt/"; 11738 meta.hydraPlatforms = [ ]; ··· 11818 11819 obsidian-nvim = buildVimPlugin { 11820 pname = "obsidian.nvim"; 11821 + version = "2025-07-31"; 11822 src = fetchFromGitHub { 11823 owner = "obsidian-nvim"; 11824 repo = "obsidian.nvim"; 11825 + rev = "705cc9b4f66eca1e54040ac819102e80a32896d3"; 11826 + sha256 = "1k4ck5xfl8axfg6l862h23qkk8iz57sljygixb358q19sdmvklci"; 11827 }; 11828 meta.homepage = "https://github.com/obsidian-nvim/obsidian.nvim/"; 11829 meta.hydraPlatforms = [ ]; ··· 11857 11858 octo-nvim = buildVimPlugin { 11859 pname = "octo.nvim"; 11860 + version = "2025-07-30"; 11861 src = fetchFromGitHub { 11862 owner = "pwntester"; 11863 repo = "octo.nvim"; 11864 + rev = "1d8abaffbd8a8e5e6a2ece8523fc00a1dc38a41b"; 11865 + sha256 = "1fyc0z3f1c4d3wmam89hj94ppscff3ix0lqnsi5pzz9w9kvvdmy3"; 11866 }; 11867 meta.homepage = "https://github.com/pwntester/octo.nvim/"; 11868 meta.hydraPlatforms = [ ]; ··· 11948 11949 onedark-nvim = buildVimPlugin { 11950 pname = "onedark.nvim"; 11951 + version = "2025-07-30"; 11952 src = fetchFromGitHub { 11953 owner = "navarasu"; 11954 repo = "onedark.nvim"; 11955 + rev = "de495fabe171d48aed5525f002d14414efcecbb2"; 11956 + sha256 = "1qci3rslcmv79fsfq21vjad6zmk6qp59z1g531w2k85psj6hlz41"; 11957 }; 11958 meta.homepage = "https://github.com/navarasu/onedark.nvim/"; 11959 meta.hydraPlatforms = [ ]; ··· 11987 11988 onedarkpro-nvim = buildVimPlugin { 11989 pname = "onedarkpro.nvim"; 11990 + version = "2025-07-31"; 11991 src = fetchFromGitHub { 11992 owner = "olimorris"; 11993 repo = "onedarkpro.nvim"; 11994 + rev = "3891f6f8db49774aa861d08ddc7c18ad8f1340e9"; 11995 + sha256 = "15k4719y2bq52yy5vxk2h7w7x64j0m0iabhgm3laanijykqz6ia7"; 11996 }; 11997 meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; 11998 meta.hydraPlatforms = [ ]; ··· 12052 12053 opencode-nvim = buildVimPlugin { 12054 pname = "opencode.nvim"; 12055 + version = "2025-08-03"; 12056 src = fetchFromGitHub { 12057 owner = "NickvanDyke"; 12058 repo = "opencode.nvim"; 12059 + rev = "c1b98e513c0edbefb8b7ec517f50cf4ec4380e82"; 12060 + sha256 = "1apdz6i7yznhjdnkf8b9djdkjb69i5b5dw6v4hbd8xwwd6skzh9v"; 12061 }; 12062 meta.homepage = "https://github.com/NickvanDyke/opencode.nvim/"; 12063 meta.hydraPlatforms = [ ]; ··· 12157 12158 oxocarbon-nvim = buildVimPlugin { 12159 pname = "oxocarbon.nvim"; 12160 + version = "2025-08-03"; 12161 src = fetchFromGitHub { 12162 owner = "nyoom-engineering"; 12163 repo = "oxocarbon.nvim"; 12164 + rev = "b1aca1d6843b3eed1c4500ad5b106646375bd726"; 12165 + sha256 = "16jck4v2vx0mjb9cadypfw24iq1dqn65qnbi2bv7nxb2n0kc9wl1"; 12166 }; 12167 meta.homepage = "https://github.com/nyoom-engineering/oxocarbon.nvim/"; 12168 meta.hydraPlatforms = [ ]; ··· 12691 12692 pum-vim = buildVimPlugin { 12693 pname = "pum.vim"; 12694 + version = "2025-08-01"; 12695 src = fetchFromGitHub { 12696 owner = "Shougo"; 12697 repo = "pum.vim"; 12698 + rev = "fc526871540121f79f5c9abb1fb7c5e4b22656fd"; 12699 + sha256 = "0whndq74nj9xw5vyyb12bbq5x535vqdy9pv3w5mpj6x7rm6856k7"; 12700 }; 12701 meta.homepage = "https://github.com/Shougo/pum.vim/"; 12702 meta.hydraPlatforms = [ ]; ··· 13030 13031 remote-nvim-nvim = buildVimPlugin { 13032 pname = "remote-nvim.nvim"; 13033 + version = "2025-07-26"; 13034 src = fetchFromGitHub { 13035 owner = "amitds1997"; 13036 repo = "remote-nvim.nvim"; 13037 + rev = "4c5e8e3468895ff86ee599686724b8f33616c37c"; 13038 + sha256 = "0fs1yh3jg1q7v5hvrsaidr3kjawd6rjabxfyvlnyqgsir878ikcw"; 13039 }; 13040 meta.homepage = "https://github.com/amitds1997/remote-nvim.nvim/"; 13041 meta.hydraPlatforms = [ ]; ··· 13043 13044 remote-sshfs-nvim = buildVimPlugin { 13045 pname = "remote-sshfs.nvim"; 13046 + version = "2025-07-31"; 13047 src = fetchFromGitHub { 13048 owner = "nosduco"; 13049 repo = "remote-sshfs.nvim"; 13050 + rev = "2796064167e4a964a56e61d9fcea629324e2e7ca"; 13051 + sha256 = "04sd64g3xbddv0sw0scwcadw4cvqdgwzc9y1lkvrvz536xrvwyjy"; 13052 }; 13053 meta.homepage = "https://github.com/nosduco/remote-sshfs.nvim/"; 13054 meta.hydraPlatforms = [ ]; ··· 13069 13070 render-markdown-nvim = buildVimPlugin { 13071 pname = "render-markdown.nvim"; 13072 + version = "2025-08-01"; 13073 src = fetchFromGitHub { 13074 owner = "MeanderingProgrammer"; 13075 repo = "render-markdown.nvim"; 13076 + rev = "eec00fbfd7273cdfa0a1154dbef0bb983641eaf8"; 13077 + sha256 = "1b0d005dfdb0kqr17fwrrc5qhnc9m7py0in8pfgy2hvyhgzykjk3"; 13078 }; 13079 meta.homepage = "https://github.com/MeanderingProgrammer/render-markdown.nvim/"; 13080 meta.hydraPlatforms = [ ]; ··· 13148 13149 rnvimr = buildVimPlugin { 13150 pname = "rnvimr"; 13151 + version = "2025-08-03"; 13152 src = fetchFromGitHub { 13153 owner = "kevinhwang91"; 13154 repo = "rnvimr"; 13155 + rev = "c9262da32756362be50753806d6e09c747685295"; 13156 + sha256 = "1k82rmx2r2bmjzgddryff34n6y10m31irz9f5jklr5dmy4cg71q6"; 13157 }; 13158 meta.homepage = "https://github.com/kevinhwang91/rnvimr/"; 13159 meta.hydraPlatforms = [ ]; ··· 13200 13201 roslyn-nvim = buildVimPlugin { 13202 pname = "roslyn.nvim"; 13203 + version = "2025-08-03"; 13204 src = fetchFromGitHub { 13205 owner = "seblyng"; 13206 repo = "roslyn.nvim"; 13207 + rev = "3b5b6c687ecaeccbac7652673385511a3deba7bb"; 13208 + sha256 = "1iqafnrmlqnz1ks1lqgdr644vr1x2r05aksm0zj54yjfv4ph8sdl"; 13209 }; 13210 meta.homepage = "https://github.com/seblyng/roslyn.nvim/"; 13211 meta.hydraPlatforms = [ ]; ··· 13317 13318 satellite-nvim = buildVimPlugin { 13319 pname = "satellite.nvim"; 13320 + version = "2025-07-25"; 13321 src = fetchFromGitHub { 13322 owner = "lewis6991"; 13323 repo = "satellite.nvim"; 13324 + rev = "1febb774fed40f923a9955e0d029601bd4cabc42"; 13325 + sha256 = "0hl0b5ldms5qyach2xqrr9ry237zj8f72r5mccccgbklrapbqprz"; 13326 }; 13327 meta.homepage = "https://github.com/lewis6991/satellite.nvim/"; 13328 meta.hydraPlatforms = [ ]; ··· 13512 13513 sideways-vim = buildVimPlugin { 13514 pname = "sideways.vim"; 13515 + version = "2025-07-28"; 13516 src = fetchFromGitHub { 13517 owner = "AndrewRadev"; 13518 repo = "sideways.vim"; 13519 + rev = "1efb7db049e5536742dc89205f6e229297c31230"; 13520 + sha256 = "18y7lz9484h87sk8jaafxsfr6wr15sr14mqrw2hs7xkd0c429456"; 13521 fetchSubmodules = true; 13522 }; 13523 meta.homepage = "https://github.com/AndrewRadev/sideways.vim/"; ··· 13578 13579 smart-splits-nvim = buildVimPlugin { 13580 pname = "smart-splits.nvim"; 13581 + version = "2025-08-01"; 13582 src = fetchFromGitHub { 13583 owner = "mrjones2014"; 13584 repo = "smart-splits.nvim"; 13585 + rev = "f46b79cf9e83b0a13a4e3f83e3bd5b0d2f172bf2"; 13586 + sha256 = "0lbrdi3rd1d3cqz7bdk37gahi5c61963zxjsfwl86d4s53m3cxqc"; 13587 }; 13588 meta.homepage = "https://github.com/mrjones2014/smart-splits.nvim/"; 13589 meta.hydraPlatforms = [ ]; ··· 13630 13631 smear-cursor-nvim = buildVimPlugin { 13632 pname = "smear-cursor.nvim"; 13633 + version = "2025-08-03"; 13634 src = fetchFromGitHub { 13635 owner = "sphamba"; 13636 repo = "smear-cursor.nvim"; 13637 + rev = "58e69a911e7f5296b3d7fec5e7414df5a4ac91fb"; 13638 + sha256 = "1n4y5ff4qrmnp1fx886japf3g8bv28hca2hv19v65yndkgsb8wx1"; 13639 }; 13640 meta.homepage = "https://github.com/sphamba/smear-cursor.nvim/"; 13641 meta.hydraPlatforms = [ ]; ··· 13669 13670 snipe-nvim = buildVimPlugin { 13671 pname = "snipe.nvim"; 13672 + version = "2025-07-26"; 13673 src = fetchFromGitHub { 13674 owner = "leath-dub"; 13675 repo = "snipe.nvim"; 13676 + rev = "77847dc388332cd140e9a0b2fc34c8c1387d6779"; 13677 + sha256 = "0imwd9flgkhrlk38x829ngrczcz91vr17i8ndlp6kxlh9x2ggglg"; 13678 }; 13679 meta.homepage = "https://github.com/leath-dub/snipe.nvim/"; 13680 meta.hydraPlatforms = [ ]; ··· 13721 13722 sonokai = buildVimPlugin { 13723 pname = "sonokai"; 13724 + version = "2025-08-03"; 13725 src = fetchFromGitHub { 13726 owner = "sainnhe"; 13727 repo = "sonokai"; 13728 + rev = "27a71a6e058ba0a88b14b137a89020f6caeec93b"; 13729 + sha256 = "1rajgpaqhqjj6sbwawgig4p5lgnb1vjvphk146y63zhgc336xxvr"; 13730 }; 13731 meta.homepage = "https://github.com/sainnhe/sonokai/"; 13732 meta.hydraPlatforms = [ ]; ··· 13734 13735 sort-nvim = buildVimPlugin { 13736 pname = "sort.nvim"; 13737 + version = "2025-07-30"; 13738 src = fetchFromGitHub { 13739 owner = "sQVe"; 13740 repo = "sort.nvim"; 13741 + rev = "7d70ef9fdc6f47fbf58383cf7ae94edb93efec48"; 13742 + sha256 = "1mbkzgll6rnazy504fg6d1n5bzrbngkskwkncn2x4paaq2xyqqx7"; 13743 }; 13744 meta.homepage = "https://github.com/sQVe/sort.nvim/"; 13745 meta.hydraPlatforms = [ ]; ··· 14492 14493 telescope-coc-nvim = buildVimPlugin { 14494 pname = "telescope-coc.nvim"; 14495 + version = "2025-07-29"; 14496 src = fetchFromGitHub { 14497 owner = "fannheyward"; 14498 repo = "telescope-coc.nvim"; 14499 + rev = "42791345bc45c2b635a410dfa2e90acca26e6a02"; 14500 + sha256 = "0nx2lhb07cgy14br5i8x9xw7qashw69dq9plwjskq0jli76lhg5f"; 14501 }; 14502 meta.homepage = "https://github.com/fannheyward/telescope-coc.nvim/"; 14503 meta.hydraPlatforms = [ ]; ··· 15066 15067 tinted-nvim = buildVimPlugin { 15068 pname = "tinted-nvim"; 15069 + version = "2025-08-03"; 15070 src = fetchFromGitHub { 15071 owner = "tinted-theming"; 15072 repo = "tinted-nvim"; 15073 + rev = "b6df0b0c35d1ad4d0151f75ab66bbaf1c9a0fea2"; 15074 + sha256 = "0lz7cq4p545knpsjhvb3575aj70c5p65cgkh4jvhhprhs3rbk6hz"; 15075 }; 15076 meta.homepage = "https://github.com/tinted-theming/tinted-nvim/"; 15077 meta.hydraPlatforms = [ ]; ··· 15079 15080 tinted-vim = buildVimPlugin { 15081 pname = "tinted-vim"; 15082 + version = "2025-08-03"; 15083 src = fetchFromGitHub { 15084 owner = "tinted-theming"; 15085 repo = "tinted-vim"; 15086 + rev = "0083d42efb87b01114b8a317141a510b8fafe758"; 15087 + sha256 = "0nyf02y10vfm4pxp1ivvbgwnnw9bjpdl1gdf9khqja2yd3b0qqbb"; 15088 }; 15089 meta.homepage = "https://github.com/tinted-theming/tinted-vim/"; 15090 meta.hydraPlatforms = [ ]; ··· 15302 15303 treewalker-nvim = buildVimPlugin { 15304 pname = "treewalker.nvim"; 15305 + version = "2025-07-31"; 15306 src = fetchFromGitHub { 15307 owner = "aaronik"; 15308 repo = "treewalker.nvim"; 15309 + rev = "357f8e11bd4a6e0a7bb3a4e49bfe9e1ed91e55f8"; 15310 + sha256 = "0kzwv6dizakbfz3h75qnbz66isy4a8yaajdz50xp15ig1ps400c7"; 15311 }; 15312 meta.homepage = "https://github.com/aaronik/treewalker.nvim/"; 15313 meta.hydraPlatforms = [ ]; ··· 15394 15395 ts-autotag-nvim = buildVimPlugin { 15396 pname = "ts-autotag.nvim"; 15397 + version = "2025-08-02"; 15398 src = fetchFromGitHub { 15399 owner = "tronikelis"; 15400 repo = "ts-autotag.nvim"; 15401 + rev = "31a46c772962ce28965fd69c0ef7d9b2723e5b92"; 15402 + sha256 = "11f0vsbgsymg3k4m6bld0152ahk5a01jzn1d917ng6fgalyrpzz7"; 15403 }; 15404 meta.homepage = "https://github.com/tronikelis/ts-autotag.nvim/"; 15405 meta.hydraPlatforms = [ ]; ··· 15654 15655 unison = buildVimPlugin { 15656 pname = "unison"; 15657 + version = "2025-08-02"; 15658 src = fetchFromGitHub { 15659 owner = "unisonweb"; 15660 repo = "unison"; 15661 + rev = "51688379a094857988815e563f4b62dc43bf4652"; 15662 + sha256 = "0nmnz8qa3rlk8w0ca5qw2wq9dbbgrh7nz87nb36p08ajpva6bg07"; 15663 }; 15664 meta.homepage = "https://github.com/unisonweb/unison/"; 15665 meta.hydraPlatforms = [ ]; ··· 16278 16279 vim-apm = buildVimPlugin { 16280 pname = "vim-apm"; 16281 + version = "2025-08-04"; 16282 src = fetchFromGitHub { 16283 owner = "ThePrimeagen"; 16284 repo = "vim-apm"; 16285 + rev = "d35c27af75c6bc0ecd75e06ed5369161eb71ac3b"; 16286 + sha256 = "0gab9d0s1pwashnvbcgc8s113axyw3bm8vr8yk4mpw53hsfqznj7"; 16287 }; 16288 meta.homepage = "https://github.com/ThePrimeagen/vim-apm/"; 16289 meta.hydraPlatforms = [ ]; ··· 17279 17280 vim-elixir = buildVimPlugin { 17281 pname = "vim-elixir"; 17282 + version = "2025-08-02"; 17283 src = fetchFromGitHub { 17284 owner = "elixir-editors"; 17285 repo = "vim-elixir"; 17286 + rev = "6dff29176eb35e025bc94b262bf6d4e517e11f7d"; 17287 + sha256 = "0h5k43hiik3k11zhis0k6abgvislsamgvs9rlmqna5isfyk8h8m6"; 17288 }; 17289 meta.homepage = "https://github.com/elixir-editors/vim-elixir/"; 17290 meta.hydraPlatforms = [ ]; ··· 17942 17943 vim-habamax = buildVimPlugin { 17944 pname = "vim-habamax"; 17945 + version = "2025-07-27"; 17946 src = fetchFromGitHub { 17947 owner = "habamax"; 17948 repo = "vim-habamax"; 17949 + rev = "ad290c69f7b6929310956cfce3c8ae5307cb6161"; 17950 + sha256 = "1y6rlwxxs086l1rr3np9d3v60433vzvdyjkrvfgpihnxwmfllbmv"; 17951 }; 17952 meta.homepage = "https://github.com/habamax/vim-habamax/"; 17953 meta.hydraPlatforms = [ ]; ··· 18828 18829 vim-lsp-settings = buildVimPlugin { 18830 pname = "vim-lsp-settings"; 18831 + version = "2025-07-26"; 18832 src = fetchFromGitHub { 18833 owner = "mattn"; 18834 repo = "vim-lsp-settings"; 18835 + rev = "7634ca48bc3bf544b8434c7e36ea773c7640c8cb"; 18836 + sha256 = "0884z7889f66dh4207z8fgx00nlan0x74pw2ddds6qrcvzb4p94m"; 18837 }; 18838 meta.homepage = "https://github.com/mattn/vim-lsp-settings/"; 18839 meta.hydraPlatforms = [ ]; ··· 19088 19089 vim-moonfly-colors = buildVimPlugin { 19090 pname = "vim-moonfly-colors"; 19091 + version = "2025-08-03"; 19092 src = fetchFromGitHub { 19093 owner = "bluz71"; 19094 repo = "vim-moonfly-colors"; 19095 + rev = "21d24c3e2b31386f14fadd8c114c5d0673b878c2"; 19096 + sha256 = "1h1xhanpjk4aglyb78dz09w5kyhm08nx4h6z1akq6yixn3qccl1v"; 19097 }; 19098 meta.homepage = "https://github.com/bluz71/vim-moonfly-colors/"; 19099 meta.hydraPlatforms = [ ]; ··· 19322 19323 vim-ocaml = buildVimPlugin { 19324 pname = "vim-ocaml"; 19325 + version = "2025-07-25"; 19326 src = fetchFromGitHub { 19327 owner = "ocaml"; 19328 repo = "vim-ocaml"; 19329 + rev = "ee14abbe433dcf5b85863e19900dea60e090b87d"; 19330 + sha256 = "133w5fmcv2frxa3q7rx8h6vfgqzycp452ywrh5j165r512pdm863"; 19331 }; 19332 meta.homepage = "https://github.com/ocaml/vim-ocaml/"; 19333 meta.hydraPlatforms = [ ]; ··· 20232 20233 vim-signify = buildVimPlugin { 20234 pname = "vim-signify"; 20235 + version = "2025-07-28"; 20236 src = fetchFromGitHub { 20237 owner = "mhinz"; 20238 repo = "vim-signify"; 20239 + rev = "54346382be614ef5934cbbe204fd58ba3247a84d"; 20240 + sha256 = "0gqi64rw1zcrgs96gmbgg1xjwp25izam02m1qjd7g07p5x25hzc1"; 20241 }; 20242 meta.homepage = "https://github.com/mhinz/vim-signify/"; 20243 meta.hydraPlatforms = [ ]; ··· 20479 20480 vim-spirv = buildVimPlugin { 20481 pname = "vim-spirv"; 20482 + version = "2025-07-30"; 20483 src = fetchFromGitHub { 20484 owner = "kbenzie"; 20485 repo = "vim-spirv"; 20486 + rev = "8d7a5d707505df563ab3ae7f44ac440d8a7ed565"; 20487 + sha256 = "02sbk59vlraj86fw3svkwxfs509wp3cp0i071xl93x3d8kxppkjm"; 20488 }; 20489 meta.homepage = "https://github.com/kbenzie/vim-spirv/"; 20490 meta.hydraPlatforms = [ ]; ··· 21208 21209 vim-wakatime = buildVimPlugin { 21210 pname = "vim-wakatime"; 21211 + version = "2025-07-27"; 21212 src = fetchFromGitHub { 21213 owner = "wakatime"; 21214 repo = "vim-wakatime"; 21215 + rev = "3403495670f0ee08887401a28f8430dc4ac67429"; 21216 + sha256 = "09f6il3ydxli829klnk0whn0rrcnc7ps7dgfxmikyk1s4hq38k5x"; 21217 }; 21218 meta.homepage = "https://github.com/wakatime/vim-wakatime/"; 21219 meta.hydraPlatforms = [ ]; ··· 21573 21574 vimtex = buildVimPlugin { 21575 pname = "vimtex"; 21576 + version = "2025-08-03"; 21577 src = fetchFromGitHub { 21578 owner = "lervag"; 21579 repo = "vimtex"; 21580 + rev = "2526ed113a43c1f18346a17e752f9d94265a3445"; 21581 + sha256 = "0iwbp02y93cmwinqp38yvahbsiqhpldi78p55jz1635bqc9d803z"; 21582 }; 21583 meta.homepage = "https://github.com/lervag/vimtex/"; 21584 meta.hydraPlatforms = [ ]; ··· 21898 21899 windsurf-vim = buildVimPlugin { 21900 pname = "windsurf.vim"; 21901 + version = "2025-07-30"; 21902 src = fetchFromGitHub { 21903 owner = "Exafunction"; 21904 repo = "windsurf.vim"; 21905 + rev = "a8d47ec54fe82df920b2545559f767003e8a7f8d"; 21906 + sha256 = "1bpdhbb3hbyf3pkh5mlm29lsshlf1ydwbnj41661ar3ykxqb9s0z"; 21907 }; 21908 meta.homepage = "https://github.com/Exafunction/windsurf.vim/"; 21909 meta.hydraPlatforms = [ ]; ··· 21989 21990 wtf-nvim = buildVimPlugin { 21991 pname = "wtf.nvim"; 21992 + version = "2025-08-03"; 21993 src = fetchFromGitHub { 21994 owner = "piersolenski"; 21995 repo = "wtf.nvim"; 21996 + rev = "77008b7279a804a06b44da4999f8c988f9a12ae7"; 21997 + sha256 = "0yl2q48f21fpcnvx9xqmkr38mpwq0gpqfp80ail05551a88d2w3i"; 21998 }; 21999 meta.homepage = "https://github.com/piersolenski/wtf.nvim/"; 22000 meta.hydraPlatforms = [ ]; ··· 22080 22081 yats-vim = buildVimPlugin { 22082 pname = "yats.vim"; 22083 + version = "2025-08-03"; 22084 src = fetchFromGitHub { 22085 owner = "HerringtonDarkholme"; 22086 repo = "yats.vim"; 22087 + rev = "6005fa473bde80c0b878ad1a7591707717762644"; 22088 + sha256 = "0g0yz9m1s1h986pipl2rz5vfmihz47sqdcrhz538mnkgggjnr9ig"; 22089 fetchSubmodules = true; 22090 }; 22091 meta.homepage = "https://github.com/HerringtonDarkholme/yats.vim/"; ··· 22094 22095 yazi-nvim = buildVimPlugin { 22096 pname = "yazi.nvim"; 22097 + version = "2025-08-04"; 22098 src = fetchFromGitHub { 22099 owner = "mikavilpas"; 22100 repo = "yazi.nvim"; 22101 + rev = "f62926b176aa290d99d3af9130b251707e7b0f8c"; 22102 + sha256 = "14sqn3ka07sdw4biwniv2jbgy79s1id4axymx5cprsim3yyiqsa0"; 22103 }; 22104 meta.homepage = "https://github.com/mikavilpas/yazi.nvim/"; 22105 meta.hydraPlatforms = [ ];
+3 -3
pkgs/applications/editors/vim/plugins/non-generated/sonarlint-nvim/default.nix
··· 6 }: 7 vimUtils.buildVimPlugin { 8 pname = "sonarlint.nvim"; 9 - version = "0-unstable-2025-05-30"; 10 11 src = fetchFromGitLab { 12 owner = "schrieveslaach"; 13 repo = "sonarlint.nvim"; 14 - rev = "060df51352f9fb876d4ff43b8cd4b669a6bdfd89"; 15 - hash = "sha256-2MAi0nZIvAly+5p5fWKMi3tGSzMJgMnAzWnsr0rt+NM="; 16 }; 17 18 passthru.updateScript = nix-update-script {
··· 6 }: 7 vimUtils.buildVimPlugin { 8 pname = "sonarlint.nvim"; 9 + version = "0-unstable-2025-08-02"; 10 11 src = fetchFromGitLab { 12 owner = "schrieveslaach"; 13 repo = "sonarlint.nvim"; 14 + rev = "5c3e0bb647be90cec844022991f33d50b6838964"; 15 + hash = "sha256-lER6vBhiLK8/S2iJOc4jaDUMqkc9d2VLcj3GqbiZANs="; 16 }; 17 18 passthru.updateScript = nix-update-script {
+42 -42
pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix
··· 21 { 22 ada = buildGrammar { 23 language = "ada"; 24 - version = "0.0.0+rev=e8e2515"; 25 src = fetchFromGitHub { 26 owner = "briot"; 27 repo = "tree-sitter-ada"; 28 - rev = "e8e2515465cc2d7c444498e68bdb9f1d86767f95"; 29 - hash = "sha256-qfuVoh3R418F1FMN6CTXNnCaAk5gQj5lI/NoaJgnkW8="; 30 }; 31 meta.homepage = "https://github.com/briot/tree-sitter-ada"; 32 }; ··· 817 }; 818 fortran = buildGrammar { 819 language = "fortran"; 820 - version = "0.0.0+rev=7021f9f"; 821 src = fetchFromGitHub { 822 owner = "stadelmanma"; 823 repo = "tree-sitter-fortran"; 824 - rev = "7021f9f0f44bbcb7c646b594b6ef8db3ed787f8e"; 825 - hash = "sha256-r2w64an5ND7miSivulXqQbloLroemQFPW+MDCit69OY="; 826 }; 827 meta.homepage = "https://github.com/stadelmanma/tree-sitter-fortran"; 828 }; ··· 1380 }; 1381 idl = buildGrammar { 1382 language = "idl"; 1383 - version = "0.0.0+rev=fb1bd48"; 1384 src = fetchFromGitHub { 1385 owner = "cathaysia"; 1386 repo = "tree-sitter-idl"; 1387 - rev = "fb1bd480b84a5b75a0c7a44a8fed45c4fe2d9247"; 1388 - hash = "sha256-XIPIz4awyRwjldb9K6hb08SNN4f+1GPaKT3I/kWuMSA="; 1389 }; 1390 meta.homepage = "https://github.com/cathaysia/tree-sitter-idl"; 1391 }; ··· 1457 }; 1458 javadoc = buildGrammar { 1459 language = "javadoc"; 1460 - version = "0.0.0+rev=de50fbe"; 1461 src = fetchFromGitHub { 1462 owner = "rmuir"; 1463 repo = "tree-sitter-javadoc"; 1464 - rev = "de50fbed2cc4c83e5fa2ec2d4231496e06d55e32"; 1465 - hash = "sha256-NFbeqiK1fii/cR5ySOz6bIHCPFL2oJ+yUFGZVdfCiAg="; 1466 }; 1467 meta.homepage = "https://github.com/rmuir/tree-sitter-javadoc"; 1468 }; ··· 1746 }; 1747 lua = buildGrammar { 1748 language = "lua"; 1749 - version = "0.0.0+rev=e5e4069"; 1750 src = fetchFromGitHub { 1751 owner = "tree-sitter-grammars"; 1752 repo = "tree-sitter-lua"; 1753 - rev = "e5e406935ff3e36529545955e2972646ed97f9e2"; 1754 - hash = "sha256-anUyN+H9y1VrWGKr6yG4OFY9PGGH3Fsgn5AJZTxYkbQ="; 1755 }; 1756 meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-lua"; 1757 }; ··· 1836 }; 1837 matlab = buildGrammar { 1838 language = "matlab"; 1839 - version = "0.0.0+rev=dfed7b4"; 1840 src = fetchFromGitHub { 1841 owner = "acristoffers"; 1842 repo = "tree-sitter-matlab"; 1843 - rev = "dfed7b4bc548f2c036837c3e7e09cae7d1835289"; 1844 - hash = "sha256-gKpfNxJXv7KKXbk++Vf9nETwOvmD9Vqd5YAPbh1Wuas="; 1845 }; 1846 meta.homepage = "https://github.com/acristoffers/tree-sitter-matlab"; 1847 }; ··· 1936 }; 1937 nim = buildGrammar { 1938 language = "nim"; 1939 - version = "0.0.0+rev=9ed4696"; 1940 src = fetchFromGitHub { 1941 owner = "alaviss"; 1942 repo = "tree-sitter-nim"; 1943 - rev = "9ed4696d7f76e4937e2b63512a249a3ead7a0399"; 1944 - hash = "sha256-kQit97vmuyNpguVIscNthi0ekBfkao1SwwCJRip4Mac="; 1945 }; 1946 meta.homepage = "https://github.com/alaviss/tree-sitter-nim"; 1947 }; ··· 2716 }; 2717 slang = buildGrammar { 2718 language = "slang"; 2719 - version = "0.0.0+rev=a4454e3"; 2720 src = fetchFromGitHub { 2721 owner = "tree-sitter-grammars"; 2722 repo = "tree-sitter-slang"; 2723 - rev = "a4454e3004a9e8fea2df7fd2535fbaa05500da21"; 2724 - hash = "sha256-z1cIxsunZ7ZhzaQVuYtsXbgdrNjDcYtGi/jOQ+FhlYM="; 2725 }; 2726 meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-slang"; 2727 }; ··· 2782 }; 2783 solidity = buildGrammar { 2784 language = "solidity"; 2785 - version = "0.0.0+rev=d38dcd0"; 2786 src = fetchFromGitHub { 2787 owner = "JoranHonig"; 2788 repo = "tree-sitter-solidity"; 2789 - rev = "d38dcd0b58b223c43e3f9265914fb3167dc624c6"; 2790 - hash = "sha256-NdulFV/uu6qqZGeUrnNe11aG7Q9Qmr0RU5aUbeu3pL8="; 2791 }; 2792 meta.homepage = "https://github.com/JoranHonig/tree-sitter-solidity"; 2793 }; ··· 2916 }; 2917 superhtml = buildGrammar { 2918 language = "superhtml"; 2919 - version = "0.0.0+rev=a67317f"; 2920 src = fetchFromGitHub { 2921 owner = "kristoff-it"; 2922 repo = "superhtml"; 2923 - rev = "a67317fb81afe76cc04e6d92124cfc20a903cee7"; 2924 - hash = "sha256-Timo86R0nIktTThut1AlNzawnb5r3rddxY1VObdVSVE="; 2925 }; 2926 location = "tree-sitter-superhtml"; 2927 meta.homepage = "https://github.com/kristoff-it/superhtml"; ··· 2995 }; 2996 systemverilog = buildGrammar { 2997 language = "systemverilog"; 2998 - version = "0.0.0+rev=140a6d9"; 2999 src = fetchFromGitHub { 3000 owner = "gmlarumbe"; 3001 repo = "tree-sitter-systemverilog"; 3002 - rev = "140a6d96aa753f550d01c0d6c95dbf7c0cfae3fb"; 3003 - hash = "sha256-YR5drmlt7+6D9jc6k0xIC04Y8ap3X51+AA6RIEfYIZw="; 3004 }; 3005 meta.homepage = "https://github.com/gmlarumbe/tree-sitter-systemverilog"; 3006 }; ··· 3062 }; 3063 templ = buildGrammar { 3064 language = "templ"; 3065 - version = "0.0.0+rev=a35a02c"; 3066 src = fetchFromGitHub { 3067 owner = "vrischmann"; 3068 repo = "tree-sitter-templ"; 3069 - rev = "a35a02cb608291ac8c12082dcbd2b5f34a7ad45f"; 3070 - hash = "sha256-UuyBBcoOLr+OKp5hxyxK7HNrpUo+CQzz4K4HNvJVkO4="; 3071 }; 3072 meta.homepage = "https://github.com/vrischmann/tree-sitter-templ"; 3073 }; ··· 3542 }; 3543 zig = buildGrammar { 3544 language = "zig"; 3545 - version = "0.0.0+rev=b670c8d"; 3546 src = fetchFromGitHub { 3547 owner = "tree-sitter-grammars"; 3548 repo = "tree-sitter-zig"; 3549 - rev = "b670c8df85a1568f498aa5c8cae42f51a90473c0"; 3550 - hash = "sha256-lDMmnmeGr2ti9W692ZqySWObzSUa9vY7f+oHZiE8N+U="; 3551 }; 3552 meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-zig"; 3553 }; 3554 ziggy = buildGrammar { 3555 language = "ziggy"; 3556 - version = "0.0.0+rev=de70337"; 3557 src = fetchFromGitHub { 3558 owner = "kristoff-it"; 3559 repo = "ziggy"; 3560 - rev = "de703372b2da6fd2c25a8a3c424663ff6bece4ac"; 3561 - hash = "sha256-O4IV9V+Xn1DL/gZ7UoAKZTtlv/QToRsmJizQwQZZRqc="; 3562 }; 3563 location = "tree-sitter-ziggy"; 3564 meta.homepage = "https://github.com/kristoff-it/ziggy";
··· 21 { 22 ada = buildGrammar { 23 language = "ada"; 24 + version = "0.0.0+rev=0a4c27d"; 25 src = fetchFromGitHub { 26 owner = "briot"; 27 repo = "tree-sitter-ada"; 28 + rev = "0a4c27dc1308a9d2742de22e5fcfc0c137b3d3f3"; 29 + hash = "sha256-K5JJjDQwHuHZ6oQaLwJHYJxmFpR+4ENEeiZO2Q0gsk4="; 30 }; 31 meta.homepage = "https://github.com/briot/tree-sitter-ada"; 32 }; ··· 817 }; 818 fortran = buildGrammar { 819 language = "fortran"; 820 + version = "0.0.0+rev=8334abc"; 821 src = fetchFromGitHub { 822 owner = "stadelmanma"; 823 repo = "tree-sitter-fortran"; 824 + rev = "8334abca785db3a041292e3b3b818a82a55b238f"; 825 + hash = "sha256-MQ0Mq1kpP69oz8pAjLR/kKP491zSmKSseVktoOf5kkc="; 826 }; 827 meta.homepage = "https://github.com/stadelmanma/tree-sitter-fortran"; 828 }; ··· 1380 }; 1381 idl = buildGrammar { 1382 language = "idl"; 1383 + version = "0.0.0+rev=777b395"; 1384 src = fetchFromGitHub { 1385 owner = "cathaysia"; 1386 repo = "tree-sitter-idl"; 1387 + rev = "777b39538f9dc4ece1d891733bb4c91fc0627b16"; 1388 + hash = "sha256-L8nDDMdYsTnF+TRzgStJqChBL8lCzb51xe74P3+YKBs="; 1389 }; 1390 meta.homepage = "https://github.com/cathaysia/tree-sitter-idl"; 1391 }; ··· 1457 }; 1458 javadoc = buildGrammar { 1459 language = "javadoc"; 1460 + version = "0.0.0+rev=26ef3be"; 1461 src = fetchFromGitHub { 1462 owner = "rmuir"; 1463 repo = "tree-sitter-javadoc"; 1464 + rev = "26ef3becea1ff51f0025a8e0c38a6b3a39c09341"; 1465 + hash = "sha256-wM3lzsQLDIng8cuP/KnWumRL4ZwAt+CWafE7l7ldoJI="; 1466 }; 1467 meta.homepage = "https://github.com/rmuir/tree-sitter-javadoc"; 1468 }; ··· 1746 }; 1747 lua = buildGrammar { 1748 language = "lua"; 1749 + version = "0.0.0+rev=d760230"; 1750 src = fetchFromGitHub { 1751 owner = "tree-sitter-grammars"; 1752 repo = "tree-sitter-lua"; 1753 + rev = "d76023017f7485eae629cb60d406c7a1ca0f40c9"; 1754 + hash = "sha256-tf71uJ4RpEfUdhdaHhp1MTT96kzN4O1wJ7SzpUfT3+Y="; 1755 }; 1756 meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-lua"; 1757 }; ··· 1836 }; 1837 matlab = buildGrammar { 1838 language = "matlab"; 1839 + version = "0.0.0+rev=2d30fdb"; 1840 src = fetchFromGitHub { 1841 owner = "acristoffers"; 1842 repo = "tree-sitter-matlab"; 1843 + rev = "2d30fdbb8fc7ec55d2fbf05172437ff0299878a5"; 1844 + hash = "sha256-M/m0QP6x4kpuBnuS3o9wbA7XBPForC7/i4TqR4WZTuk="; 1845 }; 1846 meta.homepage = "https://github.com/acristoffers/tree-sitter-matlab"; 1847 }; ··· 1936 }; 1937 nim = buildGrammar { 1938 language = "nim"; 1939 + version = "0.0.0+rev=4ad3527"; 1940 src = fetchFromGitHub { 1941 owner = "alaviss"; 1942 repo = "tree-sitter-nim"; 1943 + rev = "4ad352773688deb84a95eeaa9872acda5b466439"; 1944 + hash = "sha256-dinMmbD36o1QkcLk2mgycgHZ9sW5Mg6lfnxssynaj58="; 1945 }; 1946 meta.homepage = "https://github.com/alaviss/tree-sitter-nim"; 1947 }; ··· 2716 }; 2717 slang = buildGrammar { 2718 language = "slang"; 2719 + version = "0.0.0+rev=5b0adf6"; 2720 src = fetchFromGitHub { 2721 owner = "tree-sitter-grammars"; 2722 repo = "tree-sitter-slang"; 2723 + rev = "5b0adf65710c3a7c265f0451ed6b4789410cbe63"; 2724 + hash = "sha256-uFU8hdz6APzrc9JUib47cmBd5kSnbSh0CbSqSbEfkoc="; 2725 }; 2726 meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-slang"; 2727 }; ··· 2782 }; 2783 solidity = buildGrammar { 2784 language = "solidity"; 2785 + version = "0.0.0+rev=322a3dd"; 2786 src = fetchFromGitHub { 2787 owner = "JoranHonig"; 2788 repo = "tree-sitter-solidity"; 2789 + rev = "322a3ddffca3ed96e559003fd03fa9881d7b4e20"; 2790 + hash = "sha256-NEIrl4bPoKWxrL+dbysNnyqzj8Gey8bu8FNzav+mYBc="; 2791 }; 2792 meta.homepage = "https://github.com/JoranHonig/tree-sitter-solidity"; 2793 }; ··· 2916 }; 2917 superhtml = buildGrammar { 2918 language = "superhtml"; 2919 + version = "0.0.0+rev=c6111e7"; 2920 src = fetchFromGitHub { 2921 owner = "kristoff-it"; 2922 repo = "superhtml"; 2923 + rev = "c6111e7134c64b69a2934ccbba83460cb532d442"; 2924 + hash = "sha256-AgTrmwnuyrNEtvvF09MER/1dqg6zovG5qFrj1gAb7w0="; 2925 }; 2926 location = "tree-sitter-superhtml"; 2927 meta.homepage = "https://github.com/kristoff-it/superhtml"; ··· 2995 }; 2996 systemverilog = buildGrammar { 2997 language = "systemverilog"; 2998 + version = "0.0.0+rev=b2c95d3"; 2999 src = fetchFromGitHub { 3000 owner = "gmlarumbe"; 3001 repo = "tree-sitter-systemverilog"; 3002 + rev = "b2c95d30954fbd3cf9be6d96a3ad82e023c2fa12"; 3003 + hash = "sha256-yaoQugLVQ/JXzF75784nLsd4tfCiTDqkpwvjLATxj1M="; 3004 }; 3005 meta.homepage = "https://github.com/gmlarumbe/tree-sitter-systemverilog"; 3006 }; ··· 3062 }; 3063 templ = buildGrammar { 3064 language = "templ"; 3065 + version = "0.0.0+rev=47594c5"; 3066 src = fetchFromGitHub { 3067 owner = "vrischmann"; 3068 repo = "tree-sitter-templ"; 3069 + rev = "47594c5cbef941e6a3ccf4ddb934a68cf4c68075"; 3070 + hash = "sha256-Dy/6XxrAUrLwcYTYOhLAU6iZb8c5XgplB/AdZbq0S9c="; 3071 }; 3072 meta.homepage = "https://github.com/vrischmann/tree-sitter-templ"; 3073 }; ··· 3542 }; 3543 zig = buildGrammar { 3544 language = "zig"; 3545 + version = "0.0.0+rev=b71afff"; 3546 src = fetchFromGitHub { 3547 owner = "tree-sitter-grammars"; 3548 repo = "tree-sitter-zig"; 3549 + rev = "b71affffdb4222ff2d2dea6e164f76603b0be6bc"; 3550 + hash = "sha256-QAlYyeIwIH2p51Rt4cVpKkcT+JQvWlw1AII4122oQa8="; 3551 }; 3552 meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-zig"; 3553 }; 3554 ziggy = buildGrammar { 3555 language = "ziggy"; 3556 + version = "0.0.0+rev=e95c85c"; 3557 src = fetchFromGitHub { 3558 owner = "kristoff-it"; 3559 repo = "ziggy"; 3560 + rev = "e95c85cb58773c43e9d94c0b9422ae84697e68a1"; 3561 + hash = "sha256-6vqUPY/fpGuM1K4HfgpL/dRy7Na6fJ/t+Pe/12b1wqE="; 3562 }; 3563 location = "tree-sitter-ziggy"; 3564 meta.homepage = "https://github.com/kristoff-it/ziggy";
+7
pkgs/applications/editors/vim/plugins/overrides.nix
··· 393 ]; 394 }; 395 396 clang_complete = super.clang_complete.overrideAttrs { 397 # In addition to the arguments you pass to your compiler, you also need to 398 # specify the path of the C++ std header (if you are using C++).
··· 393 ]; 394 }; 395 396 + checkmate-nvim = super.checkmate-nvim.overrideAttrs { 397 + checkInputs = with self; [ 398 + # checkmate.snippets 399 + luasnip 400 + ]; 401 + }; 402 + 403 clang_complete = super.clang_complete.overrideAttrs { 404 # In addition to the arguments you pass to your compiler, you also need to 405 # specify the path of the C++ std header (if you are using C++).
+1 -1
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 347 https://github.com/earthly/earthly.vim/,HEAD, 348 https://github.com/GustavEikaas/easy-dotnet.nvim/,HEAD, 349 https://github.com/Shougo/echodoc.vim/,, 350 - https://github.com/ssstba/ecolog.nvim/,HEAD, 351 https://github.com/sainnhe/edge/,, 352 https://github.com/geldata/edgedb-vim/,, 353 https://github.com/folke/edgy.nvim/,HEAD,
··· 347 https://github.com/earthly/earthly.vim/,HEAD, 348 https://github.com/GustavEikaas/easy-dotnet.nvim/,HEAD, 349 https://github.com/Shougo/echodoc.vim/,, 350 + https://github.com/ph1losof/ecolog.nvim/,HEAD, 351 https://github.com/sainnhe/edge/,, 352 https://github.com/geldata/edgedb-vim/,, 353 https://github.com/folke/edgy.nvim/,HEAD,
+2 -2
pkgs/applications/editors/vscode/extensions/default.nix
··· 5215 mktplcRef = { 5216 name = "vscode-icons"; 5217 publisher = "vscode-icons-team"; 5218 - version = "12.13.0"; 5219 - hash = "sha256-HghVnyYLUcC54PNYgqFypZqiynqWzT6l/ihyClUvH0c="; 5220 }; 5221 meta = { 5222 description = "Bring real icons to your Visual Studio Code";
··· 5215 mktplcRef = { 5216 name = "vscode-icons"; 5217 publisher = "vscode-icons-team"; 5218 + version = "12.14.0"; 5219 + hash = "sha256-ZoyH5jWbLURTfRApgJT0/c/ZbgGzt/Yn4WmUVO9HPSk="; 5220 }; 5221 meta = { 5222 description = "Bring real icons to your Visual Studio Code";
+1 -1
pkgs/applications/editors/vscode/extensions/myriad-dreamin.tinymist/default.nix
··· 11 name = "tinymist"; 12 publisher = "myriad-dreamin"; 13 inherit (tinymist) version; 14 - hash = "sha256-v/85T/MIEVrbXDDgIa6cBXPjpMmxZFXDglUEZvyRZSc="; 15 }; 16 17 nativeBuildInputs = [
··· 11 name = "tinymist"; 12 publisher = "myriad-dreamin"; 13 inherit (tinymist) version; 14 + hash = "sha256-uHUnCg8hkJQI0QSZZ5Kbj/S7ktY9ANdQqHCvBB+p1EA="; 15 }; 16 17 nativeBuildInputs = [
+9 -9
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 153 "vendorHash": null 154 }, 155 "azurerm": { 156 - "hash": "sha256-2QWaPwqjgtzOoqGB91k2mKnMqhZ559rp4KJWQdkOjHE=", 157 "homepage": "https://registry.terraform.io/providers/hashicorp/azurerm", 158 "owner": "hashicorp", 159 "repo": "terraform-provider-azurerm", 160 - "rev": "v4.37.0", 161 "spdx": "MPL-2.0", 162 "vendorHash": null 163 }, ··· 372 "vendorHash": "sha256-quoFrJbB1vjz+MdV+jnr7FPACHuUe5Gx9POLubD2IaM=" 373 }, 374 "digitalocean": { 375 - "hash": "sha256-tR4qN0N+tJu1fmiFIwTTIQyOTsqrVi2DSWJjU6oVdwE=", 376 "homepage": "https://registry.terraform.io/providers/digitalocean/digitalocean", 377 "owner": "digitalocean", 378 "repo": "terraform-provider-digitalocean", 379 - "rev": "v2.61.0", 380 "spdx": "MPL-2.0", 381 "vendorHash": null 382 }, ··· 444 "vendorHash": "sha256-OzFNqWCAIvFQQ/4bi52doASkjo/zoxlS2ueiV1rww1M=" 445 }, 446 "exoscale": { 447 - "hash": "sha256-V/+7qjE1r49cbF1+N5E7/jWFTSvqjhO8jxjneTJjjmQ=", 448 "homepage": "https://registry.terraform.io/providers/exoscale/exoscale", 449 "owner": "exoscale", 450 "repo": "terraform-provider-exoscale", 451 - "rev": "v0.64.3", 452 "spdx": "MPL-2.0", 453 "vendorHash": null 454 }, ··· 516 "vendorHash": null 517 }, 518 "gitlab": { 519 - "hash": "sha256-1OzHzYnNlpHSVX3Q0JfjTTHJ1ux+YeRTe7ImtAsP8JU=", 520 "homepage": "https://registry.terraform.io/providers/gitlabhq/gitlab", 521 "owner": "gitlabhq", 522 "repo": "terraform-provider-gitlab", 523 - "rev": "v18.1.1", 524 "spdx": "MPL-2.0", 525 - "vendorHash": "sha256-G325isVj6JKs58i59V/A51vE8mzgxk/1EqSVvb6TiH4=" 526 }, 527 "google": { 528 "hash": "sha256-YwSl33ST8kvnVg5hr7PCSfEO0xRDRVvTEU3KEMfiIIg=",
··· 153 "vendorHash": null 154 }, 155 "azurerm": { 156 + "hash": "sha256-mYADF+vzpYt9RMxjNrZnEnBgpF4s0h2qBxize52DLw8=", 157 "homepage": "https://registry.terraform.io/providers/hashicorp/azurerm", 158 "owner": "hashicorp", 159 "repo": "terraform-provider-azurerm", 160 + "rev": "v4.38.1", 161 "spdx": "MPL-2.0", 162 "vendorHash": null 163 }, ··· 372 "vendorHash": "sha256-quoFrJbB1vjz+MdV+jnr7FPACHuUe5Gx9POLubD2IaM=" 373 }, 374 "digitalocean": { 375 + "hash": "sha256-Bdc28nkev+i91ze/oyPSPeVegw/+eEn2FleaosCvDE0=", 376 "homepage": "https://registry.terraform.io/providers/digitalocean/digitalocean", 377 "owner": "digitalocean", 378 "repo": "terraform-provider-digitalocean", 379 + "rev": "v2.62.0", 380 "spdx": "MPL-2.0", 381 "vendorHash": null 382 }, ··· 444 "vendorHash": "sha256-OzFNqWCAIvFQQ/4bi52doASkjo/zoxlS2ueiV1rww1M=" 445 }, 446 "exoscale": { 447 + "hash": "sha256-TA8mMMeelnkvGcvRy9+QLiRegQYf8xo6vRZ+kb+DY5A=", 448 "homepage": "https://registry.terraform.io/providers/exoscale/exoscale", 449 "owner": "exoscale", 450 "repo": "terraform-provider-exoscale", 451 + "rev": "v0.65.0", 452 "spdx": "MPL-2.0", 453 "vendorHash": null 454 }, ··· 516 "vendorHash": null 517 }, 518 "gitlab": { 519 + "hash": "sha256-0+zBgoLpdIn20QVygVfwZXn6CKmjBku5mOzjSJV7LYo=", 520 "homepage": "https://registry.terraform.io/providers/gitlabhq/gitlab", 521 "owner": "gitlabhq", 522 "repo": "terraform-provider-gitlab", 523 + "rev": "v18.2.0", 524 "spdx": "MPL-2.0", 525 + "vendorHash": "sha256-eE9AY/79xQSbRl5kA0rwS8Oz8I9jaxT/KlVd0v0GAa8=" 526 }, 527 "google": { 528 "hash": "sha256-YwSl33ST8kvnVg5hr7PCSfEO0xRDRVvTEU3KEMfiIIg=",
+3 -3
pkgs/by-name/ac/act/package.nix
··· 8 }: 9 10 let 11 - version = "0.2.79"; 12 in 13 buildGoModule { 14 pname = "act"; ··· 18 owner = "nektos"; 19 repo = "act"; 20 tag = "v${version}"; 21 - hash = "sha256-tIp9iG8SCppg+tX/KdvAON5fKAHAlU01GSJEgvm2JSg="; 22 }; 23 24 - vendorHash = "sha256-wMtRpFUOMia7ZbuKUUkkcr2Gi88fiZydqFSVSAdiKdo="; 25 26 doCheck = false; 27
··· 8 }: 9 10 let 11 + version = "0.2.80"; 12 in 13 buildGoModule { 14 pname = "act"; ··· 18 owner = "nektos"; 19 repo = "act"; 20 tag = "v${version}"; 21 + hash = "sha256-DGhZb83q1uC+5xvRTzWUXXKZjnaCP9y/CEu2EaL47I0="; 22 }; 23 24 + vendorHash = "sha256-v17TglIf+N3GfzHhutNX+nZeqVFheh/cXcCN1VgffT0="; 25 26 doCheck = false; 27
+2 -2
pkgs/by-name/au/audacity/package.nix
··· 61 62 stdenv.mkDerivation (finalAttrs: { 63 pname = "audacity"; 64 - version = "3.7.4"; 65 66 src = fetchFromGitHub { 67 owner = "audacity"; 68 repo = "audacity"; 69 rev = "Audacity-${finalAttrs.version}"; 70 - hash = "sha256-kESKpIke9Xi4A55i3mUu1JkDjp8voBJBixiAK8pUkKA="; 71 }; 72 73 patches = [
··· 61 62 stdenv.mkDerivation (finalAttrs: { 63 pname = "audacity"; 64 + version = "3.7.5"; 65 66 src = fetchFromGitHub { 67 owner = "audacity"; 68 repo = "audacity"; 69 rev = "Audacity-${finalAttrs.version}"; 70 + hash = "sha256-gTky+wORQ6n3EepOUA8Y2zc8AocqjGP42N42G6FXRS8="; 71 }; 72 73 patches = [
+3 -3
pkgs/by-name/ca/cargo-binstall/package.nix
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "cargo-binstall"; 13 - version = "1.14.2"; 14 15 src = fetchFromGitHub { 16 owner = "cargo-bins"; 17 repo = "cargo-binstall"; 18 rev = "v${version}"; 19 - hash = "sha256-elpTBFt9w6J4xLY+ykzhQnj+4MF5bVgzerxTTpevTxk="; 20 }; 21 22 - cargoHash = "sha256-9VERKo5GU1gK0rLNx+wq+mnKrwY1DVsmdH+aRSzIOew="; 23 24 nativeBuildInputs = [ 25 pkg-config
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "cargo-binstall"; 13 + version = "1.14.3"; 14 15 src = fetchFromGitHub { 16 owner = "cargo-bins"; 17 repo = "cargo-binstall"; 18 rev = "v${version}"; 19 + hash = "sha256-mfnrj+mqDvJ5VlpZ6/AETSjDCIF0LaqPQW1yXiuTlvY="; 20 }; 21 22 + cargoHash = "sha256-6RPDiTqn+yoyu3qn28bsBTHgcKnOjqT2ZXIm65AGwag="; 23 24 nativeBuildInputs = [ 25 pkg-config
+3 -3
pkgs/by-name/ch/chezmoi/package.nix
··· 8 let 9 argset = { 10 pname = "chezmoi"; 11 - version = "2.62.5"; 12 13 src = fetchFromGitHub { 14 owner = "twpayne"; 15 repo = "chezmoi"; 16 rev = "v${argset.version}"; 17 - hash = "sha256-MwLpQNtbYl7eBaQD8eQNAM3TXVWzk2B7xtaWXtPaEHA="; 18 }; 19 20 - vendorHash = "sha256-X93Ox69L6a1vBALdEVlHkdMrYmHcnVxXwfPsDVZiymY="; 21 22 nativeBuildInputs = [ 23 installShellFiles
··· 8 let 9 argset = { 10 pname = "chezmoi"; 11 + version = "2.63.1"; 12 13 src = fetchFromGitHub { 14 owner = "twpayne"; 15 repo = "chezmoi"; 16 rev = "v${argset.version}"; 17 + hash = "sha256-gf79aJhyN3qrCMg7IZqUxHCl6qj6GY5BOXjoJvpKql4="; 18 }; 19 20 + vendorHash = "sha256-2Pnj5QoCL8B5qF7YlQFJttj4nlOSobJKySnIvg+82Ew="; 21 22 nativeBuildInputs = [ 23 installShellFiles
+2 -2
pkgs/by-name/da/dapr-cli/package.nix
··· 7 8 buildGoModule rec { 9 pname = "dapr-cli"; 10 - version = "1.15.1"; 11 12 src = fetchFromGitHub { 13 owner = "dapr"; 14 repo = "cli"; 15 rev = "v${version}"; 16 - hash = "sha256-hMBXNJKerRjI2vWsqRlMHyxlgyfN6WNbwVbMpe59rM4="; 17 }; 18 19 vendorHash = "sha256-RH802JcEHzrVEf4t7O0croSc36LNM6MtFXFJtDffIvU=";
··· 7 8 buildGoModule rec { 9 pname = "dapr-cli"; 10 + version = "1.15.2"; 11 12 src = fetchFromGitHub { 13 owner = "dapr"; 14 repo = "cli"; 15 rev = "v${version}"; 16 + hash = "sha256-S7z6v4J+ZsSgsupU0AYcRgFmIG8szbMoW5tFIix9HBs="; 17 }; 18 19 vendorHash = "sha256-RH802JcEHzrVEf4t7O0croSc36LNM6MtFXFJtDffIvU=";
+45
pkgs/by-name/em/emmylua-check/package.nix
···
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + rustPlatform, 5 + versionCheckHook, 6 + nix-update-script, 7 + }: 8 + rustPlatform.buildRustPackage (finalAttrs: { 9 + pname = "emmylua_check"; 10 + version = "0.10.0"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "EmmyLuaLs"; 14 + repo = "emmylua-analyzer-rust"; 15 + tag = finalAttrs.version; 16 + hash = "sha256-Fvg3G0C/YECDEWZ4mDC5b8qocWvyDJ9KdLYNtwIu0+I="; 17 + }; 18 + 19 + buildAndTestSubdir = "crates/emmylua_check"; 20 + 21 + cargoHash = "sha256-MIGYx1qMxsCCq3QkFeOuKbM4w/sJ2K0T+SRIDJQjf/8="; 22 + 23 + nativeInstallCheckInputs = [ 24 + versionCheckHook 25 + ]; 26 + versionCheckProgram = "${placeholder "out"}/bin/emmylua_check"; 27 + versionCheckProgramArg = "--version"; 28 + doInstallCheck = true; 29 + 30 + passthru = { 31 + updateScript = nix-update-script { }; 32 + }; 33 + 34 + meta = { 35 + description = "Comprehensive Lua static analysis tool for code quality assurance"; 36 + homepage = "https://github.com/EmmyLuaLs/emmylua-analyzer-rust"; 37 + changelog = "https://github.com/EmmyLuaLs/emmylua-analyzer-rust/blob/${finalAttrs.src.tag}/CHANGELOG.md"; 38 + license = lib.licenses.mit; 39 + maintainers = with lib.maintainers; [ 40 + mrcjkb 41 + ]; 42 + platforms = lib.platforms.all; 43 + mainProgram = "emmylua_check"; 44 + }; 45 + })
+45
pkgs/by-name/em/emmylua-ls/package.nix
···
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + rustPlatform, 5 + versionCheckHook, 6 + nix-update-script, 7 + }: 8 + rustPlatform.buildRustPackage (finalAttrs: { 9 + pname = "emmylua_ls"; 10 + version = "0.10.0"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "EmmyLuaLs"; 14 + repo = "emmylua-analyzer-rust"; 15 + tag = finalAttrs.version; 16 + hash = "sha256-Fvg3G0C/YECDEWZ4mDC5b8qocWvyDJ9KdLYNtwIu0+I="; 17 + }; 18 + 19 + buildAndTestSubdir = "crates/emmylua_ls"; 20 + 21 + cargoHash = "sha256-MIGYx1qMxsCCq3QkFeOuKbM4w/sJ2K0T+SRIDJQjf/8="; 22 + 23 + nativeInstallCheckInputs = [ 24 + versionCheckHook 25 + ]; 26 + versionCheckProgram = "${placeholder "out"}/bin/emmylua_ls"; 27 + versionCheckProgramArg = "--version"; 28 + doInstallCheck = true; 29 + 30 + passthru = { 31 + updateScript = nix-update-script { }; 32 + }; 33 + 34 + meta = { 35 + description = "EmmyLua Language Server"; 36 + homepage = "https://github.com/EmmyLuaLs/emmylua-analyzer-rust"; 37 + changelog = "https://github.com/EmmyLuaLs/emmylua-analyzer-rust/blob/${finalAttrs.src.tag}/CHANGELOG.md"; 38 + license = lib.licenses.mit; 39 + maintainers = with lib.maintainers; [ 40 + mrcjkb 41 + ]; 42 + platforms = lib.platforms.all; 43 + mainProgram = "emmylua_ls"; 44 + }; 45 + })
+2 -2
pkgs/by-name/es/esphome/package.nix
··· 34 in 35 python.pkgs.buildPythonApplication rec { 36 pname = "esphome"; 37 - version = "2025.7.4"; 38 pyproject = true; 39 40 src = fetchFromGitHub { 41 owner = "esphome"; 42 repo = "esphome"; 43 tag = version; 44 - hash = "sha256-zN3QkyGqz6/v8k76857nYEpErR0SijH0RetNxQttifI="; 45 }; 46 47 build-system = with python.pkgs; [
··· 34 in 35 python.pkgs.buildPythonApplication rec { 36 pname = "esphome"; 37 + version = "2025.7.5"; 38 pyproject = true; 39 40 src = fetchFromGitHub { 41 owner = "esphome"; 42 repo = "esphome"; 43 tag = version; 44 + hash = "sha256-f6HBgjg6yiFCQk6hIvQMYw+5/KjIVvUJaK+c/xmIseM="; 45 }; 46 47 build-system = with python.pkgs; [
+3 -3
pkgs/by-name/fi/firebase-tools/package.nix
··· 10 11 buildNpmPackage rec { 12 pname = "firebase-tools"; 13 - version = "14.11.1"; 14 15 src = fetchFromGitHub { 16 owner = "firebase"; 17 repo = "firebase-tools"; 18 tag = "v${version}"; 19 - hash = "sha256-2igmTOGheCMlBo2fKbKOpc+IFhwLcYKJ7u5evKl0buY="; 20 }; 21 22 - npmDepsHash = "sha256-9ysvVXaJbV2axsZn/TEAdDBPwoM8baI5jnMO9dH6JqE="; 23 24 postPatch = '' 25 ln -s npm-shrinkwrap.json package-lock.json
··· 10 11 buildNpmPackage rec { 12 pname = "firebase-tools"; 13 + version = "14.11.2"; 14 15 src = fetchFromGitHub { 16 owner = "firebase"; 17 repo = "firebase-tools"; 18 tag = "v${version}"; 19 + hash = "sha256-7B1iGjWYfw8e5+JF0YDIZ/o5nR981gNdBM64BcdR3sk="; 20 }; 21 22 + npmDepsHash = "sha256-HzHTp+lFHTYftmWRxreVkzDKHl9fxw4Da/res5bN1yg="; 23 24 postPatch = '' 25 ln -s npm-shrinkwrap.json package-lock.json
+3 -3
pkgs/by-name/gl/gleam/package.nix
··· 15 16 rustPlatform.buildRustPackage (finalAttrs: { 17 pname = "gleam"; 18 - version = "1.11.1"; 19 20 src = fetchFromGitHub { 21 owner = "gleam-lang"; 22 repo = "gleam"; 23 tag = "v${finalAttrs.version}"; 24 - hash = "sha256-ZNDN9MRA9D+5xdVp3Lxt76bLzHRK7304O6WVPrlUq2U="; 25 }; 26 27 - cargoHash = "sha256-TJqylGjXdkunE5mHkpFnvv3SENBFwtQehV0q2k3hNMY="; 28 29 nativeBuildInputs = [ 30 pkg-config
··· 15 16 rustPlatform.buildRustPackage (finalAttrs: { 17 pname = "gleam"; 18 + version = "1.12.0"; 19 20 src = fetchFromGitHub { 21 owner = "gleam-lang"; 22 repo = "gleam"; 23 tag = "v${finalAttrs.version}"; 24 + hash = "sha256-Qjl+I09tnBbGc771SVJVb6fzAZ2tVOnBNhGfrIUh824="; 25 }; 26 27 + cargoHash = "sha256-Ya0glVECB3cb9kgguuH4nY0ClK5NPH1mKAX9INDLzx4="; 28 29 nativeBuildInputs = [ 30 pkg-config
+2 -2
pkgs/by-name/gq/gqlgen/package.nix
··· 6 }: 7 8 let 9 - version = "0.17.77"; 10 in 11 buildGoModule { 12 pname = "gqlgen"; ··· 16 owner = "99designs"; 17 repo = "gqlgen"; 18 tag = "v${version}"; 19 - hash = "sha256-3feo0wpRHDK3Vx9R6YoQuc2NU+4F+trkaNTvA3AV2NE="; 20 }; 21 22 vendorHash = "sha256-qDPJKGQmZz5Taj/gXakx3t/4bDaMrNR+HehV19HvdCI=";
··· 6 }: 7 8 let 9 + version = "0.17.78"; 10 in 11 buildGoModule { 12 pname = "gqlgen"; ··· 16 owner = "99designs"; 17 repo = "gqlgen"; 18 tag = "v${version}"; 19 + hash = "sha256-rFmcyEEliP8Kv75/UMB57IjKB8qTDrhvVDGMRlC1gc8="; 20 }; 21 22 vendorHash = "sha256-qDPJKGQmZz5Taj/gXakx3t/4bDaMrNR+HehV19HvdCI=";
+2 -2
pkgs/by-name/he/heptabase/package.nix
··· 5 }: 6 let 7 pname = "heptabase"; 8 - version = "1.66.0"; 9 src = fetchurl { 10 url = "https://github.com/heptameta/project-meta/releases/download/v${version}/Heptabase-${version}.AppImage"; 11 - hash = "sha256-8kkY+Tp8RuE+REcCT/gj8CA6CqTLk6eVeAEsOKv+axA="; 12 }; 13 14 appimageContents = appimageTools.extractType2 { inherit pname version src; };
··· 5 }: 6 let 7 pname = "heptabase"; 8 + version = "1.67.1"; 9 src = fetchurl { 10 url = "https://github.com/heptameta/project-meta/releases/download/v${version}/Heptabase-${version}.AppImage"; 11 + hash = "sha256-29+Bw1OvKq/MHML3TbLcUsa9Xd7SrCtTXjIXNhBbUVY="; 12 }; 13 14 appimageContents = appimageTools.extractType2 { inherit pname version src; };
+4 -4
pkgs/by-name/ho/hoppscotch/package.nix
··· 8 9 let 10 pname = "hoppscotch"; 11 - version = "25.6.1-0"; 12 13 src = 14 fetchurl 15 { 16 aarch64-darwin = { 17 url = "https://github.com/hoppscotch/releases/releases/download/v${version}/Hoppscotch_mac_aarch64.dmg"; 18 - hash = "sha256-pQAG8jRObTaYOBKgHRydq1ilO7O5nweZSoT70wdcUfA="; 19 }; 20 x86_64-darwin = { 21 url = "https://github.com/hoppscotch/releases/releases/download/v${version}/Hoppscotch_mac_x64.dmg"; 22 - hash = "sha256-pRaBphPcWfCgYE03kth4EeFI4mroSHg4r1mmwQDKhLg="; 23 }; 24 x86_64-linux = { 25 url = "https://github.com/hoppscotch/releases/releases/download/v${version}/Hoppscotch_linux_x64.AppImage"; 26 - hash = "sha256-dwjHUBZs9XQMmTfxUrbqgb/7lm+xPTeVO+VCX9wBFK8="; 27 }; 28 } 29 .${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
··· 8 9 let 10 pname = "hoppscotch"; 11 + version = "25.7.0-0"; 12 13 src = 14 fetchurl 15 { 16 aarch64-darwin = { 17 url = "https://github.com/hoppscotch/releases/releases/download/v${version}/Hoppscotch_mac_aarch64.dmg"; 18 + hash = "sha256-oM/Gpl7Z8tlgPsujQc0RUlN8anWoiQfg+bSxg+oK2AE="; 19 }; 20 x86_64-darwin = { 21 url = "https://github.com/hoppscotch/releases/releases/download/v${version}/Hoppscotch_mac_x64.dmg"; 22 + hash = "sha256-yFzMMpJpBlMcV1NMqG2L8XOSyC2cT4+WMZwdphYPFF4="; 23 }; 24 x86_64-linux = { 25 url = "https://github.com/hoppscotch/releases/releases/download/v${version}/Hoppscotch_linux_x64.AppImage"; 26 + hash = "sha256-req782QlPw2ZDo5eqNAWVPoTPvBODTnAhvLYewd0b2E="; 27 }; 28 } 29 .${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
+7 -4
pkgs/by-name/in/inflow/package.nix
··· 74 ''; 75 }; 76 77 - meta = with lib; { 78 description = "Variance-optimal paragraph formatter"; 79 homepage = "https://github.com/stephen-huan/inflow"; 80 - license = licenses.unlicense; 81 mainProgram = "inflow"; 82 - maintainers = with maintainers; [ fbrs ]; 83 - platforms = platforms.all; 84 }; 85 }
··· 74 ''; 75 }; 76 77 + meta = { 78 description = "Variance-optimal paragraph formatter"; 79 homepage = "https://github.com/stephen-huan/inflow"; 80 + license = lib.licenses.unlicense; 81 mainProgram = "inflow"; 82 + maintainers = with lib.maintainers; [ 83 + fbrs 84 + stephen-huan 85 + ]; 86 + platforms = lib.platforms.all; 87 }; 88 }
+3 -3
pkgs/by-name/ip/ipaexfont/package.nix
··· 21 runHook postInstall 22 ''; 23 24 - meta = with lib; { 25 description = "Japanese font package with Mincho and Gothic fonts"; 26 longDescription = '' 27 IPAex font is a Japanese font developed by the Information-technology ··· 31 This is the successor to the IPA fonts. 32 ''; 33 homepage = "https://moji.or.jp/ipafont/"; 34 - license = licenses.ipa; 35 - maintainers = with maintainers; [ ]; 36 }; 37 }
··· 21 runHook postInstall 22 ''; 23 24 + meta = { 25 description = "Japanese font package with Mincho and Gothic fonts"; 26 longDescription = '' 27 IPAex font is a Japanese font developed by the Information-technology ··· 31 This is the successor to the IPA fonts. 32 ''; 33 homepage = "https://moji.or.jp/ipafont/"; 34 + license = lib.licenses.ipa; 35 + maintainers = with lib.maintainers; [ stephen-huan ]; 36 }; 37 }
+9
pkgs/by-name/ki/kid3-cli/package.nix
···
··· 1 + { 2 + kid3, 3 + }: 4 + 5 + kid3.override { 6 + withCLI = true; 7 + withKDE = false; 8 + withQt = false; 9 + }
+9
pkgs/by-name/ki/kid3-kde/package.nix
···
··· 1 + { 2 + kid3, 3 + }: 4 + 5 + kid3.override { 6 + withCLI = true; 7 + withKDE = true; 8 + withQt = false; 9 + }
+9
pkgs/by-name/ki/kid3-qt/package.nix
···
··· 1 + { 2 + kid3, 3 + }: 4 + 5 + kid3.override { 6 + withCLI = true; 7 + withKDE = false; 8 + withQt = true; 9 + }
+3 -3
pkgs/by-name/ku/kube-linter/package.nix
··· 9 10 buildGoModule rec { 11 pname = "kube-linter"; 12 - version = "0.7.4"; 13 14 src = fetchFromGitHub { 15 owner = "stackrox"; 16 repo = "kube-linter"; 17 rev = "v${version}"; 18 - sha256 = "sha256-19roNwTRyP28YTIwkDDXlvsg7yY4vRLHUnBRREOe7iQ="; 19 }; 20 21 - vendorHash = "sha256-wCYEgQ+mm50ESQOs7IivTUhjTDiaGETogLOHcJtNfaM="; 22 23 excludedPackages = [ "tool-imports" ]; 24
··· 9 10 buildGoModule rec { 11 pname = "kube-linter"; 12 + version = "0.7.5"; 13 14 src = fetchFromGitHub { 15 owner = "stackrox"; 16 repo = "kube-linter"; 17 rev = "v${version}"; 18 + sha256 = "sha256-akuyMSgEtIV1+dxFlAgoVdhnKO4SyVP3pIABCjT52Kc="; 19 }; 20 21 + vendorHash = "sha256-TETt2USmpKolx3nXk9kXknxoXpa/nRj4XZWeDvWFRZQ="; 22 23 excludedPackages = [ "tool-imports" ]; 24
+6
pkgs/by-name/mu/musl/package.nix
··· 1 { 2 stdenv, 3 lib, 4 fetchurl, 5 linuxHeaders ? null, 6 useBSDCompatHeaders ? true, 7 }: 8 let 9 cdefs_h = fetchurl { 10 name = "sys-cdefs.h"; 11 url = "https://git.alpinelinux.org/aports/plain/main/libc-dev/sys-cdefs.h?id=7ca0ed62d4c0d713d9c7dd5b9a077fba78bce578";
··· 1 { 2 stdenv, 3 + stdenvNoLibc, 4 lib, 5 fetchurl, 6 linuxHeaders ? null, 7 useBSDCompatHeaders ? true, 8 }: 9 let 10 + stdenv' = if stdenv.hostPlatform != stdenv.buildPlatform then stdenvNoLibc else stdenv; 11 + in 12 + let 13 + stdenv = stdenv'; 14 + 15 cdefs_h = fetchurl { 16 name = "sys-cdefs.h"; 17 url = "https://git.alpinelinux.org/aports/plain/main/libc-dev/sys-cdefs.h?id=7ca0ed62d4c0d713d9c7dd5b9a077fba78bce578";
+3 -3
pkgs/by-name/ne/nelm/package.nix
··· 9 }: 10 buildGoModule (finalAttrs: { 11 pname = "nelm"; 12 - version = "1.8.0"; 13 14 src = fetchFromGitHub { 15 owner = "werf"; 16 repo = "nelm"; 17 tag = "v${finalAttrs.version}"; 18 - hash = "sha256-IZO+uMWa2dxvfRhxeVy6JRIzRC1CduZxUHPrA8lqxi8="; 19 }; 20 21 - vendorHash = "sha256-wrZe0YmsMOHD3NOOXRKM0ZLnnOvasFyPq26JIAqyXTQ="; 22 23 subPackages = [ "cmd/nelm" ]; 24
··· 9 }: 10 buildGoModule (finalAttrs: { 11 pname = "nelm"; 12 + version = "1.10.0"; 13 14 src = fetchFromGitHub { 15 owner = "werf"; 16 repo = "nelm"; 17 tag = "v${finalAttrs.version}"; 18 + hash = "sha256-FtYRfGHdU3eScFQYDS4vAqQ7fgcGIUYhn7N5/X0rhXA="; 19 }; 20 21 + vendorHash = "sha256-QxzI+MO3wJxioW7NQwEigNq6NDu81Pu2BUBlwRvqyqk="; 22 23 subPackages = [ "cmd/nelm" ]; 24
+3 -3
pkgs/by-name/of/offlineimap/package.nix
··· 87 88 passthru.tests.version = testers.testVersion { package = offlineimap; }; 89 90 - meta = with lib; { 91 description = "Synchronize emails between two repositories, so that you can read the same mailbox from multiple computers"; 92 homepage = "http://offlineimap.org"; 93 - license = licenses.gpl2Plus; 94 - maintainers = [ ]; 95 mainProgram = "offlineimap"; 96 }; 97 }
··· 87 88 passthru.tests.version = testers.testVersion { package = offlineimap; }; 89 90 + meta = { 91 description = "Synchronize emails between two repositories, so that you can read the same mailbox from multiple computers"; 92 homepage = "http://offlineimap.org"; 93 + license = lib.licenses.gpl2Plus; 94 + maintainers = with lib.maintainers; [ stephen-huan ]; 95 mainProgram = "offlineimap"; 96 }; 97 }
+1 -1
pkgs/by-name/ol/ollama/package.nix
··· 122 owner = "ollama"; 123 repo = "ollama"; 124 tag = "v${finalAttrs.version}"; 125 - hash = "sha256-fBoSt/chnxnlD6/HsWeMX9TR7Du7RCOmWcqCKamyK7A="; 126 fetchSubmodules = true; 127 }; 128
··· 122 owner = "ollama"; 123 repo = "ollama"; 124 tag = "v${finalAttrs.version}"; 125 + hash = "sha256-po7BxJAj9eOpOaXsLDmw6/1RyjXPtXza0YUv0pVojZ0="; 126 fetchSubmodules = true; 127 }; 128
+3 -3
pkgs/by-name/pa/parallel-disk-usage/package.nix
··· 5 }: 6 rustPlatform.buildRustPackage rec { 7 pname = "parallel-disk-usage"; 8 - version = "0.20.0"; 9 10 src = fetchFromGitHub { 11 owner = "KSXGitHub"; 12 repo = "parallel-disk-usage"; 13 rev = version; 14 - hash = "sha256-Xzc+1cPs84o58G7n8hEN9vtaz3bw3TrwodphK45Iq2g="; 15 }; 16 17 - cargoHash = "sha256-qSQpjYydpjVUP5AO2sPshP/HZzeVihwlJxyabml67js="; 18 19 meta = with lib; { 20 description = "Highly parallelized, blazing fast directory tree analyzer";
··· 5 }: 6 rustPlatform.buildRustPackage rec { 7 pname = "parallel-disk-usage"; 8 + version = "0.21.0"; 9 10 src = fetchFromGitHub { 11 owner = "KSXGitHub"; 12 repo = "parallel-disk-usage"; 13 rev = version; 14 + hash = "sha256-QPZT/SBiF6vDAhQzlxh+encoxbZ9Hi2kOZ2XalZkErg="; 15 }; 16 17 + cargoHash = "sha256-plC+VB6dp7W7dROdYwmhTMpPHEwRSgsArwY9jrYycBk="; 18 19 meta = with lib; { 20 description = "Highly parallelized, blazing fast directory tree analyzer";
+3 -3
pkgs/by-name/pa/paretosecurity/package.nix
··· 17 webkitgtk_4_1 18 ]; 19 pname = "paretosecurity"; 20 - version = "0.2.39"; 21 22 src = fetchFromGitHub { 23 owner = "ParetoSecurity"; 24 repo = "agent"; 25 rev = finalAttrs.version; 26 - hash = "sha256-goINqrt4ZEC5/WklC4D35wMTpjfJ0dZWfGU3vLWTLjM="; 27 }; 28 29 - vendorHash = "sha256-tYpTXCx0vp+JX7keu+m5ePrPlGVJZen38HSfQHS4f7s="; 30 proxyVendor = true; 31 32 # Skip building the Windows installer
··· 17 webkitgtk_4_1 18 ]; 19 pname = "paretosecurity"; 20 + version = "0.3.2"; 21 22 src = fetchFromGitHub { 23 owner = "ParetoSecurity"; 24 repo = "agent"; 25 rev = finalAttrs.version; 26 + hash = "sha256-TXKymCFr2lrbgmbCxI3vIKx61nbOaRmuUTwNn7k0Hm0="; 27 }; 28 29 + vendorHash = "sha256-DlCGCheJHa4HPM7kfX/UbOfLukAiaoP7QZnabkZVASM="; 30 proxyVendor = true; 31 32 # Skip building the Windows installer
+3 -3
pkgs/by-name/ph/phrase-cli/package.nix
··· 6 7 buildGoModule rec { 8 pname = "phrase-cli"; 9 - version = "2.44.0"; 10 11 src = fetchFromGitHub { 12 owner = "phrase"; 13 repo = "phrase-cli"; 14 rev = version; 15 - sha256 = "sha256-tMWjk+cqgVcmtFSXqWhvOTc6y/85hJ8ds8OVukLbtzQ="; 16 }; 17 18 - vendorHash = "sha256-Eb/rkXvih7CDEgxZ15BD62zE5/TRYWNTTZzQU+uxtXg="; 19 20 ldflags = [ "-X=github.com/phrase/phrase-cli/cmd.PHRASE_CLIENT_VERSION=${version}" ]; 21
··· 6 7 buildGoModule rec { 8 pname = "phrase-cli"; 9 + version = "2.45.0"; 10 11 src = fetchFromGitHub { 12 owner = "phrase"; 13 repo = "phrase-cli"; 14 rev = version; 15 + sha256 = "sha256-6oq9DW2h1vy2G3sjjzO8xgqSsH1wYVSXccMf1i+qmM8="; 16 }; 17 18 + vendorHash = "sha256-nrxkELO1gxU3douXLID5HbS+rMjz9dVQ9eMEn32XpNY="; 19 20 ldflags = [ "-X=github.com/phrase/phrase-cli/cmd.PHRASE_CLIENT_VERSION=${version}" ]; 21
+3 -3
pkgs/by-name/pi/pinniped/package.nix
··· 7 8 buildGoModule rec { 9 pname = "pinniped"; 10 - version = "0.39.0"; 11 12 src = fetchFromGitHub { 13 owner = "vmware-tanzu"; 14 repo = "pinniped"; 15 rev = "v${version}"; 16 - sha256 = "sha256-t0M+jBGDKq2TSLCRFdAo0H875yylFEc2n8rYYWLtWSc="; 17 }; 18 19 subPackages = "cmd/pinniped"; 20 21 - vendorHash = "sha256-ECaudBXkqTWMi3KmQ9j8tzjPaD0CRTQXzF5n5s6G2lo="; 22 23 ldflags = [ 24 "-s"
··· 7 8 buildGoModule rec { 9 pname = "pinniped"; 10 + version = "0.40.0"; 11 12 src = fetchFromGitHub { 13 owner = "vmware-tanzu"; 14 repo = "pinniped"; 15 rev = "v${version}"; 16 + sha256 = "sha256-VFBiy7EKJ0J407PAWDlBNXxLWpZ4w3ai4yk32kn18rI="; 17 }; 18 19 subPackages = "cmd/pinniped"; 20 21 + vendorHash = "sha256-OGZ9/pXudz9YmxeEkMP710+RwHOCig0yDqo+X/o9eJw="; 22 23 ldflags = [ 24 "-s"
+2 -2
pkgs/by-name/qu/questdb/package.nix
··· 8 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "questdb"; 11 - version = "8.3.3"; 12 13 src = fetchurl { 14 url = "https://github.com/questdb/questdb/releases/download/${finalAttrs.version}/questdb-${finalAttrs.version}-no-jre-bin.tar.gz"; 15 - hash = "sha256-C3lhEgg9erAYSV4qU+xqPM1YbqCIj7mqmVzu+6BY+pI="; 16 }; 17 18 nativeBuildInputs = [
··· 8 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "questdb"; 11 + version = "9.0.1"; 12 13 src = fetchurl { 14 url = "https://github.com/questdb/questdb/releases/download/${finalAttrs.version}/questdb-${finalAttrs.version}-no-jre-bin.tar.gz"; 15 + hash = "sha256-nnIQfK2H+jhEOXmvqBobkOu/RYcxrcXnLXtrTU5tsqc="; 16 }; 17 18 nativeBuildInputs = [
+3 -8
pkgs/by-name/ri/rio/package.nix
··· 6 rustPlatform, 7 nixosTests, 8 nix-update-script, 9 - 10 autoPatchelfHook, 11 cmake, 12 ncurses, 13 pkg-config, 14 - 15 gcc-unwrapped, 16 fontconfig, 17 libGL, 18 vulkan-loader, 19 libxkbcommon, 20 - 21 withX11 ? !stdenv.hostPlatform.isDarwin, 22 libX11, 23 libXcursor, 24 libXi, 25 libXrandr, 26 libxcb, 27 - 28 withWayland ? !stdenv.hostPlatform.isDarwin, 29 wayland, 30 - 31 testers, 32 rio, 33 }: ··· 53 in 54 rustPlatform.buildRustPackage (finalAttrs: { 55 pname = "rio"; 56 - version = "0.2.24"; 57 58 src = fetchFromGitHub { 59 owner = "raphamorim"; 60 repo = "rio"; 61 tag = "v${finalAttrs.version}"; 62 - hash = "sha256-djKDi4ysRWtoMabJkEZ3jQ8hAE9JISi/ivjSFZmAwLY="; 63 }; 64 65 - cargoHash = "sha256-cdMIbip5fjDHewh/HiYzb/3QVRXUH7OeRQO+zfuGw6Q="; 66 67 nativeBuildInputs = [ 68 ncurses
··· 6 rustPlatform, 7 nixosTests, 8 nix-update-script, 9 autoPatchelfHook, 10 cmake, 11 ncurses, 12 pkg-config, 13 gcc-unwrapped, 14 fontconfig, 15 libGL, 16 vulkan-loader, 17 libxkbcommon, 18 withX11 ? !stdenv.hostPlatform.isDarwin, 19 libX11, 20 libXcursor, 21 libXi, 22 libXrandr, 23 libxcb, 24 withWayland ? !stdenv.hostPlatform.isDarwin, 25 wayland, 26 testers, 27 rio, 28 }: ··· 48 in 49 rustPlatform.buildRustPackage (finalAttrs: { 50 pname = "rio"; 51 + version = "0.2.25"; 52 53 src = fetchFromGitHub { 54 owner = "raphamorim"; 55 repo = "rio"; 56 tag = "v${finalAttrs.version}"; 57 + hash = "sha256-HjM4cbOvy79hQEg8C/PK7D0jjiMRw5zP4jPFPctNX9o="; 58 }; 59 60 + cargoHash = "sha256-I0LSUzMH6tyn6/Y74FApEdo0/m+6fa8UK0hzVBxA7F8="; 61 62 nativeBuildInputs = [ 63 ncurses
+2 -2
pkgs/by-name/ru/ruffle/package.nix
··· 21 }: 22 rustPlatform.buildRustPackage (finalAttrs: { 23 pname = "ruffle"; 24 - version = "0-nightly-2025-07-27"; 25 26 src = fetchFromGitHub { 27 owner = "ruffle-rs"; 28 repo = "ruffle"; 29 tag = lib.strings.removePrefix "0-" finalAttrs.version; 30 - hash = "sha256-t15htXX+j2xEtOgGiqcCjG5F/17DnqnvEx0dxL3DRw4="; 31 }; 32 33 cargoHash = "sha256-xrlcn18ryK7PrR/KfBKN0ot+h06nj4cl2Gx4Dm1RyqU=";
··· 21 }: 22 rustPlatform.buildRustPackage (finalAttrs: { 23 pname = "ruffle"; 24 + version = "0-nightly-2025-08-05"; 25 26 src = fetchFromGitHub { 27 owner = "ruffle-rs"; 28 repo = "ruffle"; 29 tag = lib.strings.removePrefix "0-" finalAttrs.version; 30 + hash = "sha256-1v/PnGYchauwSpYxP6mXNkkcK1bLF/u6VAYTPXk5bVc="; 31 }; 32 33 cargoHash = "sha256-xrlcn18ryK7PrR/KfBKN0ot+h06nj4cl2Gx4Dm1RyqU=";
+3 -3
pkgs/by-name/sn/snapweb/package.nix
··· 8 9 buildNpmPackage rec { 10 pname = "snapweb"; 11 - version = "0.9.0"; 12 13 src = fetchFromGitHub { 14 owner = "badaix"; 15 repo = "snapweb"; 16 rev = "v${version}"; 17 - hash = "sha256-vil7HzP2KtdhFCxW12ah3EN3PxTE0ypctGPQbHT4M98="; 18 }; 19 20 - npmDepsHash = "sha256-/gsdiAbxI2Wr1dzT8jGxoNx1hts1dVcTRKTj+5gFy0Y="; 21 22 # For 'sharp' dependency, otherwise it will try to build it 23 nativeBuildInputs = [ pkg-config ];
··· 8 9 buildNpmPackage rec { 10 pname = "snapweb"; 11 + version = "0.9.1"; 12 13 src = fetchFromGitHub { 14 owner = "badaix"; 15 repo = "snapweb"; 16 rev = "v${version}"; 17 + hash = "sha256-vrPmN06dLEoz7vFrH8kOdudg9FQcd1BpMWKpU6kZrzE="; 18 }; 19 20 + npmDepsHash = "sha256-VDGoZ6XgVtr7xePXmfW4Vk6iTZv1HRx7bjsS+Qauz3U="; 21 22 # For 'sharp' dependency, otherwise it will try to build it 23 nativeBuildInputs = [ pkg-config ];
+7
pkgs/by-name/sn/snes9x-gtk/package.nix
···
··· 1 + { 2 + snes9x, 3 + }: 4 + 5 + snes9x.override { 6 + withGtk = true; 7 + }
+1 -1
pkgs/by-name/sn/snes9x/package.nix
··· 129 Version build with ${interface} interface. 130 ''; 131 license = lib.licenses.unfreeRedistributable // { 132 - url = "https://github.com/snes9xgit/snes9x/blob/${finalAttrs.src.rev}/LICENSE"; 133 }; 134 mainProgram = "snes9x"; 135 maintainers = with lib.maintainers; [
··· 129 Version build with ${interface} interface. 130 ''; 131 license = lib.licenses.unfreeRedistributable // { 132 + url = "https://github.com/snes9xgit/snes9x/blob/${finalAttrs.src.tag}/LICENSE"; 133 }; 134 mainProgram = "snes9x"; 135 maintainers = with lib.maintainers; [
+3 -3
pkgs/by-name/te/terragrunt/package.nix
··· 8 9 buildGoModule (finalAttrs: { 10 pname = "terragrunt"; 11 - version = "0.84.0"; 12 13 src = fetchFromGitHub { 14 owner = "gruntwork-io"; 15 repo = "terragrunt"; 16 tag = "v${finalAttrs.version}"; 17 - hash = "sha256-5GgMiWh9ZvVbZu/WMrggQMl7dq6A5p36sEDSkPWGCTM="; 18 }; 19 20 nativeBuildInputs = [ ··· 26 make generate-mocks 27 ''; 28 29 - vendorHash = "sha256-M16lInb1TcR0o5bnpZ+KMcl3gKN2lDI080XDSmd7uvc="; 30 31 doCheck = false; 32
··· 8 9 buildGoModule (finalAttrs: { 10 pname = "terragrunt"; 11 + version = "0.84.1"; 12 13 src = fetchFromGitHub { 14 owner = "gruntwork-io"; 15 repo = "terragrunt"; 16 tag = "v${finalAttrs.version}"; 17 + hash = "sha256-fdKw0hNUKhOz/L0/ozkZPP/6z+C4i3UIGM2lX3/szr4="; 18 }; 19 20 nativeBuildInputs = [ ··· 26 make generate-mocks 27 ''; 28 29 + vendorHash = "sha256-n0fPaeigwXvd0S5KvMG+ZerDqdaapUGK6mhY7WmEkIE="; 30 31 doCheck = false; 32
+1
pkgs/by-name/ti/tiddit/package.nix
··· 38 ropebwt2 39 ] 40 }" 41 ]; 42 43 meta = {
··· 38 ropebwt2 39 ] 40 }" 41 + "--set PYTHONPATH $PYTHONPATH" 42 ]; 43 44 meta = {
+4 -4
pkgs/by-name/ti/tigerbeetle/package.nix
··· 10 platform = 11 if stdenvNoCC.hostPlatform.isDarwin then "universal-macos" else stdenvNoCC.hostPlatform.system; 12 hash = builtins.getAttr platform { 13 - "universal-macos" = "sha256-BNcfAJMFE+4xUxRwQ6J3mmOsAHWGXZ+X6XygjirIA8o="; 14 - "x86_64-linux" = "sha256-pQNNSWQSbG06sdpoloNXFFOwRNHT/6gIlETiQnLGcko="; 15 - "aarch64-linux" = "sha256-BZlRtoBnsNePmmtu56te7rMG5mVjDugsog8+rWYHeZg="; 16 }; 17 in 18 stdenvNoCC.mkDerivation (finalAttrs: { 19 pname = "tigerbeetle"; 20 - version = "0.16.51"; 21 22 src = fetchzip { 23 url = "https://github.com/tigerbeetle/tigerbeetle/releases/download/${finalAttrs.version}/tigerbeetle-${platform}.zip";
··· 10 platform = 11 if stdenvNoCC.hostPlatform.isDarwin then "universal-macos" else stdenvNoCC.hostPlatform.system; 12 hash = builtins.getAttr platform { 13 + "universal-macos" = "sha256-wI83spYIWkennTcfqrd4JL1DZULFVkKaQmTf4JgZulg="; 14 + "x86_64-linux" = "sha256-qDMZQGO9vc07qNis9xYFBNpdkwRErEMHODNoDcubS5w="; 15 + "aarch64-linux" = "sha256-W0OoF+pBWptsRoJuQGAT2D0bn9CDjmpLgmY7Ip5WMCk="; 16 }; 17 in 18 stdenvNoCC.mkDerivation (finalAttrs: { 19 pname = "tigerbeetle"; 20 + version = "0.16.53"; 21 22 src = fetchzip { 23 url = "https://github.com/tigerbeetle/tigerbeetle/releases/download/${finalAttrs.version}/tigerbeetle-${platform}.zip";
+3 -3
pkgs/by-name/ti/tinymist/package.nix
··· 15 pname = "tinymist"; 16 # Please update the corresponding vscode extension when updating 17 # this derivation. 18 - version = "0.13.18"; 19 20 src = fetchFromGitHub { 21 owner = "Myriad-Dreamin"; 22 repo = "tinymist"; 23 tag = "v${finalAttrs.version}"; 24 - hash = "sha256-WMbXdNa5MoaWliIlonn4tL6Myyx2nSAjgyOb/wqR7PA="; 25 }; 26 27 - cargoHash = "sha256-fU4b99mvLc1SgN2DgHqW27Agocc9NH3wQBPVFkGU0HY="; 28 29 nativeBuildInputs = [ 30 installShellFiles
··· 15 pname = "tinymist"; 16 # Please update the corresponding vscode extension when updating 17 # this derivation. 18 + version = "0.13.20"; 19 20 src = fetchFromGitHub { 21 owner = "Myriad-Dreamin"; 22 repo = "tinymist"; 23 tag = "v${finalAttrs.version}"; 24 + hash = "sha256-XMOh7dYOyYPwzhf3+g2CeuZZ3nNr9ku3XO9V+WK0JHk="; 25 }; 26 27 + cargoHash = "sha256-FRiN2xEI1JOXW4dFgCqvQ4aG1oAfQTPDFG0blkM35NQ="; 28 29 nativeBuildInputs = [ 30 installShellFiles
+2 -2
pkgs/by-name/tt/ttyplot/package.nix
··· 8 9 stdenv.mkDerivation rec { 10 pname = "ttyplot"; 11 - version = "1.7.2"; 12 13 src = fetchFromGitHub { 14 owner = "tenox7"; 15 repo = "ttyplot"; 16 rev = version; 17 - hash = "sha256-zTbcl8hM/XYdkV8V/BCQ94fuFXWOMGdQZeowKRhvYNo="; 18 }; 19 20 nativeBuildInputs = [
··· 8 9 stdenv.mkDerivation rec { 10 pname = "ttyplot"; 11 + version = "1.7.3"; 12 13 src = fetchFromGitHub { 14 owner = "tenox7"; 15 repo = "ttyplot"; 16 rev = version; 17 + hash = "sha256-IWOdl9tMGaX1C92zh/p/BWkXJxuUZbSOnazHHiD7Gzg="; 18 }; 19 20 nativeBuildInputs = [
+3 -3
pkgs/by-name/ze/zeekstd/package.nix
··· 5 }: 6 rustPlatform.buildRustPackage (finalAttrs: { 7 pname = "zeekstd"; 8 - version = "0.4.0"; 9 10 src = fetchFromGitHub { 11 owner = "rorosen"; 12 repo = "zeekstd"; 13 tag = "v${finalAttrs.version}-cli"; 14 - hash = "sha256-ulbmqkayIyzt4Wcb5Qfm2jamuTFkqxt6jAvLedLn0k8="; 15 }; 16 17 - cargoHash = "sha256-d4h2oAd+Posk8TzwNZVB6cSDN/wCIjPTanV9+8tf2iY="; 18 19 meta = { 20 description = "CLI tool that works with the zstd seekable format";
··· 5 }: 6 rustPlatform.buildRustPackage (finalAttrs: { 7 pname = "zeekstd"; 8 + version = "0.4.1"; 9 10 src = fetchFromGitHub { 11 owner = "rorosen"; 12 repo = "zeekstd"; 13 tag = "v${finalAttrs.version}-cli"; 14 + hash = "sha256-vvFBMDzypiAaLT5R6RTXJQZQhNCuiG3PxMEPmmPd7/I="; 15 }; 16 17 + cargoHash = "sha256-z1y12v71jxo8z3sZOAkSNvgBvexUGu0Z43HHxLCHSjg="; 18 19 meta = { 20 description = "CLI tool that works with the zstd seekable format";
+13 -3
pkgs/development/beam-modules/build-mix.nix
··· 25 meta ? { }, 26 enableDebugInfo ? false, 27 mixEnv ? "prod", 28 # A config directory that is considered for all the dependencies of an app, typically in $src/config/ 29 # This was initially added, as some of Mobilizon's dependencies need to access the config at build time. 30 appConfigPath ? null, 31 ... 32 }@attrs: 33 34 let 35 shell = ··· 79 runHook preConfigure 80 81 ${./mix-configure-hook.sh} 82 ${lib.optionalString (!isNull appConfigPath) 83 - # Due to https://hexdocs.pm/elixir/main/Config.html the config directory 84 - # of a library seems to be not considered, as config is always 85 - # application specific. So we can safely delete it. 86 '' 87 rm -rf config 88 cp -r ${appConfigPath} config
··· 25 meta ? { }, 26 enableDebugInfo ? false, 27 mixEnv ? "prod", 28 + removeConfig ? true, 29 # A config directory that is considered for all the dependencies of an app, typically in $src/config/ 30 # This was initially added, as some of Mobilizon's dependencies need to access the config at build time. 31 appConfigPath ? null, 32 ... 33 }@attrs: 34 + 35 + assert appConfigPath != null -> removeConfig; 36 37 let 38 shell = ··· 82 runHook preConfigure 83 84 ${./mix-configure-hook.sh} 85 + ${lib.optionalString (removeConfig && isNull appConfigPath) 86 + # By default, we don't want to include whatever config a dependency brings; per 87 + # https://hexdocs.pm/elixir/main/Config.html, config is application specific. 88 + '' 89 + rm -rf config 90 + mkdir config 91 + '' 92 + } 93 ${lib.optionalString (!isNull appConfigPath) 94 + # Some more tightly-coupled dependencies do depend on the config of the application 95 + # they're being built for. 96 '' 97 rm -rf config 98 cp -r ${appConfigPath} config
+2 -3
pkgs/development/libraries/wasilibc/default.nix pkgs/by-name/wa/wasilibc/package.nix
··· 1 { 2 - stdenv, 3 buildPackages, 4 - fetchFromGitHub, 5 lib, 6 firefox-unwrapped, 7 firefox-esr-unwrapped, ··· 11 pname = "wasilibc"; 12 version = "22-unstable-2024-10-16"; 13 in 14 - stdenv.mkDerivation { 15 inherit pname version; 16 17 src = buildPackages.fetchFromGitHub {
··· 1 { 2 + stdenvNoLibc, 3 buildPackages, 4 lib, 5 firefox-unwrapped, 6 firefox-esr-unwrapped, ··· 10 pname = "wasilibc"; 11 version = "22-unstable-2024-10-16"; 12 in 13 + stdenvNoLibc.mkDerivation { 14 inherit pname version; 15 16 src = buildPackages.fetchFromGitHub {
+27 -27
pkgs/development/lua-modules/generated-packages.nix
··· 814 }: 815 buildLuarocksPackage { 816 pname = "fzf-lua"; 817 - version = "0.0.2041-1"; 818 knownRockspec = 819 (fetchurl { 820 - url = "mirror://luarocks/fzf-lua-0.0.2041-1.rockspec"; 821 - sha256 = "1n6q17q3if71z3cws6b6am5zlggf7hq887s17421i5lznn9psp0j"; 822 }).outPath; 823 src = fetchzip { 824 - url = "https://github.com/ibhagwan/fzf-lua/archive/cdfac04b264cd924173e7f63a00b4883e2b98564.zip"; 825 - sha256 = "1z3zj1vlrgd04dhjv172m342z4b37ji5b4hzp44js07bsf8d398y"; 826 }; 827 828 disabled = luaOlder "5.1"; ··· 903 }: 904 buildLuarocksPackage { 905 pname = "grug-far.nvim"; 906 - version = "1.6.43-1"; 907 knownRockspec = 908 (fetchurl { 909 - url = "mirror://luarocks/grug-far.nvim-1.6.43-1.rockspec"; 910 - sha256 = "0q0g85pxdx81k99dd5j7w807v25b3lixff83shgd08dgvbsndh9q"; 911 }).outPath; 912 src = fetchzip { 913 - url = "https://github.com/MagicDuck/grug-far.nvim/archive/45981a9af7f4e666a3cdaedb1d21d2ab926727a2.zip"; 914 - sha256 = "1ghszc3v70bdwkiklkis9vwp3qkxapgiz16xpnrjlgns7k5lrzf7"; 915 }; 916 917 disabled = luaOlder "5.1"; ··· 2044 }: 2045 buildLuarocksPackage { 2046 pname = "lua-resty-session"; 2047 - version = "4.1.2-1"; 2048 knownRockspec = 2049 (fetchurl { 2050 - url = "mirror://luarocks/lua-resty-session-4.1.2-1.rockspec"; 2051 - sha256 = "14g4gm8cc4kyibhl03z2y8ggv4q7pkqidd66za53mfa4vg2ym7yv"; 2052 }).outPath; 2053 src = fetchFromGitHub { 2054 owner = "bungle"; 2055 repo = "lua-resty-session"; 2056 - rev = "v4.1.2"; 2057 - hash = "sha256-mVjC/7AD/oX1gD6jUUTeNWfX0Vy6ikvIYdIkbbWVBQ0="; 2058 }; 2059 2060 disabled = luaOlder "5.1"; ··· 3479 src = fetchFromGitHub { 3480 owner = "rktjmp"; 3481 repo = "lush.nvim"; 3482 - rev = "45a79ec4acb5af783a6a29673a999ce37f00497e"; 3483 - hash = "sha256-meUCXjJ9kHOOpRd4TR2dc7Ai97zOQX35hYFEDZseiSk="; 3484 }; 3485 3486 disabled = luaOlder "5.1" || luaAtLeast "5.4"; ··· 4231 }: 4232 buildLuarocksPackage { 4233 pname = "papis.nvim"; 4234 - version = "0.7.0-1"; 4235 knownRockspec = 4236 (fetchurl { 4237 - url = "mirror://luarocks/papis.nvim-0.7.0-1.rockspec"; 4238 - sha256 = "1bza3blszq1kz224zx7k0mn636lnj5rcx5s7q6l3ng8rzddw4isa"; 4239 }).outPath; 4240 src = fetchzip { 4241 - url = "https://github.com/jghauser/papis.nvim/archive/16983a7aac24ea787d9b9ac5dce3c35d0077b990.zip"; 4242 - sha256 = "0virafyw0d46iwscbs1f1y7ks9jafhq214m17wqdz25srb7hmrxd"; 4243 }; 4244 4245 disabled = luaOlder "5.1"; ··· 4651 }: 4652 buildLuarocksPackage { 4653 pname = "rustaceanvim"; 4654 - version = "6.5.1-1"; 4655 knownRockspec = 4656 (fetchurl { 4657 - url = "mirror://luarocks/rustaceanvim-6.5.1-1.rockspec"; 4658 - sha256 = "0rgj1k67aclpvxf7s5izlb2gki473kkkwws2rql6rz999gdcrny3"; 4659 }).outPath; 4660 src = fetchzip { 4661 - url = "https://github.com/mrcjkb/rustaceanvim/archive/v6.5.1.zip"; 4662 - sha256 = "1q3p71jsc4ka4jp43pigcgknzpz2cgvcpvjczghz4xf5zcizfkgc"; 4663 }; 4664 4665 disabled = luaOlder "5.1";
··· 814 }: 815 buildLuarocksPackage { 816 pname = "fzf-lua"; 817 + version = "0.0.2063-1"; 818 knownRockspec = 819 (fetchurl { 820 + url = "mirror://luarocks/fzf-lua-0.0.2063-1.rockspec"; 821 + sha256 = "0lgiygz0l05wy7f3fpc0cbfpz56v77n065pynsdpfaq09f1cal5d"; 822 }).outPath; 823 src = fetchzip { 824 + url = "https://github.com/ibhagwan/fzf-lua/archive/5be1c24918761c6d3229a4024aa323ae95d933e0.zip"; 825 + sha256 = "06zrpcja0mqp3y1w2w79d4sf8dbcia6m2gaac2hqig60rh9za0gr"; 826 }; 827 828 disabled = luaOlder "5.1"; ··· 903 }: 904 buildLuarocksPackage { 905 pname = "grug-far.nvim"; 906 + version = "1.6.44-1"; 907 knownRockspec = 908 (fetchurl { 909 + url = "mirror://luarocks/grug-far.nvim-1.6.44-1.rockspec"; 910 + sha256 = "0dzw1plzj2p1fr41zmbmvvbiswkk0w38whpmlasam4qcrx2hlbcn"; 911 }).outPath; 912 src = fetchzip { 913 + url = "https://github.com/MagicDuck/grug-far.nvim/archive/482517700eef8579b289a20995f017a0775a6ec4.zip"; 914 + sha256 = "03y7sa60n5nqdm4ygnh817k5gzqpalz07nq1p3qdjcpf539d8b1l"; 915 }; 916 917 disabled = luaOlder "5.1"; ··· 2044 }: 2045 buildLuarocksPackage { 2046 pname = "lua-resty-session"; 2047 + version = "4.1.3-1"; 2048 knownRockspec = 2049 (fetchurl { 2050 + url = "mirror://luarocks/lua-resty-session-4.1.3-1.rockspec"; 2051 + sha256 = "11qiw5yg56n41jp8bipi6fd6gilfmb8rwjhrdkcg19i7xrk94x8g"; 2052 }).outPath; 2053 src = fetchFromGitHub { 2054 owner = "bungle"; 2055 repo = "lua-resty-session"; 2056 + rev = "v4.1.3"; 2057 + hash = "sha256-mnc+AOszKRQCwMETPhSrniyZX5Wb2NQq/EHDNoQiFxE="; 2058 }; 2059 2060 disabled = luaOlder "5.1"; ··· 3479 src = fetchFromGitHub { 3480 owner = "rktjmp"; 3481 repo = "lush.nvim"; 3482 + rev = "1be16d9002f8b2e8973a19ceac199ad394dea76a"; 3483 + hash = "sha256-qiN1gh3tNRwawc/H/zWC0FSH39zV66RTQcAjIPKinBw="; 3484 }; 3485 3486 disabled = luaOlder "5.1" || luaAtLeast "5.4"; ··· 4231 }: 4232 buildLuarocksPackage { 4233 pname = "papis.nvim"; 4234 + version = "0.8.0-1"; 4235 knownRockspec = 4236 (fetchurl { 4237 + url = "mirror://luarocks/papis.nvim-0.8.0-1.rockspec"; 4238 + sha256 = "07xjy47l94572s7dscvcpig2dl6miqcnxqcl630gkhg13ihd11n0"; 4239 }).outPath; 4240 src = fetchzip { 4241 + url = "https://github.com/jghauser/papis.nvim/archive/v0.8.0.zip"; 4242 + sha256 = "0blrqk6wx2rigqvypyy3xl0a4263n81xizslam5kwpn7b6mjci1h"; 4243 }; 4244 4245 disabled = luaOlder "5.1"; ··· 4651 }: 4652 buildLuarocksPackage { 4653 pname = "rustaceanvim"; 4654 + version = "6.6.0-1"; 4655 knownRockspec = 4656 (fetchurl { 4657 + url = "mirror://luarocks/rustaceanvim-6.6.0-1.rockspec"; 4658 + sha256 = "02nm7wddffhg53w4cpsf19a5gvgrhm617k3md406q0wyja7hqysn"; 4659 }).outPath; 4660 src = fetchzip { 4661 + url = "https://github.com/mrcjkb/rustaceanvim/archive/v6.6.0.zip"; 4662 + sha256 = "005xvdl21yya7v4cr0svnyq9mlf3p7v0lzidgggwhlslc7yw3bg1"; 4663 }; 4664 4665 disabled = luaOlder "5.1";
+2 -2
pkgs/development/misc/avr/libc/default.nix pkgs/by-name/av/avrlibc/package.nix
··· 1 { 2 lib, 3 - stdenv, 4 fetchurl, 5 automake, 6 autoconf, 7 }: 8 9 - stdenv.mkDerivation (finalAttrs: { 10 pname = "avr-libc"; 11 version = "2.2.1"; 12
··· 1 { 2 lib, 3 + stdenvNoLibc, 4 fetchurl, 5 automake, 6 autoconf, 7 }: 8 9 + stdenvNoLibc.mkDerivation (finalAttrs: { 10 pname = "avr-libc"; 11 version = "2.2.1"; 12
+5 -5
pkgs/development/misc/newlib/default.nix
··· 1 { 2 - stdenv, 3 fetchurl, 4 buildPackages, 5 lib, ··· 11 nanoizeNewlib ? false, 12 }: 13 14 - stdenv.mkDerivation (finalAttrs: { 15 pname = "newlib"; 16 version = "4.5.0.20241231"; 17 ··· 76 # "normal" view to the outside world: the binaries in $out will 77 # execute on `stdenv.hostPlatform`. We then fool newlib's build 78 # process into doing the right thing. 79 - "--host=${stdenv.targetPlatform.config}" 80 81 ] 82 ++ ( ··· 134 + ''[ "$(find $out -type f | wc -l)" -gt 0 ] || (echo '$out is empty' 1>&2 && exit 1)''; 135 136 passthru = { 137 - incdir = "/${stdenv.targetPlatform.config}/include"; 138 - libdir = "/${stdenv.targetPlatform.config}/lib"; 139 }; 140 141 meta = with lib; {
··· 1 { 2 + stdenvNoLibc, 3 fetchurl, 4 buildPackages, 5 lib, ··· 11 nanoizeNewlib ? false, 12 }: 13 14 + stdenvNoLibc.mkDerivation (finalAttrs: { 15 pname = "newlib"; 16 version = "4.5.0.20241231"; 17 ··· 76 # "normal" view to the outside world: the binaries in $out will 77 # execute on `stdenv.hostPlatform`. We then fool newlib's build 78 # process into doing the right thing. 79 + "--host=${stdenvNoLibc.targetPlatform.config}" 80 81 ] 82 ++ ( ··· 134 + ''[ "$(find $out -type f | wc -l)" -gt 0 ] || (echo '$out is empty' 1>&2 && exit 1)''; 135 136 passthru = { 137 + incdir = "/${stdenvNoLibc.targetPlatform.config}/include"; 138 + libdir = "/${stdenvNoLibc.targetPlatform.config}/lib"; 139 }; 140 141 meta = with lib; {
+2 -2
pkgs/development/python-modules/langgraph-checkpoint-sqlite/default.nix
··· 22 23 buildPythonPackage rec { 24 pname = "langgraph-checkpoint-sqlite"; 25 - version = "2.0.10"; 26 pyproject = true; 27 28 src = fetchFromGitHub { 29 owner = "langchain-ai"; 30 repo = "langgraph"; 31 tag = "checkpointsqlite==${version}"; 32 - hash = "sha256-570rXAxS4p2b7fc1aqSNArXHTz7G2GjZQDqMlqK7Jso="; 33 }; 34 35 sourceRoot = "${src.name}/libs/checkpoint-sqlite";
··· 22 23 buildPythonPackage rec { 24 pname = "langgraph-checkpoint-sqlite"; 25 + version = "2.0.11"; 26 pyproject = true; 27 28 src = fetchFromGitHub { 29 owner = "langchain-ai"; 30 repo = "langgraph"; 31 tag = "checkpointsqlite==${version}"; 32 + hash = "sha256-v/gRYkiS4AR1epWwPdG/QYbnUYte894kHTn5F58pVGI="; 33 }; 34 35 sourceRoot = "${src.name}/libs/checkpoint-sqlite";
+10
pkgs/development/python-modules/librosa/default.nix
··· 107 "test_axis_bound_warning" 108 "test_auto_aspect" 109 ] 110 ++ lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [ 111 # Flaky (numerical comparison fails) 112 "test_istft_multi"
··· 107 "test_axis_bound_warning" 108 "test_auto_aspect" 109 ] 110 + ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [ 111 + # AssertionError (numerical comparison fails) 112 + "test_beat_track_multi" 113 + "test_beat_track_multi_bpm_vector" 114 + "test_melspectrogram_multi" 115 + "test_melspectrogram_multi_time" 116 + "test_nnls_matrix" 117 + "test_nnls_multiblock" 118 + "test_onset_detect" 119 + ] 120 ++ lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [ 121 # Flaky (numerical comparison fails) 122 "test_istft_multi"
+2 -2
pkgs/development/python-modules/libuuu/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "libuuu"; 15 - version = "1.5.202"; 16 pyproject = true; 17 18 src = fetchPypi { 19 inherit pname version; 20 - hash = "sha256-bwAFApnfu0p1qHZWcSrJmXPZTkpw9HFhbG7BnASbeBI="; 21 }; 22 23 build-system = [
··· 12 13 buildPythonPackage rec { 14 pname = "libuuu"; 15 + version = "1.5.220"; 16 pyproject = true; 17 18 src = fetchPypi { 19 inherit pname version; 20 + hash = "sha256-dtp8Izu2A9Zr1+qkTNPS8cAiZwWf8weS71zzIQtd2mM="; 21 }; 22 23 build-system = [
+4 -2
pkgs/development/python-modules/lightning-utilities/default.nix
··· 7 setuptools, 8 9 # dependencies 10 looseversion, 11 packaging, 12 tomlkit, ··· 19 20 buildPythonPackage rec { 21 pname = "lightning-utilities"; 22 - version = "0.15.0"; 23 pyproject = true; 24 25 src = fetchFromGitHub { 26 owner = "Lightning-AI"; 27 repo = "utilities"; 28 tag = "v${version}"; 29 - hash = "sha256-4WCsaprtAvrKFbPCa1bZJzT0Fo5F9sMYT2A+bolEmwk="; 30 }; 31 32 postPatch = '' ··· 37 build-system = [ setuptools ]; 38 39 dependencies = [ 40 looseversion 41 packaging 42 tomlkit
··· 7 setuptools, 8 9 # dependencies 10 + jsonargparse, 11 looseversion, 12 packaging, 13 tomlkit, ··· 20 21 buildPythonPackage rec { 22 pname = "lightning-utilities"; 23 + version = "0.15.1"; 24 pyproject = true; 25 26 src = fetchFromGitHub { 27 owner = "Lightning-AI"; 28 repo = "utilities"; 29 tag = "v${version}"; 30 + hash = "sha256-GQVd81PHtAY9nr+YSVQli91AxbXSQFH0IALcZBMiu5o="; 31 }; 32 33 postPatch = '' ··· 38 build-system = [ setuptools ]; 39 40 dependencies = [ 41 + jsonargparse 42 looseversion 43 packaging 44 tomlkit
-54
pkgs/development/python-modules/mathlibtools/default.nix
··· 1 - { 2 - lib, 3 - atomicwrites, 4 - buildPythonPackage, 5 - click, 6 - fetchPypi, 7 - gitpython, 8 - networkx, 9 - pydot, 10 - pygithub, 11 - pythonOlder, 12 - pyyaml, 13 - toml, 14 - tqdm, 15 - }: 16 - 17 - buildPythonPackage rec { 18 - pname = "mathlibtools"; 19 - version = "1.3.2"; 20 - format = "setuptools"; 21 - 22 - disabled = pythonOlder "3.6"; 23 - 24 - src = fetchPypi { 25 - inherit pname version; 26 - hash = "sha256-mkn0y3NV/acnkqVzi8xd+Sex4QLvxxmt++FtsZmgrGs="; 27 - }; 28 - 29 - propagatedBuildInputs = [ 30 - atomicwrites 31 - click 32 - gitpython 33 - networkx 34 - pydot 35 - pygithub 36 - pyyaml 37 - toml 38 - tqdm 39 - ]; 40 - 41 - # Requires internet access 42 - doCheck = false; 43 - 44 - pythonImportsCheck = [ "mathlibtools" ]; 45 - 46 - meta = with lib; { 47 - description = "Supporting tool for Lean's mathlib"; 48 - mainProgram = "leanproject"; 49 - homepage = "https://github.com/leanprover-community/mathlib-tools"; 50 - changelog = "https://github.com/leanprover-community/mathlib-tools/raw/v${version}/CHANGELOG.md"; 51 - license = licenses.asl20; 52 - maintainers = with maintainers; [ ]; 53 - }; 54 - }
···
+4 -7
pkgs/development/python-modules/numpyro/default.nix
··· 16 17 # tests 18 dm-haiku, 19 flax, 20 funsor, 21 graphviz, ··· 29 30 buildPythonPackage rec { 31 pname = "numpyro"; 32 - version = "0.18.0"; 33 pyproject = true; 34 35 src = fetchFromGitHub { 36 owner = "pyro-ppl"; 37 repo = "numpyro"; 38 tag = version; 39 - hash = "sha256-0X/ta2yfzjf3JnZYdUAzQmXvbsDpwFCJe/bArMSWQgU="; 40 }; 41 42 build-system = [ setuptools ]; ··· 51 52 nativeCheckInputs = [ 53 dm-haiku 54 flax 55 funsor 56 graphviz ··· 92 93 # ValueError: compiling computation that requires 2 logical devices, but only 1 XLA devices are available (num_replicas=2) 94 "test_chain" 95 - 96 - # Failing since flax==0.11.0 97 - # KeyError: "No RngStream named 'dropout' found in Rngs." 98 - # https://github.com/pyro-ppl/numpyro/issues/2055 99 - "test_nnx_state_dropout_smoke" 100 ] 101 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 102 # AssertionError: Not equal to tolerance rtol=0.06, atol=0
··· 16 17 # tests 18 dm-haiku, 19 + equinox, 20 flax, 21 funsor, 22 graphviz, ··· 30 31 buildPythonPackage rec { 32 pname = "numpyro"; 33 + version = "0.19.0"; 34 pyproject = true; 35 36 src = fetchFromGitHub { 37 owner = "pyro-ppl"; 38 repo = "numpyro"; 39 tag = version; 40 + hash = "sha256-3kzaINsz1Mjk97ERQsQIYIBz7CVmXtVDn0edJFMHQWs="; 41 }; 42 43 build-system = [ setuptools ]; ··· 52 53 nativeCheckInputs = [ 54 dm-haiku 55 + equinox 56 flax 57 funsor 58 graphviz ··· 94 95 # ValueError: compiling computation that requires 2 logical devices, but only 1 XLA devices are available (num_replicas=2) 96 "test_chain" 97 ] 98 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 99 # AssertionError: Not equal to tolerance rtol=0.06, atol=0
+2 -2
pkgs/development/python-modules/pysigma-backend-loki/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "pysigma-backend-loki"; 12 - version = "0.12.3"; 13 pyproject = true; 14 15 src = fetchFromGitHub { 16 owner = "grafana"; 17 repo = "pySigma-backend-loki"; 18 tag = "v${version}"; 19 - hash = "sha256-tsAtD98vWU8mB+Y3ePp2S54dSDu5R7DIDYDin+JJgSg="; 20 }; 21 22 build-system = [ poetry-core ];
··· 9 10 buildPythonPackage rec { 11 pname = "pysigma-backend-loki"; 12 + version = "0.12.4"; 13 pyproject = true; 14 15 src = fetchFromGitHub { 16 owner = "grafana"; 17 repo = "pySigma-backend-loki"; 18 tag = "v${version}"; 19 + hash = "sha256-2VgrIJocFtMFZCTyPQZcSnNJ5XgfD+nbmJ1wvesrQoE="; 20 }; 21 22 build-system = [ poetry-core ];
+3 -3
pkgs/development/python-modules/sensai-utils/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "sensai-utils"; 13 - version = "1.4.0"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.11"; ··· 19 owner = "opcode81"; 20 repo = "sensAI-utils"; 21 tag = "v${version}"; 22 - hash = "sha256-XgZv76tLeTRCvNptasp8EiU2DC+HWkc1xhlCA+YiUZY="; 23 }; 24 25 build-system = [ setuptools ]; ··· 33 meta = with lib; { 34 description = "Utilities from sensAI, the Python library for sensible AI"; 35 homepage = "https://github.com/opcode81/sensAI-utils"; 36 - changelog = "https://github.com/opcode81/sensAI-utils/releases/tag/v${version}"; 37 license = licenses.mit; 38 maintainers = with maintainers; [ derdennisop ]; 39 };
··· 10 11 buildPythonPackage rec { 12 pname = "sensai-utils"; 13 + version = "1.5.0"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.11"; ··· 19 owner = "opcode81"; 20 repo = "sensAI-utils"; 21 tag = "v${version}"; 22 + hash = "sha256-bAbgamJjB+NpPnZHqYOrOhatGGgjzy558BrF3GwHOHE="; 23 }; 24 25 build-system = [ setuptools ]; ··· 33 meta = with lib; { 34 description = "Utilities from sensAI, the Python library for sensible AI"; 35 homepage = "https://github.com/opcode81/sensAI-utils"; 36 + changelog = "https://github.com/opcode81/sensAI-utils/releases/tag/${src.tag}"; 37 license = licenses.mit; 38 maintainers = with maintainers; [ derdennisop ]; 39 };
-24
pkgs/development/python-modules/shippai/default.nix
··· 1 - { 2 - lib, 3 - buildPythonPackage, 4 - fetchPypi, 5 - }: 6 - 7 - buildPythonPackage rec { 8 - pname = "shippai"; 9 - # Please make sure that vdirsyncer still builds if you update this package. 10 - version = "0.3.2"; 11 - format = "setuptools"; 12 - 13 - src = fetchPypi { 14 - inherit pname version; 15 - sha256 = "0r6iwvmay8ygn2m15pyjrk9am4mfpk7rkf0lcbcb15pnabixlyzj"; 16 - }; 17 - 18 - meta = with lib; { 19 - description = "Use Rust failures as Python exceptions"; 20 - homepage = "https://github.com/untitaker/shippai"; 21 - license = licenses.mit; 22 - maintainers = with maintainers; [ ]; 23 - }; 24 - }
···
+136
pkgs/development/python-modules/sipsimple/default.nix
···
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + fetchurl, 6 + fetchpatch, 7 + cython, 8 + setuptools, 9 + alsa-lib, 10 + ffmpeg, 11 + libopus, 12 + libuuid, 13 + libv4l, 14 + libvpx, 15 + opencore-amr, 16 + openssl, 17 + pkg-config, 18 + sqlite, 19 + x264, 20 + python3-application, 21 + }: 22 + 23 + let 24 + extDeps = { 25 + pjsip = rec { 26 + # Hardcoded in get_dependencies.sh, checked at buildtime 27 + # need tarball specifically for buildscript to detect it 28 + version = "2.10"; 29 + src = fetchurl { 30 + url = "https://github.com/pjsip/pjproject/archive/${version}.tar.gz"; 31 + hash = "sha256-k2pMW5hgG1IyVGOjl93xGrQQbGp7BPjcfN03fvu1l94="; 32 + }; 33 + }; 34 + zrtpcpp = rec { 35 + # Hardcoded in get_dependencies.sh, NOT checked at buildtime 36 + rev = "6b3cd8e6783642292bad0c21e3e5e5ce45ff3e03"; 37 + src = fetchFromGitHub { 38 + owner = "wernerd"; 39 + repo = "ZRTPCPP"; 40 + inherit rev; 41 + hash = "sha256-kJlGPVA+yfn7fuRjXU0p234VcZBAf1MU4gRKuPotfog="; 42 + }; 43 + }; 44 + }; 45 + in 46 + buildPythonPackage rec { 47 + pname = "python3-sipsimple"; 48 + version = "5.3.3.2"; 49 + pyproject = true; 50 + 51 + src = fetchFromGitHub { 52 + owner = "AGProjects"; 53 + repo = "python3-sipsimple"; 54 + tag = "${version}-mac"; 55 + hash = "sha256-kDXVzLmgfXxm8phKrV7DvPuZ9O2iNFo1s6Lc0jcc/dM="; 56 + }; 57 + 58 + patches = [ 59 + # Remove when version > 5.3.3.2-mac 60 + (fetchpatch { 61 + name = "0001-python3-sipsimple-port-to-cython-3.patch"; 62 + url = "https://github.com/AGProjects/python3-sipsimple/commit/ccbbbb0225b2417bdf6ae07da96bffe367e242be.patch"; 63 + hash = "sha256-MBiM9/yS5yX9QoZT7p76PI2rbBr22fZw6TAT4tw9iZk="; 64 + }) 65 + ]; 66 + 67 + postPatch = '' 68 + substituteInPlace get_dependencies.sh \ 69 + --replace-fail 'sudo apt' 'echo Skipping sudo apt' 70 + ''; 71 + 72 + strictDeps = true; 73 + 74 + nativeBuildInputs = [ 75 + pkg-config 76 + ]; 77 + 78 + build-system = [ 79 + cython 80 + setuptools 81 + ]; 82 + 83 + buildInputs = [ 84 + alsa-lib 85 + ffmpeg 86 + libopus 87 + libuuid 88 + libv4l 89 + libvpx 90 + opencore-amr 91 + openssl 92 + sqlite 93 + x264 94 + ]; 95 + 96 + dependencies = [ 97 + python3-application 98 + ]; 99 + 100 + preConfigure = '' 101 + ln -s ${passthru.extDeps.pjsip.src} deps/${passthru.extDeps.pjsip.version}.tar.gz 102 + cp -r --no-preserve=all ${passthru.extDeps.zrtpcpp.src} deps/ZRTPCPP 103 + 104 + bash ./get_dependencies.sh 105 + 106 + # Fails to link some static libs due to missing -lc DSO. Just use the compiler frontend instead of raw ld. 107 + substituteInPlace deps/pjsip/build/rules.mak \ 108 + --replace-fail '$(LD)' "$CC" 109 + 110 + # Incompatible pointers (not const) 111 + substituteInPlace deps/pjsip/pjmedia/src/pjmedia-codec/ffmpeg_vid_codecs.c \ 112 + --replace-fail '&payload,' '(const pj_uint8_t **)&payload,' 113 + ''; 114 + 115 + # no upstream tests exist 116 + doCheck = false; 117 + 118 + pythonImportsCheck = [ "sipsimple" ]; 119 + 120 + passthru = { 121 + inherit extDeps; 122 + }; 123 + 124 + meta = { 125 + description = "SIP SIMPLE SDK written in Python"; 126 + homepage = "https://sipsimpleclient.org/"; 127 + downloadPage = "https://github.com/AGProjects/python3-sipsimple"; 128 + license = lib.licenses.gpl3Plus; 129 + teams = [ lib.teams.ngi ]; 130 + maintainers = [ lib.maintainers.ethancedwards8 ]; 131 + badPlatforms = [ 132 + # ../../webrtc/src/webrtc//modules/audio_processing/aec/aec_core_sse2.c:15:10: fatal error: emmintrin.h: No such file or directory 133 + "aarch64-linux" 134 + ]; 135 + }; 136 + }
+2 -2
pkgs/development/python-modules/tencentcloud-sdk-python/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "tencentcloud-sdk-python"; 13 - version = "3.0.1436"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.9"; ··· 19 owner = "TencentCloud"; 20 repo = "tencentcloud-sdk-python"; 21 tag = version; 22 - hash = "sha256-CyZ3y6NhKwVAPVg1vTzRlV4kgBoOACsxWeWVUV4je3s="; 23 }; 24 25 build-system = [ setuptools ];
··· 10 11 buildPythonPackage rec { 12 pname = "tencentcloud-sdk-python"; 13 + version = "3.0.1437"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.9"; ··· 19 owner = "TencentCloud"; 20 repo = "tencentcloud-sdk-python"; 21 tag = version; 22 + hash = "sha256-tq+8TZnZbs6/6160YCQTg6f+jjbxKsfhfhLNEpOyP6E="; 23 }; 24 25 build-system = [ setuptools ];
+3 -3
pkgs/development/python-modules/ultralytics-thop/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "ultralytics-thop"; 19 - version = "2.0.14"; 20 pyproject = true; 21 22 src = fetchFromGitHub { 23 owner = "ultralytics"; 24 repo = "thop"; 25 tag = "v${version}"; 26 - hash = "sha256-Xn01zh0/oaMPqH0FPDKElE0q7di3sDrXYcXCg6I/89E="; 27 }; 28 29 build-system = [ setuptools ]; ··· 39 40 meta = { 41 homepage = "https://github.com/ultralytics/thop"; 42 - changelog = "https://github.com/ultralytics/thop/releases/tag/v${version}"; 43 description = "Profile PyTorch models by computing the number of Multiply-Accumulate Operations (MACs) and parameters"; 44 license = lib.licenses.agpl3Only; 45 maintainers = with lib.maintainers; [ osbm ];
··· 16 17 buildPythonPackage rec { 18 pname = "ultralytics-thop"; 19 + version = "2.0.15"; 20 pyproject = true; 21 22 src = fetchFromGitHub { 23 owner = "ultralytics"; 24 repo = "thop"; 25 tag = "v${version}"; 26 + hash = "sha256-1osW/yTyNZWYVqyRBBoT5FOO9nAvZL2Bmo0vJhJcwu8="; 27 }; 28 29 build-system = [ setuptools ]; ··· 39 40 meta = { 41 homepage = "https://github.com/ultralytics/thop"; 42 + changelog = "https://github.com/ultralytics/thop/releases/tag/${src.tag}"; 43 description = "Profile PyTorch models by computing the number of Multiply-Accumulate Operations (MACs) and parameters"; 44 license = lib.licenses.agpl3Only; 45 maintainers = with lib.maintainers; [ osbm ];
+3 -3
pkgs/development/python-modules/vdirsyncer/default.nix
··· 80 81 passthru.tests.version = testers.testVersion { package = vdirsyncer; }; 82 83 - meta = with lib; { 84 description = "Synchronize calendars and contacts"; 85 homepage = "https://github.com/pimutils/vdirsyncer"; 86 changelog = "https://github.com/pimutils/vdirsyncer/blob/v${version}/CHANGELOG.rst"; 87 - license = licenses.bsd3; 88 - maintainers = [ ]; 89 mainProgram = "vdirsyncer"; 90 }; 91 }
··· 80 81 passthru.tests.version = testers.testVersion { package = vdirsyncer; }; 82 83 + meta = { 84 description = "Synchronize calendars and contacts"; 85 homepage = "https://github.com/pimutils/vdirsyncer"; 86 changelog = "https://github.com/pimutils/vdirsyncer/blob/v${version}/CHANGELOG.rst"; 87 + license = lib.licenses.bsd3; 88 + maintainers = with lib.maintainers; [ stephen-huan ]; 89 mainProgram = "vdirsyncer"; 90 }; 91 }
+3
pkgs/development/python-modules/vllm/default.nix
··· 476 # find_isa 477 "x86_64-darwin" 478 ]; 479 }; 480 }
··· 476 # find_isa 477 "x86_64-darwin" 478 ]; 479 + # ValueError: 'aimv2' is already used by a Transformers config, pick another name. 480 + # Version bump ongoing in https://github.com/NixOS/nixpkgs/pull/429117 481 + broken = true; 482 }; 483 }
+27
pkgs/games/anki/addons/anki-quizlet-importer-extended/default.nix
···
··· 1 + { 2 + lib, 3 + anki-utils, 4 + fetchFromGitHub, 5 + nix-update-script, 6 + }: 7 + anki-utils.buildAnkiAddon (finalAttrs: { 8 + pname = "anki-quizlet-importer-extended"; 9 + version = "2025.03.13"; 10 + src = fetchFromGitHub { 11 + owner = "sviatoslav-lebediev"; 12 + repo = "anki-quizlet-importer-extended"; 13 + tag = "v${finalAttrs.version}"; 14 + hash = "sha256-46j/CXhsrehu00P5QLuOj/08gNlFeJttslAFLgz7AJ8="; 15 + }; 16 + passthru.updateScript = nix-update-script { }; 17 + meta = { 18 + description = "Import Quizlet Decks into Anki"; 19 + homepage = "https://ankiweb.net/shared/info/1362209126"; 20 + downloadPage = "https://github.com/sviatoslav-lebediev/anki-quizlet-importer-extended"; 21 + changelog = "https://github.com/sviatoslav-lebediev/anki-quizlet-importer-extended/releases/tag/v${finalAttrs.version}"; 22 + # No license file, but it can be assumed to be AGPL3 based on 23 + # https://ankiweb.net/account/terms. 24 + license = lib.licenses.agpl3Only; 25 + maintainers = with lib.maintainers; [ ethancedwards8 ]; 26 + }; 27 + })
+2
pkgs/games/anki/addons/default.nix
··· 6 7 anki-connect = callPackage ./anki-connect { }; 8 9 local-audio-yomichan = callPackage ./local-audio-yomichan { }; 10 11 passfail2 = callPackage ./passfail2 { };
··· 6 7 anki-connect = callPackage ./anki-connect { }; 8 9 + anki-quizlet-importer-extended = callPackage ./anki-quizlet-importer-extended { }; 10 + 11 local-audio-yomichan = callPackage ./local-audio-yomichan { }; 12 13 passfail2 = callPackage ./passfail2 { };
+207 -207
pkgs/kde/generated/sources/plasma.json
··· 1 { 2 "aurorae": { 3 - "version": "6.4.3", 4 - "url": "mirror://kde/stable/plasma/6.4.3/aurorae-6.4.3.tar.xz", 5 - "hash": "sha256-pTMhyYqBgf5ek89ch76qxgkYwygN3Zg0JjBt+ucAlE8=" 6 }, 7 "bluedevil": { 8 - "version": "6.4.3", 9 - "url": "mirror://kde/stable/plasma/6.4.3/bluedevil-6.4.3.tar.xz", 10 - "hash": "sha256-J2DbvT7nhc5JPTn49icvR52xhAdqbjDx9GRq+9jKMx0=" 11 }, 12 "breeze": { 13 - "version": "6.4.3", 14 - "url": "mirror://kde/stable/plasma/6.4.3/breeze-6.4.3.tar.xz", 15 - "hash": "sha256-AXotrfgDoMLRZ0ifW6TSoAEfxY/PGMXnb6b8IvSET78=" 16 }, 17 "breeze-grub": { 18 - "version": "6.4.3", 19 - "url": "mirror://kde/stable/plasma/6.4.3/breeze-grub-6.4.3.tar.xz", 20 - "hash": "sha256-TwGrZLiijF2jmRXq8D1vt8APFTugcbt2c8HbsEFvueo=" 21 }, 22 "breeze-gtk": { 23 - "version": "6.4.3", 24 - "url": "mirror://kde/stable/plasma/6.4.3/breeze-gtk-6.4.3.tar.xz", 25 - "hash": "sha256-25GtKkYllrxxXTCRsJ6Gx52gBgoTxqDeGwMk7wYO6AM=" 26 }, 27 "breeze-plymouth": { 28 - "version": "6.4.3", 29 - "url": "mirror://kde/stable/plasma/6.4.3/breeze-plymouth-6.4.3.tar.xz", 30 - "hash": "sha256-BE6qpzIkxyY0Sz1ZksfSilgNxIHAZdogN4KiD9qV3D8=" 31 }, 32 "discover": { 33 - "version": "6.4.3", 34 - "url": "mirror://kde/stable/plasma/6.4.3/discover-6.4.3.tar.xz", 35 - "hash": "sha256-wt2COKqoyAGhLG8p1w8kRnutWSCcX8j66Xy7usRd3hA=" 36 }, 37 "drkonqi": { 38 - "version": "6.4.3", 39 - "url": "mirror://kde/stable/plasma/6.4.3/drkonqi-6.4.3.tar.xz", 40 - "hash": "sha256-OtmLG8xkIO1BVGQK+MsvRByndMrz2ajk2KufVTYJ+0M=" 41 }, 42 "flatpak-kcm": { 43 - "version": "6.4.3", 44 - "url": "mirror://kde/stable/plasma/6.4.3/flatpak-kcm-6.4.3.tar.xz", 45 - "hash": "sha256-K4VHWf0RJeRwYc2tOqFk4/7IvBAdS209H6LUkHdNITk=" 46 }, 47 "kactivitymanagerd": { 48 - "version": "6.4.3", 49 - "url": "mirror://kde/stable/plasma/6.4.3/kactivitymanagerd-6.4.3.tar.xz", 50 - "hash": "sha256-6esrBjv8Rp1GWor73w7HagQQyj9o92ZsULUBIxW2pos=" 51 }, 52 "kde-cli-tools": { 53 - "version": "6.4.3", 54 - "url": "mirror://kde/stable/plasma/6.4.3/kde-cli-tools-6.4.3.tar.xz", 55 - "hash": "sha256-1UzEL4yVXvgyKXZlWh7QA8yiS0LBqPUXvBwnzhevbig=" 56 }, 57 "kde-gtk-config": { 58 - "version": "6.4.3", 59 - "url": "mirror://kde/stable/plasma/6.4.3/kde-gtk-config-6.4.3.tar.xz", 60 - "hash": "sha256-IvciU7yAG7F1e31Wqza7J5waElXviIytyVDFslWbWRI=" 61 }, 62 "kdecoration": { 63 - "version": "6.4.3", 64 - "url": "mirror://kde/stable/plasma/6.4.3/kdecoration-6.4.3.tar.xz", 65 - "hash": "sha256-vQ+ZvfSHqFnaixIn40QyWa0o6Q8RC9OnvOzDhv3teCQ=" 66 }, 67 "kdeplasma-addons": { 68 - "version": "6.4.3", 69 - "url": "mirror://kde/stable/plasma/6.4.3/kdeplasma-addons-6.4.3.tar.xz", 70 - "hash": "sha256-fa2Rdv7pn06V9lc6qxgybu/2dCYJ6HObm1nC6fKq0Zs=" 71 }, 72 "kgamma": { 73 - "version": "6.4.3", 74 - "url": "mirror://kde/stable/plasma/6.4.3/kgamma-6.4.3.tar.xz", 75 - "hash": "sha256-2F+G9v2bAXM5ViO1GKQGCVHBD3UGxWG5mYGOgZsT7A4=" 76 }, 77 "kglobalacceld": { 78 - "version": "6.4.3", 79 - "url": "mirror://kde/stable/plasma/6.4.3/kglobalacceld-6.4.3.tar.xz", 80 - "hash": "sha256-ppx4fhsTOtXpnz+D0aGVch8n5SAMxgzbpw2NwDrMQ3g=" 81 }, 82 "kinfocenter": { 83 - "version": "6.4.3", 84 - "url": "mirror://kde/stable/plasma/6.4.3/kinfocenter-6.4.3.tar.xz", 85 - "hash": "sha256-TV9JlHB3KnS08in2dv63rv0S7CstNkWLhIPY3KOkink=" 86 }, 87 "kmenuedit": { 88 - "version": "6.4.3", 89 - "url": "mirror://kde/stable/plasma/6.4.3/kmenuedit-6.4.3.tar.xz", 90 - "hash": "sha256-lPsm7/zhhSQKiPgrv3VqaztvCi0FVlKcSien9iqnnIk=" 91 }, 92 "kpipewire": { 93 - "version": "6.4.3", 94 - "url": "mirror://kde/stable/plasma/6.4.3/kpipewire-6.4.3.tar.xz", 95 - "hash": "sha256-GGbZZs5hu4PtHUXcwNsai6kZcXYmgTaKM1fYZDj6lkI=" 96 }, 97 "krdp": { 98 - "version": "6.4.3", 99 - "url": "mirror://kde/stable/plasma/6.4.3/krdp-6.4.3.tar.xz", 100 - "hash": "sha256-sElQOTYg8Us1INxnboFjKjGI+S5Q2oTd4z8AgcWHt4c=" 101 }, 102 "kscreen": { 103 - "version": "6.4.3", 104 - "url": "mirror://kde/stable/plasma/6.4.3/kscreen-6.4.3.tar.xz", 105 - "hash": "sha256-N+9wMqITYpPP7OtB+u/1Jd6AxxGc2MhUEWuLMA76YKk=" 106 }, 107 "kscreenlocker": { 108 - "version": "6.4.3", 109 - "url": "mirror://kde/stable/plasma/6.4.3/kscreenlocker-6.4.3.tar.xz", 110 - "hash": "sha256-NEEXRCb9GFJMpZ+iJG+e6Zwx3sD9ieqnlwXmoy0dysM=" 111 }, 112 "ksshaskpass": { 113 - "version": "6.4.3", 114 - "url": "mirror://kde/stable/plasma/6.4.3/ksshaskpass-6.4.3.tar.xz", 115 - "hash": "sha256-ll+JoBqpHAftW4rtK+NSH4jpiyLhJ3hG8SRAyXYLrxA=" 116 }, 117 "ksystemstats": { 118 - "version": "6.4.3", 119 - "url": "mirror://kde/stable/plasma/6.4.3/ksystemstats-6.4.3.tar.xz", 120 - "hash": "sha256-DRvbUY/XI1VREPjcTtm1CbA7Jn5AzC1wlYevLEzo2gw=" 121 }, 122 "kwallet-pam": { 123 - "version": "6.4.3", 124 - "url": "mirror://kde/stable/plasma/6.4.3/kwallet-pam-6.4.3.tar.xz", 125 - "hash": "sha256-CBUcoD57io52lpJ+Oq3DCVz0gIF0jJg3mNrDWrX9DN4=" 126 }, 127 "kwayland": { 128 - "version": "6.4.3", 129 - "url": "mirror://kde/stable/plasma/6.4.3/kwayland-6.4.3.tar.xz", 130 - "hash": "sha256-/1B9PENUB7ODHq0epj9t6mx3i6ah9bRYldX+xvXB+YI=" 131 }, 132 "kwayland-integration": { 133 - "version": "6.4.3", 134 - "url": "mirror://kde/stable/plasma/6.4.3/kwayland-integration-6.4.3.tar.xz", 135 - "hash": "sha256-m68hNOLTLp1NQXiU+mORH6lLyoYZjvjhbkYdWYm24tA=" 136 }, 137 "kwin": { 138 - "version": "6.4.3", 139 - "url": "mirror://kde/stable/plasma/6.4.3/kwin-6.4.3.tar.xz", 140 - "hash": "sha256-oTVoyRjsp4A+tEo6J3i4YO3D8Ds2eXhRxPOu7tS1Aqg=" 141 }, 142 "kwin-x11": { 143 - "version": "6.4.3", 144 - "url": "mirror://kde/stable/plasma/6.4.3/kwin-x11-6.4.3.tar.xz", 145 - "hash": "sha256-TytgGTlnwkoGe53agtWfgR9WY/V4PVngNCT8AoHM0Yg=" 146 }, 147 "kwrited": { 148 - "version": "6.4.3", 149 - "url": "mirror://kde/stable/plasma/6.4.3/kwrited-6.4.3.tar.xz", 150 - "hash": "sha256-/hRLXtQnDL1F9xGHuXDkxOPgA1wa/EBxmxyGK4rbCYs=" 151 }, 152 "layer-shell-qt": { 153 - "version": "6.4.3", 154 - "url": "mirror://kde/stable/plasma/6.4.3/layer-shell-qt-6.4.3.tar.xz", 155 - "hash": "sha256-M+ZOwM0tnpVHw8P6qcTWogBr9oH6w2FRH0QbUfnd23w=" 156 }, 157 "libkscreen": { 158 - "version": "6.4.3", 159 - "url": "mirror://kde/stable/plasma/6.4.3/libkscreen-6.4.3.tar.xz", 160 - "hash": "sha256-ol8GBBEGUshH4ADt5v3p8nfrOIUO3qvePjpB0uuBsGs=" 161 }, 162 "libksysguard": { 163 - "version": "6.4.3", 164 - "url": "mirror://kde/stable/plasma/6.4.3/libksysguard-6.4.3.tar.xz", 165 - "hash": "sha256-V6NTMV/SCw5GbuOZ2Oxq+ee1dDKDEfqHF3MSZ763MuI=" 166 }, 167 "libplasma": { 168 - "version": "6.4.3", 169 - "url": "mirror://kde/stable/plasma/6.4.3/libplasma-6.4.3.tar.xz", 170 - "hash": "sha256-9QjOztMqEURi5eMRlWAO5EChohuOt3uiADPPuJK7DMg=" 171 }, 172 "milou": { 173 - "version": "6.4.3", 174 - "url": "mirror://kde/stable/plasma/6.4.3/milou-6.4.3.tar.xz", 175 - "hash": "sha256-1nnJW2KuuBSb02ivHYMf7nnrqqw+5HnaZ8RQ6A/TX/E=" 176 }, 177 "ocean-sound-theme": { 178 - "version": "6.4.3", 179 - "url": "mirror://kde/stable/plasma/6.4.3/ocean-sound-theme-6.4.3.tar.xz", 180 - "hash": "sha256-s/ggACbvS+YCN5XbPZr/Lk+GrHXVH8AjPqJpumVChDI=" 181 }, 182 "oxygen": { 183 - "version": "6.4.3", 184 - "url": "mirror://kde/stable/plasma/6.4.3/oxygen-6.4.3.tar.xz", 185 - "hash": "sha256-f+VdNdt+GsAZushbVdUCbc+ZwfS78Y5a7zinW8Adz2g=" 186 }, 187 "oxygen-sounds": { 188 - "version": "6.4.3", 189 - "url": "mirror://kde/stable/plasma/6.4.3/oxygen-sounds-6.4.3.tar.xz", 190 - "hash": "sha256-RAVm+ahMnOkOBLVhq5eQmDi1Gcg/fe61dNBckzuvLis=" 191 }, 192 "plasma-activities": { 193 - "version": "6.4.3", 194 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-activities-6.4.3.tar.xz", 195 - "hash": "sha256-HI3KdGYC3vrNSVua5jfBcA075+fjzF1Jml/WaaC5jvA=" 196 }, 197 "plasma-activities-stats": { 198 - "version": "6.4.3", 199 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-activities-stats-6.4.3.tar.xz", 200 - "hash": "sha256-mRAC49qbWWm5WDzRaQUKI6rL4C8tfUqxoZ9b18crO2s=" 201 }, 202 "plasma-browser-integration": { 203 - "version": "6.4.3", 204 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-browser-integration-6.4.3.tar.xz", 205 - "hash": "sha256-WMznF6tOw66UGL4F6GfCyD0jKG0dxo8mUM6hizF5q8s=" 206 }, 207 "plasma-desktop": { 208 - "version": "6.4.3", 209 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-desktop-6.4.3.tar.xz", 210 - "hash": "sha256-GQo/VY9rP6khZMPyaecP/R6YHjUt1xikOkywByRapSU=" 211 }, 212 "plasma-dialer": { 213 - "version": "6.4.3", 214 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-dialer-6.4.3.tar.xz", 215 - "hash": "sha256-p960P1UuPAecHl3RT+xfbrcuVQJPI6Kbe8LQE9PCM+o=" 216 }, 217 "plasma-disks": { 218 - "version": "6.4.3", 219 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-disks-6.4.3.tar.xz", 220 - "hash": "sha256-vW5jR1ZCr+ciKGLXLUVM2cpsfzkfSBwrFFwqt5NGwhM=" 221 }, 222 "plasma-firewall": { 223 - "version": "6.4.3", 224 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-firewall-6.4.3.tar.xz", 225 - "hash": "sha256-vHgAR7ZWarEjgnWwLBIOKnRUIiy0XEf8spYAMIaDxow=" 226 }, 227 "plasma-integration": { 228 - "version": "6.4.3", 229 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-integration-6.4.3.tar.xz", 230 - "hash": "sha256-cfPmQ9e38z/C5HOFBCTc+wDDJY1/4uJxoDJiEzMoi9c=" 231 }, 232 "plasma-mobile": { 233 - "version": "6.4.3", 234 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-mobile-6.4.3.tar.xz", 235 - "hash": "sha256-4089dZ3kh+QOWQAQ69Fsx0CBHNFd4AEfp3xBcq+WHfM=" 236 }, 237 "plasma-nano": { 238 - "version": "6.4.3", 239 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-nano-6.4.3.tar.xz", 240 - "hash": "sha256-CnxbV63/Wu93yJHoiDqwLFQ6/IYKueK1745VBnZTilY=" 241 }, 242 "plasma-nm": { 243 - "version": "6.4.3", 244 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-nm-6.4.3.tar.xz", 245 - "hash": "sha256-Z8OOPApU6QrhI3mRFCuSBkY9Q8Lq2O313Vu3oWpGoT4=" 246 }, 247 "plasma-pa": { 248 - "version": "6.4.3", 249 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-pa-6.4.3.tar.xz", 250 - "hash": "sha256-aw49OrRpz4b8GNIR/L9BJRqjOjAUoyt37EGQX9L6TiE=" 251 }, 252 "plasma-sdk": { 253 - "version": "6.4.3", 254 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-sdk-6.4.3.tar.xz", 255 - "hash": "sha256-m3zjZFmz8s2Ru+CUGto+uzjv8BSZOcWdqy0LDTkowGQ=" 256 }, 257 "plasma-systemmonitor": { 258 - "version": "6.4.3", 259 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-systemmonitor-6.4.3.tar.xz", 260 - "hash": "sha256-aFbjmSZVJjMu6TifvPgZ09B6DqLtRWfVRa4IjkiV0jA=" 261 }, 262 "plasma-thunderbolt": { 263 - "version": "6.4.3", 264 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-thunderbolt-6.4.3.tar.xz", 265 - "hash": "sha256-aYn51hqotPoh2iPeALIxZO0VN1mG0nFgGRqQtawTP1I=" 266 }, 267 "plasma-vault": { 268 - "version": "6.4.3", 269 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-vault-6.4.3.tar.xz", 270 - "hash": "sha256-uXkOHGYGUFBDzQxfWJYP5d4dGgT1OazjuYbZbUcDTsc=" 271 }, 272 "plasma-welcome": { 273 - "version": "6.4.3", 274 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-welcome-6.4.3.tar.xz", 275 - "hash": "sha256-1xzWOZ91n6T8+jD1CKRgqzfSq0+9zd+aLn8rWrhwtGM=" 276 }, 277 "plasma-workspace": { 278 - "version": "6.4.3", 279 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-workspace-6.4.3.tar.xz", 280 - "hash": "sha256-clTyhakeyAKwYSp62yQtmDYqzN/4ZvwShbtluASN7bg=" 281 }, 282 "plasma-workspace-wallpapers": { 283 - "version": "6.4.3", 284 - "url": "mirror://kde/stable/plasma/6.4.3/plasma-workspace-wallpapers-6.4.3.tar.xz", 285 - "hash": "sha256-9dIdq7VO20SDtXihp+foLw5x/K2XS+8kQSE01NQ6ycQ=" 286 }, 287 "plasma5support": { 288 - "version": "6.4.3", 289 - "url": "mirror://kde/stable/plasma/6.4.3/plasma5support-6.4.3.tar.xz", 290 - "hash": "sha256-Homok10Y2YqPy+Av80d0iThbtCqATlQ7uyTwQ/XNjPY=" 291 }, 292 "plymouth-kcm": { 293 - "version": "6.4.3", 294 - "url": "mirror://kde/stable/plasma/6.4.3/plymouth-kcm-6.4.3.tar.xz", 295 - "hash": "sha256-ONxaWan+fXX6gAr6V604RF89n608obsGbm5GSDj6fg8=" 296 }, 297 "polkit-kde-agent-1": { 298 - "version": "6.4.3", 299 - "url": "mirror://kde/stable/plasma/6.4.3/polkit-kde-agent-1-6.4.3.tar.xz", 300 - "hash": "sha256-InMbD6Aun9y9WSajxThhAPIKzXoCY5ZyFlebCERWguc=" 301 }, 302 "powerdevil": { 303 - "version": "6.4.3", 304 - "url": "mirror://kde/stable/plasma/6.4.3/powerdevil-6.4.3.tar.xz", 305 - "hash": "sha256-wkfQxBSQXeCfHAEzAoSB+w8ez6JtiTcqzvr/qxUFK9Y=" 306 }, 307 "print-manager": { 308 - "version": "6.4.3", 309 - "url": "mirror://kde/stable/plasma/6.4.3/print-manager-6.4.3.tar.xz", 310 - "hash": "sha256-/f1/42htk351wopMuQG5P0+iiWd+8uypSlDYNVOjLTQ=" 311 }, 312 "qqc2-breeze-style": { 313 - "version": "6.4.3", 314 - "url": "mirror://kde/stable/plasma/6.4.3/qqc2-breeze-style-6.4.3.tar.xz", 315 - "hash": "sha256-PGytdAsDEzpwheQ30MsWrOq94oDFXAIrAnLvRNPTI6A=" 316 }, 317 "sddm-kcm": { 318 - "version": "6.4.3", 319 - "url": "mirror://kde/stable/plasma/6.4.3/sddm-kcm-6.4.3.tar.xz", 320 - "hash": "sha256-UxQSOsVTiPcBViFjm42DZ8yCns7yU1aIkpjWvlSPjPY=" 321 }, 322 "spacebar": { 323 - "version": "6.4.3", 324 - "url": "mirror://kde/stable/plasma/6.4.3/spacebar-6.4.3.tar.xz", 325 - "hash": "sha256-9Rwm4KtPadbXJ2iPVh2AdeAOLSlYGosKnDoED/4JynE=" 326 }, 327 "spectacle": { 328 - "version": "6.4.3", 329 - "url": "mirror://kde/stable/plasma/6.4.3/spectacle-6.4.3.tar.xz", 330 - "hash": "sha256-mYb8CR+ROj8OFSC9izoz6cF04D9ItLKvMZK9ijG7Kdg=" 331 }, 332 "systemsettings": { 333 - "version": "6.4.3", 334 - "url": "mirror://kde/stable/plasma/6.4.3/systemsettings-6.4.3.tar.xz", 335 - "hash": "sha256-zBzc1xDz9f0kJIbtypTXGT1F20F4A+1imsdifrIwVVY=" 336 }, 337 "wacomtablet": { 338 - "version": "6.4.3", 339 - "url": "mirror://kde/stable/plasma/6.4.3/wacomtablet-6.4.3.tar.xz", 340 - "hash": "sha256-NT1D9an3qwRcHwGKvVSt3GOPsJTuxTdfH/YxaRkDM5g=" 341 }, 342 "xdg-desktop-portal-kde": { 343 - "version": "6.4.3", 344 - "url": "mirror://kde/stable/plasma/6.4.3/xdg-desktop-portal-kde-6.4.3.tar.xz", 345 - "hash": "sha256-P+xx4AWr6Ds9WTp0vDMEwXjWBYg/47d/kVxkz0XB/Cc=" 346 } 347 }
··· 1 { 2 "aurorae": { 3 + "version": "6.4.4", 4 + "url": "mirror://kde/stable/plasma/6.4.4/aurorae-6.4.4.tar.xz", 5 + "hash": "sha256-s1indXcgUuRrSXjGOtdlmWykYArw2xGJJgEp/ZHeZYk=" 6 }, 7 "bluedevil": { 8 + "version": "6.4.4", 9 + "url": "mirror://kde/stable/plasma/6.4.4/bluedevil-6.4.4.tar.xz", 10 + "hash": "sha256-fl04anxCobTvAOeUacj0cwCUTJxCAjZH8u/ToS7MMXU=" 11 }, 12 "breeze": { 13 + "version": "6.4.4", 14 + "url": "mirror://kde/stable/plasma/6.4.4/breeze-6.4.4.tar.xz", 15 + "hash": "sha256-MHz8tVBb03bZWbNk9SMcrEooCvk4qTjOOk47ep9x9w0=" 16 }, 17 "breeze-grub": { 18 + "version": "6.4.4", 19 + "url": "mirror://kde/stable/plasma/6.4.4/breeze-grub-6.4.4.tar.xz", 20 + "hash": "sha256-vaJzZ739I/lVwtcqxlTrzrBys8joYrR4da8USCVDt4o=" 21 }, 22 "breeze-gtk": { 23 + "version": "6.4.4", 24 + "url": "mirror://kde/stable/plasma/6.4.4/breeze-gtk-6.4.4.tar.xz", 25 + "hash": "sha256-s1PLHFw2zHSTyy0Bi3zFBo+kdyNFeB+B1fgQjPVLTj8=" 26 }, 27 "breeze-plymouth": { 28 + "version": "6.4.4", 29 + "url": "mirror://kde/stable/plasma/6.4.4/breeze-plymouth-6.4.4.tar.xz", 30 + "hash": "sha256-Tg9Hug8eolxpj8ysvScK9gAtvVRcvyuR923yz6UNSIQ=" 31 }, 32 "discover": { 33 + "version": "6.4.4", 34 + "url": "mirror://kde/stable/plasma/6.4.4/discover-6.4.4.tar.xz", 35 + "hash": "sha256-uuoZ+ts97o6VFqQCqjvBbx3V9Lfb5GpuzQYXxQiELpY=" 36 }, 37 "drkonqi": { 38 + "version": "6.4.4", 39 + "url": "mirror://kde/stable/plasma/6.4.4/drkonqi-6.4.4.tar.xz", 40 + "hash": "sha256-Kh10mZguv9XG9vqccw20SAmM0tlbikjGGpB8e7neIUc=" 41 }, 42 "flatpak-kcm": { 43 + "version": "6.4.4", 44 + "url": "mirror://kde/stable/plasma/6.4.4/flatpak-kcm-6.4.4.tar.xz", 45 + "hash": "sha256-tKxfTGTi3NgLYQscq0L10cyWu8vBSqPjZrJXQHOHyPg=" 46 }, 47 "kactivitymanagerd": { 48 + "version": "6.4.4", 49 + "url": "mirror://kde/stable/plasma/6.4.4/kactivitymanagerd-6.4.4.tar.xz", 50 + "hash": "sha256-OPJNlSmBBJXbGi0PECqJiF0igT8TH7ZFO3nYmL/L4qQ=" 51 }, 52 "kde-cli-tools": { 53 + "version": "6.4.4", 54 + "url": "mirror://kde/stable/plasma/6.4.4/kde-cli-tools-6.4.4.tar.xz", 55 + "hash": "sha256-HNHiHKzBxz9KJdXpjz++hCW6jy+qE+Sq2DAwy/Ifz0w=" 56 }, 57 "kde-gtk-config": { 58 + "version": "6.4.4", 59 + "url": "mirror://kde/stable/plasma/6.4.4/kde-gtk-config-6.4.4.tar.xz", 60 + "hash": "sha256-1UlX0CJAqROT8aFMPZKas4WVTbqbMV7PVK95RFpo4lo=" 61 }, 62 "kdecoration": { 63 + "version": "6.4.4", 64 + "url": "mirror://kde/stable/plasma/6.4.4/kdecoration-6.4.4.tar.xz", 65 + "hash": "sha256-oCrHHqjuetarNFePG1DzK5E0egWpMs/FCyU3Kcyt7m8=" 66 }, 67 "kdeplasma-addons": { 68 + "version": "6.4.4", 69 + "url": "mirror://kde/stable/plasma/6.4.4/kdeplasma-addons-6.4.4.tar.xz", 70 + "hash": "sha256-FWGjHECS0LaXrpXU/FG4LexwATEU0m4Lach48X1ltPg=" 71 }, 72 "kgamma": { 73 + "version": "6.4.4", 74 + "url": "mirror://kde/stable/plasma/6.4.4/kgamma-6.4.4.tar.xz", 75 + "hash": "sha256-G8dSQV1HEVgPSD93SmLYlZWDaGuTsWRISonX1VcTNKY=" 76 }, 77 "kglobalacceld": { 78 + "version": "6.4.4", 79 + "url": "mirror://kde/stable/plasma/6.4.4/kglobalacceld-6.4.4.tar.xz", 80 + "hash": "sha256-ifcrv7UgsNyN/Gy8gb3Pzzt0IXVRs8qB0LltnTWgm88=" 81 }, 82 "kinfocenter": { 83 + "version": "6.4.4", 84 + "url": "mirror://kde/stable/plasma/6.4.4/kinfocenter-6.4.4.tar.xz", 85 + "hash": "sha256-J2KfKHxDYePxJ9qsOPAdCrsjNVym2jgi9BizmL8OoLE=" 86 }, 87 "kmenuedit": { 88 + "version": "6.4.4", 89 + "url": "mirror://kde/stable/plasma/6.4.4/kmenuedit-6.4.4.tar.xz", 90 + "hash": "sha256-Kvdx3+3DNKqqwJdtZr+cjI6DADCtbSoyiza+RLvJ7sk=" 91 }, 92 "kpipewire": { 93 + "version": "6.4.4", 94 + "url": "mirror://kde/stable/plasma/6.4.4/kpipewire-6.4.4.tar.xz", 95 + "hash": "sha256-CX+ZcVgMx8472J5zztdgbjl4NHvUQTHWdE/gLYobPqY=" 96 }, 97 "krdp": { 98 + "version": "6.4.4", 99 + "url": "mirror://kde/stable/plasma/6.4.4/krdp-6.4.4.tar.xz", 100 + "hash": "sha256-Io2GMP8uFPqJmtYR0YZTmfnmEoU4+d+RJzqzlo987IQ=" 101 }, 102 "kscreen": { 103 + "version": "6.4.4", 104 + "url": "mirror://kde/stable/plasma/6.4.4/kscreen-6.4.4.tar.xz", 105 + "hash": "sha256-WJDSRhSsb5PMl5ZPnKixvvlewUUIQI3IfzkE0Ds6+HY=" 106 }, 107 "kscreenlocker": { 108 + "version": "6.4.4", 109 + "url": "mirror://kde/stable/plasma/6.4.4/kscreenlocker-6.4.4.tar.xz", 110 + "hash": "sha256-XMHdI74yXx3c8AVVbwrBQHd4lSSqCz4eg7l/931JMqg=" 111 }, 112 "ksshaskpass": { 113 + "version": "6.4.4", 114 + "url": "mirror://kde/stable/plasma/6.4.4/ksshaskpass-6.4.4.tar.xz", 115 + "hash": "sha256-q0e5S2Ak+rFIyaeo+MRAOoHt6pbqu7DV+AWhIPxd8jA=" 116 }, 117 "ksystemstats": { 118 + "version": "6.4.4", 119 + "url": "mirror://kde/stable/plasma/6.4.4/ksystemstats-6.4.4.tar.xz", 120 + "hash": "sha256-mjp00s6iB33YdTPche3+ARtvb8LvGrCgo11VAxlFRmc=" 121 }, 122 "kwallet-pam": { 123 + "version": "6.4.4", 124 + "url": "mirror://kde/stable/plasma/6.4.4/kwallet-pam-6.4.4.tar.xz", 125 + "hash": "sha256-5GT5vHOk2ytZPRsZ4eiu44XRVVE+WLaxFHD6eMUu+8E=" 126 }, 127 "kwayland": { 128 + "version": "6.4.4", 129 + "url": "mirror://kde/stable/plasma/6.4.4/kwayland-6.4.4.tar.xz", 130 + "hash": "sha256-9FiuftERjhohZaNzeMjODp//gNGkz+hiF/Bs8kykn5s=" 131 }, 132 "kwayland-integration": { 133 + "version": "6.4.4", 134 + "url": "mirror://kde/stable/plasma/6.4.4/kwayland-integration-6.4.4.tar.xz", 135 + "hash": "sha256-0AmwuPDaV2B4gPVtSOmXtry9QUCWrTGk8s0733fUSGk=" 136 }, 137 "kwin": { 138 + "version": "6.4.4", 139 + "url": "mirror://kde/stable/plasma/6.4.4/kwin-6.4.4.tar.xz", 140 + "hash": "sha256-sHQqEhM7BSUZy1rwkTIRTr9NlrROMgAVzA0tC/BV2uY=" 141 }, 142 "kwin-x11": { 143 + "version": "6.4.4", 144 + "url": "mirror://kde/stable/plasma/6.4.4/kwin-x11-6.4.4.tar.xz", 145 + "hash": "sha256-mH4gfC8qtg5RQhtYRsoD5p74dawgaYAi9ei90eEFXtk=" 146 }, 147 "kwrited": { 148 + "version": "6.4.4", 149 + "url": "mirror://kde/stable/plasma/6.4.4/kwrited-6.4.4.tar.xz", 150 + "hash": "sha256-DhWtJaXWsIVq3YfkY2B/7yCaEYT9E/hl45joFz7Dw1E=" 151 }, 152 "layer-shell-qt": { 153 + "version": "6.4.4", 154 + "url": "mirror://kde/stable/plasma/6.4.4/layer-shell-qt-6.4.4.tar.xz", 155 + "hash": "sha256-hLMaPnOxUPphH7URUJh2AO3dDtxXiIjpU+f9N/VQZD0=" 156 }, 157 "libkscreen": { 158 + "version": "6.4.4", 159 + "url": "mirror://kde/stable/plasma/6.4.4/libkscreen-6.4.4.tar.xz", 160 + "hash": "sha256-3J/ueoM0wktPlMM9nzGwk8E82Pt94GMU6O36OijKtPY=" 161 }, 162 "libksysguard": { 163 + "version": "6.4.4", 164 + "url": "mirror://kde/stable/plasma/6.4.4/libksysguard-6.4.4.tar.xz", 165 + "hash": "sha256-8S/S4R0tUE1XVWy1IKRC7ZZg9Zx9Sx+7sXvuAuug+y8=" 166 }, 167 "libplasma": { 168 + "version": "6.4.4", 169 + "url": "mirror://kde/stable/plasma/6.4.4/libplasma-6.4.4.tar.xz", 170 + "hash": "sha256-qw9LQmgpgh4Kv0eQUvMmpc4Bw7YE6JDJ95lJw+tf3r4=" 171 }, 172 "milou": { 173 + "version": "6.4.4", 174 + "url": "mirror://kde/stable/plasma/6.4.4/milou-6.4.4.tar.xz", 175 + "hash": "sha256-pkTlllszwg+CzlFmD6O3wtQYELBozyH3dliCTLPqax4=" 176 }, 177 "ocean-sound-theme": { 178 + "version": "6.4.4", 179 + "url": "mirror://kde/stable/plasma/6.4.4/ocean-sound-theme-6.4.4.tar.xz", 180 + "hash": "sha256-3dh8kCGUel7/BuL5JWa52B/gbqREQwdF6JbWR5lON+s=" 181 }, 182 "oxygen": { 183 + "version": "6.4.4", 184 + "url": "mirror://kde/stable/plasma/6.4.4/oxygen-6.4.4.tar.xz", 185 + "hash": "sha256-fwRa+p0yHob82oFAN7v5kf5M/+NLPNSMcGeNt0BvKPs=" 186 }, 187 "oxygen-sounds": { 188 + "version": "6.4.4", 189 + "url": "mirror://kde/stable/plasma/6.4.4/oxygen-sounds-6.4.4.tar.xz", 190 + "hash": "sha256-URsNino3dnfCwP032NTQmdr7f8dMNKL6Hau8MnyMU5E=" 191 }, 192 "plasma-activities": { 193 + "version": "6.4.4", 194 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-activities-6.4.4.tar.xz", 195 + "hash": "sha256-q4EKpZTtM4b2qFZHBeoqRsxi7DZ94gOWJeAw9q+VX+g=" 196 }, 197 "plasma-activities-stats": { 198 + "version": "6.4.4", 199 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-activities-stats-6.4.4.tar.xz", 200 + "hash": "sha256-3UOJlhewzA6SehO/uIFGt2H3OQwfulaOLkUi8H8PWQE=" 201 }, 202 "plasma-browser-integration": { 203 + "version": "6.4.4", 204 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-browser-integration-6.4.4.tar.xz", 205 + "hash": "sha256-791bm/Gs++Fu3LMbApx/kbIGFlmLv8aglZ/v1pi2OM8=" 206 }, 207 "plasma-desktop": { 208 + "version": "6.4.4", 209 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-desktop-6.4.4.tar.xz", 210 + "hash": "sha256-TXC5v5n1mzvep7gkCgt9+AO9FsCunMU0yjYXqfnFQBM=" 211 }, 212 "plasma-dialer": { 213 + "version": "6.4.4", 214 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-dialer-6.4.4.tar.xz", 215 + "hash": "sha256-7sOd2HuID9kqma1QNO3fNuqTLWerfRFMAiHB3tw1mZ8=" 216 }, 217 "plasma-disks": { 218 + "version": "6.4.4", 219 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-disks-6.4.4.tar.xz", 220 + "hash": "sha256-OPmEJh+4SwPnw33fi1+5yzRkTnFKa1R8FHcapUWL+qA=" 221 }, 222 "plasma-firewall": { 223 + "version": "6.4.4", 224 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-firewall-6.4.4.tar.xz", 225 + "hash": "sha256-a3spBD2LCXnamfku1/nbkHS42kLQJcPtSX8t+GKJiEI=" 226 }, 227 "plasma-integration": { 228 + "version": "6.4.4", 229 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-integration-6.4.4.tar.xz", 230 + "hash": "sha256-DThP+VKNf+f9R00BAIslaAbgxs8OeczIHzSgjbxEmy8=" 231 }, 232 "plasma-mobile": { 233 + "version": "6.4.4", 234 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-mobile-6.4.4.tar.xz", 235 + "hash": "sha256-hIHKY6k1dfpEMki+C4bgU29EUlOEec3fps+Vjg+REvE=" 236 }, 237 "plasma-nano": { 238 + "version": "6.4.4", 239 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-nano-6.4.4.tar.xz", 240 + "hash": "sha256-z9jfL52CNYJHxK5+uXrNWFUy+usmtRpeTbkM2F56Gi4=" 241 }, 242 "plasma-nm": { 243 + "version": "6.4.4", 244 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-nm-6.4.4.tar.xz", 245 + "hash": "sha256-hQY40fTMOwoQEvBJr14SA+9Xoe8fwh5Qgsgr3xO8tlc=" 246 }, 247 "plasma-pa": { 248 + "version": "6.4.4", 249 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-pa-6.4.4.tar.xz", 250 + "hash": "sha256-Lhi7KEocugfkOxmuehkrV0qu+UvGNddR0esh/NVpyoo=" 251 }, 252 "plasma-sdk": { 253 + "version": "6.4.4", 254 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-sdk-6.4.4.tar.xz", 255 + "hash": "sha256-8Qx67J8qJrb4oE0+oeEeiFG685GP2TobfO8H+TWkCWw=" 256 }, 257 "plasma-systemmonitor": { 258 + "version": "6.4.4", 259 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-systemmonitor-6.4.4.tar.xz", 260 + "hash": "sha256-ydSifvk/HsKamxgcVtvxbOgaoaatMMg3/5h8NVKIjng=" 261 }, 262 "plasma-thunderbolt": { 263 + "version": "6.4.4", 264 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-thunderbolt-6.4.4.tar.xz", 265 + "hash": "sha256-0Th/uTg03s+yfHFuVi3kr2sKk2fScp9BMiaIQielOeY=" 266 }, 267 "plasma-vault": { 268 + "version": "6.4.4", 269 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-vault-6.4.4.tar.xz", 270 + "hash": "sha256-LYQ7HjfLQbCZx0FCrQ10aUL9tEcYbT43LKa3o7BRvIE=" 271 }, 272 "plasma-welcome": { 273 + "version": "6.4.4", 274 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-welcome-6.4.4.tar.xz", 275 + "hash": "sha256-MJ4bDY0WSRJ2sAZXwkGXxiAMKjJCw/UwoiMHaJtdI7E=" 276 }, 277 "plasma-workspace": { 278 + "version": "6.4.4", 279 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-workspace-6.4.4.tar.xz", 280 + "hash": "sha256-3lO07vaItZt8VgkEhdQef4vj07mfHPE1in0/TanuvLI=" 281 }, 282 "plasma-workspace-wallpapers": { 283 + "version": "6.4.4", 284 + "url": "mirror://kde/stable/plasma/6.4.4/plasma-workspace-wallpapers-6.4.4.tar.xz", 285 + "hash": "sha256-4gOTLW0h81CecDOvBRxK7ck5s2TzkhDJsqqY9PzKOyk=" 286 }, 287 "plasma5support": { 288 + "version": "6.4.4", 289 + "url": "mirror://kde/stable/plasma/6.4.4/plasma5support-6.4.4.tar.xz", 290 + "hash": "sha256-BmwEVhSbrK1t/ZnrNng/th8ZGN+RudcP9K6sVuPUO/U=" 291 }, 292 "plymouth-kcm": { 293 + "version": "6.4.4", 294 + "url": "mirror://kde/stable/plasma/6.4.4/plymouth-kcm-6.4.4.tar.xz", 295 + "hash": "sha256-StibT2JXxAAsH7mJ4F/dlZp6Ur4u6HzArJ6wKddPUYM=" 296 }, 297 "polkit-kde-agent-1": { 298 + "version": "6.4.4", 299 + "url": "mirror://kde/stable/plasma/6.4.4/polkit-kde-agent-1-6.4.4.tar.xz", 300 + "hash": "sha256-LCGPTmb1+TO5zdDGiG9TYlor9/HI32S7SFg1rnKHfj0=" 301 }, 302 "powerdevil": { 303 + "version": "6.4.4", 304 + "url": "mirror://kde/stable/plasma/6.4.4/powerdevil-6.4.4.tar.xz", 305 + "hash": "sha256-yq8LTcZUfJSQ9Jn0a6PN51DY9NOTd2of/2UrG+mBACg=" 306 }, 307 "print-manager": { 308 + "version": "6.4.4", 309 + "url": "mirror://kde/stable/plasma/6.4.4/print-manager-6.4.4.tar.xz", 310 + "hash": "sha256-I9qqipOb24kEdXb54kRho9Fu/YpFVuTR8Ozldtwu958=" 311 }, 312 "qqc2-breeze-style": { 313 + "version": "6.4.4", 314 + "url": "mirror://kde/stable/plasma/6.4.4/qqc2-breeze-style-6.4.4.tar.xz", 315 + "hash": "sha256-+3PoWNB58KKS7VcVWPLNJe9+g8vs0V9i9XiVQMOwlRw=" 316 }, 317 "sddm-kcm": { 318 + "version": "6.4.4", 319 + "url": "mirror://kde/stable/plasma/6.4.4/sddm-kcm-6.4.4.tar.xz", 320 + "hash": "sha256-gzZsTVgELRwJk9jjGXwZwzp+7czeZCJjomgStcSxa/s=" 321 }, 322 "spacebar": { 323 + "version": "6.4.4", 324 + "url": "mirror://kde/stable/plasma/6.4.4/spacebar-6.4.4.tar.xz", 325 + "hash": "sha256-BZt7CqgXZ2RiKvmBN9xkKdY/qWWHQlbW3/0yFGfWGjE=" 326 }, 327 "spectacle": { 328 + "version": "6.4.4", 329 + "url": "mirror://kde/stable/plasma/6.4.4/spectacle-6.4.4.tar.xz", 330 + "hash": "sha256-kQinOcGsxDsj4KaqF7pBlKVkqxVIxohzKMdqBzvz03M=" 331 }, 332 "systemsettings": { 333 + "version": "6.4.4", 334 + "url": "mirror://kde/stable/plasma/6.4.4/systemsettings-6.4.4.tar.xz", 335 + "hash": "sha256-axR4i/GTl/WPAjHLnM1XwyGMpxr9LZ8cdFWB4T+ld0g=" 336 }, 337 "wacomtablet": { 338 + "version": "6.4.4", 339 + "url": "mirror://kde/stable/plasma/6.4.4/wacomtablet-6.4.4.tar.xz", 340 + "hash": "sha256-ecPWsqxzDeCr7EbbJyv8sHqJo4KkmBvT085JTWJfVGk=" 341 }, 342 "xdg-desktop-portal-kde": { 343 + "version": "6.4.4", 344 + "url": "mirror://kde/stable/plasma/6.4.4/xdg-desktop-portal-kde-6.4.4.tar.xz", 345 + "hash": "sha256-3NUBsRp4XAsPCzC/HQm6Eg2DiFJ2hBxH/u1R134UQKU=" 346 } 347 }
+3 -3
pkgs/misc/tmux-plugins/default.nix
··· 808 tokyo-night-tmux = mkTmuxPlugin { 809 pluginName = "tokyo-night-tmux"; 810 rtpFilePath = "tokyo-night.tmux"; 811 - version = "1.5.3"; 812 src = pkgs.fetchFromGitHub { 813 owner = "janoamaral"; 814 repo = "tokyo-night-tmux"; 815 - rev = "d34f1487b4a644b13d8b2e9a2ee854ae62cc8d0e"; 816 - hash = "sha256-3rMYYzzSS2jaAMLjcQoKreE0oo4VWF9dZgDtABCUOtY="; 817 }; 818 meta = with lib; { 819 homepage = "https://github.com/janoamaral/tokyo-night-tmux";
··· 808 tokyo-night-tmux = mkTmuxPlugin { 809 pluginName = "tokyo-night-tmux"; 810 rtpFilePath = "tokyo-night.tmux"; 811 + version = "1.6.6"; 812 src = pkgs.fetchFromGitHub { 813 owner = "janoamaral"; 814 repo = "tokyo-night-tmux"; 815 + rev = "caf6cbb4c3a32d716dfedc02bc63ec8cf238f632"; 816 + hash = "sha256-TOS9+eOEMInAgosB3D9KhahudW2i1ZEH+IXEc0RCpU0="; 817 }; 818 meta = with lib; { 819 homepage = "https://github.com/janoamaral/tokyo-night-tmux";
+2 -2
pkgs/misc/tmux-plugins/tmux-fingers/default.nix
··· 7 let 8 fingers = crystal.buildCrystalPackage rec { 9 format = "shards"; 10 - version = "2.5.0"; 11 pname = "fingers"; 12 src = fetchFromGitHub { 13 owner = "Morantron"; 14 repo = "tmux-fingers"; 15 rev = "${version}"; 16 - sha256 = "sha256-PESjKpVKRyuhkyiSzq2ZAD8CzFyqD3O7LcQxEbKfc9A="; 17 }; 18 19 shardsFile = ./shards.nix;
··· 7 let 8 fingers = crystal.buildCrystalPackage rec { 9 format = "shards"; 10 + version = "2.5.1"; 11 pname = "fingers"; 12 src = fetchFromGitHub { 13 owner = "Morantron"; 14 repo = "tmux-fingers"; 15 rev = "${version}"; 16 + sha256 = "sha256-O5CfboFnl51OeOgqI2NB3MmELDeKykd5NO2d5FGXkII="; 17 }; 18 19 shardsFile = ./shards.nix;
+1
pkgs/os-specific/linux/nvidia-x11/open.nix
··· 27 nativeBuildInputs = kernel.moduleBuildDependencies; 28 29 makeFlags = kernelModuleMakeFlags ++ [ 30 "SYSSRC=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source" 31 "SYSOUT=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" 32 "MODLIB=$(out)/lib/modules/${kernel.modDirVersion}"
··· 27 nativeBuildInputs = kernel.moduleBuildDependencies; 28 29 makeFlags = kernelModuleMakeFlags ++ [ 30 + "IGNORE_PREEMPT_RT_PRESENCE=1" 31 "SYSSRC=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source" 32 "SYSOUT=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" 33 "MODLIB=$(out)/lib/modules/${kernel.modDirVersion}"
+25 -14
pkgs/servers/xmpp/prosody/default.nix
··· 35 ++ withExtraLuaPackages p 36 ); 37 in 38 - stdenv.mkDerivation rec { 39 - version = "0.12.5"; # also update communityModules 40 pname = "prosody"; 41 # The following community modules are necessary for the nixos module 42 # prosody module to comply with XEP-0423 and provide a working 43 # default setup. 44 nixosModuleDeps = [ 45 "cloud_notify" 46 - "vcard_muc" 47 - "http_upload" 48 ]; 49 - src = fetchurl { 50 - url = "https://prosody.im/downloads/source/${pname}-${version}.tar.gz"; 51 - sha256 = "sha256-d4+3cHoPEDmVlbp6ucZt0qIojArjp/5Kt4+X1GK9OZ8="; 52 - }; 53 54 # A note to all those merging automated updates: Please also update this 55 # attribute as some modules might not be compatible with a newer prosody 56 # version. 57 communityModules = fetchhg { 58 url = "https://hg.prosody.im/prosody-modules"; 59 - rev = "fc521fb5ffa0"; 60 - hash = "sha256-Ci52Xkx1xd3GW9lBPKgWFBB52SocxKyj8f/Hq3hZeak="; 61 }; 62 63 nativeBuildInputs = [ makeWrapper ]; 64 buildInputs = [ 65 luaEnv 66 libidn ··· 77 "--c-compiler=${stdenv.cc.targetPrefix}cc" 78 "--linker=${stdenv.cc.targetPrefix}cc" 79 ]; 80 configurePlatforms = [ ]; 81 82 postBuild = '' ··· 93 postInstall = '' 94 ${lib.concatMapStringsSep "\n" 95 (module: '' 96 - cp -r $communityModules/mod_${module} $out/lib/prosody/modules/ 97 '') 98 - (lib.lists.unique (nixosModuleDeps ++ withCommunityModules ++ withOnlyInstalledCommunityModules)) 99 } 100 make -C tools/migration install 101 ''; ··· 110 license = licenses.mit; 111 homepage = "https://prosody.im"; 112 platforms = platforms.linux; 113 - maintainers = with maintainers; [ toastal ]; 114 }; 115 - }
··· 35 ++ withExtraLuaPackages p 36 ); 37 in 38 + stdenv.mkDerivation (finalAttrs: { 39 pname = "prosody"; 40 + version = "13.0.2"; # also update communityModules 41 + 42 + src = fetchurl { 43 + url = "https://prosody.im/downloads/source/prosody-${finalAttrs.version}.tar.gz"; 44 + hash = "sha256-PmG9OW83ylJF3r/WvkmkemGRMy8Pqi1O5fAPuwQK3bA="; 45 + }; 46 + 47 # The following community modules are necessary for the nixos module 48 # prosody module to comply with XEP-0423 and provide a working 49 # default setup. 50 nixosModuleDeps = [ 51 "cloud_notify" 52 ]; 53 54 # A note to all those merging automated updates: Please also update this 55 # attribute as some modules might not be compatible with a newer prosody 56 # version. 57 communityModules = fetchhg { 58 url = "https://hg.prosody.im/prosody-modules"; 59 + rev = "a4d7fefa4a8b"; 60 + hash = "sha256-lPxKZlIVyAt1Nx+PQ0ru0qihJ1ecBbvO0fMk+5D+NzE="; 61 }; 62 63 nativeBuildInputs = [ makeWrapper ]; 64 + 65 buildInputs = [ 66 luaEnv 67 libidn ··· 78 "--c-compiler=${stdenv.cc.targetPrefix}cc" 79 "--linker=${stdenv.cc.targetPrefix}cc" 80 ]; 81 + 82 configurePlatforms = [ ]; 83 84 postBuild = '' ··· 95 postInstall = '' 96 ${lib.concatMapStringsSep "\n" 97 (module: '' 98 + cp -r ${finalAttrs.communityModules}/mod_${module} $out/lib/prosody/modules/ 99 '') 100 + ( 101 + lib.lists.unique ( 102 + finalAttrs.nixosModuleDeps ++ withCommunityModules ++ withOnlyInstalledCommunityModules 103 + ) 104 + ) 105 } 106 make -C tools/migration install 107 ''; ··· 116 license = licenses.mit; 117 homepage = "https://prosody.im"; 118 platforms = platforms.linux; 119 + mainProgram = "prosody"; 120 + maintainers = with maintainers; [ 121 + toastal 122 + mirror230469 123 + ]; 124 + teams = with lib.teams; [ c3d2 ]; 125 }; 126 + })
+1
pkgs/top-level/aliases.nix
··· 1279 mathematica9 = throw "mathematica9 has been removed as it was obsolete, broken, and depended on OpenCV 2"; # Added 2024-08-20 1280 mathematica10 = throw "mathematica10 has been removed as it was obsolete, broken, and depended on OpenCV 2"; # Added 2024-08-20 1281 mathematica11 = throw "mathematica11 has been removed as it was obsolete, broken, and depended on OpenCV 2"; # Added 2024-08-20 1282 matomo_5 = matomo; # Added 2024-12-12 1283 matomo-beta = throw "matomo-beta has been removed as it mostly just pointed to the latest matomo release, use `matomo.overrideAttrs` to access a specific beta version instead"; # Added 2025-01-15 1284 matrique = throw "'matrique' has been renamed to/replaced by 'spectral'"; # Converted to throw 2024-10-17
··· 1279 mathematica9 = throw "mathematica9 has been removed as it was obsolete, broken, and depended on OpenCV 2"; # Added 2024-08-20 1280 mathematica10 = throw "mathematica10 has been removed as it was obsolete, broken, and depended on OpenCV 2"; # Added 2024-08-20 1281 mathematica11 = throw "mathematica11 has been removed as it was obsolete, broken, and depended on OpenCV 2"; # Added 2024-08-20 1282 + mathlibtools = throw "mathlibtools has been removed as it was archived upstream in 2023"; # Added 2025-07-09 1283 matomo_5 = matomo; # Added 2024-12-12 1284 matomo-beta = throw "matomo-beta has been removed as it mostly just pointed to the latest matomo release, use `matomo.overrideAttrs` to access a specific beta version instead"; # Added 2025-01-15 1285 matrique = throw "'matrique' has been renamed to/replaced by 'spectral'"; # Converted to throw 2024-10-17
+1 -39
pkgs/top-level/all-packages.nix
··· 1418 stdenv = gcc14Stdenv; 1419 }; 1420 1421 - snes9x-gtk = snes9x.override { 1422 - withGtk = true; 1423 - }; 1424 - 1425 winetricks = callPackage ../applications/emulators/wine/winetricks.nix { }; 1426 1427 zsnes = pkgsi686Linux.callPackage ../applications/emulators/zsnes { }; ··· 6646 6647 h3 = h3_3; 6648 6649 - avrlibc = callPackage ../development/misc/avr/libc { 6650 - stdenv = stdenvNoLibc; 6651 - }; 6652 - 6653 sourceFromHead = callPackage ../build-support/source-from-head-fun.nix { }; 6654 6655 jruby = callPackage ../development/interpreters/jruby { }; ··· 8005 withGd = true; 8006 }; 8007 8008 - musl = callPackage ../by-name/mu/musl/package.nix ( 8009 - lib.optionalAttrs (stdenv.hostPlatform != stdenv.buildPlatform) { 8010 - stdenv = stdenvNoLibc; 8011 - } 8012 - ); 8013 - 8014 # These are used when building compiler-rt / libgcc, prior to building libc. 8015 preLibcHeaders = 8016 let ··· 8081 # For win32 or posix set this to null 8082 package = windows.mcfgthreads; 8083 }; 8084 - 8085 - wasilibc = callPackage ../development/libraries/wasilibc { 8086 - stdenv = stdenvNoLibc; 8087 - }; 8088 8089 # Only supported on Linux and only on glibc 8090 glibcLocales = ··· 12603 12604 kexi = libsForQt5.callPackage ../applications/office/kexi { }; 12605 12606 - kid3-cli = kid3.override { 12607 - withCLI = true; 12608 - withKDE = false; 12609 - withQt = false; 12610 - }; 12611 - kid3-kde = kid3.override { 12612 - withCLI = true; 12613 - withKDE = true; 12614 - withQt = false; 12615 - }; 12616 - kid3-qt = kid3.override { 12617 - withCLI = true; 12618 - withKDE = false; 12619 - withQt = true; 12620 - }; 12621 - 12622 kiwix = libsForQt5.callPackage ../applications/misc/kiwix { }; 12623 12624 kiwix-tools = callPackage ../applications/misc/kiwix/tools.nix { }; ··· 15332 isabelle-components = recurseIntoAttrs (callPackage ../by-name/is/isabelle/components { }); 15333 15334 lean3 = lean; 15335 - mathlibtools = with python3Packages; toPythonApplication mathlibtools; 15336 15337 leo2 = callPackage ../applications/science/logic/leo2 { 15338 inherit (ocaml-ng.ocamlPackages_4_14_unsafe_string) ocaml camlp4; ··· 16287 16288 xp-pen-deco-01-v2-driver = libsForQt5.xp-pen-deco-01-v2-driver; 16289 16290 - newlib = callPackage ../development/misc/newlib { 16291 - stdenv = stdenvNoLibc; 16292 - }; 16293 16294 newlib-nano = callPackage ../development/misc/newlib { 16295 - stdenv = stdenvNoLibc; 16296 nanoizeNewlib = true; 16297 }; 16298
··· 1418 stdenv = gcc14Stdenv; 1419 }; 1420 1421 winetricks = callPackage ../applications/emulators/wine/winetricks.nix { }; 1422 1423 zsnes = pkgsi686Linux.callPackage ../applications/emulators/zsnes { }; ··· 6642 6643 h3 = h3_3; 6644 6645 sourceFromHead = callPackage ../build-support/source-from-head-fun.nix { }; 6646 6647 jruby = callPackage ../development/interpreters/jruby { }; ··· 7997 withGd = true; 7998 }; 7999 8000 # These are used when building compiler-rt / libgcc, prior to building libc. 8001 preLibcHeaders = 8002 let ··· 8067 # For win32 or posix set this to null 8068 package = windows.mcfgthreads; 8069 }; 8070 8071 # Only supported on Linux and only on glibc 8072 glibcLocales = ··· 12585 12586 kexi = libsForQt5.callPackage ../applications/office/kexi { }; 12587 12588 kiwix = libsForQt5.callPackage ../applications/misc/kiwix { }; 12589 12590 kiwix-tools = callPackage ../applications/misc/kiwix/tools.nix { }; ··· 15298 isabelle-components = recurseIntoAttrs (callPackage ../by-name/is/isabelle/components { }); 15299 15300 lean3 = lean; 15301 15302 leo2 = callPackage ../applications/science/logic/leo2 { 15303 inherit (ocaml-ng.ocamlPackages_4_14_unsafe_string) ocaml camlp4; ··· 16252 16253 xp-pen-deco-01-v2-driver = libsForQt5.xp-pen-deco-01-v2-driver; 16254 16255 + newlib = callPackage ../development/misc/newlib { }; 16256 16257 newlib-nano = callPackage ../development/misc/newlib { 16258 nanoizeNewlib = true; 16259 }; 16260
+2
pkgs/top-level/python-aliases.nix
··· 422 mapbox = throw "mapbox has been removed because the upstream repository was archived in 2022"; # Added 2024-10-04 423 marshmallow-enum = throw "marshmallow-enum has been removed because it was archived in 2022 and had no maintainer"; # added 2024-05-10 424 markerlib = throw "markerlib has been removed because it's abandoned since 2013"; # added 2023-05-19 425 matrix-api-async = throw "matrix-api-async has been removed as it is an old wrapper and no longer in use"; # added 2025-01-01 426 memory_profiler = memory-profiler; # added 2023-10-09 427 mir_eval = mir-eval; # added 2024-01-07 ··· 735 setuptoolsCheckHook = throw "The setuptoolsCheckHook has been removed, since the test command has been removed in setuptools 72.0."; # added 2024-08-06 736 setuptoolsTrial = setuptools-trial; # added 2023-11-11 737 sharkiqpy = sharkiq; # added 2022-05-21 738 shouldbe = throw "shouldbe was removed, because it was disabled on all python version since 3.8 and last updated in 2019."; # added 2024-05-12 739 sip_4 = sip4; # added 2024-01-07 740 slackclient = slack-sdk; # added 2024-06-27
··· 422 mapbox = throw "mapbox has been removed because the upstream repository was archived in 2022"; # Added 2024-10-04 423 marshmallow-enum = throw "marshmallow-enum has been removed because it was archived in 2022 and had no maintainer"; # added 2024-05-10 424 markerlib = throw "markerlib has been removed because it's abandoned since 2013"; # added 2023-05-19 425 + mathlibtools = throw "mathlibtools has been removed because the upstream repository was archived in 2023"; # added 2025-07-09 426 matrix-api-async = throw "matrix-api-async has been removed as it is an old wrapper and no longer in use"; # added 2025-01-01 427 memory_profiler = memory-profiler; # added 2023-10-09 428 mir_eval = mir-eval; # added 2024-01-07 ··· 736 setuptoolsCheckHook = throw "The setuptoolsCheckHook has been removed, since the test command has been removed in setuptools 72.0."; # added 2024-08-06 737 setuptoolsTrial = setuptools-trial; # added 2023-11-11 738 sharkiqpy = sharkiq; # added 2022-05-21 739 + shippai = throw "shippai has been removed because the upstream repository was archived in 2023"; # added 2025-07-09 740 shouldbe = throw "shouldbe was removed, because it was disabled on all python version since 3.8 and last updated in 2019."; # added 2024-05-12 741 sip_4 = sip4; # added 2024-01-07 742 slackclient = slack-sdk; # added 2024-06-27
+2 -4
pkgs/top-level/python-packages.nix
··· 8905 8906 materialyoucolor = callPackage ../development/python-modules/materialyoucolor { }; 8907 8908 - mathlibtools = callPackage ../development/python-modules/mathlibtools { }; 8909 - 8910 mathutils = callPackage ../development/python-modules/mathutils { }; 8911 8912 matlink-gpapi = callPackage ../development/python-modules/matlink-gpapi { }; ··· 16386 16387 shiny = callPackage ../development/python-modules/shiny { }; 16388 16389 - shippai = callPackage ../development/python-modules/shippai { }; 16390 - 16391 shippinglabel = callPackage ../development/python-modules/shippinglabel { }; 16392 16393 shiv = callPackage ../development/python-modules/shiv { }; ··· 16509 siphash24 = callPackage ../development/python-modules/siphash24 { }; 16510 16511 siphashc = callPackage ../development/python-modules/siphashc { }; 16512 16513 sipyco = callPackage ../development/python-modules/sipyco { }; 16514
··· 8905 8906 materialyoucolor = callPackage ../development/python-modules/materialyoucolor { }; 8907 8908 mathutils = callPackage ../development/python-modules/mathutils { }; 8909 8910 matlink-gpapi = callPackage ../development/python-modules/matlink-gpapi { }; ··· 16384 16385 shiny = callPackage ../development/python-modules/shiny { }; 16386 16387 shippinglabel = callPackage ../development/python-modules/shippinglabel { }; 16388 16389 shiv = callPackage ../development/python-modules/shiv { }; ··· 16505 siphash24 = callPackage ../development/python-modules/siphash24 { }; 16506 16507 siphashc = callPackage ../development/python-modules/siphashc { }; 16508 + 16509 + sipsimple = callPackage ../development/python-modules/sipsimple { }; 16510 16511 sipyco = callPackage ../development/python-modules/sipyco { }; 16512