lol

Merge remote-tracking branch 'origin/master' into staging-next

Conflicts:
pkgs/development/python-modules/reflex-hosting-cli/default.nix
pkgs/development/python-modules/reflex/default.nix

+1250 -2406
+2
doc/manpage-urls.json
··· 16 16 "environment.d(5)": "https://www.freedesktop.org/software/systemd/man/environment.d.html", 17 17 "extension-release(5)": "https://www.freedesktop.org/software/systemd/man/extension-release.html", 18 18 "file-hierarchy(7)": "https://www.freedesktop.org/software/systemd/man/file-hierarchy.html", 19 + "fstab(5)": "https://man.archlinux.org/man/fstab.5", 19 20 "gnunet.conf(5)": "https://docs.gnunet.org/latest/users/configuration.html", 20 21 "group(5)": "https://man.archlinux.org/man/group.5", 21 22 "halt(8)": "https://www.freedesktop.org/software/systemd/man/halt.html", ··· 59 60 "machinectl(1)": "https://www.freedesktop.org/software/systemd/man/machinectl.html", 60 61 "mksquashfs(1)": "https://man.archlinux.org/man/extra/squashfs-tools/mksquashfs.1.en", 61 62 "modules-load.d(5)": "https://www.freedesktop.org/software/systemd/man/modules-load.d.html", 63 + "mount(8)": "https://man.archlinux.org/man/mount.8", 62 64 "mount.ddi(1)": "https://www.freedesktop.org/software/systemd/man/mount.ddi.html", 63 65 "mpd(1)": "https://mpd.readthedocs.io/en/latest/mpd.1.html", 64 66 "mpd.conf(5)": "https://mpd.readthedocs.io/en/latest/mpd.conf.5.html",
+12
maintainers/maintainer-list.nix
··· 10655 10655 githubId = 1550265; 10656 10656 name = "Dominic Steinitz"; 10657 10657 }; 10658 + iedame = { 10659 + email = "git@ieda.me"; 10660 + github = "iedame"; 10661 + githubId = 60272; 10662 + name = "Rafael Ieda"; 10663 + }; 10658 10664 if-loop69420 = { 10659 10665 github = "if-loop69420"; 10660 10666 githubId = 81078181; ··· 15756 15762 github = "mattchrist"; 15757 15763 githubId = 952712; 15758 15764 name = "Matt Christ"; 15765 + }; 15766 + mattdef = { 15767 + email = "mattdef@gmail.com"; 15768 + github = "mattdef"; 15769 + githubId = 5595001; 15770 + name = "Matt Cast"; 15759 15771 }; 15760 15772 matteobongio = { 15761 15773 github = "matteobongio";
+12 -3
nixos/modules/system/boot/loader/grub/grub.nix
··· 846 846 environment.systemPackages = mkIf (grub != null) [ grub ]; 847 847 848 848 boot.loader.grub.extraPrepareConfig = concatStrings ( 849 - mapAttrsToList (n: v: '' 850 - ${pkgs.coreutils}/bin/install -Dp "${v}" "${efi.efiSysMountPoint}/"${escapeShellArg n} 851 - '') config.boot.loader.grub.extraFiles 849 + mapAttrsToList ( 850 + fileName: sourcePath: 851 + flip concatMapStrings cfg.mirroredBoots ( 852 + args: 853 + let 854 + efiSysMountPoint = if args.efiSysMountPoint == null then args.path else args.efiSysMountPoint; 855 + in 856 + '' 857 + ${pkgs.coreutils}/bin/install -Dp ${escapeShellArg sourcePath} ${escapeShellArg efiSysMountPoint}/${escapeShellArg fileName} 858 + '' 859 + ) 860 + ) config.boot.loader.grub.extraFiles 852 861 ); 853 862 854 863 assertions = [
+5
nixos/modules/system/boot/systemd.nix
··· 550 550 (mkAfter [ "[success=merge] systemd" ]) # need merge so that NSS won't stop at file-based groups 551 551 ] 552 552 ); 553 + shadow = ( 554 + mkMerge [ 555 + (mkAfter [ "systemd" ]) 556 + ] 557 + ); 553 558 }; 554 559 555 560 environment.systemPackages = [ cfg.package ];
+57 -11
nixos/modules/system/boot/systemd/homed.nix
··· 1 1 { 2 2 config, 3 3 lib, 4 - pkgs, 4 + utils, 5 5 ... 6 6 }: 7 7 8 8 let 9 9 cfg = config.services.homed; 10 10 in 11 + 11 12 { 12 - options.services.homed.enable = lib.mkEnableOption '' 13 - systemd home area/user account manager 14 - ''; 13 + options.services.homed = { 14 + enable = lib.mkEnableOption "systemd home area/user account manager"; 15 + 16 + promptOnFirstBoot = 17 + lib.mkEnableOption '' 18 + interactively prompting for user creation on first boot 19 + '' 20 + // { 21 + default = true; 22 + }; 23 + 24 + settings.Home = lib.mkOption { 25 + default = { }; 26 + type = lib.types.submodule { 27 + freeformType = lib.types.attrsOf utils.systemdUtils.unitOptions.unitOption; 28 + }; 29 + example = { 30 + DefaultStorage = "luks"; 31 + DefaultFileSystemType = "btrfs"; 32 + }; 33 + description = '' 34 + Options for systemd-homed. See {manpage}`homed.conf(5)` man page for 35 + available options. 36 + ''; 37 + }; 38 + }; 15 39 16 40 config = lib.mkIf cfg.enable { 17 41 assertions = [ 18 42 { 19 43 assertion = config.services.nscd.enable; 20 - message = "systemd-homed requires the use of systemd nss module. services.nscd.enable must be set to true,"; 44 + message = '' 45 + systemd-homed requires the use of the systemd nss module. 46 + services.nscd.enable must be set to true. 47 + ''; 21 48 } 22 49 ]; 23 50 24 51 systemd.additionalUpstreamSystemUnits = [ 25 52 "systemd-homed.service" 26 53 "systemd-homed-activate.service" 54 + "systemd-homed-firstboot.service" 27 55 ]; 28 56 29 - # This is mentioned in homed's [Install] section. 30 - # 31 - # While homed appears to work without it, it's probably better 32 - # to follow upstream recommendations. 33 - services.userdbd.enable = lib.mkDefault true; 57 + # homed exposes SSH public keys and other user metadata using userdb 58 + services.userdbd = { 59 + enable = true; 60 + enableSSHSupport = lib.mkDefault config.services.openssh.enable; 61 + }; 62 + 63 + # Enable creation and mounting of LUKS home areas with all filesystems 64 + # supported by systemd-homed. 65 + boot.supportedFilesystems = [ 66 + "btrfs" 67 + "ext4" 68 + "xfs" 69 + ]; 70 + 71 + environment.etc."systemd/homed.conf".text = '' 72 + [Home] 73 + ${utils.systemdUtils.lib.attrsToSection cfg.settings.Home} 74 + ''; 34 75 35 76 systemd.services = { 36 77 systemd-homed = { 37 - # These packages are required to manage encrypted volumes 78 + # These packages are required to manage home areas with LUKS storage 38 79 path = config.system.fsPackages; 39 80 aliases = [ "dbus-org.freedesktop.home1.service" ]; 40 81 wantedBy = [ "multi-user.target" ]; 41 82 }; 42 83 43 84 systemd-homed-activate = { 85 + wantedBy = [ "systemd-homed.service" ]; 86 + }; 87 + 88 + systemd-homed-firstboot = { 89 + enable = cfg.promptOnFirstBoot; 44 90 wantedBy = [ "systemd-homed.service" ]; 45 91 }; 46 92 };
+69 -3
nixos/modules/system/boot/systemd/userdbd.nix
··· 2 2 3 3 let 4 4 cfg = config.services.userdbd; 5 + 6 + # List of system users that will be incorrectly treated as regular/normal 7 + # users by userdb. 8 + highSystemUsers = lib.filter ( 9 + user: user.enable && user.isSystemUser && (lib.defaultTo 0 user.uid) >= 1000 && user.uid != 65534 10 + ) (lib.attrValues config.users.users); 5 11 in 6 12 { 7 - options.services.userdbd.enable = lib.mkEnableOption '' 8 - the systemd JSON user/group record lookup service 9 - ''; 13 + options.services.userdbd = { 14 + enable = lib.mkEnableOption '' 15 + the systemd JSON user/group record lookup service 16 + ''; 17 + 18 + enableSSHSupport = lib.mkEnableOption '' 19 + exposing OpenSSH public keys defined in userdb. Be aware that this 20 + enables modifying public keys at runtime, either by users managed by 21 + {option}`services.homed`, or globally via drop-in files 22 + ''; 23 + 24 + silenceHighSystemUsers = lib.mkOption { 25 + type = lib.types.bool; 26 + default = false; 27 + example = true; 28 + description = "Silence warning about system users with high UIDs."; 29 + visible = false; 30 + }; 31 + }; 32 + 10 33 config = lib.mkIf cfg.enable { 34 + assertions = lib.singleton { 35 + assertion = cfg.enableSSHSupport -> config.security.enableWrappers; 36 + message = "OpenSSH userdb integration requires security wrappers."; 37 + }; 38 + 39 + warnings = lib.optional (lib.length highSystemUsers > 0 && !cfg.silenceHighSystemUsers) '' 40 + The following system users have UIDs higher than 1000: 41 + 42 + ${lib.concatLines (lib.map (user: user.name) highSystemUsers)} 43 + 44 + These users will be recognized by systemd-userdb as "regular" users, not 45 + "system" users. This will affect programs that query regular users, such 46 + as systemd-homed, which will not run the first boot user creation flow, 47 + as regular users already exist. 48 + 49 + To fix this issue, please remove or redefine these system users to have 50 + UIDs below 1000. For Nix build users, it's possible to adjust the base 51 + build user ID using the `ids.uids.nixbld` option, however care must be 52 + taken to avoid collisions with UIDs of other services. Alternatively, you 53 + may enable the `auto-allocate-uids` experimental feature and option in 54 + the Nix configuration to avoid creating these users, however please note 55 + that this option is experimental and subject to change. 56 + 57 + Alternatively, to acknowledge and silence this warning, set 58 + `services.userdbd.silenceHighSystemUsers` to true. 59 + ''; 60 + 11 61 systemd.additionalUpstreamSystemUnits = [ 12 62 "systemd-userdbd.socket" 13 63 "systemd-userdbd.service" 14 64 ]; 15 65 16 66 systemd.sockets.systemd-userdbd.wantedBy = [ "sockets.target" ]; 67 + 68 + # OpenSSH requires AuthorizedKeysCommand to be owned only by root. 69 + # Referencing `userdbctl` directly from the Nix store won't work, as 70 + # `/nix/store` is owned by the `nixbld` group. 71 + security.wrappers = lib.mkIf cfg.enableSSHSupport { 72 + userdbctl = { 73 + owner = "root"; 74 + group = "root"; 75 + source = lib.getExe' config.systemd.package "userdbctl"; 76 + }; 77 + }; 78 + 79 + services.openssh = lib.mkIf cfg.enableSSHSupport { 80 + authorizedKeysCommand = "/run/wrappers/bin/userdbctl ssh-authorized-keys %u"; 81 + authorizedKeysCommandUser = "root"; 82 + }; 17 83 }; 18 84 }
+41 -6
nixos/modules/tasks/filesystems.nix
··· 84 84 mountPoint = mkOption { 85 85 example = "/mnt/usb"; 86 86 type = nonEmptyWithoutTrailingSlash; 87 - description = "Location of the mounted file system."; 87 + default = name; 88 + description = '' 89 + Location where the file system will be mounted. 90 + 91 + This is called `mountpoint` in {manpage}`mount(8)` and `fs_file` in {manpage}`fstab(5)` 92 + ''; 88 93 }; 89 94 90 95 stratis.poolUuid = mkOption { 91 96 type = types.uniq (types.nullOr types.str); 92 97 description = '' 93 98 UUID of the stratis pool that the fs is located in 99 + 100 + This is only relevant if you are using [stratis](https://stratis-storage.github.io/). 94 101 ''; 95 102 example = "04c68063-90a5-4235-b9dd-6180098a20d9"; 96 103 default = null; ··· 100 107 default = null; 101 108 example = "/dev/sda"; 102 109 type = types.nullOr nonEmptyStr; 103 - description = "Location of the device."; 110 + description = '' 111 + The device as passed to `mount`. 112 + 113 + This can be any of: 114 + 115 + - a filename of a block special device such as `/dev/sdc3` 116 + - a tag such as `UUID=fdd68895-c307-4549-8c9c-90e44c71f5b7` 117 + - (for bind mounts only) the source path 118 + - something else depending on the {option}`fsType`. For example, `nfs` device may look like `knuth.cwi.nl:/dir` 119 + 120 + This is called `device` in {manpage}`mount(8)` and `fs_spec` in {manpage}`fstab(5)`. 121 + ''; 104 122 }; 105 123 106 124 fsType = mkOption { 107 125 default = "auto"; 108 126 example = "ext3"; 109 127 type = nonEmptyStr; 110 - description = "Type of the file system."; 128 + description = '' 129 + Type of the file system. 130 + 131 + This is the `fstype` passed to `-t` in the {manpage}`mount(8)` command, and is called `fs_vfstype` in {manpage}`fstab(5)`. 132 + ''; 111 133 }; 112 134 113 135 options = mkOption { ··· 115 137 example = [ "data=journal" ]; 116 138 description = '' 117 139 Options used to mount the file system. 118 - See {manpage}`mount(8)` for common options. 140 + 141 + This is called `options` in {manpage}`mount(8)` and `fs_mntops` in {manpage}`fstab(5)` 142 + 143 + Some options that can be used for all mounts are documented in {manpage}`mount(8)` under `FILESYSTEM-INDEPENDENT MOUNT OPTIONS`. 144 + 145 + Options that systemd understands are documented in {manpage}`systemd.mount(5)` under `FSTAB`. 146 + 147 + Each filesystem supports additional options, see the docs for that filesystem. 119 148 ''; 120 149 type = types.nonEmptyListOf nonEmptyStr; 121 150 }; ··· 131 160 to this list, any other filesystem whose mount point is a parent of 132 161 the path will be mounted before this filesystem. The paths do not need 133 162 to actually be the {option}`mountPoint` of some other filesystem. 163 + 164 + This is useful for mounts which require keys and/or configuration files residing on another filesystem. 134 165 ''; 135 166 }; 136 167 137 168 }; 138 169 139 170 config = { 140 - mountPoint = mkDefault name; 141 171 device = mkIf (elem config.fsType specialFSTypes) (mkDefault config.fsType); 142 172 }; 143 173 ··· 153 183 default = null; 154 184 example = "root-partition"; 155 185 type = types.nullOr nonEmptyStr; 156 - description = "Label of the device (if any)."; 186 + description = '' 187 + Label of the device. This simply sets {option}`device` to 188 + `/dev/disk/by-id/''${label}`. Note that devices will not 189 + have a label unless they contain a filesystem which 190 + supports labels, such as ext4 or fat32. 191 + ''; 157 192 }; 158 193 159 194 autoFormat = mkOption {
+109 -78
nixos/tests/systemd-homed.nix
··· 1 - { pkgs, lib, ... }: 2 1 let 3 - password = "foobarfoo"; 4 - newPass = "barfoobar"; 2 + username = "test-homed-user"; 3 + initialPassword = "foobarfoo"; 4 + newPassword = "barfoobar"; 5 5 in 6 + 6 7 { 7 8 name = "systemd-homed"; 8 - nodes.machine = 9 - { config, pkgs, ... }: 10 - { 11 - services.homed.enable = true; 12 9 13 - users.users.test-normal-user = { 14 - extraGroups = [ "wheel" ]; 15 - isNormalUser = true; 16 - initialPassword = password; 10 + nodes = { 11 + machine = 12 + { ... }: 13 + { 14 + services = { 15 + homed.enable = true; 16 + openssh.enable = true; 17 + }; 18 + 19 + # Prevent nixbld users from showing up as regular users, required for 20 + # first boot prompt 21 + nix.settings = { 22 + experimental-features = [ "auto-allocate-uids" ]; 23 + auto-allocate-uids = true; 24 + }; 17 25 }; 18 - }; 19 - testScript = '' 20 - def switchTTY(number): 21 - machine.send_key(f"alt-f{number}") 22 - machine.wait_until_succeeds(f"[ $(fgconsole) = {number} ]") 23 - machine.wait_for_unit(f"getty@tty{number}.service") 24 - machine.wait_until_succeeds(f"pgrep -f 'agetty.*tty{number}'") 25 26 26 - machine.wait_for_unit("multi-user.target") 27 + sshClient = 28 + { pkgs, ... }: 29 + { 30 + services = { 31 + homed.enable = true; 32 + userdbd.silenceHighSystemUsers = true; 33 + }; 27 34 28 - # Smoke test to make sure the pam changes didn't break regular users. 29 - machine.wait_until_succeeds("pgrep -f 'agetty.*tty1'") 30 - with subtest("login as regular user"): 31 - switchTTY(2) 32 - machine.wait_until_tty_matches("2", "login: ") 33 - machine.send_chars("test-normal-user\n") 34 - machine.wait_until_tty_matches("2", "login: test-normal-user") 35 - machine.wait_until_tty_matches("2", "Password: ") 36 - machine.send_chars("${password}\n") 37 - machine.wait_until_succeeds("pgrep -u test-normal-user bash") 38 - machine.send_chars("whoami > /tmp/1\n") 39 - machine.wait_for_file("/tmp/1") 40 - assert "test-normal-user" in machine.succeed("cat /tmp/1") 35 + # Regular user, should prevent first boot prompt 36 + users.users.test-normal-user = { 37 + extraGroups = [ "wheel" ]; 38 + isNormalUser = true; 39 + inherit initialPassword; 40 + }; 41 + }; 42 + }; 41 43 42 - with subtest("create homed encrypted user"): 43 - # TODO: Figure out how to pass password manually. 44 - # 45 - # This environment variable is used for homed internal testing 46 - # and is not documented. 47 - machine.succeed("NEWPASSWORD=${password} homectl create --shell=/run/current-system/sw/bin/bash --storage=luks -G wheel test-homed-user") 44 + testScript = '' 45 + start_all() 46 + 47 + with subtest("create systemd-homed user on first boot prompt"): 48 + machine.wait_for_unit("systemd-homed.service") 49 + machine.wait_until_tty_matches("1", "-- Press any key to proceed --") 50 + machine.send_chars(" ") 51 + machine.wait_until_tty_matches("1", "Please enter user name") 52 + machine.send_chars("${username}\n") 53 + machine.wait_until_tty_matches("1", "Please enter an auxiliary group") 54 + machine.send_chars("wheel\n") 55 + machine.wait_until_tty_matches("1", "Please enter an auxiliary group") 56 + machine.send_chars("\n") 57 + machine.wait_until_tty_matches("1", "Please enter the shell to use") 58 + machine.send_chars("/bin/sh\n") 59 + machine.wait_until_tty_matches("1", "Please enter new password") 60 + machine.send_chars("${initialPassword}\n") 61 + machine.wait_until_tty_matches("1", "(repeat)") 62 + machine.send_chars("${initialPassword}\n") 48 63 49 64 with subtest("login as homed user"): 50 - switchTTY(3) 51 - machine.wait_until_tty_matches("3", "login: ") 52 - machine.send_chars("test-homed-user\n") 53 - machine.wait_until_tty_matches("3", "login: test-homed-user") 54 - machine.wait_until_tty_matches("3", "Password: ") 55 - machine.send_chars("${password}\n") 56 - machine.wait_until_succeeds("pgrep -t tty3 -u test-homed-user bash") 65 + machine.wait_until_tty_matches("1", "login: ") 66 + machine.send_chars("${username}\n") 67 + machine.wait_until_tty_matches("1", "Password: ") 68 + machine.send_chars("${initialPassword}\n") 69 + machine.wait_until_succeeds("pgrep -u ${username} -t tty1 sh") 57 70 machine.send_chars("whoami > /tmp/2\n") 58 71 machine.wait_for_file("/tmp/2") 59 - assert "test-homed-user" in machine.succeed("cat /tmp/2") 72 + assert "${username}" in machine.succeed("cat /tmp/2") 73 + 74 + # Smoke test to make sure the pam changes didn't break regular users. 75 + # Since homed is also enabled in the sshClient, it also tests the first 76 + # boot prompt did not occur. 77 + with subtest("login as regular user"): 78 + sshClient.wait_until_tty_matches("1", "login: ") 79 + sshClient.send_chars("test-normal-user\n") 80 + sshClient.wait_until_tty_matches("1", "Password: ") 81 + sshClient.send_chars("${initialPassword}\n") 82 + sshClient.wait_until_succeeds("pgrep -u test-normal-user bash") 83 + sshClient.send_chars("whoami > /tmp/1\n") 84 + sshClient.wait_for_file("/tmp/1") 85 + assert "test-normal-user" in sshClient.succeed("cat /tmp/1") 86 + 87 + with subtest("add homed ssh authorized key"): 88 + sshClient.send_chars('ssh-keygen -t ed25519 -f /tmp/id_ed25519 -N ""\n') 89 + sshClient.wait_for_file("/tmp/id_ed25519.pub") 90 + public_key = sshClient.succeed('cat /tmp/id_ed25519.pub') 91 + public_key = public_key.strip() 92 + machine.succeed(f"homectl update ${username} --offline --ssh-authorized-keys '{public_key}'") 93 + machine.succeed("userdbctl ssh-authorized-keys ${username} | grep ed25519") 60 94 61 95 with subtest("change homed user password"): 62 - switchTTY(4) 63 - machine.wait_until_tty_matches("4", "login: ") 64 - machine.send_chars("test-homed-user\n") 65 - machine.wait_until_tty_matches("4", "login: test-homed-user") 66 - machine.wait_until_tty_matches("4", "Password: ") 67 - machine.send_chars("${password}\n") 68 - machine.wait_until_succeeds("pgrep -t tty4 -u test-homed-user bash") 69 - machine.send_chars("passwd\n") 96 + machine.send_chars("passwd; echo $? > /tmp/3\n") 70 97 # homed does it in a weird order, it asks for new passes, then it asks 71 98 # for the old one. 72 - machine.sleep(2) 73 - machine.send_chars("${newPass}\n") 74 - machine.sleep(2) 75 - machine.send_chars("${newPass}\n") 99 + machine.wait_until_tty_matches("1", "New password: ") 100 + machine.send_chars("${newPassword}\n") 101 + machine.wait_until_tty_matches("1", "Retype new password: ") 102 + machine.send_chars("${newPassword}\n") 103 + #machine.wait_until_tty_matches("1", "Password: ") 76 104 machine.sleep(4) 77 - machine.send_chars("${password}\n") 78 - machine.wait_until_fails("pgrep -t tty4 passwd") 79 - 80 - @polling_condition 81 - def not_logged_in_tty5(): 82 - machine.fail("pgrep -t tty5 bash") 105 + machine.send_chars("${initialPassword}\n") 106 + machine.wait_for_file("/tmp/3") 107 + assert "0\n" == machine.succeed("cat /tmp/3") 83 108 84 - switchTTY(5) 85 - with not_logged_in_tty5: # type: ignore[union-attr] 86 - machine.wait_until_tty_matches("5", "login: ") 87 - machine.send_chars("test-homed-user\n") 88 - machine.wait_until_tty_matches("5", "login: test-homed-user") 89 - machine.wait_until_tty_matches("5", "Password: ") 90 - machine.send_chars("${password}\n") 91 - machine.wait_until_tty_matches("5", "Password incorrect or not sufficient for authentication of user test-homed-user.") 92 - machine.wait_until_tty_matches("5", "Sorry, try again: ") 93 - machine.send_chars("${newPass}\n") 94 - machine.send_chars("whoami > /tmp/4\n") 109 + with subtest("escalate to root from homed user"): 110 + # Also tests the user is in wheel. 111 + machine.send_chars("sudo id | tee /tmp/4\n") 112 + machine.wait_until_tty_matches("1", "password for ${username}") 113 + machine.send_chars("${newPassword}\n") 95 114 machine.wait_for_file("/tmp/4") 96 - assert "test-homed-user" in machine.succeed("cat /tmp/4") 115 + machine.wait_until_succeeds("grep uid=0 /tmp/4") 97 116 98 - with subtest("homed user should be in wheel according to NSS"): 99 - machine.succeed("userdbctl group wheel -s io.systemd.NameServiceSwitch | grep test-homed-user") 117 + with subtest("log out and deactivate homed user's home area"): 118 + machine.send_chars("exit\n") 119 + machine.wait_until_succeeds("homectl inspect ${username} | grep 'State: inactive'") 120 + 121 + with subtest("ssh as homed user"): 122 + sshClient.send_chars("ssh -o StrictHostKeyChecking=no -i /tmp/id_ed25519 ${username}@machine\n") 123 + sshClient.wait_until_tty_matches("1", "Please enter password for user") 124 + sshClient.send_chars("${newPassword}\n") 125 + machine.wait_until_succeeds("pgrep -u ${username} sh") 126 + sshClient.send_chars("whoami > /tmp/5\n") 127 + machine.wait_for_file("/tmp/5") 128 + assert "${username}" in machine.succeed("cat /tmp/5") 129 + sshClient.send_chars("exit\n") # ssh 130 + sshClient.send_chars("exit\n") # sh 100 131 ''; 101 132 }
+2 -2
pkgs/applications/audio/qpwgraph/default.nix
··· 14 14 15 15 stdenv.mkDerivation (finalAttrs: { 16 16 pname = "qpwgraph"; 17 - version = "0.9.4"; 17 + version = "0.9.5"; 18 18 19 19 src = fetchFromGitLab { 20 20 domain = "gitlab.freedesktop.org"; 21 21 owner = "rncbc"; 22 22 repo = "qpwgraph"; 23 23 rev = "v${finalAttrs.version}"; 24 - sha256 = "sha256-VvOdorj+CpFSI+iyVeMR0enXGO5mLPE8KiaHGuG/KDQ="; 24 + sha256 = "sha256-0cFsRMcQtzOM0tApmBRMhTR5J3Ohvm+ykChCvygpOQM="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+365 -365
pkgs/applications/editors/vim/plugins/generated.nix
··· 74 74 75 75 CopilotChat-nvim = buildVimPlugin { 76 76 pname = "CopilotChat.nvim"; 77 - version = "2025-08-04"; 77 + version = "2025-08-14"; 78 78 src = fetchFromGitHub { 79 79 owner = "CopilotC-Nvim"; 80 80 repo = "CopilotChat.nvim"; 81 - rev = "091bf5455bc5b371bd469e6be1dfcc656524321a"; 82 - sha256 = "12dz713vj8j84drwwlzcm8iffh5mizwkk27d2zdna3c4lpjzp99i"; 81 + rev = "5f3c57083515ea511deda291ae72434db568ee6f"; 82 + sha256 = "0nqry8fg21sygrs8l6akq9nzgkysq1axr9s6b6bp68jx6vnbdi0c"; 83 83 }; 84 84 meta.homepage = "https://github.com/CopilotC-Nvim/CopilotChat.nvim/"; 85 85 meta.hydraPlatforms = [ ]; ··· 399 399 400 400 SchemaStore-nvim = buildVimPlugin { 401 401 pname = "SchemaStore.nvim"; 402 - version = "2025-08-02"; 402 + version = "2025-08-14"; 403 403 src = fetchFromGitHub { 404 404 owner = "b0o"; 405 405 repo = "SchemaStore.nvim"; 406 - rev = "34e3958a9afd7d1bd938b0cd9eecaa6f1925d4c4"; 407 - sha256 = "0pbdns4a63f2xqw4jhxf1wj5wjyrgw2c1a9az2spgc2ps8vzjs6z"; 406 + rev = "ae4039eceaeda147a91b6b26e4fb4a2ca16bb503"; 407 + sha256 = "0z9ykmrndpcxr8j4c7wbyna20x4wzdrvamfn5kida8gli8jhf395"; 408 408 }; 409 409 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 410 410 meta.hydraPlatforms = [ ]; ··· 752 752 753 753 ale = buildVimPlugin { 754 754 pname = "ale"; 755 - version = "2025-07-20"; 755 + version = "2025-08-14"; 756 756 src = fetchFromGitHub { 757 757 owner = "dense-analysis"; 758 758 repo = "ale"; 759 - rev = "3d68ec78572059b1bdb5f2f3fb85942e8627e118"; 760 - sha256 = "18a3jzzb89203yxw7ss37inpj4cnjl95bh4y6kqkbgspgg45pvbg"; 759 + rev = "9acafa8018993e8110a200fb3adbf6d2cb22d1fe"; 760 + sha256 = "0x9nhsa9407vfffqzv3jhfmsd5s6qj4bpsc90lld98pii1flpjxv"; 761 761 }; 762 762 meta.homepage = "https://github.com/dense-analysis/ale/"; 763 763 meta.hydraPlatforms = [ ]; ··· 934 934 935 935 astrotheme = buildVimPlugin { 936 936 pname = "astrotheme"; 937 - version = "2025-06-06"; 937 + version = "2025-08-07"; 938 938 src = fetchFromGitHub { 939 939 owner = "AstroNvim"; 940 940 repo = "astrotheme"; 941 - rev = "3d2e2c08344930606812f0934a0afcb522fa1c71"; 942 - sha256 = "1wp56wlmd4sjq5fv0np81bdy31rv38mk9ha4hhjl34rgk19aqw3w"; 941 + rev = "0a3fb361f1e3d6a0cbb42e93f3d01fb5203b6752"; 942 + sha256 = "183bmxnvyqn24wws8xhf2ifjpmz1hfsz3lxhg23193wkyh2gjh33"; 943 943 }; 944 944 meta.homepage = "https://github.com/AstroNvim/astrotheme/"; 945 945 meta.hydraPlatforms = [ ]; ··· 1103 1103 1104 1104 augment-vim = buildVimPlugin { 1105 1105 pname = "augment.vim"; 1106 - version = "2025-07-30"; 1106 + version = "2025-08-14"; 1107 1107 src = fetchFromGitHub { 1108 1108 owner = "augmentcode"; 1109 1109 repo = "augment.vim"; 1110 - rev = "b35cda0dab3b729e2eee3d792dcdb0ca7bb2482e"; 1111 - sha256 = "05lwi6wp77dgaa9fn719piab3k8s5x7djfbzmbvmypp8zk8az6wx"; 1110 + rev = "e8a1a77d796d915377778c6e4fd51b22301795a4"; 1111 + sha256 = "1kijr3v6cb9db55nl6sc9yamif8ikm81m52ngb73fb27vkp6llfn"; 1112 1112 }; 1113 1113 meta.homepage = "https://github.com/augmentcode/augment.vim/"; 1114 1114 meta.hydraPlatforms = [ ]; ··· 1129 1129 1130 1130 auto-fix-return-nvim = buildVimPlugin { 1131 1131 pname = "auto-fix-return.nvim"; 1132 - version = "2025-07-26"; 1132 + version = "2025-08-12"; 1133 1133 src = fetchFromGitHub { 1134 1134 owner = "Jay-Madden"; 1135 1135 repo = "auto-fix-return.nvim"; 1136 - rev = "0ea48307f89caaf8bc8d17a4a611d9f94adaa768"; 1137 - sha256 = "1knwi21jp50iip7jxpi1z5jdlbbh6bd42m4970k9aj5nyqy3asw7"; 1136 + rev = "b3b672ac05039ea7e1527e99064f4221166b0f84"; 1137 + sha256 = "1sfpbzznfkisslr21h4lv99fgd6kz3d5r0kdhiranjrj5wviqm5h"; 1138 1138 }; 1139 1139 meta.homepage = "https://github.com/Jay-Madden/auto-fix-return.nvim/"; 1140 1140 meta.hydraPlatforms = [ ]; ··· 1194 1194 1195 1195 auto-session = buildVimPlugin { 1196 1196 pname = "auto-session"; 1197 - version = "2025-07-28"; 1197 + version = "2025-08-14"; 1198 1198 src = fetchFromGitHub { 1199 1199 owner = "rmagatti"; 1200 1200 repo = "auto-session"; 1201 - rev = "c93a9bfd8a5cbf931a6ead5c824998da874b9f79"; 1202 - sha256 = "03z853sjk06plr8z57g32wwc442bskabqff1shrfxsrh4gn3532j"; 1201 + rev = "6403b7415da71ad05f49827cb569eddaef0b0be0"; 1202 + sha256 = "18gji86kxg19i45ysif27sf6xk2g6s0x9xjy9ahqxlqcs39pzfax"; 1203 1203 }; 1204 1204 meta.homepage = "https://github.com/rmagatti/auto-session/"; 1205 1205 meta.hydraPlatforms = [ ]; ··· 1351 1351 1352 1352 bamboo-nvim = buildVimPlugin { 1353 1353 pname = "bamboo.nvim"; 1354 - version = "2025-06-05"; 1354 + version = "2025-08-13"; 1355 1355 src = fetchFromGitHub { 1356 1356 owner = "ribru17"; 1357 1357 repo = "bamboo.nvim"; 1358 - rev = "ab8393d1a314d96314605369b4b1e6bc7737f2b5"; 1359 - sha256 = "12fia7ix4c515kjkm8hqrk4x7cbzm81kz3sk33r3qmdh7mm4rwiv"; 1358 + rev = "56c924d0cbd3a37f9d0ea1235a189a3cccde1f44"; 1359 + sha256 = "1dbs5c9n3bzj75ljbj3qb3n3nd9s5z3kbga4w04fqziqhi3kx9s3"; 1360 1360 }; 1361 1361 meta.homepage = "https://github.com/ribru17/bamboo.nvim/"; 1362 1362 meta.hydraPlatforms = [ ]; ··· 1364 1364 1365 1365 barbar-nvim = buildVimPlugin { 1366 1366 pname = "barbar.nvim"; 1367 - version = "2025-04-28"; 1367 + version = "2025-08-12"; 1368 1368 src = fetchFromGitHub { 1369 1369 owner = "romgrk"; 1370 1370 repo = "barbar.nvim"; 1371 - rev = "3a74402bdf04745a762de83d5c5e88e3e9b0e2e0"; 1372 - sha256 = "153kk3vh25pprvrwbckb9kqn3j4fjyl8svrfk55gnk71pqjf03s3"; 1371 + rev = "549ee11d97057eae207bafa2c23c315942cca097"; 1372 + sha256 = "107d46s7d4ljvb4ra6m14z6zd64mbvpnzcwcnwxjsf68g4d6a4n6"; 1373 1373 }; 1374 1374 meta.homepage = "https://github.com/romgrk/barbar.nvim/"; 1375 1375 meta.hydraPlatforms = [ ]; ··· 1390 1390 1391 1391 base16-nvim = buildVimPlugin { 1392 1392 pname = "base16-nvim"; 1393 - version = "2025-08-03"; 1393 + version = "2025-08-09"; 1394 1394 src = fetchFromGitHub { 1395 1395 owner = "RRethy"; 1396 1396 repo = "base16-nvim"; 1397 - rev = "f7d1fac23d5efdca5758c8423797d2bf705cb36b"; 1398 - sha256 = "1sbn9p7r5wlh3adb7yyshkdln5lbfhpqqgaa5d8w2s8d1djpv8f0"; 1397 + rev = "45416f9c7a1ce25c9efb789fbbf96bce9e826d60"; 1398 + sha256 = "1hia5xrwagvi2f14nhbj3idhvpd339kksizxzymgkq15b5nj24cc"; 1399 1399 }; 1400 1400 meta.homepage = "https://github.com/RRethy/base16-nvim/"; 1401 1401 meta.hydraPlatforms = [ ]; ··· 1416 1416 1417 1417 base46 = buildVimPlugin { 1418 1418 pname = "base46"; 1419 - version = "2025-07-20"; 1419 + version = "2025-08-08"; 1420 1420 src = fetchFromGitHub { 1421 1421 owner = "nvchad"; 1422 1422 repo = "base46"; 1423 - rev = "cee12a263602cc97652d3dd55f0fc5e171012967"; 1424 - sha256 = "0bpr497zrrlhvffg886isb0mvj3x5gb189p0n8i2bm3czb69xnz6"; 1423 + rev = "13a8a258da6ca87ce46014084063d5b846afd3bc"; 1424 + sha256 = "0pyc28l5p794jzsxg4zcnmknpfvh9s3pr8078ypl14ig0milii2d"; 1425 1425 }; 1426 1426 meta.homepage = "https://github.com/nvchad/base46/"; 1427 1427 meta.hydraPlatforms = [ ]; ··· 1598 1598 1599 1599 blink-cmp-words = buildVimPlugin { 1600 1600 pname = "blink-cmp-words"; 1601 - version = "2025-06-26"; 1601 + version = "2025-08-06"; 1602 1602 src = fetchFromGitHub { 1603 1603 owner = "archie-judd"; 1604 1604 repo = "blink-cmp-words"; 1605 - rev = "81224ec2eb72115c84bb19ae566ef25083dbfed2"; 1606 - sha256 = "1561sxrz3h10qdxn4a1aqlvbnih4v5g5kvs5mwipjnfh8n4wcnnb"; 1605 + rev = "d6a56f532a1826b4f3aeed4d5e2fe7b8743a9244"; 1606 + sha256 = "14ffwpj5jk2gcvnv9mihxamnzljnqrcr0czjj80kx2jw6w2551f7"; 1607 1607 }; 1608 1608 meta.homepage = "https://github.com/archie-judd/blink-cmp-words/"; 1609 1609 meta.hydraPlatforms = [ ]; ··· 1663 1663 1664 1664 blink-ripgrep-nvim = buildVimPlugin { 1665 1665 pname = "blink-ripgrep.nvim"; 1666 - version = "2025-08-03"; 1666 + version = "2025-08-12"; 1667 1667 src = fetchFromGitHub { 1668 1668 owner = "mikavilpas"; 1669 1669 repo = "blink-ripgrep.nvim"; 1670 - rev = "3162d8517c379c2d2fc46cb4ee7ae9457162e88b"; 1671 - sha256 = "1871hy6ss71ix0c5625ildwpy230kw178jsqgfc398wv408jr2c1"; 1670 + rev = "132d0843ded621b9d9a7475187fd676328389630"; 1671 + sha256 = "0j2hcq657gzcwdx9nm8dk6dnq2ahsvg7xq8aiqlqj0qldl3snzqg"; 1672 1672 }; 1673 1673 meta.homepage = "https://github.com/mikavilpas/blink-ripgrep.nvim/"; 1674 1674 meta.hydraPlatforms = [ ]; ··· 1884 1884 1885 1885 catppuccin-nvim = buildVimPlugin { 1886 1886 pname = "catppuccin-nvim"; 1887 - version = "2025-08-04"; 1887 + version = "2025-08-13"; 1888 1888 src = fetchFromGitHub { 1889 1889 owner = "catppuccin"; 1890 1890 repo = "nvim"; 1891 - rev = "8fd0915ec0a2ad6376bfe895e6c4b3ffb5a5bad2"; 1892 - sha256 = "1xvxw0xhzz61adhp28gjhpz95z1sxj74mp1brkzzlyphn1n433xd"; 1891 + rev = "3aaf3ab60221bca8edb1354e41bd514a22c89de2"; 1892 + sha256 = "0fqrp754rdwzqiccmzav3l4za0lqnlmcv42nfzn4d1y31z4m4d4x"; 1893 1893 }; 1894 1894 meta.homepage = "https://github.com/catppuccin/nvim/"; 1895 1895 meta.hydraPlatforms = [ ]; ··· 1897 1897 1898 1898 catppuccin-vim = buildVimPlugin { 1899 1899 pname = "catppuccin-vim"; 1900 - version = "2025-06-01"; 1900 + version = "2025-08-11"; 1901 1901 src = fetchFromGitHub { 1902 1902 owner = "catppuccin"; 1903 1903 repo = "vim"; 1904 - rev = "a72bc6487f4fb47c36539e29f5496ac7ba8e136c"; 1905 - sha256 = "02mqlpw64am42wcikqcckh20i2vr50md4nyv5hiim4wmmdqich7q"; 1904 + rev = "fc2e9d853208621a94ec597c50bf559875bf6d99"; 1905 + sha256 = "01yl0pxgdmwv8lwzv1g9chxw8ba3r678glgy5pb1c34zqll597q2"; 1906 1906 }; 1907 1907 meta.homepage = "https://github.com/catppuccin/vim/"; 1908 1908 meta.hydraPlatforms = [ ]; ··· 2079 2079 2080 2080 claudecode-nvim = buildVimPlugin { 2081 2081 pname = "claudecode.nvim"; 2082 - version = "2025-08-04"; 2082 + version = "2025-08-08"; 2083 2083 src = fetchFromGitHub { 2084 2084 owner = "coder"; 2085 2085 repo = "claudecode.nvim"; 2086 - rev = "340319e0d31e89b2e076290934f66d4ffb4e4060"; 2087 - sha256 = "1c7hvs7y2jiisadcbd5s7xdapjwjjwizcvfd3h2kzlz5dyhfax5p"; 2086 + rev = "985b4b117ea13ec85c92830ecac8f63543dd5ead"; 2087 + sha256 = "05hxpsgw694870gcy8d72d44irlnc4dqyg8jb9p4bhm8i8lc523g"; 2088 2088 }; 2089 2089 meta.homepage = "https://github.com/coder/claudecode.nvim/"; 2090 2090 meta.hydraPlatforms = [ ]; ··· 2157 2157 2158 2158 cmake-tools-nvim = buildVimPlugin { 2159 2159 pname = "cmake-tools.nvim"; 2160 - version = "2025-06-11"; 2160 + version = "2025-08-11"; 2161 2161 src = fetchFromGitHub { 2162 2162 owner = "Civitasv"; 2163 2163 repo = "cmake-tools.nvim"; 2164 - rev = "17244215b1a96e4b2a83a16abd6719197f270f96"; 2165 - sha256 = "06mk6ba4w5hv53a6f6f1j7i6mlj2frgzjy6a483dvxqrsnk4jccw"; 2164 + rev = "447fe7629bb5d5baca6f6099f3568484d149aa51"; 2165 + sha256 = "1jdqsc1myq9mrsziix3w5g0l2g7rdv6lphx99w7svb97br8ifs29"; 2166 2166 }; 2167 2167 meta.homepage = "https://github.com/Civitasv/cmake-tools.nvim/"; 2168 2168 meta.hydraPlatforms = [ ]; ··· 2521 2521 2522 2522 cmp-nvim-lsp = buildVimPlugin { 2523 2523 pname = "cmp-nvim-lsp"; 2524 - version = "2025-04-01"; 2524 + version = "2025-08-13"; 2525 2525 src = fetchFromGitHub { 2526 2526 owner = "hrsh7th"; 2527 2527 repo = "cmp-nvim-lsp"; 2528 - rev = "a8912b88ce488f411177fc8aed358b04dc246d7b"; 2529 - sha256 = "08q5mf5jrqjjcl1s4h9zj2vd1kcizz0a5a6p65wv1rc5s1fa3a49"; 2528 + rev = "bd5a7d6db125d4654b50eeae9f5217f24bb22fd3"; 2529 + sha256 = "0yqcnpb6qkjyw1fk4zk66q2c9schxvascxqzk3mi7i7n0ykyjnjz"; 2530 2530 }; 2531 2531 meta.homepage = "https://github.com/hrsh7th/cmp-nvim-lsp/"; 2532 2532 meta.hydraPlatforms = [ ]; ··· 2833 2833 2834 2834 cmp_yanky = buildVimPlugin { 2835 2835 pname = "cmp_yanky"; 2836 - version = "2025-06-16"; 2836 + version = "2025-08-12"; 2837 2837 src = fetchFromGitHub { 2838 2838 owner = "chrisgrieser"; 2839 2839 repo = "cmp_yanky"; 2840 - rev = "7204219a68f4fd965260c9cd7c3c7eec2e27ad69"; 2841 - sha256 = "1fhcv79hpg5pwq90fvzm4bqk4x5h9q70vrxa9n3qavp1w38jjrg2"; 2840 + rev = "8957296634ceb9c18a7a9f53ce337f6753974aa6"; 2841 + sha256 = "1igd7vhp967kmywyy0jrr5wwbqcss42d7ic861877k3v57fmdbwx"; 2842 2842 }; 2843 2843 meta.homepage = "https://github.com/chrisgrieser/cmp_yanky/"; 2844 2844 meta.hydraPlatforms = [ ]; ··· 2924 2924 2925 2925 coc-nvim = buildVimPlugin { 2926 2926 pname = "coc.nvim"; 2927 - version = "2025-07-22"; 2927 + version = "2025-08-08"; 2928 2928 src = fetchFromGitHub { 2929 2929 owner = "neoclide"; 2930 2930 repo = "coc.nvim"; 2931 - rev = "db42f7a30a9cd71d9361b9909276bcf9022a6fff"; 2932 - sha256 = "0cj692c9gc7bs0bns5lgvlscm19gm93bwi6r3v0373n6rznlfqw2"; 2931 + rev = "5e34cdeff4d6b77eccb07b2f63f30e811ea125dc"; 2932 + sha256 = "067r7q4hpmvh2fw0hi02gax85afazl5g8sxx8444gxsw40jb1xwq"; 2933 2933 }; 2934 2934 meta.homepage = "https://github.com/neoclide/coc.nvim/"; 2935 2935 meta.hydraPlatforms = [ ]; ··· 2976 2976 2977 2977 codecompanion-history-nvim = buildVimPlugin { 2978 2978 pname = "codecompanion-history.nvim"; 2979 - version = "2025-07-27"; 2979 + version = "2025-08-05"; 2980 2980 src = fetchFromGitHub { 2981 2981 owner = "ravitemer"; 2982 2982 repo = "codecompanion-history.nvim"; 2983 - rev = "811b9af74c8fd4752a3422acf2379fba0639a96c"; 2984 - sha256 = "0q2lymvb1mgcx4lsycimrqcjm3g0j4q4l3019lxr8182a2q3slcs"; 2983 + rev = "336987afe9aca1fca30c20ca27dc91e1f7690c77"; 2984 + sha256 = "0x9afqfviz4z0lsxnm4hf15pz8wgp1pk3yms5n4vax3g6aq0bh1h"; 2985 2985 }; 2986 2986 meta.homepage = "https://github.com/ravitemer/codecompanion-history.nvim/"; 2987 2987 meta.hydraPlatforms = [ ]; ··· 2989 2989 2990 2990 codecompanion-nvim = buildVimPlugin { 2991 2991 pname = "codecompanion.nvim"; 2992 - version = "2025-08-04"; 2992 + version = "2025-08-14"; 2993 2993 src = fetchFromGitHub { 2994 2994 owner = "olimorris"; 2995 2995 repo = "codecompanion.nvim"; 2996 - rev = "cb5ce4bb0707f66fb8bc1e2e96982b97ed7062ed"; 2997 - sha256 = "0627h27nv1mb4br51zlnv8zh0257579ls6ym13k92d54lizjid5i"; 2996 + rev = "c5aa3c6231f861f2ab20c886e0776c5b2f43bbe8"; 2997 + sha256 = "01ynjyn6m5w4daxlkmrklhmfkwkdkhz3mgiqvbqhm5jal70n97x1"; 2998 2998 }; 2999 2999 meta.homepage = "https://github.com/olimorris/codecompanion.nvim/"; 3000 3000 meta.hydraPlatforms = [ ]; ··· 3054 3054 3055 3055 colorful-winsep-nvim = buildVimPlugin { 3056 3056 pname = "colorful-winsep.nvim"; 3057 - version = "2025-04-11"; 3057 + version = "2025-08-12"; 3058 3058 src = fetchFromGitHub { 3059 3059 owner = "nvim-zh"; 3060 3060 repo = "colorful-winsep.nvim"; 3061 - rev = "7bbe4e1353c0fe37c98bad2758aafc410280f6b3"; 3062 - sha256 = "0nm3cr5wzfyanx01nw998cddq1vxww0xn6v8a7db3a2r8fjxp5fx"; 3061 + rev = "794a64425c0b622d2274ea5975b689bad6f7682b"; 3062 + sha256 = "1ikjjzh7fhvgflg0fqappishf6adf5y105lqnz9qdhg4ya0rkw8f"; 3063 3063 }; 3064 3064 meta.homepage = "https://github.com/nvim-zh/colorful-winsep.nvim/"; 3065 3065 meta.hydraPlatforms = [ ]; ··· 3106 3106 3107 3107 command-t = buildVimPlugin { 3108 3108 pname = "command-t"; 3109 - version = "2025-07-15"; 3109 + version = "2025-08-08"; 3110 3110 src = fetchFromGitHub { 3111 3111 owner = "wincent"; 3112 3112 repo = "command-t"; 3113 - rev = "0a40e75eb6733938294fa0284fa836208856fee4"; 3114 - sha256 = "0f3qkrvvsdvzyni0f0xyqj0gq16yh8s0xv5ry7m4sgw8q7x1d1vg"; 3113 + rev = "dddab8a97fd4a4b58d008e0c15303e1a2c9d8a5e"; 3114 + sha256 = "0rwrhyrjd4nprbn4ihd1hs2x09sw6h9pjp4x0wqvvpfz44hazwjg"; 3115 3115 }; 3116 3116 meta.homepage = "https://github.com/wincent/command-t/"; 3117 3117 meta.hydraPlatforms = [ ]; ··· 3184 3184 3185 3185 compiler-nvim = buildVimPlugin { 3186 3186 pname = "compiler.nvim"; 3187 - version = "2025-06-24"; 3187 + version = "2025-08-14"; 3188 3188 src = fetchFromGitHub { 3189 3189 owner = "Zeioth"; 3190 3190 repo = "compiler.nvim"; 3191 - rev = "725e4dc7c4e261a11c98de020fe268f0bb69ad4b"; 3192 - sha256 = "0mnwgvlfp1hdynp0mw7cflnzgch1rdymqdsixs63pclirwr4xzpw"; 3191 + rev = "c09ab4e795b92378727d7377c03b0d5c2453957c"; 3192 + sha256 = "0bz7ykq70wl7cjv9fx1f034ldhy09434rmm17vxdjcvh04kldvgg"; 3193 3193 }; 3194 3194 meta.homepage = "https://github.com/Zeioth/compiler.nvim/"; 3195 3195 meta.hydraPlatforms = [ ]; ··· 3289 3289 3290 3290 conjure = buildVimPlugin { 3291 3291 pname = "conjure"; 3292 - version = "2025-07-19"; 3292 + version = "2025-08-08"; 3293 3293 src = fetchFromGitHub { 3294 3294 owner = "Olical"; 3295 3295 repo = "conjure"; 3296 - rev = "0ac12d481141555cc4baa0ad656b590ed30d2090"; 3297 - sha256 = "0zk835l3f4x167c3ba785s5dnsrrzzb86vs6cnjsmswh33ai6p20"; 3296 + rev = "0649a6866017e61457d8f5093827fd48db8a08f1"; 3297 + sha256 = "0564rv3vympy377yvqc1865bn02q9dcz3rfghl6kq9mzzi4q3if4"; 3298 3298 }; 3299 3299 meta.homepage = "https://github.com/Olical/conjure/"; 3300 3300 meta.hydraPlatforms = [ ]; ··· 3367 3367 3368 3368 copilot-lua = buildVimPlugin { 3369 3369 pname = "copilot.lua"; 3370 - version = "2025-08-01"; 3370 + version = "2025-08-15"; 3371 3371 src = fetchFromGitHub { 3372 3372 owner = "zbirenbaum"; 3373 3373 repo = "copilot.lua"; 3374 - rev = "0f2fd3829dd27d682e46c244cf48d9715726f612"; 3375 - sha256 = "0nm0642zz9j952k2zz5d0ll85yq132qb8zakwjbci8b1q2va5z5i"; 3374 + rev = "5b49bff9fa85a60a7b181b870eae212ec910f1aa"; 3375 + sha256 = "1xjhpfd11bvysmsv9jxq9yqc6bddwy34a0ypifsla2zm8zk8bxgm"; 3376 3376 }; 3377 3377 meta.homepage = "https://github.com/zbirenbaum/copilot.lua/"; 3378 3378 meta.hydraPlatforms = [ ]; ··· 3393 3393 3394 3394 copilot-vim = buildVimPlugin { 3395 3395 pname = "copilot.vim"; 3396 - version = "2025-07-28"; 3396 + version = "2025-08-14"; 3397 3397 src = fetchFromGitHub { 3398 3398 owner = "github"; 3399 3399 repo = "copilot.vim"; 3400 - rev = "51f80c0ed4f70d1c7e8c0ff11a792a9d84502c03"; 3401 - sha256 = "18zyw39flqgdpmnniii7yri169l2vlnsgckg5gr5la85r99pzfvk"; 3400 + rev = "f3d66c148aa60ad04c0a21d3e0a776459de09eb2"; 3401 + sha256 = "0rqax3yksn84h830g57rfia9i0x8q074dfpnldilw1hk6sjnfiwi"; 3402 3402 }; 3403 3403 meta.homepage = "https://github.com/github/copilot.vim/"; 3404 3404 meta.hydraPlatforms = [ ]; ··· 3510 3510 3511 3511 crates-nvim = buildVimPlugin { 3512 3512 pname = "crates.nvim"; 3513 - version = "2025-08-02"; 3513 + version = "2025-08-06"; 3514 3514 src = fetchFromGitHub { 3515 3515 owner = "saecki"; 3516 3516 repo = "crates.nvim"; 3517 - rev = "fe66681d97a1eefddb5d7e48bd427b2cb0271881"; 3518 - sha256 = "0dq2656g329g14ibfcy0a5gn956gkcdniddxlr8isfb66cr6hhhh"; 3517 + rev = "a49df0f70171adc77704eac70dd2c0d179065933"; 3518 + sha256 = "0g3rzy7nsa8p300sp2jzlxf573g1l5wprxwajqkb29kbdpbh93bg"; 3519 3519 }; 3520 3520 meta.homepage = "https://github.com/saecki/crates.nvim/"; 3521 3521 meta.hydraPlatforms = [ ]; ··· 3536 3536 3537 3537 csharpls-extended-lsp-nvim = buildVimPlugin { 3538 3538 pname = "csharpls-extended-lsp.nvim"; 3539 - version = "2025-07-02"; 3539 + version = "2025-08-13"; 3540 3540 src = fetchFromGitHub { 3541 3541 owner = "Decodetalkers"; 3542 3542 repo = "csharpls-extended-lsp.nvim"; 3543 - rev = "0dfdad289419e414a6d49d25cb97b8908e6fbe97"; 3544 - sha256 = "1v067g50sd314bhgw21wfbpbxni9q1srkbf5mgv1fww4kx5cpcj1"; 3543 + rev = "2fe5fb0abe2b24b2f4365d0adbf069523b17c6f3"; 3544 + sha256 = "1xj9mc4snjdi4ah9dqkm0jz58lllkb3y9zp76ja6rn0g1gqkbvq1"; 3545 3545 }; 3546 3546 meta.homepage = "https://github.com/Decodetalkers/csharpls-extended-lsp.nvim/"; 3547 3547 meta.hydraPlatforms = [ ]; ··· 3666 3666 3667 3667 cyberdream-nvim = buildVimPlugin { 3668 3668 pname = "cyberdream.nvim"; 3669 - version = "2025-07-25"; 3669 + version = "2025-08-09"; 3670 3670 src = fetchFromGitHub { 3671 3671 owner = "scottmckendry"; 3672 3672 repo = "cyberdream.nvim"; 3673 - rev = "14b254d37bb725bf9a92f741f0c4a429f253418c"; 3674 - sha256 = "1s1gfhvjysfs5gpzyjgk8bgqcva00dsh6kbq5glzmdyml1hin82v"; 3673 + rev = "b154ec7e18558a34a0a6b6ad9a9ed6ca97aa41cf"; 3674 + sha256 = "0298a09afl0p40v5ywx90h1w3bvkqxc7i0s5fnw87iasj128dcia"; 3675 3675 }; 3676 3676 meta.homepage = "https://github.com/scottmckendry/cyberdream.nvim/"; 3677 3677 meta.hydraPlatforms = [ ]; ··· 3692 3692 3693 3693 darcubox-nvim = buildVimPlugin { 3694 3694 pname = "darcubox-nvim"; 3695 - version = "2025-06-18"; 3695 + version = "2025-08-10"; 3696 3696 src = fetchFromGitHub { 3697 3697 owner = "Koalhack"; 3698 3698 repo = "darcubox-nvim"; 3699 - rev = "302751789f2e99f56df1f42260a92f3648ee15f2"; 3700 - sha256 = "1fmg4ljwl5z9pn3g8bsgjbl000y84yh7kw0ib6k8yiyghmf6lar9"; 3699 + rev = "bbf6d13f3d36ae2008dbba63e2a423ee163b1e12"; 3700 + sha256 = "0sbycaivbmgzdj2rp0snd4lrmmvc87f3kpm35wg4z25gfb1176l1"; 3701 3701 }; 3702 3702 meta.homepage = "https://github.com/Koalhack/darcubox-nvim/"; 3703 3703 meta.hydraPlatforms = [ ]; ··· 3705 3705 3706 3706 darkearth-nvim = buildVimPlugin { 3707 3707 pname = "darkearth-nvim"; 3708 - version = "2025-04-27"; 3708 + version = "2025-08-15"; 3709 3709 src = fetchFromGitHub { 3710 3710 owner = "ptdewey"; 3711 3711 repo = "darkearth-nvim"; 3712 - rev = "8f1ce10f90c5655229b7432b10b09c2d090bc4d3"; 3713 - sha256 = "07bb2hzk5yypqi720ip8p5nrpnha2w5h78qa5i8whcmp5w36s8vc"; 3712 + rev = "e09fde1b82d741afb46c24427350eeecab44463b"; 3713 + sha256 = "0mm5v9ap47amfc3dw665kzhpn1ki3lzwianq3v28fr9jwz73iw8x"; 3714 3714 }; 3715 3715 meta.homepage = "https://github.com/ptdewey/darkearth-nvim/"; 3716 3716 meta.hydraPlatforms = [ ]; ··· 3770 3770 3771 3771 ddc-filter-sorter_rank = buildVimPlugin { 3772 3772 pname = "ddc-filter-sorter_rank"; 3773 - version = "2025-02-05"; 3773 + version = "2025-08-11"; 3774 3774 src = fetchFromGitHub { 3775 3775 owner = "Shougo"; 3776 3776 repo = "ddc-filter-sorter_rank"; 3777 - rev = "b24215966eadcaecbe71185aa0b68f799e658c25"; 3778 - sha256 = "1v0b2d7n07nlwvjhpwfwgks3nw2j6jznacgbydlbkmw5362iyn88"; 3777 + rev = "ffef66ad58a96167bc5af5375f3fbbe80f53553b"; 3778 + sha256 = "05kwx84yhmzbg7sd6j0plyi8jwsyjn5xhb33vj1lm0lfrqg9wlb1"; 3779 3779 }; 3780 3780 meta.homepage = "https://github.com/Shougo/ddc-filter-sorter_rank/"; 3781 3781 meta.hydraPlatforms = [ ]; ··· 3861 3861 3862 3862 ddc-vim = buildVimPlugin { 3863 3863 pname = "ddc.vim"; 3864 - version = "2025-07-11"; 3864 + version = "2025-08-08"; 3865 3865 src = fetchFromGitHub { 3866 3866 owner = "Shougo"; 3867 3867 repo = "ddc.vim"; 3868 - rev = "653546fc1b85c5a7d1674f930d096b4467ebdb95"; 3869 - sha256 = "1nkr54zfmk39pxigbbmjr5yszafhn6ym3lmpw9bdnhxy5rji8jhd"; 3868 + rev = "206c28876b4501db45b66318f658856c2fd14a1c"; 3869 + sha256 = "088siyyirnw970xy0zrkrplmz9kb4cfa0157v63h20250pcsg949"; 3870 3870 }; 3871 3871 meta.homepage = "https://github.com/Shougo/ddc.vim/"; 3872 3872 meta.hydraPlatforms = [ ]; ··· 3965 3965 3966 3966 demicolon-nvim = buildVimPlugin { 3967 3967 pname = "demicolon.nvim"; 3968 - version = "2025-04-25"; 3968 + version = "2025-08-11"; 3969 3969 src = fetchFromGitHub { 3970 3970 owner = "mawkler"; 3971 3971 repo = "demicolon.nvim"; 3972 - rev = "8d79e527dbbef9de06405a30258b8d752c0638c4"; 3973 - sha256 = "1mcn8pidpnh0fhyigzc4y4a349lgarry082y2nx39qzm2pvw0g2i"; 3972 + rev = "42eaf79845b777d3608b134f283d97ce44c87e82"; 3973 + sha256 = "19jmf8pkcyc6yfd45xb8hk6rnksanqmbqf3alwr5axgrr9xm2rsh"; 3974 3974 }; 3975 3975 meta.homepage = "https://github.com/mawkler/demicolon.nvim/"; 3976 3976 meta.hydraPlatforms = [ ]; ··· 4017 4017 4018 4018 denops-vim = buildVimPlugin { 4019 4019 pname = "denops.vim"; 4020 - version = "2025-08-04"; 4020 + version = "2025-08-12"; 4021 4021 src = fetchFromGitHub { 4022 4022 owner = "vim-denops"; 4023 4023 repo = "denops.vim"; 4024 - rev = "f63fa7ffb3fc9693a742c7c1f774223cc111a2d9"; 4025 - sha256 = "0bgmj41fp0kl7g6129pgcppsl2mc8ylvhj5b1d91s12klxv5jk9y"; 4024 + rev = "b0ee649d8767d46f8f9ae7c49425dce969f2c0c8"; 4025 + sha256 = "17pk37rwzvg4c61acj96486f4brs75lj0s8x08rl85ww8jh651jf"; 4026 4026 }; 4027 4027 meta.homepage = "https://github.com/vim-denops/denops.vim/"; 4028 4028 meta.hydraPlatforms = [ ]; ··· 4030 4030 4031 4031 deol-nvim = buildVimPlugin { 4032 4032 pname = "deol.nvim"; 4033 - version = "2025-03-12"; 4033 + version = "2025-08-13"; 4034 4034 src = fetchFromGitHub { 4035 4035 owner = "Shougo"; 4036 4036 repo = "deol.nvim"; 4037 - rev = "9c2c97b99b236bc9a0a768e696aea466b959a396"; 4038 - sha256 = "092fjbb0aywiffrhf9vdcg9i7s0rs9cf65c2mnj8il5aag180ig0"; 4037 + rev = "ca4a52c2af3c7ed150ff600c1c15730f44166243"; 4038 + sha256 = "0dmcbn8zb7m3z4nx72y7qk1g37hdmznapc1r1c1sgxsn8b94iw5m"; 4039 4039 }; 4040 4040 meta.homepage = "https://github.com/Shougo/deol.nvim/"; 4041 4041 meta.hydraPlatforms = [ ]; ··· 4162 4162 4163 4163 deoplete-lsp = buildVimPlugin { 4164 4164 pname = "deoplete-lsp"; 4165 - version = "2025-06-09"; 4165 + version = "2025-08-15"; 4166 4166 src = fetchFromGitHub { 4167 4167 owner = "deoplete-plugins"; 4168 4168 repo = "deoplete-lsp"; 4169 - rev = "cff5f76bd1ac97cb15fc8bbf3c20ea0a20c63118"; 4170 - sha256 = "1vvgh3ss1jwdi7k6758r7kyzg9azvvslxjk5n3dk588897y7lb0z"; 4169 + rev = "83f3a8fbc22f5562bffcf9dec16ee4ffff0d10a3"; 4170 + sha256 = "1c3g6ym5rn5736irj9lb3zm06y1z65c5indq45dqx3qaxb0jp7pv"; 4171 4171 }; 4172 4172 meta.homepage = "https://github.com/deoplete-plugins/deoplete-lsp/"; 4173 4173 meta.hydraPlatforms = [ ]; ··· 4474 4474 4475 4475 dracula-nvim = buildVimPlugin { 4476 4476 pname = "dracula.nvim"; 4477 - version = "2025-02-24"; 4477 + version = "2025-08-06"; 4478 4478 src = fetchFromGitHub { 4479 4479 owner = "Mofiqul"; 4480 4480 repo = "dracula.nvim"; 4481 - rev = "96c9d19ce81b26053055ad6f688277d655b3f7d2"; 4482 - sha256 = "0w8r0h9sk3gspahiv203wxj744cry70sra2gf230x2pfrysp09g0"; 4481 + rev = "df528c869b09fbdc7578e6ccc7ff6faf44a2046d"; 4482 + sha256 = "1i8rhhzfpdry9yyx7ni1jbsh8c4ra6mq6lk7bm2wnd2wm19akvcv"; 4483 4483 }; 4484 4484 meta.homepage = "https://github.com/Mofiqul/dracula.nvim/"; 4485 4485 meta.hydraPlatforms = [ ]; ··· 4539 4539 4540 4540 easy-dotnet-nvim = buildVimPlugin { 4541 4541 pname = "easy-dotnet.nvim"; 4542 - version = "2025-08-04"; 4542 + version = "2025-08-12"; 4543 4543 src = fetchFromGitHub { 4544 4544 owner = "GustavEikaas"; 4545 4545 repo = "easy-dotnet.nvim"; 4546 - rev = "66aff649fc3129dc74d0c40de4c8e65099c700b9"; 4547 - sha256 = "1nhl4m3n37fcg8vkqca5shw3s208yxbyjhgqrli5j5knc11756r2"; 4546 + rev = "e11452d0937b1464894cfb0fb51516c67925512a"; 4547 + sha256 = "0cdq7hzcqgpf3bjfinsv5i5an4yq8n82vc75wi14krbvnvskc9rb"; 4548 4548 }; 4549 4549 meta.homepage = "https://github.com/GustavEikaas/easy-dotnet.nvim/"; 4550 4550 meta.hydraPlatforms = [ ]; ··· 4565 4565 4566 4566 ecolog-nvim = buildVimPlugin { 4567 4567 pname = "ecolog.nvim"; 4568 - version = "2025-08-01"; 4568 + version = "2025-08-11"; 4569 4569 src = fetchFromGitHub { 4570 4570 owner = "ph1losof"; 4571 4571 repo = "ecolog.nvim"; 4572 - rev = "bbd8a8fed814cdd037851a96e725d8b508aea658"; 4573 - sha256 = "1qmpif5vklqj0qnk2i19dxmmm0hm9s21w6f79ym7s5lq0cnv6ap0"; 4572 + rev = "4665e743b9ddab43ed637c648efd5791662751dc"; 4573 + sha256 = "09064gbgbi1lcxsp0xhbjbmv47s7jrkw465mmfrl4savnl7f0jnz"; 4574 4574 }; 4575 4575 meta.homepage = "https://github.com/ph1losof/ecolog.nvim/"; 4576 4576 meta.hydraPlatforms = [ ]; ··· 4788 4788 4789 4789 executor-nvim = buildVimPlugin { 4790 4790 pname = "executor.nvim"; 4791 - version = "2025-06-15"; 4791 + version = "2025-08-13"; 4792 4792 src = fetchFromGitHub { 4793 4793 owner = "google"; 4794 4794 repo = "executor.nvim"; 4795 - rev = "07a7f4aa21b54dc3d527800437010297250fe462"; 4796 - sha256 = "1zcvm2i7zras7bpkrxmzr4zavcxayss556ljw12mwmqjrjpdjsfk"; 4795 + rev = "30cbcb597c89af6a5ce3903c29311033c17a3599"; 4796 + sha256 = "1kmlpqmc45gbq32av55l0d79vcchyr5vkk46nv39flg32dajqsyh"; 4797 4797 }; 4798 4798 meta.homepage = "https://github.com/google/executor.nvim/"; 4799 4799 meta.hydraPlatforms = [ ]; ··· 5622 5622 5623 5623 go-nvim = buildVimPlugin { 5624 5624 pname = "go.nvim"; 5625 - version = "2025-07-18"; 5625 + version = "2025-08-05"; 5626 5626 src = fetchFromGitHub { 5627 5627 owner = "ray-x"; 5628 5628 repo = "go.nvim"; 5629 - rev = "28d9618bfe4385d3af60fed15a4c9f9445ae1f10"; 5630 - sha256 = "1dpahgimf95k37igbrwfwdfnr93lbvxs2zqqpgrxwca8g4dbvbdy"; 5629 + rev = "3279d15d146ab2eae6ad9bc930f3c8fc62a3697b"; 5630 + sha256 = "1aj9dvdd31f1vvvrkwv7ys9mrf3kc9w14wxq0gvnycg6aphdp7g3"; 5631 5631 }; 5632 5632 meta.homepage = "https://github.com/ray-x/go.nvim/"; 5633 5633 meta.hydraPlatforms = [ ]; ··· 5817 5817 5818 5818 gruvbox-material-nvim = buildVimPlugin { 5819 5819 pname = "gruvbox-material.nvim"; 5820 - version = "2025-07-13"; 5820 + version = "2025-08-13"; 5821 5821 src = fetchFromGitHub { 5822 5822 owner = "f4z3r"; 5823 5823 repo = "gruvbox-material.nvim"; 5824 - rev = "7c7de503b989ab96f61265b9a9445bfe45d204b6"; 5825 - sha256 = "0rynxwqqlx733pnzqlcba3q3gxm0z2gm8bnabbvf4z7csf3mhzwb"; 5824 + rev = "f68f34617d45dff5a10f83d71e4db3201252518e"; 5825 + sha256 = "1qwxwmzaq57z0g0z6k56hkk873g5bsb7mzlqg8hq6bv1ki7sr3pa"; 5826 5826 }; 5827 5827 meta.homepage = "https://github.com/f4z3r/gruvbox-material.nvim/"; 5828 5828 meta.hydraPlatforms = [ ]; ··· 6209 6209 6210 6210 hop-nvim = buildVimPlugin { 6211 6211 pname = "hop.nvim"; 6212 - version = "2025-02-26"; 6212 + version = "2025-08-06"; 6213 6213 src = fetchFromGitHub { 6214 6214 owner = "smoka7"; 6215 6215 repo = "hop.nvim"; 6216 - rev = "9c6a1dd9afb53a112b128877ccd583a1faa0b8b6"; 6217 - sha256 = "0xzxl1mkdp1zyg9m97h2mhvb98fwwd21h5ki7jlhkb8cl294lx40"; 6216 + rev = "2254e0b3c8054b9ee661c9be3cb201d4b3384d8e"; 6217 + sha256 = "085k2vyslaq0grxl87s1qn1k9dp0wp3fi7k4zmnmxw9rv8wngvw2"; 6218 6218 }; 6219 6219 meta.homepage = "https://github.com/smoka7/hop.nvim/"; 6220 6220 meta.hydraPlatforms = [ ]; ··· 6248 6248 6249 6249 hover-nvim = buildVimPlugin { 6250 6250 pname = "hover.nvim"; 6251 - version = "2025-07-10"; 6251 + version = "2025-08-11"; 6252 6252 src = fetchFromGitHub { 6253 6253 owner = "lewis6991"; 6254 6254 repo = "hover.nvim"; 6255 - rev = "fdc5b4fc3f5300c87fbde16cab0aeb122ba6324a"; 6256 - sha256 = "0a1b9c2w73r0m9lvcnvwxajwhlvnilkvaq96djmv8zja9rwk0xcz"; 6255 + rev = "ddb4ac300170bc13acd85f88e886f0342a63cf44"; 6256 + sha256 = "1ffzxm0w2psmnnx8pjw43rvlygg85qyv5dd4kw98miwh6d64my5a"; 6257 6257 }; 6258 6258 meta.homepage = "https://github.com/lewis6991/hover.nvim/"; 6259 6259 meta.hydraPlatforms = [ ]; ··· 6756 6756 6757 6757 jule-nvim = buildVimPlugin { 6758 6758 pname = "jule.nvim"; 6759 - version = "2025-02-22"; 6759 + version = "2025-08-07"; 6760 6760 src = fetchFromGitHub { 6761 6761 owner = "julelang"; 6762 6762 repo = "jule.nvim"; 6763 - rev = "11c983f900dc84dca4ae6bcb54a937a1ceba4038"; 6764 - sha256 = "0gajpcg7g3885696aljq7zky8cd0bfsjr7n2fad3d2yf0i999fif"; 6763 + rev = "64f1cae1a5244d55136be3106b3f4edb30164f29"; 6764 + sha256 = "1mb3lniqh4vl3kqivvs88l53cz9jk9ry18560lbizmva3l7q3zrr"; 6765 6765 }; 6766 6766 meta.homepage = "https://github.com/julelang/jule.nvim/"; 6767 6767 meta.hydraPlatforms = [ ]; ··· 6821 6821 6822 6822 kanso-nvim = buildVimPlugin { 6823 6823 pname = "kanso.nvim"; 6824 - version = "2025-08-03"; 6824 + version = "2025-08-09"; 6825 6825 src = fetchFromGitHub { 6826 6826 owner = "webhooked"; 6827 6827 repo = "kanso.nvim"; 6828 - rev = "22ba950771e86b972edf0047a0d74d8f9950b712"; 6829 - sha256 = "09k40z88l6cf7y5srqrxxmahx90k78qwmndlnah125cqxwy992i2"; 6828 + rev = "f107190b81e84c132d5755d0153944f0f1e1e380"; 6829 + sha256 = "18x4nqzj4a9lvxm4fbrb9vg8r3zqg49c52w37x6x23k1zkwvyxyh"; 6830 6830 }; 6831 6831 meta.homepage = "https://github.com/webhooked/kanso.nvim/"; 6832 6832 meta.hydraPlatforms = [ ]; ··· 7004 7004 7005 7005 lazy-lsp-nvim = buildVimPlugin { 7006 7006 pname = "lazy-lsp.nvim"; 7007 - version = "2025-05-24"; 7007 + version = "2025-08-14"; 7008 7008 src = fetchFromGitHub { 7009 7009 owner = "dundalek"; 7010 7010 repo = "lazy-lsp.nvim"; 7011 - rev = "15019ce6111ea3a13531b14820c430116de3048d"; 7012 - sha256 = "1xpppmy7dlhm5csv609gdv26izvvpsgyh2nkxbxsd6pmdacbhimf"; 7011 + rev = "5ea87155f84629b0bd90853a0d035422d7acd3a5"; 7012 + sha256 = "15chc4h9fiafppkzbh4ffykv08w48yi62iyvjjb4avwqnmgjswfq"; 7013 7013 }; 7014 7014 meta.homepage = "https://github.com/dundalek/lazy-lsp.nvim/"; 7015 7015 meta.hydraPlatforms = [ ]; ··· 7056 7056 7057 7057 lazygit-nvim = buildVimPlugin { 7058 7058 pname = "lazygit.nvim"; 7059 - version = "2025-07-22"; 7059 + version = "2025-08-08"; 7060 7060 src = fetchFromGitHub { 7061 7061 owner = "kdheepak"; 7062 7062 repo = "lazygit.nvim"; 7063 - rev = "cdd3527e251f96eb0527162b156ad839286fcd97"; 7064 - sha256 = "0nj9nakv4i9dy3pr0pf4lnqc8xw653xqxz2fq252wgh6ajqqvp56"; 7063 + rev = "3c524ebec6072568064235c407195e9f9fd0cb8a"; 7064 + sha256 = "01id42w1agmkwjhvjm490ga80wx2jllwy8svn749ky7q3b56gv9g"; 7065 7065 }; 7066 7066 meta.homepage = "https://github.com/kdheepak/lazygit.nvim/"; 7067 7067 meta.hydraPlatforms = [ ]; ··· 7082 7082 7083 7083 lean-nvim = buildVimPlugin { 7084 7084 pname = "lean.nvim"; 7085 - version = "2025-08-04"; 7085 + version = "2025-08-14"; 7086 7086 src = fetchFromGitHub { 7087 7087 owner = "Julian"; 7088 7088 repo = "lean.nvim"; 7089 - rev = "94c578e838d99601814293d21160a9566caff160"; 7090 - sha256 = "0mxw7kkg0kxfabdrg1x586ybppf2w4qgm6fy4nagdj0pcix5cyra"; 7089 + rev = "ccf0f5c2bdd084626ea9319db5e78b9f6ed82533"; 7090 + sha256 = "02qx9f10y91d58yxjfkwa6mx6kln724yv48dhv6ymncscbp0g43z"; 7091 7091 }; 7092 7092 meta.homepage = "https://github.com/Julian/lean.nvim/"; 7093 7093 meta.hydraPlatforms = [ ]; ··· 7889 7889 7890 7890 mason-lspconfig-nvim = buildVimPlugin { 7891 7891 pname = "mason-lspconfig.nvim"; 7892 - version = "2025-07-31"; 7892 + version = "2025-08-06"; 7893 7893 src = fetchFromGitHub { 7894 7894 owner = "mason-org"; 7895 7895 repo = "mason-lspconfig.nvim"; 7896 - rev = "844d247d998c2f9a6a3baad8bb9748edc55ce69f"; 7897 - sha256 = "1fa1x3f43wb3xv8399vb9l89dihh5adjk4ncwfpj7ahw2idar75q"; 7896 + rev = "7f0bf635082bb9b7d2b37766054526a6ccafdb85"; 7897 + sha256 = "0gmxnwjf62i5ly533c7236v8q8va8slai0slam5nn603wws2w9h3"; 7898 7898 }; 7899 7899 meta.homepage = "https://github.com/mason-org/mason-lspconfig.nvim/"; 7900 7900 meta.hydraPlatforms = [ ]; ··· 7915 7915 7916 7916 mason-nvim = buildVimPlugin { 7917 7917 pname = "mason.nvim"; 7918 - version = "2025-08-01"; 7918 + version = "2025-08-07"; 7919 7919 src = fetchFromGitHub { 7920 7920 owner = "mason-org"; 7921 7921 repo = "mason.nvim"; 7922 - rev = "9e25c98d4826998460926f8c5c2284848d80ae89"; 7923 - sha256 = "1bc9qbqh3vlli832ivsrycmq2qyawihbl5c245ak2a6rrdvs6vn0"; 7922 + rev = "7dc4facca9702f95353d5a1f87daf23d78e31c2a"; 7923 + sha256 = "1f6arsf1gcjqbk6sb0g943699jgh7p0nk5pyr2g4q3rbqn65q7am"; 7924 7924 }; 7925 7925 meta.homepage = "https://github.com/mason-org/mason.nvim/"; 7926 7926 meta.hydraPlatforms = [ ]; ··· 7967 7967 7968 7968 material-nvim = buildVimPlugin { 7969 7969 pname = "material.nvim"; 7970 - version = "2025-05-20"; 7970 + version = "2025-08-08"; 7971 7971 src = fetchFromGitHub { 7972 7972 owner = "marko-cerovac"; 7973 7973 repo = "material.nvim"; 7974 - rev = "0004ec60f91d581d47563a39f7dac62cb758f7ea"; 7975 - sha256 = "1ha0jma8a7m7pdrnhsv01jhd5n3dg80dcnwhja0yyhbfc348lx56"; 7974 + rev = "2929c6fae4886bd7c33371937601409705049a18"; 7975 + sha256 = "1ql9jim2az78a0bvdx26g1lwjw6ly65546h0jsahlavk7w80jqjl"; 7976 7976 }; 7977 7977 meta.homepage = "https://github.com/marko-cerovac/material.nvim/"; 7978 7978 meta.hydraPlatforms = [ ]; ··· 8188 8188 8189 8189 mini-clue = buildVimPlugin { 8190 8190 pname = "mini.clue"; 8191 - version = "2025-07-22"; 8191 + version = "2025-08-14"; 8192 8192 src = fetchFromGitHub { 8193 8193 owner = "echasnovski"; 8194 8194 repo = "mini.clue"; 8195 - rev = "edf3016944b5f2c7932d39af83af7c885ca0f019"; 8196 - sha256 = "09mvqd93nfqpfm1k78l41cbpqazfx852c2l5rkdrgpmjq6mxay4f"; 8195 + rev = "0b5e4b138b62ffda7d95904aa2f208d4cfb008c1"; 8196 + sha256 = "0sn0jj1lbnlmycrf0f60ssnhmg544v51m4h49ic7hq2c1d384wvs"; 8197 8197 }; 8198 8198 meta.homepage = "https://github.com/echasnovski/mini.clue/"; 8199 8199 meta.hydraPlatforms = [ ]; ··· 8227 8227 8228 8228 mini-completion = buildVimPlugin { 8229 8229 pname = "mini.completion"; 8230 - version = "2025-07-22"; 8230 + version = "2025-08-07"; 8231 8231 src = fetchFromGitHub { 8232 8232 owner = "echasnovski"; 8233 8233 repo = "mini.completion"; 8234 - rev = "7254cce7766f330170318c8bd4826ec3a3aac183"; 8235 - sha256 = "0n62xdkiicf4ngj1c30ahp68znhi6nva1shd23i98mihmlmv24hz"; 8234 + rev = "d2deece67fd71a4e50a24d6d2b6dae4e96e13334"; 8235 + sha256 = "11mknj3qdnxb20cg9phc2rwclgqmzhqs0yshanzmkp2qsy0lf14z"; 8236 8236 }; 8237 8237 meta.homepage = "https://github.com/echasnovski/mini.completion/"; 8238 8238 meta.hydraPlatforms = [ ]; ··· 8331 8331 8332 8332 mini-git = buildVimPlugin { 8333 8333 pname = "mini-git"; 8334 - version = "2025-07-22"; 8334 + version = "2025-08-12"; 8335 8335 src = fetchFromGitHub { 8336 8336 owner = "echasnovski"; 8337 8337 repo = "mini-git"; 8338 - rev = "c38380e1a6582b1aee7de26e9738b1ce17366d7d"; 8339 - sha256 = "11vfi9csq7s8xvsghr5h6qch71dy1r497bflfzjx14rpbb8bdmc8"; 8338 + rev = "689bb78921e34d621df8dc1733337b2c3c39a786"; 8339 + sha256 = "0i16saficymszk64yjb2mgxij58za6kk6bgkvwkm70bscv9yj9iz"; 8340 8340 }; 8341 8341 meta.homepage = "https://github.com/echasnovski/mini-git/"; 8342 8342 meta.hydraPlatforms = [ ]; ··· 8487 8487 8488 8488 mini-nvim = buildVimPlugin { 8489 8489 pname = "mini.nvim"; 8490 - version = "2025-08-02"; 8490 + version = "2025-08-14"; 8491 8491 src = fetchFromGitHub { 8492 8492 owner = "echasnovski"; 8493 8493 repo = "mini.nvim"; 8494 - rev = "efff26174ca363c059f92e906753db47e81d870b"; 8495 - sha256 = "063vx4jhaqkslw5qd3dandcvydi22dhic36kfs2g3738n2f1dkgk"; 8494 + rev = "301ee9f3afa2224b833de7c182574ba6c61e8c6e"; 8495 + sha256 = "0mc6327agyqf09qiypm1h4sr4qslv85r91lr8c5n9v7nnb1armny"; 8496 8496 }; 8497 8497 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 8498 8498 meta.hydraPlatforms = [ ]; ··· 8500 8500 8501 8501 mini-operators = buildVimPlugin { 8502 8502 pname = "mini.operators"; 8503 - version = "2025-07-22"; 8503 + version = "2025-08-12"; 8504 8504 src = fetchFromGitHub { 8505 8505 owner = "echasnovski"; 8506 8506 repo = "mini.operators"; 8507 - rev = "fd655907ed56434c83a6efb654b266d9c090ca82"; 8508 - sha256 = "1f3yd23mggrrr3hdvzp8rl3qqxznx1889q0wgkz239636d07qsjc"; 8507 + rev = "e72b5afec4c339aebd601a56e9ae3ef13d2f5d1a"; 8508 + sha256 = "1i7iph3vj0xd607fxk9cbhxyfgi7yvqlg5crmlkqbfrh2xmgxxy9"; 8509 8509 }; 8510 8510 meta.homepage = "https://github.com/echasnovski/mini.operators/"; 8511 8511 meta.hydraPlatforms = [ ]; ··· 8552 8552 8553 8553 mini-snippets = buildVimPlugin { 8554 8554 pname = "mini.snippets"; 8555 - version = "2025-07-22"; 8555 + version = "2025-08-12"; 8556 8556 src = fetchFromGitHub { 8557 8557 owner = "echasnovski"; 8558 8558 repo = "mini.snippets"; 8559 - rev = "a04d1b2fc0047b8e613a31dbc4a5760778003dcd"; 8560 - sha256 = "083yvsf1j8wwqmc0gm5c6a9cvy883s02kd0q8s8h0zb40f0xkmw7"; 8559 + rev = "752765aa04185d499e4f43506c434602eeb04e33"; 8560 + sha256 = "0b124ll40sshx97xb8lq63lci8fp6m296vh01654d848r30scaqw"; 8561 8561 }; 8562 8562 meta.homepage = "https://github.com/echasnovski/mini.snippets/"; 8563 8563 meta.hydraPlatforms = [ ]; ··· 8604 8604 8605 8605 mini-surround = buildVimPlugin { 8606 8606 pname = "mini.surround"; 8607 - version = "2025-07-22"; 8607 + version = "2025-08-12"; 8608 8608 src = fetchFromGitHub { 8609 8609 owner = "echasnovski"; 8610 8610 repo = "mini.surround"; 8611 - rev = "b12fcfefd6b9b7c9e9a773bc0e3e07ae20c03351"; 8612 - sha256 = "037za6qh1j0rncjmh3x2lh3zzw0990j963irfc78fmpbv87msv4f"; 8611 + rev = "7a8606333affe7ce637a0ba91bbafc46fc42bfa0"; 8612 + sha256 = "0znr2s0kq2lvfrgy2232wzhil2x71iv2pqigcfj47c4w0jhz86mc"; 8613 8613 }; 8614 8614 meta.homepage = "https://github.com/echasnovski/mini.surround/"; 8615 8615 meta.hydraPlatforms = [ ]; ··· 8669 8669 8670 8670 minuet-ai-nvim = buildVimPlugin { 8671 8671 pname = "minuet-ai.nvim"; 8672 - version = "2025-08-02"; 8672 + version = "2025-08-11"; 8673 8673 src = fetchFromGitHub { 8674 8674 owner = "milanglacier"; 8675 8675 repo = "minuet-ai.nvim"; 8676 - rev = "6bc438ef345f20cc0fc593ee7c9d1d19cc2eb72a"; 8677 - sha256 = "0x7ql1qpyiyyav6a29ijm8sxk9sg28siqc2z3fk7dxhlx2vbjs8n"; 8676 + rev = "9ba12416fd241d619e059b861811fb30366671c4"; 8677 + sha256 = "17bj5msca178v3a5rbds8wf56wlf8zjjkr6gdbx2sc9cxj5gzym3"; 8678 8678 }; 8679 8679 meta.homepage = "https://github.com/milanglacier/minuet-ai.nvim/"; 8680 8680 meta.hydraPlatforms = [ ]; ··· 9163 9163 9164 9164 neoconf-nvim = buildVimPlugin { 9165 9165 pname = "neoconf.nvim"; 9166 - version = "2025-08-03"; 9166 + version = "2025-08-15"; 9167 9167 src = fetchFromGitHub { 9168 9168 owner = "folke"; 9169 9169 repo = "neoconf.nvim"; 9170 - rev = "b109d170e580f85d9d41f0145cbdb1aa7caaa6fe"; 9171 - sha256 = "18whjcb28fviimxk2xh0y5iaam7sqnzdb6lhiivb5gxv3iwp8xp6"; 9170 + rev = "8601c3f54532e65581042cac43dd9bff224b6a2d"; 9171 + sha256 = "1pq5kiapmriglqv3b0w4n5y1pvb8y2ihjyk4ffclmva8k9n2q8qf"; 9172 9172 }; 9173 9173 meta.homepage = "https://github.com/folke/neoconf.nvim/"; 9174 9174 meta.hydraPlatforms = [ ]; ··· 9241 9241 9242 9242 neogit = buildVimPlugin { 9243 9243 pname = "neogit"; 9244 - version = "2025-07-29"; 9244 + version = "2025-08-11"; 9245 9245 src = fetchFromGitHub { 9246 9246 owner = "NeogitOrg"; 9247 9247 repo = "neogit"; 9248 - rev = "a1bcc7b9ab5137f691dcac1e61d5a9b3e9a46507"; 9249 - sha256 = "1lzdrs1l1zjl7vly7s3y2d1cm2z8xrma5p8d6d4djc7p61nrdgjp"; 9248 + rev = "49d0527143fe748196ae9a20b8c9ff54cbf45fab"; 9249 + sha256 = "1c6kakgdkq8ij7h0z4qbab4j3pzw2lbw5dz7bdwy0yh8c189ggrx"; 9250 9250 }; 9251 9251 meta.homepage = "https://github.com/NeogitOrg/neogit/"; 9252 9252 meta.hydraPlatforms = [ ]; ··· 9516 9516 9517 9517 neotest-golang = buildVimPlugin { 9518 9518 pname = "neotest-golang"; 9519 - version = "2025-06-28"; 9519 + version = "2025-08-08"; 9520 9520 src = fetchFromGitHub { 9521 9521 owner = "fredrikaverpil"; 9522 9522 repo = "neotest-golang"; 9523 - rev = "9521843942423fcac9991c596ff19c1f4f500650"; 9524 - sha256 = "050cshnjwiryrzqz4i9z6xj4zbj835iqc1cjl18zx8bx1xar2yxi"; 9523 + rev = "3f0617ee9c3e6fd3d0d88645cd2e1751dad60c1f"; 9524 + sha256 = "0hqxchs1168gy43ihzps8iz9q9hhga556fi69k2zhwsbb30w17c5"; 9525 9525 }; 9526 9526 meta.homepage = "https://github.com/fredrikaverpil/neotest-golang/"; 9527 9527 meta.hydraPlatforms = [ ]; ··· 9556 9556 9557 9557 neotest-haskell = buildVimPlugin { 9558 9558 pname = "neotest-haskell"; 9559 - version = "2025-08-03"; 9559 + version = "2025-08-10"; 9560 9560 src = fetchFromGitHub { 9561 9561 owner = "MrcJkb"; 9562 9562 repo = "neotest-haskell"; 9563 - rev = "23eb7d7f78e0c7ceb12b6a7d98d4c0ffacaea6c3"; 9564 - sha256 = "0mgyjcp0kfhdbvhpgi7cfp5x00nylfxn9y6ng9anj1q0gz235y85"; 9563 + rev = "6b790de64a0789a12c1f16736fd492e382fda265"; 9564 + sha256 = "020s30b7l6274mv26kl1k9q0z8wjm83d9drrcnwn90hv4jfg6ymc"; 9565 9565 }; 9566 9566 meta.homepage = "https://github.com/MrcJkb/neotest-haskell/"; 9567 9567 meta.hydraPlatforms = [ ]; ··· 9699 9699 9700 9700 neotest-rust = buildVimPlugin { 9701 9701 pname = "neotest-rust"; 9702 - version = "2025-06-26"; 9702 + version = "2025-08-12"; 9703 9703 src = fetchFromGitHub { 9704 9704 owner = "rouge8"; 9705 9705 repo = "neotest-rust"; 9706 - rev = "6f79e8468a254d4fe59abf5ca8703c125c16a1e3"; 9707 - sha256 = "0qbxi1xz4s7pm3qchw8y1z8266xm3dd5m8mm8k67ra6xh0gs1lrz"; 9706 + rev = "3975b9a88978adbffe1a6c0f5973818a522c1e8d"; 9707 + sha256 = "06my45f1x5xa0v7qfnjh28d89cid2awm2wyncvy9nfwxi2iqsqrf"; 9708 9708 }; 9709 9709 meta.homepage = "https://github.com/rouge8/neotest-rust/"; 9710 9710 meta.hydraPlatforms = [ ]; ··· 9764 9764 9765 9765 neovim-ayu = buildVimPlugin { 9766 9766 pname = "neovim-ayu"; 9767 - version = "2025-06-20"; 9767 + version = "2025-08-08"; 9768 9768 src = fetchFromGitHub { 9769 9769 owner = "Shatur"; 9770 9770 repo = "neovim-ayu"; 9771 - rev = "30e53f8a0f3708e92c84d4df676898cd16b8b64f"; 9772 - sha256 = "1fxq7klf69byi6m8gqd3fq9zs96zc92qjzksafhgl8y7gs0hwzi5"; 9771 + rev = "8f236d3d65cf55bf0664aefd850c326580152270"; 9772 + sha256 = "1dqhwkfb61x12klbbshbi5l99lqbyziily93p7xi78afr7vgxi87"; 9773 9773 }; 9774 9774 meta.homepage = "https://github.com/Shatur/neovim-ayu/"; 9775 9775 meta.hydraPlatforms = [ ]; ··· 9868 9868 9869 9869 nerdy-nvim = buildVimPlugin { 9870 9870 pname = "nerdy.nvim"; 9871 - version = "2025-07-21"; 9871 + version = "2025-08-04"; 9872 9872 src = fetchFromGitHub { 9873 9873 owner = "2KAbhishek"; 9874 9874 repo = "nerdy.nvim"; 9875 - rev = "9f9c8cc1629d1bd8a640840aca03cd4fda13f114"; 9876 - sha256 = "1adw1m49hyxdjmdxm551ns3i9rcpnwm1nj67j6m4f17p094nqp6m"; 9875 + rev = "a8e3f70dc0232e956adfb12c647b7e9e2b2e6c89"; 9876 + sha256 = "12vh8702j05gk4m0406sg9pjpc950v2kizf97wc6fi7168djvw1l"; 9877 9877 }; 9878 9878 meta.homepage = "https://github.com/2KAbhishek/nerdy.nvim/"; 9879 9879 meta.hydraPlatforms = [ ]; ··· 10050 10050 10051 10051 nlsp-settings-nvim = buildVimPlugin { 10052 10052 pname = "nlsp-settings.nvim"; 10053 - version = "2025-08-04"; 10053 + version = "2025-08-14"; 10054 10054 src = fetchFromGitHub { 10055 10055 owner = "tamago324"; 10056 10056 repo = "nlsp-settings.nvim"; 10057 - rev = "053a667abfdbaf87903b1bff4e59d380bdba1ef4"; 10058 - sha256 = "0c6bxgk99z4b6pbz808f3dsr7pd391145f606mc24glypv7yknwj"; 10057 + rev = "80d31152df16c3ee8711b44f8ce0eaa22d967c7c"; 10058 + sha256 = "1kd0p2v8xn025aa0bvlr4bdzrvzlbxv8axv2yjv2kck2jz33yvbz"; 10059 10059 }; 10060 10060 meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; 10061 10061 meta.hydraPlatforms = [ ]; ··· 10128 10128 10129 10129 none-ls-nvim = buildVimPlugin { 10130 10130 pname = "none-ls.nvim"; 10131 - version = "2025-08-03"; 10131 + version = "2025-08-05"; 10132 10132 src = fetchFromGitHub { 10133 10133 owner = "nvimtools"; 10134 10134 repo = "none-ls.nvim"; 10135 - rev = "46f2713c88a0b4e4bf134b59577659851ddd31cf"; 10136 - sha256 = "00kbir2sfag66whb00bhz6gprc3zbskls09jdi81ii6wxh1r4c1i"; 10135 + rev = "5fcb73913a9290f78097e34420fe0e6130c5c33c"; 10136 + sha256 = "1z08ic5c8hknkqyivkpc4jvdqsispml0zllfnxhw59iyr48irw99"; 10137 10137 }; 10138 10138 meta.homepage = "https://github.com/nvimtools/none-ls.nvim/"; 10139 10139 meta.hydraPlatforms = [ ]; ··· 10245 10245 10246 10246 nvchad-ui = buildVimPlugin { 10247 10247 pname = "nvchad-ui"; 10248 - version = "2025-07-20"; 10248 + version = "2025-08-08"; 10249 10249 src = fetchFromGitHub { 10250 10250 owner = "nvchad"; 10251 10251 repo = "ui"; 10252 - rev = "dc4950f5bd4117e2da108b681506c908b93d4a62"; 10253 - sha256 = "05sxv1k62ahn9134hkz3sr2ddwk71fh8m5z67s36alag4vrr7w6l"; 10252 + rev = "af4407decaf6528cb21a7b0fd8925664c8e573c0"; 10253 + sha256 = "1r41jvjsx89jrjcc438wjlll8hjc0zm4fs2gs91fb7ch7r20p3sp"; 10254 10254 }; 10255 10255 meta.homepage = "https://github.com/nvchad/ui/"; 10256 10256 meta.hydraPlatforms = [ ]; ··· 10401 10401 10402 10402 nvim-colorizer-lua = buildVimPlugin { 10403 10403 pname = "nvim-colorizer.lua"; 10404 - version = "2025-07-23"; 10404 + version = "2025-08-13"; 10405 10405 src = fetchFromGitHub { 10406 10406 owner = "catgoose"; 10407 10407 repo = "nvim-colorizer.lua"; 10408 - rev = "16597180b4dd81fa3d23d88c4d2f1b49154f9479"; 10409 - sha256 = "0flq77r4w90vk5sdvrwjypwq09yn4zj13z7h9zawshqy7318agy6"; 10408 + rev = "51cf7c995ed1eb6642aecf19067ee634fa1b6ba2"; 10409 + sha256 = "1gxjpdm4i4bylx9wlp1ldbs8sskjz79pfysk7avy8zbk7d2mwman"; 10410 10410 }; 10411 10411 meta.homepage = "https://github.com/catgoose/nvim-colorizer.lua/"; 10412 10412 meta.hydraPlatforms = [ ]; ··· 10583 10583 10584 10584 nvim-dap-view = buildVimPlugin { 10585 10585 pname = "nvim-dap-view"; 10586 - version = "2025-07-30"; 10586 + version = "2025-08-13"; 10587 10587 src = fetchFromGitHub { 10588 10588 owner = "igorlfs"; 10589 10589 repo = "nvim-dap-view"; 10590 - rev = "143411d3e5d76814345030d7029af935afc7116d"; 10591 - sha256 = "1dpms4zi5i5awbh88avl4g26agjr9ws7x1zfyhmz5n3rzcrcpzsv"; 10590 + rev = "4ef43cb40ae652fcd19ab8f6f3d477e13394d1ce"; 10591 + sha256 = "1qfpgx96agfjgksjh0dd7ixhd51gz349pp01lzqimc5m54nlq634"; 10592 10592 }; 10593 10593 meta.homepage = "https://github.com/igorlfs/nvim-dap-view/"; 10594 10594 meta.hydraPlatforms = [ ]; ··· 10622 10622 10623 10623 nvim-docs-view = buildVimPlugin { 10624 10624 pname = "nvim-docs-view"; 10625 - version = "2025-03-24"; 10625 + version = "2025-08-12"; 10626 10626 src = fetchFromGitHub { 10627 10627 owner = "amrbashir"; 10628 10628 repo = "nvim-docs-view"; 10629 - rev = "f674ba57349849bce894efdd54096483c88e810b"; 10630 - sha256 = "0ifbfhifly5sdsbxv1p71wvl644jz505ln9j1yr6qwvyk6a2krm1"; 10629 + rev = "a5256fd30417f58804691df174bc76a8c8f8163a"; 10630 + sha256 = "01jc102zzhn1vygjgqqbfbp0q0pjcccpy1113ssmg59p2ckzp1v0"; 10631 10631 }; 10632 10632 meta.homepage = "https://github.com/amrbashir/nvim-docs-view/"; 10633 10633 meta.hydraPlatforms = [ ]; ··· 10635 10635 10636 10636 nvim-early-retirement = buildVimPlugin { 10637 10637 pname = "nvim-early-retirement"; 10638 - version = "2025-08-02"; 10638 + version = "2025-08-12"; 10639 10639 src = fetchFromGitHub { 10640 10640 owner = "chrisgrieser"; 10641 10641 repo = "nvim-early-retirement"; 10642 - rev = "cdd07e2acd172a311afae5849b1abc78c25fe434"; 10643 - sha256 = "1k7sylfprwzl9k3dvxg80qgp35y81v7m585yj5g1rc3dlka7ai02"; 10642 + rev = "b95724575f10f0d1deaad7284fa762141dcdc092"; 10643 + sha256 = "18ns62isvif816j6a021lqkz04c2vc84bb2chm0qc4zkv0dm36si"; 10644 10644 }; 10645 10645 meta.homepage = "https://github.com/chrisgrieser/nvim-early-retirement/"; 10646 10646 meta.hydraPlatforms = [ ]; ··· 10752 10752 10753 10753 nvim-highlite = buildVimPlugin { 10754 10754 pname = "nvim-highlite"; 10755 - version = "2025-07-25"; 10755 + version = "2025-08-12"; 10756 10756 src = fetchFromGitHub { 10757 10757 owner = "Iron-E"; 10758 10758 repo = "nvim-highlite"; 10759 - rev = "bb628cb95cd8cae5d2a9f8ed14d44012e0ea9356"; 10760 - sha256 = "16gbql52rhwddh50yavfnfpg64rp882s4nq6bhqqjmgpqlqr0kvr"; 10759 + rev = "b33330acc20acb3cce517ffd236c333a99b29c98"; 10760 + sha256 = "07x0c8jp1i4hyps57lvr8f37ml9ivy83q3ixvyh29l7c31ph5d6z"; 10761 10761 }; 10762 10762 meta.homepage = "https://github.com/Iron-E/nvim-highlite/"; 10763 10763 meta.hydraPlatforms = [ ]; ··· 10804 10804 10805 10805 nvim-java = buildVimPlugin { 10806 10806 pname = "nvim-java"; 10807 - version = "2025-08-04"; 10807 + version = "2025-08-06"; 10808 10808 src = fetchFromGitHub { 10809 10809 owner = "nvim-java"; 10810 10810 repo = "nvim-java"; 10811 - rev = "2776094c745af0d99b5acb24a4594d85b4f99545"; 10812 - sha256 = "0bhq7gh2hx1gbrll1hz0pz7y72n29p1yvxvf77r35nrq1hxh5gsp"; 10811 + rev = "3d56b7461facb42f135e25b2636bf220a7f0ed42"; 10812 + sha256 = "11yxzx2i24xvn690vnf53q5sz4ls71mf790lzlcs4sndjv80g892"; 10813 10813 }; 10814 10814 meta.homepage = "https://github.com/nvim-java/nvim-java/"; 10815 10815 meta.hydraPlatforms = [ ]; ··· 10817 10817 10818 10818 nvim-java-core = buildVimPlugin { 10819 10819 pname = "nvim-java-core"; 10820 - version = "2025-01-26"; 10820 + version = "2025-08-06"; 10821 10821 src = fetchFromGitHub { 10822 10822 owner = "nvim-java"; 10823 10823 repo = "nvim-java-core"; 10824 - rev = "401bf7683012a25929a359deec418f36beb876e2"; 10825 - sha256 = "0s6wqz9z8r0hvvgf5dnl8drgzb49vrk798rc7gk2cbm85blzk7p8"; 10824 + rev = "229ebcdfa33c75cf746f97c46c2893b2de3626e5"; 10825 + sha256 = "1z5kwl3a88xpv12ga9ds1kl7mjjf21cw6kly13yq7n3irxkpxkbh"; 10826 10826 }; 10827 10827 meta.homepage = "https://github.com/nvim-java/nvim-java-core/"; 10828 10828 meta.hydraPlatforms = [ ]; ··· 11012 11012 11013 11013 nvim-lspconfig = buildVimPlugin { 11014 11014 pname = "nvim-lspconfig"; 11015 - version = "2025-08-03"; 11015 + version = "2025-08-15"; 11016 11016 src = fetchFromGitHub { 11017 11017 owner = "neovim"; 11018 11018 repo = "nvim-lspconfig"; 11019 - rev = "63a38440989c58e1f100373ab603fd24665bdc9a"; 11020 - sha256 = "15bcqk3n5c3m8gnic98mcl2v33l9qxl98i0gfjblqy7n3b2b412c"; 11019 + rev = "4da7247b2b348b4f6cade30a7a7fcb299879d275"; 11020 + sha256 = "0g662vfbdv52934c2bm5wy7dx880a4z7v859mln64ns0cm04858l"; 11021 11021 }; 11022 11022 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 11023 11023 meta.hydraPlatforms = [ ]; ··· 11077 11077 11078 11078 nvim-metals = buildVimPlugin { 11079 11079 pname = "nvim-metals"; 11080 - version = "2025-08-02"; 11080 + version = "2025-08-06"; 11081 11081 src = fetchFromGitHub { 11082 11082 owner = "scalameta"; 11083 11083 repo = "nvim-metals"; 11084 - rev = "ef937b2d6820a04caeaf55d7fd5af766e268bd59"; 11085 - sha256 = "088r52h18sc824dz5xddipqviabi073yhkh9jv9phf2dhpk4s7kp"; 11084 + rev = "db6c9ffb32ec698b96d11cba1317dccc26f5c16d"; 11085 + sha256 = "0a3lrpvqzngvj8qi2jki8yficbqif47s6dvfgpiq6lz2gm8xmnbx"; 11086 11086 }; 11087 11087 meta.homepage = "https://github.com/scalameta/nvim-metals/"; 11088 11088 meta.hydraPlatforms = [ ]; ··· 11181 11181 11182 11182 nvim-numbertoggle = buildVimPlugin { 11183 11183 pname = "nvim-numbertoggle"; 11184 - version = "2025-06-11"; 11184 + version = "2025-08-13"; 11185 11185 src = fetchFromGitHub { 11186 11186 owner = "sitiom"; 11187 11187 repo = "nvim-numbertoggle"; 11188 - rev = "4b898b84d6f31f76bd563330d76177d5eb299efa"; 11189 - sha256 = "1fdlg874wvxynax8cmjag22sj333m7avavkpxxgqpxna3i61ndrm"; 11188 + rev = "1416256538f01c1cf364805952fe7d143dc7ec56"; 11189 + sha256 = "0knyz9icc1qd8ln9wgql8xjbi9kbva9yy9bz03csyraaabsh78k8"; 11190 11190 }; 11191 11191 meta.homepage = "https://github.com/sitiom/nvim-numbertoggle/"; 11192 11192 meta.hydraPlatforms = [ ]; ··· 11194 11194 11195 11195 nvim-origami = buildVimPlugin { 11196 11196 pname = "nvim-origami"; 11197 - version = "2025-08-02"; 11197 + version = "2025-08-11"; 11198 11198 src = fetchFromGitHub { 11199 11199 owner = "chrisgrieser"; 11200 11200 repo = "nvim-origami"; 11201 - rev = "6705fd653bc709fbd5c17fb86ba6252ca0e885b9"; 11202 - sha256 = "14wnxh4bxf7g6139dbs06h34kkiv5s8njs9n5fbaknhh5dynj0lk"; 11201 + rev = "7601195576615ba209d79f3dccc764f82d802b5c"; 11202 + sha256 = "0p9kmwzsnx43z9mi91hpl6l3z3kaackib08q8px0g4swz4p9azg7"; 11203 11203 }; 11204 11204 meta.homepage = "https://github.com/chrisgrieser/nvim-origami/"; 11205 11205 meta.hydraPlatforms = [ ]; ··· 11389 11389 11390 11390 nvim-snippy = buildVimPlugin { 11391 11391 pname = "nvim-snippy"; 11392 - version = "2025-06-08"; 11392 + version = "2025-08-15"; 11393 11393 src = fetchFromGitHub { 11394 11394 owner = "dcampos"; 11395 11395 repo = "nvim-snippy"; 11396 - rev = "6e5a522e74595b0b2d45359a00b199dca4981236"; 11397 - sha256 = "0bzn5bl9gyj2bp8ljf9nm0p2gig31v54l46xjcj27r9aqccqhqrx"; 11396 + rev = "644f74259844621c50f30fc44201e1e7a0ae8770"; 11397 + sha256 = "1cxflxwgl9rwy8sppclrd8rbb34kmwkan4b5vw4h4ai0y8sr5djr"; 11398 11398 }; 11399 11399 meta.homepage = "https://github.com/dcampos/nvim-snippy/"; 11400 11400 meta.hydraPlatforms = [ ]; ··· 11428 11428 11429 11429 nvim-spider = buildVimPlugin { 11430 11430 pname = "nvim-spider"; 11431 - version = "2025-08-02"; 11431 + version = "2025-08-11"; 11432 11432 src = fetchFromGitHub { 11433 11433 owner = "chrisgrieser"; 11434 11434 repo = "nvim-spider"; 11435 - rev = "a81d07e07e279923b1a10d0146c543bf079f747e"; 11436 - sha256 = "1vlj94lnd0mg76v6kab2vz45f1fj0dzkbyfv2k3ys8w1h0sy3x1v"; 11435 + rev = "b23cad515d3979717edb1c0954da26b9f967c084"; 11436 + sha256 = "1cr2drjzb6zlbnwqm8rv6lsyxssbc6xxwv7x9j7li1hdjlmc729x"; 11437 11437 }; 11438 11438 meta.homepage = "https://github.com/chrisgrieser/nvim-spider/"; 11439 11439 meta.hydraPlatforms = [ ]; ··· 11506 11506 11507 11507 nvim-tree-lua = buildVimPlugin { 11508 11508 pname = "nvim-tree.lua"; 11509 - version = "2025-08-04"; 11509 + version = "2025-08-14"; 11510 11510 src = fetchFromGitHub { 11511 11511 owner = "nvim-tree"; 11512 11512 repo = "nvim-tree.lua"; 11513 - rev = "0a7fcdf3f8ba208f4260988a198c77ec11748339"; 11514 - sha256 = "019d5pxhb0mbv3f6872m782ghxzyd6spivq37maxygjzdi8kqhrm"; 11513 + rev = "f0e9951778802526b14c934f7bf746e1e0ae5ed0"; 11514 + sha256 = "0rxgra5kpjpr6h9n83bhsav0nvqjqz29pq10wwd2fxi7dadppmq9"; 11515 11515 }; 11516 11516 meta.homepage = "https://github.com/nvim-tree/nvim-tree.lua/"; 11517 11517 meta.hydraPlatforms = [ ]; ··· 11532 11532 11533 11533 nvim-treesitter-context = buildVimPlugin { 11534 11534 pname = "nvim-treesitter-context"; 11535 - version = "2025-07-31"; 11535 + version = "2025-08-06"; 11536 11536 src = fetchFromGitHub { 11537 11537 owner = "nvim-treesitter"; 11538 11538 repo = "nvim-treesitter-context"; 11539 - rev = "6853ecb2cd8b062365da1cdd1a2e6f934ad55ed6"; 11540 - sha256 = "13dc0z4nm4x1wvgb9bzn9sm5m328a6d05zmhmzq4gvajapws9l5g"; 11539 + rev = "dca8726fea2c14e1ce6adbaa76a04816fbfaff61"; 11540 + sha256 = "15wcgplfvp8ysvgnbbjml6yrg9dczry52sg8kd8sxnqvph0vv1kz"; 11541 11541 }; 11542 11542 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; 11543 11543 meta.hydraPlatforms = [ ]; ··· 11545 11545 11546 11546 nvim-treesitter-endwise = buildVimPlugin { 11547 11547 pname = "nvim-treesitter-endwise"; 11548 - version = "2025-04-30"; 11548 + version = "2025-08-14"; 11549 11549 src = fetchFromGitHub { 11550 11550 owner = "RRethy"; 11551 11551 repo = "nvim-treesitter-endwise"; 11552 - rev = "d6cbb83307d516ec076d17c9a33d704ef626ee8c"; 11553 - sha256 = "12rxdbvxi1i0svi4ibczb1a6njng1ida0f7aaxnsmafkssmxy323"; 11552 + rev = "02a9e4e096e087bc417059e303e30af7f5f07971"; 11553 + sha256 = "179h1d71hxmx7zgbq590y92b19jilr5capc5qag5nmavky110p8d"; 11554 11554 }; 11555 11555 meta.homepage = "https://github.com/RRethy/nvim-treesitter-endwise/"; 11556 11556 meta.hydraPlatforms = [ ]; ··· 11623 11623 11624 11624 nvim-treesitter-textsubjects = buildVimPlugin { 11625 11625 pname = "nvim-treesitter-textsubjects"; 11626 - version = "2025-02-26"; 11626 + version = "2025-08-14"; 11627 11627 src = fetchFromGitHub { 11628 11628 owner = "RRethy"; 11629 11629 repo = "nvim-treesitter-textsubjects"; 11630 - rev = "abcbb0e537c9c24800b03b9ca33bee5806604629"; 11631 - sha256 = "06j00gv4l4hr6fisrl74jgvmqzmbkqrhzhfh2k15w6xf54jb6fnv"; 11630 + rev = "9e3edd38e44c8f3af5634c5e30a33ebd79227f11"; 11631 + sha256 = "05p3z792ln18rfwv3p6x92kfjyzni58x77m8hwxmdm706s1nmcbn"; 11632 11632 }; 11633 11633 meta.homepage = "https://github.com/RRethy/nvim-treesitter-textsubjects/"; 11634 11634 meta.hydraPlatforms = [ ]; ··· 11701 11701 11702 11702 nvim-various-textobjs = buildVimPlugin { 11703 11703 pname = "nvim-various-textobjs"; 11704 - version = "2025-08-02"; 11704 + version = "2025-08-11"; 11705 11705 src = fetchFromGitHub { 11706 11706 owner = "chrisgrieser"; 11707 11707 repo = "nvim-various-textobjs"; 11708 - rev = "3533004ecdc61cdee21bec3df2efbaeaba536346"; 11709 - sha256 = "0ahcbh0l13lzsggqd1i6asc3w69rh3bripv6vf2y1c329yc0rxwb"; 11708 + rev = "7322cd3319049d88a6b7cf09dbf45d0de50b66fd"; 11709 + sha256 = "0zs7ckvm5jbsakfb3qqwrqyv9h2y1kzxkfgd0d5c63hapywsbwbh"; 11710 11710 }; 11711 11711 meta.homepage = "https://github.com/chrisgrieser/nvim-various-textobjs/"; 11712 11712 meta.hydraPlatforms = [ ]; ··· 11857 11857 11858 11858 obsidian-nvim = buildVimPlugin { 11859 11859 pname = "obsidian.nvim"; 11860 - version = "2025-07-31"; 11860 + version = "2025-08-13"; 11861 11861 src = fetchFromGitHub { 11862 11862 owner = "obsidian-nvim"; 11863 11863 repo = "obsidian.nvim"; 11864 - rev = "705cc9b4f66eca1e54040ac819102e80a32896d3"; 11865 - sha256 = "1k4ck5xfl8axfg6l862h23qkk8iz57sljygixb358q19sdmvklci"; 11864 + rev = "4fd01de50c7fea3616f6809f19e9be8d2dc6ce63"; 11865 + sha256 = "02qfmiv0jzmxq98k9frh2z91ngk9qsz6g6w6p2s56jp0xz0q8k34"; 11866 11866 }; 11867 11867 meta.homepage = "https://github.com/obsidian-nvim/obsidian.nvim/"; 11868 11868 meta.hydraPlatforms = [ ]; ··· 11896 11896 11897 11897 octo-nvim = buildVimPlugin { 11898 11898 pname = "octo.nvim"; 11899 - version = "2025-07-30"; 11899 + version = "2025-08-11"; 11900 11900 src = fetchFromGitHub { 11901 11901 owner = "pwntester"; 11902 11902 repo = "octo.nvim"; 11903 - rev = "1d8abaffbd8a8e5e6a2ece8523fc00a1dc38a41b"; 11904 - sha256 = "1fyc0z3f1c4d3wmam89hj94ppscff3ix0lqnsi5pzz9w9kvvdmy3"; 11903 + rev = "86192674d685cf9076d0228e50d281f840d2c889"; 11904 + sha256 = "1ayww79zrlb4dndh4li0c3bc51g4hprwx2d2csrmnb33zbqkcqa3"; 11905 11905 }; 11906 11906 meta.homepage = "https://github.com/pwntester/octo.nvim/"; 11907 11907 meta.hydraPlatforms = [ ]; ··· 12091 12091 12092 12092 opencode-nvim = buildVimPlugin { 12093 12093 pname = "opencode.nvim"; 12094 - version = "2025-08-03"; 12094 + version = "2025-08-15"; 12095 12095 src = fetchFromGitHub { 12096 12096 owner = "NickvanDyke"; 12097 12097 repo = "opencode.nvim"; 12098 - rev = "c1b98e513c0edbefb8b7ec517f50cf4ec4380e82"; 12099 - sha256 = "1apdz6i7yznhjdnkf8b9djdkjb69i5b5dw6v4hbd8xwwd6skzh9v"; 12098 + rev = "2e20e08ff11f6deabad2b48b28f724d8db4b8b9f"; 12099 + sha256 = "1bxmdlwl35vzxwaimdr6jnc1sbacxbcd1k237l8m5kdbm5ak40al"; 12100 12100 }; 12101 12101 meta.homepage = "https://github.com/NickvanDyke/opencode.nvim/"; 12102 12102 meta.hydraPlatforms = [ ]; ··· 12130 12130 12131 12131 org-roam-nvim = buildVimPlugin { 12132 12132 pname = "org-roam.nvim"; 12133 - version = "2025-07-10"; 12133 + version = "2025-08-12"; 12134 12134 src = fetchFromGitHub { 12135 12135 owner = "chipsenkbeil"; 12136 12136 repo = "org-roam.nvim"; 12137 - rev = "f7421ca00c47c4a35bffd61a1e57f8b75659eb7d"; 12138 - sha256 = "1hnjv5gxmg6a9qjkwpfp6jdh3ld1pg14xkq9cbdx9l08r3kqyam9"; 12137 + rev = "e49b3bbce929a8f89042e1e251d37e9936dadc75"; 12138 + sha256 = "1igvhx7bacb0003n7h2pipj2hlz70ps3lczpy2zfy2ivr9vlwpxa"; 12139 12139 }; 12140 12140 meta.homepage = "https://github.com/chipsenkbeil/org-roam.nvim/"; 12141 12141 meta.hydraPlatforms = [ ]; ··· 12156 12156 12157 12157 otter-nvim = buildVimPlugin { 12158 12158 pname = "otter.nvim"; 12159 - version = "2025-07-17"; 12159 + version = "2025-08-04"; 12160 12160 src = fetchFromGitHub { 12161 12161 owner = "jmbuhr"; 12162 12162 repo = "otter.nvim"; 12163 - rev = "fcc8cf1eeb39f16c309bb27a7ff140ddf87c9fcb"; 12164 - sha256 = "10p2pm209fvpxk58nm8b5l2a4pz42r9xqg2fx7c4dvvf39jqhwjw"; 12163 + rev = "71fec0dc58c3a66078e691b9a77b2516fe3e319b"; 12164 + sha256 = "0sib4n0v18xzzkmqiimih3hnx8v4nf5ybw8y1c8ppb3bma5mz4vd"; 12165 12165 }; 12166 12166 meta.homepage = "https://github.com/jmbuhr/otter.nvim/"; 12167 12167 meta.hydraPlatforms = [ ]; ··· 12209 12209 12210 12210 package-info-nvim = buildVimPlugin { 12211 12211 pname = "package-info.nvim"; 12212 - version = "2025-04-28"; 12212 + version = "2025-08-06"; 12213 12213 src = fetchFromGitHub { 12214 12214 owner = "vuki656"; 12215 12215 repo = "package-info.nvim"; 12216 - rev = "4f1b8287dde221153ec9f2acd46e8237d2d0881e"; 12217 - sha256 = "1fy4za5fcm7psw398b75ji4wb0rhanibxjxysbn30nfz4dcmrd5y"; 12216 + rev = "5cb3483ec886ca23e2c57e5d4a63c958d9a98179"; 12217 + sha256 = "1n2m26pblzchvvkr2vcyn9mkvxqlpvcfb7h1dry9b35xl9phcsk8"; 12218 12218 }; 12219 12219 meta.homepage = "https://github.com/vuki656/package-info.nvim/"; 12220 12220 meta.hydraPlatforms = [ ]; ··· 12600 12600 12601 12601 precognition-nvim = buildVimPlugin { 12602 12602 pname = "precognition.nvim"; 12603 - version = "2025-06-10"; 12603 + version = "2025-08-14"; 12604 12604 src = fetchFromGitHub { 12605 12605 owner = "tris203"; 12606 12606 repo = "precognition.nvim"; 12607 - rev = "a0ed9c97b24002394201c39755e10495d47b2d3f"; 12608 - sha256 = "15gsd3cyx5na06nwy2p5jj68j6ln5mfjx2v7dvyyns3q6g8k98nl"; 12607 + rev = "2aae2687207029b3611a0e19a289f9e1c7efbe16"; 12608 + sha256 = "0b4yz5jvqd0li373067cs1n761vn9jxkhcvhsrvm9h1snqw1c6nk"; 12609 12609 }; 12610 12610 meta.homepage = "https://github.com/tris203/precognition.nvim/"; 12611 12611 meta.hydraPlatforms = [ ]; ··· 12678 12678 12679 12679 project-nvim = buildVimPlugin { 12680 12680 pname = "project.nvim"; 12681 - version = "2025-08-09"; 12681 + version = "2025-08-15"; 12682 12682 src = fetchFromGitHub { 12683 12683 owner = "DrKJeff16"; 12684 12684 repo = "project.nvim"; 12685 - rev = "91d52b8ac227918a26d85daf6774cd5f340202fa"; 12686 - sha256 = "1a4cn58482ilcs5dw6szk98zkv090fb1whgjlfp2h8hy77773skr"; 12685 + rev = "55d2562a74f2f4ef2ed0d9a286833dab2d6c8d48"; 12686 + sha256 = "1i84fw1h4ka475asyz0jgv89zdy6cqh5yxx4da7bd852sg1vkwz0"; 12687 12687 }; 12688 12688 meta.homepage = "https://github.com/DrKJeff16/project.nvim/"; 12689 12689 meta.hydraPlatforms = [ ]; ··· 13082 13082 13083 13083 remote-sshfs-nvim = buildVimPlugin { 13084 13084 pname = "remote-sshfs.nvim"; 13085 - version = "2025-07-31"; 13085 + version = "2025-08-14"; 13086 13086 src = fetchFromGitHub { 13087 13087 owner = "nosduco"; 13088 13088 repo = "remote-sshfs.nvim"; 13089 - rev = "2796064167e4a964a56e61d9fcea629324e2e7ca"; 13090 - sha256 = "04sd64g3xbddv0sw0scwcadw4cvqdgwzc9y1lkvrvz536xrvwyjy"; 13089 + rev = "d78933aa69dc44a15386ff25a91b2908d49fc363"; 13090 + sha256 = "0ckjrfjfdl18pm3dcnag01lqg17m1f5v255vrhadnz72n299ab8a"; 13091 13091 }; 13092 13092 meta.homepage = "https://github.com/nosduco/remote-sshfs.nvim/"; 13093 13093 meta.hydraPlatforms = [ ]; ··· 13108 13108 13109 13109 render-markdown-nvim = buildVimPlugin { 13110 13110 pname = "render-markdown.nvim"; 13111 - version = "2025-08-01"; 13111 + version = "2025-08-15"; 13112 13112 src = fetchFromGitHub { 13113 13113 owner = "MeanderingProgrammer"; 13114 13114 repo = "render-markdown.nvim"; 13115 - rev = "eec00fbfd7273cdfa0a1154dbef0bb983641eaf8"; 13116 - sha256 = "1b0d005dfdb0kqr17fwrrc5qhnc9m7py0in8pfgy2hvyhgzykjk3"; 13115 + rev = "7b37aaba005df5744fc7a6bd4225983576b2a950"; 13116 + sha256 = "0napk73f3xmc6v3rrz6ak1jd30qd03k9y7fk8ymdj765wcy80020"; 13117 13117 }; 13118 13118 meta.homepage = "https://github.com/MeanderingProgrammer/render-markdown.nvim/"; 13119 13119 meta.hydraPlatforms = [ ]; ··· 13239 13239 13240 13240 roslyn-nvim = buildVimPlugin { 13241 13241 pname = "roslyn.nvim"; 13242 - version = "2025-08-03"; 13242 + version = "2025-08-14"; 13243 13243 src = fetchFromGitHub { 13244 13244 owner = "seblyng"; 13245 13245 repo = "roslyn.nvim"; 13246 - rev = "3b5b6c687ecaeccbac7652673385511a3deba7bb"; 13247 - sha256 = "1iqafnrmlqnz1ks1lqgdr644vr1x2r05aksm0zj54yjfv4ph8sdl"; 13246 + rev = "c2b90375f1cf3ed7ac0f441f994d08ac3666b8e0"; 13247 + sha256 = "11r098gzhczdxc83bmvccz2ng6r54nq2qd4r56lldf4xwqsfi6f4"; 13248 13248 }; 13249 13249 meta.homepage = "https://github.com/seblyng/roslyn.nvim/"; 13250 13250 meta.hydraPlatforms = [ ]; ··· 13369 13369 13370 13370 schema-companion-nvim = buildVimPlugin { 13371 13371 pname = "schema-companion.nvim"; 13372 - version = "2025-06-09"; 13372 + version = "2025-08-11"; 13373 13373 src = fetchFromGitHub { 13374 13374 owner = "cenk1cenk2"; 13375 13375 repo = "schema-companion.nvim"; 13376 - rev = "71c9e53b399dc7063381c693b7f06f7144772d45"; 13377 - sha256 = "0ahra24bz8zphk9irzlsrab12vmxrqxzfbj6h59bshhp97hm2s40"; 13376 + rev = "8ce1dba0ebb1422269998cabb5580e4f8655336e"; 13377 + sha256 = "0f737rwslpc9mgjj88p80kj04a394rvip6i0i5mi3j4d1bfc8ny5"; 13378 13378 }; 13379 13379 meta.homepage = "https://github.com/cenk1cenk2/schema-companion.nvim/"; 13380 13380 meta.hydraPlatforms = [ ]; ··· 13617 13617 13618 13618 smart-splits-nvim = buildVimPlugin { 13619 13619 pname = "smart-splits.nvim"; 13620 - version = "2025-08-01"; 13620 + version = "2025-08-08"; 13621 13621 src = fetchFromGitHub { 13622 13622 owner = "mrjones2014"; 13623 13623 repo = "smart-splits.nvim"; 13624 - rev = "f46b79cf9e83b0a13a4e3f83e3bd5b0d2f172bf2"; 13625 - sha256 = "0lbrdi3rd1d3cqz7bdk37gahi5c61963zxjsfwl86d4s53m3cxqc"; 13624 + rev = "52ee119752ee7e98a2a62f0f172926b5fbbc28a5"; 13625 + sha256 = "1w7ip31vg6hzgd29dzw959mb8cx7ig06208il6ln08ph2ls71slj"; 13626 13626 }; 13627 13627 meta.homepage = "https://github.com/mrjones2014/smart-splits.nvim/"; 13628 13628 meta.hydraPlatforms = [ ]; ··· 13669 13669 13670 13670 smear-cursor-nvim = buildVimPlugin { 13671 13671 pname = "smear-cursor.nvim"; 13672 - version = "2025-08-03"; 13672 + version = "2025-08-14"; 13673 13673 src = fetchFromGitHub { 13674 13674 owner = "sphamba"; 13675 13675 repo = "smear-cursor.nvim"; 13676 - rev = "58e69a911e7f5296b3d7fec5e7414df5a4ac91fb"; 13677 - sha256 = "1n4y5ff4qrmnp1fx886japf3g8bv28hca2hv19v65yndkgsb8wx1"; 13676 + rev = "b900f1feca8c37479c30889b29327385257443c0"; 13677 + sha256 = "0m4vrfvd8cr1wm39dhw11cv1lxv43vl7rxyiwhjz7zcimf1w3s7d"; 13678 13678 }; 13679 13679 meta.homepage = "https://github.com/sphamba/smear-cursor.nvim/"; 13680 13680 meta.hydraPlatforms = [ ]; ··· 13708 13708 13709 13709 snipe-nvim = buildVimPlugin { 13710 13710 pname = "snipe.nvim"; 13711 - version = "2025-07-26"; 13711 + version = "2025-08-10"; 13712 13712 src = fetchFromGitHub { 13713 13713 owner = "leath-dub"; 13714 13714 repo = "snipe.nvim"; 13715 - rev = "77847dc388332cd140e9a0b2fc34c8c1387d6779"; 13716 - sha256 = "0imwd9flgkhrlk38x829ngrczcz91vr17i8ndlp6kxlh9x2ggglg"; 13715 + rev = "c3f4325053ce29aace4829b46d71f64e02707141"; 13716 + sha256 = "1hr1bcd5il2hdmxn8vbnz25fpnq306vbbk5hwizxn0c0dbwrdy3k"; 13717 13717 }; 13718 13718 meta.homepage = "https://github.com/leath-dub/snipe.nvim/"; 13719 13719 meta.hydraPlatforms = [ ]; ··· 13930 13930 13931 13931 srcery-vim = buildVimPlugin { 13932 13932 pname = "srcery-vim"; 13933 - version = "2025-04-24"; 13933 + version = "2025-08-11"; 13934 13934 src = fetchFromGitHub { 13935 13935 owner = "srcery-colors"; 13936 13936 repo = "srcery-vim"; 13937 - rev = "fc032d414752a2befcd3eaecfb86fdca87a2437d"; 13938 - sha256 = "17qq6y3zg7j43i9frhpkfkazm8jgd9mkx7klq79h4kr10jjylryi"; 13937 + rev = "588d03eb8b8e3a47f1bb41caecddcab3fd7ba940"; 13938 + sha256 = "05qnp5kq1sf0ldxxygmz9f4942p8bbynbn9h554c0cl9whwa97bx"; 13939 13939 }; 13940 13940 meta.homepage = "https://github.com/srcery-colors/srcery-vim/"; 13941 13941 meta.hydraPlatforms = [ ]; ··· 14570 14570 14571 14571 telescope-file-browser-nvim = buildVimPlugin { 14572 14572 pname = "telescope-file-browser.nvim"; 14573 - version = "2025-06-16"; 14573 + version = "2025-08-05"; 14574 14574 src = fetchFromGitHub { 14575 14575 owner = "nvim-telescope"; 14576 14576 repo = "telescope-file-browser.nvim"; 14577 - rev = "7bf55ed0ff5be182ad3301cff266581fc1c56cce"; 14578 - sha256 = "1d08218s9qqwdgwzizhcah3p1xxalrrcbzbsljrbg95mrzfi8xrl"; 14577 + rev = "3610dc7dc91f06aa98b11dca5cc30dfa98626b7e"; 14578 + sha256 = "0r5lpmiwpk0h8awsyc8h8cqqrgqm95qpc62a2cvsvhihjv1pnlhn"; 14579 14579 }; 14580 14580 meta.homepage = "https://github.com/nvim-telescope/telescope-file-browser.nvim/"; 14581 14581 meta.hydraPlatforms = [ ]; ··· 15118 15118 15119 15119 tinted-nvim = buildVimPlugin { 15120 15120 pname = "tinted-nvim"; 15121 - version = "2025-08-03"; 15121 + version = "2025-08-09"; 15122 15122 src = fetchFromGitHub { 15123 15123 owner = "tinted-theming"; 15124 15124 repo = "tinted-nvim"; 15125 - rev = "b6df0b0c35d1ad4d0151f75ab66bbaf1c9a0fea2"; 15126 - sha256 = "0lz7cq4p545knpsjhvb3575aj70c5p65cgkh4jvhhprhs3rbk6hz"; 15125 + rev = "8298e72724a7e6854657a4cac4b5e550fb13acf5"; 15126 + sha256 = "02dylm04yrgjzmghiwvhzz5ap0nqq0dx65lvxdsi4yaz6g4mdwdz"; 15127 15127 }; 15128 15128 meta.homepage = "https://github.com/tinted-theming/tinted-nvim/"; 15129 15129 meta.hydraPlatforms = [ ]; ··· 15131 15131 15132 15132 tinted-vim = buildVimPlugin { 15133 15133 pname = "tinted-vim"; 15134 - version = "2025-08-03"; 15134 + version = "2025-08-09"; 15135 15135 src = fetchFromGitHub { 15136 15136 owner = "tinted-theming"; 15137 15137 repo = "tinted-vim"; 15138 - rev = "0083d42efb87b01114b8a317141a510b8fafe758"; 15139 - sha256 = "0nyf02y10vfm4pxp1ivvbgwnnw9bjpdl1gdf9khqja2yd3b0qqbb"; 15138 + rev = "a99c8a86d99bc108b4ff04f373a849ae0a970e53"; 15139 + sha256 = "0cjw9bj5b98blj9bdiiz1b3nr4ljmb8fv07fk6qf62yps68vd82y"; 15140 15140 }; 15141 15141 meta.homepage = "https://github.com/tinted-theming/tinted-vim/"; 15142 15142 meta.hydraPlatforms = [ ]; ··· 15719 15719 15720 15720 unison = buildVimPlugin { 15721 15721 pname = "unison"; 15722 - version = "2025-08-02"; 15722 + version = "2025-08-14"; 15723 15723 src = fetchFromGitHub { 15724 15724 owner = "unisonweb"; 15725 15725 repo = "unison"; 15726 - rev = "51688379a094857988815e563f4b62dc43bf4652"; 15727 - sha256 = "0nmnz8qa3rlk8w0ca5qw2wq9dbbgrh7nz87nb36p08ajpva6bg07"; 15726 + rev = "897f245dbcaed481d0a97447fc5cba92f889a1f6"; 15727 + sha256 = "066ajpp6qns1g5yqw7g9yyk83qqf5arkxhmbbql2xq38zv6bwx5v"; 15728 15728 }; 15729 15729 meta.homepage = "https://github.com/unisonweb/unison/"; 15730 15730 meta.hydraPlatforms = [ ]; ··· 15823 15823 15824 15824 vague-nvim = buildVimPlugin { 15825 15825 pname = "vague.nvim"; 15826 - version = "2025-08-03"; 15826 + version = "2025-08-13"; 15827 15827 src = fetchFromGitHub { 15828 15828 owner = "vague2k"; 15829 15829 repo = "vague.nvim"; 15830 - rev = "676e5b4d74f32ff91c1583eba9c326d2b749672f"; 15831 - sha256 = "1rj02zb12v3rz8z9f80s4pc5jyblql1lyjnq16195z5skfjb95xc"; 15830 + rev = "087ff41d1b4d90e7b64e1c97860700fa6b7f0daf"; 15831 + sha256 = "0y6b11piz4wxzrrgyvkwfw020qbwhiwzdcykijgdig1w6qxhg2i6"; 15832 15832 }; 15833 15833 meta.homepage = "https://github.com/vague2k/vague.nvim/"; 15834 15834 meta.hydraPlatforms = [ ]; ··· 16356 16356 16357 16357 vim-apm = buildVimPlugin { 16358 16358 pname = "vim-apm"; 16359 - version = "2025-08-04"; 16359 + version = "2025-08-08"; 16360 16360 src = fetchFromGitHub { 16361 16361 owner = "ThePrimeagen"; 16362 16362 repo = "vim-apm"; 16363 - rev = "d35c27af75c6bc0ecd75e06ed5369161eb71ac3b"; 16364 - sha256 = "0gab9d0s1pwashnvbcgc8s113axyw3bm8vr8yk4mpw53hsfqznj7"; 16363 + rev = "4f34ad6ad6fedf917c65bc7b6126ff46a6c57895"; 16364 + sha256 = "05nyx8y35921m9h9g93l2nkrclwrahciz7mgx2mvg46zbppc3ahb"; 16365 16365 }; 16366 16366 meta.homepage = "https://github.com/ThePrimeagen/vim-apm/"; 16367 16367 meta.hydraPlatforms = [ ]; ··· 18020 18020 18021 18021 vim-habamax = buildVimPlugin { 18022 18022 pname = "vim-habamax"; 18023 - version = "2025-07-27"; 18023 + version = "2025-08-15"; 18024 18024 src = fetchFromGitHub { 18025 18025 owner = "habamax"; 18026 18026 repo = "vim-habamax"; 18027 - rev = "ad290c69f7b6929310956cfce3c8ae5307cb6161"; 18028 - sha256 = "1y6rlwxxs086l1rr3np9d3v60433vzvdyjkrvfgpihnxwmfllbmv"; 18027 + rev = "e0eb015324aa24cfde3fd429e9c94ad7a552e193"; 18028 + sha256 = "1hl0pnb5kzs8gd1hnd3vch7gdyq3q1nxkzcypz6p0hwpz9xkgy9i"; 18029 18029 }; 18030 18030 meta.homepage = "https://github.com/habamax/vim-habamax/"; 18031 18031 meta.hydraPlatforms = [ ]; ··· 18906 18906 18907 18907 vim-lsp-settings = buildVimPlugin { 18908 18908 pname = "vim-lsp-settings"; 18909 - version = "2025-07-26"; 18909 + version = "2025-08-13"; 18910 18910 src = fetchFromGitHub { 18911 18911 owner = "mattn"; 18912 18912 repo = "vim-lsp-settings"; 18913 - rev = "7634ca48bc3bf544b8434c7e36ea773c7640c8cb"; 18914 - sha256 = "0884z7889f66dh4207z8fgx00nlan0x74pw2ddds6qrcvzb4p94m"; 18913 + rev = "92bedbe26e7787f9ed3dfcd5359dd891c6b6d256"; 18914 + sha256 = "1i35g9zjj70n1bndpwgq6yr3v0sjaz31p88yfvj5h3b7rk8v9sxd"; 18915 18915 }; 18916 18916 meta.homepage = "https://github.com/mattn/vim-lsp-settings/"; 18917 18917 meta.hydraPlatforms = [ ]; ··· 19036 19036 19037 19037 vim-matchup = buildVimPlugin { 19038 19038 pname = "vim-matchup"; 19039 - version = "2025-07-08"; 19039 + version = "2025-08-14"; 19040 19040 src = fetchFromGitHub { 19041 19041 owner = "andymass"; 19042 19042 repo = "vim-matchup"; 19043 - rev = "81313f17443df6974cafa094de52df32b860e1b7"; 19044 - sha256 = "0ddjiqdy5djmfr3pssyrhh8rad6025v04240m8fmv5n4xma7l599"; 19043 + rev = "704c9d98e686836ae1c4b6c4ea5b057ecf5fbbca"; 19044 + sha256 = "0r6k5hyr2a99q9k93b1qvj726hcvzyg6l6wwk7irgdixamqx8039"; 19045 19045 }; 19046 19046 meta.homepage = "https://github.com/andymass/vim-matchup/"; 19047 19047 meta.hydraPlatforms = [ ]; ··· 20831 20831 20832 20832 vim-test = buildVimPlugin { 20833 20833 pname = "vim-test"; 20834 - version = "2025-07-06"; 20834 + version = "2025-08-09"; 20835 20835 src = fetchFromGitHub { 20836 20836 owner = "vim-test"; 20837 20837 repo = "vim-test"; 20838 - rev = "fba18e168565f055d4061408ada0f6abd9ea8bbd"; 20839 - sha256 = "0wsirbpsy00i4a8asr92s36dyi0z2ds9g6xi70xa5c9478sia2yp"; 20838 + rev = "191c9ee3a7c798bd25fe48f3534dcab5cb05c60d"; 20839 + sha256 = "1g4g06qxxbvh59sdzahd10s709ixjss3j9zy9h4i6rlki38zpl0v"; 20840 20840 }; 20841 20841 meta.homepage = "https://github.com/vim-test/vim-test/"; 20842 20842 meta.hydraPlatforms = [ ]; ··· 21651 21651 21652 21652 vimtex = buildVimPlugin { 21653 21653 pname = "vimtex"; 21654 - version = "2025-08-03"; 21654 + version = "2025-08-12"; 21655 21655 src = fetchFromGitHub { 21656 21656 owner = "lervag"; 21657 21657 repo = "vimtex"; 21658 - rev = "2526ed113a43c1f18346a17e752f9d94265a3445"; 21659 - sha256 = "0iwbp02y93cmwinqp38yvahbsiqhpldi78p55jz1635bqc9d803z"; 21658 + rev = "2b1ca6635dd419d485162c9debd4866fab662cad"; 21659 + sha256 = "1kq7l4g57418q1jqp1hpby4252hizz8v1brk7671gwac9r5q90dw"; 21660 21660 }; 21661 21661 meta.homepage = "https://github.com/lervag/vimtex/"; 21662 21662 meta.hydraPlatforms = [ ]; ··· 21781 21781 21782 21782 vscode-nvim = buildVimPlugin { 21783 21783 pname = "vscode.nvim"; 21784 - version = "2025-06-10"; 21784 + version = "2025-08-06"; 21785 21785 src = fetchFromGitHub { 21786 21786 owner = "Mofiqul"; 21787 21787 repo = "vscode.nvim"; 21788 - rev = "4d1c3c64d1afddd7934fb0e687fd9557fc66be41"; 21789 - sha256 = "0al7q15101sv29plfxjg5l0s1wnac7v4bvx97bz394q6nw1ssjnb"; 21788 + rev = "cb9df0873c10a21d05362455ae3bb355eadcef6b"; 21789 + sha256 = "1m5r8w0rm531wkmappbk6487k7fgfkgdpp6hplph6gwsn0688wp0"; 21790 21790 }; 21791 21791 meta.homepage = "https://github.com/Mofiqul/vscode.nvim/"; 21792 21792 meta.hydraPlatforms = [ ]; ··· 22171 22171 22172 22172 yats-vim = buildVimPlugin { 22173 22173 pname = "yats.vim"; 22174 - version = "2025-08-03"; 22174 + version = "2025-08-04"; 22175 22175 src = fetchFromGitHub { 22176 22176 owner = "HerringtonDarkholme"; 22177 22177 repo = "yats.vim"; 22178 - rev = "6005fa473bde80c0b878ad1a7591707717762644"; 22178 + rev = "c3d71452154a12ccf9f6e4219ccbd625474602e5"; 22179 22179 sha256 = "0g0yz9m1s1h986pipl2rz5vfmihz47sqdcrhz538mnkgggjnr9ig"; 22180 22180 fetchSubmodules = true; 22181 22181 }; ··· 22185 22185 22186 22186 yazi-nvim = buildVimPlugin { 22187 22187 pname = "yazi.nvim"; 22188 - version = "2025-08-04"; 22188 + version = "2025-08-13"; 22189 22189 src = fetchFromGitHub { 22190 22190 owner = "mikavilpas"; 22191 22191 repo = "yazi.nvim"; 22192 - rev = "f62926b176aa290d99d3af9130b251707e7b0f8c"; 22193 - sha256 = "14sqn3ka07sdw4biwniv2jbgy79s1id4axymx5cprsim3yyiqsa0"; 22192 + rev = "74460dc4533bde424983702f1257df420455eebe"; 22193 + sha256 = "1yvq9kx23l6dxy7r7nmb7ii1yn2qfdybz3rxfgl38spx1hz8rbqk"; 22194 22194 }; 22195 22195 meta.homepage = "https://github.com/mikavilpas/yazi.nvim/"; 22196 22196 meta.hydraPlatforms = [ ]; ··· 22367 22367 22368 22368 zotcite = buildVimPlugin { 22369 22369 pname = "zotcite"; 22370 - version = "2025-07-24"; 22370 + version = "2025-08-05"; 22371 22371 src = fetchFromGitHub { 22372 22372 owner = "jalvesaq"; 22373 22373 repo = "zotcite"; 22374 - rev = "84909fa676267dd362565f0418db7f01a2e79ab8"; 22375 - sha256 = "19cqkxr0psdwkhzkqaxmxppbmg6iyfrp62fn9fyj1cijycxlqs1c"; 22374 + rev = "80dbb95ef85e9e48a3804c5732c6144ed0ec6386"; 22375 + sha256 = "1k8q7kqj2md997zan78r271rg8s8j8qfans1jh986d7rzazzmcdn"; 22376 22376 }; 22377 22377 meta.homepage = "https://github.com/jalvesaq/zotcite/"; 22378 22378 meta.hydraPlatforms = [ ];
+56 -45
pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix
··· 242 242 }; 243 243 c3 = buildGrammar { 244 244 language = "c3"; 245 - version = "0.0.0+rev=5abce05"; 245 + version = "0.0.0+rev=be8c7fc"; 246 246 src = fetchFromGitHub { 247 247 owner = "c3lang"; 248 248 repo = "tree-sitter-c3"; 249 - rev = "5abce05689bf46999c17bd0dcda2f75b8de61d0d"; 250 - hash = "sha256-76KqDWcGDV8oJGLAW2+Wdo7cAWH0T4SZYtsQxcL83U0="; 249 + rev = "be8c7fcfb424a93f541ebd21d23611b92dff0444"; 250 + hash = "sha256-EmRuBiK1X6FAjfMg0ilA2OVJ/s0ag/dD9EMqALIwmIY="; 251 251 }; 252 252 meta.homepage = "https://github.com/c3lang/tree-sitter-c3"; 253 253 }; 254 254 c_sharp = buildGrammar { 255 255 language = "c_sharp"; 256 - version = "0.0.0+rev=b5eb574"; 256 + version = "0.0.0+rev=3431444"; 257 257 src = fetchFromGitHub { 258 258 owner = "tree-sitter"; 259 259 repo = "tree-sitter-c-sharp"; 260 - rev = "b5eb5742f6a7e9438bee22ce8026d6b927be2cd7"; 261 - hash = "sha256-ORhtfxQ6N72UjFx6WRfdYpkM9mVkTkxQ3PX3ydjIvX4="; 260 + rev = "3431444351c871dffb32654f1299a00019280f2f"; 261 + hash = "sha256-uPksTd5PLwdni7zY5lFLVFF1WaAM3ctrUomDve9Y+VA="; 262 262 }; 263 263 meta.homepage = "https://github.com/tree-sitter/tree-sitter-c-sharp"; 264 264 }; ··· 619 619 }; 620 620 editorconfig = buildGrammar { 621 621 language = "editorconfig"; 622 - version = "0.0.0+rev=8ed3658"; 622 + version = "0.0.0+rev=2d92f8b"; 623 623 src = fetchFromGitHub { 624 624 owner = "ValdezFOmar"; 625 625 repo = "tree-sitter-editorconfig"; 626 - rev = "8ed36589b5d0b3ebfdba45e1fd0ebefa01aafaea"; 627 - hash = "sha256-qNbkfeQ1MVDXsAW7xomUZ+BIqeuNvWZnhSg/e+3gWLM="; 626 + rev = "2d92f8bb8304d0b56883bb9df8f17cb351a07cc3"; 627 + hash = "sha256-QXbSTVijZw0xoQC5CcYDTG63RwMVgumiPsjL98GtltY="; 628 628 }; 629 629 meta.homepage = "https://github.com/ValdezFOmar/tree-sitter-editorconfig"; 630 630 }; ··· 751 751 }; 752 752 fennel = buildGrammar { 753 753 language = "fennel"; 754 - version = "0.0.0+rev=cf7c000"; 754 + version = "0.0.0+rev=653c8ab"; 755 755 src = fetchFromGitHub { 756 756 owner = "alexmozaidze"; 757 757 repo = "tree-sitter-fennel"; 758 - rev = "cf7c000d934f2ff0a282a2c276b1f72e7fb2a099"; 759 - hash = "sha256-HlkgDX+MLlQq7TWRSFHxYR7LuaUtIjWqi25k+0J7XYQ="; 758 + rev = "653c8abc72d1415cb85e032108d39022feb460be"; 759 + hash = "sha256-0FdAiuemiWcpud8/g4ajL685jq0uvtf3W/hGbNPrqOE="; 760 760 }; 761 761 meta.homepage = "https://github.com/alexmozaidze/tree-sitter-fennel"; 762 762 }; ··· 906 906 }; 907 907 gdshader = buildGrammar { 908 908 language = "gdshader"; 909 - version = "0.0.0+rev=ffd9f95"; 909 + version = "0.0.0+rev=14e8340"; 910 910 src = fetchFromGitHub { 911 911 owner = "GodOfAvacyn"; 912 912 repo = "tree-sitter-gdshader"; 913 - rev = "ffd9f958df13cae04593781d7d2562295a872455"; 914 - hash = "sha256-JWlDs0w10TqsPYgZvvaJwAueOciCYaws1Nr8rb0UKy4="; 913 + rev = "14e834063e136fa69b6d91f711f4f1981acf424b"; 914 + hash = "sha256-Zs3egdOi4/1TF86cjlR5UZVEaUpXsUh4xL0tR39RSpE="; 915 915 }; 916 916 meta.homepage = "https://github.com/GodOfAvacyn/tree-sitter-gdshader"; 917 917 }; ··· 1457 1457 }; 1458 1458 javadoc = buildGrammar { 1459 1459 language = "javadoc"; 1460 - version = "0.0.0+rev=26ef3be"; 1460 + version = "0.0.0+rev=76ed31d"; 1461 1461 src = fetchFromGitHub { 1462 1462 owner = "rmuir"; 1463 1463 repo = "tree-sitter-javadoc"; 1464 - rev = "26ef3becea1ff51f0025a8e0c38a6b3a39c09341"; 1465 - hash = "sha256-wM3lzsQLDIng8cuP/KnWumRL4ZwAt+CWafE7l7ldoJI="; 1464 + rev = "76ed31dff40686b350c994ceb4da90ad7f3a7f44"; 1465 + hash = "sha256-pYmxMR/W8BF0i9k1YNM8V2f1djQ6vmLLDHRIaniAX7E="; 1466 1466 }; 1467 1467 meta.homepage = "https://github.com/rmuir/tree-sitter-javadoc"; 1468 1468 }; ··· 1735 1735 }; 1736 1736 llvm = buildGrammar { 1737 1737 language = "llvm"; 1738 - version = "0.0.0+rev=00c5389"; 1738 + version = "0.0.0+rev=be4864b"; 1739 1739 src = fetchFromGitHub { 1740 1740 owner = "benwilliamgraham"; 1741 1741 repo = "tree-sitter-llvm"; 1742 - rev = "00c5389a4598e1dce66fbc3b3d34733d308f2751"; 1743 - hash = "sha256-nRV1DM/UHlVg5bsTeAhwUPX+2DV1sQiusEkC3ncV1xk="; 1742 + rev = "be4864bec38412aa2987b6dad01d1e389e9e9ca9"; 1743 + hash = "sha256-qPJQjqmZOpkn5Z7WLPY+aeW4VR6E2FEN4P1Azkl6oyQ="; 1744 1744 }; 1745 1745 meta.homepage = "https://github.com/benwilliamgraham/tree-sitter-llvm"; 1746 1746 }; ··· 1836 1836 }; 1837 1837 matlab = buildGrammar { 1838 1838 language = "matlab"; 1839 - version = "0.0.0+rev=2d30fdb"; 1839 + version = "0.0.0+rev=37941b2"; 1840 1840 src = fetchFromGitHub { 1841 1841 owner = "acristoffers"; 1842 1842 repo = "tree-sitter-matlab"; 1843 - rev = "2d30fdbb8fc7ec55d2fbf05172437ff0299878a5"; 1844 - hash = "sha256-M/m0QP6x4kpuBnuS3o9wbA7XBPForC7/i4TqR4WZTuk="; 1843 + rev = "37941b272862ba52983f44cb6ec7b0eec6972c95"; 1844 + hash = "sha256-6rFMn0fSXI5I1okm1ECJj+vj2qe+riiiOVPu7Jy8ZVc="; 1845 1845 }; 1846 1846 meta.homepage = "https://github.com/acristoffers/tree-sitter-matlab"; 1847 1847 }; ··· 1969 1969 }; 1970 1970 nix = buildGrammar { 1971 1971 language = "nix"; 1972 - version = "0.0.0+rev=ea1d87f"; 1972 + version = "0.0.0+rev=42d2e0e"; 1973 1973 src = fetchFromGitHub { 1974 1974 owner = "nix-community"; 1975 1975 repo = "tree-sitter-nix"; 1976 - rev = "ea1d87f7996be1329ef6555dcacfa63a69bd55c6"; 1977 - hash = "sha256-VNOPzeyhh/0jHzK0bwEX1kwSIUGoSlCXGhgjHbYvWKk="; 1976 + rev = "42d2e0e2996dec99ea7eb82d64a138e12a7ba006"; 1977 + hash = "sha256-GyqoIqu8neRjz5jpAqumuy3B5hDvNWhmT3xqFHdtwl8="; 1978 1978 }; 1979 1979 meta.homepage = "https://github.com/nix-community/tree-sitter-nix"; 1980 1980 }; ··· 2104 2104 }; 2105 2105 perl = buildGrammar { 2106 2106 language = "perl"; 2107 - version = "0.0.0+rev=a2d8e5a"; 2107 + version = "0.0.0+rev=e95676f"; 2108 2108 src = fetchFromGitHub { 2109 2109 owner = "tree-sitter-perl"; 2110 2110 repo = "tree-sitter-perl"; 2111 - rev = "a2d8e5a32a63019d25bb7452455f4d646d11cce5"; 2112 - hash = "sha256-4it9/LCX36i0XYikYrL8OTwUlfUiJMTV58sYyJ78HQg="; 2111 + rev = "e95676fa54559c71f15ad73e871c1e44db8a9b05"; 2112 + hash = "sha256-VABlYn+OwgR+aD6dFI1bxa/JhwHV0KigsAcug3gze1c="; 2113 2113 }; 2114 2114 meta.homepage = "https://github.com/tree-sitter-perl/tree-sitter-perl"; 2115 2115 }; ··· 2659 2659 }; 2660 2660 scala = buildGrammar { 2661 2661 language = "scala"; 2662 - version = "0.0.0+rev=2d55e74"; 2662 + version = "0.0.0+rev=97aead1"; 2663 2663 src = fetchFromGitHub { 2664 2664 owner = "tree-sitter"; 2665 2665 repo = "tree-sitter-scala"; 2666 - rev = "2d55e74b0485fe05058ffe5e8155506c9710c767"; 2667 - hash = "sha256-ZE+zjpb52hvehJjNchJYK81XZbGAudeTRxlczuoix5g="; 2666 + rev = "97aead18d97708190a51d4f551ea9b05b60641c9"; 2667 + hash = "sha256-INJKij5XzeIkmdemTbrkucdUo9PJOrHKf4rcf6s9OSw="; 2668 2668 }; 2669 2669 meta.homepage = "https://github.com/tree-sitter/tree-sitter-scala"; 2670 2670 }; ··· 2782 2782 }; 2783 2783 solidity = buildGrammar { 2784 2784 language = "solidity"; 2785 - version = "0.0.0+rev=322a3dd"; 2785 + version = "0.0.0+rev=4e938a4"; 2786 2786 src = fetchFromGitHub { 2787 2787 owner = "JoranHonig"; 2788 2788 repo = "tree-sitter-solidity"; 2789 - rev = "322a3ddffca3ed96e559003fd03fa9881d7b4e20"; 2790 - hash = "sha256-NEIrl4bPoKWxrL+dbysNnyqzj8Gey8bu8FNzav+mYBc="; 2789 + rev = "4e938a46c7030dd001bc99e1ac0f0c750ac98254"; 2790 + hash = "sha256-b+DHy7BkkMg88kLhirtCzjF3dHlCFkXea65aGC18fW0="; 2791 2791 }; 2792 2792 meta.homepage = "https://github.com/JoranHonig/tree-sitter-solidity"; 2793 2793 }; ··· 2837 2837 }; 2838 2838 meta.homepage = "https://github.com/GordianDziwis/tree-sitter-sparql"; 2839 2839 }; 2840 + sproto = buildGrammar { 2841 + language = "sproto"; 2842 + version = "0.0.0+rev=d554c14"; 2843 + src = fetchFromGitHub { 2844 + owner = "hanxi"; 2845 + repo = "tree-sitter-sproto"; 2846 + rev = "d554c1456e35e7b2690552d52921c987d0cf6799"; 2847 + hash = "sha256-acc5Si2l9WGBlM1piSiqY/JEj+LSJ0QoZf9cfbrjhq4="; 2848 + }; 2849 + meta.homepage = "https://github.com/hanxi/tree-sitter-sproto"; 2850 + }; 2840 2851 sql = buildGrammar { 2841 2852 language = "sql"; 2842 2853 version = "0.0.0+rev=b1ec2aa"; ··· 2916 2927 }; 2917 2928 superhtml = buildGrammar { 2918 2929 language = "superhtml"; 2919 - version = "0.0.0+rev=c6111e7"; 2930 + version = "0.0.0+rev=6ce62c9"; 2920 2931 src = fetchFromGitHub { 2921 2932 owner = "kristoff-it"; 2922 2933 repo = "superhtml"; 2923 - rev = "c6111e7134c64b69a2934ccbba83460cb532d442"; 2924 - hash = "sha256-AgTrmwnuyrNEtvvF09MER/1dqg6zovG5qFrj1gAb7w0="; 2934 + rev = "6ce62c9f0683f909de7e1601bc866f1db9cf92c9"; 2935 + hash = "sha256-0a3z8QGPbT81mgS59p0RQrTztB4yFkjJdkVL9Ns978E="; 2925 2936 }; 2926 2937 location = "tree-sitter-superhtml"; 2927 2938 meta.homepage = "https://github.com/kristoff-it/superhtml"; ··· 2995 3006 }; 2996 3007 systemverilog = buildGrammar { 2997 3008 language = "systemverilog"; 2998 - version = "0.0.0+rev=b2c95d3"; 3009 + version = "0.0.0+rev=3bd2c5d"; 2999 3010 src = fetchFromGitHub { 3000 3011 owner = "gmlarumbe"; 3001 3012 repo = "tree-sitter-systemverilog"; 3002 - rev = "b2c95d30954fbd3cf9be6d96a3ad82e023c2fa12"; 3003 - hash = "sha256-yaoQugLVQ/JXzF75784nLsd4tfCiTDqkpwvjLATxj1M="; 3013 + rev = "3bd2c5d2f60ed7b07c2177b34e2976ad9a87c659"; 3014 + hash = "sha256-ZkG5XsSBz9cZWLulIu40WPy71OGuVOlZSMcFH3AwXKc="; 3004 3015 }; 3005 3016 meta.homepage = "https://github.com/gmlarumbe/tree-sitter-systemverilog"; 3006 3017 }; ··· 3487 3498 }; 3488 3499 xresources = buildGrammar { 3489 3500 language = "xresources"; 3490 - version = "0.0.0+rev=b0822f2"; 3501 + version = "0.0.0+rev=3b1445a"; 3491 3502 src = fetchFromGitHub { 3492 3503 owner = "ValdezFOmar"; 3493 3504 repo = "tree-sitter-xresources"; 3494 - rev = "b0822f2ea47600c6e11ee64b2dec8353c9684e8d"; 3495 - hash = "sha256-fO0MtUEg3he+DbJcdZQpkdvRcBOmiHw5d+4Cn5E5erA="; 3505 + rev = "3b1445a48e5ce26b43e37b51dec5abb3bf1fb3e4"; 3506 + hash = "sha256-kMvfqw6/NgOWLsKdJpeQBixEaZQOCWg+2lhadFivIio="; 3496 3507 }; 3497 3508 meta.homepage = "https://github.com/ValdezFOmar/tree-sitter-xresources"; 3498 3509 };
+7
pkgs/applications/editors/vim/plugins/overrides.nix
··· 3009 3009 ]; 3010 3010 }; 3011 3011 3012 + project-nvim = super.project-nvim.overrideAttrs { 3013 + checkInputs = [ 3014 + # Optional telescope integration 3015 + self.telescope-nvim 3016 + ]; 3017 + }; 3018 + 3012 3019 python-mode = super.python-mode.overrideAttrs { 3013 3020 postPatch = '' 3014 3021 # NOTE: Fix broken symlink - the pytoolconfig directory was moved to src/
+2 -2
pkgs/applications/editors/vscode/extensions/timonwong.shellcheck/default.nix
··· 10 10 mktplcRef = { 11 11 name = "shellcheck"; 12 12 publisher = "timonwong"; 13 - version = "0.38.1"; 14 - sha256 = "sha256-RWv10/5H1UKkm/t7rwq5pkuB3Dp0XhttIibVM9l5aL4="; 13 + version = "0.38.3"; 14 + sha256 = "sha256-qDispRN7jRIIsP+5lamyR+sNoOwTwl+55QftzO7WBm4="; 15 15 }; 16 16 nativeBuildInputs = [ 17 17 jq
+2 -2
pkgs/applications/emulators/mame/default.nix
··· 38 38 39 39 stdenv.mkDerivation rec { 40 40 pname = "mame"; 41 - version = "0.278"; 41 + version = "0.279"; 42 42 srcVersion = builtins.replaceStrings [ "." ] [ "" ] version; 43 43 44 44 src = fetchFromGitHub { 45 45 owner = "mamedev"; 46 46 repo = "mame"; 47 47 rev = "mame${srcVersion}"; 48 - hash = "sha256-YJt+in9QV7a0tQZnfqFP3Iu6XQD0sryjud4FcgokYFg="; 48 + hash = "sha256-EMb2GK/9KBvZw3HqZwLeqzmQLpgIzJocipzR+F3vUMg="; 49 49 }; 50 50 51 51 outputs = [
+19 -19
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 18 18 "vendorHash": null 19 19 }, 20 20 "acme": { 21 - "hash": "sha256-69oNqBonJ22Jf27NYGpY31NVwdv8YDwxUyRyMeln8LY=", 21 + "hash": "sha256-kG6yGmhP0v7HiGPs2/SsOqhm+33XKfNQAKFJbPwBJG4=", 22 22 "homepage": "https://registry.terraform.io/providers/vancluever/acme", 23 23 "owner": "vancluever", 24 24 "repo": "terraform-provider-acme", 25 - "rev": "v2.35.0", 25 + "rev": "v2.35.1", 26 26 "spdx": "MPL-2.0", 27 - "vendorHash": "sha256-7SXAAJwIkdt96lWhkKKmbP6Fqkcn8puPUrTy1pXnI1c=" 27 + "vendorHash": "sha256-W/867Ag40aeUQry3UtZXyN9HxxmRxnlgViX9IgkYN20=" 28 28 }, 29 29 "age": { 30 30 "hash": "sha256-bJrzjvkrCX93bNqCA+FdRibHnAw6cb61StqtwUY5ok4=", ··· 54 54 "vendorHash": "sha256-WT4sjem80445Qwlr3i/OuQMujrxEKqhws1GLpvbqKaU=" 55 55 }, 56 56 "alicloud": { 57 - "hash": "sha256-ITu569Um+3Y7FPCBNALvePAjCCIf/3+Hu0831o7rZCU=", 57 + "hash": "sha256-pZhEc70Y0WYOP0wOZwpy+pLG5wXCzcmrHPQDqHNTCRQ=", 58 58 "homepage": "https://registry.terraform.io/providers/aliyun/alicloud", 59 59 "owner": "aliyun", 60 60 "repo": "terraform-provider-alicloud", 61 - "rev": "v1.256.0", 61 + "rev": "v1.257.0", 62 62 "spdx": "MPL-2.0", 63 63 "vendorHash": "sha256-+Hc2NCCnJ0fB86fvgE4Kak8fwlsXIiv8avIhE/RoWeM=" 64 64 }, ··· 144 144 "vendorHash": "sha256-1PX776uNp1uXW2i23Ea7b74rEQk2hH6xpDqi7StK3Hs=" 145 145 }, 146 146 "azuread": { 147 - "hash": "sha256-lNjU/206yS+smSe1SYlz0TOqHRlvSQKqhJ67fswNlIQ=", 147 + "hash": "sha256-7dbBhQz0MDUAaz4U1ewM2RayWtp5gbo3FrrQ762Tb6A=", 148 148 "homepage": "https://registry.terraform.io/providers/hashicorp/azuread", 149 149 "owner": "hashicorp", 150 150 "repo": "terraform-provider-azuread", 151 - "rev": "v3.4.0", 151 + "rev": "v3.5.0", 152 152 "spdx": "MPL-2.0", 153 153 "vendorHash": null 154 154 }, ··· 1021 1021 "vendorHash": null 1022 1022 }, 1023 1023 "pagerduty": { 1024 - "hash": "sha256-Aw7z5qq5xEOUkjDgKCh3S7DBpAZSk8ayaic+Ts9DaDs=", 1024 + "hash": "sha256-3KnXqCMvloBRT01Gfk8n9KSriSwP5FV8JPePevnPn60=", 1025 1025 "homepage": "https://registry.terraform.io/providers/PagerDuty/pagerduty", 1026 1026 "owner": "PagerDuty", 1027 1027 "repo": "terraform-provider-pagerduty", 1028 - "rev": "v3.27.3", 1028 + "rev": "v3.28.1", 1029 1029 "spdx": "MPL-2.0", 1030 1030 "vendorHash": null 1031 1031 }, ··· 1129 1129 "vendorHash": "sha256-xo0alLK3fccbKRG5bN1G7orDsP47I3ySAzpZ9O0f2Fg=" 1130 1130 }, 1131 1131 "rootly": { 1132 - "hash": "sha256-1Sfxg72KHhpWg0NgkYeJ1oQ/MVOi0PL3nWd1KL3jNig=", 1132 + "hash": "sha256-8ktCllrqpv0woEPfMkaZ0Ns+1JU9KRGANSgTfqsavgU=", 1133 1133 "homepage": "https://registry.terraform.io/providers/rootlyhq/rootly", 1134 1134 "owner": "rootlyhq", 1135 1135 "repo": "terraform-provider-rootly", 1136 - "rev": "v3.6.0", 1136 + "rev": "v3.6.1", 1137 1137 "spdx": "MPL-2.0", 1138 - "vendorHash": "sha256-75GQmp/ybD+VugrrB8qTbP3OPHy3eyBGe5u7CM7CRcc=" 1138 + "vendorHash": "sha256-39OiEYntUmX2fJZh7G/LcCNFXFmHwdLgFGYz6BUEyOA=" 1139 1139 }, 1140 1140 "routeros": { 1141 1141 "hash": "sha256-q0ZRAip6mgHkdBcns8G7VlDnMNB+ux6ITKwcSL4WrcY=", ··· 1345 1345 "vendorHash": "sha256-PVN3oPT3cxsnWH03twbPSIIERGHCp3XAmcqrQAOULZ4=" 1346 1346 }, 1347 1347 "tencentcloud": { 1348 - "hash": "sha256-X5MhgP1ZxoaEAeUIIrTpF/YLfnsoy0k2RbNRXQzWKq4=", 1348 + "hash": "sha256-vHw2GcBZqWYwXo6jVEUtf6onINuk6duxWofmNffTbqk=", 1349 1349 "homepage": "https://registry.terraform.io/providers/tencentcloudstack/tencentcloud", 1350 1350 "owner": "tencentcloudstack", 1351 1351 "repo": "terraform-provider-tencentcloud", 1352 - "rev": "v1.82.15", 1352 + "rev": "v1.82.17", 1353 1353 "spdx": "MPL-2.0", 1354 1354 "vendorHash": null 1355 1355 }, ··· 1400 1400 "vendorHash": "sha256-UuLHaOEG6jmOAgfdNOtLyUimlAr3g6K8n3Ehu64sKqk=" 1401 1401 }, 1402 1402 "turbot": { 1403 - "hash": "sha256-ZcJMWeKp39wv/T8Kln052PHr4vGUYTDbuGAv9nb8U1c=", 1403 + "hash": "sha256-hUiILS5OVpa5MurChW2U9DQElQxzXo8yQfHRjWcd8cc=", 1404 1404 "homepage": "https://registry.terraform.io/providers/turbot/turbot", 1405 1405 "owner": "turbot", 1406 1406 "repo": "terraform-provider-turbot", 1407 - "rev": "v1.12.4", 1407 + "rev": "v1.13.0", 1408 1408 "spdx": "MPL-2.0", 1409 1409 "vendorHash": null 1410 1410 }, ··· 1517 1517 "vendorHash": "sha256-GRnVhGpVgFI83Lg34Zv1xgV5Kp8ioKTFV5uaqS80ATg=" 1518 1518 }, 1519 1519 "yandex": { 1520 - "hash": "sha256-uVfwAoU2bOfy/ZBSK5kwGP2uWDVlS7NCdk4Uv8ZRgII=", 1520 + "hash": "sha256-Lo6OSvS1MfXNHevSfSjmLmuiRKVMW4Me2e8r6/7VWwI=", 1521 1521 "homepage": "https://registry.terraform.io/providers/yandex-cloud/yandex", 1522 1522 "owner": "yandex-cloud", 1523 1523 "repo": "terraform-provider-yandex", 1524 - "rev": "v0.148.0", 1524 + "rev": "v0.150.0", 1525 1525 "spdx": "MPL-2.0", 1526 - "vendorHash": "sha256-EvEUTx/Y+LpIaDUY8LsXT+aMtLiNpYH8Z7XnNWLLCM4=" 1526 + "vendorHash": "sha256-qwrb6qYjUtMpeX1Mnrvu3zEgtsELvAdr/p4loWxdFaU=" 1527 1527 } 1528 1528 }
+2 -2
pkgs/by-name/bo/boogie/deps.json
··· 1 1 [ 2 2 { 3 3 "pname": "CocoR", 4 - "version": "2014.12.24", 5 - "hash": "sha256-Qh3bhGKcXHD7FQa9KvXbN4D1KR0BWgxCCoxNrtSBSF8=" 4 + "version": "2014.12.25", 5 + "hash": "sha256-qxTcnqh7jziriMHwos5/YArRYUG2+3nNoYYmFyPo8E0=" 6 6 }, 7 7 { 8 8 "pname": "Microsoft.Bcl.AsyncInterfaces",
+2 -2
pkgs/by-name/bo/boogie/package.nix
··· 9 9 10 10 buildDotnetModule rec { 11 11 pname = "Boogie"; 12 - version = "3.5.4"; 12 + version = "3.5.5"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "boogie-org"; 16 16 repo = "boogie"; 17 17 tag = "v${version}"; 18 - hash = "sha256-aTt8lZgGRp+9rFldEJUWlXHosjhRhgj/jfb+N7s1E7I="; 18 + hash = "sha256-OuNzxzcoWrDCmUfQNXEif5wIY+L5jql14231m7nNBe4="; 19 19 }; 20 20 21 21 dotnet-sdk = dotnetCorePackages.sdk_8_0;
+2 -2
pkgs/by-name/bo/bootdev-cli/package.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "bootdev-cli"; 14 - version = "1.20.0"; 14 + version = "1.20.1"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "bootdotdev"; 18 18 repo = "bootdev"; 19 19 tag = "v${version}"; 20 - hash = "sha256-Hm8fvY50stoeQE3A2HeMsL/uDo8+Y4zQx/Zv/ksi7gg="; 20 + hash = "sha256-fjXMaK6Mz38FJNrR+lVDi0EMxMoCTnC1q0wDQS1Mab8="; 21 21 }; 22 22 23 23 vendorHash = "sha256-jhRoPXgfntDauInD+F7koCaJlX4XDj+jQSe/uEEYIMM=";
+2 -2
pkgs/by-name/bo/bosh-cli/package.nix
··· 9 9 buildGoModule rec { 10 10 pname = "bosh-cli"; 11 11 12 - version = "7.9.8"; 12 + version = "7.9.9"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "cloudfoundry"; 16 16 repo = "bosh-cli"; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-PCkP+IUjVlgcNHmBtUO2kuML8+dk4VT2ybtqsKbCzZo="; 18 + sha256 = "sha256-JfSZU+FgNseU8ZKlyPwiuE7Pplp0s0CKXELoTkIy7cc="; 19 19 }; 20 20 vendorHash = null; 21 21
+3 -3
pkgs/by-name/bo/bottom/package.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "bottom"; 13 - version = "0.11.0"; 13 + version = "0.11.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "ClementTsang"; 17 17 repo = "bottom"; 18 18 tag = version; 19 - hash = "sha256-7AK1Nf10nT2Zbu/s7rkCfGuxFa3iIFeh2hy5XbJTSPo="; 19 + hash = "sha256-qxs205EQ4cb4oIWWAHw2xuS78ViHCHUVcV3YjCTzoT0="; 20 20 }; 21 21 22 - cargoHash = "sha256-IpAliZvmhOZw+94kgmfd3Rif8mcqe3LRR5q+i2JLY+s="; 22 + cargoHash = "sha256-GQYnsnc1Yogt/sIuVWO7qlZ7DLzwLn8LvW09njY8COA="; 23 23 24 24 nativeBuildInputs = [ 25 25 autoAddDriverRunpath
+1
pkgs/by-name/br/bruno-cli/package.nix
··· 44 44 npm run build --workspace=packages/bruno-graphql-docs 45 45 npm run build --workspace=packages/bruno-converters 46 46 npm run build --workspace=packages/bruno-query 47 + npm run build --workspace=packages/bruno-filestore 47 48 npm run build --workspace=packages/bruno-requests 48 49 49 50 npm run sandbox:bundle-libraries --workspace=packages/bruno-js
+4 -3
pkgs/by-name/br/bruno/package.nix
··· 19 19 20 20 buildNpmPackage rec { 21 21 pname = "bruno"; 22 - version = "2.8.1"; 22 + version = "2.9.1"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "usebruno"; 26 26 repo = "bruno"; 27 27 tag = "v${version}"; 28 - hash = "sha256-+Ce9jjOZH0kFj4EfRgAabUDA9iRmHq7umVD9pOqGBbw="; 28 + hash = "sha256-xJJHgpckyli7cXM761THtdNVHfmeVBCVCqywoISiI60="; 29 29 30 30 postFetch = '' 31 31 ${lib.getExe npm-lockfile-fix} $out/package-lock.json 32 32 ''; 33 33 }; 34 34 35 - npmDepsHash = "sha256-+ecdxq5YwZdWRATl1Jc3BaDfyVW5n4T4flCLqzFoVIQ="; 35 + npmDepsHash = "sha256-R8bqm2/TU425h7pRQQYrOmteu/UotMfHMz/pe2xkTfU="; 36 36 npmFlags = [ "--legacy-peer-deps" ]; 37 37 38 38 nativeBuildInputs = [ ··· 100 100 npm run build --workspace=packages/bruno-converters 101 101 npm run build --workspace=packages/bruno-app 102 102 npm run build --workspace=packages/bruno-query 103 + npm run build --workspace=packages/bruno-filestore 103 104 npm run build --workspace=packages/bruno-requests 104 105 105 106 npm run sandbox:bundle-libraries --workspace=packages/bruno-js
+3 -3
pkgs/by-name/c2/c2fmzq/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "c2FmZQ"; 10 - version = "0.4.31"; 10 + version = "0.4.32"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "c2FmZQ"; 14 14 repo = "c2FmZQ"; 15 15 rev = "v${version}"; 16 - hash = "sha256-NoC7LiH5fxXklJlni4PvCz69ZBwJTiIGvg0B7bq8s3c="; 16 + hash = "sha256-1FIGA4pmMb4o6H6GmsiSt/UG2PaC6QR3+L9QKhT8sJQ="; 17 17 }; 18 18 19 19 ldflags = [ ··· 23 23 24 24 sourceRoot = "${src.name}/c2FmZQ"; 25 25 26 - vendorHash = "sha256-E4SdX8DIyocnYpfy+VoGdY1sKUhy5LV0xIuR9EFsyYc="; 26 + vendorHash = "sha256-usMM9YU+xW+6X5W6rCOtXeggK/WCcik0s+4dFAfbozM="; 27 27 28 28 subPackages = [ 29 29 "c2FmZQ-client"
+2 -2
pkgs/by-name/ca/camunda-modeler/package.nix
··· 10 10 11 11 stdenvNoCC.mkDerivation rec { 12 12 pname = "camunda-modeler"; 13 - version = "5.38.0"; 13 + version = "5.38.1"; 14 14 15 15 src = fetchurl { 16 16 url = "https://github.com/camunda/camunda-modeler/releases/download/v${version}/camunda-modeler-${version}-linux-x64.tar.gz"; 17 - hash = "sha256-KiRAsRzIeUc8akizH6zgKCyG55vrYhfWGw572etGgWg="; 17 + hash = "sha256-PsNOB2VTwxS9xZxZF79BE+ntF3EpQmdfTagXC2NFhtI="; 18 18 }; 19 19 sourceRoot = "camunda-modeler-${version}-linux-x64"; 20 20
+3 -3
pkgs/by-name/ca/cargo-machete/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "cargo-machete"; 9 - version = "0.8.0"; 9 + version = "0.9.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "bnjbvr"; 13 13 repo = "cargo-machete"; 14 14 rev = "v${version}"; 15 - hash = "sha256-0vlau3leAAonV5E9NAtSqw45eKoZBzHx0BmoEY86Eq8="; 15 + hash = "sha256-exET/zBm5sjnrEx++PRgoWaz7lr7AEF+GVOTOZRGbbU="; 16 16 }; 17 17 18 - cargoHash = "sha256-Oht5V9+DS4vDfd9jcxiMG/gySY5IzhbTY+Ozod4kjko="; 18 + cargoHash = "sha256-vv6QYIkQtrwlXMKPuZ1ZRJkhaN2qDI0x8vSK/bzDipE="; 19 19 20 20 # tests require internet access 21 21 doCheck = false;
+3 -3
pkgs/by-name/ca/catppuccin-kvantum/package.nix
··· 33 33 stdenvNoCC.mkDerivation 34 34 { 35 35 inherit pname; 36 - version = "0-unstable-2025-04-22"; 36 + version = "0-unstable-2025-08-09"; 37 37 38 38 src = fetchFromGitHub { 39 39 owner = "catppuccin"; 40 40 repo = "Kvantum"; 41 - rev = "bc98ccaf9e64a354dd752c24605d4e3a9fe5bfd2"; 42 - hash = "sha256-9DVVUFWhKNe2x3cNVBI78Yf5reh3L22Jsu1KKpKLYsU="; 41 + rev = "48246af7ad19a6b9cde04526a9b57afdecfa0b7b"; 42 + hash = "sha256-Axjl2jQinpazVz8w7yFSWkjG/CnmEMmcmrACJrdS1zg="; 43 43 }; 44 44 45 45 installPhase = ''
+2 -2
pkgs/by-name/co/containerlab/package.nix
··· 8 8 9 9 buildGoModule (finalAttrs: { 10 10 pname = "containerlab"; 11 - version = "0.69.2"; 11 + version = "0.69.3"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "srl-labs"; 15 15 repo = "containerlab"; 16 16 tag = "v${finalAttrs.version}"; 17 - hash = "sha256-wB51Q7spVe4H6ANIt+ug7s2r3sqFLTRsdMH3bgPNCKg="; 17 + hash = "sha256-RJNJ5LUCGaARn5NOSepTL/0Owr/ozFUYAvlynDTyqfY="; 18 18 }; 19 19 20 20 vendorHash = "sha256-28Q1R6P2rpER5RxagnsKy9W3b4FUeRRbkPPovzag//U=";
+2 -2
pkgs/by-name/da/dar/package.nix
··· 21 21 }: 22 22 23 23 stdenv.mkDerivation rec { 24 - version = "2.7.18"; 24 + version = "2.8.0"; 25 25 pname = "dar"; 26 26 27 27 src = fetchzip { 28 28 url = "mirror://sourceforge/dar/${pname}-${version}.tar.gz"; 29 - sha256 = "sha256-Vh82QsUdWASQpejlqxb/rK1CkA52E0ODtvxXb5kadMg="; 29 + sha256 = "sha256-dmUNKhVEz5CpEVzKcDYPSKtYfOMXyXpzGJDJEebwLqU="; 30 30 }; 31 31 32 32 outputs = [
+2 -2
pkgs/by-name/de/deepsource/package.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "deepsource"; 12 - version = "0.10.0"; 12 + version = "0.10.1"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "DeepSourceCorp"; 16 16 repo = "cli"; 17 17 rev = "v${version}"; 18 - hash = "sha256-kmP3U6SRvolmi7QA0rFNTg+w+DJEQUHOmbSE4sdEBK4="; 18 + hash = "sha256-eJRoy/mgcdYgUV9covQbWwn5sk1hJB1UkKnNd/hjuEY="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ installShellFiles ];
+2 -2
pkgs/by-name/ec/ecs-agent/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "amazon-ecs-agent"; 9 - version = "1.97.0"; 9 + version = "1.97.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 rev = "v${version}"; 13 13 owner = "aws"; 14 14 repo = "amazon-ecs-agent"; 15 - hash = "sha256-QdEmV78bQDw3YaJCPCFlLpo1rLsRu4Hn8e/JrZVkGQc="; 15 + hash = "sha256-o4jvB15YZdZGbUyvKkHvJRKpzBBsuSt1cObADRw6dco="; 16 16 }; 17 17 18 18 vendorHash = null;
+2 -2
pkgs/by-name/en/enumer/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "enumer"; 9 - version = "1.5.11"; 9 + version = "1.6.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "dmarkham"; 13 13 repo = "enumer"; 14 14 tag = "v${version}"; 15 - hash = "sha256-zFx4Djar2nC/kanoEkmHTumon2MwKMsoZU6/heUPW2I="; 15 + hash = "sha256-6K9xsJ9VmsfMDAUZZpQPtwZKzyITuRy2mmduwhya9EY="; 16 16 }; 17 17 18 18 vendorHash = "sha256-w9T9PWMJjBJP2MmhGC7e78zbszgCwtVrfO5AQlu/ugQ=";
+3 -3
pkgs/by-name/fl/fleeting-plugin-aws/package.nix
··· 8 8 9 9 buildGoModule (finalAttrs: { 10 10 pname = "fleeting-plugin-aws"; 11 - version = "1.0.1"; 11 + version = "1.1.0"; 12 12 13 13 src = fetchFromGitLab { 14 14 owner = "gitlab-org/fleeting/plugins"; 15 15 repo = "aws"; 16 16 tag = "v${finalAttrs.version}"; 17 - hash = "sha256-3m7t2uGO7Rlfckb8mdYVutW0/ng0OiUAH5XTBoB//ZU="; 17 + hash = "sha256-AN+dHI1ZLNAGAe1tVuUt6KuXUU1gDyFqEdyiOm3OCoo="; 18 18 }; 19 19 20 - vendorHash = "sha256-hfuszGVWfMreGz22+dkx0/cxznjq2XZf7pAn4TWOQ5M="; 20 + vendorHash = "sha256-aOs3zSIvK2EUuMsh+BhD+jxHXASsetPXtm83mv7dAaA="; 21 21 22 22 # Needed for "fleeting-plugin-aws -version" to not show "dev". 23 23 #
+2 -2
pkgs/by-name/gh/gh-markdown-preview/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "gh-markdown-preview"; 11 - version = "1.10.0"; 11 + version = "1.10.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "yusukebe"; 15 15 repo = "gh-markdown-preview"; 16 16 rev = "v${version}"; 17 - hash = "sha256-5jxGFZqYkhFQ4Rx4jbI+fes9ezsuXa+VZowk5Jzhi3I="; 17 + hash = "sha256-jvdNAxPAr3ieOhUWeALmopeN06mZZJ+zBDFVl7gsYoc="; 18 18 }; 19 19 20 20 vendorHash = "sha256-O6Q9h5zcYAoKLjuzGu7f7UZY0Y5rL2INqFyJT2QZJ/E=";
+3 -3
pkgs/by-name/gi/gitlab-ci-ls/package.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "gitlab-ci-ls"; 11 - version = "1.1.8"; 11 + version = "1.1.9"; 12 12 src = fetchFromGitHub { 13 13 owner = "alesbrelih"; 14 14 repo = "gitlab-ci-ls"; 15 15 rev = "${version}"; 16 - hash = "sha256-8386MX5jR4LNrpuXVmv+aLnfEvzSJBZgggS3Uj2MU9A="; 16 + hash = "sha256-RHdzcNqnibWpGn8eqekTlFf201HHwWABV2PNtbbTook="; 17 17 }; 18 18 19 - cargoHash = "sha256-tyx3GGhVyOOo1SnGlS02JqEhY+D70NqzKVX7WeXu+ls="; 19 + cargoHash = "sha256-SZLSTstzokjazhvVXyHjGhsfQ3vKxmSijHiq9dP5ADc="; 20 20 21 21 nativeBuildInputs = [ pkg-config ]; 22 22 buildInputs = [ openssl ];
+2 -2
pkgs/by-name/go/go-musicfox/package.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "go-musicfox"; 14 - version = "4.6.3"; 14 + version = "4.6.6"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "go-musicfox"; 18 18 repo = "go-musicfox"; 19 19 rev = "v${version}"; 20 - hash = "sha256-TxBd+Q7tEyJpcUwOWAl2U1gmdNRYrBkGCtT961/8K1E="; 20 + hash = "sha256-BLX43eWM1vMXgUThcLEHb3+OZejfUye1m/SCecfzTiE="; 21 21 }; 22 22 23 23 deleteVendor = true;
+2 -2
pkgs/by-name/go/govulncheck/package.nix
··· 1 1 { 2 2 lib, 3 - buildGo124Module, 3 + buildGoLatestModule, 4 4 fetchFromGitHub, 5 5 replaceVars, 6 6 }: 7 7 8 - buildGo124Module rec { 8 + buildGoLatestModule rec { 9 9 pname = "govulncheck"; 10 10 version = "1.1.4"; 11 11
+7 -18
pkgs/by-name/he/hedgewars/package.nix
··· 8 8 ffmpeg, 9 9 libglut, 10 10 lib, 11 - fetchhg, 12 - fetchpatch, 11 + fetchurl, 13 12 cmake, 14 13 pkg-config, 15 14 lua5_1, ··· 43 42 ] 44 43 ); 45 44 in 46 - stdenv.mkDerivation { 45 + stdenv.mkDerivation (finalAttrs: { 47 46 pname = "hedgewars"; 48 - version = "1.0.2-unstable-2024-03-24"; 47 + version = "1.0.3"; 49 48 50 - src = fetchhg { 51 - url = "https://hg.hedgewars.org/hedgewars/"; 52 - rev = "fcc98c953b5e"; 53 - hash = "sha256-bUmyYXmhOYjvbd0elyNnaUx3X1QJl3w2/hpxFK9KQCE="; 49 + src = fetchurl { 50 + url = "https://hedgewars.org/download/releases/hedgewars-src-${finalAttrs.version}.tar.bz2"; 51 + hash = "sha256-xcGHfAuuE1THXSuVJ7b5qfeemZMuXQix9vfeFwgGYTA="; 54 52 }; 55 - 56 - patches = [ 57 - (fetchpatch { 58 - # https://github.com/hedgewars/hw/pull/74 59 - name = "Add support for ffmpeg 6.0"; 60 - url = "https://github.com/hedgewars/hw/pull/74/commits/71691fad8654031328f4af077fc32aaf29cdb7d0.patch"; 61 - hash = "sha256-nPfSQCc4eGCa4lCGl3gDx8fJp47N0lgVeDU5A5qb1yo="; 62 - }) 63 - ]; 64 53 65 54 nativeBuildInputs = [ 66 55 cmake ··· 156 145 ]; 157 146 platforms = lib.platforms.linux; 158 147 }; 159 - } 148 + })
+1
pkgs/by-name/im/immich-machine-learning/package.nix
··· 17 17 pyproject = true; 18 18 19 19 pythonRelaxDeps = [ 20 + "numpy" 20 21 "pillow" 21 22 "pydantic-settings" 22 23 ];
+12 -12
pkgs/by-name/im/immich/sources.json
··· 1 1 { 2 - "version": "1.137.3", 3 - "hash": "sha256-oKDIx63LayDWhd4uE16rqFWmmwwSWUsUvgZKsgE3KWg=", 2 + "version": "1.138.0", 3 + "hash": "sha256-yOGqQMy2PdGlHAtfuLB74UokGIwzi3yCiaBOZ/Orsf0=", 4 4 "components": { 5 5 "cli": { 6 - "npmDepsHash": "sha256-Cjk95tsQM89LkMq6H3B5WYdYrMi3hB6d1XpN2xhHv2U=", 7 - "version": "2.2.77" 6 + "npmDepsHash": "sha256-NFEAsy1SabGvQMX+k7jIuBLdfjhb3v9x1O2T9EbTPEM=", 7 + "version": "2.2.78" 8 8 }, 9 9 "server": { 10 - "npmDepsHash": "sha256-CvczIXE3Z3LwZezG7kbfJqg2fak2BRXTr0op1Jo1LIg=", 11 - "version": "1.137.3" 10 + "npmDepsHash": "sha256-B/j4b0ETfM+K9v757egm1DUTynfnFHb8PVRFhxq1H5Y=", 11 + "version": "1.138.0" 12 12 }, 13 13 "web": { 14 - "npmDepsHash": "sha256-PcNgD/JFt3221Qgi54XzQZNa53iw3BUe31DM8k+nz/4=", 15 - "version": "1.137.3" 14 + "npmDepsHash": "sha256-LkGeZPyfJ6wo1O5I13OL9Iz6mjRNXjTNOi5BVoQWQs4=", 15 + "version": "1.138.0" 16 16 }, 17 17 "open-api/typescript-sdk": { 18 - "npmDepsHash": "sha256-M4ahH6ZP0E3wEgK4VLqSsNjhMFNVTMeRFdzU9EO53vE=", 19 - "version": "1.137.3" 18 + "npmDepsHash": "sha256-n1OTaqwfVy3RB6hi2rRGGjSNXsrFRwZMSyKfEuYy57U=", 19 + "version": "1.138.0" 20 20 }, 21 21 "geonames": { 22 - "timestamp": "20250812073904", 23 - "hash": "sha256-02ADfg5wHT1R3vu6imPP22BbT5Y5315eRGmI0mEryGc=" 22 + "timestamp": "20250815003647", 23 + "hash": "sha256-GYO+fbdXC2z0scne9kh+JLpp7h9k2w0tkIcyYDbNusA=" 24 24 } 25 25 } 26 26 }
+3 -3
pkgs/by-name/jo/joker/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "joker"; 9 - version = "1.5.0"; 9 + version = "1.5.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 rev = "v${version}"; 13 13 owner = "candid82"; 14 14 repo = "joker"; 15 - sha256 = "sha256-FdmCNn4vfTpodpyESKd3PThqVCSJ+Mz3gfUDGDQvPCo="; 15 + sha256 = "sha256-pXeYVhm8lpwzn1IAwYquBMmuQsbAev06BzK4TvtNsLo="; 16 16 }; 17 17 18 - vendorHash = "sha256-4j8+NEvudeEhBkwlS7CgNhLNB7maTE46tqZeG9oqs7w="; 18 + vendorHash = "sha256-yH8QVzliAFZlOvprfdh/ClCWK2/7F96f0yLWvuAhGY8="; 19 19 20 20 doCheck = false; 21 21
+35
pkgs/by-name/js/jspecify/package.nix
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchMavenArtifact, 5 + jre_minimal, 6 + }: 7 + 8 + stdenvNoCC.mkDerivation (finalAttrs: { 9 + pname = "jspecify"; 10 + version = "1.0.0"; 11 + 12 + src = fetchMavenArtifact { 13 + groupId = "org.jspecify"; 14 + artifactId = "jspecify"; 15 + version = finalAttrs.version; 16 + hash = "sha256-H61ua+dVd4Hk0zcp1Jrhzcj92m/kd7sMxozjUer9+6s="; 17 + }; 18 + 19 + installPhase = '' 20 + runHook preInstall 21 + 22 + install -Dm444 ${finalAttrs.src.jar} $out/share/java/${finalAttrs.pname}-${finalAttrs.version}.jar 23 + 24 + runHook postInstall 25 + ''; 26 + 27 + meta = { 28 + homepage = "https://jspecify.dev"; 29 + description = "Standard Annotations for Java Static Analysis"; 30 + license = lib.licenses.asl20; 31 + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 32 + inherit (jre_minimal.meta) platforms; 33 + maintainers = with lib.maintainers; [ msgilligan ]; 34 + }; 35 + })
+2 -2
pkgs/by-name/jx/jx/package.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "jx"; 12 - version = "3.16.16"; 12 + version = "3.16.20"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "jenkins-x"; 16 16 repo = "jx"; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-42PqWzRCgA0DmCxUYs8pvOwwdXVdiUTQ59JKFWHgg8A="; 18 + sha256 = "sha256-FMdT01sooWFn9zWEkn2c9CR85/AsUwILH1asyXcltcM="; 19 19 }; 20 20 21 21 vendorHash = "sha256-qCcwCsinzkjN+g7wxn60JoFBGk6Swydi93w3dZNpsZY=";
+2 -2
pkgs/by-name/li/libdsk/package.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "libdsk"; 9 - version = "1.5.21"; 9 + version = "1.5.22"; 10 10 11 11 src = fetchurl { 12 12 url = "https://www.seasip.info/Unix/LibDsk/${pname}-${version}.tar.gz"; 13 - sha256 = "sha256-uDRwFS2oF1k/m4biJvkxq+cacB1QlefM0T5bC2h1dd4="; 13 + sha256 = "sha256-gQ+AC8x2ZfTBs14ZquyzXzcptxKtHYBxBQWbS9sc8Ek="; 14 14 }; 15 15 16 16 meta = with lib; {
+18 -5
pkgs/by-name/mc/mcap-cli/package.nix
··· 8 8 nix-update-script, 9 9 }: 10 10 let 11 - version = "0.0.46"; 11 + version = "0.0.54"; 12 12 in 13 13 buildGoModule { 14 14 ··· 20 20 repo = "mcap"; 21 21 owner = "foxglove"; 22 22 rev = "releases/mcap-cli/v${version}"; 23 - hash = "sha256-UdR5A2ZtCcnQIjPxlwcntZb78CXzJBvRy73GJUqvjuM="; 23 + hash = "sha256-b1Ngj8k2ZkI47lTwbLWTojtoMWQ54eJ8QN5Qd5ot9n4="; 24 24 }; 25 25 26 - vendorHash = "sha256-ofJYarmnOHONu2lZ76GvSua0ViP1gr6968xAuQ/VRNk="; 26 + vendorHash = "sha256-twuXJXiGhjTqlEZ3xD8G9CruSLxFC33PMs2GZadl1Ow="; 27 27 28 28 nativeBuildInputs = [ 29 29 installShellFiles ··· 31 31 32 32 modRoot = "go/cli/mcap"; 33 33 34 - env.GOWORK = "off"; 34 + tags = [ 35 + "sqlite_omit_load_extension" 36 + ] 37 + ++ lib.optionals stdenv.isLinux [ 38 + "netgo" 39 + "osusergo" 40 + ]; 41 + 42 + ldflags = [ "-X github.com/foxglove/mcap/go/cli/mcap/cmd.Version=${version}" ]; 43 + 44 + env = { 45 + CGO_ENABLED = "1"; 46 + GOWORK = "off"; 47 + }; 35 48 36 49 # copy the local versions of the workspace modules 37 50 postConfigure = '' ··· 43 56 checkFlags = [ 44 57 # requires git-lfs and network 45 58 # https://github.com/foxglove/mcap/issues/895 46 - "-skip=TestCat|TestInfo" 59 + "-skip=TestCat|TestInfo|TestRequiresDuplicatedSchemasForIndexedMessages|TestPassesIndexedMessagesWithRepeatedSchemas|TestSortFile" 47 60 ]; 48 61 49 62 postInstall = lib.optionalString (stdenv.hostPlatform.emulatorAvailable buildPackages) (
+3 -3
pkgs/by-name/me/megasync/package.nix
··· 34 34 }: 35 35 stdenv.mkDerivation (finalAttrs: { 36 36 pname = "megasync"; 37 - version = "5.14.0.2"; 37 + version = "5.15.0.1"; 38 38 39 39 src = fetchFromGitHub rec { 40 40 owner = "meganz"; 41 41 repo = "MEGAsync"; 42 42 tag = "v${finalAttrs.version}_Linux"; 43 - hash = "sha256-iYAyk8UCIuYaacdviPSuWmwx6hgzHveW9oyftISZo7s="; 43 + hash = "sha256-CqeR1UmwrwUjr8QM2LCkZ4RaEU2bU1fq+QLCN7yfIJk="; 44 44 fetchSubmodules = false; # DesignTokensImporter cannot be fetched, see #1010 in github:meganz/megasync 45 45 leaveDotGit = true; 46 46 postFetch = '' ··· 148 148 "i686-linux" 149 149 "x86_64-linux" 150 150 ]; 151 - maintainers = [ ]; 151 + maintainers = with lib.maintainers; [ iedame ]; 152 152 mainProgram = "megasync"; 153 153 }; 154 154 })
+3 -3
pkgs/by-name/mu/muffet/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "muffet"; 9 - version = "2.10.9"; 9 + version = "2.11.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "raviqqe"; 13 13 repo = "muffet"; 14 14 rev = "v${version}"; 15 - hash = "sha256-I4xLa4R9vxP+bHa1wP4ci5r4ZIlH2KUif+udSVLUsNk="; 15 + hash = "sha256-GfRR+9PdfY63Pzv2XZenKs8XXAKRr9qMzcHOVhl+hv4="; 16 16 }; 17 17 18 - vendorHash = "sha256-scma8hrm8e/KU2x+TIGOvaUk6nYxKIZ1eaGqs/W2I0I="; 18 + vendorHash = "sha256-oidOSV8y0VwTabipe7XwurUAra9F65nkTXslwXJ94Jw="; 19 19 20 20 meta = { 21 21 description = "Website link checker which scrapes and inspects all pages in a website recursively";
+3 -3
pkgs/by-name/na/namespace-cli/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "namespace-cli"; 9 - version = "0.0.434"; 9 + version = "0.0.437"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "namespacelabs"; 13 13 repo = "foundation"; 14 14 rev = "v${version}"; 15 - hash = "sha256-D12HbOIpnzVNj5UuYlHD1nMrPZjRv+rtMQVl7WoHapc="; 15 + hash = "sha256-NWqk6XOcFwNHfILTisq7SFd88tRce5bTnE25+Ktu4CE="; 16 16 }; 17 17 18 - vendorHash = "sha256-V34JXfFFoN9rPT8NZLVh9GETq1yK8/ja5yJwp8gZ/H0="; 18 + vendorHash = "sha256-BYPwEct3t3JB4xHf9jiy59JnOMZu4NpelX46RAAJD+0="; 19 19 20 20 subPackages = [ 21 21 "cmd/nsc"
+3 -3
pkgs/by-name/ne/netavark/package.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "netavark"; 14 - version = "1.15.2"; 14 + version = "1.16.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "containers"; 18 18 repo = "netavark"; 19 19 rev = "v${version}"; 20 - hash = "sha256-sZzbhlrjTuMwOm0+vBMSqHbpqLGhz6jExpBSokqj/VE="; 20 + hash = "sha256-8PU6CNgpxsTwqLdLHF5cPwAe/9jUMwOBCIWeFoatXEA="; 21 21 }; 22 22 23 - cargoHash = "sha256-ZIFD76GLe44Hx7+/YgBeixsZ+KuYDHBCzMC91R+uTNw="; 23 + cargoHash = "sha256-jLA0KfM/lnXrZW5yfjDBBdIb7cE3pq9puV7NDZv43SY="; 24 24 25 25 nativeBuildInputs = [ 26 26 installShellFiles
+2 -2
pkgs/by-name/ne/netdiscover/package.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "netdiscover"; 12 - version = "0.20"; 12 + version = "0.21"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "netdiscover-scanner"; 16 16 repo = "netdiscover"; 17 17 tag = version; 18 - hash = "sha256-I3t9GsgKFo/eJrqYzj8T2Epfi3SURicwRYPBK25uHEw="; 18 + hash = "sha256-8m59kdhmH8uxOUCqkvr909DhXDCpMF4grO9ULrrZqjA="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ autoreconfHook ];
+2 -2
pkgs/by-name/oc/oci-cli/package.nix
··· 25 25 26 26 py.pkgs.buildPythonApplication rec { 27 27 pname = "oci-cli"; 28 - version = "3.63.3"; 28 + version = "3.64.0"; 29 29 pyproject = true; 30 30 31 31 src = fetchFromGitHub { 32 32 owner = "oracle"; 33 33 repo = "oci-cli"; 34 34 tag = "v${version}"; 35 - hash = "sha256-Z9KVHD0LEz/6Mu6+pSlWZ8ie2p/qJ9DuFkG3xqxN0G4="; 35 + hash = "sha256-ywLeU/qX3sJfVothJ/JSEdp3VEkRI9nXNcWHGuY+X84="; 36 36 }; 37 37 38 38 nativeBuildInputs = [ installShellFiles ];
+2 -2
pkgs/by-name/os/osqp-eigen/package.nix
··· 11 11 12 12 stdenv.mkDerivation (finalAttrs: { 13 13 pname = "osqp-eigen"; 14 - version = "0.10.1"; 14 + version = "0.10.2"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "robotology"; 18 18 repo = "osqp-eigen"; 19 19 rev = "v${finalAttrs.version}"; 20 - hash = "sha256-O31PE9qD2aCApXD+9qjjeDLOiZpxCHRF4VAkttXtNVk="; 20 + hash = "sha256-kK3Le8BSh81LbzjUaV6bQu2S9FfvpnC2NpM0ICfrr9c="; 21 21 }; 22 22 23 23 cmakeFlags = [
+21 -26
pkgs/by-name/pe/persepolis/package.nix
··· 1 1 { 2 2 lib, 3 - qt5, 3 + qt6, 4 4 python3, 5 5 fetchFromGitHub, 6 6 ffmpeg, 7 - libnotify, 8 - pulseaudio, 9 - sound-theme-freedesktop, 10 7 pkg-config, 11 8 meson, 12 9 ninja, 13 10 }: 14 - 15 11 python3.pkgs.buildPythonApplication rec { 16 12 pname = "persepolis"; 17 - version = "5.1.1"; 13 + version = "5.2.0"; 18 14 format = "other"; 19 15 20 16 src = fetchFromGitHub { 21 17 owner = "persepolisdm"; 22 18 repo = "persepolis"; 23 19 tag = version; 24 - hash = "sha256-+gdrcEOUrMZw4nTO4bFLGanD4f7OumxTE99hpXlo69w="; 20 + hash = "sha256-E295Y76EmG6H1nwu7d4+OVPRtoCthROqYY5sIsBvUPI="; 25 21 }; 26 22 27 - postPatch = '' 28 - # Ensure dependencies with hard-coded FHS dependencies are properly detected 29 - substituteInPlace check_dependencies.py --replace-fail "isdir(notifications_path)" "isdir('${sound-theme-freedesktop}/share/sounds/freedesktop')" 30 - ''; 31 - 32 23 # prevent double wrapping 33 24 dontWrapQtApps = true; 34 25 nativeBuildInputs = [ 35 26 meson 36 27 ninja 37 28 pkg-config 38 - qt5.wrapQtAppsHook 29 + qt6.wrapQtAppsHook 30 + qt6.qtbase 39 31 ]; 40 32 41 33 # feed args to wrapPythonApp ··· 43 35 "--prefix PATH : ${ 44 36 lib.makeBinPath [ 45 37 ffmpeg 46 - libnotify 47 38 ] 48 39 }" 49 40 "\${qtWrapperArgs[@]}" 50 41 ]; 51 42 52 43 propagatedBuildInputs = [ 53 - pulseaudio 54 - sound-theme-freedesktop 55 - ] 56 - ++ (with python3.pkgs; [ 57 - psutil 58 - pyqt5 59 - requests 60 - setproctitle 61 - setuptools 62 - yt-dlp 63 - ]); 44 + (with python3.pkgs; [ 45 + psutil 46 + pyside6 47 + pysocks 48 + urllib3 49 + dasbus 50 + requests 51 + setproctitle 52 + setuptools 53 + yt-dlp 54 + ]) 55 + ]; 64 56 65 57 meta = with lib; { 66 58 description = "Download manager GUI written in Python"; 67 59 mainProgram = "persepolis"; 68 60 homepage = "https://persepolisdm.github.io/"; 69 61 license = licenses.gpl3Plus; 70 - maintainers = with maintainers; [ iFreilicht ]; 62 + maintainers = with maintainers; [ 63 + iFreilicht 64 + L0L1P0P 65 + ]; 71 66 }; 72 67 }
+2 -2
pkgs/by-name/pg/pgf3/package.nix
··· 6 6 7 7 stdenvNoCC.mkDerivation (finalAttrs: { 8 8 pname = "pgf"; 9 - version = "3.1.10"; 9 + version = "3.1.11"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "pgf-tikz"; 13 13 repo = "pgf"; 14 14 tag = finalAttrs.version; 15 - hash = "sha256-/zU2aTV39XpQhSpHVi8pBNsaAshcIhl6s+vOL1SO3Vw="; 15 + hash = "sha256-YBoGukCggj0jb1Y+EWZBoaW2XIQpb7ks/nHp4jsSBak="; 16 16 }; 17 17 18 18 dontConfigure = true;
+2 -2
pkgs/by-name/pg/pgfplots/package.nix
··· 6 6 7 7 stdenvNoCC.mkDerivation (finalAttrs: { 8 8 pname = "pgfplots"; 9 - version = "1.18.1"; 9 + version = "1.18.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "pgf-tikz"; 13 13 repo = "pgfplots"; 14 14 tag = finalAttrs.version; 15 - hash = "sha256-cTfOMasBptm0lydKeNHPnjdEyFjEb88awYPn8S2m73c="; 15 + hash = "sha256-Qw7H/oCZDtqm6sdCfwDm9SbIxdoemmhj/XCaHZf5/5c="; 16 16 }; 17 17 18 18 installPhase = ''
+2 -2
pkgs/by-name/re/remmina/package.nix
··· 51 51 52 52 stdenv.mkDerivation (finalAttrs: { 53 53 pname = "remmina"; 54 - version = "1.4.40"; 54 + version = "1.4.41"; 55 55 56 56 src = fetchFromGitLab { 57 57 owner = "Remmina"; 58 58 repo = "Remmina"; 59 59 rev = "v${finalAttrs.version}"; 60 - hash = "sha256-AfZ9tWoaZTRs7GZOdli74e7/X/OMgbvfez9BipoZ/ng="; 60 + hash = "sha256-0KUwZ81CyuLa05Cwe7wJrTbM1Dp9mAzNBI5pR7FKTOU="; 61 61 }; 62 62 63 63 nativeBuildInputs = [
+10 -8
pkgs/by-name/sc/scs/package.nix
··· 7 7 gfortran, 8 8 fixDarwinDylibNames, 9 9 nix-update-script, 10 + python3Packages, 10 11 }: 11 12 12 13 assert (!blas.isILP64) && (!lapack.isILP64); 13 14 14 - stdenv.mkDerivation rec { 15 + stdenv.mkDerivation (finalAttrs: { 15 16 pname = "scs"; 16 - version = "3.2.7"; 17 + version = "3.2.8"; 17 18 18 19 src = fetchFromGitHub { 19 20 owner = "cvxgrp"; 20 21 repo = "scs"; 21 - tag = version; 22 - hash = "sha256-Y28LrYUuDaXPO8sce1pJIfG3A03rw7BumVgxCIKRn+U="; 22 + tag = finalAttrs.version; 23 + hash = "sha256-BPVuihxLUuBbavKVhgdo1MdzkkDq2Nm/EYiAY/jwiqU="; 23 24 }; 24 25 25 26 # Actually link and add libgfortran to the rpath 26 27 postPatch = '' 27 28 substituteInPlace scs.mk \ 28 - --replace "#-lgfortran" "-lgfortran" \ 29 - --replace "gcc" "cc" 29 + --replace-fail "# -lgfortran" "-lgfortran" \ 30 + --replace-fail "gcc" "cc" 30 31 ''; 31 32 32 33 nativeBuildInputs = lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames; ··· 54 55 55 56 passthru = { 56 57 updateScript = nix-update-script { }; 58 + tests.scs-python = python3Packages.scs; 57 59 }; 58 60 59 61 meta = { ··· 62 64 Numerical optimization package for solving large-scale convex cone problems 63 65 ''; 64 66 homepage = "https://github.com/cvxgrp/scs"; 65 - changelog = "https://github.com/cvxgrp/scs/releases/tag/${version}"; 67 + changelog = "https://github.com/cvxgrp/scs/releases/tag/${finalAttrs.version}"; 66 68 license = lib.licenses.mit; 67 69 platforms = lib.platforms.all; 68 70 maintainers = with lib.maintainers; [ bhipple ]; 69 71 }; 70 - } 72 + })
+3 -3
pkgs/by-name/se/secretspec/package.nix
··· 9 9 10 10 rustPlatform.buildRustPackage (finalAttrs: { 11 11 pname = "secretspec"; 12 - version = "0.3.0"; 12 + version = "0.3.1"; 13 13 14 14 src = fetchCrate { 15 15 inherit (finalAttrs) pname version; 16 - hash = "sha256-CYIAbp6O2e8WQcaffJ6fNY0hyKduu9mfH4xkC6ZEEWU="; 16 + hash = "sha256-g1mpdA024fy56aFk35iLnKdk75e+uFkXP1or9P5agbY="; 17 17 }; 18 18 19 - cargoHash = "sha256-cKV4rrIBKPPNfBeHdZ6K8+2yU5gznPGSlFcHfKVCnNM="; 19 + cargoHash = "sha256-uqolUCR2cBR3YFbOQzuSbi88a9ioKmFLsGwBhtBpHDI="; 20 20 21 21 nativeBuildInputs = [ pkg-config ]; 22 22 buildInputs = [ dbus ];
+2 -2
pkgs/by-name/sm/smpmgr/package.nix
··· 7 7 8 8 python3Packages.buildPythonApplication rec { 9 9 pname = "smpmgr"; 10 - version = "0.13.1"; 10 + version = "0.13.2"; 11 11 pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "intercreate"; 15 15 repo = "smpmgr"; 16 16 tag = version; 17 - hash = "sha256-1m1cuPrQqZl392l1lN5XIKZN2qUhJvv9gCMnELEtoUA="; 17 + hash = "sha256-0yb6PNrC6+u/iX/5xVvXq5gdLF7Hol8VOsmY22Ka8B8="; 18 18 }; 19 19 20 20 build-system = with python3Packages; [
+3 -3
pkgs/by-name/so/soundsource/package.nix
··· 6 6 }: 7 7 stdenvNoCC.mkDerivation (finalAttrs: { 8 8 pname = "soundsource"; 9 - version = "5.8.3"; 9 + version = "5.8.5"; 10 10 11 11 src = fetchurl { 12 - url = "https://web.archive.org/web/20250601123927/https://cdn.rogueamoeba.com/soundsource/download/SoundSource.zip"; 13 - hash = "sha256-tomlsji65xVPTqX36UKf7S04M1iBxsXVJFEFqWPgBac="; 12 + url = "https://web.archive.org/web/20250814234406/https://cdn.rogueamoeba.com/soundsource/download/SoundSource.zip"; 13 + hash = "sha256-dsnDyQgS72MMQ9SMBar4kEE2PjFxiZYk1dJ2nIE0Y4o="; 14 14 }; 15 15 16 16 dontUnpack = true;
+2 -2
pkgs/by-name/st/stevenblack-blocklist/package.nix
··· 6 6 }: 7 7 stdenvNoCC.mkDerivation (finalAttrs: { 8 8 pname = "stevenblack-blocklist"; 9 - version = "3.16.9"; 9 + version = "3.16.12"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "StevenBlack"; 13 13 repo = "hosts"; 14 14 tag = finalAttrs.version; 15 - hash = "sha256-GLQLaiWBVdRatbq6OaydAddDREHPlHs/kr1QvQp/n1g="; 15 + hash = "sha256-RqO03N6dRQqbAaSEG20PRyqvmdV1sJYx1P7wTZsOSjE="; 16 16 }; 17 17 18 18 outputs = [
+4 -3
pkgs/by-name/su/supabase-cli/package.nix
··· 16 16 owner = "supabase"; 17 17 repo = "cli"; 18 18 rev = "v${version}"; 19 - hash = "sha256-djzeqSaDTAK8WR3y7hpDk6NpuGlGLMxLvgSTH1IvlWw="; 19 + hash = "sha256-bH/ifvyeZ57GRBzqa9efMKBs5/6U5O10gwpOsDt1Mdc="; 20 20 }; 21 21 22 - vendorHash = "sha256-sjF0NEea51CKPWuZZHsDVZDtQaYz/94qM5iYwPb3jNo="; 22 + vendorHash = "sha256-8gqUlnfyQ41IRa65jBs8SO9bLIE+Rh0iypZt5Ll3wtg="; 23 23 24 24 ldflags = [ 25 25 "-s" ··· 27 27 "-X=github.com/supabase/cli/internal/utils.Version=${version}" 28 28 ]; 29 29 30 + subPackages = [ "." ]; 31 + 30 32 doCheck = false; # tests are trying to connect to localhost 31 33 32 34 nativeBuildInputs = [ installShellFiles ]; 33 35 34 36 postInstall = '' 35 - rm $out/bin/{docs,listdep} 36 37 mv $out/bin/{cli,supabase} 37 38 38 39 installShellCompletion --cmd supabase \
+3 -3
pkgs/by-name/te/templ/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "templ"; 9 - version = "0.3.924"; 9 + version = "0.3.937"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "a-h"; 13 13 repo = "templ"; 14 14 rev = "v${version}"; 15 - hash = "sha256-CdBZRF+Q4q/BFPFuY/DQ8V3giM5iTtadM31ta1JF5OE="; 15 + hash = "sha256-S3mXVlPnL79BL9twuZpPG6c+TWEC68LZE9cvnGWTLwk="; 16 16 }; 17 17 18 - vendorHash = "sha256-oObzlisjvS9LeMYh3DzP+l7rgqBo9bQcbNjKCUJ8rcY="; 18 + vendorHash = "sha256-pVZjZCXT/xhBCMyZdR7kEmB9jqhTwRISFp63bQf6w5A="; 19 19 20 20 subPackages = [ "cmd/templ" ]; 21 21
+2 -2
pkgs/by-name/tr/trealla/package.nix
··· 23 23 ]; 24 24 stdenv.mkDerivation (finalAttrs: { 25 25 pname = "trealla"; 26 - version = "2.80.8"; 26 + version = "2.82.9"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "trealla-prolog"; 30 30 repo = "trealla"; 31 31 rev = "v${finalAttrs.version}"; 32 - hash = "sha256-ssOytMvL8Qtc8F2e7Rcd1HwllKCtncutFNFl5df2DoU="; 32 + hash = "sha256-2eexWmrVNjfOnK+upPJfUMxE+Xuo5dOyJrEFNGuCapc="; 33 33 }; 34 34 35 35 postPatch = ''
+3 -3
pkgs/by-name/wd/wdt/package.nix
··· 13 13 14 14 stdenv.mkDerivation { 15 15 pname = "wdt"; 16 - version = "1.27.1612021-unstable-2025-08-01"; 16 + version = "1.27.1612021-unstable-2025-08-06"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "facebook"; 20 20 repo = "wdt"; 21 - rev = "2852c67464dea03b6ab737c8608f86bc16d563ca"; 22 - sha256 = "sha256-2eD9i9i7JZQ16/Hf5WeUZ4rHxxwuGViotfEFrLWbcA4="; 21 + rev = "b868ad1fcee52c9686d3101bd46a00c48b68ae53"; 22 + sha256 = "sha256-3N81m+T2uhNhZ+JSBS2yxsEfYMG2/ppgStDt53j36dY="; 23 23 }; 24 24 25 25 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/by-name/wg/wgcf/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "wgcf"; 9 - version = "2.2.27"; 9 + version = "2.2.28"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "ViRb3"; 13 13 repo = "wgcf"; 14 14 tag = "v${version}"; 15 - hash = "sha256-4kzEXJhnE245NnvA0RBsL5oov8sJoiiLZRgw9J06yAc="; 15 + hash = "sha256-Xl0XXg5m+IPkUmwhFrUZUWwbGAGhKwnHoA+YPw3p5ws="; 16 16 }; 17 17 18 18 subPackages = "."; 19 19 20 - vendorHash = "sha256-7wdVyDQCIJ0oSipUJR8CdRaTGQtq//IMDurrpziLFjk="; 20 + vendorHash = "sha256-shb5m0zWRa9sX0g0WOPpcNMgwpfn8R3c/2GiZGeKr9k="; 21 21 22 22 meta = with lib; { 23 23 description = "Cross-platform, unofficial CLI for Cloudflare Warp";
+2 -2
pkgs/by-name/wh/whisper-ctranslate2/package.nix
··· 8 8 }: 9 9 let 10 10 pname = "whisper-ctranslate2"; 11 - version = "0.5.3"; 11 + version = "0.5.4"; 12 12 in 13 13 python3Packages.buildPythonApplication { 14 14 inherit pname version; ··· 18 18 owner = "Softcatala"; 19 19 repo = "whisper-ctranslate2"; 20 20 tag = version; 21 - hash = "sha256-rRxadVYv69Jgzai+ANS6oKHOArTI9vPDPeTybtOySww="; 21 + hash = "sha256-FunrxIZaKecn2g2ZZ9aBN8IMqwfJG2oEQyH8lv7Tjzo="; 22 22 }; 23 23 24 24 build-system = [ python3Packages.setuptools ];
+3 -3
pkgs/by-name/yo/youki/package.nix
··· 13 13 14 14 rustPlatform.buildRustPackage rec { 15 15 pname = "youki"; 16 - version = "0.5.4"; 16 + version = "0.5.5"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "containers"; 20 20 repo = "youki"; 21 21 rev = "v${version}"; 22 - hash = "sha256-tWe5EPodO+slp+K7mn9UTVApNdiDRPMsOa9RfiT9qQw="; 22 + hash = "sha256-r8/H/qTPBoNubg3f4+WC8lBkQXpdEE8Dapt2sGoFcTc="; 23 23 }; 24 24 25 25 nativeBuildInputs = [ ··· 53 53 "youki" 54 54 ]; 55 55 56 - cargoHash = "sha256-YM4D2DDXc9o4ak2DT36IeXpYykA/9R7PPqmIXkZ9aDs="; 56 + cargoHash = "sha256-S2Cv7k4ine9/VbY2r8BSRwqVBtuqX55RYglm9W+LXvc="; 57 57 58 58 meta = { 59 59 description = "Container runtime written in Rust";
+2 -2
pkgs/desktops/lomiri/applications/lomiri-docviewer-app/default.nix
··· 19 19 20 20 stdenv.mkDerivation (finalAttrs: { 21 21 pname = "lomiri-docviewer-app"; 22 - version = "3.1.1"; 22 + version = "3.1.2"; 23 23 24 24 src = fetchFromGitLab { 25 25 owner = "ubports"; 26 26 repo = "development/apps/lomiri-docviewer-app"; 27 27 tag = "v${finalAttrs.version}"; 28 - hash = "sha256-U3Rn8KmvUKUI3FcgI8S5sVUb+lGvCz7Hmh5bB4GUAJo="; 28 + hash = "sha256-wtNVLSrBR60NSCRemc2ccj8poUicR7kZIb69hItzjLM="; 29 29 }; 30 30 31 31 postPatch = ''
+14 -7
pkgs/development/libraries/botan/default.nix
··· 12 12 esdm, 13 13 tpm2-tss, 14 14 static ? stdenv.hostPlatform.isStatic, # generates static libraries *only* 15 + windows, 15 16 16 17 # build ESDM RNG plugin 17 18 withEsdm ? false, ··· 73 74 ++ lib.optionals (stdenv.hostPlatform.isLinux && withTpm2) [ 74 75 tpm2-tss 75 76 ] 76 - ++ lib.optionals (lib.versionAtLeast version "3.6.0") [ 77 + ++ lib.optionals (lib.versionAtLeast version "3.6.0" && !stdenv.hostPlatform.isMinGW) [ 77 78 jitterentropy 78 79 ] 79 - ++ lib.optionals (lib.versionAtLeast version "3.7.0" && withEsdm) [ 80 + ++ lib.optionals (lib.versionAtLeast version "3.7.0" && withEsdm && !stdenv.hostPlatform.isMinGW) [ 80 81 esdm 82 + ] 83 + ++ lib.optionals (stdenv.hostPlatform.isMinGW) [ 84 + windows.pthreads 81 85 ]; 82 86 83 87 buildTargets = [ ··· 105 109 ++ lib.optionals (stdenv.hostPlatform.isLinux && withTpm2) [ 106 110 "--with-tpm2" 107 111 ] 108 - ++ lib.optionals (lib.versionAtLeast version "3.6.0") [ 112 + ++ lib.optionals (lib.versionAtLeast version "3.6.0" && !stdenv.hostPlatform.isMinGW) [ 109 113 "--enable-modules=jitter_rng" 110 114 ] 111 - ++ lib.optionals (lib.versionAtLeast version "3.7.0" && withEsdm) [ 115 + ++ lib.optionals (lib.versionAtLeast version "3.7.0" && withEsdm && !stdenv.hostPlatform.isMinGW) [ 112 116 "--enable-modules=esdm_rng" 113 117 ] 114 118 ++ lib.optionals (lib.versionAtLeast version "3.8.0" && policy != null) [ ··· 117 121 ++ lib.optionals (lib.versionAtLeast version "3.8.0" && policy == "bsi") [ 118 122 "--enable-module=ffi" 119 123 "--enable-module=shake" 124 + ] 125 + ++ lib.optionals (stdenv.hostPlatform.isMinGW) [ 126 + "--os=mingw" 120 127 ]; 121 128 122 129 configurePhase = '' ··· 151 158 thillux 152 159 nikstur 153 160 ]; 154 - platforms = platforms.unix; 161 + platforms = platforms.unix ++ lib.optionals (lib.versionAtLeast version "3.0") platforms.windows; 155 162 license = licenses.bsd2; 156 163 }; 157 164 }); 158 165 in 159 166 { 160 167 botan3 = common { 161 - version = "3.8.1"; 162 - hash = "sha256-sDloHUuGGi9YU3Rti6gG9VPiOGntctie2/o8Pb+hfmg="; 168 + version = "3.9.0"; 169 + hash = "sha256-jD8oS1jd1C6OQ+n6hqcSnYfqfD93aoDT2mPsIHIrCIM="; 163 170 }; 164 171 165 172 botan2 = common {
+4 -6
pkgs/development/libraries/vtk/generic.nix
··· 140 140 cmake 141 141 pkg-config # required for finding MySQl 142 142 ] 143 - ++ lib.optional pythonSupport python3Packages.python 143 + ++ lib.optionals pythonSupport [ 144 + python3Packages.python 145 + python3Packages.pythonRecompileBytecodeHook 146 + ] 144 147 ++ lib.optional ( 145 148 pythonSupport && stdenv.buildPlatform == stdenv.hostPlatform 146 149 ) python3Packages.pythonImportsCheckHook; ··· 287 290 (lib.cmakeBool "VTK_USE_MPI" mpiSupport) 288 291 (vtkBool "VTK_GROUP_ENABLE_MPI" mpiSupport) 289 292 ]; 290 - 291 - # byte-compile python modules since the CMake build does not do it 292 - postInstall = lib.optionalString pythonSupport '' 293 - python -m compileall -s $out $out/${python3Packages.python.sitePackages} 294 - ''; 295 293 296 294 pythonImportsCheck = [ "vtk" ]; 297 295
+72
pkgs/development/python-modules/botan3/default.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + buildPythonPackage, 5 + 6 + # dependencies 7 + botan3, 8 + 9 + # build dependencies 10 + setuptools, 11 + setuptools-scm, 12 + }: 13 + 14 + buildPythonPackage rec { 15 + pname = "botan3"; 16 + 17 + inherit (botan3) src version; 18 + 19 + pyproject = true; 20 + 21 + build-system = [ 22 + setuptools 23 + setuptools-scm 24 + ]; 25 + 26 + # not necessary for build, but makes it easier to discover for 27 + # SBOM tooling 28 + buildInputs = [ botan3 ]; 29 + 30 + # not necessary for build, but makes it easier to discover for 31 + # SBOM tooling 32 + nativeBuildInputs = [ 33 + setuptools 34 + setuptools-scm 35 + ]; 36 + 37 + sourceRoot = "Botan-${version}/src/python"; 38 + 39 + postPatch = '' 40 + # remove again, when https://github.com/randombit/botan/pull/5040 got 41 + # merged 42 + cp ${./pyproject.toml} pyproject.toml 43 + '' 44 + + ( 45 + if stdenv.hostPlatform.isDarwin then 46 + '' 47 + botanLibPath=$(find ${lib.getLib botan3}/lib -name 'libbotan-3.dylib' -print -quit) 48 + substituteInPlace botan3.py --replace-fail 'libbotan-3.dylib' "$botanLibPath" 49 + '' 50 + else if stdenv.hostPlatform.isMinGW then 51 + '' 52 + botanLibPath=$(find ${lib.getLib botan3}/lib -name 'libbotan-3.dll' -print -quit) 53 + substituteInPlace botan3.py --replace-fail 'libbotan-3.dll' "$botanLibPath" 54 + '' 55 + # Linux/other Unix-like system 56 + else 57 + '' 58 + botanLibPath=$(find ${lib.getLib botan3}/lib -name 'libbotan-3.so' -print -quit) 59 + substituteInPlace botan3.py --replace-fail 'libbotan-3.so' "$botanLibPath" 60 + '' 61 + ); 62 + 63 + pythonImportsCheck = [ "botan3" ]; 64 + 65 + meta = { 66 + description = "Python Bindings for botan3 cryptography library"; 67 + homepage = "https://github.com/randombit/botan"; 68 + changelog = "https://github.com/randombit/botan/blob/${version}/news.rst"; 69 + license = lib.licenses.bsd2; 70 + maintainers = with lib.maintainers; [ thillux ]; 71 + }; 72 + }
+35
pkgs/development/python-modules/botan3/pyproject.toml
··· 1 + [project] 2 + name = "botan3" 3 + description = "Python bindings for Botan C++ cryptography library" 4 + license = "BSD-2-Clause" 5 + dynamic = [ "version" ] 6 + authors = [ 7 + {name = "Jack Lloyd", email = "jack@randombit.net"}, 8 + {name = "Botan contributors" } 9 + ] 10 + maintainers = [ {name = "Jack Lloyd", email = "jack@randombit.net"} ] 11 + classifiers = [ 12 + "Development Status :: 5 - Production/Stable", 13 + "Topic :: Security :: Cryptography", 14 + "Operating System :: OS Independent", 15 + "Programming Language :: Python", 16 + "Programming Language :: Python :: Implementation :: CPython", 17 + "Programming Language :: Python :: Implementation :: PyPy" 18 + ] 19 + # adapt from time to time with the latest still supported version 20 + requires-python = ">=3.9" 21 + 22 + [project.urls] 23 + Homepage = "https://botan.randombit.net/" 24 + Issues = "https://github.com/randombit/botan/issues" 25 + 26 + [build-system] 27 + requires = [ "setuptools>=61", "setuptools-scm>=8" ] 28 + build-backend = "setuptools.build_meta" 29 + 30 + [tool.setuptools] 31 + py-modules = ["botan3"] 32 + 33 + # read version information from git 34 + [tool.setuptools_scm] 35 + root = "../.."
+2 -2
pkgs/development/python-modules/brax/default.nix
··· 38 38 39 39 buildPythonPackage rec { 40 40 pname = "brax"; 41 - version = "0.12.4"; 41 + version = "0.13.0"; 42 42 pyproject = true; 43 43 44 44 src = fetchFromGitHub { 45 45 owner = "google"; 46 46 repo = "brax"; 47 47 tag = "v${version}"; 48 - hash = "sha256-/eb0WjMzHwD1tjTyZ2fb2dzvGrWnyOLcVLOx4BeKvqk="; 48 + hash = "sha256-mSFbFzSrfAvAE6y7atUeucUkpp/20KP70j5xPm/xvB0="; 49 49 }; 50 50 51 51 build-system = [
+2 -2
pkgs/development/python-modules/coiled/default.nix
··· 39 39 40 40 buildPythonPackage rec { 41 41 pname = "coiled"; 42 - version = "1.116.0"; 42 + version = "1.118.1"; 43 43 pyproject = true; 44 44 45 45 src = fetchPypi { 46 46 inherit pname version; 47 - hash = "sha256-OBaGd9aC1TGtVeQ5K7iI2sWuBV0wG9Jt5sN92EMvi9M="; 47 + hash = "sha256-74LILNrkvopEdEdECe0pwfgwxdGrfXucWf76Vkj95GQ="; 48 48 }; 49 49 50 50 build-system = [
+19 -24
pkgs/development/python-modules/finetuning-scheduler/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "finetuning-scheduler"; 23 - version = "2.5.1"; 23 + version = "2.5.3"; 24 24 pyproject = true; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "speediedan"; 28 28 repo = "finetuning-scheduler"; 29 29 tag = "v${version}"; 30 - hash = "sha256-+jt+if9aAbEd2XDMC7RpZmJpm4VUEZMt5xoLOP/esMg="; 30 + hash = "sha256-6WRKDYug7eVaTSY2R2jBcj9o/984mqKZZi36XRT7KyI="; 31 31 }; 32 32 33 33 patches = [ ··· 58 58 59 59 nativeCheckInputs = [ pytestCheckHook ]; 60 60 enabledTestPaths = [ "tests" ]; 61 - disabledTests = [ 62 - # Fails since pytorch-lightning was bumped to 2.5.3 63 - # IndexError: list index out of range 64 - # https://github.com/speediedan/finetuning-scheduler/issues/19 65 - "test_fts_misconfiguration" 66 - ] 67 - ++ lib.optionals (pythonOlder "3.12") [ 68 - # torch._dynamo.exc.BackendCompilerFailed: backend='inductor' raised: 69 - # LoweringException: ImportError: cannot import name 'triton_key' from 'triton.compiler.compiler' 70 - "test_fts_dynamo_enforce_p0" 71 - "test_fts_dynamo_resume" 72 - "test_fts_dynamo_intrafit" 73 - ] 74 - ++ lib.optionals (pythonAtLeast "3.13") [ 75 - # RuntimeError: Dynamo is not supported on Python 3.13+ 76 - "test_fts_dynamo_enforce_p0" 77 - "test_fts_dynamo_resume" 78 - ] 79 - ++ lib.optionals (stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isLinux) [ 80 - # slightly exceeds numerical tolerance on aarch64-linux: 81 - "test_fts_frozen_bn_track_running_stats" 82 - ]; 61 + disabledTests = 62 + lib.optionals (pythonOlder "3.12") [ 63 + # torch._dynamo.exc.BackendCompilerFailed: backend='inductor' raised: 64 + # LoweringException: ImportError: cannot import name 'triton_key' from 'triton.compiler.compiler' 65 + "test_fts_dynamo_enforce_p0" 66 + "test_fts_dynamo_resume" 67 + "test_fts_dynamo_intrafit" 68 + ] 69 + ++ lib.optionals (pythonAtLeast "3.13") [ 70 + # RuntimeError: Dynamo is not supported on Python 3.13+ 71 + "test_fts_dynamo_enforce_p0" 72 + "test_fts_dynamo_resume" 73 + ] 74 + ++ lib.optionals (stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isLinux) [ 75 + # slightly exceeds numerical tolerance on aarch64-linux: 76 + "test_fts_frozen_bn_track_running_stats" 77 + ]; 83 78 84 79 pythonImportsCheck = [ "finetuning_scheduler" ]; 85 80
+2 -2
pkgs/development/python-modules/gvm-tools/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "gvm-tools"; 14 - version = "25.3.1"; 14 + version = "25.3.2"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.9"; ··· 20 20 owner = "greenbone"; 21 21 repo = "gvm-tools"; 22 22 tag = "v${version}"; 23 - hash = "sha256-luvxcsTxhOEi0Tz5Hc2QZgFjBa7j1PUG+cw8kuDch7Y="; 23 + hash = "sha256-C0LWO9oQ5TgTgSFcxzm5YNhis24uxpenBalwqns2VL0="; 24 24 }; 25 25 26 26 __darwinAllowLocalNetworking = true;
+2 -2
pkgs/development/python-modules/markdownify/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "markdownify"; 15 - version = "1.1.0"; 15 + version = "1.2.0"; 16 16 pyproject = true; 17 17 18 18 disabled = pythonOlder "3.7"; ··· 21 21 owner = "matthewwithanm"; 22 22 repo = "python-markdownify"; 23 23 tag = version; 24 - hash = "sha256-eU0F3nc96q2U/3PGM/gnrRCmetIqutDugz6q+PIb8CU="; 24 + hash = "sha256-/u9rjbHeBhiqzpudsv2bFSaFbme1zmCv8/jEflEDNkQ="; 25 25 }; 26 26 27 27 build-system = [
+4 -4
pkgs/development/python-modules/netbox-napalm-plugin/default.nix
··· 10 10 }: 11 11 buildPythonPackage rec { 12 12 pname = "netbox-napalm-plugin"; 13 - version = "0.3.1"; 13 + version = "0.3.2"; 14 14 pyproject = true; 15 15 16 16 disabled = python.pythonVersion != netbox.python.pythonVersion; ··· 18 18 src = fetchFromGitHub { 19 19 owner = "netbox-community"; 20 20 repo = "netbox-napalm-plugin"; 21 - rev = "v${version}"; 22 - hash = "sha256-nog6DymnnD0ABzG21jy00yNWhSTHfd7vJ4vo1DjsfKs="; 21 + tag = "v${version}"; 22 + hash = "sha256-gaoAFToMHszCtn56Y6nczwemIAAeaijRPVW2aSt+8C4="; 23 23 }; 24 24 25 25 build-system = [ setuptools ]; ··· 45 45 meta = { 46 46 description = "Netbox plugin for Napalm integration"; 47 47 homepage = "https://github.com/netbox-community/netbox-napalm-plugin"; 48 - changelog = "https://github.com/netbox-community/netbox-napalm-plugin/releases/tag/${src.rev}"; 48 + changelog = "https://github.com/netbox-community/netbox-napalm-plugin/releases/tag/${src.tag}"; 49 49 license = lib.licenses.asl20; 50 50 platforms = lib.platforms.linux; 51 51 maintainers = with lib.maintainers; [ felbinger ];
+3 -3
pkgs/development/python-modules/onvif-zeep-async/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "onvif-zeep-async"; 15 - version = "4.0.2"; 15 + version = "4.0.3"; 16 16 pyproject = true; 17 17 18 - disabled = pythonOlder "3.7"; 18 + disabled = pythonOlder "3.10"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "openvideolibs"; 22 22 repo = "python-onvif-zeep-async"; 23 23 tag = "v${version}"; 24 - hash = "sha256-1reP3BKfFh45L2WUrXS3e/DX22oZTMS6AwVlz6JHFAU="; 24 + hash = "sha256-xffbMz8NZpazLw3uRPMNv5i23yk6RmOBCgE1gSj9d7A="; 25 25 }; 26 26 27 27 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/openai-agents/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "openai-agents"; 17 - version = "0.2.4"; 17 + version = "0.2.7"; 18 18 pyproject = true; 19 19 20 20 src = fetchPypi { 21 21 inherit version; 22 22 pname = "openai_agents"; 23 - hash = "sha256-B7fXWbkphGBhaeuqLCTlVfHJPduJfXLyND8s6feEc+Y="; 23 + hash = "sha256-sFEFoo8s0WM7xlUmTTLHujAP0zN960rDLwVPmYvDSFI="; 24 24 }; 25 25 26 26 build-system = [
+2 -2
pkgs/development/python-modules/orbax-checkpoint/default.nix
··· 36 36 37 37 buildPythonPackage rec { 38 38 pname = "orbax-checkpoint"; 39 - version = "0.11.21"; 39 + version = "0.11.22"; 40 40 pyproject = true; 41 41 42 42 src = fetchFromGitHub { 43 43 owner = "google"; 44 44 repo = "orbax"; 45 45 tag = "v${version}"; 46 - hash = "sha256-hb7Y/usg4JFRKsahKNV8rvjMGAN4xYEaaWsedGKcK+Y="; 46 + hash = "sha256-+0m6Y90z9BSI6mAOdDuCyZnjoJOvKQgwKvAQB1TZC88="; 47 47 }; 48 48 49 49 sourceRoot = "${src.name}/checkpoint";
+2 -2
pkgs/development/python-modules/pbs-installer/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pbs-installer"; 13 - version = "2025.07.23"; 13 + version = "2025.08.14"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.8"; ··· 19 19 owner = "frostming"; 20 20 repo = "pbs-installer"; 21 21 tag = version; 22 - hash = "sha256-cQPQ5IDjTBTHwUU60w+gCcwTyiaC30DPIb96e0hOHIY="; 22 + hash = "sha256-DIYoVKQ3FuZGuOWSWPRo8urrF8DN6lrAXmfQ5bT+LL8="; 23 23 }; 24 24 25 25 build-system = [ pdm-backend ];
+2 -2
pkgs/development/python-modules/psd-tools/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "psd-tools"; 22 - version = "1.10.8"; 22 + version = "1.10.9"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.9"; ··· 28 28 owner = "psd-tools"; 29 29 repo = "psd-tools"; 30 30 tag = "v${version}"; 31 - hash = "sha256-IgDgHVSnqSsodVm/tUnINVbUOen8lw+y6q4Z8C+eFE8="; 31 + hash = "sha256-HCvajc69u1avtzN3vIYjyymZmJkJY+57EjqHfdjvUH0="; 32 32 }; 33 33 34 34 build-system = [
-628
pkgs/development/python-modules/py-bip39-bindings/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 4 4 - 5 - [[package]] 6 - name = "autocfg" 7 - version = "1.1.0" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 10 - 11 - [[package]] 12 - name = "block-buffer" 13 - version = "0.7.3" 14 - source = "registry+https://github.com/rust-lang/crates.io-index" 15 - checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" 16 - dependencies = [ 17 - "block-padding", 18 - "byte-tools", 19 - "byteorder", 20 - "generic-array 0.12.4", 21 - ] 22 - 23 - [[package]] 24 - name = "block-buffer" 25 - version = "0.10.4" 26 - source = "registry+https://github.com/rust-lang/crates.io-index" 27 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 28 - dependencies = [ 29 - "generic-array 0.14.5", 30 - ] 31 - 32 - [[package]] 33 - name = "block-padding" 34 - version = "0.1.5" 35 - source = "registry+https://github.com/rust-lang/crates.io-index" 36 - checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" 37 - dependencies = [ 38 - "byte-tools", 39 - ] 40 - 41 - [[package]] 42 - name = "bumpalo" 43 - version = "3.9.1" 44 - source = "registry+https://github.com/rust-lang/crates.io-index" 45 - checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899" 46 - 47 - [[package]] 48 - name = "byte-tools" 49 - version = "0.3.1" 50 - source = "registry+https://github.com/rust-lang/crates.io-index" 51 - checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" 52 - 53 - [[package]] 54 - name = "byteorder" 55 - version = "1.4.3" 56 - source = "registry+https://github.com/rust-lang/crates.io-index" 57 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 58 - 59 - [[package]] 60 - name = "cfg-if" 61 - version = "1.0.0" 62 - source = "registry+https://github.com/rust-lang/crates.io-index" 63 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 64 - 65 - [[package]] 66 - name = "cpufeatures" 67 - version = "0.2.1" 68 - source = "registry+https://github.com/rust-lang/crates.io-index" 69 - checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469" 70 - dependencies = [ 71 - "libc", 72 - ] 73 - 74 - [[package]] 75 - name = "crypto-common" 76 - version = "0.1.6" 77 - source = "registry+https://github.com/rust-lang/crates.io-index" 78 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 79 - dependencies = [ 80 - "generic-array 0.14.5", 81 - "typenum", 82 - ] 83 - 84 - [[package]] 85 - name = "crypto-mac" 86 - version = "0.7.0" 87 - source = "registry+https://github.com/rust-lang/crates.io-index" 88 - checksum = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5" 89 - dependencies = [ 90 - "generic-array 0.12.4", 91 - "subtle 1.0.0", 92 - ] 93 - 94 - [[package]] 95 - name = "digest" 96 - version = "0.8.1" 97 - source = "registry+https://github.com/rust-lang/crates.io-index" 98 - checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" 99 - dependencies = [ 100 - "generic-array 0.12.4", 101 - ] 102 - 103 - [[package]] 104 - name = "digest" 105 - version = "0.10.7" 106 - source = "registry+https://github.com/rust-lang/crates.io-index" 107 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 108 - dependencies = [ 109 - "block-buffer 0.10.4", 110 - "crypto-common", 111 - "subtle 2.4.1", 112 - ] 113 - 114 - [[package]] 115 - name = "fake-simd" 116 - version = "0.1.2" 117 - source = "registry+https://github.com/rust-lang/crates.io-index" 118 - checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" 119 - 120 - [[package]] 121 - name = "generic-array" 122 - version = "0.12.4" 123 - source = "registry+https://github.com/rust-lang/crates.io-index" 124 - checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd" 125 - dependencies = [ 126 - "typenum", 127 - ] 128 - 129 - [[package]] 130 - name = "generic-array" 131 - version = "0.14.5" 132 - source = "registry+https://github.com/rust-lang/crates.io-index" 133 - checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803" 134 - dependencies = [ 135 - "typenum", 136 - "version_check", 137 - ] 138 - 139 - [[package]] 140 - name = "getrandom" 141 - version = "0.2.15" 142 - source = "registry+https://github.com/rust-lang/crates.io-index" 143 - checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 144 - dependencies = [ 145 - "cfg-if", 146 - "libc", 147 - "wasi", 148 - ] 149 - 150 - [[package]] 151 - name = "heck" 152 - version = "0.5.0" 153 - source = "registry+https://github.com/rust-lang/crates.io-index" 154 - checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 155 - 156 - [[package]] 157 - name = "hmac" 158 - version = "0.7.1" 159 - source = "registry+https://github.com/rust-lang/crates.io-index" 160 - checksum = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695" 161 - dependencies = [ 162 - "crypto-mac", 163 - "digest 0.8.1", 164 - ] 165 - 166 - [[package]] 167 - name = "hmac" 168 - version = "0.12.1" 169 - source = "registry+https://github.com/rust-lang/crates.io-index" 170 - checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 171 - dependencies = [ 172 - "digest 0.10.7", 173 - ] 174 - 175 - [[package]] 176 - name = "indoc" 177 - version = "2.0.5" 178 - source = "registry+https://github.com/rust-lang/crates.io-index" 179 - checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5" 180 - 181 - [[package]] 182 - name = "lazy_static" 183 - version = "1.4.0" 184 - source = "registry+https://github.com/rust-lang/crates.io-index" 185 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 186 - 187 - [[package]] 188 - name = "libc" 189 - version = "0.2.168" 190 - source = "registry+https://github.com/rust-lang/crates.io-index" 191 - checksum = "5aaeb2981e0606ca11d79718f8bb01164f1d6ed75080182d3abf017e6d244b6d" 192 - 193 - [[package]] 194 - name = "log" 195 - version = "0.4.14" 196 - source = "registry+https://github.com/rust-lang/crates.io-index" 197 - checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" 198 - dependencies = [ 199 - "cfg-if", 200 - ] 201 - 202 - [[package]] 203 - name = "memoffset" 204 - version = "0.9.1" 205 - source = "registry+https://github.com/rust-lang/crates.io-index" 206 - checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 207 - dependencies = [ 208 - "autocfg", 209 - ] 210 - 211 - [[package]] 212 - name = "once_cell" 213 - version = "1.20.2" 214 - source = "registry+https://github.com/rust-lang/crates.io-index" 215 - checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" 216 - 217 - [[package]] 218 - name = "opaque-debug" 219 - version = "0.2.3" 220 - source = "registry+https://github.com/rust-lang/crates.io-index" 221 - checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" 222 - 223 - [[package]] 224 - name = "pbkdf2" 225 - version = "0.3.0" 226 - source = "registry+https://github.com/rust-lang/crates.io-index" 227 - checksum = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9" 228 - dependencies = [ 229 - "byteorder", 230 - "crypto-mac", 231 - ] 232 - 233 - [[package]] 234 - name = "pbkdf2" 235 - version = "0.12.2" 236 - source = "registry+https://github.com/rust-lang/crates.io-index" 237 - checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" 238 - dependencies = [ 239 - "digest 0.10.7", 240 - "hmac 0.12.1", 241 - ] 242 - 243 - [[package]] 244 - name = "portable-atomic" 245 - version = "1.9.0" 246 - source = "registry+https://github.com/rust-lang/crates.io-index" 247 - checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2" 248 - 249 - [[package]] 250 - name = "ppv-lite86" 251 - version = "0.2.16" 252 - source = "registry+https://github.com/rust-lang/crates.io-index" 253 - checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 254 - 255 - [[package]] 256 - name = "proc-macro2" 257 - version = "1.0.89" 258 - source = "registry+https://github.com/rust-lang/crates.io-index" 259 - checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" 260 - dependencies = [ 261 - "unicode-ident", 262 - ] 263 - 264 - [[package]] 265 - name = "py-bip39-bindings" 266 - version = "0.1.13" 267 - dependencies = [ 268 - "hmac 0.7.1", 269 - "pbkdf2 0.3.0", 270 - "pyo3", 271 - "sha2 0.8.2", 272 - "tiny-bip39", 273 - ] 274 - 275 - [[package]] 276 - name = "pyo3" 277 - version = "0.23.3" 278 - source = "registry+https://github.com/rust-lang/crates.io-index" 279 - checksum = "e484fd2c8b4cb67ab05a318f1fd6fa8f199fcc30819f08f07d200809dba26c15" 280 - dependencies = [ 281 - "cfg-if", 282 - "indoc", 283 - "libc", 284 - "memoffset", 285 - "once_cell", 286 - "portable-atomic", 287 - "pyo3-build-config", 288 - "pyo3-ffi", 289 - "pyo3-macros", 290 - "unindent", 291 - ] 292 - 293 - [[package]] 294 - name = "pyo3-build-config" 295 - version = "0.23.3" 296 - source = "registry+https://github.com/rust-lang/crates.io-index" 297 - checksum = "dc0e0469a84f208e20044b98965e1561028180219e35352a2afaf2b942beff3b" 298 - dependencies = [ 299 - "once_cell", 300 - "target-lexicon", 301 - ] 302 - 303 - [[package]] 304 - name = "pyo3-ffi" 305 - version = "0.23.3" 306 - source = "registry+https://github.com/rust-lang/crates.io-index" 307 - checksum = "eb1547a7f9966f6f1a0f0227564a9945fe36b90da5a93b3933fc3dc03fae372d" 308 - dependencies = [ 309 - "libc", 310 - "pyo3-build-config", 311 - ] 312 - 313 - [[package]] 314 - name = "pyo3-macros" 315 - version = "0.23.3" 316 - source = "registry+https://github.com/rust-lang/crates.io-index" 317 - checksum = "fdb6da8ec6fa5cedd1626c886fc8749bdcbb09424a86461eb8cdf096b7c33257" 318 - dependencies = [ 319 - "proc-macro2", 320 - "pyo3-macros-backend", 321 - "quote", 322 - "syn 2.0.87", 323 - ] 324 - 325 - [[package]] 326 - name = "pyo3-macros-backend" 327 - version = "0.23.3" 328 - source = "registry+https://github.com/rust-lang/crates.io-index" 329 - checksum = "38a385202ff5a92791168b1136afae5059d3ac118457bb7bc304c197c2d33e7d" 330 - dependencies = [ 331 - "heck", 332 - "proc-macro2", 333 - "pyo3-build-config", 334 - "quote", 335 - "syn 2.0.87", 336 - ] 337 - 338 - [[package]] 339 - name = "quote" 340 - version = "1.0.37" 341 - source = "registry+https://github.com/rust-lang/crates.io-index" 342 - checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" 343 - dependencies = [ 344 - "proc-macro2", 345 - ] 346 - 347 - [[package]] 348 - name = "rand" 349 - version = "0.8.5" 350 - source = "registry+https://github.com/rust-lang/crates.io-index" 351 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 352 - dependencies = [ 353 - "libc", 354 - "rand_chacha", 355 - "rand_core", 356 - ] 357 - 358 - [[package]] 359 - name = "rand_chacha" 360 - version = "0.3.1" 361 - source = "registry+https://github.com/rust-lang/crates.io-index" 362 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 363 - dependencies = [ 364 - "ppv-lite86", 365 - "rand_core", 366 - ] 367 - 368 - [[package]] 369 - name = "rand_core" 370 - version = "0.6.4" 371 - source = "registry+https://github.com/rust-lang/crates.io-index" 372 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 373 - dependencies = [ 374 - "getrandom", 375 - ] 376 - 377 - [[package]] 378 - name = "rustc-hash" 379 - version = "1.1.0" 380 - source = "registry+https://github.com/rust-lang/crates.io-index" 381 - checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 382 - 383 - [[package]] 384 - name = "sha2" 385 - version = "0.8.2" 386 - source = "registry+https://github.com/rust-lang/crates.io-index" 387 - checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69" 388 - dependencies = [ 389 - "block-buffer 0.7.3", 390 - "digest 0.8.1", 391 - "fake-simd", 392 - "opaque-debug", 393 - ] 394 - 395 - [[package]] 396 - name = "sha2" 397 - version = "0.10.8" 398 - source = "registry+https://github.com/rust-lang/crates.io-index" 399 - checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 400 - dependencies = [ 401 - "cfg-if", 402 - "cpufeatures", 403 - "digest 0.10.7", 404 - ] 405 - 406 - [[package]] 407 - name = "subtle" 408 - version = "1.0.0" 409 - source = "registry+https://github.com/rust-lang/crates.io-index" 410 - checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" 411 - 412 - [[package]] 413 - name = "subtle" 414 - version = "2.4.1" 415 - source = "registry+https://github.com/rust-lang/crates.io-index" 416 - checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 417 - 418 - [[package]] 419 - name = "syn" 420 - version = "1.0.81" 421 - source = "registry+https://github.com/rust-lang/crates.io-index" 422 - checksum = "f2afee18b8beb5a596ecb4a2dce128c719b4ba399d34126b9e4396e3f9860966" 423 - dependencies = [ 424 - "proc-macro2", 425 - "quote", 426 - "unicode-xid", 427 - ] 428 - 429 - [[package]] 430 - name = "syn" 431 - version = "2.0.87" 432 - source = "registry+https://github.com/rust-lang/crates.io-index" 433 - checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" 434 - dependencies = [ 435 - "proc-macro2", 436 - "quote", 437 - "unicode-ident", 438 - ] 439 - 440 - [[package]] 441 - name = "synstructure" 442 - version = "0.12.6" 443 - source = "registry+https://github.com/rust-lang/crates.io-index" 444 - checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 445 - dependencies = [ 446 - "proc-macro2", 447 - "quote", 448 - "syn 1.0.81", 449 - "unicode-xid", 450 - ] 451 - 452 - [[package]] 453 - name = "target-lexicon" 454 - version = "0.12.16" 455 - source = "registry+https://github.com/rust-lang/crates.io-index" 456 - checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" 457 - 458 - [[package]] 459 - name = "thiserror" 460 - version = "1.0.69" 461 - source = "registry+https://github.com/rust-lang/crates.io-index" 462 - checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 463 - dependencies = [ 464 - "thiserror-impl", 465 - ] 466 - 467 - [[package]] 468 - name = "thiserror-impl" 469 - version = "1.0.69" 470 - source = "registry+https://github.com/rust-lang/crates.io-index" 471 - checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 472 - dependencies = [ 473 - "proc-macro2", 474 - "quote", 475 - "syn 2.0.87", 476 - ] 477 - 478 - [[package]] 479 - name = "tiny-bip39" 480 - version = "2.0.0" 481 - source = "registry+https://github.com/rust-lang/crates.io-index" 482 - checksum = "a30fd743a02bf35236f6faf99adb03089bb77e91c998dac2c2ad76bb424f668c" 483 - dependencies = [ 484 - "once_cell", 485 - "pbkdf2 0.12.2", 486 - "rand", 487 - "rustc-hash", 488 - "sha2 0.10.8", 489 - "thiserror", 490 - "unicode-normalization", 491 - "wasm-bindgen", 492 - "zeroize", 493 - ] 494 - 495 - [[package]] 496 - name = "tinyvec" 497 - version = "1.5.1" 498 - source = "registry+https://github.com/rust-lang/crates.io-index" 499 - checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2" 500 - dependencies = [ 501 - "tinyvec_macros", 502 - ] 503 - 504 - [[package]] 505 - name = "tinyvec_macros" 506 - version = "0.1.0" 507 - source = "registry+https://github.com/rust-lang/crates.io-index" 508 - checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 509 - 510 - [[package]] 511 - name = "typenum" 512 - version = "1.14.0" 513 - source = "registry+https://github.com/rust-lang/crates.io-index" 514 - checksum = "b63708a265f51345575b27fe43f9500ad611579e764c79edbc2037b1121959ec" 515 - 516 - [[package]] 517 - name = "unicode-ident" 518 - version = "1.0.13" 519 - source = "registry+https://github.com/rust-lang/crates.io-index" 520 - checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" 521 - 522 - [[package]] 523 - name = "unicode-normalization" 524 - version = "0.1.19" 525 - source = "registry+https://github.com/rust-lang/crates.io-index" 526 - checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9" 527 - dependencies = [ 528 - "tinyvec", 529 - ] 530 - 531 - [[package]] 532 - name = "unicode-xid" 533 - version = "0.2.2" 534 - source = "registry+https://github.com/rust-lang/crates.io-index" 535 - checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" 536 - 537 - [[package]] 538 - name = "unindent" 539 - version = "0.2.3" 540 - source = "registry+https://github.com/rust-lang/crates.io-index" 541 - checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce" 542 - 543 - [[package]] 544 - name = "version_check" 545 - version = "0.9.3" 546 - source = "registry+https://github.com/rust-lang/crates.io-index" 547 - checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" 548 - 549 - [[package]] 550 - name = "wasi" 551 - version = "0.11.0+wasi-snapshot-preview1" 552 - source = "registry+https://github.com/rust-lang/crates.io-index" 553 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 554 - 555 - [[package]] 556 - name = "wasm-bindgen" 557 - version = "0.2.79" 558 - source = "registry+https://github.com/rust-lang/crates.io-index" 559 - checksum = "25f1af7423d8588a3d840681122e72e6a24ddbcb3f0ec385cac0d12d24256c06" 560 - dependencies = [ 561 - "cfg-if", 562 - "wasm-bindgen-macro", 563 - ] 564 - 565 - [[package]] 566 - name = "wasm-bindgen-backend" 567 - version = "0.2.79" 568 - source = "registry+https://github.com/rust-lang/crates.io-index" 569 - checksum = "8b21c0df030f5a177f3cba22e9bc4322695ec43e7257d865302900290bcdedca" 570 - dependencies = [ 571 - "bumpalo", 572 - "lazy_static", 573 - "log", 574 - "proc-macro2", 575 - "quote", 576 - "syn 1.0.81", 577 - "wasm-bindgen-shared", 578 - ] 579 - 580 - [[package]] 581 - name = "wasm-bindgen-macro" 582 - version = "0.2.79" 583 - source = "registry+https://github.com/rust-lang/crates.io-index" 584 - checksum = "2f4203d69e40a52ee523b2529a773d5ffc1dc0071801c87b3d270b471b80ed01" 585 - dependencies = [ 586 - "quote", 587 - "wasm-bindgen-macro-support", 588 - ] 589 - 590 - [[package]] 591 - name = "wasm-bindgen-macro-support" 592 - version = "0.2.79" 593 - source = "registry+https://github.com/rust-lang/crates.io-index" 594 - checksum = "bfa8a30d46208db204854cadbb5d4baf5fcf8071ba5bf48190c3e59937962ebc" 595 - dependencies = [ 596 - "proc-macro2", 597 - "quote", 598 - "syn 1.0.81", 599 - "wasm-bindgen-backend", 600 - "wasm-bindgen-shared", 601 - ] 602 - 603 - [[package]] 604 - name = "wasm-bindgen-shared" 605 - version = "0.2.79" 606 - source = "registry+https://github.com/rust-lang/crates.io-index" 607 - checksum = "3d958d035c4438e28c70e4321a2911302f10135ce78a9c7834c0cab4123d06a2" 608 - 609 - [[package]] 610 - name = "zeroize" 611 - version = "1.8.1" 612 - source = "registry+https://github.com/rust-lang/crates.io-index" 613 - checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 614 - dependencies = [ 615 - "zeroize_derive", 616 - ] 617 - 618 - [[package]] 619 - name = "zeroize_derive" 620 - version = "1.3.2" 621 - source = "registry+https://github.com/rust-lang/crates.io-index" 622 - checksum = "3f8f187641dad4f680d25c4bfc4225b418165984179f26ca76ec4fb6441d3a17" 623 - dependencies = [ 624 - "proc-macro2", 625 - "quote", 626 - "syn 1.0.81", 627 - "synstructure", 628 - ]
+4 -5
pkgs/development/python-modules/py-bip39-bindings/default.nix
··· 23 23 hash = "sha256-CglVEvmZ8xYtjFPNhCyzToYrOvGe/Sw3zHAIy1HidzM="; 24 24 }; 25 25 26 - cargoDeps = rustPlatform.importCargoLock { lockFile = ./Cargo.lock; }; 27 - 28 - postPatch = '' 29 - cp ${./Cargo.lock} Cargo.lock 30 - ''; 26 + cargoDeps = rustPlatform.fetchCargoVendor { 27 + inherit pname version src; 28 + hash = "sha256-DsY4IBxuOTUTMiQs93K8G1hG7jI6PnoQ3Rpbd6iyFpU="; 29 + }; 31 30 32 31 nativeBuildInputs = with rustPlatform; [ 33 32 cargoSetupHook
-911
pkgs/development/python-modules/python-calamine/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 4 4 - 5 - [[package]] 6 - name = "adler2" 7 - version = "2.0.0" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 10 - 11 - [[package]] 12 - name = "android-tzdata" 13 - version = "0.1.1" 14 - source = "registry+https://github.com/rust-lang/crates.io-index" 15 - checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 16 - 17 - [[package]] 18 - name = "android_system_properties" 19 - version = "0.1.5" 20 - source = "registry+https://github.com/rust-lang/crates.io-index" 21 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 22 - dependencies = [ 23 - "libc", 24 - ] 25 - 26 - [[package]] 27 - name = "arbitrary" 28 - version = "1.4.1" 29 - source = "registry+https://github.com/rust-lang/crates.io-index" 30 - checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223" 31 - dependencies = [ 32 - "derive_arbitrary", 33 - ] 34 - 35 - [[package]] 36 - name = "atoi_simd" 37 - version = "0.16.0" 38 - source = "registry+https://github.com/rust-lang/crates.io-index" 39 - checksum = "4790f9e8961209112beb783d85449b508673cf4a6a419c8449b210743ac4dbe9" 40 - 41 - [[package]] 42 - name = "autocfg" 43 - version = "1.4.0" 44 - source = "registry+https://github.com/rust-lang/crates.io-index" 45 - checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" 46 - 47 - [[package]] 48 - name = "bitflags" 49 - version = "2.6.0" 50 - source = "registry+https://github.com/rust-lang/crates.io-index" 51 - checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 52 - 53 - [[package]] 54 - name = "bumpalo" 55 - version = "3.16.0" 56 - source = "registry+https://github.com/rust-lang/crates.io-index" 57 - checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 58 - 59 - [[package]] 60 - name = "bytecount" 61 - version = "0.6.8" 62 - source = "registry+https://github.com/rust-lang/crates.io-index" 63 - checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce" 64 - 65 - [[package]] 66 - name = "byteorder" 67 - version = "1.5.0" 68 - source = "registry+https://github.com/rust-lang/crates.io-index" 69 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 70 - 71 - [[package]] 72 - name = "calamine" 73 - version = "0.26.1" 74 - source = "git+https://github.com/tafia/calamine.git?rev=5cda5c734661f656bdfb7ac7a1b95e77bf89aa09#5cda5c734661f656bdfb7ac7a1b95e77bf89aa09" 75 - dependencies = [ 76 - "atoi_simd", 77 - "byteorder", 78 - "chrono", 79 - "codepage", 80 - "encoding_rs", 81 - "fast-float2", 82 - "log", 83 - "quick-xml", 84 - "serde", 85 - "zip", 86 - ] 87 - 88 - [[package]] 89 - name = "camino" 90 - version = "1.1.9" 91 - source = "registry+https://github.com/rust-lang/crates.io-index" 92 - checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" 93 - dependencies = [ 94 - "serde", 95 - ] 96 - 97 - [[package]] 98 - name = "cargo-platform" 99 - version = "0.1.9" 100 - source = "registry+https://github.com/rust-lang/crates.io-index" 101 - checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" 102 - dependencies = [ 103 - "serde", 104 - ] 105 - 106 - [[package]] 107 - name = "cargo_metadata" 108 - version = "0.14.2" 109 - source = "registry+https://github.com/rust-lang/crates.io-index" 110 - checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa" 111 - dependencies = [ 112 - "camino", 113 - "cargo-platform", 114 - "semver", 115 - "serde", 116 - "serde_json", 117 - ] 118 - 119 - [[package]] 120 - name = "cc" 121 - version = "1.2.7" 122 - source = "registry+https://github.com/rust-lang/crates.io-index" 123 - checksum = "a012a0df96dd6d06ba9a1b29d6402d1a5d77c6befd2566afdc26e10603dc93d7" 124 - dependencies = [ 125 - "shlex", 126 - ] 127 - 128 - [[package]] 129 - name = "cfg-if" 130 - version = "1.0.0" 131 - source = "registry+https://github.com/rust-lang/crates.io-index" 132 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 133 - 134 - [[package]] 135 - name = "chrono" 136 - version = "0.4.40" 137 - source = "registry+https://github.com/rust-lang/crates.io-index" 138 - checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c" 139 - dependencies = [ 140 - "android-tzdata", 141 - "iana-time-zone", 142 - "js-sys", 143 - "num-traits", 144 - "serde", 145 - "wasm-bindgen", 146 - "windows-link", 147 - ] 148 - 149 - [[package]] 150 - name = "codepage" 151 - version = "0.1.2" 152 - source = "registry+https://github.com/rust-lang/crates.io-index" 153 - checksum = "48f68d061bc2828ae826206326e61251aca94c1e4a5305cf52d9138639c918b4" 154 - dependencies = [ 155 - "encoding_rs", 156 - ] 157 - 158 - [[package]] 159 - name = "core-foundation-sys" 160 - version = "0.8.7" 161 - source = "registry+https://github.com/rust-lang/crates.io-index" 162 - checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 163 - 164 - [[package]] 165 - name = "crc32fast" 166 - version = "1.4.2" 167 - source = "registry+https://github.com/rust-lang/crates.io-index" 168 - checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 169 - dependencies = [ 170 - "cfg-if", 171 - ] 172 - 173 - [[package]] 174 - name = "crossbeam-utils" 175 - version = "0.8.21" 176 - source = "registry+https://github.com/rust-lang/crates.io-index" 177 - checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 178 - 179 - [[package]] 180 - name = "derive_arbitrary" 181 - version = "1.4.1" 182 - source = "registry+https://github.com/rust-lang/crates.io-index" 183 - checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" 184 - dependencies = [ 185 - "proc-macro2", 186 - "quote", 187 - "syn", 188 - ] 189 - 190 - [[package]] 191 - name = "displaydoc" 192 - version = "0.2.5" 193 - source = "registry+https://github.com/rust-lang/crates.io-index" 194 - checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 195 - dependencies = [ 196 - "proc-macro2", 197 - "quote", 198 - "syn", 199 - ] 200 - 201 - [[package]] 202 - name = "encoding_rs" 203 - version = "0.8.35" 204 - source = "registry+https://github.com/rust-lang/crates.io-index" 205 - checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 206 - dependencies = [ 207 - "cfg-if", 208 - ] 209 - 210 - [[package]] 211 - name = "equivalent" 212 - version = "1.0.1" 213 - source = "registry+https://github.com/rust-lang/crates.io-index" 214 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 215 - 216 - [[package]] 217 - name = "errno" 218 - version = "0.3.10" 219 - source = "registry+https://github.com/rust-lang/crates.io-index" 220 - checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" 221 - dependencies = [ 222 - "libc", 223 - "windows-sys", 224 - ] 225 - 226 - [[package]] 227 - name = "error-chain" 228 - version = "0.12.4" 229 - source = "registry+https://github.com/rust-lang/crates.io-index" 230 - checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc" 231 - dependencies = [ 232 - "version_check", 233 - ] 234 - 235 - [[package]] 236 - name = "fast-float2" 237 - version = "0.2.3" 238 - source = "registry+https://github.com/rust-lang/crates.io-index" 239 - checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55" 240 - 241 - [[package]] 242 - name = "fastrand" 243 - version = "2.3.0" 244 - source = "registry+https://github.com/rust-lang/crates.io-index" 245 - checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 246 - 247 - [[package]] 248 - name = "flate2" 249 - version = "1.0.35" 250 - source = "registry+https://github.com/rust-lang/crates.io-index" 251 - checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c" 252 - dependencies = [ 253 - "crc32fast", 254 - "miniz_oxide", 255 - ] 256 - 257 - [[package]] 258 - name = "getrandom" 259 - version = "0.2.15" 260 - source = "registry+https://github.com/rust-lang/crates.io-index" 261 - checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 262 - dependencies = [ 263 - "cfg-if", 264 - "libc", 265 - "wasi", 266 - ] 267 - 268 - [[package]] 269 - name = "glob" 270 - version = "0.3.2" 271 - source = "registry+https://github.com/rust-lang/crates.io-index" 272 - checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" 273 - 274 - [[package]] 275 - name = "hashbrown" 276 - version = "0.15.2" 277 - source = "registry+https://github.com/rust-lang/crates.io-index" 278 - checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" 279 - 280 - [[package]] 281 - name = "heck" 282 - version = "0.5.0" 283 - source = "registry+https://github.com/rust-lang/crates.io-index" 284 - checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 285 - 286 - [[package]] 287 - name = "iana-time-zone" 288 - version = "0.1.61" 289 - source = "registry+https://github.com/rust-lang/crates.io-index" 290 - checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" 291 - dependencies = [ 292 - "android_system_properties", 293 - "core-foundation-sys", 294 - "iana-time-zone-haiku", 295 - "js-sys", 296 - "wasm-bindgen", 297 - "windows-core", 298 - ] 299 - 300 - [[package]] 301 - name = "iana-time-zone-haiku" 302 - version = "0.1.2" 303 - source = "registry+https://github.com/rust-lang/crates.io-index" 304 - checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 305 - dependencies = [ 306 - "cc", 307 - ] 308 - 309 - [[package]] 310 - name = "indexmap" 311 - version = "2.7.0" 312 - source = "registry+https://github.com/rust-lang/crates.io-index" 313 - checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f" 314 - dependencies = [ 315 - "equivalent", 316 - "hashbrown", 317 - ] 318 - 319 - [[package]] 320 - name = "indoc" 321 - version = "2.0.5" 322 - source = "registry+https://github.com/rust-lang/crates.io-index" 323 - checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5" 324 - 325 - [[package]] 326 - name = "itoa" 327 - version = "1.0.14" 328 - source = "registry+https://github.com/rust-lang/crates.io-index" 329 - checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" 330 - 331 - [[package]] 332 - name = "js-sys" 333 - version = "0.3.76" 334 - source = "registry+https://github.com/rust-lang/crates.io-index" 335 - checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7" 336 - dependencies = [ 337 - "once_cell", 338 - "wasm-bindgen", 339 - ] 340 - 341 - [[package]] 342 - name = "libc" 343 - version = "0.2.169" 344 - source = "registry+https://github.com/rust-lang/crates.io-index" 345 - checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" 346 - 347 - [[package]] 348 - name = "linux-raw-sys" 349 - version = "0.4.15" 350 - source = "registry+https://github.com/rust-lang/crates.io-index" 351 - checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" 352 - 353 - [[package]] 354 - name = "lockfree-object-pool" 355 - version = "0.1.6" 356 - source = "registry+https://github.com/rust-lang/crates.io-index" 357 - checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e" 358 - 359 - [[package]] 360 - name = "log" 361 - version = "0.4.22" 362 - source = "registry+https://github.com/rust-lang/crates.io-index" 363 - checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 364 - 365 - [[package]] 366 - name = "memchr" 367 - version = "2.7.4" 368 - source = "registry+https://github.com/rust-lang/crates.io-index" 369 - checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 370 - 371 - [[package]] 372 - name = "memoffset" 373 - version = "0.9.1" 374 - source = "registry+https://github.com/rust-lang/crates.io-index" 375 - checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 376 - dependencies = [ 377 - "autocfg", 378 - ] 379 - 380 - [[package]] 381 - name = "miniz_oxide" 382 - version = "0.8.2" 383 - source = "registry+https://github.com/rust-lang/crates.io-index" 384 - checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394" 385 - dependencies = [ 386 - "adler2", 387 - ] 388 - 389 - [[package]] 390 - name = "num-traits" 391 - version = "0.2.19" 392 - source = "registry+https://github.com/rust-lang/crates.io-index" 393 - checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 394 - dependencies = [ 395 - "autocfg", 396 - ] 397 - 398 - [[package]] 399 - name = "once_cell" 400 - version = "1.20.2" 401 - source = "registry+https://github.com/rust-lang/crates.io-index" 402 - checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" 403 - 404 - [[package]] 405 - name = "portable-atomic" 406 - version = "1.10.0" 407 - source = "registry+https://github.com/rust-lang/crates.io-index" 408 - checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6" 409 - 410 - [[package]] 411 - name = "proc-macro2" 412 - version = "1.0.92" 413 - source = "registry+https://github.com/rust-lang/crates.io-index" 414 - checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" 415 - dependencies = [ 416 - "unicode-ident", 417 - ] 418 - 419 - [[package]] 420 - name = "pulldown-cmark" 421 - version = "0.9.6" 422 - source = "registry+https://github.com/rust-lang/crates.io-index" 423 - checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b" 424 - dependencies = [ 425 - "bitflags", 426 - "memchr", 427 - "unicase", 428 - ] 429 - 430 - [[package]] 431 - name = "pyo3" 432 - version = "0.24.1" 433 - source = "registry+https://github.com/rust-lang/crates.io-index" 434 - checksum = "17da310086b068fbdcefbba30aeb3721d5bb9af8db4987d6735b2183ca567229" 435 - dependencies = [ 436 - "cfg-if", 437 - "chrono", 438 - "indoc", 439 - "libc", 440 - "memoffset", 441 - "once_cell", 442 - "portable-atomic", 443 - "pyo3-build-config", 444 - "pyo3-ffi", 445 - "pyo3-macros", 446 - "unindent", 447 - ] 448 - 449 - [[package]] 450 - name = "pyo3-build-config" 451 - version = "0.24.1" 452 - source = "registry+https://github.com/rust-lang/crates.io-index" 453 - checksum = "e27165889bd793000a098bb966adc4300c312497ea25cf7a690a9f0ac5aa5fc1" 454 - dependencies = [ 455 - "once_cell", 456 - "python3-dll-a", 457 - "target-lexicon", 458 - ] 459 - 460 - [[package]] 461 - name = "pyo3-ffi" 462 - version = "0.24.1" 463 - source = "registry+https://github.com/rust-lang/crates.io-index" 464 - checksum = "05280526e1dbf6b420062f3ef228b78c0c54ba94e157f5cb724a609d0f2faabc" 465 - dependencies = [ 466 - "libc", 467 - "pyo3-build-config", 468 - ] 469 - 470 - [[package]] 471 - name = "pyo3-file" 472 - version = "0.12.0" 473 - source = "registry+https://github.com/rust-lang/crates.io-index" 474 - checksum = "8d97fbb05588c29774af01833e598fae7e714a3f87d36b286e0466f6b678e4a7" 475 - dependencies = [ 476 - "pyo3", 477 - "skeptic", 478 - ] 479 - 480 - [[package]] 481 - name = "pyo3-macros" 482 - version = "0.24.1" 483 - source = "registry+https://github.com/rust-lang/crates.io-index" 484 - checksum = "5c3ce5686aa4d3f63359a5100c62a127c9f15e8398e5fdeb5deef1fed5cd5f44" 485 - dependencies = [ 486 - "proc-macro2", 487 - "pyo3-macros-backend", 488 - "quote", 489 - "syn", 490 - ] 491 - 492 - [[package]] 493 - name = "pyo3-macros-backend" 494 - version = "0.24.1" 495 - source = "registry+https://github.com/rust-lang/crates.io-index" 496 - checksum = "f4cf6faa0cbfb0ed08e89beb8103ae9724eb4750e3a78084ba4017cbe94f3855" 497 - dependencies = [ 498 - "heck", 499 - "proc-macro2", 500 - "pyo3-build-config", 501 - "quote", 502 - "syn", 503 - ] 504 - 505 - [[package]] 506 - name = "python-calamine" 507 - version = "0.3.1" 508 - dependencies = [ 509 - "calamine", 510 - "chrono", 511 - "pyo3", 512 - "pyo3-build-config", 513 - "pyo3-file", 514 - ] 515 - 516 - [[package]] 517 - name = "python3-dll-a" 518 - version = "0.2.12" 519 - source = "registry+https://github.com/rust-lang/crates.io-index" 520 - checksum = "9b66f9171950e674e64bad3456e11bb3cca108e5c34844383cfe277f45c8a7a8" 521 - dependencies = [ 522 - "cc", 523 - ] 524 - 525 - [[package]] 526 - name = "quick-xml" 527 - version = "0.37.4" 528 - source = "registry+https://github.com/rust-lang/crates.io-index" 529 - checksum = "a4ce8c88de324ff838700f36fb6ab86c96df0e3c4ab6ef3a9b2044465cce1369" 530 - dependencies = [ 531 - "encoding_rs", 532 - "memchr", 533 - ] 534 - 535 - [[package]] 536 - name = "quote" 537 - version = "1.0.38" 538 - source = "registry+https://github.com/rust-lang/crates.io-index" 539 - checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" 540 - dependencies = [ 541 - "proc-macro2", 542 - ] 543 - 544 - [[package]] 545 - name = "rustix" 546 - version = "0.38.43" 547 - source = "registry+https://github.com/rust-lang/crates.io-index" 548 - checksum = "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6" 549 - dependencies = [ 550 - "bitflags", 551 - "errno", 552 - "libc", 553 - "linux-raw-sys", 554 - "windows-sys", 555 - ] 556 - 557 - [[package]] 558 - name = "ryu" 559 - version = "1.0.18" 560 - source = "registry+https://github.com/rust-lang/crates.io-index" 561 - checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 562 - 563 - [[package]] 564 - name = "same-file" 565 - version = "1.0.6" 566 - source = "registry+https://github.com/rust-lang/crates.io-index" 567 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 568 - dependencies = [ 569 - "winapi-util", 570 - ] 571 - 572 - [[package]] 573 - name = "semver" 574 - version = "1.0.24" 575 - source = "registry+https://github.com/rust-lang/crates.io-index" 576 - checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba" 577 - dependencies = [ 578 - "serde", 579 - ] 580 - 581 - [[package]] 582 - name = "serde" 583 - version = "1.0.217" 584 - source = "registry+https://github.com/rust-lang/crates.io-index" 585 - checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" 586 - dependencies = [ 587 - "serde_derive", 588 - ] 589 - 590 - [[package]] 591 - name = "serde_derive" 592 - version = "1.0.217" 593 - source = "registry+https://github.com/rust-lang/crates.io-index" 594 - checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" 595 - dependencies = [ 596 - "proc-macro2", 597 - "quote", 598 - "syn", 599 - ] 600 - 601 - [[package]] 602 - name = "serde_json" 603 - version = "1.0.135" 604 - source = "registry+https://github.com/rust-lang/crates.io-index" 605 - checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9" 606 - dependencies = [ 607 - "itoa", 608 - "memchr", 609 - "ryu", 610 - "serde", 611 - ] 612 - 613 - [[package]] 614 - name = "shlex" 615 - version = "1.3.0" 616 - source = "registry+https://github.com/rust-lang/crates.io-index" 617 - checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 618 - 619 - [[package]] 620 - name = "simd-adler32" 621 - version = "0.3.7" 622 - source = "registry+https://github.com/rust-lang/crates.io-index" 623 - checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 624 - 625 - [[package]] 626 - name = "skeptic" 627 - version = "0.13.7" 628 - source = "registry+https://github.com/rust-lang/crates.io-index" 629 - checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8" 630 - dependencies = [ 631 - "bytecount", 632 - "cargo_metadata", 633 - "error-chain", 634 - "glob", 635 - "pulldown-cmark", 636 - "tempfile", 637 - "walkdir", 638 - ] 639 - 640 - [[package]] 641 - name = "syn" 642 - version = "2.0.95" 643 - source = "registry+https://github.com/rust-lang/crates.io-index" 644 - checksum = "46f71c0377baf4ef1cc3e3402ded576dccc315800fbc62dfc7fe04b009773b4a" 645 - dependencies = [ 646 - "proc-macro2", 647 - "quote", 648 - "unicode-ident", 649 - ] 650 - 651 - [[package]] 652 - name = "target-lexicon" 653 - version = "0.13.2" 654 - source = "registry+https://github.com/rust-lang/crates.io-index" 655 - checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a" 656 - 657 - [[package]] 658 - name = "tempfile" 659 - version = "3.15.0" 660 - source = "registry+https://github.com/rust-lang/crates.io-index" 661 - checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" 662 - dependencies = [ 663 - "cfg-if", 664 - "fastrand", 665 - "getrandom", 666 - "once_cell", 667 - "rustix", 668 - "windows-sys", 669 - ] 670 - 671 - [[package]] 672 - name = "thiserror" 673 - version = "2.0.10" 674 - source = "registry+https://github.com/rust-lang/crates.io-index" 675 - checksum = "a3ac7f54ca534db81081ef1c1e7f6ea8a3ef428d2fc069097c079443d24124d3" 676 - dependencies = [ 677 - "thiserror-impl", 678 - ] 679 - 680 - [[package]] 681 - name = "thiserror-impl" 682 - version = "2.0.10" 683 - source = "registry+https://github.com/rust-lang/crates.io-index" 684 - checksum = "9e9465d30713b56a37ede7185763c3492a91be2f5fa68d958c44e41ab9248beb" 685 - dependencies = [ 686 - "proc-macro2", 687 - "quote", 688 - "syn", 689 - ] 690 - 691 - [[package]] 692 - name = "unicase" 693 - version = "2.8.1" 694 - source = "registry+https://github.com/rust-lang/crates.io-index" 695 - checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" 696 - 697 - [[package]] 698 - name = "unicode-ident" 699 - version = "1.0.14" 700 - source = "registry+https://github.com/rust-lang/crates.io-index" 701 - checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" 702 - 703 - [[package]] 704 - name = "unindent" 705 - version = "0.2.3" 706 - source = "registry+https://github.com/rust-lang/crates.io-index" 707 - checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce" 708 - 709 - [[package]] 710 - name = "version_check" 711 - version = "0.9.5" 712 - source = "registry+https://github.com/rust-lang/crates.io-index" 713 - checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 714 - 715 - [[package]] 716 - name = "walkdir" 717 - version = "2.5.0" 718 - source = "registry+https://github.com/rust-lang/crates.io-index" 719 - checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 720 - dependencies = [ 721 - "same-file", 722 - "winapi-util", 723 - ] 724 - 725 - [[package]] 726 - name = "wasi" 727 - version = "0.11.0+wasi-snapshot-preview1" 728 - source = "registry+https://github.com/rust-lang/crates.io-index" 729 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 730 - 731 - [[package]] 732 - name = "wasm-bindgen" 733 - version = "0.2.99" 734 - source = "registry+https://github.com/rust-lang/crates.io-index" 735 - checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396" 736 - dependencies = [ 737 - "cfg-if", 738 - "once_cell", 739 - "wasm-bindgen-macro", 740 - ] 741 - 742 - [[package]] 743 - name = "wasm-bindgen-backend" 744 - version = "0.2.99" 745 - source = "registry+https://github.com/rust-lang/crates.io-index" 746 - checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79" 747 - dependencies = [ 748 - "bumpalo", 749 - "log", 750 - "proc-macro2", 751 - "quote", 752 - "syn", 753 - "wasm-bindgen-shared", 754 - ] 755 - 756 - [[package]] 757 - name = "wasm-bindgen-macro" 758 - version = "0.2.99" 759 - source = "registry+https://github.com/rust-lang/crates.io-index" 760 - checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe" 761 - dependencies = [ 762 - "quote", 763 - "wasm-bindgen-macro-support", 764 - ] 765 - 766 - [[package]] 767 - name = "wasm-bindgen-macro-support" 768 - version = "0.2.99" 769 - source = "registry+https://github.com/rust-lang/crates.io-index" 770 - checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2" 771 - dependencies = [ 772 - "proc-macro2", 773 - "quote", 774 - "syn", 775 - "wasm-bindgen-backend", 776 - "wasm-bindgen-shared", 777 - ] 778 - 779 - [[package]] 780 - name = "wasm-bindgen-shared" 781 - version = "0.2.99" 782 - source = "registry+https://github.com/rust-lang/crates.io-index" 783 - checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6" 784 - 785 - [[package]] 786 - name = "winapi-util" 787 - version = "0.1.9" 788 - source = "registry+https://github.com/rust-lang/crates.io-index" 789 - checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 790 - dependencies = [ 791 - "windows-sys", 792 - ] 793 - 794 - [[package]] 795 - name = "windows-core" 796 - version = "0.52.0" 797 - source = "registry+https://github.com/rust-lang/crates.io-index" 798 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 799 - dependencies = [ 800 - "windows-targets", 801 - ] 802 - 803 - [[package]] 804 - name = "windows-link" 805 - version = "0.1.0" 806 - source = "registry+https://github.com/rust-lang/crates.io-index" 807 - checksum = "6dccfd733ce2b1753b03b6d3c65edf020262ea35e20ccdf3e288043e6dd620e3" 808 - 809 - [[package]] 810 - name = "windows-sys" 811 - version = "0.59.0" 812 - source = "registry+https://github.com/rust-lang/crates.io-index" 813 - checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 814 - dependencies = [ 815 - "windows-targets", 816 - ] 817 - 818 - [[package]] 819 - name = "windows-targets" 820 - version = "0.52.6" 821 - source = "registry+https://github.com/rust-lang/crates.io-index" 822 - checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 823 - dependencies = [ 824 - "windows_aarch64_gnullvm", 825 - "windows_aarch64_msvc", 826 - "windows_i686_gnu", 827 - "windows_i686_gnullvm", 828 - "windows_i686_msvc", 829 - "windows_x86_64_gnu", 830 - "windows_x86_64_gnullvm", 831 - "windows_x86_64_msvc", 832 - ] 833 - 834 - [[package]] 835 - name = "windows_aarch64_gnullvm" 836 - version = "0.52.6" 837 - source = "registry+https://github.com/rust-lang/crates.io-index" 838 - checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 839 - 840 - [[package]] 841 - name = "windows_aarch64_msvc" 842 - version = "0.52.6" 843 - source = "registry+https://github.com/rust-lang/crates.io-index" 844 - checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 845 - 846 - [[package]] 847 - name = "windows_i686_gnu" 848 - version = "0.52.6" 849 - source = "registry+https://github.com/rust-lang/crates.io-index" 850 - checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 851 - 852 - [[package]] 853 - name = "windows_i686_gnullvm" 854 - version = "0.52.6" 855 - source = "registry+https://github.com/rust-lang/crates.io-index" 856 - checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 857 - 858 - [[package]] 859 - name = "windows_i686_msvc" 860 - version = "0.52.6" 861 - source = "registry+https://github.com/rust-lang/crates.io-index" 862 - checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 863 - 864 - [[package]] 865 - name = "windows_x86_64_gnu" 866 - version = "0.52.6" 867 - source = "registry+https://github.com/rust-lang/crates.io-index" 868 - checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 869 - 870 - [[package]] 871 - name = "windows_x86_64_gnullvm" 872 - version = "0.52.6" 873 - source = "registry+https://github.com/rust-lang/crates.io-index" 874 - checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 875 - 876 - [[package]] 877 - name = "windows_x86_64_msvc" 878 - version = "0.52.6" 879 - source = "registry+https://github.com/rust-lang/crates.io-index" 880 - checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 881 - 882 - [[package]] 883 - name = "zip" 884 - version = "2.4.1" 885 - source = "registry+https://github.com/rust-lang/crates.io-index" 886 - checksum = "938cc23ac49778ac8340e366ddc422b2227ea176edb447e23fc0627608dddadd" 887 - dependencies = [ 888 - "arbitrary", 889 - "crc32fast", 890 - "crossbeam-utils", 891 - "displaydoc", 892 - "flate2", 893 - "indexmap", 894 - "memchr", 895 - "thiserror", 896 - "zopfli", 897 - ] 898 - 899 - [[package]] 900 - name = "zopfli" 901 - version = "0.8.1" 902 - source = "registry+https://github.com/rust-lang/crates.io-index" 903 - checksum = "e5019f391bac5cf252e93bbcc53d039ffd62c7bfb7c150414d61369afe57e946" 904 - dependencies = [ 905 - "bumpalo", 906 - "crc32fast", 907 - "lockfree-object-pool", 908 - "log", 909 - "once_cell", 910 - "simd-adler32", 911 - ]
+5 -7
pkgs/development/python-modules/python-calamine/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "python-calamine"; 16 - version = "0.3.2"; 16 + version = "0.4.0"; 17 17 pyproject = true; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "dimastbk"; 21 21 repo = "python-calamine"; 22 22 tag = "v${version}"; 23 - hash = "sha256-XNTG3Vo//cFvrl3/FXaVmO0PfwCXTauvOwIP0nsjlHg="; 23 + hash = "sha256-qbme5P/oo7djoKbGFd+mVz6p4sHl1zejQI9wOarHzMA="; 24 24 }; 25 25 26 - cargoDeps = rustPlatform.importCargoLock { 27 - lockFile = ./Cargo.lock; 28 - outputHashes = { 29 - "calamine-0.26.1" = "sha256-qlquNX13PQmzuzl+URo7cFDtNODzwIUQXIK8bqZ2iqc="; 30 - }; 26 + cargoDeps = rustPlatform.fetchCargoVendor { 27 + inherit pname version src; 28 + hash = "sha256-8X6TDCxeDLHObJ+q/bEYTonHe0bgXMnBrIz3rKalfyk="; 31 29 }; 32 30 33 31 buildInputs = [ libiconv ];
+10 -1
pkgs/development/python-modules/reflex-chakra/default.nix
··· 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 5 hatchling, 6 + uv-dynamic-versioning, 6 7 pythonOlder, 7 8 reflex, 8 9 pytestCheckHook, ··· 22 23 hash = "sha256-DugZRZpGP90EFkBjpAS1XkjrNPG6WWwCQPUcEZJ0ff8="; 23 24 }; 24 25 25 - build-system = [ hatchling ]; 26 + postPatch = '' 27 + substituteInPlace pyproject.toml \ 28 + --replace-fail ', "uv-dynamic-versioning"' "" \ 29 + --replace-fail 'source = "uv-dynamic-versioning"' 'source = "env"${"\n"}variable = "version"' 30 + ''; 26 31 32 + build-system = [ 33 + hatchling 34 + uv-dynamic-versioning 35 + ]; 27 36 dependencies = [ reflex ]; 28 37 29 38 pythonImportsCheck = [ "reflex_chakra" ];
+3 -2
pkgs/development/python-modules/reflex-hosting-cli/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "reflex-hosting-cli"; 21 - version = "0.1.53"; 21 + version = "0.1.54"; 22 22 pyproject = true; 23 23 24 24 # source is not published https://github.com/reflex-dev/reflex/issues/3762 25 25 src = fetchPypi { 26 26 pname = "reflex_hosting_cli"; 27 27 inherit version; 28 - hash = "sha256-pxUnZzAuecgzbEi+PNXOry9yRjAsPhzobjSV7+PPDuk="; 28 + hash = "sha256-agfG9nKCvKqWUOfXZ54S25jMYPSg9oVItcu0PTbIoB4="; 29 29 }; 30 30 31 31 pythonRelaxDeps = [ 32 + "click" 32 33 "rich" 33 34 "pipdeptree" 34 35 ];
+4 -6
pkgs/development/python-modules/reflex/default.nix
··· 7 7 build, 8 8 ruff, 9 9 dill, 10 - fastapi, 11 10 granian, 12 11 hatchling, 13 12 httpx, ··· 43 42 44 43 buildPythonPackage rec { 45 44 pname = "reflex"; 46 - version = "0.8.5"; 45 + version = "0.8.6"; 47 46 pyproject = true; 48 47 49 48 src = fetchFromGitHub { 50 49 owner = "reflex-dev"; 51 50 repo = "reflex"; 52 51 tag = "v${version}"; 53 - hash = "sha256-OBGDOVWjm3DbN41e3/RrOvCBvd5Uv6VyOvPA8/FWsiU="; 52 + hash = "sha256-Tas67x9UEFSR7yyENvixzCWbbKgP+OBMw6prnxWgCQo="; 54 53 }; 55 54 56 55 # 'rich' is also somehow checked when building the wheel, ··· 59 58 60 59 pythonRelaxDeps = [ 61 60 # needed 61 + "click" 62 + "starlette" 62 63 "rich" 63 - # preventative 64 - "fastapi" 65 64 ]; 66 65 67 66 build-system = [ hatchling ]; ··· 70 69 alembic 71 70 build # used in custom_components/custom_components.py 72 71 dill # used in state.py 73 - fastapi 74 72 granian 75 73 granian.optional-dependencies.reload 76 74 httpx
+2 -2
pkgs/development/python-modules/resend/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "resend"; 14 - version = "2.11.0"; 14 + version = "2.13.0"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "resend"; 21 21 repo = "resend-python"; 22 22 tag = "v${version}"; 23 - hash = "sha256-ubStw6SphRabXIaRDMXMbki4pkg9Wjt/J0CinQvytz4="; 23 + hash = "sha256-3NMZPoKC2VIsu5A45MkGikB7cfYpswJU8CKpxCdRTcg="; 24 24 }; 25 25 26 26 build-system = [ setuptools ];
+4 -3
pkgs/development/python-modules/scs/default.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 + pkgs, 4 5 buildPythonPackage, 5 6 fetchFromGitHub, 6 7 ··· 21 22 22 23 buildPythonPackage rec { 23 24 pname = "scs"; 24 - version = "3.2.7.post2"; 25 + inherit (pkgs.scs) version; 25 26 pyproject = true; 26 27 27 28 src = fetchFromGitHub { 28 29 owner = "bodono"; 29 30 repo = "scs-python"; 30 31 tag = version; 31 - hash = "sha256-A626gK30J4e/TrJMXYc+jMgYw7fNcnWfnTeXlyYQNMM="; 32 32 fetchSubmodules = true; 33 + hash = "sha256-Dv0LDY6JFFq/dpcDsnU+ErnHJ8RDpaNhrRjEwY31Szk="; 33 34 }; 34 35 35 36 postPatch = '' ··· 63 64 Can solve: linear programs (LPs), second-order cone programs (SOCPs), semidefinite programs (SDPs), 64 65 exponential cone programs (ECPs), and power cone programs (PCPs), or problems with any combination of those cones. 65 66 ''; 66 - homepage = "https://github.com/cvxgrp/scs"; # upstream C package 67 + inherit (pkgs.scs.meta) homepage; 67 68 downloadPage = "https://github.com/bodono/scs-python"; 68 69 license = lib.licenses.mit; 69 70 maintainers = with lib.maintainers; [ drewrisinger ];
+2 -2
pkgs/development/python-modules/tilt-ble/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "tilt-ble"; 16 - version = "0.2.4"; 16 + version = "0.3.1"; 17 17 pyproject = true; 18 18 19 19 disabled = pythonOlder "3.9"; ··· 22 22 owner = "Bluetooth-Devices"; 23 23 repo = "tilt-ble"; 24 24 tag = "v${version}"; 25 - hash = "sha256-ok9XWx47hcke535480NORfS1pSagaOJvMR48lYTa/Tg="; 25 + hash = "sha256-sT8tMsA9w3HwM/wPsqKTgHWvhf83zxQ5P/bQHlqolH4="; 26 26 }; 27 27 28 28 build-system = [ poetry-core ];
+2 -2
pkgs/development/python-modules/timezonefinder/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "timezonefinder"; 17 - version = "7.0.1"; 17 + version = "8.0.0"; 18 18 pyproject = true; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "jannikmi"; 22 22 repo = "timezonefinder"; 23 23 tag = version; 24 - hash = "sha256-Pp4VHCaYH4yZh25Z8ETTpPW8YHeBro+st/5MM4XDwxk="; 24 + hash = "sha256-AvuNsIpJBZymlJe4HLPEmHfxN1jhqPmrEgRPb3W+B3E="; 25 25 }; 26 26 27 27 build-system = [
+3 -3
pkgs/games/doom-ports/slade/git.nix
··· 22 22 23 23 stdenv.mkDerivation { 24 24 pname = "slade"; 25 - version = "3.2.7-unstable-2025-06-29"; 25 + version = "3.2.7-unstable-2025-08-08"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "sirjuddington"; 29 29 repo = "SLADE"; 30 - rev = "c89e00707c79f7a1616a57414c5957dc773810e3"; 31 - hash = "sha256-XjF2jgO28nU/DvuNLAubkUgVXvl8m6vQlKv6Byqfp6o="; 30 + rev = "e39df3a8809508bede6d0342932d0cb8f8a440f2"; 31 + hash = "sha256-BZllLj50LpUntpYWyUBI9K64wb7vHTwBWzW20GeJRXQ="; 32 32 }; 33 33 34 34 nativeBuildInputs = [
+2 -1
pkgs/os-specific/linux/kernel/common-config.nix
··· 37 37 whenPlatformHasEBPFJit = lib.mkIf ( 38 38 stdenv.hostPlatform.isAarch32 39 39 || stdenv.hostPlatform.isAarch64 40 - || stdenv.hostPlatform.isx86_64 40 + || stdenv.hostPlatform.isx86 41 41 || (stdenv.hostPlatform.isPower && stdenv.hostPlatform.is64bit) 42 42 || (stdenv.hostPlatform.isMips && stdenv.hostPlatform.is64bit) 43 43 ); ··· 111 111 112 112 # Enable crashkernel support 113 113 PROC_VMCORE = yes; 114 + HIGHMEM4G = lib.mkIf (stdenv.hostPlatform.isx86 && stdenv.hostPlatform.is32bit) yes; 114 115 115 116 # Track memory leaks and performance issues related to allocations. 116 117 MEM_ALLOC_PROFILING = whenAtLeast "6.10" yes;
+2 -2
pkgs/os-specific/linux/xone/default.nix
··· 6 6 }: 7 7 stdenv.mkDerivation (finalAttrs: { 8 8 pname = "xone"; 9 - version = "0.3.5"; 9 + version = "0.4.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "dlundqvist"; 13 13 repo = "xone"; 14 14 tag = "v${finalAttrs.version}"; 15 - hash = "sha256-O+SdUx5wFIT4mLUO5awFp9IKmtnRhMtBLEHaRXRBv2Y="; 15 + hash = "sha256-myiKYXJ4Qisz6uJYO75xs/lGj7A/Ft+6frky9lBuWzc="; 16 16 }; 17 17 18 18 setSourceRoot = ''
+3 -4
pkgs/servers/home-assistant/custom-components/octopus_energy/package.nix
··· 11 11 buildHomeAssistantComponent rec { 12 12 owner = "BottlecapDave"; 13 13 domain = "octopus_energy"; 14 - version = "16.0.2"; 14 + version = "16.1.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 inherit owner; 18 18 repo = "HomeAssistant-OctopusEnergy"; 19 19 tag = "v${version}"; 20 - hash = "sha256-/lhM00CNVPoZ8oohPuJ5j0pf0Dmxym3eycdkknlaAug="; 20 + hash = "sha256-QQyDQQpVghapBUxUSlHjnrpi3tBEYLOdJiARnL4mYbc="; 21 21 }; 22 22 23 23 dependencies = [ pydantic ]; ··· 42 42 43 43 passthru.updateScript = nix-update-script { 44 44 extraArgs = [ 45 - "--version-regex" 46 45 # Ignore pre-release versions ("beta") 47 - "^v[0-9]+\\.[0-9]+\\.[0-9]+$" 46 + "--version-regex=^v([0-9]+\\.[0-9]+\\.[0-9])$" 48 47 ]; 49 48 }; 50 49
+49 -49
pkgs/tools/admin/pulumi-bin/data.nix
··· 1 1 # DO NOT EDIT! This file is generated automatically by update.sh 2 2 { }: 3 3 { 4 - version = "3.188.0"; 4 + version = "3.189.0"; 5 5 pulumiPkgs = { 6 6 x86_64-linux = [ 7 7 { 8 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.188.0-linux-x64.tar.gz"; 9 - sha256 = "0svnkyfmlbxsdprgan1qpdiczadfny0z4jan7k03pzvd1rd2gg70"; 8 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.189.0-linux-x64.tar.gz"; 9 + sha256 = "0pr5f3c4hzlvv3ypzkby61ry57r8iagmsiw69s3vsrg7nf3mmpnh"; 10 10 } 11 11 { 12 12 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.41.0-linux-amd64.tar.gz"; ··· 29 29 sha256 = "0wajqrdjwfbsvi6isfwiglp60bsdrihp5svbxw44c5wb8hmc3wg9"; 30 30 } 31 31 { 32 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v7.3.1-linux-amd64.tar.gz"; 33 - sha256 = "0mi09av4x1zbcxpllvaxq0isjlh1p8lvkxd0bz8w8mnn09c964wd"; 32 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v7.4.0-linux-amd64.tar.gz"; 33 + sha256 = "19y7n0lj610wzwylic9d89qpfachyf1qyqwnzjykchiqkq222yrw"; 34 34 } 35 35 { 36 36 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.2-linux-amd64.tar.gz"; ··· 41 41 sha256 = "1wn62hc40zvzr6lh81ha0668y89kfdy67nmc6vpb4jwbr5s8zdvi"; 42 42 } 43 43 { 44 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.24.0-linux-amd64.tar.gz"; 45 - sha256 = "1p1ckynwbwpvkvac0n8ra68spca9jf85v7rri8x5ldqxkqrbng7z"; 44 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.25.0-linux-amd64.tar.gz"; 45 + sha256 = "1nh5w1ay2bf3prnp4bld5d2gidqd6b9iv9dqhlmw23flx5qjlf2y"; 46 46 } 47 47 { 48 48 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v6.4.1-linux-amd64.tar.gz"; ··· 73 73 sha256 = "0yzdsz3qmvsim63ndfyw3rikvd3acpwd63hav3n95qc91p7gf92j"; 74 74 } 75 75 { 76 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.39.0-linux-amd64.tar.gz"; 77 - sha256 = "12g19dkp3vnk3gi44635iv41my1hx8cdpjazj03qhbzgqaplkslg"; 76 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.40.0-linux-amd64.tar.gz"; 77 + sha256 = "00w451g5l29vzkl67cp0245hfdnvpp36fzfb72n26i7qljcny3pm"; 78 78 } 79 79 { 80 80 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.7.3-linux-amd64.tar.gz"; ··· 125 125 sha256 = "0dlg2bpwdh1kwmiwirl0r29sdr49q4wmcj337mg2a5iw9l95wqxn"; 126 126 } 127 127 { 128 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.123.1-linux-amd64.tar.gz"; 129 - sha256 = "1br6v7ypkvpgkrw4a5bjv5qpwici80aksz4cin5c7fnh1ic96cha"; 128 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.124.0-linux-amd64.tar.gz"; 129 + sha256 = "038ibhpmm129xavmqfb5p2bd1sxf5hvw08qclkm7h38sgdzx0hk4"; 130 130 } 131 131 { 132 132 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.11-linux-amd64.tar.gz"; ··· 145 145 sha256 = "041svni5yqmymfx0kxqm9l4amvnla6sxfvlp1p2fpgw77mdwp98m"; 146 146 } 147 147 { 148 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.11.3-linux-amd64.tar.gz"; 149 - sha256 = "1967nb77jj8cipp6sr6f5ij5ld1bvylrbyjmmg58c0lgmadjj64a"; 148 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.11.4-linux-amd64.tar.gz"; 149 + sha256 = "0qznn0lncblhmzclrznblv569s1gkxh1zmh98zxyg5g4h2zz1zci"; 150 150 } 151 151 { 152 152 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.15.0-linux-amd64.tar.gz"; ··· 163 163 ]; 164 164 x86_64-darwin = [ 165 165 { 166 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.188.0-darwin-x64.tar.gz"; 167 - sha256 = "0r133ybrfi8l800jzal4wf9hjwa3w74fdgbyypvdzybv3krqhavr"; 166 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.189.0-darwin-x64.tar.gz"; 167 + sha256 = "10jiai24vcpqnaa7lm1sc21rsix4rgwqzpl2a9lyf4j18m1qlxcr"; 168 168 } 169 169 { 170 170 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.41.0-darwin-amd64.tar.gz"; ··· 187 187 sha256 = "10ir2l4pxlbqn2jf1nh8x9q31msbifdliv75iysg85gnpjd0x2f4"; 188 188 } 189 189 { 190 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v7.3.1-darwin-amd64.tar.gz"; 191 - sha256 = "0gpfqlv7iwb7yjxw94p1a74mz5d7sv2nwa8zfzmnjh1nfad98r41"; 190 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v7.4.0-darwin-amd64.tar.gz"; 191 + sha256 = "0gn8nmh56viy9f9hii2kckj8j6x3900ydfqkyapwg5w0fgkph2ni"; 192 192 } 193 193 { 194 194 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.2-darwin-amd64.tar.gz"; ··· 199 199 sha256 = "1dwn0xjr0p6rd2r5x59flscfg911xaahp3bvhbkrz8pgkkg6ygcz"; 200 200 } 201 201 { 202 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.24.0-darwin-amd64.tar.gz"; 203 - sha256 = "1mh4f29ijwcyg1bx973542mmh9bgq7aji5rgxv08j5n1f0d3ic4d"; 202 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.25.0-darwin-amd64.tar.gz"; 203 + sha256 = "10vggqap983dl2l8xps2qm9d4l32slc014y1g6cqc5qiq3zlwhr4"; 204 204 } 205 205 { 206 206 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v6.4.1-darwin-amd64.tar.gz"; ··· 231 231 sha256 = "0843nw4w6l2sz0yp5ny39scbx4yz1hzm9c1099cxn764xdbv6w5x"; 232 232 } 233 233 { 234 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.39.0-darwin-amd64.tar.gz"; 235 - sha256 = "004ll28fgg18p2q5kv1brbdjn1s2wrd1ysfl5hprvjnni3vnf8pn"; 234 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.40.0-darwin-amd64.tar.gz"; 235 + sha256 = "0xnpx9wwswdlfw10l9cx1wx7jz0n3dfsb02sksipp5njkzwfvscq"; 236 236 } 237 237 { 238 238 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.7.3-darwin-amd64.tar.gz"; ··· 283 283 sha256 = "14h7hrbcwcvfzqklkc13j176ra05i9x94xwj81fa47i9cxi7vsia"; 284 284 } 285 285 { 286 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.123.1-darwin-amd64.tar.gz"; 287 - sha256 = "1b78ygzv4xnfl9j2h2a9mj10s7mvd706wr1dmqbkha1fcdrlqrm9"; 286 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.124.0-darwin-amd64.tar.gz"; 287 + sha256 = "0fvncj4wxlwkpk79xlpayb4l038igjx1n4fysk5ahvwanvpy8lxs"; 288 288 } 289 289 { 290 290 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.11-darwin-amd64.tar.gz"; ··· 303 303 sha256 = "066pnfn4s26hx3l1x9d27a076b6py3gn1q9b58li05azy1rr1iwf"; 304 304 } 305 305 { 306 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.11.3-darwin-amd64.tar.gz"; 307 - sha256 = "1b7b316ajw04i78vyd5wy2f63fidp70h8wv840qlkbnvn3lbzrj4"; 306 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.11.4-darwin-amd64.tar.gz"; 307 + sha256 = "0sg6j8z1cyzhji2fm61q6mjl5yyfcsfhyi413jyp3d5wkx3spaf2"; 308 308 } 309 309 { 310 310 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.15.0-darwin-amd64.tar.gz"; ··· 321 321 ]; 322 322 aarch64-linux = [ 323 323 { 324 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.188.0-linux-arm64.tar.gz"; 325 - sha256 = "13yrwx1w42r4smv5mny6wkbbg8zgiinmc6wylzgi901irps13xsg"; 324 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.189.0-linux-arm64.tar.gz"; 325 + sha256 = "18f94fykgfrlxiq7xa2ai601a51xifdydnamnki4ziix4h1vpicl"; 326 326 } 327 327 { 328 328 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.41.0-linux-arm64.tar.gz"; ··· 345 345 sha256 = "0v5v2chw0d0ff61z6vx1jcr9vs3iaq8pdnqkjvxgfz89jmc638dz"; 346 346 } 347 347 { 348 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v7.3.1-linux-arm64.tar.gz"; 349 - sha256 = "0scl75xzhxmzmf8g51mv85rsfyzk7c8pn0yxdbh0ccwn5l8fqlqy"; 348 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v7.4.0-linux-arm64.tar.gz"; 349 + sha256 = "0xbh82z6f9vnn3ym9mf9nmpm2ldcybz8i66x6s3ji6964sggvrnj"; 350 350 } 351 351 { 352 352 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.2-linux-arm64.tar.gz"; ··· 357 357 sha256 = "0bqqng9mpv7k6npdq01w058ram5zmfvand39s075hh73xc6hp5c5"; 358 358 } 359 359 { 360 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.24.0-linux-arm64.tar.gz"; 361 - sha256 = "0w8h4fy4p141746r61cjaa1jd20qnqynid39ia86knin99f5cf0b"; 360 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.25.0-linux-arm64.tar.gz"; 361 + sha256 = "1715fxw8y7sknyfwwnpbgjfrjkin70iknpqpafimkzg2n9n3xjbc"; 362 362 } 363 363 { 364 364 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v6.4.1-linux-arm64.tar.gz"; ··· 389 389 sha256 = "15aivjbj4sl8pck9d339mgngs3habz8vr4gd7hy4i04vykxwiwmg"; 390 390 } 391 391 { 392 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.39.0-linux-arm64.tar.gz"; 393 - sha256 = "1lszi6b2gq6pgsyrjj9xs89qnc8w7yl2w8fnxgqwp78w516jz3bd"; 392 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.40.0-linux-arm64.tar.gz"; 393 + sha256 = "17z8z3qsdb5qj57b80rqigphjc3qnb31gdm81nw3s56i1xzpv0fl"; 394 394 } 395 395 { 396 396 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.7.3-linux-arm64.tar.gz"; ··· 441 441 sha256 = "1y6f2wl56nh57m0gkv21fh53hygjb5kaq40vbdbpa4aa5q80fxq0"; 442 442 } 443 443 { 444 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.123.1-linux-arm64.tar.gz"; 445 - sha256 = "12xrcps6dw8z2alghbf7xjqmnpcf8bcgdqggdsmnyal61zpr2ghz"; 444 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.124.0-linux-arm64.tar.gz"; 445 + sha256 = "19p5sszx3ij34c1x1rmcr6wm9zr2wqlnawbydzxbvkzjgdgmmn55"; 446 446 } 447 447 { 448 448 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.11-linux-arm64.tar.gz"; ··· 461 461 sha256 = "1i8jrny0aq22x9kb3qglhmp025bjwj5xvi5znc1c3p9a6q41z63s"; 462 462 } 463 463 { 464 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.11.3-linux-arm64.tar.gz"; 465 - sha256 = "1ix2ga8ns3x0l86pp30fxprx2j86ba84x0c14sfz79sr5dncbdqf"; 464 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.11.4-linux-arm64.tar.gz"; 465 + sha256 = "1p95vhwl44iq6yd9ycccwa2sbhcx6x5pxwk21wbzy5lsg8nhsa2h"; 466 466 } 467 467 { 468 468 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.15.0-linux-arm64.tar.gz"; ··· 479 479 ]; 480 480 aarch64-darwin = [ 481 481 { 482 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.188.0-darwin-arm64.tar.gz"; 483 - sha256 = "0pnsrfn38c1carkczpwkphq6338q3qhqrzpcmghyp8p1qn5gkpbp"; 482 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.189.0-darwin-arm64.tar.gz"; 483 + sha256 = "10iql2iva0qzn4k3z5x0inhsrs3sxdcfxlylwsz9sjycxb3pzs35"; 484 484 } 485 485 { 486 486 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.41.0-darwin-arm64.tar.gz"; ··· 503 503 sha256 = "0xfq38zx5sy6fq3x3kl24qg7j2sfap7rq9qkc7zy7sx2x9ckddbv"; 504 504 } 505 505 { 506 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v7.3.1-darwin-arm64.tar.gz"; 507 - sha256 = "1fxbx2zi226hv50miwgaqbxa36w3cn5c7prbjyqxch5y5qi0vxdc"; 506 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v7.4.0-darwin-arm64.tar.gz"; 507 + sha256 = "0sdbcbx3nh3vm5gzhxdqiddjxdyl0x071n1a06qcjg7yvv4a47ah"; 508 508 } 509 509 { 510 510 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.2-darwin-arm64.tar.gz"; ··· 515 515 sha256 = "1j3anypzdv3qicg5nagn6zckxr877f39kzazdi0slki9cpwnzkhi"; 516 516 } 517 517 { 518 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.24.0-darwin-arm64.tar.gz"; 519 - sha256 = "030z7rb9199iv7452aknd8h57lp2ifnigdn41lc1xb83rwpcm1k6"; 518 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.25.0-darwin-arm64.tar.gz"; 519 + sha256 = "1ladpq9i6iyafsrm7wfgl35hfxfx0d769hh2894j0a7msfkj4cxj"; 520 520 } 521 521 { 522 522 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v6.4.1-darwin-arm64.tar.gz"; ··· 547 547 sha256 = "09wwvhxchd5qkvq3rk6k742arfk3y5ysxvcygn56pvbwjlzjc654"; 548 548 } 549 549 { 550 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.39.0-darwin-arm64.tar.gz"; 551 - sha256 = "1v9rppazl6bcbjs8l3mrwp6h5y4ir10ar4m3jkimimamf29wss8v"; 550 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.40.0-darwin-arm64.tar.gz"; 551 + sha256 = "1bdwhdm9ghgbqvirwikcsld7388wf78vdn3lwr579brsxynh3iay"; 552 552 } 553 553 { 554 554 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.7.3-darwin-arm64.tar.gz"; ··· 599 599 sha256 = "1c3qy2a4i96f9ybmkzs6jslarncg35r02r86q96pz0j5i9zz8fsn"; 600 600 } 601 601 { 602 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.123.1-darwin-arm64.tar.gz"; 603 - sha256 = "1n3p9y26q7qc3ji9l4yrzxkravmmfb3gvs7xj4lyfy1ll312dq4d"; 602 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.124.0-darwin-arm64.tar.gz"; 603 + sha256 = "1j1p8nrwmwnaxigprk6xv7m264mvy6fszq0p0ify0w6yxw0h9a2m"; 604 604 } 605 605 { 606 606 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.11-darwin-arm64.tar.gz"; ··· 619 619 sha256 = "0kn0plsw4qj9jky6mmbvla3ql6bqdajz0c54cqsjvxz6qjswrjnn"; 620 620 } 621 621 { 622 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.11.3-darwin-arm64.tar.gz"; 623 - sha256 = "0kr79wzzvg8mr2yn7qxmnbybg67zc2hiln52p2k9f47fzi2d7lcp"; 622 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.11.4-darwin-arm64.tar.gz"; 623 + sha256 = "0zb2v0mjqzvgasb8xi8svi7770hp8fabga7whd4vybdcildwp83s"; 624 624 } 625 625 { 626 626 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.15.0-darwin-arm64.tar.gz";
+4 -3
pkgs/tools/networking/openssh/common.nix
··· 146 146 ++ lib.optional (!stdenv.hostPlatform.isDarwin) hostname 147 147 ++ lib.optional (!stdenv.hostPlatform.isDarwin && !stdenv.hostPlatform.isMusl) softhsm; 148 148 149 - preCheck = 150 - lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' 149 + preCheck = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ( 150 + '' 151 151 # construct a dummy HOME 152 152 export HOME=$(realpath ../dummy-home) 153 153 mkdir -p ~/.ssh ··· 197 197 # The extra tests check PKCS#11 interactions, which softhsm emulates with software only 198 198 substituteInPlace regress/test-exec.sh \ 199 199 --replace /usr/local/lib/softhsm/libsofthsm2.so ${lib.getLib softhsm}/lib/softhsm/libsofthsm2.so 200 - ''; 200 + '' 201 + ); 201 202 # integration tests hard to get working on darwin with its shaky 202 203 # sandbox 203 204 # t-exec tests fail on musl
+8 -1
pkgs/top-level/python-packages.nix
··· 2064 2064 2065 2065 bot-safe-agents = callPackage ../development/python-modules/bot-safe-agents { }; 2066 2066 2067 + botan3 = callPackage ../development/python-modules/botan3 { inherit (pkgs) botan3; }; 2068 + 2067 2069 boto3 = callPackage ../development/python-modules/boto3 { }; 2068 2070 2069 2071 boto3-stubs = callPackage ../development/python-modules/boto3-stubs { }; ··· 19561 19563 19562 19564 vtjp = callPackage ../development/python-modules/vtjp { }; 19563 19565 19564 - vtk = toPythonModule (pkgs.vtk-full.override { python3Packages = self; }); 19566 + vtk = toPythonModule ( 19567 + pkgs.vtk.override { 19568 + pythonSupport = true; 19569 + python3Packages = self; 19570 + } 19571 + ); 19565 19572 19566 19573 vttlib = callPackage ../development/python-modules/vttlib { }; 19567 19574