lol

Merge branch 'master' into staging-next

+2932 -1763
+5 -8
.github/CODEOWNERS
··· 11 11 # This also holds true for GitHub teams. Since almost none of our teams have write 12 12 # permissions, you need to list all members of the team with commit access individually. 13 13 14 - # This file 15 - /.github/CODEOWNERS @edolstra 16 - 17 14 # GitHub actions 18 15 /.github/workflows @NixOS/Security @Mic92 @zowoq 19 16 /.github/workflows/merge-staging @FRidh ··· 22 19 /.editorconfig @Mic92 @zowoq 23 20 24 21 # Libraries 25 - /lib @edolstra @infinisil 22 + /lib @infinisil 26 23 /lib/systems @alyssais @ericson2314 @amjoseph-nixpkgs 27 - /lib/generators.nix @infinisil @edolstra @Profpatsch 28 - /lib/cli.nix @infinisil @edolstra @Profpatsch 29 - /lib/debug.nix @infinisil @edolstra @Profpatsch 30 - /lib/asserts.nix @infinisil @edolstra @Profpatsch 24 + /lib/generators.nix @infinisil @Profpatsch 25 + /lib/cli.nix @infinisil @Profpatsch 26 + /lib/debug.nix @infinisil @Profpatsch 27 + /lib/asserts.nix @infinisil @Profpatsch 31 28 /lib/path.* @infinisil @fricklerhandwerk 32 29 /lib/fileset @infinisil 33 30 /doc/functions/fileset.section.md @infinisil
+15
lib/fileset/README.md
··· 238 238 And it would be unclear how the library should behave if the one file wouldn't be added to the store: 239 239 `toSource { root = ./file.nix; fileset = <empty>; }` has no reasonable result because returing an empty store path wouldn't match the file type, and there's no way to have an empty file store path, whatever that would mean. 240 240 241 + ### `fileFilter` takes a path 242 + 243 + The `fileFilter` function takes a path, and not a file set, as its second argument. 244 + 245 + - (-) Makes it harder to compose functions, since the file set type, the return value, can't be passed to the function itself like `fileFilter predicate fileset` 246 + - (+) It's still possible to use `intersection` to filter on file sets: `intersection fileset (fileFilter predicate ./.)` 247 + - (-) This does need an extra `./.` argument that's not obvious 248 + - (+) This could always be `/.` or the project directory, `intersection` will make it lazy 249 + - (+) In the future this will allow `fileFilter` to support a predicate property like `subpath` and/or `components` in a reproducible way. 250 + This wouldn't be possible if it took a file set, because file sets don't have a predictable absolute path. 251 + - (-) What about the base path? 252 + - (+) That can change depending on which files are included, so if it's used for `fileFilter` 253 + it would change the `subpath`/`components` value depending on which files are included. 254 + - (+) If necessary, this restriction can be relaxed later, the opposite wouldn't be possible 255 + 241 256 ## To update in the future 242 257 243 258 Here's a list of places in the library that need to be updated in the future:
+15 -5
lib/fileset/default.nix
··· 366 366 type :: String, 367 367 ... 368 368 } -> Bool) 369 - -> FileSet 369 + -> Path 370 370 -> FileSet 371 371 372 372 Example: ··· 397 397 Other attributes may be added in the future. 398 398 */ 399 399 predicate: 400 - # The file set to filter based on the predicate function 401 - fileset: 400 + # The path whose files to filter 401 + path: 402 402 if ! isFunction predicate then 403 403 throw '' 404 404 lib.fileset.fileFilter: First argument is of type ${typeOf predicate}, but it should be a function instead.'' 405 + else if ! isPath path then 406 + if path._type or "" == "fileset" then 407 + throw '' 408 + lib.fileset.fileFilter: Second argument is a file set, but it should be a path instead. 409 + If you need to filter files in a file set, use `intersection fileset (fileFilter pred ./.)` instead.'' 410 + else 411 + throw '' 412 + lib.fileset.fileFilter: Second argument is of type ${typeOf path}, but it should be a path instead.'' 413 + else if ! pathExists path then 414 + throw '' 415 + lib.fileset.fileFilter: Second argument (${toString path}) is a path that does not exist.'' 405 416 else 406 - _fileFilter predicate 407 - (_coerce "lib.fileset.fileFilter: Second argument" fileset); 417 + _fileFilter predicate path; 408 418 409 419 /* 410 420 The file set containing all files that are in both of two given file sets.
+18 -15
lib/fileset/internal.nix
··· 786 786 _differenceTree (path + "/${name}") lhsValue (rhs.${name} or null) 787 787 ) (_directoryEntries path lhs); 788 788 789 - # Filters all files in a file set based on a predicate 790 - # Type: ({ name, type, ... } -> Bool) -> FileSet -> FileSet 791 - _fileFilter = predicate: fileset: 789 + # Filters all files in a path based on a predicate 790 + # Type: ({ name, type, ... } -> Bool) -> Path -> FileSet 791 + _fileFilter = predicate: root: 792 792 let 793 793 # Check the predicate for a single file 794 794 # Type: String -> String -> filesetTree ··· 807 807 808 808 # Check the predicate for all files in a directory 809 809 # Type: Path -> filesetTree 810 - fromDir = path: tree: 811 - mapAttrs (name: subtree: 812 - if isAttrs subtree || subtree == "directory" then 813 - fromDir (path + "/${name}") subtree 814 - else if subtree == null then 815 - null 810 + fromDir = path: 811 + mapAttrs (name: type: 812 + if type == "directory" then 813 + fromDir (path + "/${name}") 816 814 else 817 - fromFile name subtree 818 - ) (_directoryEntries path tree); 815 + fromFile name type 816 + ) (readDir path); 817 + 818 + rootType = pathType root; 819 819 in 820 - if fileset._internalIsEmptyWithoutBase then 821 - _emptyWithoutBase 820 + if rootType == "directory" then 821 + _create root (fromDir root) 822 822 else 823 - _create fileset._internalBase 824 - (fromDir fileset._internalBase fileset._internalTree); 823 + # Single files are turned into a directory containing that file or nothing. 824 + _create (dirOf root) { 825 + ${baseNameOf root} = 826 + fromFile (baseNameOf root) rootType; 827 + }; 825 828 }
+4 -11
lib/fileset/tests.sh
··· 813 813 # The first argument needs to be a function 814 814 expectFailure 'fileFilter null (abort "this is not needed")' 'lib.fileset.fileFilter: First argument is of type null, but it should be a function instead.' 815 815 816 - # The second argument can be a file set or an existing path 817 - expectFailure 'fileFilter (file: abort "this is not needed") null' 'lib.fileset.fileFilter: Second argument is of type null, but it should be a file set or a path instead.' 816 + # The second argument needs to be an existing path 817 + expectFailure 'fileFilter (file: abort "this is not needed") _emptyWithoutBase' 'lib.fileset.fileFilter: Second argument is a file set, but it should be a path instead. 818 + \s*If you need to filter files in a file set, use `intersection fileset \(fileFilter pred \./\.\)` instead.' 819 + expectFailure 'fileFilter (file: abort "this is not needed") null' 'lib.fileset.fileFilter: Second argument is of type null, but it should be a path instead.' 818 820 expectFailure 'fileFilter (file: abort "this is not needed") ./a' 'lib.fileset.fileFilter: Second argument \('"$work"'/a\) is a path that does not exist.' 819 821 820 822 # The predicate is not called when there's no files 821 823 tree=() 822 824 checkFileset 'fileFilter (file: abort "this is not needed") ./.' 823 - checkFileset 'fileFilter (file: abort "this is not needed") _emptyWithoutBase' 824 825 825 826 # The predicate must be able to handle extra attributes 826 827 touch a ··· 881 882 checkFileset 'union ./c/a (fileFilter (file: assert file.name != "a"; true) ./.)' 882 883 # but here we need to use ./c 883 884 checkFileset 'union (fileFilter (file: assert file.name != "a"; true) ./.) ./c' 884 - 885 - # Also lazy, the filter isn't called on a filtered out path 886 - tree=( 887 - [a]=1 888 - [b]=0 889 - [c]=0 890 - ) 891 - checkFileset 'fileFilter (file: assert file.name != "c"; file.name == "a") (difference ./. ./c)' 892 885 893 886 # Make sure single files are filtered correctly 894 887 tree=(
+17
maintainers/maintainer-list.nix
··· 3079 3079 githubId = 1689801; 3080 3080 name = "Mikhail Chekan"; 3081 3081 }; 3082 + chen = { 3083 + email = "i@cuichen.cc"; 3084 + github = "cu1ch3n"; 3085 + githubId = 80438676; 3086 + name = "Chen Cui"; 3087 + }; 3082 3088 ChengCat = { 3083 3089 email = "yu@cheng.cat"; 3084 3090 github = "ChengCat"; ··· 11714 11720 githubId = 34864484; 11715 11721 name = "Mikael Fangel"; 11716 11722 }; 11723 + mikecm = { 11724 + email = "mikecmcleod@gmail.com"; 11725 + github = "MaxwellDupre"; 11726 + githubId = 14096356; 11727 + name = "Michael McLeod"; 11728 + }; 11717 11729 mikefaille = { 11718 11730 email = "michael@faille.io"; 11719 11731 github = "mikefaille"; ··· 16512 16524 github = "sjmackenzie"; 16513 16525 githubId = 158321; 16514 16526 name = "Stewart Mackenzie"; 16527 + }; 16528 + skovati = { 16529 + github = "skovati"; 16530 + githubId = 49844593; 16531 + name = "skovati"; 16515 16532 }; 16516 16533 skykanin = { 16517 16534 github = "skykanin";
+2
nixos/doc/manual/release-notes/rl-2311.section.md
··· 385 385 386 386 - The `prayer` package as well as `services.prayer` have been removed because it's been unmaintained for several years and the author's website has vanished. 387 387 388 + - The `chrony` NixOS module now tracks the Real-Time Clock drift from the System Clock with `rtcfile` and automatically adjusts it with `rtcautotrim` when it exceeds the maximum error specified in `services.chrony.autotrimThreshold` (default 30 seconds). If you enabled `rtcsync` in `extraConfig`, you should remove RTC related options from `extraConfig`. If you do not want chrony configured to keep the RTC in check, you can set `services.chrony.enableRTCTrimming = false;` 389 + 388 390 ## Other Notable Changes {#sec-release-23.11-notable-changes} 389 391 390 392 - A new option `system.switch.enable` was added. By default, this is option is
+38 -1
nixos/modules/services/networking/ntp/chrony.nix
··· 9 9 stateDir = cfg.directory; 10 10 driftFile = "${stateDir}/chrony.drift"; 11 11 keyFile = "${stateDir}/chrony.keys"; 12 + rtcFile = "${stateDir}/chrony.rtc"; 12 13 13 14 configFile = pkgs.writeText "chrony.conf" '' 14 15 ${concatMapStringsSep "\n" (server: "server " + server + " " + cfg.serverOption + optionalString (cfg.enableNTS) " nts") cfg.servers} ··· 20 21 21 22 driftfile ${driftFile} 22 23 keyfile ${keyFile} 24 + ${optionalString (cfg.enableRTCTrimming) "rtcfile ${rtcFile}"} 23 25 ${optionalString (cfg.enableNTS) "ntsdumpdir ${stateDir}"} 24 26 27 + ${optionalString (cfg.enableRTCTrimming) "rtcautotrim ${builtins.toString cfg.autotrimThreshold}"} 25 28 ${optionalString (!config.time.hardwareClockInLocalTime) "rtconutc"} 26 29 27 30 ${cfg.extraConfig} ··· 85 88 ''; 86 89 }; 87 90 91 + enableRTCTrimming = mkOption { 92 + type = types.bool; 93 + default = true; 94 + description = lib.mdDoc '' 95 + Enable tracking of the RTC offset to the system clock and automatic trimming. 96 + See also [](#opt-services.chrony.autotrimThreshold) 97 + 98 + ::: {.note} 99 + This is not compatible with the `rtcsync` directive, which naively syncs the RTC time every 11 minutes. 100 + 101 + Tracking the RTC drift will allow more precise timekeeping, 102 + especially on intermittently running devices, where the RTC is very relevant. 103 + ::: 104 + ''; 105 + }; 106 + 107 + autotrimThreshold = mkOption { 108 + type = types.ints.positive; 109 + default = 30; 110 + example = 10; 111 + description = '' 112 + Maximum estimated error threshold for the `rtcautotrim` command. 113 + When reached, the RTC will be trimmed. 114 + Only used when [](#opt-services.chrony.enableRTCTrimming) is enabled. 115 + ''; 116 + }; 117 + 88 118 enableNTS = mkOption { 89 119 type = types.bool; 90 120 default = false; ··· 141 171 }; 142 172 143 173 config = mkIf cfg.enable { 144 - meta.maintainers = with lib.maintainers; [ thoughtpolice ]; 174 + meta.maintainers = with lib.maintainers; [ thoughtpolice vifino ]; 145 175 146 176 environment.systemPackages = [ chronyPkg ]; 147 177 ··· 156 186 157 187 services.timesyncd.enable = mkForce false; 158 188 189 + # If chrony controls and tracks the RTC, writing it externally causes clock error. 190 + systemd.services.save-hwclock = lib.mkIf cfg.enableRTCTrimming { 191 + enable = lib.mkForce false; 192 + }; 193 + 159 194 systemd.services.systemd-timedated.environment = { SYSTEMD_TIMEDATED_NTP_SERVICES = "chronyd.service"; }; 160 195 161 196 systemd.tmpfiles.rules = [ 162 197 "d ${stateDir} 0750 chrony chrony - -" 163 198 "f ${driftFile} 0640 chrony chrony - -" 164 199 "f ${keyFile} 0640 chrony chrony - -" 200 + ] ++ lib.optionals cfg.enableRTCTrimming [ 201 + "f ${rtcFile} 0640 chrony chrony - -" 165 202 ]; 166 203 167 204 systemd.services.chronyd =
+12 -16
nixos/modules/services/networking/unbound.nix
··· 166 166 services.unbound.settings = { 167 167 server = { 168 168 directory = mkDefault cfg.stateDir; 169 - username = cfg.user; 169 + username = ''""''; 170 170 chroot = ''""''; 171 171 pidfile = ''""''; 172 172 # when running under systemd there is no need to daemonize ··· 245 245 NotifyAccess = "main"; 246 246 Type = "notify"; 247 247 248 - # FIXME: Which of these do we actually need, can we drop the chroot flag? 249 248 AmbientCapabilities = [ 249 + "CAP_NET_BIND_SERVICE" 250 + "CAP_NET_RAW" # needed if ip-transparent is set to true 251 + ]; 252 + CapabilityBoundingSet = [ 250 253 "CAP_NET_BIND_SERVICE" 251 254 "CAP_NET_RAW" 252 - "CAP_SETGID" 253 - "CAP_SETUID" 254 - "CAP_SYS_CHROOT" 255 - "CAP_SYS_RESOURCE" 256 255 ]; 257 256 258 257 User = cfg.user; ··· 266 265 ProtectControlGroups = true; 267 266 ProtectKernelModules = true; 268 267 ProtectSystem = "strict"; 268 + ProtectClock = true; 269 + ProtectHostname = true; 270 + ProtectProc = "invisible"; 271 + ProcSubset = "pid"; 272 + ProtectKernelLogs = true; 273 + ProtectKernelTunables = true; 269 274 RuntimeDirectory = "unbound"; 270 275 ConfigurationDirectory = "unbound"; 271 276 StateDirectory = "unbound"; 272 277 RestrictAddressFamilies = [ "AF_INET" "AF_INET6" "AF_NETLINK" "AF_UNIX" ]; 273 278 RestrictRealtime = true; 274 279 SystemCallArchitectures = "native"; 275 - SystemCallFilter = [ 276 - "~@clock" 277 - "@cpu-emulation" 278 - "@debug" 279 - "@keyring" 280 - "@module" 281 - "mount" 282 - "@obsolete" 283 - "@resources" 284 - ]; 280 + SystemCallFilter = [ "@system-service" ]; 285 281 RestrictNamespaces = true; 286 282 LockPersonality = true; 287 283 RestrictSUIDSGID = true;
+46 -36
nixos/modules/services/networking/unifi.nix
··· 1 1 { config, options, lib, pkgs, utils, ... }: 2 - with lib; 3 2 let 4 3 cfg = config.services.unifi; 5 4 stateDir = "/var/lib/unifi"; 6 - cmd = '' 7 - @${cfg.jrePackage}/bin/java java \ 8 - ${optionalString (lib.versionAtLeast (lib.getVersion cfg.jrePackage) "16") 9 - ("--add-opens java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.time=ALL-UNNAMED " 10 - + "--add-opens java.base/sun.security.util=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED " 11 - + "--add-opens java.rmi/sun.rmi.transport=ALL-UNNAMED")} \ 12 - ${optionalString (cfg.initialJavaHeapSize != null) "-Xms${(toString cfg.initialJavaHeapSize)}m"} \ 13 - ${optionalString (cfg.maximumJavaHeapSize != null) "-Xmx${(toString cfg.maximumJavaHeapSize)}m"} \ 14 - -jar ${stateDir}/lib/ace.jar 15 - ''; 5 + cmd = lib.escapeShellArgs ([ "@${cfg.jrePackage}/bin/java" "java" ] 6 + ++ lib.optionals (lib.versionAtLeast (lib.getVersion cfg.jrePackage) "16") [ 7 + "--add-opens=java.base/java.lang=ALL-UNNAMED" 8 + "--add-opens=java.base/java.time=ALL-UNNAMED" 9 + "--add-opens=java.base/sun.security.util=ALL-UNNAMED" 10 + "--add-opens=java.base/java.io=ALL-UNNAMED" 11 + "--add-opens=java.rmi/sun.rmi.transport=ALL-UNNAMED" 12 + ] 13 + ++ (lib.optional (cfg.initialJavaHeapSize != null) "-Xms${(toString cfg.initialJavaHeapSize)}m") 14 + ++ (lib.optional (cfg.maximumJavaHeapSize != null) "-Xmx${(toString cfg.maximumJavaHeapSize)}m") 15 + ++ cfg.extraJvmOptions 16 + ++ [ "-jar" "${stateDir}/lib/ace.jar" ]); 16 17 in 17 18 { 18 19 19 20 options = { 20 21 21 - services.unifi.enable = mkOption { 22 - type = types.bool; 22 + services.unifi.enable = lib.mkOption { 23 + type = lib.types.bool; 23 24 default = false; 24 25 description = lib.mdDoc '' 25 26 Whether or not to enable the unifi controller service. 26 27 ''; 27 28 }; 28 29 29 - services.unifi.jrePackage = mkOption { 30 - type = types.package; 30 + services.unifi.jrePackage = lib.mkOption { 31 + type = lib.types.package; 31 32 default = if (lib.versionAtLeast (lib.getVersion cfg.unifiPackage) "7.5") then pkgs.jdk17_headless else if (lib.versionAtLeast (lib.getVersion cfg.unifiPackage) "7.3") then pkgs.jdk11 else pkgs.jre8; 32 - defaultText = literalExpression ''if (lib.versionAtLeast (lib.getVersion cfg.unifiPackage) "7.5") then pkgs.jdk17_headless else if (lib.versionAtLeast (lib.getVersion cfg.unifiPackage) "7.3" then pkgs.jdk11 else pkgs.jre8''; 33 + defaultText = lib.literalExpression ''if (lib.versionAtLeast (lib.getVersion cfg.unifiPackage) "7.5") then pkgs.jdk17_headless else if (lib.versionAtLeast (lib.getVersion cfg.unifiPackage) "7.3" then pkgs.jdk11 else pkgs.jre8''; 33 34 description = lib.mdDoc '' 34 35 The JRE package to use. Check the release notes to ensure it is supported. 35 36 ''; 36 37 }; 37 38 38 - services.unifi.unifiPackage = mkOption { 39 - type = types.package; 39 + services.unifi.unifiPackage = lib.mkOption { 40 + type = lib.types.package; 40 41 default = pkgs.unifi5; 41 - defaultText = literalExpression "pkgs.unifi5"; 42 + defaultText = lib.literalExpression "pkgs.unifi5"; 42 43 description = lib.mdDoc '' 43 44 The unifi package to use. 44 45 ''; 45 46 }; 46 47 47 - services.unifi.mongodbPackage = mkOption { 48 - type = types.package; 48 + services.unifi.mongodbPackage = lib.mkOption { 49 + type = lib.types.package; 49 50 default = pkgs.mongodb-4_4; 50 - defaultText = literalExpression "pkgs.mongodb"; 51 + defaultText = lib.literalExpression "pkgs.mongodb"; 51 52 description = lib.mdDoc '' 52 53 The mongodb package to use. Please note: unifi7 officially only supports mongodb up until 3.6 but works with 4.4. 53 54 ''; 54 55 }; 55 56 56 - services.unifi.openFirewall = mkOption { 57 - type = types.bool; 57 + services.unifi.openFirewall = lib.mkOption { 58 + type = lib.types.bool; 58 59 default = false; 59 60 description = lib.mdDoc '' 60 61 Whether or not to open the minimum required ports on the firewall. ··· 65 66 ''; 66 67 }; 67 68 68 - services.unifi.initialJavaHeapSize = mkOption { 69 - type = types.nullOr types.int; 69 + services.unifi.initialJavaHeapSize = lib.mkOption { 70 + type = with lib.types; nullOr int; 70 71 default = null; 71 72 example = 1024; 72 73 description = lib.mdDoc '' ··· 75 76 ''; 76 77 }; 77 78 78 - services.unifi.maximumJavaHeapSize = mkOption { 79 - type = types.nullOr types.int; 79 + services.unifi.maximumJavaHeapSize = lib.mkOption { 80 + type = with lib.types; nullOr int; 80 81 default = null; 81 82 example = 4096; 82 83 description = lib.mdDoc '' ··· 85 86 ''; 86 87 }; 87 88 89 + services.unifi.extraJvmOptions = lib.mkOption { 90 + type = with lib.types; listOf str; 91 + default = [ ]; 92 + example = lib.literalExpression ''["-Xlog:gc"]''; 93 + description = lib.mdDoc '' 94 + Set extra options to pass to the JVM. 95 + ''; 96 + }; 97 + 88 98 }; 89 99 90 - config = mkIf cfg.enable { 100 + config = lib.mkIf cfg.enable { 91 101 92 102 users.users.unifi = { 93 103 isSystemUser = true; ··· 97 107 }; 98 108 users.groups.unifi = {}; 99 109 100 - networking.firewall = mkIf cfg.openFirewall { 110 + networking.firewall = lib.mkIf cfg.openFirewall { 101 111 # https://help.ubnt.com/hc/en-us/articles/218506997 102 112 allowedTCPPorts = [ 103 113 8080 # Port for UAP to inform controller. ··· 123 133 124 134 serviceConfig = { 125 135 Type = "simple"; 126 - ExecStart = "${(removeSuffix "\n" cmd)} start"; 127 - ExecStop = "${(removeSuffix "\n" cmd)} stop"; 136 + ExecStart = "${cmd} start"; 137 + ExecStop = "${cmd} stop"; 128 138 Restart = "on-failure"; 129 139 TimeoutSec = "5min"; 130 140 User = "unifi"; ··· 166 176 StateDirectory = "unifi"; 167 177 RuntimeDirectory = "unifi"; 168 178 LogsDirectory = "unifi"; 169 - CacheDirectory= "unifi"; 179 + CacheDirectory = "unifi"; 170 180 171 181 TemporaryFileSystem = [ 172 182 # required as we want to create bind mounts below ··· 176 186 # We must create the binary directories as bind mounts instead of symlinks 177 187 # This is because the controller resolves all symlinks to absolute paths 178 188 # to be used as the working directory. 179 - BindPaths = [ 189 + BindPaths = [ 180 190 "/var/log/unifi:${stateDir}/logs" 181 191 "/run/unifi:${stateDir}/run" 182 192 "${cfg.unifiPackage}/dl:${stateDir}/dl" ··· 194 204 195 205 }; 196 206 imports = [ 197 - (mkRemovedOptionModule [ "services" "unifi" "dataDir" ] "You should move contents of dataDir to /var/lib/unifi/data" ) 198 - (mkRenamedOptionModule [ "services" "unifi" "openPorts" ] [ "services" "unifi" "openFirewall" ]) 207 + (lib.mkRemovedOptionModule [ "services" "unifi" "dataDir" ] "You should move contents of dataDir to /var/lib/unifi/data") 208 + (lib.mkRenamedOptionModule [ "services" "unifi" "openPorts" ] [ "services" "unifi" "openFirewall" ]) 199 209 ]; 200 210 }
+31 -2
nixos/modules/services/web-apps/mastodon.nix
··· 30 30 PAPERCLIP_ROOT_PATH = "/var/lib/mastodon/public-system"; 31 31 PAPERCLIP_ROOT_URL = "/system"; 32 32 ES_ENABLED = if (cfg.elasticsearch.host != null) then "true" else "false"; 33 - ES_HOST = cfg.elasticsearch.host; 34 - ES_PORT = toString(cfg.elasticsearch.port); 35 33 36 34 TRUSTED_PROXY_IP = cfg.trustedProxy; 37 35 } 38 36 // lib.optionalAttrs (cfg.database.host != "/run/postgresql" && cfg.database.port != null) { DB_PORT = toString cfg.database.port; } 39 37 // lib.optionalAttrs cfg.smtp.authenticate { SMTP_LOGIN = cfg.smtp.user; } 38 + // lib.optionalAttrs (cfg.elasticsearch.host != null) { ES_HOST = cfg.elasticsearch.host; } 39 + // lib.optionalAttrs (cfg.elasticsearch.host != null) { ES_PORT = toString(cfg.elasticsearch.port); } 40 + // lib.optionalAttrs (cfg.elasticsearch.host != null) { ES_PRESET = cfg.elasticsearch.preset; } 41 + // lib.optionalAttrs (cfg.elasticsearch.user != null) { ES_USER = cfg.elasticsearch.user; } 40 42 // cfg.extraConfig; 41 43 42 44 systemCallsList = [ "@cpu-emulation" "@debug" "@keyring" "@ipc" "@mount" "@obsolete" "@privileged" "@setuid" ]; ··· 513 515 type = lib.types.port; 514 516 default = 9200; 515 517 }; 518 + 519 + preset = lib.mkOption { 520 + description = lib.mdDoc '' 521 + It controls the ElasticSearch indices configuration (number of shards and replica). 522 + ''; 523 + type = lib.types.enum [ "single_node_cluster" "small_cluster" "large_cluster" ]; 524 + default = "single_node_cluster"; 525 + example = "large_cluster"; 526 + }; 527 + 528 + user = lib.mkOption { 529 + description = lib.mdDoc "Used for optionally authenticating with Elasticsearch."; 530 + type = lib.types.nullOr lib.types.str; 531 + default = null; 532 + example = "elasticsearch-mastodon"; 533 + }; 534 + 535 + passwordFile = lib.mkOption { 536 + description = lib.mdDoc '' 537 + Path to file containing password for optionally authenticating with Elasticsearch. 538 + ''; 539 + type = lib.types.nullOr lib.types.path; 540 + default = null; 541 + example = "/var/lib/mastodon/secrets/elasticsearch-password"; 542 + }; 516 543 }; 517 544 518 545 package = lib.mkOption { ··· 665 692 DB_PASS="$(cat ${cfg.database.passwordFile})" 666 693 '' + lib.optionalString cfg.smtp.authenticate '' 667 694 SMTP_PASSWORD="$(cat ${cfg.smtp.passwordFile})" 695 + '' + lib.optionalString (cfg.elasticsearch.passwordFile != null) '' 696 + ES_PASS="$(cat ${cfg.elasticsearch.passwordFile})" 668 697 '' + '' 669 698 EOF 670 699 '';
+3 -3
pkgs/applications/audio/reaper/default.nix
··· 25 25 in 26 26 stdenv.mkDerivation rec { 27 27 pname = "reaper"; 28 - version = "7.03"; 28 + version = "7.05"; 29 29 30 30 src = fetchurl { 31 31 url = url_for_platform version stdenv.hostPlatform.qemuArch; 32 32 hash = { 33 - x86_64-linux = "sha256-74fQXN6a3SqNZIc2MkOf2iWwP6oQToklbb3kBuaku6s="; 34 - aarch64-linux = "sha256-BF7iN8NdejqwZzHTFdys422p3qoNIm20IpFuaHdUx3U="; 33 + x86_64-linux = "sha256-P/PnbJPr4ErDz5ho1/dLERhqkKjdetHzKpCpfVZAYb0="; 34 + aarch64-linux = "sha256-PdnBVlHwoEEv2SPq/p5oyiOlduCEqL35gAY+QIJU1Ys="; 35 35 }.${stdenv.hostPlatform.system}; 36 36 }; 37 37
+1 -2
pkgs/applications/editors/quartus-prime/default.nix
··· 65 65 progs_to_wrap=( 66 66 "${unwrapped}"/quartus/bin/* 67 67 "${unwrapped}"/quartus/sopc_builder/bin/qsys-{generate,edit,script} 68 - # Should we install all executables? 69 - "${unwrapped}"/modelsim_ase/bin/{vsim,vlog,vlib,vcom,vdel,vmap} 68 + "${unwrapped}"/modelsim_ase/bin/* 70 69 "${unwrapped}"/modelsim_ase/linuxaloem/lmutil 71 70 ) 72 71
+217 -217
pkgs/applications/editors/vim/plugins/generated.nix
··· 29 29 30 30 ChatGPT-nvim = buildVimPlugin { 31 31 pname = "ChatGPT.nvim"; 32 - version = "2023-10-16"; 32 + version = "2023-11-14"; 33 33 src = fetchFromGitHub { 34 34 owner = "jackMort"; 35 35 repo = "ChatGPT.nvim"; 36 - rev = "9f8062c7c40ec082c49f10e20818333a972b8063"; 37 - sha256 = "0k8y48rrzqf8r1mbyi370grgxa28612qwm67mwsk3zhnm3496060"; 36 + rev = "b50fdaf7836c18e0de2f1def0c1f39d56ef8bced"; 37 + sha256 = "1xmnzr1hccgdaadjc8i207bz44272ng5aaaypdacaag2pciapq3s"; 38 38 }; 39 39 meta.homepage = "https://github.com/jackMort/ChatGPT.nvim/"; 40 40 }; ··· 305 305 306 306 SchemaStore-nvim = buildVimPlugin { 307 307 pname = "SchemaStore.nvim"; 308 - version = "2023-11-12"; 308 + version = "2023-11-14"; 309 309 src = fetchFromGitHub { 310 310 owner = "b0o"; 311 311 repo = "SchemaStore.nvim"; 312 - rev = "a937222abcc2843c13f0a92576a215d391829811"; 313 - sha256 = "1snvkv6ba4kciz4xq2810ffsg4nnlzjp5vddj9x68q2bvssh8xlc"; 312 + rev = "357fe900baae09e1a3fcef913e49733d05d1f888"; 313 + sha256 = "1dk08b9sb825z18zcq3av3wr8c2xk5szakgiis5c25938jw0c1hl"; 314 314 }; 315 315 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 316 316 }; ··· 811 811 812 812 aurora = buildVimPlugin { 813 813 pname = "aurora"; 814 - version = "2023-11-12"; 814 + version = "2023-11-15"; 815 815 src = fetchFromGitHub { 816 816 owner = "ray-x"; 817 817 repo = "aurora"; 818 - rev = "b085a8952dfa3a0fe245a8aae2799236833001f1"; 819 - sha256 = "04pz7cn876dqysr8ky5wfffi6zybvzqz7hx59z7fbf59x4jzlpfg"; 818 + rev = "41ab08a3c56b2543263873e0f1a7d1f3267180fc"; 819 + sha256 = "1d0d9c89i56qh6rks1sp8fzw6a09jyvqclya70vwxdyayz48mspc"; 820 820 }; 821 821 meta.homepage = "https://github.com/ray-x/aurora/"; 822 822 }; ··· 2287 2287 2288 2288 conform-nvim = buildVimPlugin { 2289 2289 pname = "conform.nvim"; 2290 - version = "2023-11-12"; 2290 + version = "2023-11-15"; 2291 2291 src = fetchFromGitHub { 2292 2292 owner = "stevearc"; 2293 2293 repo = "conform.nvim"; 2294 - rev = "ca3dfba94600aa62bfc88ae37cbd4f17eaea2553"; 2295 - sha256 = "192r845pyszbl5jwxzs36pvjn4c4si4n0ywnqlia0w03vac4zz8g"; 2294 + rev = "4524a687107c6e598017dc7356b7cd1eb046aa71"; 2295 + sha256 = "02waplka03ghpxhwsgjf0z4iv6dqkcrg2whlha334982q57gml1w"; 2296 2296 fetchSubmodules = true; 2297 2297 }; 2298 2298 meta.homepage = "https://github.com/stevearc/conform.nvim/"; ··· 3046 3046 3047 3047 dropbar-nvim = buildVimPlugin { 3048 3048 pname = "dropbar.nvim"; 3049 - version = "2023-11-11"; 3049 + version = "2023-11-14"; 3050 3050 src = fetchFromGitHub { 3051 3051 owner = "Bekaboo"; 3052 3052 repo = "dropbar.nvim"; 3053 - rev = "c41904a3dcc103587b1157da13d565a0a5f9f3a5"; 3054 - sha256 = "0q0b5llz4jmpqlv4yx929wbhsnqjd62ng5kjmiwl3nylz1gndgmk"; 3053 + rev = "c8a209ee319bb93e41e4daebc02eb1614409c350"; 3054 + sha256 = "16kcqjzi68mmfic13jagv2glnlg9jg63n8ywixn60c9h8cd83gk5"; 3055 3055 }; 3056 3056 meta.homepage = "https://github.com/Bekaboo/dropbar.nvim/"; 3057 3057 }; ··· 3131 3131 3132 3132 efmls-configs-nvim = buildVimPlugin { 3133 3133 pname = "efmls-configs-nvim"; 3134 - version = "2023-10-23"; 3134 + version = "2023-11-13"; 3135 3135 src = fetchFromGitHub { 3136 3136 owner = "creativenull"; 3137 3137 repo = "efmls-configs-nvim"; 3138 - rev = "7db13d3f609640e9f12d7d6f1251e6a8f964f579"; 3139 - sha256 = "0ih5c2llvw5sx7qxck12v5blh9kgc7kv643cjkqzhlf9cplpvihp"; 3138 + rev = "9bc2196b24a38ebaa16fab25d63caa38565410f3"; 3139 + sha256 = "0pnmk7zgbqhxcnwby7x3s1ryb0wx53m2i9ifv5lc1yf7ns71kcz9"; 3140 3140 }; 3141 3141 meta.homepage = "https://github.com/creativenull/efmls-configs-nvim/"; 3142 3142 }; 3143 3143 3144 3144 elixir-tools-nvim = buildVimPlugin { 3145 3145 pname = "elixir-tools.nvim"; 3146 - version = "2023-11-10"; 3146 + version = "2023-11-14"; 3147 3147 src = fetchFromGitHub { 3148 3148 owner = "elixir-tools"; 3149 3149 repo = "elixir-tools.nvim"; 3150 - rev = "517ffd8366e4065ba66e0fb0c8e8ce192906db5d"; 3151 - sha256 = "1b38zb5nisyk5msz045vw5ibl35jd31zskj26qm93z8h29b3f0xa"; 3150 + rev = "8f573b0b089567aa9c544b029000c97e715e5f58"; 3151 + sha256 = "0rhnvlji6qvwj8mafgw2jwyx8ixmw4ir73gbywlvhpay3nzal8rb"; 3152 3152 }; 3153 3153 meta.homepage = "https://github.com/elixir-tools/elixir-tools.nvim/"; 3154 3154 }; ··· 3505 3505 3506 3506 formatter-nvim = buildVimPlugin { 3507 3507 pname = "formatter.nvim"; 3508 - version = "2023-09-21"; 3508 + version = "2023-11-13"; 3509 3509 src = fetchFromGitHub { 3510 3510 owner = "mhartington"; 3511 3511 repo = "formatter.nvim"; 3512 - rev = "34dcdfa0c75df667743b2a50dd99c84a557376f0"; 3513 - sha256 = "09dks17yi1cbk4gviv7kw7r04rcn8ridq75slm3vxf3jkid095ns"; 3512 + rev = "91651e6afaf6f73b0ffb8b433c06cd4e06f90403"; 3513 + sha256 = "1dsxlhsfhdd37l8z9pg2f5s0r4rafk6jl92wz1zcbhf6iswa6vy7"; 3514 3514 }; 3515 3515 meta.homepage = "https://github.com/mhartington/formatter.nvim/"; 3516 3516 }; ··· 3637 3637 3638 3638 fzf-lua = buildVimPlugin { 3639 3639 pname = "fzf-lua"; 3640 - version = "2023-11-08"; 3640 + version = "2023-11-13"; 3641 3641 src = fetchFromGitHub { 3642 3642 owner = "ibhagwan"; 3643 3643 repo = "fzf-lua"; 3644 - rev = "e1046726cf0cedf15ae0ff40537a421b79968c3e"; 3645 - sha256 = "0yh5yrlv0a73yjgwb23vl91lb38h121w4zxf9wavrk262qqkm903"; 3644 + rev = "03d8c35bf7b0541a877348cefc486dcd02142ec7"; 3645 + sha256 = "024cf9f73f90qfhcr3iqpcwwbxgm1k6a3hn7nl6ndci7mfbc4xc1"; 3646 3646 }; 3647 3647 meta.homepage = "https://github.com/ibhagwan/fzf-lua/"; 3648 3648 }; ··· 3865 3865 3866 3866 go-nvim = buildVimPlugin { 3867 3867 pname = "go.nvim"; 3868 - version = "2023-11-09"; 3868 + version = "2023-11-15"; 3869 3869 src = fetchFromGitHub { 3870 3870 owner = "ray-x"; 3871 3871 repo = "go.nvim"; 3872 - rev = "38f6402fa5362f2c31a31439294d9e24eda46b13"; 3873 - sha256 = "143wi05bh6fdcfcm7lrx4x2qh4srdw022c107476p3gcasswkihr"; 3872 + rev = "e749ff85ffec5a4ef11cb8252a2030be5726cb6c"; 3873 + sha256 = "0811lkf5cr9qsp4as3lqq04w545ygmxj1sad66gabvk8lcq7indj"; 3874 3874 }; 3875 3875 meta.homepage = "https://github.com/ray-x/go.nvim/"; 3876 3876 }; ··· 4080 4080 4081 4081 haskell-tools-nvim = buildNeovimPlugin { 4082 4082 pname = "haskell-tools.nvim"; 4083 - version = "2023-11-12"; 4083 + version = "2023-11-15"; 4084 4084 src = fetchFromGitHub { 4085 4085 owner = "MrcJkb"; 4086 4086 repo = "haskell-tools.nvim"; 4087 - rev = "3076ac21d6ffc6d0100eb5878a1b77c6a53d8871"; 4088 - sha256 = "0fc0npgmv6zxc3v5rzxh9lqa0868pyj4kcsyg8vw9qwl1waz6pa9"; 4087 + rev = "dc778953e98bf2667424d93dad82eefe319e0f7d"; 4088 + sha256 = "18qc0xcdzg914bis9djz1gd7csalqzvlqbv2nd7v02pm0gnw7fbj"; 4089 4089 }; 4090 4090 meta.homepage = "https://github.com/MrcJkb/haskell-tools.nvim/"; 4091 4091 }; ··· 4128 4128 4129 4129 headlines-nvim = buildVimPlugin { 4130 4130 pname = "headlines.nvim"; 4131 - version = "2023-07-27"; 4131 + version = "2023-11-13"; 4132 4132 src = fetchFromGitHub { 4133 4133 owner = "lukas-reineke"; 4134 4134 repo = "headlines.nvim"; 4135 - rev = "74a083a3c32a08be24f7dfcc6f448ecf47857f46"; 4136 - sha256 = "1ak7j159c0lv6pxiq4nld6svzx3465r6f1xwpawwrxlzhi5a14yz"; 4135 + rev = "e3d7bfdf40e41a020d966d35f8b48d75b90367d2"; 4136 + sha256 = "1acxyy5317qf4ry0z32xkk3aasp233nss0nyd8dzfkf631klvzi2"; 4137 4137 }; 4138 4138 meta.homepage = "https://github.com/lukas-reineke/headlines.nvim/"; 4139 4139 }; ··· 4271 4271 4272 4272 hover-nvim = buildVimPlugin { 4273 4273 pname = "hover.nvim"; 4274 - version = "2023-11-10"; 4274 + version = "2023-11-15"; 4275 4275 src = fetchFromGitHub { 4276 4276 owner = "lewis6991"; 4277 4277 repo = "hover.nvim"; 4278 - rev = "bb3dc1a9fa34c3577bca627b848625e94a93efe8"; 4279 - sha256 = "0ikqzwsfapyq84d2lfdz2cjl83ppxdlg32220fgsxjxad1d2qran"; 4278 + rev = "db0acd3a3445b26948e754dbb35a4ede10c31d30"; 4279 + sha256 = "16rph1lwqz4i78qz30l59kwzkndcsfpcc5dzcpw5rzlhq1zqcssy"; 4280 4280 }; 4281 4281 meta.homepage = "https://github.com/lewis6991/hover.nvim/"; 4282 4282 }; ··· 4355 4355 4356 4356 image-nvim = buildVimPlugin { 4357 4357 pname = "image.nvim"; 4358 - version = "2023-11-10"; 4358 + version = "2023-11-14"; 4359 4359 src = fetchFromGitHub { 4360 4360 owner = "3rd"; 4361 4361 repo = "image.nvim"; 4362 - rev = "f458f33e6ba0f3bfee233b90fb9318d42941d972"; 4363 - sha256 = "14kspw9s6wsgh0afyskkyqdbr68l7fiq75r1d22a3ffvc8m5a81w"; 4362 + rev = "4c1c903268b42a5b83caf229ddda7014a6a2e0bd"; 4363 + sha256 = "0q6315nx7dailivvncvg1hiwjk910djcwjm5arqd0nq7099d998p"; 4364 4364 }; 4365 4365 meta.homepage = "https://github.com/3rd/image.nvim/"; 4366 4366 }; ··· 4812 4812 4813 4813 lean-nvim = buildVimPlugin { 4814 4814 pname = "lean.nvim"; 4815 - version = "2023-11-12"; 4815 + version = "2023-11-13"; 4816 4816 src = fetchFromGitHub { 4817 4817 owner = "Julian"; 4818 4818 repo = "lean.nvim"; 4819 - rev = "a4868d184b0cf5114d5b0ee6aa13b1c5c4fb47fa"; 4820 - sha256 = "0q4nhp3bgbxfzg8x9grhpqfdvs7z6z4sxiz9vdm7q1ch9vq2g12q"; 4819 + rev = "2c896afc38b1e1d39118318d581850e2d3ad8e7f"; 4820 + sha256 = "1n9f4hhi55imk53hzzxsypxvsymg3avj9xnsxgr1bl12xyjbm9gk"; 4821 4821 }; 4822 4822 meta.homepage = "https://github.com/Julian/lean.nvim/"; 4823 4823 }; ··· 5196 5196 5197 5197 lsp-zero-nvim = buildVimPlugin { 5198 5198 pname = "lsp-zero.nvim"; 5199 - version = "2023-11-01"; 5199 + version = "2023-11-13"; 5200 5200 src = fetchFromGitHub { 5201 5201 owner = "VonHeikemen"; 5202 5202 repo = "lsp-zero.nvim"; 5203 - rev = "bb874e8d832b66fa734b7b048d52eb9ed736bdcf"; 5204 - sha256 = "0m3k26sn52l34gc39gj913470n35bcw6vbp4wciqdhg8l4slliav"; 5203 + rev = "8a9ee4e11a3e23101d1d1d11aaac3159ad925cc9"; 5204 + sha256 = "0snk9as2m5dz3m0iki4mrs8j5kd3zr0bfpwxi0i70y4hzxaqlwm1"; 5205 5205 }; 5206 5206 meta.homepage = "https://github.com/VonHeikemen/lsp-zero.nvim/"; 5207 5207 }; ··· 5267 5267 5268 5268 lspsaga-nvim = buildVimPlugin { 5269 5269 pname = "lspsaga.nvim"; 5270 - version = "2023-11-12"; 5270 + version = "2023-11-15"; 5271 5271 src = fetchFromGitHub { 5272 5272 owner = "nvimdev"; 5273 5273 repo = "lspsaga.nvim"; 5274 - rev = "283a3fc8e01191095d33c078031c577e8f9427b9"; 5275 - sha256 = "0r70gssbdkplmfacbcafr1d9hh0k61ybpcw65lplx7ya8q62yb0k"; 5274 + rev = "4d85d4ad3ef6ba9ad0fffe478f834c29b5bfa57c"; 5275 + sha256 = "07jpv90i1xrns6hy77pbyilrxh7ad8i1h0x2x0w6mmv395gysxvy"; 5276 5276 }; 5277 5277 meta.homepage = "https://github.com/nvimdev/lspsaga.nvim/"; 5278 5278 }; ··· 5315 5315 5316 5316 luasnip = buildVimPlugin { 5317 5317 pname = "luasnip"; 5318 - version = "2023-11-10"; 5318 + version = "2023-11-13"; 5319 5319 src = fetchFromGitHub { 5320 5320 owner = "l3mon4d3"; 5321 5321 repo = "luasnip"; 5322 - rev = "46c91e814732c1630b8a8b50d04acbf54b8320fa"; 5323 - sha256 = "1bx2sjqr2rvyl2zyc4rymg1sl67gw542vfpl857dx7yhabr9xj4d"; 5322 + rev = "1f4ad8bb72bdeb60975e98652636b991a9b7475d"; 5323 + sha256 = "174pwxjdnb1gxxrnvz6zplr5r2cwjq79si1ns1ymziq4lrxjnni8"; 5324 5324 fetchSubmodules = true; 5325 5325 }; 5326 5326 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; ··· 5424 5424 5425 5425 mason-lspconfig-nvim = buildVimPlugin { 5426 5426 pname = "mason-lspconfig.nvim"; 5427 - version = "2023-11-09"; 5427 + version = "2023-11-14"; 5428 5428 src = fetchFromGitHub { 5429 5429 owner = "williamboman"; 5430 5430 repo = "mason-lspconfig.nvim"; 5431 - rev = "6eb8cae80f2e4322ec82cd9f8fa423f6d1eb02c3"; 5432 - sha256 = "143yq3hydkp54m2mw04rirqs7zgl7wp09jdlq5q9nb4v7ll7nmgg"; 5431 + rev = "faeb361507aa1ef1b0e5645781e2aa0d36a4aa84"; 5432 + sha256 = "1kq88b7q8kskigpizk432h4r5gf8k87f3zrnxz2pyvrwwg7vpkmp"; 5433 5433 }; 5434 5434 meta.homepage = "https://github.com/williamboman/mason-lspconfig.nvim/"; 5435 5435 }; ··· 5544 5544 5545 5545 mini-nvim = buildVimPlugin { 5546 5546 pname = "mini.nvim"; 5547 - version = "2023-11-11"; 5547 + version = "2023-11-14"; 5548 5548 src = fetchFromGitHub { 5549 5549 owner = "echasnovski"; 5550 5550 repo = "mini.nvim"; 5551 - rev = "f2b89efbbad1943657e43f474fe308fceb63597e"; 5552 - sha256 = "1yyqb3plmzmfpidcij66j3mcg37ysf3bs1s5wyyi7hxqw6hqqhk4"; 5551 + rev = "abd7aa3ec50350ec3c986fcdd7328e3d23948b89"; 5552 + sha256 = "188dqyddsj2rzz212n8kswxqn8mxa0n38j681r912z4yf4vbmjqi"; 5553 5553 }; 5554 5554 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 5555 5555 }; ··· 5604 5604 5605 5605 modicator-nvim = buildVimPlugin { 5606 5606 pname = "modicator.nvim"; 5607 - version = "2023-11-11"; 5607 + version = "2023-11-13"; 5608 5608 src = fetchFromGitHub { 5609 5609 owner = "mawkler"; 5610 5610 repo = "modicator.nvim"; 5611 - rev = "3918f17ab136a469a81881a194068609f0a878d4"; 5612 - sha256 = "1xkfg8hmglyx8y8b2hlv40n904naiar1abb29r2lvdwri8aksql5"; 5611 + rev = "d22c02c007170ab432ca3e166a1da56297767e87"; 5612 + sha256 = "0pvx8bsl4623mx4fgym993dnws62vfnaz90mrcfp7kska3p1d4p2"; 5613 5613 }; 5614 5614 meta.homepage = "https://github.com/mawkler/modicator.nvim/"; 5615 5615 }; ··· 5628 5628 5629 5629 molten-nvim = buildVimPlugin { 5630 5630 pname = "molten-nvim"; 5631 - version = "2023-11-10"; 5631 + version = "2023-11-14"; 5632 5632 src = fetchFromGitHub { 5633 5633 owner = "benlubas"; 5634 5634 repo = "molten-nvim"; 5635 - rev = "29763c6d49eaa8d0c9c9093a88fb38db34ba4875"; 5636 - sha256 = "1hxr0grv8fcaik3kbcd323jz5zgqc0k353n7lrrs0ka2qicz94k5"; 5635 + rev = "91ec70b710bc8e1de59352b1ecfb4cdb6e786c92"; 5636 + sha256 = "0h3xg8n5asya98lyly8m2zgkkg1llxji3fx6fd4i6yym42c3awv0"; 5637 5637 }; 5638 5638 meta.homepage = "https://github.com/benlubas/molten-nvim/"; 5639 5639 }; ··· 5940 5940 5941 5941 neo-tree-nvim = buildVimPlugin { 5942 5942 pname = "neo-tree.nvim"; 5943 - version = "2023-11-11"; 5943 + version = "2023-11-15"; 5944 5944 src = fetchFromGitHub { 5945 5945 owner = "nvim-neo-tree"; 5946 5946 repo = "neo-tree.nvim"; 5947 - rev = "0f6e7acfd86b052acf78baccba04d5c61dcbbc0d"; 5948 - sha256 = "0glq1ywx1q8sqs3fkq071cqmwa6sn18glx1l0gmyvaxr0q9bijmh"; 5947 + rev = "f86e871584bd3c5a00b4ff8344305889eb52ebff"; 5948 + sha256 = "16v172gmr3clr8mnw1v767ln6qidalp7qv6xsh10ylnkzygz9lin"; 5949 5949 }; 5950 5950 meta.homepage = "https://github.com/nvim-neo-tree/neo-tree.nvim/"; 5951 5951 }; ··· 5988 5988 5989 5989 neodev-nvim = buildVimPlugin { 5990 5990 pname = "neodev.nvim"; 5991 - version = "2023-11-12"; 5991 + version = "2023-11-15"; 5992 5992 src = fetchFromGitHub { 5993 5993 owner = "folke"; 5994 5994 repo = "neodev.nvim"; 5995 - rev = "f93a984ee75ba6d532d85419619cc6e91d954ee9"; 5996 - sha256 = "0aisb4kwjys02za4rp2ai9qk64f3rx8xwwz1y20ki9q6729623d5"; 5995 + rev = "b2881eeb395d2b268de5fe9b5e201a8f1816beb8"; 5996 + sha256 = "02wnkbcvcpsz6dy855c1c8l0cz7178qaqddvmmgqfpzi1dfxn4q9"; 5997 5997 }; 5998 5998 meta.homepage = "https://github.com/folke/neodev.nvim/"; 5999 5999 }; ··· 6024 6024 6025 6025 neogit = buildVimPlugin { 6026 6026 pname = "neogit"; 6027 - version = "2023-11-08"; 6027 + version = "2023-11-15"; 6028 6028 src = fetchFromGitHub { 6029 6029 owner = "NeogitOrg"; 6030 6030 repo = "neogit"; 6031 - rev = "d3c5687a78cffc25026ff31d2fcbd61a2a3e067f"; 6032 - sha256 = "02yrcxmgx7va1h2nnabazwm7bwzffl5cmm4cbjssdhpsg6ahb2yk"; 6031 + rev = "296570589180d9428539f5ac099d7c8b9f4ad489"; 6032 + sha256 = "10b9jl17kb6lnlhgm7lblf08qh3q8ymhzzv7w1p4hz786hrcgi53"; 6033 6033 }; 6034 6034 meta.homepage = "https://github.com/NeogitOrg/neogit/"; 6035 6035 }; ··· 6096 6096 6097 6097 neorg = buildVimPlugin { 6098 6098 pname = "neorg"; 6099 - version = "2023-11-08"; 6099 + version = "2023-11-15"; 6100 6100 src = fetchFromGitHub { 6101 6101 owner = "nvim-neorg"; 6102 6102 repo = "neorg"; 6103 - rev = "55090798a2eed2dd00fc1b2774bc6bf309a3bd0b"; 6104 - sha256 = "1p5372c7n9ihyk8dnkwj4fb1as7q2md5xhqy5j17q7nviskvzq0s"; 6103 + rev = "d5f3ad064918cf19dbbdfa77817d162d4de6a461"; 6104 + sha256 = "1qaghcfmnyv8hcmnbdrz12x6m92lxl9n3mxbf6vqmqi9ivdr63h1"; 6105 6105 }; 6106 6106 meta.homepage = "https://github.com/nvim-neorg/neorg/"; 6107 6107 }; ··· 6168 6168 6169 6169 neotest = buildVimPlugin { 6170 6170 pname = "neotest"; 6171 - version = "2023-11-12"; 6171 + version = "2023-11-13"; 6172 6172 src = fetchFromGitHub { 6173 6173 owner = "nvim-neotest"; 6174 6174 repo = "neotest"; 6175 - rev = "009328955066ae6c170d24bb0de5f168d8760ff8"; 6176 - sha256 = "1i6lkbq5iadn9as9fy9lw1m1aw3vj00j6hxrrflgpnf3wqkvxb6a"; 6175 + rev = "d424d262d01bccc1e0b038c9a7220a755afd2a1f"; 6176 + sha256 = "1sg8m77hik1gffrqy4038sivhr8yhg536dp6yr5gbnbrjvc35dgm"; 6177 6177 }; 6178 6178 meta.homepage = "https://github.com/nvim-neotest/neotest/"; 6179 6179 }; ··· 6216 6216 6217 6217 neotest-elixir = buildVimPlugin { 6218 6218 pname = "neotest-elixir"; 6219 - version = "2023-08-23"; 6219 + version = "2023-11-14"; 6220 6220 src = fetchFromGitHub { 6221 6221 owner = "jfpedroza"; 6222 6222 repo = "neotest-elixir"; 6223 - rev = "7904f8c0fedbe615ee3d75beb810d3e1426b05c6"; 6224 - sha256 = "13lsns5wdkp9ay4a11pp6hvhd8isqd5vzag89alwlazsdnmirmvd"; 6223 + rev = "0e85312566c6ef0aa7456503e4038cc5541e7df4"; 6224 + sha256 = "0jcbmh0w8zvhdkk111cvsb56j67bc2l0vf7dcyswn50p96djq5g0"; 6225 6225 fetchSubmodules = true; 6226 6226 }; 6227 6227 meta.homepage = "https://github.com/jfpedroza/neotest-elixir/"; ··· 6241 6241 6242 6242 neotest-haskell = buildVimPlugin { 6243 6243 pname = "neotest-haskell"; 6244 - version = "2023-11-12"; 6244 + version = "2023-11-14"; 6245 6245 src = fetchFromGitHub { 6246 6246 owner = "MrcJkb"; 6247 6247 repo = "neotest-haskell"; 6248 - rev = "6f4b11212ef7a83889a3b488f562242198ddae4a"; 6249 - sha256 = "00h283dx9k9bdd89379q200h5kg7x02fk7cb6fac6ybnnbvp53pm"; 6248 + rev = "d0d9fa025056d4a8124e7bf34a3b0b7942870c84"; 6249 + sha256 = "1f4w2lyjj19piw0pn9456ilnw4g7086641z73f6msvy6fnxggp6l"; 6250 6250 }; 6251 6251 meta.homepage = "https://github.com/MrcJkb/neotest-haskell/"; 6252 6252 }; 6253 6253 6254 6254 neotest-jest = buildVimPlugin { 6255 6255 pname = "neotest-jest"; 6256 - version = "2023-10-11"; 6256 + version = "2023-11-13"; 6257 6257 src = fetchFromGitHub { 6258 6258 owner = "nvim-neotest"; 6259 6259 repo = "neotest-jest"; 6260 - rev = "65ab61c77aa1c245f16982ffe1a4d31589e18023"; 6261 - sha256 = "168597vm0645c3n6lijw18308kn6lhjp5k9jcnlc0jg640znczsf"; 6260 + rev = "d8b00a91e440474da20a8e9acdb0d72051078b8b"; 6261 + sha256 = "1z400jfjy3nqxn8024kbampnbnawzxacqz7k3mv2l72brgyp62bn"; 6262 6262 }; 6263 6263 meta.homepage = "https://github.com/nvim-neotest/neotest-jest/"; 6264 6264 }; ··· 6325 6325 6326 6326 neotest-rust = buildVimPlugin { 6327 6327 pname = "neotest-rust"; 6328 - version = "2023-10-09"; 6328 + version = "2023-11-13"; 6329 6329 src = fetchFromGitHub { 6330 6330 owner = "rouge8"; 6331 6331 repo = "neotest-rust"; 6332 - rev = "03e036a310379f132d4e39387e9076396132ce3f"; 6333 - sha256 = "1s3816q710qymv62zz6vld178lmfqgfh8wq5s0hcc26rpk8ap85h"; 6332 + rev = "f4e58d5278344440f65c5a5177f16711337e44f7"; 6333 + sha256 = "1ysg0vh7kw1sqpzdhgy13j9aljwk47jh5ss2y3k54j8a1qrx5c3j"; 6334 6334 }; 6335 6335 meta.homepage = "https://github.com/rouge8/neotest-rust/"; 6336 6336 }; ··· 6433 6433 6434 6434 nerdtree = buildVimPlugin { 6435 6435 pname = "nerdtree"; 6436 - version = "2023-10-25"; 6436 + version = "2023-11-15"; 6437 6437 src = fetchFromGitHub { 6438 6438 owner = "preservim"; 6439 6439 repo = "nerdtree"; 6440 - rev = "4c588f182090e01edadeecb127a353cb08d1e39f"; 6441 - sha256 = "1pibwk0vrb10h2r9x2s4ja54ballc548wb6cqdbdpcjfz4z5j14z"; 6440 + rev = "0cb04e9245b000daf32f04aae5f606011a6aa3b5"; 6441 + sha256 = "1rws27wc2l3qahvbfd5b2i1js9kwldxxsfsn0abah96q2m1i3q85"; 6442 6442 }; 6443 6443 meta.homepage = "https://github.com/preservim/nerdtree/"; 6444 6444 }; ··· 6601 6601 6602 6602 none-ls-nvim = buildVimPlugin { 6603 6603 pname = "none-ls.nvim"; 6604 - version = "2023-10-28"; 6604 + version = "2023-11-15"; 6605 6605 src = fetchFromGitHub { 6606 6606 owner = "nvimtools"; 6607 6607 repo = "none-ls.nvim"; 6608 - rev = "b8fd44ee1616e6a9c995ed5f94ad9f1721d303ef"; 6609 - sha256 = "0wa15f4p6ggngc8jkjfi4s5l0g6fm9va49825khnw94my45b5h5g"; 6608 + rev = "e5abf91b410e28e823b26fe9141287fb416d2dee"; 6609 + sha256 = "1bx8aan45sipqpg0yh4idagqhgn085dnnzgb051jzdwd6ja0hisv"; 6610 6610 }; 6611 6611 meta.homepage = "https://github.com/nvimtools/none-ls.nvim/"; 6612 6612 }; ··· 6697 6697 6698 6698 nvchad = buildVimPlugin { 6699 6699 pname = "nvchad"; 6700 - version = "2023-11-08"; 6700 + version = "2023-11-13"; 6701 6701 src = fetchFromGitHub { 6702 6702 owner = "nvchad"; 6703 6703 repo = "nvchad"; 6704 - rev = "ff99797242f37dbc118baad3d31aa125e08da90f"; 6705 - sha256 = "1dnsrk07q3va0p52xq6qsqh0iqxfgxx45xnw0cxhya732i4jlbdk"; 6704 + rev = "9d37797e6f9856ef25cfa266cff43f764e828827"; 6705 + sha256 = "0a57bswr6w0nmxj1fmvn24w60ibgh1gyqx586qhz1fq5i4jfjva8"; 6706 6706 }; 6707 6707 meta.homepage = "https://github.com/nvchad/nvchad/"; 6708 6708 }; ··· 6961 6961 6962 6962 nvim-dap-python = buildVimPlugin { 6963 6963 pname = "nvim-dap-python"; 6964 - version = "2023-05-23"; 6964 + version = "2023-11-15"; 6965 6965 src = fetchFromGitHub { 6966 6966 owner = "mfussenegger"; 6967 6967 repo = "nvim-dap-python"; 6968 - rev = "37b4cba02e337a95cb62ad1609b3d1dccb2e5d42"; 6969 - sha256 = "186advam53j32xgiwg05wbgq3ab8zzkq3lnam6gad9101qp4wgf1"; 6968 + rev = "e0be843877e7ae756ef1ee7a441ca0b9e1677da9"; 6969 + sha256 = "0xib2xayrnf96r07rd7xdahpza41155npkdjxmr48h52gjj15nbl"; 6970 6970 }; 6971 6971 meta.homepage = "https://github.com/mfussenegger/nvim-dap-python/"; 6972 6972 }; ··· 7176 7176 7177 7177 nvim-lilypond-suite = buildVimPlugin { 7178 7178 pname = "nvim-lilypond-suite"; 7179 - version = "2023-11-09"; 7179 + version = "2023-11-15"; 7180 7180 src = fetchFromGitHub { 7181 7181 owner = "martineausimon"; 7182 7182 repo = "nvim-lilypond-suite"; 7183 - rev = "002fa927c9567ba70ab69225fd49f1e70c1290f8"; 7184 - sha256 = "1358imc5s0h0z4lyh2zyyiahcy5dl0jlkpc6iscfij6irlqv4jzr"; 7183 + rev = "b1db01865791b324918a7835984c0f96112df37c"; 7184 + sha256 = "1smxkw2pkmcbhypmcmssbnq0cpi2jsq7ihsm9nzp7mpvxz21gd34"; 7185 7185 }; 7186 7186 meta.homepage = "https://github.com/martineausimon/nvim-lilypond-suite/"; 7187 7187 }; 7188 7188 7189 7189 nvim-lint = buildVimPlugin { 7190 7190 pname = "nvim-lint"; 7191 - version = "2023-11-10"; 7191 + version = "2023-11-13"; 7192 7192 src = fetchFromGitHub { 7193 7193 owner = "mfussenegger"; 7194 7194 repo = "nvim-lint"; 7195 - rev = "775ae0e5a451dd6c5d15de7a828ea72d2c54e8cf"; 7196 - sha256 = "1ldbq4qfajysfrplawba8jv6v6lcvnvfz18pas198npn2gp9kgna"; 7195 + rev = "4f2d968a827d86bb40b7b1fad28c11f7b764fef3"; 7196 + sha256 = "0i60lyzhhnpzxi7k5dy4xacsg8mmc7ac8f8xwlbv32h8jqrblsab"; 7197 7197 }; 7198 7198 meta.homepage = "https://github.com/mfussenegger/nvim-lint/"; 7199 7199 }; ··· 7224 7224 7225 7225 nvim-lspconfig = buildVimPlugin { 7226 7226 pname = "nvim-lspconfig"; 7227 - version = "2023-11-12"; 7227 + version = "2023-11-15"; 7228 7228 src = fetchFromGitHub { 7229 7229 owner = "neovim"; 7230 7230 repo = "nvim-lspconfig"; 7231 - rev = "90a28fd7637b66e055af62387ecee06f7cbd3173"; 7232 - sha256 = "0vzvbw8fh2j1l1sjkk5dfj5l5yghp5fk9pparvar1cyadpa6mcsh"; 7231 + rev = "d5d7412ff267b92a11a94e6559d5507c43670a52"; 7232 + sha256 = "1jqpsj2in41fv148zdvddpcwjzmll5kchzx9mnbas685xmzc4h0k"; 7233 7233 }; 7234 7234 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 7235 7235 }; ··· 7284 7284 7285 7285 nvim-metals = buildVimPlugin { 7286 7286 pname = "nvim-metals"; 7287 - version = "2023-10-25"; 7287 + version = "2023-11-15"; 7288 7288 src = fetchFromGitHub { 7289 7289 owner = "scalameta"; 7290 7290 repo = "nvim-metals"; 7291 - rev = "6692a6512a53b494984eac247ced40e8165dc2ca"; 7292 - sha256 = "0060s3w35r03h7g3dykx1dj31ns9dsmnlxm2rz100y7mvbxi7qcc"; 7291 + rev = "96d0c8ded6c2b9e66340c1e00d5a62acec112711"; 7292 + sha256 = "1ml08is8vn49d7bbzlhfdxfa6q8c9hjnfxrsaxqbgkhgnw7nakq5"; 7293 7293 }; 7294 7294 meta.homepage = "https://github.com/scalameta/nvim-metals/"; 7295 7295 }; ··· 7452 7452 7453 7453 nvim-scrollview = buildVimPlugin { 7454 7454 pname = "nvim-scrollview"; 7455 - version = "2023-11-12"; 7455 + version = "2023-11-13"; 7456 7456 src = fetchFromGitHub { 7457 7457 owner = "dstein64"; 7458 7458 repo = "nvim-scrollview"; 7459 - rev = "c9b5422a845bff25ddeb8057b42afbf0f7b25e32"; 7460 - sha256 = "08x62lpjir0zhmscln14id0lz59wqmvdixacz7z9ghi00r7lrwxf"; 7459 + rev = "642068c7d6d98e019a3e1db7c7b4876373347730"; 7460 + sha256 = "1zi3kvyxb3zyni5dj9kmi296r303bskpcdmsi3a4r9a3pryl4lhr"; 7461 7461 }; 7462 7462 meta.homepage = "https://github.com/dstein64/nvim-scrollview/"; 7463 7463 }; ··· 7476 7476 7477 7477 nvim-snippy = buildVimPlugin { 7478 7478 pname = "nvim-snippy"; 7479 - version = "2023-11-11"; 7479 + version = "2023-11-12"; 7480 7480 src = fetchFromGitHub { 7481 7481 owner = "dcampos"; 7482 7482 repo = "nvim-snippy"; 7483 - rev = "9192f310afe34ab925d61add187a5ff278879333"; 7484 - sha256 = "1wcw0xjh44ik1j9gaalrwl86d7mp4v5hcdas3qy3bg8w8aqvgwaw"; 7483 + rev = "7c8f18e90cad4f56c4e22a49101668735639f286"; 7484 + sha256 = "1mfjnzfg4z5hzribzadlmgjjihh5dx55swjrjljmgsbj7jn4nqws"; 7485 7485 }; 7486 7486 meta.homepage = "https://github.com/dcampos/nvim-snippy/"; 7487 7487 }; ··· 7500 7500 7501 7501 nvim-spectre = buildVimPlugin { 7502 7502 pname = "nvim-spectre"; 7503 - version = "2023-11-12"; 7503 + version = "2023-11-15"; 7504 7504 src = fetchFromGitHub { 7505 7505 owner = "nvim-pack"; 7506 7506 repo = "nvim-spectre"; 7507 - rev = "07201e6bd3b43a193d891cec844dfd1f23e775d1"; 7508 - sha256 = "0rpp9ddyq7yd462mlf99khrpway04vi892538ss8zqmz2lazchrn"; 7507 + rev = "a18a58015b46f02b4fe537ebfffd82e46110ff24"; 7508 + sha256 = "0ry2scnw8hzd3snjhbp71zc6mnna2bwn6icr3frsgdj1p5rfissn"; 7509 7509 }; 7510 7510 meta.homepage = "https://github.com/nvim-pack/nvim-spectre/"; 7511 7511 }; ··· 7524 7524 7525 7525 nvim-surround = buildVimPlugin { 7526 7526 pname = "nvim-surround"; 7527 - version = "2023-11-11"; 7527 + version = "2023-11-13"; 7528 7528 src = fetchFromGitHub { 7529 7529 owner = "kylechui"; 7530 7530 repo = "nvim-surround"; 7531 - rev = "cfa2da7f469f1e759f2a961bc25fa4ccfe1795c2"; 7532 - sha256 = "0r1nm8l736vvrxhqnszk65siphkn59473y88qahxzhfj4b98qgd3"; 7531 + rev = "0855a89e00a5822c3a482a82e5223fcf2e9ede13"; 7532 + sha256 = "09riinjjh96nrs357ay886j8gs6cgkhj3zwngm44pf8p04w2w81n"; 7533 7533 }; 7534 7534 meta.homepage = "https://github.com/kylechui/nvim-surround/"; 7535 7535 }; ··· 7576 7576 src = fetchFromGitHub { 7577 7577 owner = "nvim-tree"; 7578 7578 repo = "nvim-tree.lua"; 7579 - rev = "874ae6e9445a5eb5ba430e5fd10212450a261ad7"; 7580 - sha256 = "0dn56zpbjxggcsbm7z6f1b4kcwsspj09ynzjkl8bq0l45qf3v50i"; 7579 + rev = "80cfeadf179d5cba76f0f502c71dbcff1b515cd8"; 7580 + sha256 = "0fmmfhzl8igk3kpk34cs0wvw4lyhjvc83cdk225gs06awqr24i3m"; 7581 7581 }; 7582 7582 meta.homepage = "https://github.com/nvim-tree/nvim-tree.lua/"; 7583 7583 }; 7584 7584 7585 7585 nvim-treesitter = buildVimPlugin { 7586 7586 pname = "nvim-treesitter"; 7587 - version = "2023-11-11"; 7587 + version = "2023-11-15"; 7588 7588 src = fetchFromGitHub { 7589 7589 owner = "nvim-treesitter"; 7590 7590 repo = "nvim-treesitter"; 7591 - rev = "075a64addc33390028ea124a1046a43497f05cd1"; 7592 - sha256 = "1rkwc97h9pnxrzqq1bp72cr6182rvh0bi3c9dfq91q51g70a651h"; 7591 + rev = "8b9f99660294dcd11d42572c84ee33a1e284f70d"; 7592 + sha256 = "09mkkkirp922018dvci32p9mfsa2fqkv9b6nd1srwicxydx1wzp7"; 7593 7593 }; 7594 7594 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 7595 7595 }; ··· 7715 7715 7716 7716 nvim-ufo = buildVimPlugin { 7717 7717 pname = "nvim-ufo"; 7718 - version = "2023-11-12"; 7718 + version = "2023-11-15"; 7719 7719 src = fetchFromGitHub { 7720 7720 owner = "kevinhwang91"; 7721 7721 repo = "nvim-ufo"; 7722 - rev = "068053c5921b04d4ecb5fafc2e71b4f04cc35e80"; 7723 - sha256 = "08kgrmcxv3rcf8lmvh4fif5njicvsirgsb8v48zhcg1ppn36c412"; 7722 + rev = "a6132d058f23d15686f07b8e1ca252e060a0e0ce"; 7723 + sha256 = "0ijlsw9x3g2h48wvcagp1h4pvyjrrlc1cn0jni5pqs6fqjlcbypk"; 7724 7724 }; 7725 7725 meta.homepage = "https://github.com/kevinhwang91/nvim-ufo/"; 7726 7726 }; ··· 7739 7739 7740 7740 nvim-web-devicons = buildVimPlugin { 7741 7741 pname = "nvim-web-devicons"; 7742 - version = "2023-11-11"; 7742 + version = "2023-11-13"; 7743 7743 src = fetchFromGitHub { 7744 7744 owner = "nvim-tree"; 7745 7745 repo = "nvim-web-devicons"; 7746 - rev = "3fafeea5f339223e888fd15eb4032260849cb038"; 7747 - sha256 = "14vwqj74icbh1zk23k833jfprh4bdb7yq850c4rn7cs6bl06nwrp"; 7746 + rev = "11eb26fc166742db8d1e8a6f5a7de9df37b09aae"; 7747 + sha256 = "0xshsc1wxgsvdb09klsddz0ipf43vimsya4rc4zi22xxjgj40dyh"; 7748 7748 }; 7749 7749 meta.homepage = "https://github.com/nvim-tree/nvim-web-devicons/"; 7750 7750 }; ··· 7847 7847 7848 7848 octo-nvim = buildVimPlugin { 7849 7849 pname = "octo.nvim"; 7850 - version = "2023-11-09"; 7850 + version = "2023-11-13"; 7851 7851 src = fetchFromGitHub { 7852 7852 owner = "pwntester"; 7853 7853 repo = "octo.nvim"; 7854 - rev = "154721cebecde111242377901760b6d175e49d84"; 7855 - sha256 = "06503m702f9ff59vpqz7al7my90k9rca1ll7mvwzdfrsfllkpggf"; 7854 + rev = "5d6bed660ff18878a9096b3acef9c444b85021ac"; 7855 + sha256 = "1y1d1fa5m5wch2daskshmwm934qgbaca9s1340y36bhysbdd7ifj"; 7856 7856 }; 7857 7857 meta.homepage = "https://github.com/pwntester/octo.nvim/"; 7858 7858 }; 7859 7859 7860 7860 oil-nvim = buildVimPlugin { 7861 7861 pname = "oil.nvim"; 7862 - version = "2023-11-10"; 7862 + version = "2023-11-15"; 7863 7863 src = fetchFromGitHub { 7864 7864 owner = "stevearc"; 7865 7865 repo = "oil.nvim"; 7866 - rev = "3727410e4875ad8ba339c585859a9391d643b9ed"; 7867 - sha256 = "0h9d24y213bwr0nh3kalmfvsjiqkj3jjq9c81x3vkdy6g12kfdxm"; 7866 + rev = "af04969c437e0c46a2b3c86d7892458e878ecc40"; 7867 + sha256 = "17mi1hs3jmmrxqxhykqf0xj91ssxzzzig7gmdlyak6pgwln2ziyr"; 7868 7868 fetchSubmodules = true; 7869 7869 }; 7870 7870 meta.homepage = "https://github.com/stevearc/oil.nvim/"; ··· 7924 7924 src = fetchFromGitHub { 7925 7925 owner = "olimorris"; 7926 7926 repo = "onedarkpro.nvim"; 7927 - rev = "f3a7349156453500f1c053a1f8034a3975b1d793"; 7928 - sha256 = "0xr665dmv8h87c681f114d3vmb9rh0g7map5m70gixdnd60v009p"; 7927 + rev = "89888840309a813ef6911e0150a0c6aa66c2ab5c"; 7928 + sha256 = "0648dilrk31yn2c8s581c62j9jk30cnxf6h4f2pcddygs308pqn8"; 7929 7929 }; 7930 7930 meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; 7931 7931 }; ··· 8511 8511 8512 8512 rainbow-delimiters-nvim = buildVimPlugin { 8513 8513 pname = "rainbow-delimiters.nvim"; 8514 - version = "2023-11-11"; 8514 + version = "2023-11-15"; 8515 8515 src = fetchgit { 8516 8516 url = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim"; 8517 - rev = "a5e8fb4960f905a52031b28113cf43088cfeae22"; 8518 - sha256 = "0d3yfy7a7jc0g4y3x6fff2skbkhp3hjjk0p4q2a66s6rm626pg6z"; 8517 + rev = "ffb31befabb165812360ba70072e04c2101317d7"; 8518 + sha256 = "1a4gwggn131zyiigv7zvpbriqs2f2z7kslds9xpc6rgskd873kkd"; 8519 8519 }; 8520 8520 meta.homepage = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim"; 8521 8521 }; ··· 8762 8762 8763 8763 rustaceanvim = buildNeovimPlugin { 8764 8764 pname = "rustaceanvim"; 8765 - version = "2023-11-12"; 8765 + version = "2023-11-15"; 8766 8766 src = fetchFromGitHub { 8767 8767 owner = "mrcjkb"; 8768 8768 repo = "rustaceanvim"; 8769 - rev = "36cbeceb6602ce97f04d5526fd238957b77dd263"; 8770 - sha256 = "108zzz088ll08h55ij0bb81ak53cyxbzfigkfvj31c8v2i3j9jr9"; 8769 + rev = "3f0217642bbcb4179772c2bfd124fb808371be2e"; 8770 + sha256 = "0lqvggbrfmf96cz6q2jjdic67m9j7ap65va7j0z4jm2rfndany70"; 8771 8771 }; 8772 8772 meta.homepage = "https://github.com/mrcjkb/rustaceanvim/"; 8773 8773 }; ··· 8930 8930 8931 8931 sg-nvim = buildVimPlugin { 8932 8932 pname = "sg.nvim"; 8933 - version = "2023-10-18"; 8933 + version = "2023-11-15"; 8934 8934 src = fetchFromGitHub { 8935 8935 owner = "sourcegraph"; 8936 8936 repo = "sg.nvim"; 8937 - rev = "6c592e9e78e68cd2bf4385da1b2a633219a22aab"; 8938 - sha256 = "1a32yhdq9pbl9xz9brgn54171b059yrsp635r6crzp380nfpw1hf"; 8937 + rev = "41378567217097a3d78b624c9f11d29436381e99"; 8938 + sha256 = "0dwh7zb8l83d8l63ps6qc5am7r95bnyavz5r8qpxnzgzdic2r5nv"; 8939 8939 }; 8940 8940 meta.homepage = "https://github.com/sourcegraph/sg.nvim/"; 8941 8941 }; ··· 9051 9051 9052 9052 snap = buildVimPlugin { 9053 9053 pname = "snap"; 9054 - version = "2023-11-12"; 9054 + version = "2023-11-15"; 9055 9055 src = fetchFromGitHub { 9056 9056 owner = "camspiers"; 9057 9057 repo = "snap"; 9058 - rev = "8a2c15665fab760ecfd854329d2170a6ab40aa83"; 9059 - sha256 = "0b9zd8v8l2d89wsc8qfgk51pqs8wrfr6fj9vcdq2v7f648ly19lw"; 9058 + rev = "e00e423a5cc4637fdcea79435086736f6ae85182"; 9059 + sha256 = "06hviy2f6jawhdcjfhd5hkkjwsj0bnaz5cvmf76chccqr24851cw"; 9060 9060 }; 9061 9061 meta.homepage = "https://github.com/camspiers/snap/"; 9062 9062 }; ··· 9219 9219 9220 9220 splitjoin-vim = buildVimPlugin { 9221 9221 pname = "splitjoin.vim"; 9222 - version = "2023-11-05"; 9222 + version = "2023-11-12"; 9223 9223 src = fetchFromGitHub { 9224 9224 owner = "AndrewRadev"; 9225 9225 repo = "splitjoin.vim"; 9226 - rev = "89e6e2ed2e3d8fc55479ad642d260a95bb731d1a"; 9227 - sha256 = "1499ajkpq7vbapwn4s96wcmc5mnxrlidb7p34nhns41cn8kfss3n"; 9226 + rev = "8b00772a03c416d23954baeff8a32154bb626293"; 9227 + sha256 = "0anb7bh08n4aj6x04v3ys35sl6b4f1lc7026b3pc3i6yjivnq9k8"; 9228 9228 fetchSubmodules = true; 9229 9229 }; 9230 9230 meta.homepage = "https://github.com/AndrewRadev/splitjoin.vim/"; ··· 9244 9244 9245 9245 srcery-vim = buildVimPlugin { 9246 9246 pname = "srcery-vim"; 9247 - version = "2023-09-25"; 9247 + version = "2023-11-13"; 9248 9248 src = fetchFromGitHub { 9249 9249 owner = "srcery-colors"; 9250 9250 repo = "srcery-vim"; 9251 - rev = "8ea4c4f5caf61ac4ab887fc53eabc916985db881"; 9252 - sha256 = "0z6i35gcf4qcy9cgsrg2bg2alh0sk6zxqvid8lgkmds4qgrvhxp3"; 9251 + rev = "ffe6b8e975bb2f218cbeb3e785d2f12d9f88b37d"; 9252 + sha256 = "0nwk81y9j5ljjm3k19kf1zmscdxiis4mwan026wv7cqp7f9qhxlr"; 9253 9253 }; 9254 9254 meta.homepage = "https://github.com/srcery-colors/srcery-vim/"; 9255 9255 }; ··· 9715 9715 9716 9716 telescope-file-browser-nvim = buildVimPlugin { 9717 9717 pname = "telescope-file-browser.nvim"; 9718 - version = "2023-11-05"; 9718 + version = "2023-11-12"; 9719 9719 src = fetchFromGitHub { 9720 9720 owner = "nvim-telescope"; 9721 9721 repo = "telescope-file-browser.nvim"; 9722 - rev = "3044ff9e38d1ed8d7818d72d9f951ed9d1b0563d"; 9723 - sha256 = "0p1k1cfapbws0snf43idcrh326z2zcz3l05m3jv8dg9j7mmaps4w"; 9722 + rev = "da2a20ccaf39ce04b92178711a2db175ec0a87d5"; 9723 + sha256 = "1k7sp1xcrr2wlkjrs7aqsnxjf7sp9ra36bpl1rn1dfmjyd949n6r"; 9724 9724 }; 9725 9725 meta.homepage = "https://github.com/nvim-telescope/telescope-file-browser.nvim/"; 9726 9726 }; ··· 9812 9812 9813 9813 telescope-manix = buildNeovimPlugin { 9814 9814 pname = "telescope-manix"; 9815 - version = "2023-10-29"; 9815 + version = "2023-11-14"; 9816 9816 src = fetchFromGitHub { 9817 9817 owner = "MrcJkb"; 9818 9818 repo = "telescope-manix"; 9819 - rev = "30f95237af9a9bbbd386742ec40e489bf09f8ead"; 9820 - sha256 = "1svw724jlhchsl191bmgr50zbjl9vghkaxk3j8g0nzvrn9677b22"; 9819 + rev = "d946dba3dbf71005434aeae5a4aa5589b09649bc"; 9820 + sha256 = "1sha737v9ixzf2d336ykvh5kszb5bi2vb4i5ms4ffayf10lhk30g"; 9821 9821 }; 9822 9822 meta.homepage = "https://github.com/MrcJkb/telescope-manix/"; 9823 9823 }; ··· 9896 9896 9897 9897 telescope-undo-nvim = buildVimPlugin { 9898 9898 pname = "telescope-undo.nvim"; 9899 - version = "2023-11-10"; 9899 + version = "2023-11-12"; 9900 9900 src = fetchFromGitHub { 9901 9901 owner = "debugloop"; 9902 9902 repo = "telescope-undo.nvim"; 9903 - rev = "a3dcb6e32a3a59a5570a7cda33171eeef9753345"; 9904 - sha256 = "1vx3zfb2mc56ggk1j2kh9xzpnid963wvg2ibhq1c7vzf0d3wigc0"; 9903 + rev = "13c33c173e53f14df7eec5155c52a3d2ab022d8d"; 9904 + sha256 = "0bc3c447491pbp6l20gn4kwd9n7wm4ayac0imsvswpmnvlrh0ibn"; 9905 9905 }; 9906 9906 meta.homepage = "https://github.com/debugloop/telescope-undo.nvim/"; 9907 9907 }; ··· 9957 9957 9958 9958 telescope-nvim = buildNeovimPlugin { 9959 9959 pname = "telescope.nvim"; 9960 - version = "2023-11-06"; 9960 + version = "2023-11-15"; 9961 9961 src = fetchFromGitHub { 9962 9962 owner = "nvim-telescope"; 9963 9963 repo = "telescope.nvim"; 9964 - rev = "20bf20500c95208c3ac0ef07245065bf94dcab15"; 9965 - sha256 = "096vv98xxdqy96ipz6lbricfr74bkc3r58x1si1816lnm0j896r5"; 9964 + rev = "721cdcae134eb5c564cb6c9df6c317c3854528ad"; 9965 + sha256 = "12kizqyhknpp4931n2fkbdxhb04afpcnxyw6s4z7mf1vsfjz39w2"; 9966 9966 }; 9967 9967 meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 9968 9968 }; ··· 10065 10065 10066 10066 text-case-nvim = buildVimPlugin { 10067 10067 pname = "text-case.nvim"; 10068 - version = "2023-11-12"; 10068 + version = "2023-11-14"; 10069 10069 src = fetchFromGitHub { 10070 10070 owner = "johmsalas"; 10071 10071 repo = "text-case.nvim"; 10072 - rev = "51e043c27478823d3d914ccf8e373b189a084836"; 10073 - sha256 = "1fggk1k1wfgrcapv2z8s7j9k1nkxc1g33c87pjld7dsm6477fvms"; 10072 + rev = "acd6178ffcf728c82036c7064630ff40f4c9ae82"; 10073 + sha256 = "03r9znnrgvc374k71wzjyr69ifpmbgpwx9n8xmrv3f0w6kmfa1y1"; 10074 10074 }; 10075 10075 meta.homepage = "https://github.com/johmsalas/text-case.nvim/"; 10076 10076 }; ··· 10246 10246 10247 10247 treesj = buildVimPlugin { 10248 10248 pname = "treesj"; 10249 - version = "2023-11-08"; 10249 + version = "2023-11-15"; 10250 10250 src = fetchFromGitHub { 10251 10251 owner = "Wansmer"; 10252 10252 repo = "treesj"; 10253 - rev = "7b6e1ce4bfd679071a16ed212be6b3b1e0840dd4"; 10254 - sha256 = "02n5231gq3097a2ldgl5mflm0182mfcxc7wv801fd6gj3d021ls7"; 10253 + rev = "1d6e89f4790aa04eaae38fa9460a3ee191961c96"; 10254 + sha256 = "1f7zrzv0f2di1vkavgyqa80mx686rii0gsygl8rs3qrr9bc17zd5"; 10255 10255 }; 10256 10256 meta.homepage = "https://github.com/Wansmer/treesj/"; 10257 10257 }; ··· 10426 10426 10427 10427 unison = buildVimPlugin { 10428 10428 pname = "unison"; 10429 - version = "2023-11-10"; 10429 + version = "2023-11-14"; 10430 10430 src = fetchFromGitHub { 10431 10431 owner = "unisonweb"; 10432 10432 repo = "unison"; 10433 - rev = "790da1ea008bac817ec80eb941286120e3e59b74"; 10434 - sha256 = "0q084havhpxkws9ppw4hiv1sjq53w3q1sdfh492rkcrsrpppvgyv"; 10433 + rev = "68d6f93d3bdd3663aee6ec7e16fee4eedc6df26b"; 10434 + sha256 = "1kb2dnd5jcwig3yjajjwznmb47llrl5y5jmd33nkdrrmvckb6l0z"; 10435 10435 }; 10436 10436 meta.homepage = "https://github.com/unisonweb/unison/"; 10437 10437 }; ··· 11686 11686 11687 11687 vim-dirvish = buildVimPlugin { 11688 11688 pname = "vim-dirvish"; 11689 - version = "2023-06-18"; 11689 + version = "2023-11-13"; 11690 11690 src = fetchFromGitHub { 11691 11691 owner = "justinmk"; 11692 11692 repo = "vim-dirvish"; 11693 - rev = "bbf53b30ca1e718625b9b84b1d32379e470ddad7"; 11694 - sha256 = "1pg1w587lkj0vx1qcf7916928jm72c5j0jjj9804bdxdwixygyza"; 11693 + rev = "babbf69f7bb5274f0461e04a59d3e059bee27314"; 11694 + sha256 = "1j38m972z5qca8rl5i0w8rhvv1r2ipqvajh07b006dn8smaz33zs"; 11695 11695 }; 11696 11696 meta.homepage = "https://github.com/justinmk/vim-dirvish/"; 11697 11697 }; ··· 12070 12070 12071 12071 vim-floaterm = buildVimPlugin { 12072 12072 pname = "vim-floaterm"; 12073 - version = "2023-10-05"; 12073 + version = "2023-11-14"; 12074 12074 src = fetchFromGitHub { 12075 12075 owner = "voldikss"; 12076 12076 repo = "vim-floaterm"; 12077 - rev = "6e81602e9d7ff7dc1c96c66fedc38fca1262d57c"; 12078 - sha256 = "1354apq2hcizp96p5y3ig2v8i0aq358qyifi8m3qzx6sh5ql0vgp"; 12077 + rev = "b1d93789faf8bfe1f3e17eec03b8312c2939fcf2"; 12078 + sha256 = "11rykxacg9qlwyf0j4p6w8qqjr5yi1inmghyb4mvd5d0zp61p5w0"; 12079 12079 }; 12080 12080 meta.homepage = "https://github.com/voldikss/vim-floaterm/"; 12081 12081 }; ··· 12876 12876 12877 12877 vim-just = buildVimPlugin { 12878 12878 pname = "vim-just"; 12879 - version = "2023-11-08"; 12879 + version = "2023-11-14"; 12880 12880 src = fetchFromGitHub { 12881 12881 owner = "NoahTheDuke"; 12882 12882 repo = "vim-just"; 12883 - rev = "743cbe28d8e6acd82eb7db6bac11c50661ec16a9"; 12884 - sha256 = "16vdabnq8rxkbi5bccr0fjxjhm0n7d3r1sdx1459s4b5h6his9bw"; 12883 + rev = "8fa4691bc3b593b6deaf885a3af80aafb12f338b"; 12884 + sha256 = "0gic7vfd3jbz5pwn0cchhx4xs05vil590mc90kfkvf97ksr94965"; 12885 12885 }; 12886 12886 meta.homepage = "https://github.com/NoahTheDuke/vim-just/"; 12887 12887 }; ··· 13128 13128 13129 13129 vim-lsp-settings = buildVimPlugin { 13130 13130 pname = "vim-lsp-settings"; 13131 - version = "2023-09-17"; 13131 + version = "2023-11-15"; 13132 13132 src = fetchFromGitHub { 13133 13133 owner = "mattn"; 13134 13134 repo = "vim-lsp-settings"; 13135 - rev = "7613a3f702ae7ff2794b659a9769494203f5cb67"; 13136 - sha256 = "0fa56dn9jmqz0hwd2jjc9g4j0rqyw5d5v64vzs8lq6r52fvzcm6j"; 13135 + rev = "3d99f09affd1ea6b9289949d5b282c43fe21eab8"; 13136 + sha256 = "08983vwgcaz2ydl4pf5nlzjli7aa88bmdp3m56519ihfhj2s1s22"; 13137 13137 }; 13138 13138 meta.homepage = "https://github.com/mattn/vim-lsp-settings/"; 13139 13139 }; ··· 13357 13357 13358 13358 vim-monokai-tasty = buildVimPlugin { 13359 13359 pname = "vim-monokai-tasty"; 13360 - version = "2023-11-07"; 13360 + version = "2023-11-13"; 13361 13361 src = fetchFromGitHub { 13362 13362 owner = "patstockwell"; 13363 13363 repo = "vim-monokai-tasty"; 13364 - rev = "dae763bc4665516f354c20d84e53355a810682a2"; 13365 - sha256 = "1yddbd9wazxh95wrkw5lnb8fmlk3q4zj051f4qjn13rbj4j0ch6l"; 13364 + rev = "247324e0170e19de0018e7c8e437f83b6f0ef6fc"; 13365 + sha256 = "0l3rlah48969kkz2r6xl9r8plg7n4an1pk5cy92ly94x6yw5awkm"; 13366 13366 }; 13367 13367 meta.homepage = "https://github.com/patstockwell/vim-monokai-tasty/"; 13368 13368 }; ··· 13657 13657 13658 13658 vim-orgmode = buildVimPlugin { 13659 13659 pname = "vim-orgmode"; 13660 - version = "2022-12-09"; 13660 + version = "2023-11-12"; 13661 13661 src = fetchFromGitHub { 13662 13662 owner = "jceb"; 13663 13663 repo = "vim-orgmode"; 13664 - rev = "b27feaba9a316e8307cfd7a56797b378fb52df83"; 13665 - sha256 = "0b2y49ylbrp1i5r5abznziv1n43d063mib07v4ila0873k7fzir6"; 13664 + rev = "83982349e45e6d27d186ad82050f86c3233a16f0"; 13665 + sha256 = "1gw9x3lf379kpscb47vg14cmfspcj04kif6q38xvd5szkw8mq50f"; 13666 13666 }; 13667 13667 meta.homepage = "https://github.com/jceb/vim-orgmode/"; 13668 13668 }; ··· 14293 14293 14294 14294 vim-scriptease = buildVimPlugin { 14295 14295 pname = "vim-scriptease"; 14296 - version = "2022-05-30"; 14296 + version = "2023-11-13"; 14297 14297 src = fetchFromGitHub { 14298 14298 owner = "tpope"; 14299 14299 repo = "vim-scriptease"; 14300 - rev = "18511d389675d773994215ddb572ccdc2b72f52b"; 14301 - sha256 = "1mzs4x6y68akysbibprfif1dksaafhcyhddkcyh3da6by6sp5l0l"; 14300 + rev = "cdb5981d47ac98221a408ae2e7cae66524d9e872"; 14301 + sha256 = "1f5y96lkbj8zfm6lc3izynb4dz914vli2yqpn1gw9y3llj43n5bn"; 14302 14302 }; 14303 14303 meta.homepage = "https://github.com/tpope/vim-scriptease/"; 14304 14304 }; ··· 14822 14822 14823 14823 vim-test = buildVimPlugin { 14824 14824 pname = "vim-test"; 14825 - version = "2023-10-28"; 14825 + version = "2023-11-15"; 14826 14826 src = fetchFromGitHub { 14827 14827 owner = "vim-test"; 14828 14828 repo = "vim-test"; 14829 - rev = "5880b17c3baf31a22077538dad5d88c658874303"; 14830 - sha256 = "1j42sdr24z7hg3n5g1paa3a5gc4sfdyp0rl43qqa2kvnghpzk93z"; 14829 + rev = "6d054a713d601291c01c42197796644cf00ca9f2"; 14830 + sha256 = "0lf82ka9x1fkgczqxkbvlqygp6glcn1baq8ix0y60jn3kqccpm4s"; 14831 14831 }; 14832 14832 meta.homepage = "https://github.com/vim-test/vim-test/"; 14833 14833 }; ··· 15567 15567 15568 15568 vimtex = buildVimPlugin { 15569 15569 pname = "vimtex"; 15570 - version = "2023-11-04"; 15570 + version = "2023-11-15"; 15571 15571 src = fetchFromGitHub { 15572 15572 owner = "lervag"; 15573 15573 repo = "vimtex"; 15574 - rev = "7d1dbd0eebe041fbda4d1132622bf051b1546497"; 15575 - sha256 = "130v7kqf14r46ndn199lc74fm4dxiky3c14kilx4adnifac7qywb"; 15574 + rev = "a630f0f75d9468d10c9125f2f1b0049e479c2f54"; 15575 + sha256 = "0f1p93jmhfp6fvl29v58rgwcvqa5lh1ks44w7gp6yh2w0i78s200"; 15576 15576 }; 15577 15577 meta.homepage = "https://github.com/lervag/vimtex/"; 15578 15578 }; ··· 16024 16024 16025 16025 catppuccin-nvim = buildVimPlugin { 16026 16026 pname = "catppuccin-nvim"; 16027 - version = "2023-11-12"; 16027 + version = "2023-11-15"; 16028 16028 src = fetchFromGitHub { 16029 16029 owner = "catppuccin"; 16030 16030 repo = "nvim"; 16031 - rev = "9f3c13bbcf16fcaec3a429c03743a13e5923f3e3"; 16032 - sha256 = "06m4mz3s53n5rw62jdrz66ygfqx02r0m7ixb14cl327hy1dfnsgc"; 16031 + rev = "cc717acba29259d578548973c41448b092453c52"; 16032 + sha256 = "1jbyvd5w06hppwpvjm2sd01qz3phw7ds5n7w220x8r2vslpmm25l"; 16033 16033 }; 16034 16034 meta.homepage = "https://github.com/catppuccin/nvim/"; 16035 16035 };
+42 -42
pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix
··· 292 292 }; 293 293 cpp = buildGrammar { 294 294 language = "cpp"; 295 - version = "0.0.0+rev=a90f170"; 295 + version = "0.0.0+rev=d153fe1"; 296 296 src = fetchFromGitHub { 297 297 owner = "tree-sitter"; 298 298 repo = "tree-sitter-cpp"; 299 - rev = "a90f170f92d5d70e7c2d4183c146e61ba5f3a457"; 300 - hash = "sha256-e9Mz84lssaPR80hlogyjXx+jA8gD8YVp4T06qC6gRVI="; 299 + rev = "d153fe1c3385ee0521730ff4e0be9358e903b322"; 300 + hash = "sha256-zxAz82XpTtKondA84L1sO3VByo8vLI4j154pWbxlV74="; 301 301 }; 302 302 meta.homepage = "https://github.com/tree-sitter/tree-sitter-cpp"; 303 303 }; ··· 714 714 }; 715 715 gleam = buildGrammar { 716 716 language = "gleam"; 717 - version = "0.0.0+rev=3f93ccc"; 717 + version = "0.0.0+rev=b2afa4f"; 718 718 src = fetchFromGitHub { 719 719 owner = "gleam-lang"; 720 720 repo = "tree-sitter-gleam"; 721 - rev = "3f93cccaf278cc4c9cf9a373ea2f6389174d634c"; 722 - hash = "sha256-TjyAaxEtGVjnBdcw1uyeQhotNhZlQKvN1SgbZwKvm3M="; 721 + rev = "b2afa4fd6bb41a7bf912b034c653c90af7ae5122"; 722 + hash = "sha256-Z1wutK2NyI5EMwTezeZp/g8JFD0p7kqBGCuh9Amyjgo="; 723 723 }; 724 724 meta.homepage = "https://github.com/gleam-lang/tree-sitter-gleam"; 725 725 }; ··· 901 901 }; 902 902 hcl = buildGrammar { 903 903 language = "hcl"; 904 - version = "0.0.0+rev=b553906"; 904 + version = "0.0.0+rev=fdf6463"; 905 905 src = fetchFromGitHub { 906 906 owner = "MichaHoffmann"; 907 907 repo = "tree-sitter-hcl"; 908 - rev = "b5539065432c08e4118eb3ee7c94902fdda85708"; 909 - hash = "sha256-okLwoDGgK6aM5+8oelfRnuKqIimTs8Hc0N8Ikrm2eY0="; 908 + rev = "fdf6463216f1a45d83ba911cdb9f57445a8d3b51"; 909 + hash = "sha256-UEjC3PeTQCvbtfk4a0EaLh+DXraUQIaSUGU6vszYP3E="; 910 910 }; 911 911 meta.homepage = "https://github.com/MichaHoffmann/tree-sitter-hcl"; 912 912 }; ··· 934 934 }; 935 935 hlsl = buildGrammar { 936 936 language = "hlsl"; 937 - version = "0.0.0+rev=f2902bd"; 937 + version = "0.0.0+rev=ac65c93"; 938 938 src = fetchFromGitHub { 939 939 owner = "theHamsta"; 940 940 repo = "tree-sitter-hlsl"; 941 - rev = "f2902bd614e3916bdf65e1bc9ad45ebd08417bba"; 942 - hash = "sha256-tuie4Yzauejf+5Par2qnWfaQgOLhROL2le1+UTq5cSY="; 941 + rev = "ac65c934b3214e96e0f854be009a3bd51549bd14"; 942 + hash = "sha256-rTBal4RBOFBKfb9cydvWH+JtCCMOlnnGMPb2X7LXRjE="; 943 943 }; 944 944 meta.homepage = "https://github.com/theHamsta/tree-sitter-hlsl"; 945 945 }; ··· 1011 1011 }; 1012 1012 ini = buildGrammar { 1013 1013 language = "ini"; 1014 - version = "0.0.0+rev=7f11a02"; 1014 + version = "0.0.0+rev=bcb84a2"; 1015 1015 src = fetchFromGitHub { 1016 1016 owner = "justinmk"; 1017 1017 repo = "tree-sitter-ini"; 1018 - rev = "7f11a02fb8891482068e0fe419965d7bade81a68"; 1019 - hash = "sha256-IIpKzpA4q1jpYVZ75VZaxWHaqNt8TA427eMOui2s71M="; 1018 + rev = "bcb84a2d4bcd6f55b911c42deade75c8f90cb0c5"; 1019 + hash = "sha256-dYPeVTNWO4apY5dsjsKViavU7YtLeGTp6BzEemXhsEU="; 1020 1020 }; 1021 1021 meta.homepage = "https://github.com/justinmk/tree-sitter-ini"; 1022 1022 }; ··· 1220 1220 }; 1221 1221 leo = buildGrammar { 1222 1222 language = "leo"; 1223 - version = "0.0.0+rev=91d7aa6"; 1223 + version = "0.0.0+rev=23a9534"; 1224 1224 src = fetchFromGitHub { 1225 1225 owner = "r001"; 1226 1226 repo = "tree-sitter-leo"; 1227 - rev = "91d7aa606f524cf4f5df7f4aacb45b4056fac704"; 1228 - hash = "sha256-8nea6Qg0eT5ciif+tzD13TcFqP9/uJVxgVSW93OdiVY="; 1227 + rev = "23a9534d09d523d0dcee7dbf89e7c819e6835f6f"; 1228 + hash = "sha256-21Vqvc3HjmKi1FRKyswMcf8rPjkyAbjTayDYMsTUsBg="; 1229 1229 }; 1230 1230 meta.homepage = "https://github.com/r001/tree-sitter-leo"; 1231 1231 }; ··· 1319 1319 }; 1320 1320 markdown = buildGrammar { 1321 1321 language = "markdown"; 1322 - version = "0.0.0+rev=7ce4c69"; 1322 + version = "0.0.0+rev=f9820b2"; 1323 1323 src = fetchFromGitHub { 1324 1324 owner = "MDeiml"; 1325 1325 repo = "tree-sitter-markdown"; 1326 - rev = "7ce4c69fe92d1c10225e3d1b3676c87dd9427b45"; 1327 - hash = "sha256-UxpTkiRChAwNJBVS9y/lydI8R035EuRy3t39Y1mscq0="; 1326 + rev = "f9820b2db958228f9be339b67d2de874d065866e"; 1327 + hash = "sha256-0T0P018Zb4tfU2D4PLhiW8tunOInlRtrHajPOVqOpwc="; 1328 1328 }; 1329 1329 location = "tree-sitter-markdown"; 1330 1330 meta.homepage = "https://github.com/MDeiml/tree-sitter-markdown"; 1331 1331 }; 1332 1332 markdown_inline = buildGrammar { 1333 1333 language = "markdown_inline"; 1334 - version = "0.0.0+rev=7ce4c69"; 1334 + version = "0.0.0+rev=f9820b2"; 1335 1335 src = fetchFromGitHub { 1336 1336 owner = "MDeiml"; 1337 1337 repo = "tree-sitter-markdown"; 1338 - rev = "7ce4c69fe92d1c10225e3d1b3676c87dd9427b45"; 1339 - hash = "sha256-UxpTkiRChAwNJBVS9y/lydI8R035EuRy3t39Y1mscq0="; 1338 + rev = "f9820b2db958228f9be339b67d2de874d065866e"; 1339 + hash = "sha256-0T0P018Zb4tfU2D4PLhiW8tunOInlRtrHajPOVqOpwc="; 1340 1340 }; 1341 1341 location = "tree-sitter-markdown-inline"; 1342 1342 meta.homepage = "https://github.com/MDeiml/tree-sitter-markdown"; ··· 1498 1498 }; 1499 1499 objdump = buildGrammar { 1500 1500 language = "objdump"; 1501 - version = "0.0.0+rev=64e4741"; 1501 + version = "0.0.0+rev=28d3b2e"; 1502 1502 src = fetchFromGitHub { 1503 1503 owner = "ColinKennedy"; 1504 1504 repo = "tree-sitter-objdump"; 1505 - rev = "64e4741d58345c36ded639f5a3bcd7811be7f8f8"; 1506 - hash = "sha256-v5skJKQ/c0YeGVj3Vs+SNnFqTkp0mblZU4DyJ9hg7s4="; 1505 + rev = "28d3b2e25a0b1881d1b47ed1924ca276c7003d45"; 1506 + hash = "sha256-OPqIhgItghXplQ78Vlwd0G6KtDWTVkaG17RPqx1b5JY="; 1507 1507 }; 1508 1508 meta.homepage = "https://github.com/ColinKennedy/tree-sitter-objdump"; 1509 1509 }; ··· 1766 1766 }; 1767 1767 purescript = buildGrammar { 1768 1768 language = "purescript"; 1769 - version = "0.0.0+rev=5ef5592"; 1769 + version = "0.0.0+rev=f89bd14"; 1770 1770 src = fetchFromGitHub { 1771 1771 owner = "postsolar"; 1772 1772 repo = "tree-sitter-purescript"; 1773 - rev = "5ef5592674ea42de75fc2792972e4ea0b6e3da6c"; 1774 - hash = "sha256-V9cuENH/tpXt9mfZqJ2v4dxJvbwEHU8Ri+UxQafWemY="; 1773 + rev = "f89bd149e44624342bf49f76245d3284f2beed9a"; 1774 + hash = "sha256-c4Zux+6kg9b9/0t9LOtfSdMMQbp1xwiQH8dz4BBB/pY="; 1775 1775 }; 1776 1776 meta.homepage = "https://github.com/postsolar/tree-sitter-purescript"; 1777 1777 }; ··· 2121 2121 }; 2122 2122 sql = buildGrammar { 2123 2123 language = "sql"; 2124 - version = "0.0.0+rev=5f928f4"; 2124 + version = "0.0.0+rev=9fe5aea"; 2125 2125 src = fetchFromGitHub { 2126 2126 owner = "derekstride"; 2127 2127 repo = "tree-sitter-sql"; 2128 - rev = "5f928f404d2aa024abce8657778fc10c03f1511f"; 2129 - hash = "sha256-7W6vuaZjDZgoaxJexPPBjJZlutlTT+hTFL1dq9k2NSo="; 2128 + rev = "9fe5aeaa8d58d00cc31c20a3ae923ae695ce2ce7"; 2129 + hash = "sha256-HnSZGrxrHlARPhgTJRO6P0FcmjOdB3c5eMpH9+5ZaX8="; 2130 2130 }; 2131 2131 meta.homepage = "https://github.com/derekstride/tree-sitter-sql"; 2132 2132 }; ··· 2277 2277 }; 2278 2278 terraform = buildGrammar { 2279 2279 language = "terraform"; 2280 - version = "0.0.0+rev=b553906"; 2280 + version = "0.0.0+rev=fdf6463"; 2281 2281 src = fetchFromGitHub { 2282 2282 owner = "MichaHoffmann"; 2283 2283 repo = "tree-sitter-hcl"; 2284 - rev = "b5539065432c08e4118eb3ee7c94902fdda85708"; 2285 - hash = "sha256-okLwoDGgK6aM5+8oelfRnuKqIimTs8Hc0N8Ikrm2eY0="; 2284 + rev = "fdf6463216f1a45d83ba911cdb9f57445a8d3b51"; 2285 + hash = "sha256-UEjC3PeTQCvbtfk4a0EaLh+DXraUQIaSUGU6vszYP3E="; 2286 2286 }; 2287 2287 location = "dialects/terraform"; 2288 2288 meta.homepage = "https://github.com/MichaHoffmann/tree-sitter-hcl"; ··· 2322 2322 }; 2323 2323 tlaplus = buildGrammar { 2324 2324 language = "tlaplus"; 2325 - version = "0.0.0+rev=204e858"; 2325 + version = "0.0.0+rev=d99cb5c"; 2326 2326 src = fetchFromGitHub { 2327 2327 owner = "tlaplus-community"; 2328 2328 repo = "tree-sitter-tlaplus"; 2329 - rev = "204e858899f7dd5713dea7b0148d6aa477d4a18f"; 2330 - hash = "sha256-AzCXFr6YAmbmEiBEN6MI+MeBDoEDrJB2vcZl/OEUqmg="; 2329 + rev = "d99cb5c77bb0e733176d607a0875ac30e17e1e72"; 2330 + hash = "sha256-ShZlFHokmy3hhfTeh+/anz7a2bGDwWAdWIdi3X/lchQ="; 2331 2331 }; 2332 2332 meta.homepage = "https://github.com/tlaplus-community/tree-sitter-tlaplus"; 2333 2333 }; ··· 2580 2580 }; 2581 2581 wing = buildGrammar { 2582 2582 language = "wing"; 2583 - version = "0.0.0+rev=238200d"; 2583 + version = "0.0.0+rev=eacf704"; 2584 2584 src = fetchFromGitHub { 2585 2585 owner = "winglang"; 2586 2586 repo = "wing"; 2587 - rev = "238200d172538d5ff1228a929ea543465acfc410"; 2588 - hash = "sha256-a/8lbO8/+XhD3i6hjAxCA1rpovlkVHnDxz8xkc3bPoY="; 2587 + rev = "eacf704338661b981fcf4fdb5ee44d898f038144"; 2588 + hash = "sha256-JwA49Up2G2/jobjqniQeJ1Rfko3PFfgINRvi/QswlCk="; 2589 2589 }; 2590 2590 location = "libs/tree-sitter-wing"; 2591 2591 generate = true;
+1 -1
pkgs/applications/editors/vim/plugins/overrides.nix
··· 999 999 pname = "sg-nvim-rust"; 1000 1000 inherit (old) version src; 1001 1001 1002 - cargoHash = "sha256-Rqs9INcc53SYGXHRyeTbLkGGU035i2i6n6A4ekFKve0="; 1002 + cargoHash = "sha256-ITrjY15Haz8hEztWym4q8YW2h0R8/kOYPaIYJu87sN4="; 1003 1003 1004 1004 nativeBuildInputs = [ pkg-config ]; 1005 1005
+9 -9
pkgs/applications/editors/vim/plugins/patches/coq_nvim/emulate-venv.patch
··· 1 1 diff --git a/coq/__main__.py b/coq/__main__.py 2 - index 5a6c6fd2..e0d9eec8 100644 2 + index dd40afc1..36bcca21 100644 3 3 --- a/coq/__main__.py 4 4 +++ b/coq/__main__.py 5 5 @@ -78,7 +78,7 @@ _EXEC_PATH = Path(executable) 6 6 _EXEC_PATH = _EXEC_PATH.parent.resolve(strict=True) / _EXEC_PATH.name 7 7 _REQ = REQUIREMENTS.read_text() 8 - 8 + 9 9 -_IN_VENV = _RT_PY == _EXEC_PATH 10 10 +_IN_VENV = True 11 - 12 - 11 + 12 + 13 13 if command == "deps": 14 14 @@ -152,7 +152,7 @@ elif command == "run": 15 15 try: ··· 21 21 else: 22 22 import pynvim_pp 23 23 diff --git a/coq/consts.py b/coq/consts.py 24 - index 5a027fe9..a3e0c5a4 100644 24 + index 804e92ab..5c090a93 100644 25 25 --- a/coq/consts.py 26 26 +++ b/coq/consts.py 27 - @@ -9,7 +9,7 @@ TOP_LEVEL = Path(__file__).resolve(strict=True).parent.parent 27 + @@ -10,7 +10,7 @@ TOP_LEVEL = Path(__file__).resolve(strict=True).parent.parent 28 28 REQUIREMENTS = TOP_LEVEL / "requirements.txt" 29 - 30 - 29 + 30 + 31 31 -VARS = TOP_LEVEL / ".vars" 32 32 +VARS = Path.home() / ".cache/coq_nvim/vars" 33 - 33 + 34 34 RT_DIR = VARS / "runtime" 35 35 RT_PY = RT_DIR / "Scripts" / "python.exe" if IS_WIN else RT_DIR / "bin" / "python3"
+265 -11
pkgs/applications/editors/vim/plugins/vim-clap/Cargo.lock
··· 150 150 checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 151 151 152 152 [[package]] 153 + name = "bincode" 154 + version = "1.3.3" 155 + source = "registry+https://github.com/rust-lang/crates.io-index" 156 + checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 157 + dependencies = [ 158 + "serde", 159 + ] 160 + 161 + [[package]] 153 162 name = "bitflags" 154 163 version = "1.3.2" 155 164 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 201 210 checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 202 211 203 212 [[package]] 213 + name = "camino" 214 + version = "1.1.6" 215 + source = "registry+https://github.com/rust-lang/crates.io-index" 216 + checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" 217 + dependencies = [ 218 + "serde", 219 + ] 220 + 221 + [[package]] 204 222 name = "cargo-lock" 205 223 version = "9.0.0" 206 224 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 213 231 ] 214 232 215 233 [[package]] 234 + name = "cargo-platform" 235 + version = "0.1.3" 236 + source = "registry+https://github.com/rust-lang/crates.io-index" 237 + checksum = "2cfa25e60aea747ec7e1124f238816749faa93759c6ff5b31f1ccdda137f4479" 238 + dependencies = [ 239 + "serde", 240 + ] 241 + 242 + [[package]] 243 + name = "cargo_metadata" 244 + version = "0.18.0" 245 + source = "registry+https://github.com/rust-lang/crates.io-index" 246 + checksum = "fb9ac64500cc83ce4b9f8dafa78186aa008c8dea77a09b94cd307fd0cd5022a8" 247 + dependencies = [ 248 + "camino", 249 + "cargo-platform", 250 + "semver", 251 + "serde", 252 + "serde_json", 253 + "thiserror", 254 + ] 255 + 256 + [[package]] 216 257 name = "cc" 217 258 version = "1.0.83" 218 259 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 361 402 checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 362 403 363 404 [[package]] 405 + name = "colorsys" 406 + version = "0.6.7" 407 + source = "registry+https://github.com/rust-lang/crates.io-index" 408 + checksum = "54261aba646433cb567ec89844be4c4825ca92a4f8afba52fc4dd88436e31bbd" 409 + 410 + [[package]] 364 411 name = "combine" 365 412 version = "4.6.6" 366 413 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 399 446 checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 400 447 401 448 [[package]] 449 + name = "crc32fast" 450 + version = "1.3.2" 451 + source = "registry+https://github.com/rust-lang/crates.io-index" 452 + checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 453 + dependencies = [ 454 + "cfg-if", 455 + ] 456 + 457 + [[package]] 402 458 name = "crossbeam-channel" 403 459 version = "0.5.8" 404 460 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 442 498 ] 443 499 444 500 [[package]] 501 + name = "darling" 502 + version = "0.20.3" 503 + source = "registry+https://github.com/rust-lang/crates.io-index" 504 + checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e" 505 + dependencies = [ 506 + "darling_core", 507 + "darling_macro", 508 + ] 509 + 510 + [[package]] 511 + name = "darling_core" 512 + version = "0.20.3" 513 + source = "registry+https://github.com/rust-lang/crates.io-index" 514 + checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621" 515 + dependencies = [ 516 + "fnv", 517 + "ident_case", 518 + "proc-macro2", 519 + "quote", 520 + "strsim", 521 + "syn", 522 + ] 523 + 524 + [[package]] 525 + name = "darling_macro" 526 + version = "0.20.3" 527 + source = "registry+https://github.com/rust-lang/crates.io-index" 528 + checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5" 529 + dependencies = [ 530 + "darling_core", 531 + "quote", 532 + "syn", 533 + ] 534 + 535 + [[package]] 445 536 name = "deranged" 446 537 version = "0.3.8" 447 538 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 569 660 "tracing", 570 661 "types", 571 662 "utils", 663 + ] 664 + 665 + [[package]] 666 + name = "flate2" 667 + version = "1.0.27" 668 + source = "registry+https://github.com/rust-lang/crates.io-index" 669 + checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010" 670 + dependencies = [ 671 + "crc32fast", 672 + "miniz_oxide", 572 673 ] 573 674 574 675 [[package]] ··· 810 911 checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 811 912 812 913 [[package]] 914 + name = "highlighter" 915 + version = "0.1.0" 916 + dependencies = [ 917 + "anyhow", 918 + "colorsys", 919 + "once_cell", 920 + "rgb2ansi256", 921 + "serde", 922 + "syntect", 923 + "tracing", 924 + "utils", 925 + ] 926 + 927 + [[package]] 813 928 name = "home" 814 929 version = "0.5.5" 815 930 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 921 1036 "pattern", 922 1037 "serde_json", 923 1038 ] 1039 + 1040 + [[package]] 1041 + name = "ident_case" 1042 + version = "1.0.1" 1043 + source = "registry+https://github.com/rust-lang/crates.io-index" 1044 + checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 924 1045 925 1046 [[package]] 926 1047 name = "idna" ··· 1096 1217 ] 1097 1218 1098 1219 [[package]] 1220 + name = "line-wrap" 1221 + version = "0.1.1" 1222 + source = "registry+https://github.com/rust-lang/crates.io-index" 1223 + checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 1224 + dependencies = [ 1225 + "safemem", 1226 + ] 1227 + 1228 + [[package]] 1229 + name = "linked-hash-map" 1230 + version = "0.5.6" 1231 + source = "registry+https://github.com/rust-lang/crates.io-index" 1232 + checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 1233 + 1234 + [[package]] 1235 + name = "linter" 1236 + version = "0.1.0" 1237 + dependencies = [ 1238 + "async-trait", 1239 + "cargo_metadata", 1240 + "once_cell", 1241 + "parking_lot", 1242 + "paths", 1243 + "regex", 1244 + "serde", 1245 + "serde_json", 1246 + "tokio", 1247 + "tracing", 1248 + ] 1249 + 1250 + [[package]] 1099 1251 name = "linux-raw-sys" 1100 1252 version = "0.4.5" 1101 1253 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1128 1280 1129 1281 [[package]] 1130 1282 name = "maple" 1131 - version = "0.1.46" 1283 + version = "0.1.47" 1132 1284 dependencies = [ 1133 1285 "built", 1134 1286 "chrono", ··· 1156 1308 "futures", 1157 1309 "grep-matcher", 1158 1310 "grep-searcher", 1311 + "highlighter", 1159 1312 "icon", 1160 1313 "ignore", 1161 1314 "itertools", 1315 + "linter", 1316 + "maple_derive", 1162 1317 "matcher", 1163 1318 "once_cell", 1164 1319 "parking_lot", ··· 1181 1336 ] 1182 1337 1183 1338 [[package]] 1339 + name = "maple_derive" 1340 + version = "0.1.0" 1341 + dependencies = [ 1342 + "darling", 1343 + "once_cell", 1344 + "proc-macro2", 1345 + "quote", 1346 + "syn", 1347 + "types", 1348 + ] 1349 + 1350 + [[package]] 1184 1351 name = "matcher" 1185 1352 version = "0.1.0" 1186 1353 dependencies = [ ··· 1195 1362 1196 1363 [[package]] 1197 1364 name = "memchr" 1198 - version = "2.5.0" 1365 + version = "2.6.3" 1199 1366 source = "registry+https://github.com/rust-lang/crates.io-index" 1200 - checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1367 + checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" 1201 1368 1202 1369 [[package]] 1203 1370 name = "memmap2" ··· 1309 1476 checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 1310 1477 1311 1478 [[package]] 1479 + name = "onig" 1480 + version = "6.4.0" 1481 + source = "registry+https://github.com/rust-lang/crates.io-index" 1482 + checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f" 1483 + dependencies = [ 1484 + "bitflags 1.3.2", 1485 + "libc", 1486 + "once_cell", 1487 + "onig_sys", 1488 + ] 1489 + 1490 + [[package]] 1491 + name = "onig_sys" 1492 + version = "69.8.1" 1493 + source = "registry+https://github.com/rust-lang/crates.io-index" 1494 + checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7" 1495 + dependencies = [ 1496 + "cc", 1497 + "pkg-config", 1498 + ] 1499 + 1500 + [[package]] 1312 1501 name = "overload" 1313 1502 version = "0.1.1" 1314 1503 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1385 1574 checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 1386 1575 1387 1576 [[package]] 1577 + name = "plist" 1578 + version = "1.5.0" 1579 + source = "registry+https://github.com/rust-lang/crates.io-index" 1580 + checksum = "bdc0001cfea3db57a2e24bc0d818e9e20e554b5f97fabb9bc231dc240269ae06" 1581 + dependencies = [ 1582 + "base64 0.21.2", 1583 + "indexmap 1.9.3", 1584 + "line-wrap", 1585 + "quick-xml", 1586 + "serde", 1587 + "time 0.3.27", 1588 + ] 1589 + 1590 + [[package]] 1388 1591 name = "printer" 1389 1592 version = "0.1.0" 1390 1593 dependencies = [ ··· 1404 1607 checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 1405 1608 dependencies = [ 1406 1609 "unicode-ident", 1610 + ] 1611 + 1612 + [[package]] 1613 + name = "quick-xml" 1614 + version = "0.29.0" 1615 + source = "registry+https://github.com/rust-lang/crates.io-index" 1616 + checksum = "81b9228215d82c7b61490fec1de287136b5de6f5700f6e58ea9ad61a7964ca51" 1617 + dependencies = [ 1618 + "memchr", 1407 1619 ] 1408 1620 1409 1621 [[package]] ··· 1474 1686 1475 1687 [[package]] 1476 1688 name = "regex" 1477 - version = "1.9.3" 1689 + version = "1.9.5" 1478 1690 source = "registry+https://github.com/rust-lang/crates.io-index" 1479 - checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a" 1691 + checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47" 1480 1692 dependencies = [ 1481 1693 "aho-corasick 1.0.4", 1482 1694 "memchr", 1483 1695 "regex-automata", 1484 - "regex-syntax 0.7.4", 1696 + "regex-syntax 0.7.5", 1485 1697 ] 1486 1698 1487 1699 [[package]] 1488 1700 name = "regex-automata" 1489 - version = "0.3.6" 1701 + version = "0.3.8" 1490 1702 source = "registry+https://github.com/rust-lang/crates.io-index" 1491 - checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69" 1703 + checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795" 1492 1704 dependencies = [ 1493 1705 "aho-corasick 1.0.4", 1494 1706 "memchr", 1495 - "regex-syntax 0.7.4", 1707 + "regex-syntax 0.7.5", 1496 1708 ] 1497 1709 1498 1710 [[package]] ··· 1503 1715 1504 1716 [[package]] 1505 1717 name = "regex-syntax" 1506 - version = "0.7.4" 1718 + version = "0.7.5" 1507 1719 source = "registry+https://github.com/rust-lang/crates.io-index" 1508 - checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" 1720 + checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" 1509 1721 1510 1722 [[package]] 1511 1723 name = "reqwest" ··· 1547 1759 ] 1548 1760 1549 1761 [[package]] 1762 + name = "rgb2ansi256" 1763 + version = "0.1.1" 1764 + source = "registry+https://github.com/rust-lang/crates.io-index" 1765 + checksum = "1ebca96b1c05912d531790498048bab5b7b97a756a7bb9df71fa4ef7ef9814e1" 1766 + 1767 + [[package]] 1550 1768 name = "ring" 1551 1769 version = "0.16.20" 1552 1770 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1626 1844 version = "1.0.15" 1627 1845 source = "registry+https://github.com/rust-lang/crates.io-index" 1628 1846 checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 1847 + 1848 + [[package]] 1849 + name = "safemem" 1850 + version = "0.3.3" 1851 + source = "registry+https://github.com/rust-lang/crates.io-index" 1852 + checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 1629 1853 1630 1854 [[package]] 1631 1855 name = "same-file" ··· 1802 2026 "proc-macro2", 1803 2027 "quote", 1804 2028 "unicode-ident", 2029 + ] 2030 + 2031 + [[package]] 2032 + name = "syntect" 2033 + version = "5.1.0" 2034 + source = "registry+https://github.com/rust-lang/crates.io-index" 2035 + checksum = "e02b4b303bf8d08bfeb0445cba5068a3d306b6baece1d5582171a9bf49188f91" 2036 + dependencies = [ 2037 + "bincode", 2038 + "bitflags 1.3.2", 2039 + "flate2", 2040 + "fnv", 2041 + "once_cell", 2042 + "onig", 2043 + "plist", 2044 + "regex-syntax 0.7.5", 2045 + "serde", 2046 + "serde_json", 2047 + "thiserror", 2048 + "walkdir", 2049 + "yaml-rust", 1805 2050 ] 1806 2051 1807 2052 [[package]] ··· 2486 2731 "cfg-if", 2487 2732 "windows-sys 0.48.0", 2488 2733 ] 2734 + 2735 + [[package]] 2736 + name = "yaml-rust" 2737 + version = "0.4.5" 2738 + source = "registry+https://github.com/rust-lang/crates.io-index" 2739 + checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 2740 + dependencies = [ 2741 + "linked-hash-map", 2742 + ]
+2 -2
pkgs/applications/editors/vim/plugins/vim-clap/default.nix
··· 11 11 }: 12 12 13 13 let 14 - version = "0.46"; 14 + version = "0.47"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "liuchengxu"; 18 18 repo = "vim-clap"; 19 19 rev = "v${version}"; 20 - hash = "sha256-KWBuoZ2GxjwIu7L1PPq/7u3iuYFp5QrlsleL2RQTdUE="; 20 + hash = "sha256-CYv5AZsGvN2dtN7t58b50a8PH7804Lnm4d4wAX6Mm5Q="; 21 21 }; 22 22 23 23 meta = with lib; {
+6 -6
pkgs/applications/editors/vscode/vscodium.nix
··· 15 15 archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz"; 16 16 17 17 sha256 = { 18 - x86_64-linux = "1v2lcbmb0g3pw58mmiqd2j9c7r7dcl371nxc6w9rsmcbf7s0f8h0"; 19 - x86_64-darwin = "11if8l556rsvacwbsknv2hnqfwkad99klgnwx4kjcbm8g63ra3ab"; 20 - aarch64-linux = "1fmahjn99cvylm8r4cf4b1654gyyk6n6mqad1l0cncpypdxc2pdw"; 21 - aarch64-darwin = "053jnxpkpfh5a8nfx557ib6byhi4dd1dnxasp4igy59cbx25an9q"; 22 - armv7l-linux = "0qc48mg34pkr23p3wnlczvfspfii3qn6ikbkgj1qsagxn9ycqjak"; 18 + x86_64-linux = "1h2s90h1a4b4r9rqafd5fj95mx21xqlp3msv8fxfjd2kkfl8bdcl"; 19 + x86_64-darwin = "1cprq4cy01cmyqrvv5p9f09k7h5p4nj9jbk4lrlnyj1z2xvhcls1"; 20 + aarch64-linux = "0g9j14vnan10r014309s6mdkizjfpbd83bf1kxx2kk625n87xszc"; 21 + aarch64-darwin = "10rw2dy3khpxa292zygxi67amxd6s351ha8nxvav5m9xfxlgd2qn"; 22 + armv7l-linux = "0bw0hfhvwv7wbh2daxgxaxm34v5z5ak4nmmk45ksxc4xsmjc5v23"; 23 23 }.${system} or throwSystem; 24 24 25 25 sourceRoot = lib.optionalString (!stdenv.isDarwin) "."; ··· 29 29 30 30 # Please backport all compatible updates to the stable release. 31 31 # This is important for the extension ecosystem. 32 - version = "1.84.2.23314"; 32 + version = "1.84.2.23317"; 33 33 pname = "vscodium"; 34 34 35 35 executableName = "codium";
+2 -2
pkgs/applications/graphics/hydrus/default.nix
··· 12 12 13 13 python3Packages.buildPythonPackage rec { 14 14 pname = "hydrus"; 15 - version = "549"; 15 + version = "551"; 16 16 format = "other"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "hydrusnetwork"; 20 20 repo = "hydrus"; 21 21 rev = "refs/tags/v${version}"; 22 - hash = "sha256-y3WFQhPE8H0198Xu3Dn9YAqaX8YvFJcdt90tebTg7qw="; 22 + hash = "sha256-P/U44ndfucbRnwGLdSnnA0VE4K40zPz3wtNpQj8rh5Q="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+49
pkgs/applications/graphics/texturepacker/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , dpkg 5 + , autoPatchelfHook 6 + , wrapQtAppsHook 7 + , qtbase 8 + , qtdeclarative 9 + , qtsvg 10 + }: 11 + 12 + stdenv.mkDerivation (finalAttrs: { 13 + pname = "texturepacker"; 14 + version = "7.1.0"; 15 + 16 + src = fetchurl { 17 + url = "https://www.codeandweb.com/download/texturepacker/${finalAttrs.version}/TexturePacker-${finalAttrs.version}.deb"; 18 + hash = "sha256-9HbmdMPTp6qZCEU/lIZv4HbjKUlEtPVval+y0tiYObc="; 19 + }; 20 + 21 + nativeBuildInputs = [ 22 + dpkg 23 + autoPatchelfHook 24 + wrapQtAppsHook 25 + ]; 26 + 27 + buildInputs = [ 28 + qtbase 29 + qtdeclarative 30 + qtsvg 31 + ]; 32 + 33 + installPhase = '' 34 + mkdir -p $out/bin $out/lib 35 + cp usr/lib/texturepacker/{libGrantlee_Templates.so.5,libHQX.so.1.0.0,libPVRTexLib.so} $out/lib 36 + cp usr/lib/texturepacker/TexturePacker $out/bin 37 + cp -r usr/share $out 38 + ''; 39 + 40 + meta = { 41 + changelog = "https://www.codeandweb.com/texturepacker/download"; 42 + description = "Sprite sheet creator and game graphics optimizer"; 43 + homepage = "https://www.codeandweb.com/texturepacker"; 44 + license = lib.licenses.unfree; 45 + mainProgram = "TexturePacker"; 46 + maintainers = with lib.maintainers; [ tomasajt ]; 47 + platforms = [ "x86_64-linux" ]; 48 + }; 49 + })
+2 -2
pkgs/applications/networking/browsers/brave/default.nix
··· 92 92 93 93 stdenv.mkDerivation rec { 94 94 pname = "brave"; 95 - version = "1.59.124"; 95 + version = "1.60.118"; 96 96 97 97 src = fetchurl { 98 98 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; 99 - sha256 = "sha256-uY9i0TxTsSvOfMA98amxwWpQh1nsRVEgxeSZ2sv8NEU="; 99 + sha256 = "sha256-Lo9F7z8gJJRId7LBfVTj18C65swDr8C7Mt1gNmXoSoY="; 100 100 }; 101 101 102 102 dontConfigure = true;
+3 -3
pkgs/applications/networking/cluster/helmfile/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "helmfile"; 11 - version = "0.158.0"; 11 + version = "0.158.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "helmfile"; 15 15 repo = "helmfile"; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-768rlhkh8scQbzLvWyjyQSba4zCY/ydYreve+HmcFgw="; 17 + sha256 = "sha256-ohf8MUUTZ3YNon12QpSRE80RaHvWsbrZk/slgEVbgoo="; 18 18 }; 19 19 20 - vendorHash = "sha256-ip01Uj720Sa11ni+8//U1PkHgiY6ttftvMHdxZgfKLk="; 20 + vendorHash = "sha256-rA8egwzvvhArQboWpH2ZZTSJGTyzHUIl6aLusPfr8tw="; 21 21 22 22 doCheck = false; 23 23
+3 -3
pkgs/applications/networking/cluster/kube-router/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kube-router"; 5 - version = "2.0.0"; 5 + version = "2.0.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cloudnativelabs"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-7laXw0tC25zPTeLJlB/rX6WVcRFCd6DCB+3EUPnE4cM="; 11 + hash = "sha256-Iwo+I1EfclkF4FL8QM3xGkIFxakmelI+hSUepLwfFSw="; 12 12 }; 13 13 14 - vendorHash = "sha256-qJA6gnb+VIkJD24iq6yyn8r4zYY19ZywcyalwfaTtbo="; 14 + vendorHash = "sha256-VjPesQ27GcwnFQrNI+VYzJ4/aahcjASbfMi//Zs/KLM="; 15 15 16 16 CGO_ENABLED = 0; 17 17
+2 -2
pkgs/applications/networking/cluster/stern/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "stern"; 5 - version = "1.26.0"; 5 + version = "1.27.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "stern"; 9 9 repo = "stern"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-86XoYzw1bnIWwGiFgRl9RcZSYrF4byYKnDlJ4QSqXV0="; 11 + sha256 = "sha256-W8jGUs63R6QpwuTgzK5yVLhKGXypvKOyCWHT2xdb6eM="; 12 12 }; 13 13 14 14 vendorHash = "sha256-LLVd9WB8ixH78CHYe0sS4sCDCD+6SQ7PxWr2MHiAOxI=";
+3 -3
pkgs/applications/networking/cluster/talosctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "talosctl"; 5 - version = "1.5.4"; 5 + version = "1.5.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "siderolabs"; 9 9 repo = "talos"; 10 10 rev = "v${version}"; 11 - hash = "sha256-l0cR5BDUREBOOac/b87re5lzq3maz8Tg3msalXV6zAs="; 11 + hash = "sha256-15sNXiJ/s3MlrXFXPxA7mQ+/36HRSZF6XKos6XEHi1Y="; 12 12 }; 13 13 14 - vendorHash = "sha256-/l0crKz1Pks2yiQ+t/rY2ZxB+jYCymSfoILtHYtQ7K8="; 14 + vendorHash = "sha256-fGl16Wsb1tW9+wZBg5yY73t7n+EJ1dVx5IlzY2B8PJA="; 15 15 16 16 ldflags = [ "-s" "-w" ]; 17 17
+2
pkgs/applications/networking/cluster/terraform-providers/default.nix
··· 46 46 name = "source-${rev}"; 47 47 inherit owner repo rev hash; 48 48 }; 49 + # nixpkgs-update: no auto update 50 + # easier to update all providers together 49 51 50 52 meta = { 51 53 inherit homepage;
+3 -3
pkgs/applications/networking/cluster/terraform/default.nix
··· 167 167 mkTerraform = attrs: pluggable (generic attrs); 168 168 169 169 terraform_1 = mkTerraform { 170 - version = "1.6.3"; 171 - hash = "sha256-2ai0WAknz4rt33BuBoqnTCsfPNHmet9+PdgYeeJKQkQ="; 172 - vendorHash = "sha256-ZtaXUX0PgL1nwXgohcfCyj/fLPAodx8amHEsQnlOQrc="; 170 + version = "1.6.4"; 171 + hash = "sha256-kA0H+JxyMV6RKRr20enTOzfwj2Lk2IP4vivfHv02+w8="; 172 + vendorHash = "sha256-cxnvEwtZLXYZzCITJgYk8hDRndLLC8YTD+RvgcNska0="; 173 173 patches = [ ./provider-path-0_15.patch ]; 174 174 passthru = { 175 175 inherit plugins;
+3 -3
pkgs/applications/networking/cluster/weave-gitops/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "weave-gitops"; 5 - version = "0.34.0"; 5 + version = "0.35.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "weaveworks"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-W7Q5rsmNEDUGofQumbs9HaByQEb7sj4tOT7ZpIe98E4="; 11 + sha256 = "sha256-H/l/b6yPoNZeBG1TPc9PCBpZg4ETnF9FmYnbRmKl8c8="; 12 12 }; 13 13 14 14 ldflags = [ "-s" "-w" "-X github.com/weaveworks/weave-gitops/cmd/gitops/version.Version=${version}" ]; 15 15 16 - vendorHash = "sha256-+UxrhtwYP+ctn+y7IxKKLO5RVoiUSl4ky0xprXr98Jc="; 16 + vendorHash = "sha256-le34zvlgquxOv0xdOPfpf7/ZuoPd9MEfp8Gshigvtas="; 17 17 18 18 subPackages = [ "cmd/gitops" ]; 19 19
+2 -2
pkgs/applications/networking/gmailctl/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "gmailctl"; 9 - version = "0.10.6"; 9 + version = "0.10.7"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "mbrt"; 13 13 repo = "gmailctl"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-OpRkBHNWRrBhh6nGrV7dZT01xsSlbANCk+g7b8SidG0="; 15 + hash = "sha256-OpRkBHNWRrBhh6nGrV7dZT01xsSlbANCk+g7b8SidG0="; 16 16 }; 17 17 18 18 vendorHash = "sha256-+r0WHrKARcxW1hUY1HwAXk0X6ZQrbgBj9+GjIJV5DS0=";
+8 -8
pkgs/applications/networking/gns3/default.nix
··· 12 12 13 13 guiStable = mkGui { 14 14 channel = "stable"; 15 - version = "2.2.43"; 16 - hash = "sha256-+2dcyWnTJqGaH9yhknYc9/0gnj3qh80eAy6uxG7+fFM="; 15 + version = "2.2.44.1"; 16 + hash = "sha256-Ae1Yij81/rhZOMMfLYaQKR4Dxx1gDGZBpBj0gLCSToI="; 17 17 }; 18 18 19 19 guiPreview = mkGui { 20 20 channel = "stable"; 21 - version = "2.2.43"; 22 - hash = "sha256-+2dcyWnTJqGaH9yhknYc9/0gnj3qh80eAy6uxG7+fFM="; 21 + version = "2.2.44.1"; 22 + hash = "sha256-Ae1Yij81/rhZOMMfLYaQKR4Dxx1gDGZBpBj0gLCSToI="; 23 23 }; 24 24 25 25 serverStable = mkServer { 26 26 channel = "stable"; 27 - version = "2.2.43"; 28 - hash = "sha256-xWt2qzeqBtt86Wv3dYl4GXkfjr+7WAKn5HdDeUzOQd8="; 27 + version = "2.2.44.1"; 28 + hash = "sha256-YtYXTEZj5009L8OU7jdhegYu5Xll3jZAW6NJFWOvxHQ="; 29 29 }; 30 30 31 31 serverPreview = mkServer { 32 32 channel = "stable"; 33 - version = "2.2.43"; 34 - hash = "sha256-xWt2qzeqBtt86Wv3dYl4GXkfjr+7WAKn5HdDeUzOQd8="; 33 + version = "2.2.44.1"; 34 + hash = "sha256-YtYXTEZj5009L8OU7jdhegYu5Xll3jZAW6NJFWOvxHQ="; 35 35 }; 36 36 }
+7
pkgs/applications/networking/gns3/gui.nix
··· 8 8 , fetchFromGitHub 9 9 , qt5 10 10 , wrapQtAppsHook 11 + , testers 12 + , gns3-gui 11 13 }: 12 14 13 15 python3.pkgs.buildPythonApplication rec { ··· 55 57 export QT_QPA_PLATFORM_PLUGIN_PATH="${qt5.qtbase.bin}/lib/qt-${qt5.qtbase.version}/plugins"; 56 58 export QT_QPA_PLATFORM=offscreen 57 59 ''; 60 + 61 + passthru.tests.version = testers.testVersion { 62 + package = gns3-gui; 63 + command = "${lib.getExe gns3-gui} --version"; 64 + }; 58 65 59 66 meta = with lib; { 60 67 description = "Graphical Network Simulator 3 GUI (${channel} release)";
+10 -1
pkgs/applications/networking/gns3/server.nix
··· 8 8 , fetchFromGitHub 9 9 , pkgsStatic 10 10 , stdenv 11 + , testers 12 + , gns3-server 11 13 }: 12 14 13 15 python3.pkgs.buildPythonApplication { ··· 32 34 aiohttp-cors 33 35 async-generator 34 36 distro 35 - importlib-resources 36 37 jinja2 37 38 jsonschema 38 39 multidict ··· 45 46 truststore 46 47 yarl 47 48 zipstream 49 + ] ++ lib.optionals (pythonOlder "3.9") [ 50 + importlib-resources 48 51 ]; 49 52 50 53 postInstall = lib.optionalString (!stdenv.hostPlatform.isWindows) '' ··· 72 75 "--reruns 3" 73 76 ]; 74 77 78 + passthru.tests.version = testers.testVersion { 79 + package = gns3-server; 80 + command = "${lib.getExe gns3-server} --version"; 81 + }; 82 + 75 83 meta = with lib; { 76 84 description = "Graphical Network Simulator 3 server (${channel} release)"; 77 85 longDescription = '' ··· 84 92 license = licenses.gpl3Plus; 85 93 platforms = platforms.linux; 86 94 maintainers = with maintainers; [ anthonyroussel ]; 95 + mainProgram = "gns3server"; 87 96 }; 88 97 }
+12 -4
pkgs/applications/networking/instant-messengers/deltachat-desktop/default.nix
··· 15 15 , sqlcipher 16 16 , stdenv 17 17 , CoreServices 18 + , testers 19 + , deltachat-desktop 18 20 }: 19 21 20 22 let ··· 33 35 in 34 36 buildNpmPackage rec { 35 37 pname = "deltachat-desktop"; 36 - version = "unstable-2023-11-03"; 38 + version = "1.41.1"; 37 39 38 40 src = fetchFromGitHub { 39 41 owner = "deltachat"; 40 42 repo = "deltachat-desktop"; 41 - rev = "40152e9543eb773fc27e7a4f96ef1eecebe9310e"; 42 - hash = "sha256-9GPXFUCu9GKa/bJgO8CIPMLccI6WAJ6PhfoyJ6s/DHE="; 43 + rev = "v${version}"; 44 + hash = "sha256-ITcBIm47OiGy/i6jnG6r1OoStjRPystOts6ViLioLNY="; 43 45 }; 44 46 45 - npmDepsHash = "sha256-g3nkgqZNoq+xuwXbXLHEMVpHH6Sq3792xhITCx7WvOc="; 47 + npmDepsHash = "sha256-+t6m2kDUOh6kIkbZgol/CQciDTxUZSkTr1amPywrMb4="; 46 48 47 49 nativeBuildInputs = [ 48 50 makeWrapper ··· 115 117 "x-scheme-handler/mailto" 116 118 ]; 117 119 }); 120 + 121 + passthru.tests = { 122 + version = testers.testVersion { 123 + package = deltachat-desktop; 124 + }; 125 + }; 118 126 119 127 meta = with lib; { 120 128 description = "Email-based instant messaging for Desktop";
+4 -4
pkgs/applications/networking/instant-messengers/teams-for-linux/default.nix
··· 19 19 20 20 stdenv.mkDerivation (finalAttrs: { 21 21 pname = "teams-for-linux"; 22 - version = "1.3.18"; 22 + version = "1.3.19"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "IsmaelMartinez"; 26 26 repo = "teams-for-linux"; 27 27 rev = "v${finalAttrs.version}"; 28 - hash = "sha256-evOwjHUmeGw8AUpXSig8zVW2cpJbWkNTH/RUuNipFsQ="; 28 + hash = "sha256-+n26VTNRymPdzMbSz8AZsQ73xOHizOFAstw6toKfZQM="; 29 29 }; 30 30 31 31 offlineCache = fetchYarnDeps { 32 32 yarnLock = "${finalAttrs.src}/yarn.lock"; 33 - hash = "sha256-tMC8/qHYli7+OTdxVWRDEyCNzrkYA+zKlHJXlTsl+W0="; 33 + hash = "sha256-SxUdTzk8WngkKwT05U8HJsK8+8ezcJWdiT/ettxpeEE="; 34 34 }; 35 35 36 36 nativeBuildInputs = [ yarn fixup_yarn_lock nodejs copyDesktopItems makeWrapper ]; ··· 102 102 description = "Unofficial Microsoft Teams client for Linux"; 103 103 homepage = "https://github.com/IsmaelMartinez/teams-for-linux"; 104 104 license = lib.licenses.gpl3Only; 105 - maintainers = with lib.maintainers; [ muscaln lilyinstarlight qjoly ]; 105 + maintainers = with lib.maintainers; [ muscaln lilyinstarlight qjoly chvp ]; 106 106 platforms = lib.platforms.unix; 107 107 broken = stdenv.isDarwin; 108 108 };
+2 -2
pkgs/applications/science/biology/picard-tools/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "picard-tools"; 5 - version = "3.1.0"; 5 + version = "3.1.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/broadinstitute/picard/releases/download/${version}/picard.jar"; 9 - sha256 = "sha256-6nnKYnml6BjLb6aKNHbd55nH6gP/5Somo8poxx7yhVk="; 9 + sha256 = "sha256-FcefUf0KwAEEn53XubrB2991ncsCMKicf20fJG6LurQ="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/applications/science/electronics/verilator/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "verilator"; 7 - version = "5.016"; 7 + version = "5.018"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = pname; 11 11 repo = pname; 12 12 rev = "v${version}"; 13 - hash = "sha256-MVQbAZXSIdzX7+yKbSrFLLd0j6dfLSXpES3uu6bcPt8="; 13 + hash = "sha256-f06UzNw2MQ5me03EPrVFhkwxKum/GLDzQbDNTBsJMJs="; 14 14 }; 15 15 16 16 enableParallelBuilding = true;
+2 -2
pkgs/applications/science/logic/eprover/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "eprover"; 5 - version = "2.6"; 5 + version = "3.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://wwwlehre.dhbw-stuttgart.de/~sschulz/WORK/E_DOWNLOAD/V_${version}/E.tgz"; 9 - sha256 = "sha256-qh896qIpFR5g1gdWAwGkbNJLBqUQCeCpuoYHHkDXPt0="; 9 + sha256 = "sha256-RJ2uc/GIWU/fDJijSzYS8GdL7zUkeExOLWXtTbi8ZLk="; 10 10 }; 11 11 12 12 buildInputs = [ which ];
+3 -3
pkgs/applications/version-management/pijul/default.nix
··· 13 13 14 14 rustPlatform.buildRustPackage rec { 15 15 pname = "pijul"; 16 - version = "1.0.0-beta.6"; 16 + version = "1.0.0-beta.7"; 17 17 18 18 src = fetchCrate { 19 19 inherit version pname; 20 - hash = "sha256-1cIb4QsDYlOCGrQrLgEwIjjHZ3WwD2o0o0bF+OOqEtI="; 20 + hash = "sha256-BXDz9po8i937/xYoIW4S/FddtcWxSmtRUWYIphgh060="; 21 21 }; 22 22 23 - cargoHash = "sha256-mRi0NUETTdYE/oM+Jo7gW/zNby8dPAKl6XhzP0Qzsf0="; 23 + cargoHash = "sha256-+KF1G4bDfcjHHzZR93lIR8muO6s3j5jDobr3A7Arr+Q="; 24 24 25 25 doCheck = false; 26 26 nativeBuildInputs = [ installShellFiles pkg-config ];
+6 -2
pkgs/applications/version-management/sourcehut/default.nix
··· 1 - { python3 1 + { lib 2 + , stdenv 3 + , python3 2 4 , callPackage 3 5 , recurseIntoAttrs 4 6 , nixosTests ··· 35 37 hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA="; 36 38 }; 37 39 nativeCheckInputs = with super; [ pytestCheckHook mock ]; 38 - disabledTestPaths = []; 40 + disabledTestPaths = [] 41 + # Disable incompatible tests on Darwin. 42 + ++ lib.optionals stdenv.isDarwin [ "test/aaa_profiling" ]; 39 43 }); 40 44 41 45 flask-sqlalchemy = super.flask-sqlalchemy.overridePythonAttrs (oldAttrs: rec {
+2 -2
pkgs/applications/video/obs-studio/plugins/obs-pipewire-audio-capture.nix
··· 32 32 ''; 33 33 34 34 meta = with lib; { 35 - description = " Audio device and application capture for OBS Studio using PipeWire "; 35 + description = "Audio device and application capture for OBS Studio using PipeWire"; 36 36 homepage = "https://github.com/dimtpap/obs-pipewire-audio-capture"; 37 37 maintainers = with maintainers; [ Elinvention ]; 38 - license = licenses.gpl2; 38 + license = licenses.gpl2Plus; 39 39 platforms = [ "x86_64-linux" "i686-linux" ]; 40 40 }; 41 41 }
+2 -2
pkgs/applications/video/obs-studio/plugins/obs-vaapi/default.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "obs-vaapi"; 14 - version = "0.4.0"; 14 + version = "0.4.1"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "fzwoch"; 18 18 repo = pname; 19 19 rev = version; 20 - hash = "sha256-AbSI6HBdOEI54bUVqqF+b4LcCyzW30XlS9SXX2ajkas="; 20 + hash = "sha256-PpGNLIOz+fCpcP/nvjcJ+1fkduxjcbZjb7yx8TUO25s="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ pkg-config meson ninja ];
+2 -2
pkgs/applications/video/ustreamer/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "ustreamer"; 5 - version = "5.42"; 5 + version = "5.45"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "pikvm"; 9 9 repo = "ustreamer"; 10 10 rev = "v${version}"; 11 - hash = "sha256-V4ScXzZwh3fWCWmeGeb1hce+INYBmf3wtemwNch5FjY="; 11 + hash = "sha256-2WJXOv15oZRk2doecd+xOURygbX4oGyeMAJiiuiRBi4="; 12 12 }; 13 13 14 14 buildInputs = [ libbsd libevent libjpeg ];
+1 -1
pkgs/applications/virtualization/docker/default.nix
··· 179 179 makeWrapper pkg-config go-md2man go libtool installShellFiles 180 180 ]; 181 181 182 - buildInputs = plugins ++ lib.optionals (lib.versionAtLeast version "23") [ 182 + buildInputs = plugins ++ lib.optionals (lib.versionAtLeast version "23" && stdenv.isLinux) [ 183 183 glibc 184 184 glibc.static 185 185 ];
+4 -2
pkgs/applications/virtualization/virt-manager/default.nix
··· 1 1 { lib, fetchFromGitHub, python3, intltool, file, wrapGAppsHook, gtk-vnc 2 2 , vte, avahi, dconf, gobject-introspection, libvirt-glib, system-libvirt 3 - , gsettings-desktop-schemas, libosinfo, gnome, gtksourceview4, docutils, cpio 3 + , gsettings-desktop-schemas, gst_all_1, libosinfo, gnome, gtksourceview4, docutils, cpio 4 4 , e2fsprogs, findutils, gzip, cdrtools, xorriso, fetchpatch 5 5 , desktopToDarwinBundle, stdenv 6 6 , spiceSupport ? true, spice-gtk ? null ··· 21 21 intltool file 22 22 gobject-introspection # for setup hook populating GI_TYPELIB_PATH 23 23 docutils 24 + wrapGAppsHook 24 25 ] ++ lib.optional stdenv.isDarwin desktopToDarwinBundle; 25 26 26 27 buildInputs = [ 27 - wrapGAppsHook 28 + gst_all_1.gst-plugins-base 29 + gst_all_1.gst-plugins-good 28 30 libvirt-glib vte dconf gtk-vnc gnome.adwaita-icon-theme avahi 29 31 gsettings-desktop-schemas libosinfo gtksourceview4 30 32 ] ++ lib.optional spiceSupport spice-gtk;
+1067 -611
pkgs/applications/window-managers/cosmic/applets/Cargo.lock pkgs/by-name/co/cosmic-applets/Cargo.lock
··· 5 5 [[package]] 6 6 name = "accesskit" 7 7 version = "0.11.0" 8 - source = "git+https://github.com/wash2/accesskit.git?tag=v0.11.0#2dee3df0a525d727df9f54ae71cfe8b47d7c2751" 8 + source = "git+https://github.com/wash2/accesskit.git?tag=winit-0.28#db6f2587f663eafd8f7888e8507baa3a092599b0" 9 9 10 10 [[package]] 11 11 name = "accesskit_consumer" 12 12 version = "0.15.0" 13 - source = "git+https://github.com/wash2/accesskit.git?tag=v0.11.0#2dee3df0a525d727df9f54ae71cfe8b47d7c2751" 13 + source = "git+https://github.com/wash2/accesskit.git?tag=winit-0.28#db6f2587f663eafd8f7888e8507baa3a092599b0" 14 14 dependencies = [ 15 15 "accesskit", 16 16 ] ··· 18 18 [[package]] 19 19 name = "accesskit_unix" 20 20 version = "0.4.0" 21 - source = "git+https://github.com/wash2/accesskit.git?tag=v0.11.0#2dee3df0a525d727df9f54ae71cfe8b47d7c2751" 21 + source = "git+https://github.com/wash2/accesskit.git?tag=winit-0.28#db6f2587f663eafd8f7888e8507baa3a092599b0" 22 22 dependencies = [ 23 23 "accesskit", 24 24 "accesskit_consumer", 25 - "async-channel", 25 + "async-channel 1.9.0", 26 26 "atspi", 27 - "futures-lite", 27 + "futures-lite 1.13.0", 28 28 "log", 29 29 "serde", 30 30 "zbus", ··· 47 47 48 48 [[package]] 49 49 name = "ahash" 50 - version = "0.7.6" 50 + version = "0.7.7" 51 51 source = "registry+https://github.com/rust-lang/crates.io-index" 52 - checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 52 + checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd" 53 53 dependencies = [ 54 54 "getrandom", 55 55 "once_cell", ··· 58 58 59 59 [[package]] 60 60 name = "ahash" 61 - version = "0.8.3" 61 + version = "0.8.6" 62 62 source = "registry+https://github.com/rust-lang/crates.io-index" 63 - checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" 63 + checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" 64 64 dependencies = [ 65 65 "cfg-if", 66 66 "once_cell", 67 67 "version_check", 68 + "zerocopy", 68 69 ] 69 70 70 71 [[package]] 71 72 name = "aho-corasick" 72 - version = "1.0.4" 73 + version = "1.1.2" 73 74 source = "registry+https://github.com/rust-lang/crates.io-index" 74 - checksum = "6748e8def348ed4d14996fa801f4122cd763fff530258cdc03f64b25f89d3a5a" 75 + checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 75 76 dependencies = [ 76 77 "memchr", 77 78 ] ··· 172 173 "serde_repr", 173 174 "tokio", 174 175 "url", 175 - "wayland-backend", 176 + "wayland-backend 0.1.2", 176 177 "wayland-client 0.30.2", 177 178 "wayland-protocols 0.30.1", 178 179 "zbus", ··· 184 185 source = "registry+https://github.com/rust-lang/crates.io-index" 185 186 checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b" 186 187 dependencies = [ 187 - "event-listener", 188 + "event-listener 2.5.3", 188 189 "futures-core", 189 190 ] 190 191 ··· 195 196 checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 196 197 dependencies = [ 197 198 "concurrent-queue", 198 - "event-listener", 199 + "event-listener 2.5.3", 199 200 "futures-core", 200 201 ] 201 202 202 203 [[package]] 204 + name = "async-channel" 205 + version = "2.1.0" 206 + source = "registry+https://github.com/rust-lang/crates.io-index" 207 + checksum = "d37875bd9915b7d67c2f117ea2c30a0989874d0b2cb694fe25403c85763c0c9e" 208 + dependencies = [ 209 + "concurrent-queue", 210 + "event-listener 3.1.0", 211 + "event-listener-strategy", 212 + "futures-core", 213 + "pin-project-lite", 214 + ] 215 + 216 + [[package]] 203 217 name = "async-executor" 204 - version = "1.5.1" 218 + version = "1.6.0" 205 219 source = "registry+https://github.com/rust-lang/crates.io-index" 206 - checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb" 220 + checksum = "4b0c4a4f319e45986f347ee47fef8bf5e81c9abc3f6f58dc2391439f30df65f0" 207 221 dependencies = [ 208 - "async-lock", 222 + "async-lock 2.8.0", 209 223 "async-task", 210 224 "concurrent-queue", 211 - "fastrand 1.9.0", 212 - "futures-lite", 225 + "fastrand 2.0.1", 226 + "futures-lite 1.13.0", 213 227 "slab", 214 228 ] 215 229 ··· 219 233 source = "registry+https://github.com/rust-lang/crates.io-index" 220 234 checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06" 221 235 dependencies = [ 222 - "async-lock", 236 + "async-lock 2.8.0", 223 237 "autocfg", 224 238 "blocking", 225 - "futures-lite", 239 + "futures-lite 1.13.0", 226 240 ] 227 241 228 242 [[package]] ··· 231 245 source = "registry+https://github.com/rust-lang/crates.io-index" 232 246 checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 233 247 dependencies = [ 234 - "async-lock", 248 + "async-lock 2.8.0", 235 249 "autocfg", 236 250 "cfg-if", 237 251 "concurrent-queue", 238 - "futures-lite", 252 + "futures-lite 1.13.0", 239 253 "log", 240 254 "parking", 241 - "polling", 242 - "rustix 0.37.23", 255 + "polling 2.8.0", 256 + "rustix 0.37.27", 243 257 "slab", 244 - "socket2 0.4.9", 258 + "socket2 0.4.10", 245 259 "waker-fn", 246 260 ] 247 261 248 262 [[package]] 263 + name = "async-io" 264 + version = "2.2.0" 265 + source = "registry+https://github.com/rust-lang/crates.io-index" 266 + checksum = "41ed9d5715c2d329bf1b4da8d60455b99b187f27ba726df2883799af9af60997" 267 + dependencies = [ 268 + "async-lock 3.1.0", 269 + "cfg-if", 270 + "concurrent-queue", 271 + "futures-io", 272 + "futures-lite 2.0.1", 273 + "parking", 274 + "polling 3.3.0", 275 + "rustix 0.38.21", 276 + "slab", 277 + "tracing", 278 + "waker-fn", 279 + "windows-sys 0.48.0", 280 + ] 281 + 282 + [[package]] 249 283 name = "async-lock" 250 284 version = "2.8.0" 251 285 source = "registry+https://github.com/rust-lang/crates.io-index" 252 286 checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" 253 287 dependencies = [ 254 - "event-listener", 288 + "event-listener 2.5.3", 289 + ] 290 + 291 + [[package]] 292 + name = "async-lock" 293 + version = "3.1.0" 294 + source = "registry+https://github.com/rust-lang/crates.io-index" 295 + checksum = "deb2ab2aa8a746e221ab826c73f48bc6ba41be6763f0855cb249eb6d154cf1d7" 296 + dependencies = [ 297 + "event-listener 3.1.0", 298 + "event-listener-strategy", 299 + "pin-project-lite", 255 300 ] 256 301 257 302 [[package]] 258 303 name = "async-process" 259 - version = "1.7.0" 304 + version = "1.8.1" 260 305 source = "registry+https://github.com/rust-lang/crates.io-index" 261 - checksum = "7a9d28b1d97e08915212e2e45310d47854eafa69600756fc735fb788f75199c9" 306 + checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88" 262 307 dependencies = [ 263 - "async-io", 264 - "async-lock", 265 - "autocfg", 308 + "async-io 1.13.0", 309 + "async-lock 2.8.0", 310 + "async-signal", 266 311 "blocking", 267 312 "cfg-if", 268 - "event-listener", 269 - "futures-lite", 270 - "rustix 0.37.23", 271 - "signal-hook", 313 + "event-listener 3.1.0", 314 + "futures-lite 1.13.0", 315 + "rustix 0.38.21", 272 316 "windows-sys 0.48.0", 273 317 ] 274 318 275 319 [[package]] 276 320 name = "async-recursion" 277 - version = "1.0.4" 321 + version = "1.0.5" 278 322 source = "registry+https://github.com/rust-lang/crates.io-index" 279 - checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba" 323 + checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" 280 324 dependencies = [ 281 325 "proc-macro2", 282 326 "quote", 283 - "syn 2.0.29", 327 + "syn 2.0.39", 328 + ] 329 + 330 + [[package]] 331 + name = "async-signal" 332 + version = "0.2.5" 333 + source = "registry+https://github.com/rust-lang/crates.io-index" 334 + checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5" 335 + dependencies = [ 336 + "async-io 2.2.0", 337 + "async-lock 2.8.0", 338 + "atomic-waker", 339 + "cfg-if", 340 + "futures-core", 341 + "futures-io", 342 + "rustix 0.38.21", 343 + "signal-hook-registry", 344 + "slab", 345 + "windows-sys 0.48.0", 284 346 ] 285 347 286 348 [[package]] 287 349 name = "async-task" 288 - version = "4.4.0" 350 + version = "4.5.0" 289 351 source = "registry+https://github.com/rust-lang/crates.io-index" 290 - checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae" 352 + checksum = "b4eb2cdb97421e01129ccb49169d8279ed21e829929144f4a22a6e54ac549ca1" 291 353 292 354 [[package]] 293 355 name = "async-trait" 294 - version = "0.1.73" 356 + version = "0.1.74" 295 357 source = "registry+https://github.com/rust-lang/crates.io-index" 296 - checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" 358 + checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9" 297 359 dependencies = [ 298 360 "proc-macro2", 299 361 "quote", 300 - "syn 2.0.29", 362 + "syn 2.0.39", 301 363 ] 302 364 303 365 [[package]] 304 366 name = "atomic-waker" 305 - version = "1.1.1" 367 + version = "1.1.2" 306 368 source = "registry+https://github.com/rust-lang/crates.io-index" 307 - checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3" 369 + checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 308 370 309 371 [[package]] 310 372 name = "atomicwrites" 311 - version = "0.4.1" 373 + version = "0.4.2" 312 374 source = "registry+https://github.com/rust-lang/crates.io-index" 313 - checksum = "c1163d9d7c51de51a2b79d6df5e8888d11e9df17c752ce4a285fb6ca1580734e" 375 + checksum = "f4d45f362125ed144544e57b0ec6de8fd6a296d41a6252fc4a20c0cf12e9ed3a" 314 376 dependencies = [ 315 - "rustix 0.37.23", 377 + "rustix 0.38.21", 316 378 "tempfile", 317 379 "windows-sys 0.48.0", 318 380 ] ··· 327 389 "async-trait", 328 390 "atspi-macros", 329 391 "enumflags2", 330 - "futures-lite", 392 + "futures-lite 1.13.0", 331 393 "serde", 332 394 "tracing", 333 395 "zbus", ··· 378 440 379 441 [[package]] 380 442 name = "base64" 381 - version = "0.21.2" 443 + version = "0.21.5" 382 444 source = "registry+https://github.com/rust-lang/crates.io-index" 383 - checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 445 + checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 384 446 385 447 [[package]] 386 448 name = "bit-set" ··· 411 473 412 474 [[package]] 413 475 name = "bitflags" 414 - version = "2.4.0" 476 + version = "2.4.1" 415 477 source = "registry+https://github.com/rust-lang/crates.io-index" 416 - checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 478 + checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 417 479 dependencies = [ 418 480 "serde", 419 481 ] ··· 435 497 436 498 [[package]] 437 499 name = "blocking" 438 - version = "1.3.1" 500 + version = "1.5.1" 439 501 source = "registry+https://github.com/rust-lang/crates.io-index" 440 - checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65" 502 + checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" 441 503 dependencies = [ 442 - "async-channel", 443 - "async-lock", 504 + "async-channel 2.1.0", 505 + "async-lock 3.1.0", 444 506 "async-task", 445 - "atomic-waker", 446 - "fastrand 1.9.0", 447 - "futures-lite", 448 - "log", 507 + "fastrand 2.0.1", 508 + "futures-io", 509 + "futures-lite 2.0.1", 510 + "piper", 511 + "tracing", 449 512 ] 450 513 451 514 [[package]] ··· 465 528 "libc", 466 529 "log", 467 530 "macaddr", 468 - "nix 0.26.2", 531 + "nix 0.26.4", 469 532 "num-derive", 470 533 "num-traits", 471 534 "pin-project", ··· 479 542 480 543 [[package]] 481 544 name = "bumpalo" 482 - version = "3.13.0" 545 + version = "3.14.0" 483 546 source = "registry+https://github.com/rust-lang/crates.io-index" 484 - checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 547 + checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 485 548 486 549 [[package]] 487 550 name = "bytemuck" 488 - version = "1.13.1" 551 + version = "1.14.0" 489 552 source = "registry+https://github.com/rust-lang/crates.io-index" 490 - checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" 553 + checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 491 554 dependencies = [ 492 555 "bytemuck_derive", 493 556 ] 494 557 495 558 [[package]] 496 559 name = "bytemuck_derive" 497 - version = "1.4.1" 560 + version = "1.5.0" 498 561 source = "registry+https://github.com/rust-lang/crates.io-index" 499 - checksum = "fdde5c9cd29ebd706ce1b35600920a33550e402fc998a2e53ad3b42c3c47a192" 562 + checksum = "965ab7eb5f8f97d2a083c799f3a1b994fc397b2fe2da5d1da1626ce15a39f2b1" 500 563 dependencies = [ 501 564 "proc-macro2", 502 565 "quote", 503 - "syn 2.0.29", 566 + "syn 2.0.39", 504 567 ] 505 568 506 569 [[package]] 507 570 name = "byteorder" 508 - version = "1.4.3" 571 + version = "1.5.0" 509 572 source = "registry+https://github.com/rust-lang/crates.io-index" 510 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 573 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 511 574 512 575 [[package]] 513 576 name = "bytes" 514 - version = "1.4.0" 577 + version = "1.5.0" 515 578 source = "registry+https://github.com/rust-lang/crates.io-index" 516 - checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 579 + checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 517 580 518 581 [[package]] 519 582 name = "calloop" 520 - version = "0.10.6" 583 + version = "0.12.3" 521 584 source = "registry+https://github.com/rust-lang/crates.io-index" 522 - checksum = "52e0d00eb1ea24371a97d2da6201c6747a633dc6dc1988ef503403b4c59504a8" 585 + checksum = "7b50b5a44d59a98c55a9eeb518f39bf7499ba19fd98ee7d22618687f3f10adbf" 523 586 dependencies = [ 524 - "bitflags 1.3.2", 587 + "bitflags 2.4.1", 525 588 "log", 526 - "nix 0.25.1", 527 - "slotmap", 589 + "polling 3.3.0", 590 + "rustix 0.38.21", 591 + "slab", 528 592 "thiserror", 529 - "vec_map", 593 + ] 594 + 595 + [[package]] 596 + name = "calloop-wayland-source" 597 + version = "0.2.0" 598 + source = "registry+https://github.com/rust-lang/crates.io-index" 599 + checksum = "0f0ea9b9476c7fad82841a8dbb380e2eae480c21910feba80725b46931ed8f02" 600 + dependencies = [ 601 + "calloop", 602 + "rustix 0.38.21", 603 + "wayland-backend 0.3.2", 604 + "wayland-client 0.31.1", 530 605 ] 531 606 532 607 [[package]] 533 608 name = "cc" 534 - version = "1.0.83" 609 + version = "1.0.84" 535 610 source = "registry+https://github.com/rust-lang/crates.io-index" 536 - checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 611 + checksum = "0f8e7c90afad890484a21653d08b6e209ae34770fb5ee298f9c699fcc1e5c856" 537 612 dependencies = [ 538 613 "libc", 539 614 ] 540 615 541 616 [[package]] 542 617 name = "cfg-expr" 543 - version = "0.15.4" 618 + version = "0.15.5" 544 619 source = "registry+https://github.com/rust-lang/crates.io-index" 545 - checksum = "b40ccee03b5175c18cde8f37e7d2a33bcef6f8ec8f7cc0d81090d1bb380949c9" 620 + checksum = "03915af431787e6ffdcc74c645077518c6b6e01f80b761e0fbbfa288536311b3" 546 621 dependencies = [ 547 622 "smallvec", 548 623 "target-lexicon", ··· 562 637 563 638 [[package]] 564 639 name = "chrono" 565 - version = "0.4.26" 640 + version = "0.4.31" 566 641 source = "registry+https://github.com/rust-lang/crates.io-index" 567 - checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" 642 + checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" 568 643 dependencies = [ 569 644 "android-tzdata", 570 645 "iana-time-zone", 571 646 "js-sys", 572 647 "num-traits", 573 - "time 0.1.45", 574 648 "wasm-bindgen", 575 - "winapi", 649 + "windows-targets 0.48.5", 576 650 ] 577 651 578 652 [[package]] ··· 593 667 594 668 [[package]] 595 669 name = "cocoa-foundation" 596 - version = "0.1.1" 670 + version = "0.1.2" 597 671 source = "registry+https://github.com/rust-lang/crates.io-index" 598 - checksum = "931d3837c286f56e3c58423ce4eba12d08db2374461a785c86f672b08b5650d6" 672 + checksum = "8c6234cbb2e4c785b456c0644748b1ac416dd045799740356f8363dfe00c93f7" 599 673 dependencies = [ 600 674 "bitflags 1.3.2", 601 675 "block", 602 676 "core-foundation", 603 677 "core-graphics-types", 604 - "foreign-types", 605 678 "libc", 606 679 "objc", 607 680 ] ··· 630 703 631 704 [[package]] 632 705 name = "concurrent-queue" 633 - version = "2.2.0" 706 + version = "2.3.0" 634 707 source = "registry+https://github.com/rust-lang/crates.io-index" 635 - checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c" 708 + checksum = "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400" 636 709 dependencies = [ 637 710 "crossbeam-utils", 638 711 ] ··· 688 761 "freedesktop-icons", 689 762 "futures", 690 763 "futures-util", 691 - "i18n-embed", 692 - "i18n-embed-fl", 764 + "i18n-embed 0.13.9", 765 + "i18n-embed-fl 0.6.7", 693 766 "itertools 0.11.0", 694 767 "libcosmic", 695 768 "log", 696 - "nix 0.26.2", 769 + "nix 0.26.4", 697 770 "once_cell", 698 771 "pretty_env_logger 0.5.0", 699 772 "rand", 700 773 "ron", 701 - "rust-embed", 702 - "rust-embed-utils", 774 + "rust-embed 6.8.1", 775 + "rust-embed-utils 7.8.1", 703 776 "serde", 704 777 "shlex", 705 778 "tokio", ··· 712 785 version = "0.1.0" 713 786 dependencies = [ 714 787 "cosmic-time", 715 - "i18n-embed", 716 - "i18n-embed-fl", 788 + "i18n-embed 0.13.9", 789 + "i18n-embed-fl 0.6.7", 717 790 "icon-loader", 718 791 "libcosmic", 719 792 "libpulse-binding", 720 793 "libpulse-glib-binding", 721 - "log", 794 + "mpris2-zbus", 722 795 "pretty_env_logger 0.4.0", 723 - "rust-embed", 724 - "rust-embed-utils", 796 + "rust-embed 6.8.1", 797 + "rust-embed-utils 7.8.1", 798 + "serde", 725 799 "tokio", 800 + "tracing", 801 + "url", 802 + "zbus", 726 803 ] 727 804 728 805 [[package]] ··· 731 808 dependencies = [ 732 809 "cosmic-time", 733 810 "futures", 734 - "i18n-embed", 735 - "i18n-embed-fl", 811 + "i18n-embed 0.13.9", 812 + "i18n-embed-fl 0.6.7", 736 813 "libcosmic", 737 814 "log", 738 815 "once_cell", 739 816 "pretty_env_logger 0.5.0", 740 - "rust-embed", 817 + "rust-embed 6.8.1", 741 818 "tokio", 742 819 "zbus", 743 820 ] ··· 750 827 "bluer", 751 828 "futures", 752 829 "futures-util", 753 - "i18n-embed", 754 - "i18n-embed-fl", 830 + "i18n-embed 0.13.9", 831 + "i18n-embed-fl 0.6.7", 755 832 "itertools 0.10.5", 756 833 "libcosmic", 757 834 "log", 758 835 "once_cell", 759 836 "pretty_env_logger 0.5.0", 760 837 "rand", 761 - "rust-embed", 838 + "rust-embed 6.8.1", 762 839 "slotmap", 763 840 "tokio", 764 841 ] ··· 767 844 name = "cosmic-applet-graphics" 768 845 version = "0.1.0" 769 846 dependencies = [ 770 - "i18n-embed", 771 - "i18n-embed-fl", 847 + "i18n-embed 0.13.9", 848 + "i18n-embed-fl 0.6.7", 772 849 "libcosmic", 773 850 "once_cell", 774 - "rust-embed", 851 + "rust-embed 6.8.1", 775 852 "tracing", 776 853 "zbus", 777 854 ] ··· 785 862 "cosmic-time", 786 863 "futures", 787 864 "futures-util", 788 - "i18n-embed", 789 - "i18n-embed-fl", 865 + "i18n-embed 0.13.9", 866 + "i18n-embed-fl 0.6.7", 790 867 "itertools 0.10.5", 791 868 "libcosmic", 792 869 "log", 793 870 "pretty_env_logger 0.5.0", 794 - "rust-embed", 795 - "rust-embed-utils", 871 + "rust-embed 6.8.1", 872 + "rust-embed-utils 7.8.1", 796 873 "slotmap", 797 874 "tokio", 798 875 "zbus", ··· 807 884 "cosmic-notifications-config", 808 885 "cosmic-notifications-util", 809 886 "cosmic-time", 810 - "i18n-embed", 811 - "i18n-embed-fl", 887 + "i18n-embed 0.13.9", 888 + "i18n-embed-fl 0.6.7", 812 889 "libcosmic", 813 - "nix 0.26.2", 890 + "nix 0.26.4", 814 891 "ron", 815 - "rust-embed", 816 - "rust-embed-utils", 892 + "rust-embed 6.8.1", 893 + "rust-embed-utils 7.8.1", 817 894 "sendfd", 818 895 "tokio", 819 896 "tracing", ··· 826 903 name = "cosmic-applet-power" 827 904 version = "0.1.0" 828 905 dependencies = [ 829 - "i18n-embed", 830 - "i18n-embed-fl", 906 + "i18n-embed 0.13.9", 907 + "i18n-embed-fl 0.6.7", 831 908 "icon-loader", 832 909 "libcosmic", 833 910 "libpulse-binding", 834 911 "libpulse-glib-binding", 835 912 "logind-zbus", 836 - "nix 0.26.2", 913 + "nix 0.26.4", 837 914 "once_cell", 838 - "rust-embed", 839 - "rust-embed-utils", 915 + "rust-embed 6.8.1", 916 + "rust-embed-utils 7.8.1", 840 917 "tokio", 841 918 "zbus", 842 919 ] ··· 850 927 "serde", 851 928 "tokio", 852 929 "zbus", 930 + ] 931 + 932 + [[package]] 933 + name = "cosmic-applet-tiling" 934 + version = "0.1.0" 935 + dependencies = [ 936 + "cosmic-time", 937 + "i18n-embed 0.14.1", 938 + "i18n-embed-fl 0.7.0", 939 + "libcosmic", 940 + "once_cell", 941 + "rust-embed 8.0.0", 942 + "tracing", 853 943 ] 854 944 855 945 [[package]] ··· 857 947 version = "0.1.0" 858 948 dependencies = [ 859 949 "chrono", 950 + "i18n-embed 0.13.9", 951 + "i18n-embed-fl 0.6.7", 860 952 "icon-loader", 861 953 "libcosmic", 862 - "nix 0.26.2", 954 + "nix 0.26.4", 955 + "once_cell", 956 + "rust-embed 6.8.1", 863 957 ] 864 958 865 959 [[package]] ··· 870 964 "cosmic-client-toolkit", 871 965 "cosmic-protocols", 872 966 "futures", 873 - "i18n-embed", 874 - "i18n-embed-fl", 967 + "i18n-embed 0.13.9", 968 + "i18n-embed-fl 0.6.7", 875 969 "libcosmic", 876 970 "log", 877 - "nix 0.26.2", 971 + "nix 0.26.4", 878 972 "once_cell", 879 973 "pretty_env_logger 0.5.0", 880 - "rust-embed", 974 + "rust-embed 6.8.1", 881 975 "xdg", 882 976 ] 883 977 884 978 [[package]] 885 979 name = "cosmic-client-toolkit" 886 980 version = "0.1.0" 887 - source = "git+https://github.com/pop-os/cosmic-protocols?rev=e39748e#e39748e1312d74ab8b4c26f4813b858413500b59" 981 + source = "git+https://github.com/pop-os/cosmic-protocols?rev=5faec87#5faec87be0a1fd1d72e99431ac8e6647ff1dfd41" 888 982 dependencies = [ 889 983 "cosmic-protocols", 890 - "smithay-client-toolkit 0.17.0", 891 - "wayland-client 0.30.2", 984 + "smithay-client-toolkit 0.18.0", 985 + "wayland-client 0.31.1", 892 986 ] 893 987 894 988 [[package]] 895 989 name = "cosmic-config" 896 990 version = "0.1.0" 897 - source = "git+https://github.com/pop-os/libcosmic#fcdefcd8fbca53705ba761b97e25453bc35e40c0" 991 + source = "git+https://github.com/pop-os/libcosmic#405aaf134d00a6aef223aef3799b3904b1050b0c" 898 992 dependencies = [ 899 993 "atomicwrites", 900 994 "cosmic-config-derive", ··· 908 1002 [[package]] 909 1003 name = "cosmic-config-derive" 910 1004 version = "0.1.0" 911 - source = "git+https://github.com/pop-os/libcosmic#fcdefcd8fbca53705ba761b97e25453bc35e40c0" 1005 + source = "git+https://github.com/pop-os/libcosmic#405aaf134d00a6aef223aef3799b3904b1050b0c" 912 1006 dependencies = [ 913 1007 "quote", 914 1008 "syn 1.0.109", ··· 917 1011 [[package]] 918 1012 name = "cosmic-dbus-networkmanager" 919 1013 version = "0.1.0" 920 - source = "git+https://github.com/pop-os/dbus-settings-bindings?branch=main#dd3d4935a9e10eac592a974b561c71030ac40c3b" 1014 + source = "git+https://github.com/pop-os/dbus-settings-bindings#c9cb2c256eb956e0c09cb5c4409b0bb59e455b7f" 921 1015 dependencies = [ 922 - "bitflags 1.3.2", 1016 + "bitflags 2.4.1", 923 1017 "derive_builder", 924 1018 "procfs", 925 - "time 0.3.27", 1019 + "thiserror", 1020 + "time", 926 1021 "zbus", 927 1022 "zvariant", 928 1023 ] ··· 930 1025 [[package]] 931 1026 name = "cosmic-notifications-config" 932 1027 version = "0.1.0" 933 - source = "git+https://github.com/pop-os/cosmic-notifications#35fd49d2b8147859d8b08d68b346096c356a8d15" 1028 + source = "git+https://github.com/pop-os/cosmic-notifications#886042bec827ba40257a31a567d7124904dd6a29" 934 1029 dependencies = [ 935 1030 "cosmic-config", 936 1031 "serde", ··· 939 1034 [[package]] 940 1035 name = "cosmic-notifications-util" 941 1036 version = "0.1.0" 942 - source = "git+https://github.com/pop-os/cosmic-notifications#35fd49d2b8147859d8b08d68b346096c356a8d15" 1037 + source = "git+https://github.com/pop-os/cosmic-notifications#886042bec827ba40257a31a567d7124904dd6a29" 943 1038 dependencies = [ 944 1039 "bytemuck", 945 1040 "fast_image_resize", ··· 960 1055 [[package]] 961 1056 name = "cosmic-panel-config" 962 1057 version = "0.1.0" 963 - source = "git+https://github.com/pop-os/cosmic-panel#edfd24ed3b712de397057906924e4f7e8b6252c4" 1058 + source = "git+https://github.com/pop-os/cosmic-panel#f07cccbd2dc15ede5aeb7646c61c6f62cb32db0c" 964 1059 dependencies = [ 965 1060 "anyhow", 966 1061 "cosmic-config", ··· 974 1069 [[package]] 975 1070 name = "cosmic-protocols" 976 1071 version = "0.1.0" 977 - source = "git+https://github.com/pop-os/cosmic-protocols?rev=e39748e#e39748e1312d74ab8b4c26f4813b858413500b59" 1072 + source = "git+https://github.com/pop-os/cosmic-protocols?rev=5faec87#5faec87be0a1fd1d72e99431ac8e6647ff1dfd41" 978 1073 dependencies = [ 979 - "bitflags 1.3.2", 980 - "wayland-backend", 981 - "wayland-client 0.30.2", 982 - "wayland-protocols 0.30.1", 983 - "wayland-scanner 0.30.1", 1074 + "bitflags 2.4.1", 1075 + "wayland-backend 0.3.2", 1076 + "wayland-client 0.31.1", 1077 + "wayland-protocols 0.31.0", 1078 + "wayland-scanner 0.31.0", 984 1079 "wayland-server", 985 1080 ] 986 1081 ··· 1007 1102 [[package]] 1008 1103 name = "cosmic-theme" 1009 1104 version = "0.1.0" 1010 - source = "git+https://github.com/pop-os/libcosmic#fcdefcd8fbca53705ba761b97e25453bc35e40c0" 1105 + source = "git+https://github.com/pop-os/libcosmic#405aaf134d00a6aef223aef3799b3904b1050b0c" 1011 1106 dependencies = [ 1012 1107 "almost", 1013 1108 "cosmic-config", ··· 1021 1116 [[package]] 1022 1117 name = "cosmic-time" 1023 1118 version = "0.3.0" 1024 - source = "git+https://github.com/pop-os/cosmic-time#4013946f9bd9d2e53bf44310b7db783fc8105b79" 1119 + source = "git+https://github.com/pop-os/cosmic-time#71116b2eefb536bedbd3438e70cba49d54c3a5d5" 1025 1120 dependencies = [ 1026 1121 "float-cmp", 1027 1122 "libcosmic", ··· 1030 1125 1031 1126 [[package]] 1032 1127 name = "cpufeatures" 1033 - version = "0.2.9" 1128 + version = "0.2.11" 1034 1129 source = "registry+https://github.com/rust-lang/crates.io-index" 1035 - checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 1130 + checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 1036 1131 dependencies = [ 1037 1132 "libc", 1038 1133 ] ··· 1106 1201 ] 1107 1202 1108 1203 [[package]] 1204 + name = "css-color" 1205 + version = "0.2.5" 1206 + source = "registry+https://github.com/rust-lang/crates.io-index" 1207 + checksum = "d101c65424c856131a3cb818da2ddde03500dc3656972269cdf79f018ef77eb4" 1208 + 1209 + [[package]] 1109 1210 name = "csscolorparser" 1110 1211 version = "0.6.2" 1111 1212 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1117 1218 1118 1219 [[package]] 1119 1220 name = "cursor-icon" 1120 - version = "1.0.0" 1221 + version = "1.1.0" 1121 1222 source = "registry+https://github.com/rust-lang/crates.io-index" 1122 - checksum = "740bb192a8e2d1350119916954f4409ee7f62f149b536911eeb78ba5a20526bf" 1223 + checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991" 1123 1224 1124 1225 [[package]] 1125 1226 name = "custom_debug" ··· 1197 1298 "proc-macro2", 1198 1299 "quote", 1199 1300 "strsim", 1200 - "syn 2.0.29", 1301 + "syn 2.0.39", 1201 1302 ] 1202 1303 1203 1304 [[package]] ··· 1219 1320 dependencies = [ 1220 1321 "darling_core 0.20.3", 1221 1322 "quote", 1222 - "syn 2.0.29", 1323 + "syn 2.0.39", 1223 1324 ] 1224 1325 1225 1326 [[package]] 1226 1327 name = "dashmap" 1227 - version = "5.5.1" 1328 + version = "5.5.3" 1228 1329 source = "registry+https://github.com/rust-lang/crates.io-index" 1229 - checksum = "edd72493923899c6f10c641bdbdeddc7183d6396641d99c1a0d1597f37f92e28" 1330 + checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 1230 1331 dependencies = [ 1231 1332 "cfg-if", 1232 - "hashbrown 0.14.0", 1333 + "hashbrown 0.14.2", 1233 1334 "lock_api", 1234 1335 "once_cell", 1235 - "parking_lot_core 0.9.8", 1336 + "parking_lot_core 0.9.9", 1236 1337 ] 1237 1338 1238 1339 [[package]] ··· 1276 1377 1277 1378 [[package]] 1278 1379 name = "deranged" 1279 - version = "0.3.8" 1380 + version = "0.3.9" 1280 1381 source = "registry+https://github.com/rust-lang/crates.io-index" 1281 - checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946" 1382 + checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" 1383 + dependencies = [ 1384 + "powerfmt", 1385 + ] 1282 1386 1283 1387 [[package]] 1284 1388 name = "derivative" ··· 1331 1435 "darling 0.20.3", 1332 1436 "proc-macro2", 1333 1437 "quote", 1334 - "syn 2.0.29", 1438 + "syn 2.0.39", 1335 1439 ] 1336 1440 1337 1441 [[package]] ··· 1402 1506 dependencies = [ 1403 1507 "proc-macro2", 1404 1508 "quote", 1405 - "syn 2.0.29", 1509 + "syn 2.0.39", 1406 1510 ] 1407 1511 1408 1512 [[package]] ··· 1411 1515 source = "registry+https://github.com/rust-lang/crates.io-index" 1412 1516 checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 1413 1517 dependencies = [ 1414 - "libloading 0.8.0", 1518 + "libloading 0.8.1", 1415 1519 ] 1416 1520 1417 1521 [[package]] ··· 1445 1549 1446 1550 [[package]] 1447 1551 name = "enumflags2" 1448 - version = "0.7.7" 1552 + version = "0.7.8" 1449 1553 source = "registry+https://github.com/rust-lang/crates.io-index" 1450 - checksum = "c041f5090df68b32bcd905365fd51769c8b9d553fe87fde0b683534f10c01bd2" 1554 + checksum = "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939" 1451 1555 dependencies = [ 1452 1556 "enumflags2_derive", 1453 1557 "serde", ··· 1455 1559 1456 1560 [[package]] 1457 1561 name = "enumflags2_derive" 1458 - version = "0.7.7" 1562 + version = "0.7.8" 1459 1563 source = "registry+https://github.com/rust-lang/crates.io-index" 1460 - checksum = "5e9a1f9f7d83e59740248a6e14ecf93929ade55027844dfcea78beafccc15745" 1564 + checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246" 1461 1565 dependencies = [ 1462 1566 "proc-macro2", 1463 1567 "quote", 1464 - "syn 2.0.29", 1568 + "syn 2.0.39", 1465 1569 ] 1466 1570 1467 1571 [[package]] ··· 1479 1583 1480 1584 [[package]] 1481 1585 name = "env_logger" 1482 - version = "0.10.0" 1586 + version = "0.10.1" 1483 1587 source = "registry+https://github.com/rust-lang/crates.io-index" 1484 - checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 1588 + checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece" 1485 1589 dependencies = [ 1486 1590 "humantime 2.1.0", 1487 1591 "is-terminal", ··· 1498 1602 1499 1603 [[package]] 1500 1604 name = "errno" 1501 - version = "0.3.2" 1605 + version = "0.3.6" 1502 1606 source = "registry+https://github.com/rust-lang/crates.io-index" 1503 - checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" 1607 + checksum = "7c18ee0ed65a5f1f81cac6b1d213b69c35fa47d4252ad41f1486dbd8226fe36e" 1504 1608 dependencies = [ 1505 - "errno-dragonfly", 1506 1609 "libc", 1507 1610 "windows-sys 0.48.0", 1508 1611 ] 1509 1612 1510 1613 [[package]] 1511 - name = "errno-dragonfly" 1512 - version = "0.1.2" 1513 - source = "registry+https://github.com/rust-lang/crates.io-index" 1514 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 1515 - dependencies = [ 1516 - "cc", 1517 - "libc", 1518 - ] 1519 - 1520 - [[package]] 1521 1614 name = "etagere" 1522 1615 version = "0.2.8" 1523 1616 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1543 1636 checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1544 1637 1545 1638 [[package]] 1639 + name = "event-listener" 1640 + version = "3.1.0" 1641 + source = "registry+https://github.com/rust-lang/crates.io-index" 1642 + checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2" 1643 + dependencies = [ 1644 + "concurrent-queue", 1645 + "parking", 1646 + "pin-project-lite", 1647 + ] 1648 + 1649 + [[package]] 1650 + name = "event-listener-strategy" 1651 + version = "0.3.0" 1652 + source = "registry+https://github.com/rust-lang/crates.io-index" 1653 + checksum = "d96b852f1345da36d551b9473fa1e2b1eb5c5195585c6c018118bc92a8d91160" 1654 + dependencies = [ 1655 + "event-listener 3.1.0", 1656 + "pin-project-lite", 1657 + ] 1658 + 1659 + [[package]] 1546 1660 name = "exr" 1547 1661 version = "1.6.4" 1548 1662 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1585 1699 1586 1700 [[package]] 1587 1701 name = "fastrand" 1588 - version = "2.0.0" 1702 + version = "2.0.1" 1589 1703 source = "registry+https://github.com/rust-lang/crates.io-index" 1590 - checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" 1704 + checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 1591 1705 1592 1706 [[package]] 1593 1707 name = "fdeflate" 1594 - version = "0.3.0" 1708 + version = "0.3.1" 1595 1709 source = "registry+https://github.com/rust-lang/crates.io-index" 1596 - checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10" 1710 + checksum = "64d6dafc854908ff5da46ff3f8f473c6984119a2876a383a860246dd7841a868" 1597 1711 dependencies = [ 1598 1712 "simd-adler32", 1599 1713 ] ··· 1621 1735 1622 1736 [[package]] 1623 1737 name = "flate2" 1624 - version = "1.0.27" 1738 + version = "1.0.28" 1625 1739 source = "registry+https://github.com/rust-lang/crates.io-index" 1626 - checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010" 1740 + checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 1627 1741 dependencies = [ 1628 1742 "crc32fast", 1629 1743 "miniz_oxide", ··· 1639 1753 ] 1640 1754 1641 1755 [[package]] 1756 + name = "float_next_after" 1757 + version = "1.0.0" 1758 + source = "registry+https://github.com/rust-lang/crates.io-index" 1759 + checksum = "8bf7cc16383c4b8d58b9905a8509f02926ce3058053c056376248d958c9df1e8" 1760 + 1761 + [[package]] 1642 1762 name = "fluent" 1643 1763 version = "0.16.0" 1644 1764 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1659 1779 "intl-memoizer", 1660 1780 "intl_pluralrules", 1661 1781 "rustc-hash", 1662 - "self_cell", 1782 + "self_cell 0.10.3", 1663 1783 "smallvec", 1664 1784 "unic-langid", 1665 1785 ] ··· 1721 1841 "memmap2 0.6.2", 1722 1842 "slotmap", 1723 1843 "tinyvec", 1724 - "ttf-parser 0.19.1", 1844 + "ttf-parser 0.19.2", 1725 1845 ] 1726 1846 1727 1847 [[package]] ··· 1795 1915 1796 1916 [[package]] 1797 1917 name = "futures" 1798 - version = "0.3.28" 1918 + version = "0.3.29" 1799 1919 source = "registry+https://github.com/rust-lang/crates.io-index" 1800 - checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 1920 + checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 1801 1921 dependencies = [ 1802 1922 "futures-channel", 1803 1923 "futures-core", ··· 1810 1930 1811 1931 [[package]] 1812 1932 name = "futures-channel" 1813 - version = "0.3.28" 1933 + version = "0.3.29" 1814 1934 source = "registry+https://github.com/rust-lang/crates.io-index" 1815 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 1935 + checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 1816 1936 dependencies = [ 1817 1937 "futures-core", 1818 1938 "futures-sink", ··· 1820 1940 1821 1941 [[package]] 1822 1942 name = "futures-core" 1823 - version = "0.3.28" 1943 + version = "0.3.29" 1824 1944 source = "registry+https://github.com/rust-lang/crates.io-index" 1825 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 1945 + checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 1826 1946 1827 1947 [[package]] 1828 1948 name = "futures-executor" 1829 - version = "0.3.28" 1949 + version = "0.3.29" 1830 1950 source = "registry+https://github.com/rust-lang/crates.io-index" 1831 - checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 1951 + checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 1832 1952 dependencies = [ 1833 1953 "futures-core", 1834 1954 "futures-task", ··· 1838 1958 1839 1959 [[package]] 1840 1960 name = "futures-io" 1841 - version = "0.3.28" 1961 + version = "0.3.29" 1842 1962 source = "registry+https://github.com/rust-lang/crates.io-index" 1843 - checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 1963 + checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 1844 1964 1845 1965 [[package]] 1846 1966 name = "futures-lite" ··· 1858 1978 ] 1859 1979 1860 1980 [[package]] 1981 + name = "futures-lite" 1982 + version = "2.0.1" 1983 + source = "registry+https://github.com/rust-lang/crates.io-index" 1984 + checksum = "d3831c2651acb5177cbd83943f3d9c8912c5ad03c76afcc0e9511ba568ec5ebb" 1985 + dependencies = [ 1986 + "futures-core", 1987 + "pin-project-lite", 1988 + ] 1989 + 1990 + [[package]] 1861 1991 name = "futures-macro" 1862 - version = "0.3.28" 1992 + version = "0.3.29" 1863 1993 source = "registry+https://github.com/rust-lang/crates.io-index" 1864 - checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 1994 + checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 1865 1995 dependencies = [ 1866 1996 "proc-macro2", 1867 1997 "quote", 1868 - "syn 2.0.29", 1998 + "syn 2.0.39", 1869 1999 ] 1870 2000 1871 2001 [[package]] 1872 2002 name = "futures-sink" 1873 - version = "0.3.28" 2003 + version = "0.3.29" 1874 2004 source = "registry+https://github.com/rust-lang/crates.io-index" 1875 - checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 2005 + checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 1876 2006 1877 2007 [[package]] 1878 2008 name = "futures-task" 1879 - version = "0.3.28" 2009 + version = "0.3.29" 1880 2010 source = "registry+https://github.com/rust-lang/crates.io-index" 1881 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 2011 + checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 1882 2012 1883 2013 [[package]] 1884 2014 name = "futures-util" 1885 - version = "0.3.28" 2015 + version = "0.3.29" 1886 2016 source = "registry+https://github.com/rust-lang/crates.io-index" 1887 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 2017 + checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 1888 2018 dependencies = [ 1889 2019 "futures-channel", 1890 2020 "futures-core", ··· 1920 2050 1921 2051 [[package]] 1922 2052 name = "getrandom" 1923 - version = "0.2.10" 2053 + version = "0.2.11" 1924 2054 source = "registry+https://github.com/rust-lang/crates.io-index" 1925 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 2055 + checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 1926 2056 dependencies = [ 1927 2057 "cfg-if", 1928 2058 "js-sys", 1929 2059 "libc", 1930 - "wasi 0.11.0+wasi-snapshot-preview1", 2060 + "wasi", 1931 2061 "wasm-bindgen", 1932 2062 ] 1933 2063 ··· 1969 2099 1970 2100 [[package]] 1971 2101 name = "glam" 1972 - version = "0.24.1" 2102 + version = "0.24.2" 1973 2103 source = "registry+https://github.com/rust-lang/crates.io-index" 1974 - checksum = "42218cb640844e3872cc3c153dc975229e080a6c4733b34709ef445610550226" 2104 + checksum = "b5418c17512bdf42730f9032c74e1ae39afc408745ebb2acf72fbc4691c17945" 1975 2105 1976 2106 [[package]] 1977 2107 name = "glib" 1978 - version = "0.18.1" 2108 + version = "0.18.3" 1979 2109 source = "registry+https://github.com/rust-lang/crates.io-index" 1980 - checksum = "331156127e8166dd815cf8d2db3a5beb492610c716c03ee6db4f2d07092af0a7" 2110 + checksum = "58cf801b6f7829fa76db37449ab67c9c98a2b1bf21076d9113225621e61a0fa6" 1981 2111 dependencies = [ 1982 - "bitflags 2.4.0", 2112 + "bitflags 2.4.1", 1983 2113 "futures-channel", 1984 2114 "futures-core", 1985 2115 "futures-executor", ··· 1997 2127 1998 2128 [[package]] 1999 2129 name = "glib-macros" 2000 - version = "0.18.0" 2130 + version = "0.18.3" 2001 2131 source = "registry+https://github.com/rust-lang/crates.io-index" 2002 - checksum = "179643c50bf28d20d2f6eacd2531a88f2f5d9747dd0b86b8af1e8bb5dd0de3c0" 2132 + checksum = "72793962ceece3863c2965d7f10c8786323b17c7adea75a515809fa20ab799a5" 2003 2133 dependencies = [ 2004 2134 "heck", 2005 - "proc-macro-crate", 2135 + "proc-macro-crate 2.0.0", 2006 2136 "proc-macro-error", 2007 2137 "proc-macro2", 2008 2138 "quote", 2009 - "syn 2.0.29", 2139 + "syn 2.0.39", 2010 2140 ] 2011 2141 2012 2142 [[package]] ··· 2083 2213 "log", 2084 2214 "thiserror", 2085 2215 "winapi", 2086 - "windows 0.44.0", 2216 + "windows", 2087 2217 ] 2088 2218 2089 2219 [[package]] 2090 2220 name = "gpu-descriptor" 2091 - version = "0.2.3" 2221 + version = "0.2.4" 2092 2222 source = "registry+https://github.com/rust-lang/crates.io-index" 2093 - checksum = "0b0c02e1ba0bdb14e965058ca34e09c020f8e507a760df1121728e0aef68d57a" 2223 + checksum = "cc11df1ace8e7e564511f53af41f3e42ddc95b56fd07b3f4445d2a6048bc682c" 2094 2224 dependencies = [ 2095 - "bitflags 1.3.2", 2225 + "bitflags 2.4.1", 2096 2226 "gpu-descriptor-types", 2097 - "hashbrown 0.12.3", 2227 + "hashbrown 0.14.2", 2098 2228 ] 2099 2229 2100 2230 [[package]] 2101 2231 name = "gpu-descriptor-types" 2102 - version = "0.1.1" 2232 + version = "0.1.2" 2103 2233 source = "registry+https://github.com/rust-lang/crates.io-index" 2104 - checksum = "363e3677e55ad168fef68cf9de3a4a310b53124c5e784c53a1d70e92d23f2126" 2234 + checksum = "6bf0b36e6f090b7e1d8a4b49c0cb81c1f8376f72198c65dd3ad9ff3556b8b78c" 2105 2235 dependencies = [ 2106 - "bitflags 1.3.2", 2236 + "bitflags 2.4.1", 2107 2237 ] 2238 + 2239 + [[package]] 2240 + name = "grid" 2241 + version = "0.11.0" 2242 + source = "registry+https://github.com/rust-lang/crates.io-index" 2243 + checksum = "1df00eed8d1f0db937f6be10e46e8072b0671accb504cf0f959c5c52c679f5b9" 2108 2244 2109 2245 [[package]] 2110 2246 name = "guillotiere" ··· 2132 2268 source = "registry+https://github.com/rust-lang/crates.io-index" 2133 2269 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2134 2270 dependencies = [ 2135 - "ahash 0.7.6", 2271 + "ahash 0.7.7", 2136 2272 ] 2137 2273 2138 2274 [[package]] 2139 2275 name = "hashbrown" 2140 - version = "0.14.0" 2276 + version = "0.14.2" 2141 2277 source = "registry+https://github.com/rust-lang/crates.io-index" 2142 - checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" 2278 + checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156" 2143 2279 dependencies = [ 2144 - "ahash 0.8.3", 2280 + "ahash 0.8.6", 2145 2281 "allocator-api2", 2146 2282 ] 2147 2283 ··· 2177 2313 2178 2314 [[package]] 2179 2315 name = "hermit-abi" 2180 - version = "0.3.2" 2316 + version = "0.3.3" 2181 2317 source = "registry+https://github.com/rust-lang/crates.io-index" 2182 - checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 2318 + checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 2183 2319 2184 2320 [[package]] 2185 2321 name = "hex" ··· 2210 2346 2211 2347 [[package]] 2212 2348 name = "i18n-config" 2213 - version = "0.4.4" 2349 + version = "0.4.6" 2214 2350 source = "registry+https://github.com/rust-lang/crates.io-index" 2215 - checksum = "b987084cadad6e2f2b1e6ea62c44123591a3c044793a1beabf71a8356ea768d5" 2351 + checksum = "0c9ce3c48cbc21fd5b22b9331f32b5b51f6ad85d969b99e793427332e76e7640" 2216 2352 dependencies = [ 2217 2353 "log", 2218 2354 "serde", 2219 2355 "serde_derive", 2220 2356 "thiserror", 2221 - "toml 0.7.6", 2357 + "toml 0.8.8", 2222 2358 "unic-langid", 2223 2359 ] 2224 2360 ··· 2238 2374 "locale_config", 2239 2375 "log", 2240 2376 "parking_lot 0.12.1", 2241 - "rust-embed", 2377 + "rust-embed 6.8.1", 2378 + "thiserror", 2379 + "unic-langid", 2380 + "walkdir", 2381 + ] 2382 + 2383 + [[package]] 2384 + name = "i18n-embed" 2385 + version = "0.14.1" 2386 + source = "registry+https://github.com/rust-lang/crates.io-index" 2387 + checksum = "94205d95764f5bb9db9ea98fa77f89653365ca748e27161f5bbea2ffd50e459c" 2388 + dependencies = [ 2389 + "arc-swap", 2390 + "fluent", 2391 + "fluent-langneg", 2392 + "fluent-syntax", 2393 + "i18n-embed-impl", 2394 + "intl-memoizer", 2395 + "lazy_static", 2396 + "locale_config", 2397 + "log", 2398 + "parking_lot 0.12.1", 2399 + "rust-embed 8.0.0", 2242 2400 "thiserror", 2243 2401 "unic-langid", 2244 2402 "walkdir", ··· 2255 2413 "fluent", 2256 2414 "fluent-syntax", 2257 2415 "i18n-config", 2258 - "i18n-embed", 2416 + "i18n-embed 0.13.9", 2417 + "lazy_static", 2418 + "proc-macro-error", 2419 + "proc-macro2", 2420 + "quote", 2421 + "strsim", 2422 + "syn 2.0.39", 2423 + "unic-langid", 2424 + ] 2425 + 2426 + [[package]] 2427 + name = "i18n-embed-fl" 2428 + version = "0.7.0" 2429 + source = "registry+https://github.com/rust-lang/crates.io-index" 2430 + checksum = "9fc1f8715195dffc4caddcf1cf3128da15fe5d8a137606ea8856c9300047d5a2" 2431 + dependencies = [ 2432 + "dashmap", 2433 + "find-crate", 2434 + "fluent", 2435 + "fluent-syntax", 2436 + "i18n-config", 2437 + "i18n-embed 0.14.1", 2259 2438 "lazy_static", 2260 2439 "proc-macro-error", 2261 2440 "proc-macro2", 2262 2441 "quote", 2263 2442 "strsim", 2264 - "syn 2.0.29", 2443 + "syn 2.0.39", 2265 2444 "unic-langid", 2266 2445 ] 2267 2446 2268 2447 [[package]] 2269 2448 name = "i18n-embed-impl" 2270 - version = "0.8.1" 2449 + version = "0.8.2" 2271 2450 source = "registry+https://github.com/rust-lang/crates.io-index" 2272 - checksum = "e9a95d065e6be4499e50159172395559a388d20cf13c84c77e4a1e341786f219" 2451 + checksum = "a2a4d5bff745c9a6e1459c490059281b353a4ab0a4e1e58b3eeeaef71f97d07b" 2273 2452 dependencies = [ 2274 2453 "find-crate", 2275 2454 "i18n-config", 2276 2455 "proc-macro2", 2277 2456 "quote", 2278 - "syn 1.0.109", 2457 + "syn 2.0.39", 2279 2458 ] 2280 2459 2281 2460 [[package]] 2282 2461 name = "iana-time-zone" 2283 - version = "0.1.57" 2462 + version = "0.1.58" 2284 2463 source = "registry+https://github.com/rust-lang/crates.io-index" 2285 - checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" 2464 + checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" 2286 2465 dependencies = [ 2287 2466 "android_system_properties", 2288 2467 "core-foundation-sys", 2289 2468 "iana-time-zone-haiku", 2290 2469 "js-sys", 2291 2470 "wasm-bindgen", 2292 - "windows 0.48.0", 2471 + "windows-core", 2293 2472 ] 2294 2473 2295 2474 [[package]] ··· 2304 2483 [[package]] 2305 2484 name = "iced" 2306 2485 version = "0.10.0" 2307 - source = "git+https://github.com/pop-os/libcosmic#fcdefcd8fbca53705ba761b97e25453bc35e40c0" 2486 + source = "git+https://github.com/pop-os/libcosmic#405aaf134d00a6aef223aef3799b3904b1050b0c" 2308 2487 dependencies = [ 2309 2488 "iced_accessibility", 2310 2489 "iced_core", ··· 2319 2498 [[package]] 2320 2499 name = "iced_accessibility" 2321 2500 version = "0.1.0" 2322 - source = "git+https://github.com/pop-os/libcosmic#fcdefcd8fbca53705ba761b97e25453bc35e40c0" 2501 + source = "git+https://github.com/pop-os/libcosmic#405aaf134d00a6aef223aef3799b3904b1050b0c" 2323 2502 dependencies = [ 2324 2503 "accesskit", 2325 2504 "accesskit_unix", ··· 2328 2507 [[package]] 2329 2508 name = "iced_core" 2330 2509 version = "0.10.0" 2331 - source = "git+https://github.com/pop-os/libcosmic#fcdefcd8fbca53705ba761b97e25453bc35e40c0" 2510 + source = "git+https://github.com/pop-os/libcosmic#405aaf134d00a6aef223aef3799b3904b1050b0c" 2332 2511 dependencies = [ 2333 2512 "bitflags 1.3.2", 2334 2513 "iced_accessibility", 2335 2514 "instant", 2336 2515 "log", 2337 2516 "palette", 2338 - "smithay-client-toolkit 0.17.0", 2517 + "smithay-client-toolkit 0.18.0", 2339 2518 "thiserror", 2340 2519 "twox-hash", 2341 2520 ] ··· 2343 2522 [[package]] 2344 2523 name = "iced_futures" 2345 2524 version = "0.7.0" 2346 - source = "git+https://github.com/pop-os/libcosmic#fcdefcd8fbca53705ba761b97e25453bc35e40c0" 2525 + source = "git+https://github.com/pop-os/libcosmic#405aaf134d00a6aef223aef3799b3904b1050b0c" 2347 2526 dependencies = [ 2348 2527 "futures", 2349 2528 "iced_core", ··· 2356 2535 [[package]] 2357 2536 name = "iced_graphics" 2358 2537 version = "0.9.0" 2359 - source = "git+https://github.com/pop-os/libcosmic#fcdefcd8fbca53705ba761b97e25453bc35e40c0" 2538 + source = "git+https://github.com/pop-os/libcosmic#405aaf134d00a6aef223aef3799b3904b1050b0c" 2360 2539 dependencies = [ 2361 2540 "bitflags 1.3.2", 2362 2541 "bytemuck", ··· 2366 2545 "image", 2367 2546 "kamadak-exif", 2368 2547 "log", 2548 + "lyon_path", 2369 2549 "raw-window-handle", 2370 2550 "thiserror", 2371 2551 ] ··· 2373 2553 [[package]] 2374 2554 name = "iced_renderer" 2375 2555 version = "0.1.0" 2376 - source = "git+https://github.com/pop-os/libcosmic#fcdefcd8fbca53705ba761b97e25453bc35e40c0" 2556 + source = "git+https://github.com/pop-os/libcosmic#405aaf134d00a6aef223aef3799b3904b1050b0c" 2377 2557 dependencies = [ 2378 2558 "iced_graphics", 2379 2559 "iced_tiny_skia", ··· 2386 2566 [[package]] 2387 2567 name = "iced_runtime" 2388 2568 version = "0.1.1" 2389 - source = "git+https://github.com/pop-os/libcosmic#fcdefcd8fbca53705ba761b97e25453bc35e40c0" 2569 + source = "git+https://github.com/pop-os/libcosmic#405aaf134d00a6aef223aef3799b3904b1050b0c" 2390 2570 dependencies = [ 2391 2571 "iced_accessibility", 2392 2572 "iced_core", 2393 2573 "iced_futures", 2394 - "smithay-client-toolkit 0.17.0", 2574 + "smithay-client-toolkit 0.18.0", 2395 2575 "thiserror", 2396 2576 ] 2397 2577 2398 2578 [[package]] 2399 2579 name = "iced_sctk" 2400 2580 version = "0.1.0" 2401 - source = "git+https://github.com/pop-os/libcosmic#fcdefcd8fbca53705ba761b97e25453bc35e40c0" 2581 + source = "git+https://github.com/pop-os/libcosmic#405aaf134d00a6aef223aef3799b3904b1050b0c" 2402 2582 dependencies = [ 2403 2583 "enum-repr", 2404 2584 "float-cmp", ··· 2408 2588 "iced_runtime", 2409 2589 "iced_style", 2410 2590 "itertools 0.10.5", 2591 + "lazy_static", 2411 2592 "raw-window-handle", 2412 - "smithay-client-toolkit 0.17.0", 2593 + "smithay-client-toolkit 0.18.0", 2413 2594 "smithay-clipboard", 2414 2595 "thiserror", 2415 2596 "tracing", 2416 - "wayland-backend", 2417 - "wayland-protocols 0.30.1", 2597 + "wayland-backend 0.3.2", 2598 + "wayland-protocols 0.31.0", 2599 + "xkeysym", 2418 2600 ] 2419 2601 2420 2602 [[package]] 2421 2603 name = "iced_style" 2422 2604 version = "0.9.0" 2423 - source = "git+https://github.com/pop-os/libcosmic#fcdefcd8fbca53705ba761b97e25453bc35e40c0" 2605 + source = "git+https://github.com/pop-os/libcosmic#405aaf134d00a6aef223aef3799b3904b1050b0c" 2424 2606 dependencies = [ 2425 2607 "iced_core", 2426 2608 "once_cell", ··· 2430 2612 [[package]] 2431 2613 name = "iced_tiny_skia" 2432 2614 version = "0.1.0" 2433 - source = "git+https://github.com/pop-os/libcosmic#fcdefcd8fbca53705ba761b97e25453bc35e40c0" 2615 + source = "git+https://github.com/pop-os/libcosmic#405aaf134d00a6aef223aef3799b3904b1050b0c" 2434 2616 dependencies = [ 2435 2617 "bytemuck", 2436 2618 "cosmic-text", ··· 2448 2630 [[package]] 2449 2631 name = "iced_wgpu" 2450 2632 version = "0.11.1" 2451 - source = "git+https://github.com/pop-os/libcosmic#fcdefcd8fbca53705ba761b97e25453bc35e40c0" 2633 + source = "git+https://github.com/pop-os/libcosmic#405aaf134d00a6aef223aef3799b3904b1050b0c" 2452 2634 dependencies = [ 2453 2635 "bitflags 1.3.2", 2454 2636 "bytemuck", ··· 2458 2640 "guillotiere", 2459 2641 "iced_graphics", 2460 2642 "log", 2643 + "lyon", 2461 2644 "once_cell", 2462 2645 "raw-window-handle", 2463 2646 "resvg", ··· 2469 2652 [[package]] 2470 2653 name = "iced_widget" 2471 2654 version = "0.1.3" 2472 - source = "git+https://github.com/pop-os/libcosmic#fcdefcd8fbca53705ba761b97e25453bc35e40c0" 2655 + source = "git+https://github.com/pop-os/libcosmic#405aaf134d00a6aef223aef3799b3904b1050b0c" 2473 2656 dependencies = [ 2474 2657 "iced_renderer", 2475 2658 "iced_runtime", 2476 2659 "iced_style", 2477 2660 "num-traits", 2478 2661 "ouroboros", 2479 - "smithay-client-toolkit 0.17.0", 2662 + "smithay-client-toolkit 0.18.0", 2480 2663 "thiserror", 2481 2664 "unicode-segmentation", 2482 2665 ] ··· 2545 2728 2546 2729 [[package]] 2547 2730 name = "indexmap" 2548 - version = "2.0.0" 2731 + version = "2.1.0" 2549 2732 source = "registry+https://github.com/rust-lang/crates.io-index" 2550 - checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" 2733 + checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 2551 2734 dependencies = [ 2552 2735 "equivalent", 2553 - "hashbrown 0.14.0", 2736 + "hashbrown 0.14.2", 2554 2737 ] 2555 2738 2556 2739 [[package]] ··· 2607 2790 source = "registry+https://github.com/rust-lang/crates.io-index" 2608 2791 checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 2609 2792 dependencies = [ 2610 - "hermit-abi 0.3.2", 2793 + "hermit-abi 0.3.3", 2611 2794 "libc", 2612 2795 "windows-sys 0.48.0", 2613 2796 ] 2614 2797 2615 2798 [[package]] 2799 + name = "io-lifetimes" 2800 + version = "2.0.2" 2801 + source = "registry+https://github.com/rust-lang/crates.io-index" 2802 + checksum = "bffb4def18c48926ccac55c1223e02865ce1a821751a95920448662696e7472c" 2803 + 2804 + [[package]] 2616 2805 name = "is-terminal" 2617 2806 version = "0.4.9" 2618 2807 source = "registry+https://github.com/rust-lang/crates.io-index" 2619 2808 checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 2620 2809 dependencies = [ 2621 - "hermit-abi 0.3.2", 2622 - "rustix 0.38.8", 2810 + "hermit-abi 0.3.3", 2811 + "rustix 0.38.21", 2623 2812 "windows-sys 0.48.0", 2624 2813 ] 2625 2814 ··· 2658 2847 2659 2848 [[package]] 2660 2849 name = "js-sys" 2661 - version = "0.3.64" 2850 + version = "0.3.65" 2662 2851 source = "registry+https://github.com/rust-lang/crates.io-index" 2663 - checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 2852 + checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8" 2664 2853 dependencies = [ 2665 2854 "wasm-bindgen", 2666 2855 ] ··· 2728 2917 2729 2918 [[package]] 2730 2919 name = "libc" 2731 - version = "0.2.147" 2920 + version = "0.2.150" 2732 2921 source = "registry+https://github.com/rust-lang/crates.io-index" 2733 - checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 2922 + checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" 2734 2923 2735 2924 [[package]] 2736 2925 name = "libcosmic" 2737 2926 version = "0.1.0" 2738 - source = "git+https://github.com/pop-os/libcosmic#fcdefcd8fbca53705ba761b97e25453bc35e40c0" 2927 + source = "git+https://github.com/pop-os/libcosmic#405aaf134d00a6aef223aef3799b3904b1050b0c" 2739 2928 dependencies = [ 2740 2929 "apply", 2741 2930 "ashpd", 2742 2931 "cosmic-config", 2743 2932 "cosmic-panel-config", 2744 2933 "cosmic-theme", 2934 + "css-color", 2745 2935 "derive_setters", 2746 2936 "fraction", 2747 2937 "freedesktop-icons", ··· 2758 2948 "palette", 2759 2949 "ron", 2760 2950 "slotmap", 2761 - "smithay-client-toolkit 0.17.0", 2951 + "smithay-client-toolkit 0.18.0", 2952 + "taffy", 2762 2953 "thiserror", 2763 2954 "tokio", 2764 2955 "tracing", ··· 2787 2978 2788 2979 [[package]] 2789 2980 name = "libloading" 2790 - version = "0.8.0" 2981 + version = "0.8.1" 2791 2982 source = "registry+https://github.com/rust-lang/crates.io-index" 2792 - checksum = "d580318f95776505201b28cf98eb1fa5e4be3b689633ba6a3e6cd880ff22d8cb" 2983 + checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161" 2793 2984 dependencies = [ 2794 2985 "cfg-if", 2795 2986 "windows-sys 0.48.0", ··· 2797 2988 2798 2989 [[package]] 2799 2990 name = "libm" 2800 - version = "0.2.7" 2991 + version = "0.2.8" 2801 2992 source = "registry+https://github.com/rust-lang/crates.io-index" 2802 - checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" 2993 + checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 2803 2994 2804 2995 [[package]] 2805 2996 name = "libpulse-binding" ··· 2852 3043 ] 2853 3044 2854 3045 [[package]] 2855 - name = "linux-raw-sys" 2856 - version = "0.1.4" 3046 + name = "libredox" 3047 + version = "0.0.1" 2857 3048 source = "registry+https://github.com/rust-lang/crates.io-index" 2858 - checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 3049 + checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 3050 + dependencies = [ 3051 + "bitflags 2.4.1", 3052 + "libc", 3053 + "redox_syscall 0.4.1", 3054 + ] 2859 3055 2860 3056 [[package]] 2861 3057 name = "linux-raw-sys" ··· 2865 3061 2866 3062 [[package]] 2867 3063 name = "linux-raw-sys" 2868 - version = "0.4.5" 3064 + version = "0.4.11" 2869 3065 source = "registry+https://github.com/rust-lang/crates.io-index" 2870 - checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" 3066 + checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829" 2871 3067 2872 3068 [[package]] 2873 3069 name = "locale_config" ··· 2884 3080 2885 3081 [[package]] 2886 3082 name = "lock_api" 2887 - version = "0.4.10" 3083 + version = "0.4.11" 2888 3084 source = "registry+https://github.com/rust-lang/crates.io-index" 2889 - checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 3085 + checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 2890 3086 dependencies = [ 2891 3087 "autocfg", 2892 3088 "scopeguard", ··· 2910 3106 2911 3107 [[package]] 2912 3108 name = "lru" 2913 - version = "0.11.0" 3109 + version = "0.11.1" 2914 3110 source = "registry+https://github.com/rust-lang/crates.io-index" 2915 - checksum = "eedb2bdbad7e0634f83989bf596f497b070130daaa398ab22d84c39e266deec5" 3111 + checksum = "a4a83fb7698b3643a0e34f9ae6f2e8f0178c0fd42f8b59d493aa271ff3a5bf21" 2916 3112 dependencies = [ 2917 - "hashbrown 0.14.0", 3113 + "hashbrown 0.14.2", 3114 + ] 3115 + 3116 + [[package]] 3117 + name = "lyon" 3118 + version = "1.0.1" 3119 + source = "registry+https://github.com/rust-lang/crates.io-index" 3120 + checksum = "91e7f9cda98b5430809e63ca5197b06c7d191bf7e26dfc467d5a3f0290e2a74f" 3121 + dependencies = [ 3122 + "lyon_algorithms", 3123 + "lyon_tessellation", 3124 + ] 3125 + 3126 + [[package]] 3127 + name = "lyon_algorithms" 3128 + version = "1.0.3" 3129 + source = "registry+https://github.com/rust-lang/crates.io-index" 3130 + checksum = "00a0349cd8f0270781bb93a824b63df6178e3b4a27794e7be3ce3763f5a44d6e" 3131 + dependencies = [ 3132 + "lyon_path", 3133 + "num-traits", 3134 + ] 3135 + 3136 + [[package]] 3137 + name = "lyon_geom" 3138 + version = "1.0.4" 3139 + source = "registry+https://github.com/rust-lang/crates.io-index" 3140 + checksum = "74df1ff0a0147282eb10699537a03baa7d31972b58984a1d44ce0624043fe8ad" 3141 + dependencies = [ 3142 + "arrayvec", 3143 + "euclid", 3144 + "num-traits", 3145 + ] 3146 + 3147 + [[package]] 3148 + name = "lyon_path" 3149 + version = "1.0.4" 3150 + source = "registry+https://github.com/rust-lang/crates.io-index" 3151 + checksum = "ca507745ba7ccbc76e5c44e7b63b1a29d2b0d6126f375806a5bbaf657c7d6c45" 3152 + dependencies = [ 3153 + "lyon_geom", 3154 + "num-traits", 3155 + ] 3156 + 3157 + [[package]] 3158 + name = "lyon_tessellation" 3159 + version = "1.0.11" 3160 + source = "registry+https://github.com/rust-lang/crates.io-index" 3161 + checksum = "23bcac20d47825850fabf1e869bf7c2bbe2daefa0776c3cd2eb7cb74635f6e4a" 3162 + dependencies = [ 3163 + "float_next_after", 3164 + "lyon_path", 3165 + "thiserror", 2918 3166 ] 2919 3167 2920 3168 [[package]] ··· 2934 3182 2935 3183 [[package]] 2936 3184 name = "memchr" 2937 - version = "2.5.0" 3185 + version = "2.6.4" 2938 3186 source = "registry+https://github.com/rust-lang/crates.io-index" 2939 - checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 3187 + checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 2940 3188 2941 3189 [[package]] 2942 3190 name = "memmap2" ··· 2958 3206 2959 3207 [[package]] 2960 3208 name = "memmap2" 2961 - version = "0.7.1" 3209 + version = "0.8.0" 3210 + source = "registry+https://github.com/rust-lang/crates.io-index" 3211 + checksum = "43a5a03cefb0d953ec0be133036f14e109412fa594edc2f77227249db66cc3ed" 3212 + dependencies = [ 3213 + "libc", 3214 + ] 3215 + 3216 + [[package]] 3217 + name = "memmap2" 3218 + version = "0.9.0" 2962 3219 source = "registry+https://github.com/rust-lang/crates.io-index" 2963 - checksum = "f49388d20533534cd19360ad3d6a7dadc885944aa802ba3995040c5ec11288c6" 3220 + checksum = "deaba38d7abf1d4cca21cc89e932e542ba2b9258664d2a9ef0e61512039c9375" 2964 3221 dependencies = [ 2965 3222 "libc", 2966 3223 ] ··· 3024 3281 3025 3282 [[package]] 3026 3283 name = "mio" 3027 - version = "0.8.8" 3284 + version = "0.8.9" 3028 3285 source = "registry+https://github.com/rust-lang/crates.io-index" 3029 - checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 3286 + checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" 3030 3287 dependencies = [ 3031 3288 "libc", 3032 3289 "log", 3033 - "wasi 0.11.0+wasi-snapshot-preview1", 3290 + "wasi", 3034 3291 "windows-sys 0.48.0", 3035 3292 ] 3036 3293 3037 3294 [[package]] 3295 + name = "mpris2-zbus" 3296 + version = "0.1.0" 3297 + source = "git+https://github.com/pop-os/dbus-settings-bindings#c9cb2c256eb956e0c09cb5c4409b0bb59e455b7f" 3298 + dependencies = [ 3299 + "serde", 3300 + "thiserror", 3301 + "time", 3302 + "zbus", 3303 + "zvariant", 3304 + ] 3305 + 3306 + [[package]] 3038 3307 name = "mutate_once" 3039 3308 version = "0.1.1" 3040 3309 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3096 3365 3097 3366 [[package]] 3098 3367 name = "nix" 3099 - version = "0.26.2" 3368 + version = "0.26.4" 3100 3369 source = "registry+https://github.com/rust-lang/crates.io-index" 3101 - checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" 3370 + checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" 3102 3371 dependencies = [ 3103 3372 "bitflags 1.3.2", 3104 3373 "cfg-if", 3105 3374 "libc", 3106 3375 "memoffset 0.7.1", 3107 3376 "pin-utils", 3108 - "static_assertions", 3109 3377 ] 3110 3378 3111 3379 [[package]] ··· 3124 3392 source = "registry+https://github.com/rust-lang/crates.io-index" 3125 3393 checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" 3126 3394 dependencies = [ 3127 - "bitflags 2.4.0", 3395 + "bitflags 2.4.1", 3128 3396 "crossbeam-channel", 3129 3397 "filetime", 3130 3398 "fsevent-sys", ··· 3227 3495 3228 3496 [[package]] 3229 3497 name = "num-traits" 3230 - version = "0.2.16" 3498 + version = "0.2.17" 3231 3499 source = "registry+https://github.com/rust-lang/crates.io-index" 3232 - checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 3500 + checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 3233 3501 dependencies = [ 3234 3502 "autocfg", 3503 + "libm", 3235 3504 ] 3236 3505 3237 3506 [[package]] ··· 3240 3509 source = "registry+https://github.com/rust-lang/crates.io-index" 3241 3510 checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 3242 3511 dependencies = [ 3243 - "hermit-abi 0.3.2", 3512 + "hermit-abi 0.3.3", 3244 3513 "libc", 3245 3514 ] 3246 3515 ··· 3285 3554 3286 3555 [[package]] 3287 3556 name = "object" 3288 - version = "0.32.0" 3557 + version = "0.32.1" 3289 3558 source = "registry+https://github.com/rust-lang/crates.io-index" 3290 - checksum = "77ac5bbd07aea88c60a577a1ce218075ffd59208b2d7ca97adf9bfc5aeb21ebe" 3559 + checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 3291 3560 dependencies = [ 3292 3561 "memchr", 3293 3562 ] ··· 3345 3614 "proc-macro-error", 3346 3615 "proc-macro2", 3347 3616 "quote", 3348 - "syn 2.0.29", 3617 + "syn 2.0.39", 3349 3618 ] 3350 3619 3351 3620 [[package]] ··· 3375 3644 dependencies = [ 3376 3645 "proc-macro2", 3377 3646 "quote", 3378 - "syn 2.0.29", 3647 + "syn 2.0.39", 3379 3648 ] 3380 3649 3381 3650 [[package]] 3382 3651 name = "parking" 3383 - version = "2.1.0" 3652 + version = "2.2.0" 3384 3653 source = "registry+https://github.com/rust-lang/crates.io-index" 3385 - checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" 3654 + checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 3386 3655 3387 3656 [[package]] 3388 3657 name = "parking_lot" ··· 3402 3671 checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 3403 3672 dependencies = [ 3404 3673 "lock_api", 3405 - "parking_lot_core 0.9.8", 3674 + "parking_lot_core 0.9.9", 3406 3675 ] 3407 3676 3408 3677 [[package]] ··· 3421 3690 3422 3691 [[package]] 3423 3692 name = "parking_lot_core" 3424 - version = "0.9.8" 3693 + version = "0.9.9" 3425 3694 source = "registry+https://github.com/rust-lang/crates.io-index" 3426 - checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" 3695 + checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 3427 3696 dependencies = [ 3428 3697 "cfg-if", 3429 3698 "libc", 3430 - "redox_syscall 0.3.5", 3699 + "redox_syscall 0.4.1", 3431 3700 "smallvec", 3432 3701 "windows-targets 0.48.5", 3433 3702 ] ··· 3468 3737 "phf_shared", 3469 3738 "proc-macro2", 3470 3739 "quote", 3471 - "syn 2.0.29", 3740 + "syn 2.0.39", 3472 3741 ] 3473 3742 3474 3743 [[package]] ··· 3503 3772 dependencies = [ 3504 3773 "proc-macro2", 3505 3774 "quote", 3506 - "syn 2.0.29", 3775 + "syn 2.0.39", 3507 3776 ] 3508 3777 3509 3778 [[package]] 3510 3779 name = "pin-project-lite" 3511 - version = "0.2.12" 3780 + version = "0.2.13" 3512 3781 source = "registry+https://github.com/rust-lang/crates.io-index" 3513 - checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05" 3782 + checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 3514 3783 3515 3784 [[package]] 3516 3785 name = "pin-utils" ··· 3519 3788 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 3520 3789 3521 3790 [[package]] 3791 + name = "piper" 3792 + version = "0.2.1" 3793 + source = "registry+https://github.com/rust-lang/crates.io-index" 3794 + checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4" 3795 + dependencies = [ 3796 + "atomic-waker", 3797 + "fastrand 2.0.1", 3798 + "futures-io", 3799 + ] 3800 + 3801 + [[package]] 3522 3802 name = "pkg-config" 3523 3803 version = "0.3.27" 3524 3804 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3552 3832 "pin-project-lite", 3553 3833 "windows-sys 0.48.0", 3554 3834 ] 3835 + 3836 + [[package]] 3837 + name = "polling" 3838 + version = "3.3.0" 3839 + source = "registry+https://github.com/rust-lang/crates.io-index" 3840 + checksum = "e53b6af1f60f36f8c2ac2aad5459d75a5a9b4be1e8cdd40264f315d78193e531" 3841 + dependencies = [ 3842 + "cfg-if", 3843 + "concurrent-queue", 3844 + "pin-project-lite", 3845 + "rustix 0.38.21", 3846 + "tracing", 3847 + "windows-sys 0.48.0", 3848 + ] 3849 + 3850 + [[package]] 3851 + name = "powerfmt" 3852 + version = "0.2.0" 3853 + source = "registry+https://github.com/rust-lang/crates.io-index" 3854 + checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 3555 3855 3556 3856 [[package]] 3557 3857 name = "ppv-lite86" ··· 3575 3875 source = "registry+https://github.com/rust-lang/crates.io-index" 3576 3876 checksum = "865724d4dbe39d9f3dd3b52b88d859d66bcb2d6a0acfd5ea68a65fb66d4bdc1c" 3577 3877 dependencies = [ 3578 - "env_logger 0.10.0", 3878 + "env_logger 0.10.1", 3579 3879 "log", 3580 3880 ] 3581 3881 ··· 3586 3886 checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 3587 3887 dependencies = [ 3588 3888 "once_cell", 3589 - "toml_edit", 3889 + "toml_edit 0.19.15", 3890 + ] 3891 + 3892 + [[package]] 3893 + name = "proc-macro-crate" 3894 + version = "2.0.0" 3895 + source = "registry+https://github.com/rust-lang/crates.io-index" 3896 + checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8" 3897 + dependencies = [ 3898 + "toml_edit 0.20.7", 3590 3899 ] 3591 3900 3592 3901 [[package]] ··· 3615 3924 3616 3925 [[package]] 3617 3926 name = "proc-macro2" 3618 - version = "1.0.66" 3927 + version = "1.0.69" 3619 3928 source = "registry+https://github.com/rust-lang/crates.io-index" 3620 - checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 3929 + checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" 3621 3930 dependencies = [ 3622 3931 "unicode-ident", 3623 3932 ] 3624 3933 3625 3934 [[package]] 3626 3935 name = "procfs" 3627 - version = "0.14.2" 3936 + version = "0.16.0" 3628 3937 source = "registry+https://github.com/rust-lang/crates.io-index" 3629 - checksum = "b1de8dacb0873f77e6aefc6d71e044761fcc68060290f5b1089fcdf84626bb69" 3938 + checksum = "731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4" 3630 3939 dependencies = [ 3631 - "bitflags 1.3.2", 3632 - "byteorder", 3940 + "bitflags 2.4.1", 3633 3941 "hex", 3634 3942 "lazy_static", 3635 - "rustix 0.36.15", 3943 + "procfs-core", 3944 + "rustix 0.38.21", 3945 + ] 3946 + 3947 + [[package]] 3948 + name = "procfs-core" 3949 + version = "0.16.0" 3950 + source = "registry+https://github.com/rust-lang/crates.io-index" 3951 + checksum = "2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29" 3952 + dependencies = [ 3953 + "bitflags 2.4.1", 3954 + "hex", 3636 3955 ] 3637 3956 3638 3957 [[package]] 3639 3958 name = "profiling" 3640 - version = "1.0.9" 3959 + version = "1.0.11" 3641 3960 source = "registry+https://github.com/rust-lang/crates.io-index" 3642 - checksum = "46b2164ebdb1dfeec5e337be164292351e11daf63a05174c6776b2f47460f0c9" 3961 + checksum = "f89dff0959d98c9758c88826cc002e2c3d0b9dfac4139711d1f30de442f1139b" 3643 3962 3644 3963 [[package]] 3645 3964 name = "qoi" ··· 3661 3980 version = "0.28.2" 3662 3981 source = "registry+https://github.com/rust-lang/crates.io-index" 3663 3982 checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1" 3983 + dependencies = [ 3984 + "memchr", 3985 + ] 3986 + 3987 + [[package]] 3988 + name = "quick-xml" 3989 + version = "0.30.0" 3990 + source = "registry+https://github.com/rust-lang/crates.io-index" 3991 + checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956" 3664 3992 dependencies = [ 3665 3993 "memchr", 3666 3994 ] ··· 3712 4040 3713 4041 [[package]] 3714 4042 name = "rangemap" 3715 - version = "1.3.0" 4043 + version = "1.4.0" 3716 4044 source = "registry+https://github.com/rust-lang/crates.io-index" 3717 - checksum = "8b9283c6b06096b47afc7109834fdedab891175bb5241ee5d4f7d2546549f263" 4045 + checksum = "977b1e897f9d764566891689e642653e5ed90c6895106acd005eb4c1d0203991" 3718 4046 3719 4047 [[package]] 3720 4048 name = "raw-window-handle" ··· 3724 4052 3725 4053 [[package]] 3726 4054 name = "rayon" 3727 - version = "1.7.0" 4055 + version = "1.8.0" 3728 4056 source = "registry+https://github.com/rust-lang/crates.io-index" 3729 - checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 4057 + checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" 3730 4058 dependencies = [ 3731 4059 "either", 3732 4060 "rayon-core", ··· 3734 4062 3735 4063 [[package]] 3736 4064 name = "rayon-core" 3737 - version = "1.11.0" 4065 + version = "1.12.0" 3738 4066 source = "registry+https://github.com/rust-lang/crates.io-index" 3739 - checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 4067 + checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" 3740 4068 dependencies = [ 3741 - "crossbeam-channel", 3742 4069 "crossbeam-deque", 3743 4070 "crossbeam-utils", 3744 - "num_cpus", 3745 4071 ] 3746 4072 3747 4073 [[package]] ··· 3769 4095 ] 3770 4096 3771 4097 [[package]] 4098 + name = "redox_syscall" 4099 + version = "0.4.1" 4100 + source = "registry+https://github.com/rust-lang/crates.io-index" 4101 + checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 4102 + dependencies = [ 4103 + "bitflags 1.3.2", 4104 + ] 4105 + 4106 + [[package]] 3772 4107 name = "redox_users" 3773 - version = "0.4.3" 4108 + version = "0.4.4" 3774 4109 source = "registry+https://github.com/rust-lang/crates.io-index" 3775 - checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 4110 + checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 3776 4111 dependencies = [ 3777 4112 "getrandom", 3778 - "redox_syscall 0.2.16", 4113 + "libredox", 3779 4114 "thiserror", 3780 4115 ] 3781 4116 3782 4117 [[package]] 3783 4118 name = "regex" 3784 - version = "1.9.3" 4119 + version = "1.10.2" 3785 4120 source = "registry+https://github.com/rust-lang/crates.io-index" 3786 - checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a" 4121 + checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" 3787 4122 dependencies = [ 3788 4123 "aho-corasick", 3789 4124 "memchr", ··· 3793 4128 3794 4129 [[package]] 3795 4130 name = "regex-automata" 3796 - version = "0.3.6" 4131 + version = "0.4.3" 3797 4132 source = "registry+https://github.com/rust-lang/crates.io-index" 3798 - checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69" 4133 + checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" 3799 4134 dependencies = [ 3800 4135 "aho-corasick", 3801 4136 "memchr", ··· 3804 4139 3805 4140 [[package]] 3806 4141 name = "regex-syntax" 3807 - version = "0.7.4" 4142 + version = "0.8.2" 3808 4143 source = "registry+https://github.com/rust-lang/crates.io-index" 3809 - checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" 4144 + checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 3810 4145 3811 4146 [[package]] 3812 4147 name = "renderdoc-sys" ··· 3833 4168 3834 4169 [[package]] 3835 4170 name = "rgb" 3836 - version = "0.8.36" 4171 + version = "0.8.37" 3837 4172 source = "registry+https://github.com/rust-lang/crates.io-index" 3838 - checksum = "20ec2d3e3fc7a92ced357df9cebd5a10b6fb2aa1ee797bf7e9ce2f17dffc8f59" 4173 + checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8" 3839 4174 dependencies = [ 3840 4175 "bytemuck", 3841 4176 ] ··· 3847 4182 checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" 3848 4183 dependencies = [ 3849 4184 "base64", 3850 - "bitflags 2.4.0", 4185 + "bitflags 2.4.1", 3851 4186 "serde", 3852 4187 "serde_derive", 3853 4188 ] 3854 4189 3855 4190 [[package]] 3856 4191 name = "roxmltree" 3857 - version = "0.18.0" 4192 + version = "0.18.1" 3858 4193 source = "registry+https://github.com/rust-lang/crates.io-index" 3859 - checksum = "d8f595a457b6b8c6cda66a48503e92ee8d19342f905948f29c383200ec9eb1d8" 4194 + checksum = "862340e351ce1b271a378ec53f304a5558f7db87f3769dc655a8f6ecbb68b302" 3860 4195 dependencies = [ 3861 4196 "xmlparser", 3862 4197 ] ··· 3867 4202 source = "registry+https://github.com/rust-lang/crates.io-index" 3868 4203 checksum = "a36224c3276f8c4ebc8c20f158eca7ca4359c8db89991c4925132aaaf6702661" 3869 4204 dependencies = [ 3870 - "rust-embed-impl", 3871 - "rust-embed-utils", 4205 + "rust-embed-impl 6.8.1", 4206 + "rust-embed-utils 7.8.1", 4207 + "walkdir", 4208 + ] 4209 + 4210 + [[package]] 4211 + name = "rust-embed" 4212 + version = "8.0.0" 4213 + source = "registry+https://github.com/rust-lang/crates.io-index" 4214 + checksum = "b1e7d90385b59f0a6bf3d3b757f3ca4ece2048265d70db20a2016043d4509a40" 4215 + dependencies = [ 4216 + "rust-embed-impl 8.0.0", 4217 + "rust-embed-utils 8.0.0", 3872 4218 "walkdir", 3873 4219 ] 3874 4220 ··· 3880 4226 dependencies = [ 3881 4227 "proc-macro2", 3882 4228 "quote", 3883 - "rust-embed-utils", 3884 - "syn 2.0.29", 4229 + "rust-embed-utils 7.8.1", 4230 + "syn 2.0.39", 4231 + "walkdir", 4232 + ] 4233 + 4234 + [[package]] 4235 + name = "rust-embed-impl" 4236 + version = "8.0.0" 4237 + source = "registry+https://github.com/rust-lang/crates.io-index" 4238 + checksum = "3c3d8c6fd84090ae348e63a84336b112b5c3918b3bf0493a581f7bd8ee623c29" 4239 + dependencies = [ 4240 + "proc-macro2", 4241 + "quote", 4242 + "rust-embed-utils 8.0.0", 4243 + "syn 2.0.39", 3885 4244 "walkdir", 3886 4245 ] 3887 4246 ··· 3890 4249 version = "7.8.1" 3891 4250 source = "registry+https://github.com/rust-lang/crates.io-index" 3892 4251 checksum = "9d38ff6bf570dc3bb7100fce9f7b60c33fa71d80e88da3f2580df4ff2bdded74" 4252 + dependencies = [ 4253 + "sha2", 4254 + "walkdir", 4255 + ] 4256 + 4257 + [[package]] 4258 + name = "rust-embed-utils" 4259 + version = "8.0.0" 4260 + source = "registry+https://github.com/rust-lang/crates.io-index" 4261 + checksum = "873feff8cb7bf86fdf0a71bb21c95159f4e4a37dd7a4bd1855a940909b583ada" 3893 4262 dependencies = [ 3894 4263 "sha2", 3895 4264 "walkdir", ··· 3919 4288 3920 4289 [[package]] 3921 4290 name = "rustix" 3922 - version = "0.36.15" 4291 + version = "0.37.27" 3923 4292 source = "registry+https://github.com/rust-lang/crates.io-index" 3924 - checksum = "c37f1bd5ef1b5422177b7646cba67430579cfe2ace80f284fee876bca52ad941" 4293 + checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" 3925 4294 dependencies = [ 3926 4295 "bitflags 1.3.2", 3927 4296 "errno", 3928 - "io-lifetimes", 3929 - "libc", 3930 - "linux-raw-sys 0.1.4", 3931 - "windows-sys 0.45.0", 3932 - ] 3933 - 3934 - [[package]] 3935 - name = "rustix" 3936 - version = "0.37.23" 3937 - source = "registry+https://github.com/rust-lang/crates.io-index" 3938 - checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06" 3939 - dependencies = [ 3940 - "bitflags 1.3.2", 3941 - "errno", 3942 - "io-lifetimes", 4297 + "io-lifetimes 1.0.11", 3943 4298 "libc", 3944 4299 "linux-raw-sys 0.3.8", 3945 4300 "windows-sys 0.48.0", ··· 3947 4302 3948 4303 [[package]] 3949 4304 name = "rustix" 3950 - version = "0.38.8" 4305 + version = "0.38.21" 3951 4306 source = "registry+https://github.com/rust-lang/crates.io-index" 3952 - checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f" 4307 + checksum = "2b426b0506e5d50a7d8dafcf2e81471400deb602392c7dd110815afb4eaf02a3" 3953 4308 dependencies = [ 3954 - "bitflags 2.4.0", 4309 + "bitflags 2.4.1", 3955 4310 "errno", 3956 4311 "libc", 3957 - "linux-raw-sys 0.4.5", 4312 + "linux-raw-sys 0.4.11", 3958 4313 "windows-sys 0.48.0", 3959 4314 ] 3960 4315 ··· 3990 4345 "bytemuck", 3991 4346 "libm", 3992 4347 "smallvec", 3993 - "ttf-parser 0.19.1", 4348 + "ttf-parser 0.19.2", 3994 4349 "unicode-bidi-mirroring", 3995 4350 "unicode-ccc", 3996 4351 "unicode-general-category", ··· 4026 4381 4027 4382 [[package]] 4028 4383 name = "self_cell" 4029 - version = "0.10.2" 4384 + version = "0.10.3" 4030 4385 source = "registry+https://github.com/rust-lang/crates.io-index" 4031 - checksum = "1ef965a420fe14fdac7dd018862966a4c14094f900e1650bbc71ddd7d580c8af" 4386 + checksum = "e14e4d63b804dc0c7ec4a1e52bcb63f02c7ac94476755aa579edac21e01f915d" 4387 + dependencies = [ 4388 + "self_cell 1.0.2", 4389 + ] 4390 + 4391 + [[package]] 4392 + name = "self_cell" 4393 + version = "1.0.2" 4394 + source = "registry+https://github.com/rust-lang/crates.io-index" 4395 + checksum = "e388332cd64eb80cd595a00941baf513caffae8dce9cfd0467fc9c66397dade6" 4032 4396 4033 4397 [[package]] 4034 4398 name = "sendfd" ··· 4042 4406 4043 4407 [[package]] 4044 4408 name = "serde" 4045 - version = "1.0.185" 4409 + version = "1.0.192" 4046 4410 source = "registry+https://github.com/rust-lang/crates.io-index" 4047 - checksum = "be9b6f69f1dfd54c3b568ffa45c310d6973a5e5148fd40cf515acaf38cf5bc31" 4411 + checksum = "bca2a08484b285dcb282d0f67b26cadc0df8b19f8c12502c13d966bf9482f001" 4048 4412 dependencies = [ 4049 4413 "serde_derive", 4050 4414 ] 4051 4415 4052 4416 [[package]] 4053 4417 name = "serde_derive" 4054 - version = "1.0.185" 4418 + version = "1.0.192" 4055 4419 source = "registry+https://github.com/rust-lang/crates.io-index" 4056 - checksum = "dc59dfdcbad1437773485e0367fea4b090a2e0a16d9ffc46af47764536a298ec" 4420 + checksum = "d6c7207fbec9faa48073f3e3074cbe553af6ea512d7c21ba46e434e70ea9fbc1" 4057 4421 dependencies = [ 4058 4422 "proc-macro2", 4059 4423 "quote", 4060 - "syn 2.0.29", 4424 + "syn 2.0.39", 4061 4425 ] 4062 4426 4063 4427 [[package]] 4064 4428 name = "serde_json" 4065 - version = "1.0.105" 4429 + version = "1.0.108" 4066 4430 source = "registry+https://github.com/rust-lang/crates.io-index" 4067 - checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" 4431 + checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 4068 4432 dependencies = [ 4069 4433 "itoa", 4070 4434 "ryu", ··· 4073 4437 4074 4438 [[package]] 4075 4439 name = "serde_repr" 4076 - version = "0.1.16" 4440 + version = "0.1.17" 4077 4441 source = "registry+https://github.com/rust-lang/crates.io-index" 4078 - checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00" 4442 + checksum = "3081f5ffbb02284dda55132aa26daecedd7372a42417bbbab6f14ab7d6bb9145" 4079 4443 dependencies = [ 4080 4444 "proc-macro2", 4081 4445 "quote", 4082 - "syn 2.0.29", 4446 + "syn 2.0.39", 4083 4447 ] 4084 4448 4085 4449 [[package]] 4086 4450 name = "serde_spanned" 4087 - version = "0.6.3" 4451 + version = "0.6.4" 4088 4452 source = "registry+https://github.com/rust-lang/crates.io-index" 4089 - checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" 4453 + checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80" 4090 4454 dependencies = [ 4091 4455 "serde", 4092 4456 ] 4093 4457 4094 4458 [[package]] 4095 4459 name = "sha1" 4096 - version = "0.10.5" 4460 + version = "0.10.6" 4097 4461 source = "registry+https://github.com/rust-lang/crates.io-index" 4098 - checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 4462 + checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 4099 4463 dependencies = [ 4100 4464 "cfg-if", 4101 4465 "cpufeatures", ··· 4104 4468 4105 4469 [[package]] 4106 4470 name = "sha2" 4107 - version = "0.10.7" 4471 + version = "0.10.8" 4108 4472 source = "registry+https://github.com/rust-lang/crates.io-index" 4109 - checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" 4473 + checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 4110 4474 dependencies = [ 4111 4475 "cfg-if", 4112 4476 "cpufeatures", ··· 4115 4479 4116 4480 [[package]] 4117 4481 name = "sharded-slab" 4118 - version = "0.1.4" 4482 + version = "0.1.7" 4119 4483 source = "registry+https://github.com/rust-lang/crates.io-index" 4120 - checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 4484 + checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 4121 4485 dependencies = [ 4122 4486 "lazy_static", 4123 4487 ] 4124 4488 4125 4489 [[package]] 4126 4490 name = "shlex" 4127 - version = "1.1.0" 4491 + version = "1.2.0" 4128 4492 source = "registry+https://github.com/rust-lang/crates.io-index" 4129 - checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" 4130 - 4131 - [[package]] 4132 - name = "signal-hook" 4133 - version = "0.3.17" 4134 - source = "registry+https://github.com/rust-lang/crates.io-index" 4135 - checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" 4136 - dependencies = [ 4137 - "libc", 4138 - "signal-hook-registry", 4139 - ] 4493 + checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380" 4140 4494 4141 4495 [[package]] 4142 4496 name = "signal-hook-registry" ··· 4164 4518 4165 4519 [[package]] 4166 4520 name = "siphasher" 4167 - version = "0.3.10" 4521 + version = "0.3.11" 4168 4522 source = "registry+https://github.com/rust-lang/crates.io-index" 4169 - checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 4523 + checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 4170 4524 4171 4525 [[package]] 4172 4526 name = "slab" ··· 4188 4542 4189 4543 [[package]] 4190 4544 name = "smallvec" 4191 - version = "1.11.0" 4545 + version = "1.11.2" 4192 4546 source = "registry+https://github.com/rust-lang/crates.io-index" 4193 - checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" 4547 + checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 4194 4548 4195 4549 [[package]] 4196 4550 name = "smithay-client-toolkit" 4197 - version = "0.16.0" 4551 + version = "0.16.1" 4198 4552 source = "registry+https://github.com/rust-lang/crates.io-index" 4199 - checksum = "f307c47d32d2715eb2e0ece5589057820e0e5e70d07c247d1063e844e107f454" 4553 + checksum = "870427e30b8f2cbe64bf43ec4b86e88fe39b0a84b3f15efd9c9c2d020bc86eb9" 4200 4554 dependencies = [ 4201 4555 "bitflags 1.3.2", 4202 4556 "dlib", ··· 4212 4566 4213 4567 [[package]] 4214 4568 name = "smithay-client-toolkit" 4215 - version = "0.17.0" 4216 - source = "git+https://github.com/smithay/client-toolkit?rev=c9940f4#c9940f4167f0d81cc26f77b7eeef6a34068a90a5" 4569 + version = "0.18.0" 4570 + source = "git+https://github.com/smithay/client-toolkit//?rev=e63ab5f#e63ab5f01964bc48766fc4c3bf79cc05dc59874c" 4217 4571 dependencies = [ 4218 - "bitflags 1.3.2", 4572 + "bitflags 2.4.1", 4573 + "bytemuck", 4219 4574 "calloop", 4575 + "calloop-wayland-source", 4220 4576 "cursor-icon", 4221 - "dlib", 4577 + "libc", 4222 4578 "log", 4223 - "memmap2 0.5.10", 4224 - "nix 0.26.2", 4579 + "memmap2 0.9.0", 4225 4580 "pkg-config", 4581 + "rustix 0.38.21", 4226 4582 "thiserror", 4227 - "wayland-backend", 4228 - "wayland-client 0.30.2", 4583 + "wayland-backend 0.3.2", 4584 + "wayland-client 0.31.1", 4229 4585 "wayland-csd-frame", 4230 - "wayland-cursor 0.30.0", 4231 - "wayland-protocols 0.30.1", 4586 + "wayland-cursor 0.31.0", 4587 + "wayland-protocols 0.31.0", 4232 4588 "wayland-protocols-wlr", 4233 - "wayland-scanner 0.30.1", 4589 + "wayland-scanner 0.31.0", 4234 4590 "xkbcommon", 4591 + "xkeysym", 4235 4592 ] 4236 4593 4237 4594 [[package]] ··· 4240 4597 source = "registry+https://github.com/rust-lang/crates.io-index" 4241 4598 checksum = "0a345c870a1fae0b1b779085e81b51e614767c239e93503588e54c5b17f4b0e8" 4242 4599 dependencies = [ 4243 - "smithay-client-toolkit 0.16.0", 4600 + "smithay-client-toolkit 0.16.1", 4244 4601 "wayland-client 0.29.5", 4245 4602 ] 4246 4603 4247 4604 [[package]] 4248 4605 name = "socket2" 4249 - version = "0.4.9" 4606 + version = "0.4.10" 4250 4607 source = "registry+https://github.com/rust-lang/crates.io-index" 4251 - checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 4608 + checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 4252 4609 dependencies = [ 4253 4610 "libc", 4254 4611 "winapi", ··· 4256 4613 4257 4614 [[package]] 4258 4615 name = "socket2" 4259 - version = "0.5.3" 4616 + version = "0.5.5" 4260 4617 source = "registry+https://github.com/rust-lang/crates.io-index" 4261 - checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" 4618 + checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 4262 4619 dependencies = [ 4263 4620 "libc", 4264 4621 "windows-sys 0.48.0", ··· 4276 4633 "fastrand 1.9.0", 4277 4634 "foreign-types", 4278 4635 "log", 4279 - "nix 0.26.2", 4636 + "nix 0.26.4", 4280 4637 "objc", 4281 4638 "raw-window-handle", 4282 4639 "redox_syscall 0.3.5", 4283 4640 "thiserror", 4284 4641 "wasm-bindgen", 4285 - "wayland-backend", 4642 + "wayland-backend 0.1.2", 4286 4643 "wayland-client 0.30.2", 4287 4644 "wayland-sys 0.30.1", 4288 4645 "web-sys", ··· 4392 4749 4393 4750 [[package]] 4394 4751 name = "syn" 4395 - version = "2.0.29" 4752 + version = "2.0.39" 4396 4753 source = "registry+https://github.com/rust-lang/crates.io-index" 4397 - checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a" 4754 + checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" 4398 4755 dependencies = [ 4399 4756 "proc-macro2", 4400 4757 "quote", ··· 4415 4772 4416 4773 [[package]] 4417 4774 name = "sys-locale" 4418 - version = "0.3.0" 4775 + version = "0.3.1" 4419 4776 source = "registry+https://github.com/rust-lang/crates.io-index" 4420 - checksum = "ea0b9eefabb91675082b41eb94c3ecd91af7656caee3fb4961a07c0ec8c7ca6f" 4777 + checksum = "e801cf239ecd6ccd71f03d270d67dd53d13e90aab208bf4b8fe4ad957ea949b0" 4421 4778 dependencies = [ 4422 4779 "libc", 4423 - "windows-sys 0.45.0", 4424 4780 ] 4425 4781 4426 4782 [[package]] 4427 4783 name = "system-deps" 4428 - version = "6.1.1" 4784 + version = "6.2.0" 4429 4785 source = "registry+https://github.com/rust-lang/crates.io-index" 4430 - checksum = "30c2de8a4d8f4b823d634affc9cd2a74ec98c53a756f317e529a48046cbf71f3" 4786 + checksum = "2a2d580ff6a20c55dfb86be5f9c238f67835d0e81cbdea8bf5680e0897320331" 4431 4787 dependencies = [ 4432 4788 "cfg-expr", 4433 4789 "heck", 4434 4790 "pkg-config", 4435 - "toml 0.7.6", 4791 + "toml 0.8.8", 4436 4792 "version-compare", 4437 4793 ] 4438 4794 4439 4795 [[package]] 4796 + name = "taffy" 4797 + version = "0.3.11" 4798 + source = "git+https://github.com/DioxusLabs/taffy#1876f72bee5e376023eaa518aa7b8a34c769bd1b" 4799 + dependencies = [ 4800 + "arrayvec", 4801 + "grid", 4802 + "num-traits", 4803 + "slotmap", 4804 + ] 4805 + 4806 + [[package]] 4440 4807 name = "target-lexicon" 4441 - version = "0.12.11" 4808 + version = "0.12.12" 4442 4809 source = "registry+https://github.com/rust-lang/crates.io-index" 4443 - checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a" 4810 + checksum = "14c39fd04924ca3a864207c66fc2cd7d22d7c016007f9ce846cbb9326331930a" 4444 4811 4445 4812 [[package]] 4446 4813 name = "temp-dir" ··· 4450 4817 4451 4818 [[package]] 4452 4819 name = "tempfile" 4453 - version = "3.8.0" 4820 + version = "3.8.1" 4454 4821 source = "registry+https://github.com/rust-lang/crates.io-index" 4455 - checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" 4822 + checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 4456 4823 dependencies = [ 4457 4824 "cfg-if", 4458 - "fastrand 2.0.0", 4459 - "redox_syscall 0.3.5", 4460 - "rustix 0.38.8", 4825 + "fastrand 2.0.1", 4826 + "redox_syscall 0.4.1", 4827 + "rustix 0.38.21", 4461 4828 "windows-sys 0.48.0", 4462 4829 ] 4463 4830 4464 4831 [[package]] 4465 4832 name = "termcolor" 4466 - version = "1.2.0" 4833 + version = "1.3.0" 4467 4834 source = "registry+https://github.com/rust-lang/crates.io-index" 4468 - checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 4835 + checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64" 4469 4836 dependencies = [ 4470 4837 "winapi-util", 4471 4838 ] 4472 4839 4473 4840 [[package]] 4474 4841 name = "thiserror" 4475 - version = "1.0.47" 4842 + version = "1.0.50" 4476 4843 source = "registry+https://github.com/rust-lang/crates.io-index" 4477 - checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f" 4844 + checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" 4478 4845 dependencies = [ 4479 4846 "thiserror-impl", 4480 4847 ] 4481 4848 4482 4849 [[package]] 4483 4850 name = "thiserror-impl" 4484 - version = "1.0.47" 4851 + version = "1.0.50" 4485 4852 source = "registry+https://github.com/rust-lang/crates.io-index" 4486 - checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" 4853 + checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" 4487 4854 dependencies = [ 4488 4855 "proc-macro2", 4489 4856 "quote", 4490 - "syn 2.0.29", 4857 + "syn 2.0.39", 4491 4858 ] 4492 4859 4493 4860 [[package]] ··· 4513 4880 4514 4881 [[package]] 4515 4882 name = "time" 4516 - version = "0.1.45" 4883 + version = "0.3.30" 4517 4884 source = "registry+https://github.com/rust-lang/crates.io-index" 4518 - checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" 4519 - dependencies = [ 4520 - "libc", 4521 - "wasi 0.10.0+wasi-snapshot-preview1", 4522 - "winapi", 4523 - ] 4524 - 4525 - [[package]] 4526 - name = "time" 4527 - version = "0.3.27" 4528 - source = "registry+https://github.com/rust-lang/crates.io-index" 4529 - checksum = "0bb39ee79a6d8de55f48f2293a830e040392f1c5f16e336bdd1788cd0aadce07" 4885 + checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" 4530 4886 dependencies = [ 4531 4887 "deranged", 4888 + "powerfmt", 4532 4889 "serde", 4533 4890 "time-core", 4891 + "time-macros", 4534 4892 ] 4535 4893 4536 4894 [[package]] 4537 4895 name = "time-core" 4538 - version = "0.1.1" 4896 + version = "0.1.2" 4897 + source = "registry+https://github.com/rust-lang/crates.io-index" 4898 + checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 4899 + 4900 + [[package]] 4901 + name = "time-macros" 4902 + version = "0.2.15" 4539 4903 source = "registry+https://github.com/rust-lang/crates.io-index" 4540 - checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 4904 + checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" 4905 + dependencies = [ 4906 + "time-core", 4907 + ] 4541 4908 4542 4909 [[package]] 4543 4910 name = "tiny-skia" ··· 4567 4934 4568 4935 [[package]] 4569 4936 name = "tinystr" 4570 - version = "0.7.1" 4937 + version = "0.7.4" 4571 4938 source = "registry+https://github.com/rust-lang/crates.io-index" 4572 - checksum = "7ac3f5b6856e931e15e07b478e98c8045239829a65f9156d4fa7e7788197a5ef" 4939 + checksum = "d5d0e245e80bdc9b4e5356fc45a72184abbc3861992603f515270e9340f5a219" 4573 4940 dependencies = [ 4574 4941 "displaydoc", 4575 4942 ] ··· 4591 4958 4592 4959 [[package]] 4593 4960 name = "tokio" 4594 - version = "1.32.0" 4961 + version = "1.34.0" 4595 4962 source = "registry+https://github.com/rust-lang/crates.io-index" 4596 - checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" 4963 + checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" 4597 4964 dependencies = [ 4598 4965 "backtrace", 4599 4966 "bytes", ··· 4603 4970 "parking_lot 0.12.1", 4604 4971 "pin-project-lite", 4605 4972 "signal-hook-registry", 4606 - "socket2 0.5.3", 4973 + "socket2 0.5.5", 4607 4974 "tokio-macros", 4608 4975 "tracing", 4609 4976 "windows-sys 0.48.0", ··· 4611 4978 4612 4979 [[package]] 4613 4980 name = "tokio-macros" 4614 - version = "2.1.0" 4981 + version = "2.2.0" 4615 4982 source = "registry+https://github.com/rust-lang/crates.io-index" 4616 - checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 4983 + checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 4617 4984 dependencies = [ 4618 4985 "proc-macro2", 4619 4986 "quote", 4620 - "syn 2.0.29", 4987 + "syn 2.0.39", 4621 4988 ] 4622 4989 4623 4990 [[package]] ··· 4642 5009 4643 5010 [[package]] 4644 5011 name = "toml" 4645 - version = "0.7.6" 5012 + version = "0.8.8" 4646 5013 source = "registry+https://github.com/rust-lang/crates.io-index" 4647 - checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542" 5014 + checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35" 4648 5015 dependencies = [ 4649 5016 "serde", 4650 5017 "serde_spanned", 4651 5018 "toml_datetime", 4652 - "toml_edit", 5019 + "toml_edit 0.21.0", 4653 5020 ] 4654 5021 4655 5022 [[package]] 4656 5023 name = "toml_datetime" 4657 - version = "0.6.3" 5024 + version = "0.6.5" 4658 5025 source = "registry+https://github.com/rust-lang/crates.io-index" 4659 - checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 5026 + checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" 4660 5027 dependencies = [ 4661 5028 "serde", 4662 5029 ] 4663 5030 4664 5031 [[package]] 4665 5032 name = "toml_edit" 4666 - version = "0.19.14" 5033 + version = "0.19.15" 4667 5034 source = "registry+https://github.com/rust-lang/crates.io-index" 4668 - checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" 5035 + checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 4669 5036 dependencies = [ 4670 - "indexmap 2.0.0", 5037 + "indexmap 2.1.0", 5038 + "toml_datetime", 5039 + "winnow", 5040 + ] 5041 + 5042 + [[package]] 5043 + name = "toml_edit" 5044 + version = "0.20.7" 5045 + source = "registry+https://github.com/rust-lang/crates.io-index" 5046 + checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" 5047 + dependencies = [ 5048 + "indexmap 2.1.0", 5049 + "toml_datetime", 5050 + "winnow", 5051 + ] 5052 + 5053 + [[package]] 5054 + name = "toml_edit" 5055 + version = "0.21.0" 5056 + source = "registry+https://github.com/rust-lang/crates.io-index" 5057 + checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" 5058 + dependencies = [ 5059 + "indexmap 2.1.0", 4671 5060 "serde", 4672 5061 "serde_spanned", 4673 5062 "toml_datetime", ··· 4676 5065 4677 5066 [[package]] 4678 5067 name = "tracing" 4679 - version = "0.1.37" 5068 + version = "0.1.40" 4680 5069 source = "registry+https://github.com/rust-lang/crates.io-index" 4681 - checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 5070 + checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 4682 5071 dependencies = [ 4683 - "cfg-if", 4684 5072 "pin-project-lite", 4685 5073 "tracing-attributes", 4686 5074 "tracing-core", ··· 4688 5076 4689 5077 [[package]] 4690 5078 name = "tracing-attributes" 4691 - version = "0.1.26" 5079 + version = "0.1.27" 4692 5080 source = "registry+https://github.com/rust-lang/crates.io-index" 4693 - checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" 5081 + checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 4694 5082 dependencies = [ 4695 5083 "proc-macro2", 4696 5084 "quote", 4697 - "syn 2.0.29", 5085 + "syn 2.0.39", 4698 5086 ] 4699 5087 4700 5088 [[package]] 4701 5089 name = "tracing-core" 4702 - version = "0.1.31" 5090 + version = "0.1.32" 4703 5091 source = "registry+https://github.com/rust-lang/crates.io-index" 4704 - checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 5092 + checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 4705 5093 dependencies = [ 4706 5094 "once_cell", 4707 5095 "valuable", ··· 4709 5097 4710 5098 [[package]] 4711 5099 name = "tracing-log" 4712 - version = "0.1.3" 5100 + version = "0.1.4" 4713 5101 source = "registry+https://github.com/rust-lang/crates.io-index" 4714 - checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 5102 + checksum = "f751112709b4e791d8ce53e32c4ed2d353565a795ce84da2285393f41557bdf2" 4715 5103 dependencies = [ 4716 - "lazy_static", 4717 5104 "log", 5105 + "once_cell", 4718 5106 "tracing-core", 4719 5107 ] 4720 5108 ··· 4740 5128 4741 5129 [[package]] 4742 5130 name = "ttf-parser" 4743 - version = "0.19.1" 5131 + version = "0.19.2" 4744 5132 source = "registry+https://github.com/rust-lang/crates.io-index" 4745 - checksum = "a464a4b34948a5f67fddd2b823c62d9d92e44be75058b99939eae6c5b6960b33" 5133 + checksum = "49d64318d8311fc2668e48b63969f4343e0a85c4a109aa8460d6672e364b8bd1" 4746 5134 4747 5135 [[package]] 4748 5136 name = "twox-hash" ··· 4766 5154 4767 5155 [[package]] 4768 5156 name = "typenum" 4769 - version = "1.16.0" 5157 + version = "1.17.0" 4770 5158 source = "registry+https://github.com/rust-lang/crates.io-index" 4771 - checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 5159 + checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 4772 5160 4773 5161 [[package]] 4774 5162 name = "uds_windows" ··· 4825 5213 4826 5214 [[package]] 4827 5215 name = "unicode-ident" 4828 - version = "1.0.11" 5216 + version = "1.0.12" 4829 5217 source = "registry+https://github.com/rust-lang/crates.io-index" 4830 - checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" 5218 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 4831 5219 4832 5220 [[package]] 4833 5221 name = "unicode-linebreak" ··· 4864 5252 4865 5253 [[package]] 4866 5254 name = "unicode-width" 4867 - version = "0.1.10" 5255 + version = "0.1.11" 4868 5256 source = "registry+https://github.com/rust-lang/crates.io-index" 4869 - checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 5257 + checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 4870 5258 4871 5259 [[package]] 4872 5260 name = "unicode-xid" ··· 4876 5264 4877 5265 [[package]] 4878 5266 name = "url" 4879 - version = "2.4.0" 5267 + version = "2.4.1" 4880 5268 source = "registry+https://github.com/rust-lang/crates.io-index" 4881 - checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" 5269 + checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" 4882 5270 dependencies = [ 4883 5271 "form_urlencoded", 4884 5272 "idna", ··· 4949 5337 4950 5338 [[package]] 4951 5339 name = "uuid" 4952 - version = "1.4.1" 5340 + version = "1.5.0" 4953 5341 source = "registry+https://github.com/rust-lang/crates.io-index" 4954 - checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" 5342 + checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" 4955 5343 dependencies = [ 4956 5344 "getrandom", 4957 5345 ] ··· 4963 5351 checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 4964 5352 4965 5353 [[package]] 4966 - name = "vec_map" 4967 - version = "0.8.2" 4968 - source = "registry+https://github.com/rust-lang/crates.io-index" 4969 - checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 4970 - 4971 - [[package]] 4972 5354 name = "version-compare" 4973 5355 version = "0.1.1" 4974 5356 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4982 5364 4983 5365 [[package]] 4984 5366 name = "waker-fn" 4985 - version = "1.1.0" 5367 + version = "1.1.1" 4986 5368 source = "registry+https://github.com/rust-lang/crates.io-index" 4987 - checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 5369 + checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" 4988 5370 4989 5371 [[package]] 4990 5372 name = "walkdir" 4991 - version = "2.3.3" 5373 + version = "2.4.0" 4992 5374 source = "registry+https://github.com/rust-lang/crates.io-index" 4993 - checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 5375 + checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 4994 5376 dependencies = [ 4995 5377 "same-file", 4996 5378 "winapi-util", ··· 4998 5380 4999 5381 [[package]] 5000 5382 name = "wasi" 5001 - version = "0.10.0+wasi-snapshot-preview1" 5002 - source = "registry+https://github.com/rust-lang/crates.io-index" 5003 - checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 5004 - 5005 - [[package]] 5006 - name = "wasi" 5007 5383 version = "0.11.0+wasi-snapshot-preview1" 5008 5384 source = "registry+https://github.com/rust-lang/crates.io-index" 5009 5385 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 5010 5386 5011 5387 [[package]] 5012 5388 name = "wasm-bindgen" 5013 - version = "0.2.87" 5389 + version = "0.2.88" 5014 5390 source = "registry+https://github.com/rust-lang/crates.io-index" 5015 - checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 5391 + checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce" 5016 5392 dependencies = [ 5017 5393 "cfg-if", 5018 5394 "wasm-bindgen-macro", ··· 5020 5396 5021 5397 [[package]] 5022 5398 name = "wasm-bindgen-backend" 5023 - version = "0.2.87" 5399 + version = "0.2.88" 5024 5400 source = "registry+https://github.com/rust-lang/crates.io-index" 5025 - checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 5401 + checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217" 5026 5402 dependencies = [ 5027 5403 "bumpalo", 5028 5404 "log", 5029 5405 "once_cell", 5030 5406 "proc-macro2", 5031 5407 "quote", 5032 - "syn 2.0.29", 5408 + "syn 2.0.39", 5033 5409 "wasm-bindgen-shared", 5034 5410 ] 5035 5411 5036 5412 [[package]] 5037 5413 name = "wasm-bindgen-futures" 5038 - version = "0.4.37" 5414 + version = "0.4.38" 5039 5415 source = "registry+https://github.com/rust-lang/crates.io-index" 5040 - checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 5416 + checksum = "9afec9963e3d0994cac82455b2b3502b81a7f40f9a0d32181f7528d9f4b43e02" 5041 5417 dependencies = [ 5042 5418 "cfg-if", 5043 5419 "js-sys", ··· 5047 5423 5048 5424 [[package]] 5049 5425 name = "wasm-bindgen-macro" 5050 - version = "0.2.87" 5426 + version = "0.2.88" 5051 5427 source = "registry+https://github.com/rust-lang/crates.io-index" 5052 - checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 5428 + checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2" 5053 5429 dependencies = [ 5054 5430 "quote", 5055 5431 "wasm-bindgen-macro-support", ··· 5057 5433 5058 5434 [[package]] 5059 5435 name = "wasm-bindgen-macro-support" 5060 - version = "0.2.87" 5436 + version = "0.2.88" 5061 5437 source = "registry+https://github.com/rust-lang/crates.io-index" 5062 - checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 5438 + checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907" 5063 5439 dependencies = [ 5064 5440 "proc-macro2", 5065 5441 "quote", 5066 - "syn 2.0.29", 5442 + "syn 2.0.39", 5067 5443 "wasm-bindgen-backend", 5068 5444 "wasm-bindgen-shared", 5069 5445 ] 5070 5446 5071 5447 [[package]] 5072 5448 name = "wasm-bindgen-shared" 5073 - version = "0.2.87" 5449 + version = "0.2.88" 5074 5450 source = "registry+https://github.com/rust-lang/crates.io-index" 5075 - checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 5451 + checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b" 5076 5452 5077 5453 [[package]] 5078 5454 name = "wasm-timer" ··· 5097 5473 dependencies = [ 5098 5474 "cc", 5099 5475 "downcast-rs", 5100 - "io-lifetimes", 5101 - "nix 0.26.2", 5476 + "io-lifetimes 1.0.11", 5477 + "nix 0.26.4", 5102 5478 "scoped-tls", 5103 5479 "smallvec", 5104 5480 "wayland-sys 0.30.1", 5105 5481 ] 5106 5482 5107 5483 [[package]] 5484 + name = "wayland-backend" 5485 + version = "0.3.2" 5486 + source = "registry+https://github.com/rust-lang/crates.io-index" 5487 + checksum = "19152ddd73f45f024ed4534d9ca2594e0ef252c1847695255dae47f34df9fbe4" 5488 + dependencies = [ 5489 + "cc", 5490 + "downcast-rs", 5491 + "nix 0.26.4", 5492 + "scoped-tls", 5493 + "smallvec", 5494 + "wayland-sys 0.31.1", 5495 + ] 5496 + 5497 + [[package]] 5108 5498 name = "wayland-client" 5109 5499 version = "0.29.5" 5110 5500 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5127 5517 checksum = "489c9654770f674fc7e266b3c579f4053d7551df0ceb392f153adb1f9ed06ac8" 5128 5518 dependencies = [ 5129 5519 "bitflags 1.3.2", 5130 - "calloop", 5131 - "nix 0.26.2", 5132 - "wayland-backend", 5520 + "nix 0.26.4", 5521 + "wayland-backend 0.1.2", 5133 5522 "wayland-scanner 0.30.1", 5134 5523 ] 5135 5524 5136 5525 [[package]] 5526 + name = "wayland-client" 5527 + version = "0.31.1" 5528 + source = "registry+https://github.com/rust-lang/crates.io-index" 5529 + checksum = "1ca7d52347346f5473bf2f56705f360e8440873052e575e55890c4fa57843ed3" 5530 + dependencies = [ 5531 + "bitflags 2.4.1", 5532 + "nix 0.26.4", 5533 + "wayland-backend 0.3.2", 5534 + "wayland-scanner 0.31.0", 5535 + ] 5536 + 5537 + [[package]] 5137 5538 name = "wayland-commons" 5138 5539 version = "0.29.5" 5139 5540 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5147 5548 5148 5549 [[package]] 5149 5550 name = "wayland-csd-frame" 5150 - version = "0.1.0" 5551 + version = "0.3.0" 5151 5552 source = "registry+https://github.com/rust-lang/crates.io-index" 5152 - checksum = "72191e30290b83491325d32c1327be7f45459c97263d9d48494c81efc9328116" 5553 + checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e" 5153 5554 dependencies = [ 5154 - "bitflags 2.4.0", 5555 + "bitflags 2.4.1", 5155 5556 "cursor-icon", 5156 - "wayland-backend", 5557 + "wayland-backend 0.3.2", 5157 5558 ] 5158 5559 5159 5560 [[package]] ··· 5169 5570 5170 5571 [[package]] 5171 5572 name = "wayland-cursor" 5172 - version = "0.30.0" 5573 + version = "0.31.0" 5173 5574 source = "registry+https://github.com/rust-lang/crates.io-index" 5174 - checksum = "2d0c3a0d5b4b688b07b0442362d3ed6bf04724fcc16cd69ab6285b90dbc487aa" 5575 + checksum = "a44aa20ae986659d6c77d64d808a046996a932aa763913864dc40c359ef7ad5b" 5175 5576 dependencies = [ 5176 - "nix 0.26.2", 5177 - "wayland-client 0.30.2", 5577 + "nix 0.26.4", 5578 + "wayland-client 0.31.1", 5178 5579 "xcursor", 5179 5580 ] 5180 5581 ··· 5197 5598 checksum = "3b28101e5ca94f70461a6c2d610f76d85ad223d042dd76585ab23d3422dd9b4d" 5198 5599 dependencies = [ 5199 5600 "bitflags 1.3.2", 5200 - "wayland-backend", 5601 + "wayland-backend 0.1.2", 5201 5602 "wayland-client 0.30.2", 5202 5603 "wayland-scanner 0.30.1", 5604 + ] 5605 + 5606 + [[package]] 5607 + name = "wayland-protocols" 5608 + version = "0.31.0" 5609 + source = "registry+https://github.com/rust-lang/crates.io-index" 5610 + checksum = "e253d7107ba913923dc253967f35e8561a3c65f914543e46843c88ddd729e21c" 5611 + dependencies = [ 5612 + "bitflags 2.4.1", 5613 + "wayland-backend 0.3.2", 5614 + "wayland-client 0.31.1", 5615 + "wayland-scanner 0.31.0", 5203 5616 "wayland-server", 5204 5617 ] 5205 5618 5206 5619 [[package]] 5207 5620 name = "wayland-protocols-wlr" 5208 - version = "0.1.0" 5621 + version = "0.2.0" 5209 5622 source = "registry+https://github.com/rust-lang/crates.io-index" 5210 - checksum = "fce991093320e4a6a525876e6b629ab24da25f9baef0c2e0080ad173ec89588a" 5623 + checksum = "ad1f61b76b6c2d8742e10f9ba5c3737f6530b4c243132c2a2ccc8aa96fe25cd6" 5211 5624 dependencies = [ 5212 - "bitflags 1.3.2", 5213 - "wayland-backend", 5214 - "wayland-client 0.30.2", 5215 - "wayland-protocols 0.30.1", 5216 - "wayland-scanner 0.30.1", 5625 + "bitflags 2.4.1", 5626 + "wayland-backend 0.3.2", 5627 + "wayland-client 0.31.1", 5628 + "wayland-protocols 0.31.0", 5629 + "wayland-scanner 0.31.0", 5217 5630 "wayland-server", 5218 5631 ] 5219 5632 ··· 5235 5648 checksum = "b9b873b257fbc32ec909c0eb80dea312076a67014e65e245f5eb69a6b8ab330e" 5236 5649 dependencies = [ 5237 5650 "proc-macro2", 5238 - "quick-xml", 5651 + "quick-xml 0.28.2", 5652 + "quote", 5653 + ] 5654 + 5655 + [[package]] 5656 + name = "wayland-scanner" 5657 + version = "0.31.0" 5658 + source = "registry+https://github.com/rust-lang/crates.io-index" 5659 + checksum = "fb8e28403665c9f9513202b7e1ed71ec56fde5c107816843fb14057910b2c09c" 5660 + dependencies = [ 5661 + "proc-macro2", 5662 + "quick-xml 0.30.0", 5239 5663 "quote", 5240 5664 ] 5241 5665 5242 5666 [[package]] 5243 5667 name = "wayland-server" 5244 - version = "0.30.1" 5668 + version = "0.31.0" 5245 5669 source = "registry+https://github.com/rust-lang/crates.io-index" 5246 - checksum = "9c43c28096fe1d49fff7d1079404fdd0f669cd1a5b00c615bdfe71bb1884d23a" 5670 + checksum = "3f3f0c52a445936ca1184c98f1a69cf4ad9c9130788884531ef04428468cb1ce" 5247 5671 dependencies = [ 5248 - "bitflags 1.3.2", 5672 + "bitflags 2.4.1", 5249 5673 "downcast-rs", 5250 - "io-lifetimes", 5251 - "nix 0.26.2", 5252 - "wayland-backend", 5253 - "wayland-scanner 0.30.1", 5674 + "io-lifetimes 2.0.2", 5675 + "nix 0.26.4", 5676 + "wayland-backend 0.3.2", 5677 + "wayland-scanner 0.31.0", 5254 5678 ] 5255 5679 5256 5680 [[package]] ··· 5277 5701 ] 5278 5702 5279 5703 [[package]] 5704 + name = "wayland-sys" 5705 + version = "0.31.1" 5706 + source = "registry+https://github.com/rust-lang/crates.io-index" 5707 + checksum = "15a0c8eaff5216d07f226cb7a549159267f3467b289d9a2e52fd3ef5aae2b7af" 5708 + dependencies = [ 5709 + "dlib", 5710 + "log", 5711 + "pkg-config", 5712 + ] 5713 + 5714 + [[package]] 5280 5715 name = "web-sys" 5281 - version = "0.3.64" 5716 + version = "0.3.65" 5282 5717 source = "registry+https://github.com/rust-lang/crates.io-index" 5283 - checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 5718 + checksum = "5db499c5f66323272151db0e666cd34f78617522fb0c1604d31a27c50c206a85" 5284 5719 dependencies = [ 5285 5720 "js-sys", 5286 5721 "wasm-bindgen", ··· 5324 5759 dependencies = [ 5325 5760 "arrayvec", 5326 5761 "bit-vec", 5327 - "bitflags 2.4.0", 5762 + "bitflags 2.4.1", 5328 5763 "codespan-reporting", 5329 5764 "log", 5330 5765 "naga", ··· 5349 5784 "arrayvec", 5350 5785 "ash", 5351 5786 "bit-set", 5352 - "bitflags 2.4.0", 5787 + "bitflags 2.4.1", 5353 5788 "block", 5354 5789 "core-graphics-types", 5355 5790 "d3d12", ··· 5362 5797 "js-sys", 5363 5798 "khronos-egl", 5364 5799 "libc", 5365 - "libloading 0.8.0", 5800 + "libloading 0.8.1", 5366 5801 "log", 5367 5802 "metal", 5368 5803 "naga", ··· 5387 5822 source = "registry+https://github.com/rust-lang/crates.io-index" 5388 5823 checksum = "d0c153280bb108c2979eb5c7391cb18c56642dd3c072e55f52065e13e2a1252a" 5389 5824 dependencies = [ 5390 - "bitflags 2.4.0", 5825 + "bitflags 2.4.1", 5391 5826 "js-sys", 5392 5827 "web-sys", 5393 5828 ] ··· 5416 5851 5417 5852 [[package]] 5418 5853 name = "winapi-util" 5419 - version = "0.1.5" 5854 + version = "0.1.6" 5420 5855 source = "registry+https://github.com/rust-lang/crates.io-index" 5421 - checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 5856 + checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 5422 5857 dependencies = [ 5423 5858 "winapi", 5424 5859 ] ··· 5448 5883 ] 5449 5884 5450 5885 [[package]] 5451 - name = "windows" 5452 - version = "0.48.0" 5886 + name = "windows-core" 5887 + version = "0.51.1" 5453 5888 source = "registry+https://github.com/rust-lang/crates.io-index" 5454 - checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 5889 + checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 5455 5890 dependencies = [ 5456 5891 "windows-targets 0.48.5", 5457 5892 ] ··· 5469 5904 "windows_x86_64_gnu 0.42.2", 5470 5905 "windows_x86_64_gnullvm 0.42.2", 5471 5906 "windows_x86_64_msvc 0.42.2", 5472 - ] 5473 - 5474 - [[package]] 5475 - name = "windows-sys" 5476 - version = "0.45.0" 5477 - source = "registry+https://github.com/rust-lang/crates.io-index" 5478 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 5479 - dependencies = [ 5480 - "windows-targets 0.42.2", 5481 5907 ] 5482 5908 5483 5909 [[package]] ··· 5605 6031 5606 6032 [[package]] 5607 6033 name = "winnow" 5608 - version = "0.5.14" 6034 + version = "0.5.19" 5609 6035 source = "registry+https://github.com/rust-lang/crates.io-index" 5610 - checksum = "d09770118a7eb1ccaf4a594a221334119a44a814fcb0d31c5b85e83e97227a97" 6036 + checksum = "829846f3e3db426d4cee4510841b71a8e58aa2a76b1132579487ae430ccd9c7b" 5611 6037 dependencies = [ 5612 6038 "memchr", 5613 6039 ] ··· 5669 6095 source = "registry+https://github.com/rust-lang/crates.io-index" 5670 6096 checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd" 5671 6097 dependencies = [ 5672 - "nix 0.26.2", 6098 + "nix 0.26.4", 5673 6099 "winapi", 5674 6100 ] 5675 6101 5676 6102 [[package]] 5677 6103 name = "xdg-shell-wrapper-config" 5678 6104 version = "0.1.0" 5679 - source = "git+https://github.com/pop-os/xdg-shell-wrapper#9ae1c4c838fe58e887b62d2a990d73ab2f6cb629" 6105 + source = "git+https://github.com/pop-os/xdg-shell-wrapper#f2ca1c3dee8f66c40bdc91cb39de69a62aaaf22f" 5680 6106 dependencies = [ 5681 6107 "serde", 5682 6108 "wayland-protocols-wlr", ··· 5684 6110 5685 6111 [[package]] 5686 6112 name = "xkbcommon" 5687 - version = "0.5.1" 6113 + version = "0.7.0" 5688 6114 source = "registry+https://github.com/rust-lang/crates.io-index" 5689 - checksum = "52db25b599e92bf6e3904134618728eeb7b49a5a4f38f107f92399bb9c496b88" 6115 + checksum = "13867d259930edc7091a6c41b4ce6eee464328c6ff9659b7e4c668ca20d4c91e" 5690 6116 dependencies = [ 5691 6117 "libc", 5692 - "memmap2 0.7.1", 6118 + "memmap2 0.8.0", 6119 + "xkeysym", 6120 + ] 6121 + 6122 + [[package]] 6123 + name = "xkeysym" 6124 + version = "0.2.0" 6125 + source = "registry+https://github.com/rust-lang/crates.io-index" 6126 + checksum = "054a8e68b76250b253f671d1268cb7f1ae089ec35e195b2efb2a4e9a836d0621" 6127 + dependencies = [ 6128 + "bytemuck", 5693 6129 ] 5694 6130 5695 6131 [[package]] 5696 6132 name = "xml-rs" 5697 - version = "0.8.16" 6133 + version = "0.8.19" 5698 6134 source = "registry+https://github.com/rust-lang/crates.io-index" 5699 - checksum = "47430998a7b5d499ccee752b41567bc3afc57e1327dc855b1a2aa44ce29b5fa1" 6135 + checksum = "0fcb9cbac069e033553e8bb871be2fbdffcab578eb25bd0f7c508cedc6dcd75a" 5700 6136 5701 6137 [[package]] 5702 6138 name = "xmlparser" 5703 - version = "0.13.5" 6139 + version = "0.13.6" 5704 6140 source = "registry+https://github.com/rust-lang/crates.io-index" 5705 - checksum = "4d25c75bf9ea12c4040a97f829154768bbbce366287e2dc044af160cd79a13fd" 6141 + checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" 5706 6142 5707 6143 [[package]] 5708 6144 name = "xmlwriter" ··· 5725 6161 "async-broadcast", 5726 6162 "async-executor", 5727 6163 "async-fs", 5728 - "async-io", 5729 - "async-lock", 6164 + "async-io 1.13.0", 6165 + "async-lock 2.8.0", 5730 6166 "async-process", 5731 6167 "async-recursion", 5732 6168 "async-task", ··· 5735 6171 "byteorder", 5736 6172 "derivative", 5737 6173 "enumflags2", 5738 - "event-listener", 6174 + "event-listener 2.5.3", 5739 6175 "futures-core", 5740 6176 "futures-sink", 5741 6177 "futures-util", 5742 6178 "hex", 5743 - "nix 0.26.2", 6179 + "nix 0.26.4", 5744 6180 "once_cell", 5745 6181 "ordered-stream", 5746 6182 "rand", ··· 5764 6200 source = "registry+https://github.com/rust-lang/crates.io-index" 5765 6201 checksum = "41d1794a946878c0e807f55a397187c11fc7a038ba5d868e7db4f3bd7760bc9d" 5766 6202 dependencies = [ 5767 - "proc-macro-crate", 6203 + "proc-macro-crate 1.3.1", 5768 6204 "proc-macro2", 5769 6205 "quote", 5770 6206 "regex", ··· 5785 6221 5786 6222 [[package]] 5787 6223 name = "zeno" 5788 - version = "0.2.2" 6224 + version = "0.2.3" 5789 6225 source = "registry+https://github.com/rust-lang/crates.io-index" 5790 - checksum = "c110ba09c9b3a43edd4803d570df0da2414fed6e822e22b976a4e3ef50860701" 6226 + checksum = "dd15f8e0dbb966fd9245e7498c7e9e5055d9e5c8b676b95bd67091cd11a1e697" 6227 + 6228 + [[package]] 6229 + name = "zerocopy" 6230 + version = "0.7.25" 6231 + source = "registry+https://github.com/rust-lang/crates.io-index" 6232 + checksum = "8cd369a67c0edfef15010f980c3cbe45d7f651deac2cd67ce097cd801de16557" 6233 + dependencies = [ 6234 + "zerocopy-derive", 6235 + ] 6236 + 6237 + [[package]] 6238 + name = "zerocopy-derive" 6239 + version = "0.7.25" 6240 + source = "registry+https://github.com/rust-lang/crates.io-index" 6241 + checksum = "c2f140bda219a26ccc0cdb03dba58af72590c53b22642577d88a927bc5c87d6b" 6242 + dependencies = [ 6243 + "proc-macro2", 6244 + "quote", 6245 + "syn 2.0.39", 6246 + ] 5791 6247 5792 6248 [[package]] 5793 6249 name = "zune-inflate" ··· 5819 6275 source = "registry+https://github.com/rust-lang/crates.io-index" 5820 6276 checksum = "934d7a7dfc310d6ee06c87ffe88ef4eca7d3e37bb251dece2ef93da8f17d8ecd" 5821 6277 dependencies = [ 5822 - "proc-macro-crate", 6278 + "proc-macro-crate 1.3.1", 5823 6279 "proc-macro2", 5824 6280 "quote", 5825 6281 "syn 1.0.109",
-62
pkgs/applications/window-managers/cosmic/applets/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, rustPlatform 2 - , cargo, just, pkg-config, util-linuxMinimal 3 - , dbus, glib, libxkbcommon, pulseaudio, wayland 4 - }: 5 - 6 - rustPlatform.buildRustPackage { 7 - pname = "cosmic-applets"; 8 - version = "unstable-2023-10-04"; 9 - 10 - src = fetchFromGitHub { 11 - owner = "pop-os"; 12 - repo = "cosmic-applets"; 13 - rev = "fefaea9b63548b1baa5e64521b860234ee46339a"; 14 - hash = "sha256-I+18NCKLH/3QajYpZRPYmCUxkbptAjuEHfKtnZVOlH4="; 15 - }; 16 - 17 - cargoLock = { 18 - lockFile = ./Cargo.lock; 19 - outputHashes = { 20 - "accesskit-0.11.0" = "sha256-/6KUCH1CwMHd5YEMOpAdVeAxpjl9JvrzDA4Xnbd1D9k="; 21 - "cosmic-client-toolkit-0.1.0" = "sha256-pVWK+dODQxNej5jWyb5wX/insoiXkX8NFBDkDEejVV0="; 22 - "cosmic-config-0.1.0" = "sha256-pUDuRHX46fbcPw19s5DEsPyJdb/Bem/lJg+3NEO/WX0="; 23 - "cosmic-dbus-networkmanager-0.1.0" = "sha256-eWqB+zRCfJYdrcPE8Ey+WgzPBJltN0zRiutzgdtWsDA="; 24 - "cosmic-notifications-config-0.1.0" = "sha256-KnPQdrMpzA05v4bt0Fz9fbcKdC0cSU60Hv7wqrthIaw="; 25 - "cosmic-panel-config-0.1.0" = "sha256-H3QuiP7Og69wm9yCX/uoSG0aQ3B/61q9Sdj+rW4KZMU="; 26 - "cosmic-time-0.3.0" = "sha256-JiTwbJSml8azelBr6b3cBvJsuAL1hmHtuHx2TJupEzE="; 27 - "smithay-client-toolkit-0.17.0" = "sha256-v3FxzDypxSfbEU50+oDoqrGWPm+S+kDZQq//3Q4DDRU="; 28 - "softbuffer-0.2.0" = "sha256-VD2GmxC58z7Qfu/L+sfENE+T8L40mvUKKSfgLmCTmjY="; 29 - "xdg-shell-wrapper-config-0.1.0" = "sha256-Otxp8D5dNZl70K1ZIBswGj6K5soGVbVim7gutUHkBvw="; 30 - }; 31 - }; 32 - 33 - postPatch = '' 34 - substituteInPlace justfile --replace '#!/usr/bin/env' "#!$(command -v env)" 35 - ''; 36 - 37 - nativeBuildInputs = [ just pkg-config util-linuxMinimal ]; 38 - buildInputs = [ dbus glib libxkbcommon pulseaudio wayland ]; 39 - 40 - dontUseJustBuild = true; 41 - 42 - justFlags = [ 43 - "--set" "prefix" (placeholder "out") 44 - "--set" "target" "${stdenv.hostPlatform.rust.cargoShortTarget}/release" 45 - ]; 46 - 47 - # Force linking to libwayland-client, which is always dlopen()ed. 48 - "CARGO_TARGET_${stdenv.hostPlatform.rust.cargoEnvVarTarget}_RUSTFLAGS" = 49 - map (a: "-C link-arg=${a}") [ 50 - "-Wl,--push-state,--no-as-needed" 51 - "-lwayland-client" 52 - "-Wl,--pop-state" 53 - ]; 54 - 55 - meta = with lib; { 56 - homepage = "https://github.com/pop-os/cosmic-applets"; 57 - description = "Applets for the COSMIC Desktop Environment"; 58 - license = licenses.gpl3Only; 59 - maintainers = with maintainers; [ qyliss ]; 60 - platforms = platforms.linux; 61 - }; 62 - }
+72
pkgs/by-name/co/cosmic-applets/package.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , rustPlatform 5 + , just 6 + , pkg-config 7 + , util-linuxMinimal 8 + , dbus 9 + , glib 10 + , libxkbcommon 11 + , pulseaudio 12 + , wayland 13 + }: 14 + 15 + rustPlatform.buildRustPackage { 16 + pname = "cosmic-applets"; 17 + version = "unstable-2023-11-13"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "pop-os"; 21 + repo = "cosmic-applets"; 22 + rev = "21fc43e5781a7fbe7e7f39a0b68963dc8c2d486d"; 23 + hash = "sha256-WOUlYIh4a8qQhga4weKcuJYxNL5fa4FzNFuRB1T32oU="; 24 + }; 25 + 26 + cargoLock = { 27 + lockFile = ./Cargo.lock; 28 + outputHashes = { 29 + "accesskit-0.11.0" = "sha256-xVhe6adUb8VmwIKKjHxwCwOo5Y1p3Or3ylcJJdLDrrE="; 30 + "cosmic-client-toolkit-0.1.0" = "sha256-st46wmOncJvu0kj6qaot6LT/ojmW/BwXbbGf8s0mdZ8="; 31 + "cosmic-config-0.1.0" = "sha256-6g/Om3SFLa+3fu2dkifbXbFP3ksXTbsjb6Xu7tDB570="; 32 + "cosmic-dbus-networkmanager-0.1.0" = "sha256-eSUyDME39UhoimO/gd2mJDaunCrLNXesO9C69IwtjgM="; 33 + "cosmic-notifications-config-0.1.0" = "sha256-QsLlm+jxsmc90Jc73qKgi52PVZoSwuGXDXw+iSJTALw="; 34 + "cosmic-panel-config-0.1.0" = "sha256-uUq+xElZMcG5SWzha9/8COaenycII5aiXmm7sXGgjXE="; 35 + "cosmic-time-0.3.0" = "sha256-Vx9MrdnAwqDCnA6WgT/cXxs4NDWvAVZ6hv0FXi2A8t4="; 36 + "smithay-client-toolkit-0.18.0" = "sha256-9NwNrEC+csTVtmXrNQFvOgohTGUO2VCvqOME7SnDCOg="; 37 + "softbuffer-0.2.0" = "sha256-VD2GmxC58z7Qfu/L+sfENE+T8L40mvUKKSfgLmCTmjY="; 38 + "taffy-0.3.11" = "sha256-0hXOEj6IjSW8e1t+rvxBFX6V9XRum3QO2Des1XlHJEw="; 39 + "xdg-shell-wrapper-config-0.1.0" = "sha256-3Dc2fU8xBVUmAs0Q1zEdcdG7vlxpBO+UIlyM/kzGcC4="; 40 + }; 41 + }; 42 + 43 + postPatch = '' 44 + substituteInPlace justfile --replace '#!/usr/bin/env' "#!$(command -v env)" 45 + ''; 46 + 47 + nativeBuildInputs = [ just pkg-config util-linuxMinimal ]; 48 + buildInputs = [ dbus glib libxkbcommon pulseaudio wayland ]; 49 + 50 + dontUseJustBuild = true; 51 + 52 + justFlags = [ 53 + "--set" "prefix" (placeholder "out") 54 + "--set" "target" "${stdenv.hostPlatform.rust.cargoShortTarget}/release" 55 + ]; 56 + 57 + # Force linking to libwayland-client, which is always dlopen()ed. 58 + "CARGO_TARGET_${stdenv.hostPlatform.rust.cargoEnvVarTarget}_RUSTFLAGS" = 59 + map (a: "-C link-arg=${a}") [ 60 + "-Wl,--push-state,--no-as-needed" 61 + "-lwayland-client" 62 + "-Wl,--pop-state" 63 + ]; 64 + 65 + meta = with lib; { 66 + homepage = "https://github.com/pop-os/cosmic-applets"; 67 + description = "Applets for the COSMIC Desktop Environment"; 68 + license = licenses.gpl3Only; 69 + maintainers = with maintainers; [ qyliss nyanbinary ]; 70 + platforms = platforms.linux; 71 + }; 72 + }
+23
pkgs/by-name/ln/lngen/package.nix
··· 1 + { lib 2 + , haskellPackages 3 + , fetchFromGitHub 4 + }: 5 + 6 + haskellPackages.mkDerivation { 7 + pname = "lngen"; 8 + version = "unstable-2023-10-17"; 9 + src = fetchFromGitHub { 10 + owner = "plclub"; 11 + repo = "lngen"; 12 + rev = "c7645001404e0e2fec2c56f128e30079b5b3fac6"; 13 + hash = "sha256-2vUYHtl9yAadwdTtsjTI0klP+nRSYGXVpaSwD9EBTTI="; 14 + }; 15 + isLibrary = true; 16 + isExecutable = true; 17 + libraryHaskellDepends = with haskellPackages; [ base syb parsec containers mtl ]; 18 + executableHaskellDepends = with haskellPackages; [ base ]; 19 + homepage = "https://github.com/plclub/lngen"; 20 + description = "Tool for generating Locally Nameless definitions and proofs in Coq, working together with Ott"; 21 + maintainers = with lib.maintainers; [ chen ]; 22 + license = lib.licenses.mit; 23 + }
+10 -4
pkgs/by-name/ma/mariadb-connector-java/package.nix
··· 1 - { lib, maven, fetchFromGitHub }: 1 + { lib 2 + , maven 3 + , fetchFromGitHub 4 + , nix-update-script 5 + }: 2 6 3 7 maven.buildMavenPackage rec { 4 8 pname = "mariadb-connector-java"; 5 - version = "3.2.0"; 9 + version = "3.3.0"; 6 10 7 11 src = fetchFromGitHub { 8 12 owner = "mariadb-corporation"; 9 13 repo = "mariadb-connector-j"; 10 14 rev = "refs/tags/${version}"; 11 - hash = "sha256-ssh6v2h/Ikl2Ulim6lSJ45avjKSCh3Vmtg+LPOgONRU="; 15 + hash = "sha256-JuMm01ihgVoKpe8wyuUIDyzSxMODRg7dQpTCyVA/K10="; 12 16 }; 13 17 14 - mvnHash = "sha256-MizBoFlpYxwwcU7rOac1h2VPJoXv3eRQgWRgsTh8Xno="; 18 + mvnHash = "sha256-Px4Qxb1tTvRKZum1xfe0mdX+EyimnyyfzrydiaDaYRo="; 15 19 16 20 # Disable tests because they require networking 17 21 mvnParameters = "-DskipTests"; ··· 21 25 install -m444 -D target/mariadb-java-client-${version}.jar $out/share/java/mariadb-java-client.jar 22 26 runHook postInstall 23 27 ''; 28 + 29 + passthru.updateScript = nix-update-script { }; 24 30 25 31 meta = with lib; { 26 32 description = "MariaDB Connector/J is used to connect applications developed in Java to MariaDB and MySQL databases";
+30
pkgs/by-name/ni/nix-search-cli/package.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + , unstableGitUpdater 5 + }: 6 + 7 + buildGoModule { 8 + pname = "nix-search-cli"; 9 + version = "unstable-2023-09-12"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "peterldowns"; 13 + repo = "nix-search-cli"; 14 + rev = "f3f1c53c72dadac06472a7112aeb486ab5dda695"; 15 + hash = "sha256-YM1Lf7py79rU8aJE0PfQaMr5JWx5J1covUf1aCjRkc8="; 16 + }; 17 + 18 + vendorHash = "sha256-JDOu7YdX9ztMZt0EFAMz++gD7n+Mn1VOe5g6XwrgS5M="; 19 + 20 + passthru.updateScript = unstableGitUpdater { }; 21 + 22 + meta = with lib; { 23 + description = "CLI for searching packages on search.nixos.org"; 24 + homepage = "https://github.com/peterldowns/nix-search-cli"; 25 + license = licenses.mit; 26 + maintainers = with maintainers; [ donovanglover ]; 27 + platforms = platforms.all; 28 + mainProgram = "nix-search"; 29 + }; 30 + }
+53
pkgs/by-name/rt/rtl-sdr-osmocom/package.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitea 4 + , cmake 5 + , pkg-config 6 + , libusb1 7 + }: 8 + 9 + stdenv.mkDerivation rec { 10 + pname = "rtl-sdr-osmocom"; 11 + version = "2.0.1"; 12 + 13 + src = fetchFromGitea { 14 + domain = "gitea.osmocom.org"; 15 + owner = "sdr"; 16 + repo = "rtl-sdr"; 17 + rev = "v${version}"; 18 + hash = "sha256-+RYSCn+wAkb9e7NRI5kLY8a6OXtJu7QcSUht1R6wDX0="; 19 + }; 20 + 21 + postPatch = '' 22 + substituteInPlace CMakeLists.txt \ 23 + --replace '/etc/udev/rules.d' "$out/etc/udev/rules.d" \ 24 + --replace "VERSION_INFO_PATCH_VERSION git" "VERSION_INFO_PATCH_VERSION ${lib.versions.patch version}" 25 + 26 + substituteInPlace rtl-sdr.rules \ 27 + --replace 'MODE:="0666"' 'ENV{ID_SOFTWARE_RADIO}="1", MODE="0660", GROUP="plugdev"' 28 + ''; 29 + 30 + nativeBuildInputs = [ pkg-config cmake ]; 31 + 32 + propagatedBuildInputs = [ libusb1 ]; 33 + 34 + cmakeFlags = lib.optionals stdenv.isLinux [ 35 + "-DINSTALL_UDEV_RULES=ON" 36 + "-DWITH_RPC=ON" 37 + ]; 38 + 39 + meta = with lib; { 40 + description = "Software to turn the RTL2832U into a SDR receiver"; 41 + longDescription = '' 42 + This packages the rtl-sdr library by the Osmocom project. This is the upstream codebase of the unsuffixed "rtl-sdr" package, which is a downstream fork. A list of differences can be found here: 43 + https://github.com/librtlsdr/librtlsdr/blob/master/README_improvements.md 44 + 45 + The Osmocom upstream has a regular release schedule, so this package will likely support newer SDR dongles. It should be compatible with most software that currently depends on the "rtl-sdr" nixpkg, but comptabiliy should be manually confirmed. 46 + ''; 47 + homepage = "https://gitea.osmocom.org/sdr/rtl-sdr"; 48 + license = licenses.gpl2Plus; 49 + maintainers = with maintainers; [ skovati ]; 50 + platforms = platforms.unix; 51 + mainProgram = "rtl_sdr"; 52 + }; 53 + }
+3 -3
pkgs/by-name/se/seclists/package.nix
··· 5 5 6 6 stdenvNoCC.mkDerivation { 7 7 pname = "seclists"; 8 - version = "2023.2"; 8 + version = "2023.3"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "danielmiessler"; 12 12 repo = "SecLists"; 13 - rev = "2023.2"; 14 - hash = "sha256-yVxb5GaQDuCsyjIV+oZzNUEFoq6gMPeaIeQviwGdAgY="; 13 + rev = "2023.3"; 14 + hash = "sha256-mJgCzp8iKzSWf4Tud5xDpnuY4aNJmnEo/hTcuGTaOWM="; 15 15 }; 16 16 17 17 installPhase = ''
+2 -2
pkgs/by-name/tr/trealla/package.nix
··· 17 17 assert lib.elem lineEditingLibrary [ "isocline" "readline" ]; 18 18 stdenv.mkDerivation (finalAttrs: { 19 19 pname = "trealla"; 20 - version = "2.29.36"; 20 + version = "2.30.7"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "trealla-prolog"; 24 24 repo = "trealla"; 25 25 rev = "v${finalAttrs.version}"; 26 - hash = "sha256-tQp2DOBW71Wm1aQqspW9tuH8aM8ir+ilZiENdElB/+0="; 26 + hash = "sha256-W0hcIeWbgORWBYuNbVJRA8NNnuBEG8HMLeVBxXtd2VQ="; 27 27 }; 28 28 29 29 postPatch = ''
+12 -4
pkgs/by-name/xs/xscreensaver/package.nix
··· 24 24 , perlPackages 25 25 , pkg-config 26 26 , systemd 27 - , forceInstallAllHacks ? false 27 + , forceInstallAllHacks ? true 28 28 , withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd 29 29 }: 30 30 31 31 stdenv.mkDerivation (finalAttrs: { 32 32 pname = "xscreensaver"; 33 - version = "6.06"; 33 + version = "6.08"; 34 34 35 35 src = fetchurl { 36 36 url = "https://www.jwz.org/xscreensaver/xscreensaver-${finalAttrs.version}.tar.gz"; 37 - hash = "sha256-9TT6uFqDbeW4vo6R/CG4DKfWpO2ThuviB9S+ek50mac="; 37 + hash = "sha256-XPUrpSXO7PlLLyvWNIXr3zGOEvzA8q2tfUwQbYVedqM="; 38 38 }; 39 + 40 + outputs = [ "out" "man" ]; 39 41 40 42 nativeBuildInputs = [ 41 43 intltool ··· 65 67 perlPackages.MozillaCA 66 68 perlPackages.perl 67 69 ] 68 - ++ lib.optional withSystemd systemd; 70 + ++ lib.optionals withSystemd [ systemd ]; 71 + 72 + postPatch = '' 73 + pushd hacks 74 + patchShebangs check-configs.pl munge-ad.pl xml2man.pl 75 + popd 76 + ''; 69 77 70 78 preConfigure = '' 71 79 # Fix installation paths for GTK resources.
+2 -2
pkgs/data/icons/tau-hydrogen/default.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "tau-hydrogen"; 13 - version = "1.0.13"; 13 + version = "1.0.14"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "tau-OS"; 17 17 repo = "tau-hydrogen"; 18 18 rev = finalAttrs.version; 19 - hash = "sha256-rfgSNytPCVCkAJ9N3kRw9mfcXr+JEqy1jyyDgXqxtsM="; 19 + hash = "sha256-8awcowBm0hwoYYm/wtKeqCWRhgXh2rI3UvAlL1tbj6c="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+5 -5
pkgs/development/compilers/julia/1.9-bin.nix
··· 24 24 in 25 25 stdenv.mkDerivation rec { 26 26 pname = "julia-bin"; 27 - version = "1.9.3"; 27 + version = "1.9.4"; 28 28 29 29 src = { 30 30 x86_64-linux = fetchurl { 31 31 url = "https://julialang-s3.julialang.org/bin/linux/x64/${lib.versions.majorMinor version}/julia-${version}-linux-x86_64.tar.gz"; 32 - sha256 = "d76670cc9ba3e0fd4c1545dd3d00269c0694976a1176312795ebce1692d323d1"; 32 + sha256 = "07d20c4c2518833e2265ca0acee15b355463361aa4efdab858dad826cf94325c"; 33 33 }; 34 34 aarch64-linux = fetchurl { 35 35 url = "https://julialang-s3.julialang.org/bin/linux/aarch64/${lib.versions.majorMinor version}/julia-${version}-linux-aarch64.tar.gz"; 36 - sha256 = "55437879f6b98470d96c4048b922501b643dfffb8865abeb90c7333a83df7524"; 36 + sha256 = "541d0c5a9378f8d2fc384bb8595fc6ffe20d61054629a6e314fb2f8dfe2f2ade"; 37 37 }; 38 38 x86_64-darwin = fetchurl { 39 39 url = "https://julialang-s3.julialang.org/bin/mac/x64/${lib.versions.majorMinor version}/julia-${version}-mac64.tar.gz"; 40 - sha256 = "6eea87748424488226090d1e7d553e72ab106a873d63c732fc710a3d080abb97"; 40 + sha256 = "67eec264f6afc9e9bf72c0f62c84d91c2ebdfaed6a0aa11606e3c983d278b441"; 41 41 }; 42 42 aarch64-darwin = fetchurl { 43 43 url = "https://julialang-s3.julialang.org/bin/mac/aarch64/${lib.versions.majorMinor version}/julia-${version}-macaarch64.tar.gz"; 44 - sha256 = "f518e38d7bd5b37766fb051916bd295993aa4b52a47018f4c98b5fde721ced87"; 44 + sha256 = "67542975e86102eec95bc4bb7c30c5d8c7ea9f9a0b388f0e10f546945363b01a"; 45 45 }; 46 46 }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 47 47
+2 -2
pkgs/development/compilers/julia/1.9.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "julia"; 16 - version = "1.9.3"; 16 + version = "1.9.4"; 17 17 18 18 src = fetchurl { 19 19 url = "https://github.com/JuliaLang/julia/releases/download/v${version}/julia-${version}-full.tar.gz"; 20 - hash = "sha256-j8DJ3FRDoo01m9ed2jlA+pS6K3lmuJhlvrINqBEjwxY="; 20 + hash = "sha256-YYQ7lkf9BtOymU8yd6ZN4ctaWlKX2TC4yOO8DpN0ACQ="; 21 21 }; 22 22 23 23 patches = [
+1 -1
pkgs/development/coq-modules/fourcolor/default.nix
··· 16 16 defaultVersion = with lib.versions; lib.switch [ coq.version mathcomp.version ] [ 17 17 { cases = [ (isGe "8.16") (isGe "2.0") ]; out = "1.3.1"; } 18 18 { cases = [ (isGe "8.16") "2.0.0" ]; out = "1.3.0"; } 19 - { cases = [ (isGe "8.11") (range "1.12" "1.17") ]; out = "1.2.5"; } 19 + { cases = [ (isGe "8.11") (range "1.12" "1.18") ]; out = "1.2.5"; } 20 20 { cases = [ (isGe "8.11") (range "1.11" "1.14") ]; out = "1.2.4"; } 21 21 { cases = [ (isLe "8.13") (lib.pred.inter (isGe "1.11.0") (isLt "1.13")) ]; out = "1.2.3"; } 22 22 ] null;
+9 -5
pkgs/development/coq-modules/graph-theory/default.nix
··· 1 - { lib, mkCoqDerivation, coq, mathcomp-algebra, mathcomp-finmap, mathcomp-fingroup 1 + { lib, mkCoqDerivation, coq, mathcomp, mathcomp-finmap 2 2 , fourcolor, hierarchy-builder, version ? null }: 3 3 4 4 mkCoqDerivation { ··· 6 6 7 7 release."0.9".sha256 = "sha256-Hl3JS9YERD8QQziXqZ9DqLHKp63RKI9HxoFYWSkJQZI="; 8 8 release."0.9.1".sha256 = "sha256-lRRY+501x+DqNeItBnbwYIqWLDksinWIY4x/iojRNYU="; 9 + release."0.9.2".sha256 = "sha256-DPYCZS8CzkfgpR+lmYhV2v20ezMtyWp8hdWpuh0OOQU="; 10 + release."0.9.3".sha256 = "sha256-9WX3gsw+4btJLqcGg2W+7Qy+jaZtkfw7vCp8sXYmaWw="; 9 11 10 12 releaseRev = v: "v${v}"; 11 13 12 14 inherit version; 13 - defaultVersion = with lib.versions; lib.switch coq.coq-version [ 14 - { case = range "8.14" "8.16"; out = "0.9.1"; } 15 - { case = range "8.12" "8.12"; out = "0.9"; } 15 + defaultVersion = with lib.versions; lib.switch [ coq.coq-version mathcomp.version ] [ 16 + { cases = [ (isGe "8.16") (range "2.0.0" "2.1.0") ]; out = "0.9.3"; } 17 + { cases = [ (range "8.14" "8.18") (range "1.13.0" "1.18.0") ]; out = "0.9.2"; } 18 + { cases = [ (range "8.14" "8.16") (range "1.13.0" "1.14.0") ]; out = "0.9.1"; } 19 + { cases = [ (range "8.12" "8.13") (range "1.12.0" "1.14.0") ]; out = "0.9"; } 16 20 ] null; 17 21 18 - propagatedBuildInputs = [ mathcomp-algebra mathcomp-finmap mathcomp-fingroup fourcolor hierarchy-builder ]; 22 + propagatedBuildInputs = [ mathcomp.algebra mathcomp-finmap mathcomp.fingroup fourcolor hierarchy-builder ]; 19 23 20 24 meta = with lib; { 21 25 description = "Library of formalized graph theory results in Coq";
+5 -1
pkgs/development/coq-modules/mathcomp-analysis/default.nix
··· 9 9 repo = "analysis"; 10 10 owner = "math-comp"; 11 11 12 + release."0.6.6".sha256 = "sha256-tWtv6yeB5/vzwpKZINK9OQ0yQsvD8qu9zVSNHvLMX5Y="; 13 + release."0.6.5".sha256 = "sha256-oJk9/Jl1SWra2aFAXRAVfX7ZUaDfajqdDksYaW8dv8E="; 12 14 release."0.6.1".sha256 = "sha256-1VyNXu11/pDMuH4DmFYSUF/qZ4Bo+/Zl3Y0JkyrH/r0="; 13 15 release."0.6.0".sha256 = "sha256-0msICcIrK6jbOSiBu0gIVU3RHwoEEvB88CMQqW/06rg="; 14 16 release."0.5.3".sha256 = "sha256-1NjFsi5TITF8ZWx1NyppRmi8g6YaoUtTdS9bU/sUe5k="; ··· 24 26 release."0.2.3".sha256 = "0p9mr8g1qma6h10qf7014dv98ln90dfkwn76ynagpww7qap8s966"; 25 27 26 28 defaultVersion = with versions; lib.switch [ coq.version mathcomp.version ] [ 27 - { cases = [ (isGe "8.14") (isGe "1.13.0") ]; out = "0.6.1"; } 29 + { cases = [ (isGe "8.17") (range "1.15.0" "1.18.0") ]; out = "0.6.6"; } 30 + { cases = [ (isGe "8.14") (range "1.15.0" "1.17.0") ]; out = "0.6.5"; } 31 + { cases = [ (isGe "8.14") (range "1.13.0" "1.16.0") ]; out = "0.6.1"; } 28 32 { cases = [ (isGe "8.14") (range "1.13" "1.15") ]; out = "0.5.2"; } 29 33 { cases = [ (range "8.13" "8.15") (range "1.13" "1.14") ]; out = "0.5.1"; } 30 34 { cases = [ (range "8.13" "8.15") (range "1.12" "1.14") ]; out = "0.3.13"; }
+1 -1
pkgs/development/coq-modules/mathcomp-apery/default.nix
··· 8 8 9 9 inherit version; 10 10 defaultVersion = with lib.versions; lib.switch [ coq.version mathcomp.version ] [ 11 - { cases = [ (range "8.13" "8.16") (isGe "1.12.0") ]; out = "1.0.2"; } 11 + { cases = [ (range "8.13" "8.16") (range "1.12.0" "1.17.0") ]; out = "1.0.2"; } 12 12 ] null; 13 13 14 14 release."1.0.2".sha256 = "sha256-llxyMKYvWUA7fyroG1S/jtpioAoArmarR1edi3cikcY=";
+1 -1
pkgs/development/coq-modules/mathcomp-finmap/default.nix
··· 8 8 inherit version; 9 9 defaultVersion = with lib.versions; lib.switch [ coq.version mathcomp.version ] [ 10 10 { cases = [ (range "8.16" "8.18") (isGe "2.0") ]; out = "2.0.0"; } 11 - { cases = [ (range "8.13" "8.18") (range "1.12" "1.17") ]; out = "1.5.2"; } 11 + { cases = [ (range "8.13" "8.18") (range "1.12" "1.18") ]; out = "1.5.2"; } 12 12 { cases = [ (isGe "8.10") (range "1.11" "1.17") ]; out = "1.5.1"; } 13 13 { cases = [ (range "8.7" "8.11") "1.11.0" ]; out = "1.5.0"; } 14 14 { cases = [ (isEq "8.11") (range "1.8" "1.10") ]; out = "1.4.0+coq-8.11"; }
+1 -1
pkgs/development/coq-modules/mathcomp-infotheo/default.nix
··· 7 7 inherit version; 8 8 defaultVersion = with lib.versions; lib.switch [ coq.version mathcomp-analysis.version] [ 9 9 { cases = [ (isGe "8.17") (isGe "0.6.0") ]; out = "0.5.2"; } 10 - { cases = [ (range "8.15" "8.16") (range "0.5.4" "0.6.2") ]; out = "0.5.1"; } 10 + { cases = [ (range "8.15" "8.16") (range "0.5.4" "0.6.5") ]; out = "0.5.1"; } 11 11 ] null; 12 12 release."0.5.1".sha256 = "sha256-yBBl5l+V+dggsg5KM59Yo9CULKog/xxE8vrW+ZRnX7Y="; 13 13 release."0.5.2".sha256 = "sha256-8WAnAV53c0pMTdwj8XcUDUkLZbpUgIQbEOgOb63uHQA=";
+1 -1
pkgs/development/coq-modules/mathcomp-zify/default.nix
··· 10 10 defaultVersion = with lib.versions; 11 11 lib.switch [ coq.coq-version mathcomp-algebra.version ] [ 12 12 { cases = [ (range "8.16" "8.18") (isGe "2.0.0") ]; out = "1.5.0+2.0+8.16"; } 13 - { cases = [ (range "8.13" "8.18") (range "1.12" "1.17.0") ]; out = "1.3.0+1.12+8.13"; } 13 + { cases = [ (range "8.13" "8.18") (range "1.12" "1.18.0") ]; out = "1.3.0+1.12+8.13"; } 14 14 { cases = [ (range "8.13" "8.16") (range "1.12" "1.17.0") ]; out = "1.1.0+1.12+8.13"; } 15 15 ] null; 16 16
+3 -1
pkgs/development/coq-modules/mathcomp/default.nix
··· 19 19 owner = "math-comp"; 20 20 withDoc = single && (args.withDoc or false); 21 21 defaultVersion = with versions; lib.switch coq.coq-version [ 22 - { case = isGe "8.15"; out = "1.17.0"; } 22 + { case = isGe "8.17"; out = "1.18.0"; } 23 + { case = range "8.15" "8.18"; out = "1.17.0"; } 23 24 { case = range "8.16" "8.18"; out = "2.1.0"; } 24 25 { case = range "8.16" "8.18"; out = "2.0.0"; } 25 26 { case = range "8.13" "8.18"; out = "1.16.0"; } ··· 37 38 release = { 38 39 "2.1.0".sha256 = "sha256-XDLx0BIkVRkSJ4sGCIE51j3rtkSGemNTs/cdVmTvxqo="; 39 40 "2.0.0".sha256 = "sha256-dpOmrHYUXBBS9kmmz7puzufxlbNpIZofpcTvJFLG5DI="; 41 + "1.18.0".sha256 = "sha256-mJJ/zvM2WtmBZU3U4oid/zCMvDXei/93v5hwyyqwiiY="; 40 42 "1.17.0".sha256 = "sha256-bUfoSTMiW/GzC1jKFay6DRqGzKPuLOSUsO6/wPSFwNg="; 41 43 "1.16.0".sha256 = "sha256-gXTKhRgSGeRBUnwdDezMsMKbOvxdffT+kViZ9e1gEz0="; 42 44 "1.15.0".sha256 = "1bp0jxl35ms54s0mdqky15w9af03f3i0n06qk12k4gw1xzvwqv21";
+1 -1
pkgs/development/coq-modules/multinomials/default.nix
··· 11 11 defaultVersion = with lib.versions; lib.switch [ coq.version mathcomp.version ] [ 12 12 { cases = [ (isGe "8.16") (isGe "2.1.0") ]; out = "2.1.0"; } 13 13 { cases = [ (isGe "8.16") "2.0.0" ]; out = "2.0.0"; } 14 - { cases = [ (isGe "8.15") (range "1.15.0" "1.17.0") ]; out = "1.6.0"; } 14 + { cases = [ (isGe "8.15") (range "1.15.0" "1.18.0") ]; out = "1.6.0"; } 15 15 { cases = [ (isGe "8.10") (range "1.13.0" "1.17.0") ]; out = "1.5.6"; } 16 16 { cases = [ (range "8.10" "8.16") (range "1.12.0" "1.15.0") ]; out = "1.5.5"; } 17 17 { cases = [ (range "8.10" "8.12") "1.12.0" ]; out = "1.5.3"; }
+2 -2
pkgs/development/interpreters/ruby/default.nix
··· 351 351 }; 352 352 353 353 ruby_3_3 = generic { 354 - version = rubyVersion "3" "3" "0" "preview2"; 355 - sha256 = "sha256-MM6LD+EbN7WsCI9aV2V0S5NerEW7ianjgXMVMxRPWZE="; 354 + version = rubyVersion "3" "3" "0" "preview3"; 355 + sha256 = "sha256-CWkUG+kuZ+DtuEqPs1SsyY8BvXjmAqI6DxNgRcgvSAk="; 356 356 cargoSha256 = "sha256-GeelTMRFIyvz1QS2L+Q3KAnyQy7jc0ejhx3TdEFVEbk="; 357 357 }; 358 358
+3 -3
pkgs/development/interpreters/zuo/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "zuo"; 5 - version = "unstable-2023-10-17"; 5 + version = "unstable-2023-11-10"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "racket"; 9 9 repo = "zuo"; 10 - rev = "493e9cd08147add01bba9247f36759f095b87678"; 11 - hash = "sha256-gsCjB3V+A0kMZJZ9onZ57R6b1Ha0K+Q383DQoVGfY7I="; 10 + rev = "9e2aa26b0574b4ac53c838f6b59fd78f952c3923"; 11 + hash = "sha256-wF+jj4+4uFofW9KhVqRF7EoWViRny2KuSfX/l6UN+yY="; 12 12 }; 13 13 14 14 doCheck = true;
+2 -2
pkgs/development/libraries/libcmis/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libcmis"; 5 - version = "0.6.0"; 5 + version = "0.6.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tdf"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-E2A4uJUayqMMxVifzeAeYKLL+FiV2vShNNdXe5ZLXZ4="; 11 + sha256 = "sha256-HXiyQKjOlQXWABY10XrOiYxPqfpmUJC3a6xD98LIHDw="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoreconfHook pkg-config docbook2x ];
+202 -199
pkgs/development/libraries/libdeltachat/Cargo.lock
··· 198 198 199 199 [[package]] 200 200 name = "async-channel" 201 - version = "2.0.0" 201 + version = "2.1.0" 202 202 source = "registry+https://github.com/rust-lang/crates.io-index" 203 - checksum = "336d835910fab747186c56586562cb46f42809c2843ef3a84f47509009522838" 203 + checksum = "d37875bd9915b7d67c2f117ea2c30a0989874d0b2cb694fe25403c85763c0c9e" 204 204 dependencies = [ 205 205 "concurrent-queue", 206 - "event-listener 3.0.0", 206 + "event-listener 3.0.1", 207 207 "event-listener-strategy", 208 208 "futures-core", 209 209 "pin-project-lite", ··· 224 224 225 225 [[package]] 226 226 name = "async-imap" 227 - version = "0.9.2" 227 + version = "0.9.3" 228 228 source = "registry+https://github.com/rust-lang/crates.io-index" 229 - checksum = "936c1b580be4373b48c9c687e0c79285441664398354df28d0860087cac0c069" 229 + checksum = "2e542b1682eba6b85a721daef0c58e79319ffd0c678565c07ac57c8071c548b5" 230 230 dependencies = [ 231 - "async-channel 1.9.0", 231 + "async-channel 2.1.0", 232 232 "base64 0.21.5", 233 233 "bytes", 234 234 "chrono", ··· 290 290 dependencies = [ 291 291 "proc-macro2", 292 292 "quote", 293 - "syn 2.0.38", 293 + "syn 2.0.39", 294 294 ] 295 295 296 296 [[package]] ··· 512 512 513 513 [[package]] 514 514 name = "brotli-decompressor" 515 - version = "2.5.0" 515 + version = "2.5.1" 516 516 source = "registry+https://github.com/rust-lang/crates.io-index" 517 - checksum = "da74e2b81409b1b743f8f0c62cc6254afefb8b8e50bbfe3735550f7aeefa3448" 517 + checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f" 518 518 dependencies = [ 519 519 "alloc-no-stdlib", 520 520 "alloc-stdlib", ··· 522 522 523 523 [[package]] 524 524 name = "bstr" 525 - version = "1.7.0" 525 + version = "1.8.0" 526 526 source = "registry+https://github.com/rust-lang/crates.io-index" 527 - checksum = "c79ad7fb2dd38f3dabd76b09c6a5a20c038fc0213ef1e9afd30eb777f120f019" 527 + checksum = "542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c" 528 528 dependencies = [ 529 529 "memchr", 530 530 "serde", ··· 707 707 708 708 [[package]] 709 709 name = "clap" 710 - version = "4.4.7" 710 + version = "4.4.8" 711 711 source = "registry+https://github.com/rust-lang/crates.io-index" 712 - checksum = "ac495e00dcec98c83465d5ad66c5c4fabd652fd6686e7c6269b117e729a6f17b" 712 + checksum = "2275f18819641850fa26c89acc84d465c1bf91ce57bc2748b28c420473352f64" 713 713 dependencies = [ 714 714 "clap_builder", 715 715 ] 716 716 717 717 [[package]] 718 718 name = "clap_builder" 719 - version = "4.4.7" 719 + version = "4.4.8" 720 720 source = "registry+https://github.com/rust-lang/crates.io-index" 721 - checksum = "c77ed9a32a62e6ca27175d00d29d05ca32e396ea1eb5fb01d8256b669cec7663" 721 + checksum = "07cdf1b148b25c1e1f7a42225e30a0d99a615cd4637eae7365548dd4529b95bc" 722 722 dependencies = [ 723 723 "anstyle", 724 724 "clap_lex", ··· 824 824 825 825 [[package]] 826 826 name = "cpufeatures" 827 - version = "0.2.10" 827 + version = "0.2.11" 828 828 source = "registry+https://github.com/rust-lang/crates.io-index" 829 - checksum = "3fbc60abd742b35f2492f808e1abbb83d45f72db402e14c55057edc9c7b1e9e4" 829 + checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 830 830 dependencies = [ 831 831 "libc", 832 832 ] ··· 983 983 984 984 [[package]] 985 985 name = "curve25519-dalek-derive" 986 - version = "0.1.0" 986 + version = "0.1.1" 987 987 source = "registry+https://github.com/rust-lang/crates.io-index" 988 - checksum = "83fdaf97f4804dcebfa5862639bc9ce4121e82140bec2a987ac5140294865b5b" 988 + checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" 989 989 dependencies = [ 990 990 "proc-macro2", 991 991 "quote", 992 - "syn 2.0.38", 992 + "syn 2.0.39", 993 993 ] 994 994 995 995 [[package]] ··· 1087 1087 1088 1088 [[package]] 1089 1089 name = "deltachat" 1090 - version = "1.128.0" 1090 + version = "1.131.1" 1091 1091 dependencies = [ 1092 1092 "ansi_term", 1093 1093 "anyhow", 1094 - "async-channel 2.0.0", 1094 + "async-channel 2.1.0", 1095 1095 "async-imap", 1096 1096 "async-native-tls", 1097 1097 "async-smtp", ··· 1165 1165 1166 1166 [[package]] 1167 1167 name = "deltachat-jsonrpc" 1168 - version = "1.128.0" 1168 + version = "1.131.1" 1169 1169 dependencies = [ 1170 1170 "anyhow", 1171 - "async-channel 2.0.0", 1171 + "async-channel 2.1.0", 1172 1172 "axum", 1173 1173 "base64 0.21.5", 1174 1174 "deltachat", ··· 1189 1189 1190 1190 [[package]] 1191 1191 name = "deltachat-repl" 1192 - version = "1.128.0" 1192 + version = "1.131.1" 1193 1193 dependencies = [ 1194 1194 "ansi_term", 1195 1195 "anyhow", ··· 1204 1204 1205 1205 [[package]] 1206 1206 name = "deltachat-rpc-server" 1207 - version = "1.128.0" 1207 + version = "1.131.1" 1208 1208 dependencies = [ 1209 1209 "anyhow", 1210 1210 "deltachat", ··· 1224 1224 version = "2.0.0" 1225 1225 dependencies = [ 1226 1226 "quote", 1227 - "syn 2.0.38", 1227 + "syn 2.0.39", 1228 1228 ] 1229 1229 1230 1230 [[package]] 1231 1231 name = "deltachat_ffi" 1232 - version = "1.128.0" 1232 + version = "1.131.1" 1233 1233 dependencies = [ 1234 1234 "anyhow", 1235 1235 "deltachat", ··· 1433 1433 dependencies = [ 1434 1434 "proc-macro2", 1435 1435 "quote", 1436 - "syn 2.0.38", 1436 + "syn 2.0.39", 1437 1437 ] 1438 1438 1439 1439 [[package]] ··· 1461 1461 1462 1462 [[package]] 1463 1463 name = "dyn-clone" 1464 - version = "1.0.14" 1464 + version = "1.0.16" 1465 1465 source = "registry+https://github.com/rust-lang/crates.io-index" 1466 - checksum = "23d2f3407d9a573d666de4b5bdf10569d73ca9478087346697dcbae6244bfbcd" 1466 + checksum = "545b22097d44f8a9581187cdf93de7a71e4722bf51200cfaba810865b49a495d" 1467 1467 1468 1468 [[package]] 1469 1469 name = "ecdsa" ··· 1613 1613 ] 1614 1614 1615 1615 [[package]] 1616 + name = "embedded-io" 1617 + version = "0.4.0" 1618 + source = "registry+https://github.com/rust-lang/crates.io-index" 1619 + checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" 1620 + 1621 + [[package]] 1616 1622 name = "encoded-words" 1617 1623 version = "0.2.0" 1618 1624 source = "git+https://github.com/async-email/encoded-words?branch=master#d55366b36f96e383f39c432aedce42ee8b43f796" ··· 1720 1726 "heck", 1721 1727 "proc-macro2", 1722 1728 "quote", 1723 - "syn 2.0.38", 1729 + "syn 2.0.39", 1724 1730 ] 1725 1731 1726 1732 [[package]] ··· 1733 1739 "num-traits", 1734 1740 "proc-macro2", 1735 1741 "quote", 1736 - "syn 2.0.38", 1742 + "syn 2.0.39", 1737 1743 ] 1738 1744 1739 1745 [[package]] 1740 1746 name = "env_logger" 1741 - version = "0.10.0" 1747 + version = "0.10.1" 1742 1748 source = "registry+https://github.com/rust-lang/crates.io-index" 1743 - checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 1749 + checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece" 1744 1750 dependencies = [ 1745 1751 "humantime", 1746 1752 "is-terminal", ··· 1757 1763 1758 1764 [[package]] 1759 1765 name = "errno" 1760 - version = "0.3.5" 1766 + version = "0.3.6" 1761 1767 source = "registry+https://github.com/rust-lang/crates.io-index" 1762 - checksum = "ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860" 1768 + checksum = "7c18ee0ed65a5f1f81cac6b1d213b69c35fa47d4252ad41f1486dbd8226fe36e" 1763 1769 dependencies = [ 1764 1770 "libc", 1765 1771 "windows-sys", ··· 1792 1798 1793 1799 [[package]] 1794 1800 name = "event-listener" 1795 - version = "3.0.0" 1801 + version = "3.0.1" 1796 1802 source = "registry+https://github.com/rust-lang/crates.io-index" 1797 - checksum = "29e56284f00d94c1bc7fd3c77027b4623c88c1f53d8d2394c6199f2921dea325" 1803 + checksum = "01cec0252c2afff729ee6f00e903d479fba81784c8e2bd77447673471fdfaea1" 1798 1804 dependencies = [ 1799 1805 "concurrent-queue", 1800 1806 "parking", ··· 1807 1813 source = "registry+https://github.com/rust-lang/crates.io-index" 1808 1814 checksum = "d96b852f1345da36d551b9473fa1e2b1eb5c5195585c6c018118bc92a8d91160" 1809 1815 dependencies = [ 1810 - "event-listener 3.0.0", 1816 + "event-listener 3.0.1", 1811 1817 "pin-project-lite", 1812 1818 ] 1813 1819 1814 1820 [[package]] 1815 1821 name = "fallible-iterator" 1816 - version = "0.2.0" 1822 + version = "0.3.0" 1817 1823 source = "registry+https://github.com/rust-lang/crates.io-index" 1818 - checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 1824 + checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" 1819 1825 1820 1826 [[package]] 1821 1827 name = "fallible-streaming-iterator" ··· 1864 1870 1865 1871 [[package]] 1866 1872 name = "fdeflate" 1867 - version = "0.3.0" 1873 + version = "0.3.1" 1868 1874 source = "registry+https://github.com/rust-lang/crates.io-index" 1869 - checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10" 1875 + checksum = "64d6dafc854908ff5da46ff3f8f473c6984119a2876a383a860246dd7841a868" 1870 1876 dependencies = [ 1871 1877 "simd-adler32", 1872 1878 ] ··· 1893 1899 1894 1900 [[package]] 1895 1901 name = "fiat-crypto" 1896 - version = "0.2.1" 1902 + version = "0.2.3" 1897 1903 source = "registry+https://github.com/rust-lang/crates.io-index" 1898 - checksum = "d0870c84016d4b481be5c9f323c24f65e31e901ae618f0e80f4308fb00de1d2d" 1904 + checksum = "f69037fe1b785e84986b4f2cbcf647381876a00671d25ceef715d7812dd7e1dd" 1899 1905 1900 1906 [[package]] 1901 1907 name = "filetime" ··· 1968 1974 1969 1975 [[package]] 1970 1976 name = "futures" 1971 - version = "0.3.28" 1977 + version = "0.3.29" 1972 1978 source = "registry+https://github.com/rust-lang/crates.io-index" 1973 - checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 1979 + checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 1974 1980 dependencies = [ 1975 1981 "futures-channel", 1976 1982 "futures-core", ··· 1983 1989 1984 1990 [[package]] 1985 1991 name = "futures-channel" 1986 - version = "0.3.28" 1992 + version = "0.3.29" 1987 1993 source = "registry+https://github.com/rust-lang/crates.io-index" 1988 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 1994 + checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 1989 1995 dependencies = [ 1990 1996 "futures-core", 1991 1997 "futures-sink", ··· 1993 1999 1994 2000 [[package]] 1995 2001 name = "futures-core" 1996 - version = "0.3.28" 2002 + version = "0.3.29" 1997 2003 source = "registry+https://github.com/rust-lang/crates.io-index" 1998 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 2004 + checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 1999 2005 2000 2006 [[package]] 2001 2007 name = "futures-executor" 2002 - version = "0.3.28" 2008 + version = "0.3.29" 2003 2009 source = "registry+https://github.com/rust-lang/crates.io-index" 2004 - checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 2010 + checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 2005 2011 dependencies = [ 2006 2012 "futures-core", 2007 2013 "futures-task", ··· 2010 2016 2011 2017 [[package]] 2012 2018 name = "futures-io" 2013 - version = "0.3.28" 2019 + version = "0.3.29" 2014 2020 source = "registry+https://github.com/rust-lang/crates.io-index" 2015 - checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 2021 + checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 2016 2022 2017 2023 [[package]] 2018 2024 name = "futures-lite" 2019 - version = "2.0.0" 2025 + version = "2.0.1" 2020 2026 source = "registry+https://github.com/rust-lang/crates.io-index" 2021 - checksum = "9c1155db57329dca6d018b61e76b1488ce9a2e5e44028cac420a5898f4fcef63" 2027 + checksum = "d3831c2651acb5177cbd83943f3d9c8912c5ad03c76afcc0e9511ba568ec5ebb" 2022 2028 dependencies = [ 2023 2029 "fastrand", 2024 2030 "futures-core", ··· 2026 2032 "memchr", 2027 2033 "parking", 2028 2034 "pin-project-lite", 2029 - "waker-fn", 2030 2035 ] 2031 2036 2032 2037 [[package]] 2033 2038 name = "futures-macro" 2034 - version = "0.3.28" 2039 + version = "0.3.29" 2035 2040 source = "registry+https://github.com/rust-lang/crates.io-index" 2036 - checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 2041 + checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 2037 2042 dependencies = [ 2038 2043 "proc-macro2", 2039 2044 "quote", 2040 - "syn 2.0.38", 2045 + "syn 2.0.39", 2041 2046 ] 2042 2047 2043 2048 [[package]] 2044 2049 name = "futures-sink" 2045 - version = "0.3.28" 2050 + version = "0.3.29" 2046 2051 source = "registry+https://github.com/rust-lang/crates.io-index" 2047 - checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 2052 + checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 2048 2053 2049 2054 [[package]] 2050 2055 name = "futures-task" 2051 - version = "0.3.28" 2056 + version = "0.3.29" 2052 2057 source = "registry+https://github.com/rust-lang/crates.io-index" 2053 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 2058 + checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 2054 2059 2055 2060 [[package]] 2056 2061 name = "futures-util" 2057 - version = "0.3.28" 2062 + version = "0.3.29" 2058 2063 source = "registry+https://github.com/rust-lang/crates.io-index" 2059 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 2064 + checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 2060 2065 dependencies = [ 2061 2066 "futures-channel", 2062 2067 "futures-core", ··· 2094 2099 2095 2100 [[package]] 2096 2101 name = "getrandom" 2097 - version = "0.2.10" 2102 + version = "0.2.11" 2098 2103 source = "registry+https://github.com/rust-lang/crates.io-index" 2099 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 2104 + checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 2100 2105 dependencies = [ 2101 2106 "cfg-if", 2102 2107 "js-sys", ··· 2296 2301 2297 2302 [[package]] 2298 2303 name = "http" 2299 - version = "0.2.9" 2304 + version = "0.2.10" 2300 2305 source = "registry+https://github.com/rust-lang/crates.io-index" 2301 - checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 2306 + checksum = "f95b9abcae896730d42b78e09c155ed4ddf82c07b4de772c64aee5b2d8b7c150" 2302 2307 dependencies = [ 2303 2308 "bytes", 2304 2309 "fnv", ··· 2330 2335 2331 2336 [[package]] 2332 2337 name = "human-panic" 2333 - version = "1.2.1" 2338 + version = "1.2.2" 2334 2339 source = "registry+https://github.com/rust-lang/crates.io-index" 2335 - checksum = "b82da652938b83f94cfdaaf9ae7aaadb8430d84b0dfda226998416318727eac2" 2340 + checksum = "7a79a67745be0cb8dd2771f03b24c2f25df98d5471fe7a595d668cfa2e6f843d" 2336 2341 dependencies = [ 2337 2342 "backtrace", 2338 2343 "os_info", ··· 2460 2465 2461 2466 [[package]] 2462 2467 name = "imap-proto" 2463 - version = "0.16.2" 2468 + version = "0.16.3" 2464 2469 source = "registry+https://github.com/rust-lang/crates.io-index" 2465 - checksum = "f73b1b63179418b20aa81002d616c5f21b4ba257da9bca6989ea64dc573933e0" 2470 + checksum = "305c25c6e69416059e3396c4a062b84dc7b0a782cd4c84d82bab268eb0421ec7" 2466 2471 dependencies = [ 2467 2472 "nom", 2468 2473 ] ··· 2479 2484 2480 2485 [[package]] 2481 2486 name = "indexmap" 2482 - version = "2.0.2" 2487 + version = "2.1.0" 2483 2488 source = "registry+https://github.com/rust-lang/crates.io-index" 2484 - checksum = "8adf3ddd720272c6ea8bf59463c04e0f93d0bbf7c5439b691bca2987e0270897" 2489 + checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 2485 2490 dependencies = [ 2486 2491 "equivalent", 2487 2492 "hashbrown 0.14.2", ··· 2591 2596 2592 2597 [[package]] 2593 2598 name = "js-sys" 2594 - version = "0.3.64" 2599 + version = "0.3.65" 2595 2600 source = "registry+https://github.com/rust-lang/crates.io-index" 2596 - checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 2601 + checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8" 2597 2602 dependencies = [ 2598 2603 "wasm-bindgen", 2599 2604 ] ··· 2651 2656 2652 2657 [[package]] 2653 2658 name = "libc" 2654 - version = "0.2.149" 2659 + version = "0.2.150" 2655 2660 source = "registry+https://github.com/rust-lang/crates.io-index" 2656 - checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" 2661 + checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" 2657 2662 2658 2663 [[package]] 2659 2664 name = "libm" ··· 2662 2667 checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 2663 2668 2664 2669 [[package]] 2670 + name = "libredox" 2671 + version = "0.0.1" 2672 + source = "registry+https://github.com/rust-lang/crates.io-index" 2673 + checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 2674 + dependencies = [ 2675 + "bitflags 2.4.1", 2676 + "libc", 2677 + "redox_syscall 0.4.1", 2678 + ] 2679 + 2680 + [[package]] 2665 2681 name = "libsqlite3-sys" 2666 - version = "0.26.0" 2682 + version = "0.27.0" 2667 2683 source = "registry+https://github.com/rust-lang/crates.io-index" 2668 - checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326" 2684 + checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716" 2669 2685 dependencies = [ 2670 2686 "cc", 2671 2687 "openssl-sys", ··· 2681 2697 2682 2698 [[package]] 2683 2699 name = "linux-raw-sys" 2684 - version = "0.4.10" 2700 + version = "0.4.11" 2685 2701 source = "registry+https://github.com/rust-lang/crates.io-index" 2686 - checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f" 2702 + checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829" 2687 2703 2688 2704 [[package]] 2689 2705 name = "lock_api" ··· 2818 2834 source = "registry+https://github.com/rust-lang/crates.io-index" 2819 2835 checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 2820 2836 dependencies = [ 2821 - "getrandom 0.2.10", 2837 + "getrandom 0.2.11", 2822 2838 ] 2823 2839 2824 2840 [[package]] ··· 2974 2990 dependencies = [ 2975 2991 "proc-macro2", 2976 2992 "quote", 2977 - "syn 2.0.38", 2993 + "syn 2.0.39", 2978 2994 ] 2979 2995 2980 2996 [[package]] ··· 3067 3083 3068 3084 [[package]] 3069 3085 name = "openssl" 3070 - version = "0.10.57" 3086 + version = "0.10.59" 3071 3087 source = "registry+https://github.com/rust-lang/crates.io-index" 3072 - checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c" 3088 + checksum = "7a257ad03cd8fb16ad4172fedf8094451e1af1c4b70097636ef2eac9a5f0cc33" 3073 3089 dependencies = [ 3074 3090 "bitflags 2.4.1", 3075 3091 "cfg-if", ··· 3088 3104 dependencies = [ 3089 3105 "proc-macro2", 3090 3106 "quote", 3091 - "syn 2.0.38", 3107 + "syn 2.0.39", 3092 3108 ] 3093 3109 3094 3110 [[package]] ··· 3108 3124 3109 3125 [[package]] 3110 3126 name = "openssl-sys" 3111 - version = "0.9.93" 3127 + version = "0.9.95" 3112 3128 source = "registry+https://github.com/rust-lang/crates.io-index" 3113 - checksum = "db4d56a4c0478783083cfafcc42493dd4a981d41669da64b4572a2a089b51b1d" 3129 + checksum = "40a4130519a360279579c2053038317e40eff64d13fd3f004f9e1b72b8a6aaf9" 3114 3130 dependencies = [ 3115 3131 "cc", 3116 3132 "libc", ··· 3206 3222 3207 3223 [[package]] 3208 3224 name = "parking_lot_core" 3209 - version = "0.9.8" 3225 + version = "0.9.9" 3210 3226 source = "registry+https://github.com/rust-lang/crates.io-index" 3211 - checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" 3227 + checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 3212 3228 dependencies = [ 3213 3229 "cfg-if", 3214 3230 "libc", 3215 - "redox_syscall 0.3.5", 3231 + "redox_syscall 0.4.1", 3216 3232 "smallvec", 3217 3233 "windows-targets", 3218 3234 ] ··· 3296 3312 "p384 0.13.0", 3297 3313 "rand 0.8.5", 3298 3314 "ripemd", 3299 - "rsa 0.9.2", 3315 + "rsa 0.9.3", 3300 3316 "sha1", 3301 3317 "sha2 0.10.8", 3302 3318 "sha3", ··· 3325 3341 dependencies = [ 3326 3342 "proc-macro2", 3327 3343 "quote", 3328 - "syn 2.0.38", 3344 + "syn 2.0.39", 3329 3345 ] 3330 3346 3331 3347 [[package]] ··· 3391 3407 3392 3408 [[package]] 3393 3409 name = "platforms" 3394 - version = "3.1.2" 3410 + version = "3.2.0" 3395 3411 source = "registry+https://github.com/rust-lang/crates.io-index" 3396 - checksum = "4503fa043bf02cee09a9582e9554b4c6403b2ef55e4612e96561d294419429f8" 3412 + checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0" 3397 3413 3398 3414 [[package]] 3399 3415 name = "plotters" ··· 3444 3460 3445 3461 [[package]] 3446 3462 name = "postcard" 3447 - version = "1.0.6" 3463 + version = "1.0.8" 3448 3464 source = "registry+https://github.com/rust-lang/crates.io-index" 3449 - checksum = "c9ee729232311d3cd113749948b689627618133b1c5012b77342c1950b25eaeb" 3465 + checksum = "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8" 3450 3466 dependencies = [ 3451 3467 "cobs", 3452 3468 "const_format", 3469 + "embedded-io", 3453 3470 "postcard-derive", 3454 3471 "serde", 3455 3472 ] ··· 3499 3516 3500 3517 [[package]] 3501 3518 name = "primeorder" 3502 - version = "0.13.2" 3519 + version = "0.13.3" 3503 3520 source = "registry+https://github.com/rust-lang/crates.io-index" 3504 - checksum = "3c2fcef82c0ec6eefcc179b978446c399b3cdf73c392c35604e399eee6df1ee3" 3521 + checksum = "c7dbe9ed3b56368bd99483eb32fe9c17fdd3730aebadc906918ce78d54c7eeb4" 3505 3522 dependencies = [ 3506 3523 "elliptic-curve 0.13.6", 3507 3524 ] ··· 3541 3558 3542 3559 [[package]] 3543 3560 name = "proptest" 3544 - version = "1.3.1" 3561 + version = "1.4.0" 3545 3562 source = "registry+https://github.com/rust-lang/crates.io-index" 3546 - checksum = "7c003ac8c77cb07bb74f5f198bce836a689bcd5a42574612bf14d17bfd08c20e" 3563 + checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf" 3547 3564 dependencies = [ 3548 3565 "bitflags 2.4.1", 3549 3566 "lazy_static", ··· 3551 3568 "rand 0.8.5", 3552 3569 "rand_chacha 0.3.1", 3553 3570 "rand_xorshift", 3554 - "regex-syntax 0.7.5", 3571 + "regex-syntax 0.8.2", 3555 3572 "unarray", 3556 3573 ] 3557 3574 ··· 3614 3631 3615 3632 [[package]] 3616 3633 name = "quinn-proto" 3617 - version = "0.10.5" 3634 + version = "0.10.6" 3618 3635 source = "registry+https://github.com/rust-lang/crates.io-index" 3619 - checksum = "2c78e758510582acc40acb90458401172d41f1016f8c9dde89e49677afb7eec1" 3636 + checksum = "141bf7dfde2fbc246bfd3fe12f2455aa24b0fbd9af535d8c86c7bd1381ff2b1a" 3620 3637 dependencies = [ 3621 3638 "bytes", 3622 3639 "rand 0.8.5", ··· 3727 3744 source = "registry+https://github.com/rust-lang/crates.io-index" 3728 3745 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3729 3746 dependencies = [ 3730 - "getrandom 0.2.10", 3747 + "getrandom 0.2.11", 3731 3748 ] 3732 3749 3733 3750 [[package]] ··· 3786 3803 3787 3804 [[package]] 3788 3805 name = "redox_syscall" 3789 - version = "0.2.16" 3806 + version = "0.3.5" 3790 3807 source = "registry+https://github.com/rust-lang/crates.io-index" 3791 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 3808 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 3792 3809 dependencies = [ 3793 3810 "bitflags 1.3.2", 3794 3811 ] 3795 3812 3796 3813 [[package]] 3797 3814 name = "redox_syscall" 3798 - version = "0.3.5" 3815 + version = "0.4.1" 3799 3816 source = "registry+https://github.com/rust-lang/crates.io-index" 3800 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 3817 + checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 3801 3818 dependencies = [ 3802 3819 "bitflags 1.3.2", 3803 3820 ] 3804 3821 3805 3822 [[package]] 3806 3823 name = "redox_users" 3807 - version = "0.4.3" 3824 + version = "0.4.4" 3808 3825 source = "registry+https://github.com/rust-lang/crates.io-index" 3809 - checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 3826 + checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 3810 3827 dependencies = [ 3811 - "getrandom 0.2.10", 3812 - "redox_syscall 0.2.16", 3828 + "getrandom 0.2.11", 3829 + "libredox", 3813 3830 "thiserror", 3814 3831 ] 3815 3832 ··· 3850 3867 version = "0.6.29" 3851 3868 source = "registry+https://github.com/rust-lang/crates.io-index" 3852 3869 checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 3853 - 3854 - [[package]] 3855 - name = "regex-syntax" 3856 - version = "0.7.5" 3857 - source = "registry+https://github.com/rust-lang/crates.io-index" 3858 - checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" 3859 3870 3860 3871 [[package]] 3861 3872 name = "regex-syntax" ··· 3954 3965 checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b" 3955 3966 dependencies = [ 3956 3967 "cc", 3957 - "getrandom 0.2.10", 3968 + "getrandom 0.2.11", 3958 3969 "libc", 3959 3970 "spin 0.9.8", 3960 3971 "untrusted 0.9.0", ··· 3993 4004 3994 4005 [[package]] 3995 4006 name = "rsa" 3996 - version = "0.9.2" 4007 + version = "0.9.3" 3997 4008 source = "registry+https://github.com/rust-lang/crates.io-index" 3998 - checksum = "6ab43bb47d23c1a631b4b680199a45255dce26fa9ab2fa902581f624ff13e6a8" 4009 + checksum = "86ef35bf3e7fe15a53c4ab08a998e42271eab13eb0db224126bc7bc4c4bad96d" 3999 4010 dependencies = [ 4000 - "byteorder", 4001 4011 "const-oid", 4002 4012 "digest 0.10.7", 4003 4013 "num-bigint-dig", 4004 4014 "num-integer", 4005 - "num-iter", 4006 4015 "num-traits", 4007 4016 "pkcs1 0.7.5", 4008 4017 "pkcs8 0.10.2", ··· 4015 4024 4016 4025 [[package]] 4017 4026 name = "rusqlite" 4018 - version = "0.29.0" 4027 + version = "0.30.0" 4019 4028 source = "registry+https://github.com/rust-lang/crates.io-index" 4020 - checksum = "549b9d036d571d42e6e85d1c1425e2ac83491075078ca9a15be021c56b1641f2" 4029 + checksum = "a78046161564f5e7cd9008aff3b2990b3850dc8e0349119b98e8f251e099f24d" 4021 4030 dependencies = [ 4022 4031 "bitflags 2.4.1", 4023 4032 "fallible-iterator", ··· 4065 4074 4066 4075 [[package]] 4067 4076 name = "rustix" 4068 - version = "0.38.20" 4077 + version = "0.38.21" 4069 4078 source = "registry+https://github.com/rust-lang/crates.io-index" 4070 - checksum = "67ce50cb2e16c2903e30d1cbccfd8387a74b9d4c938b6a4c5ec6cc7556f7a8a0" 4079 + checksum = "2b426b0506e5d50a7d8dafcf2e81471400deb602392c7dd110815afb4eaf02a3" 4071 4080 dependencies = [ 4072 4081 "bitflags 2.4.1", 4073 4082 "errno", ··· 4101 4110 4102 4111 [[package]] 4103 4112 name = "rustls-pemfile" 4104 - version = "1.0.3" 4113 + version = "1.0.4" 4105 4114 source = "registry+https://github.com/rust-lang/crates.io-index" 4106 - checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 4115 + checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 4107 4116 dependencies = [ 4108 4117 "base64 0.21.5", 4109 4118 ] ··· 4189 4198 4190 4199 [[package]] 4191 4200 name = "schemars" 4192 - version = "0.8.15" 4201 + version = "0.8.16" 4193 4202 source = "registry+https://github.com/rust-lang/crates.io-index" 4194 - checksum = "1f7b0ce13155372a76ee2e1c5ffba1fe61ede73fbea5630d61eee6fac4929c0c" 4203 + checksum = "45a28f4c49489add4ce10783f7911893516f15afe45d015608d41faca6bc4d29" 4195 4204 dependencies = [ 4196 4205 "dyn-clone", 4197 4206 "schemars_derive", ··· 4201 4210 4202 4211 [[package]] 4203 4212 name = "schemars_derive" 4204 - version = "0.8.15" 4213 + version = "0.8.16" 4205 4214 source = "registry+https://github.com/rust-lang/crates.io-index" 4206 - checksum = "e85e2a16b12bdb763244c69ab79363d71db2b4b918a2def53f80b02e0574b13c" 4215 + checksum = "c767fd6fa65d9ccf9cf026122c1b555f2ef9a4f0cea69da4d7dbc3e258d30967" 4207 4216 dependencies = [ 4208 4217 "proc-macro2", 4209 4218 "quote", ··· 4280 4289 4281 4290 [[package]] 4282 4291 name = "self_cell" 4283 - version = "1.0.1" 4292 + version = "1.0.2" 4284 4293 source = "registry+https://github.com/rust-lang/crates.io-index" 4285 - checksum = "4c309e515543e67811222dbc9e3dd7e1056279b782e1dacffe4242b718734fb6" 4294 + checksum = "e388332cd64eb80cd595a00941baf513caffae8dce9cfd0467fc9c66397dade6" 4286 4295 4287 4296 [[package]] 4288 4297 name = "semver" ··· 4295 4304 4296 4305 [[package]] 4297 4306 name = "serde" 4298 - version = "1.0.190" 4307 + version = "1.0.192" 4299 4308 source = "registry+https://github.com/rust-lang/crates.io-index" 4300 - checksum = "91d3c334ca1ee894a2c6f6ad698fe8c435b76d504b13d436f0685d648d6d96f7" 4309 + checksum = "bca2a08484b285dcb282d0f67b26cadc0df8b19f8c12502c13d966bf9482f001" 4301 4310 dependencies = [ 4302 4311 "serde_derive", 4303 4312 ] ··· 4322 4331 4323 4332 [[package]] 4324 4333 name = "serde_derive" 4325 - version = "1.0.190" 4334 + version = "1.0.192" 4326 4335 source = "registry+https://github.com/rust-lang/crates.io-index" 4327 - checksum = "67c5609f394e5c2bd7fc51efda478004ea80ef42fee983d5c67a65e34f32c0e3" 4336 + checksum = "d6c7207fbec9faa48073f3e3074cbe553af6ea512d7c21ba46e434e70ea9fbc1" 4328 4337 dependencies = [ 4329 4338 "proc-macro2", 4330 4339 "quote", 4331 - "syn 2.0.38", 4340 + "syn 2.0.39", 4332 4341 ] 4333 4342 4334 4343 [[package]] ··· 4344 4353 4345 4354 [[package]] 4346 4355 name = "serde_json" 4347 - version = "1.0.107" 4356 + version = "1.0.108" 4348 4357 source = "registry+https://github.com/rust-lang/crates.io-index" 4349 - checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" 4358 + checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 4350 4359 dependencies = [ 4351 4360 "itoa", 4352 4361 "ryu", ··· 4495 4504 4496 4505 [[package]] 4497 4506 name = "smallvec" 4498 - version = "1.11.1" 4507 + version = "1.11.2" 4499 4508 source = "registry+https://github.com/rust-lang/crates.io-index" 4500 - checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a" 4509 + checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 4501 4510 4502 4511 [[package]] 4503 4512 name = "smawk" ··· 4629 4638 "proc-macro2", 4630 4639 "quote", 4631 4640 "rustversion", 4632 - "syn 2.0.38", 4641 + "syn 2.0.39", 4633 4642 ] 4634 4643 4635 4644 [[package]] ··· 4651 4660 4652 4661 [[package]] 4653 4662 name = "syn" 4654 - version = "2.0.38" 4663 + version = "2.0.39" 4655 4664 source = "registry+https://github.com/rust-lang/crates.io-index" 4656 - checksum = "e96b79aaa137db8f61e26363a0c9b47d8b4ec75da28b7d1d614c2303e232408b" 4665 + checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" 4657 4666 dependencies = [ 4658 4667 "proc-macro2", 4659 4668 "quote", ··· 4721 4730 4722 4731 [[package]] 4723 4732 name = "tempfile" 4724 - version = "3.8.0" 4733 + version = "3.8.1" 4725 4734 source = "registry+https://github.com/rust-lang/crates.io-index" 4726 - checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" 4735 + checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 4727 4736 dependencies = [ 4728 4737 "cfg-if", 4729 4738 "fastrand", 4730 - "redox_syscall 0.3.5", 4739 + "redox_syscall 0.4.1", 4731 4740 "rustix", 4732 4741 "windows-sys", 4733 4742 ] ··· 4783 4792 dependencies = [ 4784 4793 "proc-macro2", 4785 4794 "quote", 4786 - "syn 2.0.38", 4795 + "syn 2.0.39", 4787 4796 ] 4788 4797 4789 4798 [[package]] ··· 4863 4872 4864 4873 [[package]] 4865 4874 name = "tokio" 4866 - version = "1.33.0" 4875 + version = "1.34.0" 4867 4876 source = "registry+https://github.com/rust-lang/crates.io-index" 4868 - checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" 4877 + checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" 4869 4878 dependencies = [ 4870 4879 "backtrace", 4871 4880 "bytes", ··· 4892 4901 4893 4902 [[package]] 4894 4903 name = "tokio-macros" 4895 - version = "2.1.0" 4904 + version = "2.2.0" 4896 4905 source = "registry+https://github.com/rust-lang/crates.io-index" 4897 - checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 4906 + checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 4898 4907 dependencies = [ 4899 4908 "proc-macro2", 4900 4909 "quote", 4901 - "syn 2.0.38", 4910 + "syn 2.0.39", 4902 4911 ] 4903 4912 4904 4913 [[package]] ··· 4980 4989 4981 4990 [[package]] 4982 4991 name = "toml" 4983 - version = "0.7.8" 4992 + version = "0.8.8" 4984 4993 source = "registry+https://github.com/rust-lang/crates.io-index" 4985 - checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" 4994 + checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35" 4986 4995 dependencies = [ 4987 4996 "serde", 4988 4997 "serde_spanned", ··· 5001 5010 5002 5011 [[package]] 5003 5012 name = "toml_edit" 5004 - version = "0.19.15" 5013 + version = "0.21.0" 5005 5014 source = "registry+https://github.com/rust-lang/crates.io-index" 5006 - checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 5015 + checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" 5007 5016 dependencies = [ 5008 - "indexmap 2.0.2", 5017 + "indexmap 2.1.0", 5009 5018 "serde", 5010 5019 "serde_spanned", 5011 5020 "toml_datetime", ··· 5060 5069 dependencies = [ 5061 5070 "proc-macro2", 5062 5071 "quote", 5063 - "syn 2.0.38", 5072 + "syn 2.0.39", 5064 5073 ] 5065 5074 5066 5075 [[package]] ··· 5268 5277 source = "registry+https://github.com/rust-lang/crates.io-index" 5269 5278 checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" 5270 5279 dependencies = [ 5271 - "getrandom 0.2.10", 5280 + "getrandom 0.2.11", 5272 5281 "serde", 5273 5282 ] 5274 5283 ··· 5291 5300 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 5292 5301 5293 5302 [[package]] 5294 - name = "waker-fn" 5295 - version = "1.1.1" 5296 - source = "registry+https://github.com/rust-lang/crates.io-index" 5297 - checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" 5298 - 5299 - [[package]] 5300 5303 name = "walkdir" 5301 5304 version = "2.4.0" 5302 5305 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5335 5338 5336 5339 [[package]] 5337 5340 name = "wasm-bindgen" 5338 - version = "0.2.87" 5341 + version = "0.2.88" 5339 5342 source = "registry+https://github.com/rust-lang/crates.io-index" 5340 - checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 5343 + checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce" 5341 5344 dependencies = [ 5342 5345 "cfg-if", 5343 5346 "wasm-bindgen-macro", ··· 5345 5348 5346 5349 [[package]] 5347 5350 name = "wasm-bindgen-backend" 5348 - version = "0.2.87" 5351 + version = "0.2.88" 5349 5352 source = "registry+https://github.com/rust-lang/crates.io-index" 5350 - checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 5353 + checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217" 5351 5354 dependencies = [ 5352 5355 "bumpalo", 5353 5356 "log", 5354 5357 "once_cell", 5355 5358 "proc-macro2", 5356 5359 "quote", 5357 - "syn 2.0.38", 5360 + "syn 2.0.39", 5358 5361 "wasm-bindgen-shared", 5359 5362 ] 5360 5363 5361 5364 [[package]] 5362 5365 name = "wasm-bindgen-futures" 5363 - version = "0.4.37" 5366 + version = "0.4.38" 5364 5367 source = "registry+https://github.com/rust-lang/crates.io-index" 5365 - checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 5368 + checksum = "9afec9963e3d0994cac82455b2b3502b81a7f40f9a0d32181f7528d9f4b43e02" 5366 5369 dependencies = [ 5367 5370 "cfg-if", 5368 5371 "js-sys", ··· 5372 5375 5373 5376 [[package]] 5374 5377 name = "wasm-bindgen-macro" 5375 - version = "0.2.87" 5378 + version = "0.2.88" 5376 5379 source = "registry+https://github.com/rust-lang/crates.io-index" 5377 - checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 5380 + checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2" 5378 5381 dependencies = [ 5379 5382 "quote", 5380 5383 "wasm-bindgen-macro-support", ··· 5382 5385 5383 5386 [[package]] 5384 5387 name = "wasm-bindgen-macro-support" 5385 - version = "0.2.87" 5388 + version = "0.2.88" 5386 5389 source = "registry+https://github.com/rust-lang/crates.io-index" 5387 - checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 5390 + checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907" 5388 5391 dependencies = [ 5389 5392 "proc-macro2", 5390 5393 "quote", 5391 - "syn 2.0.38", 5394 + "syn 2.0.39", 5392 5395 "wasm-bindgen-backend", 5393 5396 "wasm-bindgen-shared", 5394 5397 ] 5395 5398 5396 5399 [[package]] 5397 5400 name = "wasm-bindgen-shared" 5398 - version = "0.2.87" 5401 + version = "0.2.88" 5399 5402 source = "registry+https://github.com/rust-lang/crates.io-index" 5400 - checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 5403 + checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b" 5401 5404 5402 5405 [[package]] 5403 5406 name = "web-sys" 5404 - version = "0.3.64" 5407 + version = "0.3.65" 5405 5408 source = "registry+https://github.com/rust-lang/crates.io-index" 5406 - checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 5409 + checksum = "5db499c5f66323272151db0e666cd34f78617522fb0c1604d31a27c50c206a85" 5407 5410 dependencies = [ 5408 5411 "js-sys", 5409 5412 "wasm-bindgen", ··· 5582 5585 5583 5586 [[package]] 5584 5587 name = "winnow" 5585 - version = "0.5.17" 5588 + version = "0.5.19" 5586 5589 source = "registry+https://github.com/rust-lang/crates.io-index" 5587 - checksum = "a3b801d0e0a6726477cc207f60162da452f3a95adb368399bef20a946e06f65c" 5590 + checksum = "829846f3e3db426d4cee4510841b71a8e58aa2a76b1132579487ae430ccd9c7b" 5588 5591 dependencies = [ 5589 5592 "memchr", 5590 5593 ] ··· 5691 5694 5692 5695 [[package]] 5693 5696 name = "zerocopy" 5694 - version = "0.7.15" 5697 + version = "0.7.25" 5695 5698 source = "registry+https://github.com/rust-lang/crates.io-index" 5696 - checksum = "81ba595b9f2772fbee2312de30eeb80ec773b4cb2f1e8098db024afadda6c06f" 5699 + checksum = "8cd369a67c0edfef15010f980c3cbe45d7f651deac2cd67ce097cd801de16557" 5697 5700 dependencies = [ 5698 5701 "zerocopy-derive", 5699 5702 ] 5700 5703 5701 5704 [[package]] 5702 5705 name = "zerocopy-derive" 5703 - version = "0.7.15" 5706 + version = "0.7.25" 5704 5707 source = "registry+https://github.com/rust-lang/crates.io-index" 5705 - checksum = "772666c41fb6dceaf520b564b962d738a8e1a83b41bd48945f50837aed78bb1d" 5708 + checksum = "c2f140bda219a26ccc0cdb03dba58af72590c53b22642577d88a927bc5c87d6b" 5706 5709 dependencies = [ 5707 5710 "proc-macro2", 5708 5711 "quote", 5709 - "syn 2.0.38", 5712 + "syn 2.0.39", 5710 5713 ] 5711 5714 5712 5715 [[package]] ··· 5726 5729 dependencies = [ 5727 5730 "proc-macro2", 5728 5731 "quote", 5729 - "syn 2.0.38", 5732 + "syn 2.0.39", 5730 5733 ]
+2 -2
pkgs/development/libraries/libdeltachat/default.nix
··· 30 30 }; 31 31 in stdenv.mkDerivation rec { 32 32 pname = "libdeltachat"; 33 - version = "1.128.0"; 33 + version = "1.131.1"; 34 34 35 35 src = fetchFromGitHub { 36 36 owner = "deltachat"; 37 37 repo = "deltachat-core-rust"; 38 38 rev = "v${version}"; 39 - hash = "sha256-kujPkKKobn4/J0rCdZfnlNZzGM0SUVtOWOhyDawYiqw="; 39 + hash = "sha256-JXSZrlekvPVGKR+ritxk3Eru2DhtUN9UBtqUZ7G9/gg="; 40 40 }; 41 41 42 42 patches = [
+3 -7
pkgs/development/libraries/libvirt/default.nix
··· 155 155 src/storage/storage_backend_disk.c \ 156 156 src/storage/storage_util.c 157 157 '' + lib.optionalString isDarwin '' 158 - sed -i '/qemucapabilitiestest/d' tests/meson.build 159 - sed -i '/vircryptotest/d' tests/meson.build 160 - sed -i '/domaincapstest/d' tests/meson.build 158 + # Darwin doesn’t support -fsemantic-interposition, but the problem doesn’t seem to affect Mach-O. 159 + # See https://gitlab.com/libvirt/libvirt/-/merge_requests/235 160 + sed -i "s/not supported_cc_flags.contains('-fsemantic-interposition')/false/" meson.build 161 161 sed -i '/qemufirmwaretest/d' tests/meson.build 162 162 sed -i '/qemuvhostusertest/d' tests/meson.build 163 163 sed -i '/qemuxml2xmltest/d' tests/meson.build 164 - '' + lib.optionalString (isDarwin && isx86_64) '' 165 - sed -i '/qemucaps2xmltest/d' tests/meson.build 166 - sed -i '/qemuhotplugtest/d' tests/meson.build 167 - sed -i '/virnetdaemontest/d' tests/meson.build 168 164 ''; 169 165 170 166 strictDeps = true;
+11
pkgs/development/libraries/omorfi/default.nix
··· 3 3 , autoreconfHook 4 4 , cg3 5 5 , fetchFromGitHub 6 + , fetchpatch 6 7 , hfst 7 8 , hfst-ospell 8 9 , icu ··· 23 24 rev = "refs/tags/v${finalAttrs.version}"; 24 25 hash = "sha256-UoqdwNWCNOPX6u1YBlnXUcB/fmcvcy/HXbYciVrMBOY="; 25 26 }; 27 + 28 + patches = [ 29 + # allow building with python311. 30 + # patch is incorporated upstream and should be removed on the next update 31 + (fetchpatch { 32 + name = "python311.patch"; 33 + url = "https://github.com/flammie/omorfi/commit/9736452ae6624060dbea0876a722c3731e776357.patch"; 34 + hash = "sha256-Q4fi5HMmO0fq8YI833vgv2EYp//9Um/xFoRk28WrUMk="; 35 + }) 36 + ]; 26 37 27 38 # Fix for omorfi-hyphenate.sh file not found error 28 39 postInstall = ''
+2 -2
pkgs/development/libraries/wxwidgets/wxGTK32.nix
··· 50 50 in 51 51 stdenv.mkDerivation rec { 52 52 pname = "wxwidgets"; 53 - version = "3.2.3"; 53 + version = "3.2.4"; 54 54 55 55 src = fetchFromGitHub { 56 56 owner = "wxWidgets"; 57 57 repo = "wxWidgets"; 58 58 rev = "v${version}"; 59 - hash = "sha256-tuLNNhQA9HGax1aueZHQ+eB2dyIQnKjlmarp7e6Jplc="; 59 + hash = "sha256-YkV150sDsfBEHvHne0GF6i8Y5881NrByPkLtPAmb24E="; 60 60 }; 61 61 62 62 nativeBuildInputs = [ pkg-config ];
+2 -2
pkgs/development/python-modules/adafruit-platformdetect/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "adafruit-platformdetect"; 10 - version = "3.53.0"; 10 + version = "3.54.0"; 11 11 format = "pyproject"; 12 12 13 13 disabled = pythonOlder "3.7"; ··· 15 15 src = fetchPypi { 16 16 pname = "Adafruit-PlatformDetect"; 17 17 inherit version; 18 - hash = "sha256-P6oR9Aszj2yj2w+2hAjCMDwngJ+uuUNLpgZooYImzyk="; 18 + hash = "sha256-P+f7eBqD0/KIEry/807dQQCvtokB2cYu4i0H6CTYIWg="; 19 19 }; 20 20 21 21 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/ailment/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "ailment"; 11 - version = "9.2.76"; 11 + version = "9.2.77"; 12 12 pyproject = true; 13 13 14 14 disabled = pythonOlder "3.11"; ··· 17 17 owner = "angr"; 18 18 repo = pname; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-RIYGWPvQ2n+NgZHw2pGEvgWAtbpb/rdyb6/K4JClRxM="; 20 + hash = "sha256-Bff44LSWdoXrijTAjnlsaN5iqDbHjfmYqe0FR4dmZxU="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/aioesphomeapi/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "aioesphomeapi"; 25 - version = "18.4.0"; 25 + version = "18.4.1"; 26 26 pyproject = true; 27 27 28 28 disabled = pythonOlder "3.9"; ··· 31 31 owner = "esphome"; 32 32 repo = pname; 33 33 rev = "refs/tags/v${version}"; 34 - hash = "sha256-jSPoVMtGRtqpDFagjvLTxps5plcN92Mp9vjtQlmqyGg="; 34 + hash = "sha256-o1Yv4/wSM2k+L2/JP3teUj129QlyLjoShCRWJ3lIN98="; 35 35 }; 36 36 37 37 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/aiomisc/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "aiomisc"; 25 - version = "17.3.23"; 25 + version = "17.3.25"; 26 26 format = "pyproject"; 27 27 28 28 disabled = pythonOlder "3.7"; 29 29 30 30 src = fetchPypi { 31 31 inherit pname version; 32 - hash = "sha256-9Df/eGMnXFdv3RUh4LmlPm7STlUcVBw4flfH+bZ6q9Q="; 32 + hash = "sha256-EPEfBK/1nbwcajqyv5lFX+02WMvbyFnij2w5J91+UK8="; 33 33 }; 34 34 35 35 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/angr/default.nix
··· 32 32 33 33 buildPythonPackage rec { 34 34 pname = "angr"; 35 - version = "9.2.76"; 35 + version = "9.2.77"; 36 36 pyproject = true; 37 37 38 38 disabled = pythonOlder "3.11"; ··· 41 41 owner = "angr"; 42 42 repo = "angr"; 43 43 rev = "refs/tags/v${version}"; 44 - hash = "sha256-B3oYh0okbIeEvBjBHvY29QTqPyR2TTzLmz6fMsIRcs0="; 44 + hash = "sha256-EslJnwgZUUN+EtyjGi/7a4Upr2/vbfNXpkc7I+/ZrU8="; 45 45 }; 46 46 47 47 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/appthreat-vulnerability-db/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "appthreat-vulnerability-db"; 20 - version = "5.5.1"; 20 + version = "5.5.2"; 21 21 format = "pyproject"; 22 22 23 23 disabled = pythonOlder "3.7"; ··· 26 26 owner = "AppThreat"; 27 27 repo = "vulnerability-db"; 28 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-URDVNuUrxWoQjeNRPrSJz8aiEozn5BzRTvhqc4bihA0="; 29 + hash = "sha256-ioFTayuPkxXIaaKKVHBLyU47jID6dGWCX1G9kVkD5Yo="; 30 30 }; 31 31 32 32 postPatch = ''
+2 -2
pkgs/development/python-modules/archinfo/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "archinfo"; 12 - version = "9.2.76"; 12 + version = "9.2.77"; 13 13 pyproject = true; 14 14 15 15 disabled = pythonOlder "3.8"; ··· 18 18 owner = "angr"; 19 19 repo = pname; 20 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-g1qlcaSByXhF+6ffxwbV/0tXFdmLySH3TcDuok4y6xw="; 21 + hash = "sha256-uTkPDhk4Ugyb9HV/0PMwWpuNajpzfTn1dg7gsQnc/zg="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+5 -4
pkgs/development/python-modules/argcomplete/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "argcomplete"; 11 - version = "3.1.2"; 12 - format = "pyproject"; 11 + version = "3.1.6"; 12 + pyproject = true; 13 13 14 14 disabled = pythonOlder "3.8"; 15 15 ··· 17 17 owner = "kislyuk"; 18 18 repo = pname; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-vKXHmCcZZTjVBwQZWtyRjJT4tTuIiK5Qos9yJT/mpag="; 20 + hash = "sha256-Akwa6dsf8w/Sw0ydUrqKEP5+dzHYX4hS8vcl7Gw4ePc="; 21 21 }; 22 22 23 23 SETUPTOOLS_SCM_PRETEND_VERSION = version; ··· 35 35 ]; 36 36 37 37 meta = with lib; { 38 + changelog = "https://github.com/kislyuk/argcomplete/blob/v${version}/Changes.rst"; 38 39 description = "Bash tab completion for argparse"; 40 + downloadPage = "https://github.com/kislyuk/argcomplete"; 39 41 homepage = "https://kislyuk.github.io/argcomplete/"; 40 - changelog = "https://github.com/kislyuk/argcomplete/blob/v${version}/Changes.rst"; 41 42 license = licenses.asl20; 42 43 maintainers = with maintainers; [ womfoo ]; 43 44 };
+2 -2
pkgs/development/python-modules/argilla/default.nix
··· 65 65 }: 66 66 let 67 67 pname = "argilla"; 68 - version = "1.18.0"; 68 + version = "1.19.0"; 69 69 optional-dependencies = { 70 70 server = [ 71 71 fastapi ··· 126 126 owner = "argilla-io"; 127 127 repo = pname; 128 128 rev = "refs/tags/v${version}"; 129 - hash = "sha256-2VWzmNMdd4WXSBrMSmclpjSZ9jDKNG7GbndUh8zLmgQ="; 129 + hash = "sha256-Idl5Tm1XWgBLVgHPbXiyt9MW4J5wZdPb2J7iIDBnorg="; 130 130 }; 131 131 132 132 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/claripy/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "claripy"; 16 - version = "9.2.76"; 16 + version = "9.2.77"; 17 17 pyproject = true; 18 18 19 19 disabled = pythonOlder "3.11"; ··· 22 22 owner = "angr"; 23 23 repo = "claripy"; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-BwhM5J+20ZvP0d+9TAqy0AgRuPU6XoLKgM88WJdf3Qg="; 25 + hash = "sha256-YLa70xxLDyOOKQg/PzFO90JzS5SyvgcJ2+Nltz0q6T8="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+3 -3
pkgs/development/python-modules/cle/default.nix
··· 16 16 17 17 let 18 18 # The binaries are following the argr projects release cycle 19 - version = "9.2.76"; 19 + version = "9.2.77"; 20 20 21 21 # Binary files from https://github.com/angr/binaries (only used for testing and only here) 22 22 binaries = fetchFromGitHub { 23 23 owner = "angr"; 24 24 repo = "binaries"; 25 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-01Y4UKTkaO6bYtVTvv4KFzkEdj4qKiWKaC80/iKa/Eg="; 26 + hash = "sha256-YPxdKwR+pq0S1B9GltE8r3bFWDPpCU8OQ05w+kp4lAs="; 27 27 }; 28 28 29 29 in ··· 38 38 owner = "angr"; 39 39 repo = "cle"; 40 40 rev = "refs/tags/v${version}"; 41 - hash = "sha256-uMT9LvDkXl3SueR80pgGJRkWbymDRmGEn8HV93K/VNc="; 41 + hash = "sha256-tdfV+DoDcRO+8TjiBc0u1huA+etF4MY5uYj670lqudY="; 42 42 }; 43 43 44 44 nativeBuildInputs = [
+17 -2
pkgs/development/python-modules/edalize/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "edalize"; 16 - version = "0.5.0"; 16 + version = "0.5.1"; 17 17 format = "setuptools"; 18 18 19 19 disabled = pythonOlder "3.7"; ··· 22 22 owner = "olofk"; 23 23 repo = pname; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-jsrJr/iuezh9/KL0PykWB1XKev4Wr5QeDh0ZWNMZSp8="; 25 + hash = "sha256-foq1CwIe86d+s7PlhLlGpnJCwrpOyr+uf5/RMLASSJU="; 26 26 }; 27 27 28 28 postPatch = '' ··· 50 50 51 51 pythonImportsCheck = [ 52 52 "edalize" 53 + ]; 54 + 55 + disabledTests = [ 56 + # disable failures related to pandas 2.1.0 apply(...,errors="ignore") 57 + # behavior change. upstream pins pandas to 2.0.3 as of 2023-10-10 58 + # https://github.com/olofk/edalize/commit/2a3db6658752f97c61048664b478ebfe65a909f8 59 + "test_picorv32_artix7_summary" 60 + "test_picorv32_artix7_resources" 61 + "test_picorv32_artix7_timing" 62 + "test_picorv32_kusp_summary" 63 + "test_picorv32_kusp_resources" 64 + "test_picorv32_kusp_timing" 65 + "test_linux_on_litex_vexriscv_arty_a7_summary" 66 + "test_linux_on_litex_vexriscv_arty_a7_resources" 67 + "test_linux_on_litex_vexriscv_arty_a7_timing" 53 68 ]; 54 69 55 70 disabledTestPaths = [
+6 -2
pkgs/development/python-modules/jax/default.nix
··· 27 27 in 28 28 buildPythonPackage rec { 29 29 pname = "jax"; 30 - version = "0.4.19"; 30 + version = "0.4.20"; 31 31 pyproject = true; 32 32 33 33 disabled = pythonOlder "3.9"; ··· 37 37 repo = "jax"; 38 38 # google/jax contains tags for jax and jaxlib. Only use jax tags! 39 39 rev = "refs/tags/${pname}-v${version}"; 40 - hash = "sha256-l5uLPqhg/hqtO9oJSaioow5cH/0jKHDVziGezkfnVcc="; 40 + hash = "sha256-WLYXUtchOaA6SGnKuVhN9CmV06xMCLQTEuEtL13ttZU="; 41 41 }; 42 42 43 43 nativeBuildInputs = [ ··· 108 108 "test_device_put" 109 109 "test_make_array_from_callback" 110 110 "test_make_array_from_single_device_arrays" 111 + 112 + # Fails on some hardware due to some numerical error 113 + # See https://github.com/google/jax/issues/18535 114 + "testQdwhWithOnRankDeficientInput5" 111 115 ]; 112 116 113 117 disabledTestPaths = lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
+17 -17
pkgs/development/python-modules/jaxlib/bin.nix
··· 39 39 assert cudaSupport -> lib.versionAtLeast cudatoolkit.version "11.1" && lib.versionAtLeast cudnn.version "8.2" && stdenv.isLinux; 40 40 41 41 let 42 - version = "0.4.19"; 42 + version = "0.4.20"; 43 43 44 44 inherit (python) pythonVersion; 45 45 ··· 60 60 "3.9-x86_64-linux" = getSrcFromPypi { 61 61 platform = "manylinux2014_x86_64"; 62 62 dist = "cp39"; 63 - hash = "sha256-8bTrWutuK0qVnbkcwMfgBf414YdaLc3GK5IsCm/JNPE="; 63 + hash = "sha256-eIE+rz5x5BEkO85zncIWE8p/wDPxV8bnVJdHiknS998="; 64 64 }; 65 65 "3.9-aarch64-darwin" = getSrcFromPypi { 66 66 platform = "macosx_11_0_arm64"; 67 67 dist = "cp39"; 68 - hash = "sha256-Tmv2iOqlNbZqw/rYjef6GmM0N18EA5JTt6T3lQe+4Rs="; 68 + hash = "sha256-dxInv8/aQiHsN7DpScuZao2ZyHDjF0AaTqUDA0qqg/M="; 69 69 }; 70 70 "3.9-x86_64-darwin" = getSrcFromPypi { 71 71 platform = "macosx_10_14_x86_64"; 72 72 dist = "cp39"; 73 - hash = "sha256-mDT1INLqPdCkxtMMFR0qHLOIZdWEy8Iuzw1/vOoECsA="; 73 + hash = "sha256-wva6LkSokEHN+WQLCancVC7YBIxfImPsQpB1LzFcyqM="; 74 74 }; 75 75 76 76 "3.10-x86_64-linux" = getSrcFromPypi { 77 77 platform = "manylinux2014_x86_64"; 78 78 dist = "cp310"; 79 - hash = "sha256-ksnY+CPEstact5lKjbSg+ZSPJtSt0Y0NFWEFufBCByk="; 79 + hash = "sha256-Yo2TYnkIelyy4vb5+nC/yY8SjV34i/jJvCe/VRQppmo="; 80 80 }; 81 81 "3.10-aarch64-darwin" = getSrcFromPypi { 82 82 platform = "macosx_11_0_arm64"; 83 83 dist = "cp310"; 84 - hash = "sha256-O7dHvdKLKfNELGfF4TKy7N5EX6Ca7Zu8OtLXWvFykR8="; 84 + hash = "sha256-ufA/ACE4s4R/Fiq5SN7T44SVEN1Z5OfkJ/98lKxRFmo="; 85 85 }; 86 86 "3.10-x86_64-darwin" = getSrcFromPypi { 87 87 platform = "macosx_10_14_x86_64"; 88 88 dist = "cp310"; 89 - hash = "sha256-gqKMUZSXrt8sQtTAoQbzAfCzO8gM9Y1/tZpuJVWyN0Y="; 89 + hash = "sha256-hBSrYQyOGMn0BexRWQKYnJdEYYlzHUWuWGHmjVT10TE="; 90 90 }; 91 91 92 92 "3.11-x86_64-linux" = getSrcFromPypi { 93 93 platform = "manylinux2014_x86_64"; 94 94 dist = "cp311"; 95 - hash = "sha256-m+NDzwXMNboNjDl2nLY+vqAoN2dQJZVWb1UQDpqqDPw="; 95 + hash = "sha256-5N0nghTBrsa7d8kt8hZC2ghqlxCNC7U8ApD0PG7DHn8="; 96 96 }; 97 97 "3.11-aarch64-darwin" = getSrcFromPypi { 98 98 platform = "macosx_11_0_arm64"; 99 99 dist = "cp311"; 100 - hash = "sha256-zCOAjaWWCQT9Jnm1jjc1Rh5gemqy7ACtTKLM0MqSJzM="; 100 + hash = "sha256-j13Br64cKe0hFh/cMBbOMuTXqauAvSKE+KzEmN7U6RA="; 101 101 }; 102 102 "3.11-x86_64-darwin" = getSrcFromPypi { 103 103 platform = "macosx_10_14_x86_64"; 104 104 dist = "cp311"; 105 - hash = "sha256-gOLIxkk+2hew2GqWu1WgMVEx1YEutx7Zod7QbwsuUVQ="; 105 + hash = "sha256-nTnyawU4Ngq9VTE6oDuEfR6iJPRy+E/VLt98cU6eW4M="; 106 106 }; 107 107 108 108 "3.12-x86_64-linux" = getSrcFromPypi { 109 109 platform = "manylinux2014_x86_64"; 110 110 dist = "cp312"; 111 - hash = "sha256-BZTmkgNuV4nWtfbY4t/19aP43szZQEdgpFXh5qwGRXk="; 111 + hash = "sha256-qPMoa7cso7DRBWuCJQoiOEzLPL3m76MPZZMYmZUj400="; 112 112 }; 113 113 "3.12-aarch64-darwin" = getSrcFromPypi { 114 114 platform = "macosx_11_0_arm64"; 115 115 dist = "cp312"; 116 - hash = "sha256-aAMTrLXU9EYwPv+kdeyI88/D7b4NANB39Fn8vuXUqFA="; 116 + hash = "sha256-VqTC5egDHaDIvwVa3sAc9Sdtd0CwEFcXjDU/i54h844="; 117 117 }; 118 118 "3.12-x86_64-darwin" = getSrcFromPypi { 119 119 platform = "macosx_10_14_x86_64"; 120 120 dist = "cp312"; 121 - hash = "sha256-KHzlIfa9KtYcHX+i/F/SKaYTpD4/XjHVu5j3BdRTUmc="; 121 + hash = "sha256-1F98Je2rMJJKrksI/EVAsX9n+dOpmDehUeAaMq/BY7o="; 122 122 }; 123 123 }; 124 124 ··· 128 128 gpuSrcs = { 129 129 "3.9" = fetchurl { 130 130 url = "https://storage.googleapis.com/jax-releases/cuda12/jaxlib-${version}+cuda12.cudnn89-cp39-cp39-manylinux2014_x86_64.whl"; 131 - hash = "sha256-WB5Vbr/XeYKXCP/3DIXF20jR6/1xE3huX1h5ow8ETl0="; 131 + hash = "sha256-VM2HuyMnG+hzrsTQEB5KJpqpBXyyp+eV1LVxmY1ZCGU="; 132 132 }; 133 133 "3.10" = fetchurl { 134 134 url = "https://storage.googleapis.com/jax-releases/cuda12/jaxlib-${version}+cuda12.cudnn89-cp310-cp310-manylinux2014_x86_64.whl"; 135 - hash = "sha256-zfN0n31+5GohwBkeQrqHus4qOyhM/GEdqG6KUupCZ4o="; 135 + hash = "sha256-TLq3z3T2fjTcO3ESahboKG33mrOpjtj9C92f4d4nJKo="; 136 136 }; 137 137 "3.11" = fetchurl { 138 138 url = "https://storage.googleapis.com/jax-releases/cuda12/jaxlib-${version}+cuda12.cudnn89-cp311-cp311-manylinux2014_x86_64.whl"; 139 - hash = "sha256-Q8ZtF2GCrG30GFbCeCZTWPmW2TBybeXzh2u+NRiYpx4="; 139 + hash = "sha256-CUXwyJq0HOo2j3Sw+NguBCnFkDuJpc3wfZUc90yyhOY="; 140 140 }; 141 141 "3.12" = fetchurl { 142 142 url = "https://storage.googleapis.com/jax-releases/cuda12/jaxlib-${version}+cuda12.cudnn89-cp312-cp312-manylinux2014_x86_64.whl"; 143 - hash = "sha256-lphkSDOJ9SwbO0hp/xC1bYn5fWgth9A9Iwsc9zV0buI="; 143 + hash = "sha256-bAR8FLtiqufU+rL2a1q9c61CjH1eXxGTNGnDUkHlDBA="; 144 144 }; 145 145 }; 146 146
+6 -13
pkgs/development/python-modules/jaxlib/default.nix
··· 54 54 inherit (cudaPackages) backendStdenv cudatoolkit cudaFlags cudnn nccl; 55 55 56 56 pname = "jaxlib"; 57 - version = "0.4.19"; 57 + version = "0.4.20"; 58 58 59 59 meta = with lib; { 60 60 description = "JAX is Autograd and XLA, brought together for high-performance machine learning research."; ··· 95 95 "absl_py" 96 96 "astor_archive" 97 97 "astunparse_archive" 98 - "boringssl" 99 98 # Not packaged in nixpkgs 100 99 # "com_github_googleapis_googleapis" 101 100 # "com_github_googlecloudplatform_google_cloud_cpp" ··· 151 150 repo = "jax"; 152 151 # google/jax contains tags for jax and jaxlib. Only use jaxlib tags! 153 152 rev = "refs/tags/${pname}-v${version}"; 154 - hash = "sha256-l5uLPqhg/hqtO9oJSaioow5cH/0jKHDVziGezkfnVcc="; 153 + hash = "sha256-WLYXUtchOaA6SGnKuVhN9CmV06xMCLQTEuEtL13ttZU="; 155 154 }; 156 155 157 156 nativeBuildInputs = [ ··· 264 263 ]; 265 264 266 265 sha256 = (if cudaSupport then { 267 - x86_64-linux = "sha256-Hw4uFvltH7nlNN3qAEcQ+IR2FAOjRkvwyWA3rCPi7Vo="; 266 + x86_64-linux = "sha256-QczClHxHElLZCqIZlHc3z3DXJ7rZQJaMs2XIb+lxarI="; 268 267 } else { 269 - x86_64-linux = "sha256-LEugnFwTV3EyeTZWgMvXzHbgeDPdmuT3daXCXJRMYVY="; 270 - aarch64-linux = "sha256-59rv/3RjD8pnveBDZ33xZoNQxLmnhMocsKMgVfYoO70="; 268 + x86_64-linux = "sha256-mqiJe4u0NYh1PKCbQfbo0U2e9/kYiBqj98d+BPHFSxQ="; 269 + aarch64-linux = "sha256-EuLqamVBJ+qoVMCFIYUT846AghltZolfLGdtO9UeXSM="; 271 270 }).${stdenv.system} or (throw "jaxlib: unsupported system: ${stdenv.system}"); 272 271 }; 273 272 ··· 293 292 --replace "/usr/bin/install_name_tool" "${cctools}/bin/install_name_tool" 294 293 substituteInPlace ../output/external/rules_cc/cc/private/toolchain/unix_cc_configure.bzl \ 295 294 --replace "/usr/bin/libtool" "${cctools}/bin/libtool" 296 - '' + (if stdenv.cc.isGNU then '' 297 - sed -i 's@-lprotobuf@-l:libprotobuf.a@' ../output/external/xla/third_party/systemlibs/protobuf.BUILD 298 - sed -i 's@-lprotoc@-l:libprotoc.a@' ../output/external/xla/third_party/systemlibs/protobuf.BUILD 299 - '' else if stdenv.cc.isClang then '' 300 - sed -i 's@-lprotobuf@${pkgs.protobuf}/lib/libprotobuf.a@' ../output/external/xla/third_party/systemlibs/protobuf.BUILD 301 - sed -i 's@-lprotoc@${pkgs.protobuf}/lib/libprotoc.a@' ../output/external/xla/third_party/systemlibs/protobuf.BUILD 302 - '' else throw "Unsupported stdenv.cc: ${stdenv.cc}"); 295 + ''; 303 296 }; 304 297 305 298 inherit meta;
+40 -12
pkgs/development/python-modules/opensearch-py/default.nix
··· 1 - { aiohttp 2 - , botocore 1 + { lib 3 2 , buildPythonPackage 3 + , fetchFromGitHub 4 + 5 + # build-system 6 + , setuptools 7 + 8 + # dependencies 4 9 , certifi 5 - , fetchFromGitHub 6 - , lib 10 + , python-dateutil 11 + , requests 12 + , six 13 + , urllib3 14 + 15 + # optional-dependencies 16 + , aiohttp 17 + 18 + # tests 19 + , botocore 7 20 , mock 8 21 , pytest-asyncio 22 + , pytest-mock 9 23 , pytestCheckHook 10 24 , pyyaml 11 - , requests 12 - , urllib3 25 + , pytz 13 26 }: 14 27 15 28 buildPythonPackage rec { 16 29 pname = "opensearch-py"; 17 - version = "2.3.2"; 18 - format = "setuptools"; 30 + version = "2.4.1"; 31 + pyproject = true; 19 32 20 33 src = fetchFromGitHub { 21 34 owner = "opensearch-project"; 22 35 repo = "opensearch-py"; 23 36 rev = "refs/tags/v${version}"; 24 - hash = "sha256-MkrYCi/iz1OqqrwCZknfcZSEyZNPj+CZFiMycJQk+aQ="; 37 + hash = "sha256-nfKUJjB3yAUGiCSLK3xXHQmtDenVZpLjgICR2hMv1aA="; 25 38 }; 26 39 40 + nativeBuildInputs = [ 41 + setuptools 42 + ]; 43 + 27 44 propagatedBuildInputs = [ 28 - botocore 29 45 certifi 46 + python-dateutil 30 47 requests 48 + six 31 49 urllib3 32 50 ]; 33 51 52 + passthru.optional-dependencies.async = [ 53 + aiohttp 54 + ]; 55 + 34 56 nativeCheckInputs = [ 57 + botocore 35 58 mock 36 59 pytest-asyncio 60 + pytest-mock 37 61 pytestCheckHook 38 62 pyyaml 63 + pytz 39 64 ] ++ passthru.optional-dependencies.async; 40 65 41 66 disabledTestPaths = [ 42 67 # require network 43 68 "test_opensearchpy/test_async/test_connection.py" 44 69 "test_opensearchpy/test_async/test_server" 45 - "test_opensearchpy/test_connection.py" 46 70 "test_opensearchpy/test_server" 47 71 "test_opensearchpy/test_server_secured" 48 72 ]; 49 73 50 - passthru.optional-dependencies.async = [ aiohttp ]; 74 + disabledTests = [ 75 + # finds our ca-bundle, but expects something else (/path/to/clientcert/dir or None) 76 + "test_ca_certs_ssl_cert_dir" 77 + "test_no_ca_certs" 78 + ]; 51 79 52 80 meta = { 53 81 description = "Python low-level client for OpenSearch";
+8
pkgs/development/python-modules/psycopg/default.nix
··· 50 50 libpq = "${postgresql.lib}/lib/libpq${stdenv.hostPlatform.extensions.sharedLibrary}"; 51 51 libc = "${stdenv.cc.libc}/lib/libc.so.6"; 52 52 }) 53 + 54 + # https://github.com/psycopg/psycopg/pull/669 55 + # mark some tests as timing remove on next version update 56 + (fetchpatch { 57 + name = "mark_tests_as_timing.patch"; 58 + url = "https://github.com/psycopg/psycopg/commit/00a3c640dd836328ba15931b400b012171f648c2.patch"; 59 + hash = "sha256-DoVZv1yy9gHOKl0AdVLir+C+UztJZVjboLhS5af2944="; 60 + }) 53 61 ]; 54 62 55 63 baseMeta = {
+4 -5
pkgs/development/python-modules/pynvim-pp/default.nix
··· 7 7 8 8 buildPythonPackage { 9 9 pname = "pynvim-pp"; 10 - version = "unstable-2023-07-09"; 11 - 12 - format = "pyproject"; 10 + version = "unstable-2023-08-03"; 11 + pyproject = true; 13 12 14 13 src = fetchFromGitHub { 15 14 owner = "ms-jpq"; 16 15 repo = "pynvim_pp"; 17 - rev = "93aa25bf3ee039c4eb85f402d6adf6977033013b"; 18 - hash = "sha256-gZvIiFpP+eMLD8/xodY7ywWxhWXtethXviVRedW/bgo="; 16 + rev = "40d0f6053ddbba61f53505eebb0290cfb661661b"; 17 + hash = "sha256-4jeYE9HL+PQZuJq5nyf9CgL4UrRWm3ifLL/vfygLOwc="; 19 18 }; 20 19 21 20 nativeBuildInputs = [ setuptools ];
+2 -2
pkgs/development/python-modules/pyvex/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "pyvex"; 16 - version = "9.2.76"; 16 + version = "9.2.77"; 17 17 pyproject = true; 18 18 19 19 disabled = pythonOlder "3.11"; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - hash = "sha256-JlwqxKJaJ3sk2mROUOaF0N5d4V7LM43VqEXnuSO45BY="; 23 + hash = "sha256-kVMhzdTYwra8G/4gg1G853vUr7YHxxt/zXus/SXMkXc="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/rns/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "rns"; 12 - version = "0.6.7"; 12 + version = "0.6.8"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 18 18 owner = "markqvist"; 19 19 repo = "Reticulum"; 20 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-u5GMCM9HyrblGbmIvfDWTfIAV8Zpn8tF0oOaolFtQMk="; 21 + hash = "sha256-MDD0Vs5XIWqxKHbrAa0vXJRd8uYZDlr//hP1NBf4b7U="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/slack-sdk/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "slack-sdk"; 23 - version = "3.23.0"; 23 + version = "3.23.1"; 24 24 format = "setuptools"; 25 25 26 26 disabled = pythonOlder "3.6"; ··· 29 29 owner = "slackapi"; 30 30 repo = "python-slack-sdk"; 31 31 rev = "refs/tags/v${version}"; 32 - hash = "sha256-OsPwLOnmN3kvPmbM6lOaiTWwWvy7b9pgn1X536dCkWk="; 32 + hash = "sha256-lqB4eljM/JLyvVHeT7LnYgjG3AP3i9le2IxUI31aK6o="; 33 33 }; 34 34 35 35 propagatedBuildInputs = [
+10 -5
pkgs/development/python-modules/sphinxext-opengraph/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "sphinxext-opengraph"; 14 - version = "0.8.2"; 14 + version = "0.9.0"; 15 15 format = "setuptools"; 16 16 17 - disabled = pythonOlder "3.7"; 17 + disabled = pythonOlder "3.8"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "wpilibsuite"; 21 21 repo = "sphinxext-opengraph"; 22 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-SrZTtVzEp4E87fzisWKHl8iRP49PWt5kkJq62CqXrBc="; 23 + hash = "sha256-ZLIxbFgayG+WVvSXu74eZJ/PbSHg6dzkkIr1OBry4DE="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version; ··· 29 29 setuptools-scm 30 30 ]; 31 31 32 + passthru.optional-dependencies = { 33 + social_cards_generation = [ 34 + matplotlib 35 + ]; 36 + }; 37 + 32 38 propagatedBuildInputs = [ 33 39 sphinx 34 - matplotlib 35 40 ]; 36 41 37 42 nativeCheckInputs = [ 38 43 pytestCheckHook 39 44 beautifulsoup4 40 - ]; 45 + ] ++ passthru.optional-dependencies.social_cards_generation; 41 46 42 47 pythonImportsCheck = [ "sphinxext.opengraph" ]; 43 48
+4 -5
pkgs/development/python-modules/std2/default.nix
··· 6 6 7 7 buildPythonPackage { 8 8 pname = "std2"; 9 - version = "unstable-2023-07-09"; 10 - 11 - format = "pyproject"; 9 + version = "unstable-2023-10-07"; 10 + pyproject = true; 12 11 13 12 src = fetchFromGitHub { 14 13 owner = "ms-jpq"; 15 14 repo = "std2"; 16 - rev = "2d5594b40585ecae60ce5175bee68cc8b3085ee6"; 17 - hash = "sha256-phGIWow7PGOtS1Pre1Gz0Xg6izGp6BiUTmze5jI/BwY="; 15 + rev = "6332e559ee51c3a7c956804afdd7e1cc6ad47965"; 16 + hash = "sha256-huN7P/Ws6anrFXDG7L5xxMenS25BHquV9cMi1s7WFJ4="; 18 17 }; 19 18 20 19 nativeBuildInputs = [ setuptools ];
+2 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "checkov"; 8 - version = "3.0.32"; 8 + version = "3.0.36"; 9 9 pyproject = true; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "bridgecrewio"; 13 13 repo = "checkov"; 14 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-YOZ7F/bxbnBh3mhiFL3cMMAc3qeOMab48LcvYeJgfrg="; 15 + hash = "sha256-MrzCqR1+IJAv81fbuaNygGejRF4EzIZWPutL5qLluhU="; 16 16 }; 17 17 18 18 patches = [
+3 -3
pkgs/development/tools/argc/default.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "argc"; 9 - version = "1.11.0"; 9 + version = "1.12.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "sigoden"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - hash = "sha256-BpTborNURfLdw4eyPbGMyNOSvtePB+lcCrCKTl0LoGQ="; 15 + hash = "sha256-bF+NTiPrqWD1B/v44+XuxXotOPhUBCYyg6h+T/ydmGM="; 16 16 }; 17 17 18 - cargoHash = "sha256-1FdimBQZ4SvAnrYzNnyulUT8b8bTnJfnWRNosfQqSco="; 18 + cargoHash = "sha256-T6NfjlHQhHwfcAnmr8R2WWXVKgMZZXFq6IvlvWOVACg="; 19 19 20 20 nativeBuildInputs = [ installShellFiles ]; 21 21
+11 -6
pkgs/development/tools/database/atlas/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, installShellFiles }: 1 + { lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, atlas }: 2 2 3 3 buildGoModule rec { 4 4 pname = "atlas"; 5 - version = "0.14.1"; 5 + version = "0.15.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "ariga"; 9 9 repo = "atlas"; 10 10 rev = "v${version}"; 11 - hash = "sha256-dOqL/9sJUbaHqF3N5PEL7f6LxQQWNL0FvaH5BxQp4Xg="; 11 + hash = "sha256-qEui+Y7auNFJwLSUT90jJH7IPgNW06phbJel9y3C1bk="; 12 12 }; 13 13 14 14 modRoot = "cmd/atlas"; 15 15 16 - vendorHash = "sha256-1Hhl2TzJWWXk4du9nbJTPXdYuss4TWfUIOw2DaAJQis="; 16 + proxyVendor = true; 17 + vendorHash = "sha256-BJB+ZwrfZsYlyVX0G3qNQW8KexxMmc1Y9m2TRbOX6Tc="; 17 18 18 19 nativeBuildInputs = [ installShellFiles ]; 19 20 20 - env.GOWORK = "off"; 21 - 22 21 ldflags = [ "-s" "-w" "-X ariga.io/atlas/cmd/atlas/internal/cmdapi.version=v${version}" ]; 23 22 24 23 subPackages = [ "." ]; ··· 29 28 --fish <($out/bin/atlas completion fish) \ 30 29 --zsh <($out/bin/atlas completion zsh) 31 30 ''; 31 + 32 + passthru.tests.version = testers.testVersion { 33 + package = atlas; 34 + command = "atlas version"; 35 + version = "v${version}"; 36 + }; 32 37 33 38 meta = with lib; { 34 39 description = "A modern tool for managing database schemas";
+2 -2
pkgs/development/tools/database/litestream/default.nix
··· 4 4 }: 5 5 buildGoModule rec { 6 6 pname = "litestream"; 7 - version = "0.3.12"; 7 + version = "0.3.13"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "benbjohnson"; 11 11 repo = pname; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-uao8I3b38JZWpO5iM+qvV4CDxWg1ueYm7BoaW/+FOkA="; 13 + sha256 = "sha256-p858gK+ICKDQ+/LUiBaxF/kfrZzQAXnYMZDFU8kNCJ4="; 14 14 }; 15 15 16 16 ldflags = [
+2 -2
pkgs/development/tools/devpod/default.nix
··· 23 23 24 24 let 25 25 pname = "devpod"; 26 - version = "0.4.1"; 26 + version = "0.4.2"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "loft-sh"; 30 30 repo = pname; 31 31 rev = "v${version}"; 32 - sha256 = "sha256-8ED74Cqq2fw+TpkJyipxlBpKq60ScZinlPj0hEX13/0="; 32 + sha256 = "sha256-e9sa9LniG5fj3S+x9T91v6ILPI0CD2y3QnZxXcKy6Ik="; 33 33 }; 34 34 35 35 meta = with lib; {
+3 -3
pkgs/development/tools/ginkgo/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "ginkgo"; 5 - version = "2.13.0"; 5 + version = "2.13.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "onsi"; 9 9 repo = "ginkgo"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-N+O8qjSOBv7UVcFZ4BOUFoj+qfN0d2rBHO7d8FBtayY="; 11 + sha256 = "sha256-r2tAYH8E1j/gC+IRwcOv0Frcgd2RKEZjVzmuzOOhR7A="; 12 12 }; 13 - vendorHash = "sha256-wUpWvq6iiS9HkCi4ztXLNs1nCgAomyUo8YaFcElnfeI="; 13 + vendorHash = "sha256-5dEKb+KnUZTxSSoaOH1GpqMmYdLcXKMs2nq0SvR2pUs="; 14 14 15 15 # integration tests expect more file changes 16 16 # types tests are missing CodeLocation
+3 -3
pkgs/development/tools/language-servers/lua-language-server/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "lua-language-server"; 5 - version = "3.7.0"; 5 + version = "3.7.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "luals"; 9 9 repo = "lua-language-server"; 10 10 rev = version; 11 - sha256 = "sha256-kUtiMNwJJN7ZAktSC7tZriAcTDFhvcfSwBE6KFzceMg="; 11 + hash = "sha256-iAxRGG7/zaUbJ/PWgmjxGS0UTq9/OXc8RWzlpUTUftc="; 12 12 fetchSubmodules = true; 13 13 }; 14 14 ··· 80 80 homepage = "https://github.com/luals/lua-language-server"; 81 81 changelog = "https://github.com/LuaLS/lua-language-server/blob/${version}/changelog.md"; 82 82 license = licenses.mit; 83 - maintainers = with maintainers; [ figsoda sei40kr ]; 83 + maintainers = with maintainers; [ figsoda gepbird sei40kr ]; 84 84 mainProgram = "lua-language-server"; 85 85 platforms = platforms.linux ++ platforms.darwin; 86 86 };
+2 -2
pkgs/development/tools/misc/saleae-logic-2/default.nix
··· 1 1 { lib, fetchurl, makeDesktopItem, appimageTools }: 2 2 let 3 3 name = "saleae-logic-2"; 4 - version = "2.4.9"; 4 + version = "2.4.12"; 5 5 src = fetchurl { 6 6 url = "https://downloads.saleae.com/logic2/Logic-${version}-linux-x64.AppImage"; 7 - hash = "sha256-zM5XztFv+A7cNMqNPGAO5i0B45w6AMyRL4OR+tG03JY="; 7 + hash = "sha256-QqGtozLZtrS5UgnLmsKWxqbcTykLhlossVxuN4WNYzo="; 8 8 }; 9 9 desktopItem = makeDesktopItem { 10 10 inherit name;
+4 -3
pkgs/development/tools/ocaml/camlidl/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "ocaml${ocaml.version}-camlidl"; 8 - version = "1.11"; 8 + version = "1.12"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "xavierleroy"; 12 12 repo = "camlidl"; 13 - rev = "camlidl111"; 14 - sha256 = "sha256-8m0zem/6nvpEJtjJNP/+vafeVLlMvNQGdl8lyf/OeBg="; 13 + rev = "camlidl112"; 14 + hash = "sha256-ONPQMDFaU2OzFa5jgMVKx+ZRKk8ZgBZyk42vDvbM7E0="; 15 15 }; 16 16 17 17 nativeBuildInputs = [ ocaml ]; ··· 24 24 substituteInPlace config/Makefile --replace BINDIR=/usr/local/bin BINDIR=$out 25 25 substituteInPlace config/Makefile --replace 'OCAMLLIB=$(shell $(OCAMLC) -where)' OCAMLLIB=$out/lib/ocaml/${ocaml.version}/site-lib/camlidl 26 26 substituteInPlace config/Makefile --replace CPP=cpp CPP=${stdenv.cc}/bin/cpp 27 + substituteInPlace lib/Makefile --replace '$(OCAMLLIB)/Makefile.config' "${ocaml}/lib/ocaml/Makefile.config" 27 28 mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/camlidl/caml 28 29 mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/camlidl/stublibs 29 30 '';
+7 -2
pkgs/development/tools/open-policy-agent/default.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "open-policy-agent"; 14 - version = "0.55.0"; 14 + version = "0.58.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "open-policy-agent"; 18 18 repo = "opa"; 19 19 rev = "v${version}"; 20 - hash = "sha256-piQ8Cig2zG6UhzVbiDCTruAXNis8P5HUja4xiiol9jA="; 20 + hash = "sha256-zDTL/kP0ldPiZhLqLQmpIoDaq979KNDVJyXp93sPZAk="; 21 21 }; 22 + 22 23 vendorHash = null; 23 24 24 25 nativeBuildInputs = [ installShellFiles ]; ··· 33 34 + "ensure you need wasm evaluation. " 34 35 + "`opa build` does not need this feature.") 35 36 "opa_wasm"); 37 + 38 + checkFlags = lib.optionals (!enableWasmEval) [ 39 + "-skip=TestRegoTargetWasmAndTargetPluginDisablesIndexingTopdownStages" 40 + ]; 36 41 37 42 preCheck = '' 38 43 # Feed in all but the e2e tests for testing
+3 -3
pkgs/development/tools/rust/cargo-crev/default.nix
··· 14 14 15 15 rustPlatform.buildRustPackage rec { 16 16 pname = "cargo-crev"; 17 - version = "0.25.3"; 17 + version = "0.25.4"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "crev-dev"; 21 21 repo = "cargo-crev"; 22 22 rev = "v${version}"; 23 - sha256 = "sha256-tyNbBG2okxoLmu8mwoeR3Ud0nIpqkwVmFHT0Gi1Pibs="; 23 + sha256 = "sha256-cXGZhTLIxR9VHrQT+unbl69AviiQ6FCOJTdOP/4fRYI="; 24 24 }; 25 25 26 - cargoHash = "sha256-sKQw4Bak3JY07TYKkThKTFhh3H5GB2lDcfcGE4cRHDY="; 26 + cargoHash = "sha256-H/5OZCnshGOUKVaBTbFAiMpYdsNC/96gV+rOgiuwDYc="; 27 27 28 28 preCheck = '' 29 29 export HOME=$(mktemp -d)
+3 -3
pkgs/development/tools/rust/cargo-mutants/default.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "cargo-mutants"; 10 - version = "23.10.0"; 10 + version = "23.11.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "sourcefrog"; 14 14 repo = "cargo-mutants"; 15 15 rev = "v${version}"; 16 - hash = "sha256-AJcteYaEm1pJ2tn1mydZAhrhqoMtEVJUrfGY/Vt71Ks="; 16 + hash = "sha256-DYHEisVf+Qxiac/ZbPXrGRsFM6UUi584mY5mgzN7ZJE="; 17 17 }; 18 18 19 - cargoHash = "sha256-0NLP8KtzeX3jjWjSXBKku4c1LzKmoJce1RPUB+aO804="; 19 + cargoHash = "sha256-bJc33o+vm8oMrTkD/mg/xe7b9xQX/6JSDZlYgWeSa68="; 20 20 21 21 buildInputs = lib.optionals stdenv.isDarwin [ 22 22 darwin.apple_sdk.frameworks.SystemConfiguration
+3 -3
pkgs/development/tools/rust/cargo-nextest/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-nextest"; 5 - version = "0.9.61"; 5 + version = "0.9.62"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "nextest-rs"; 9 9 repo = "nextest"; 10 10 rev = "cargo-nextest-${version}"; 11 - hash = "sha256-kVADlW5XqKAuQ2n0lmEin67CXGkhTVWgJaPMKpvS5Gs="; 11 + hash = "sha256-GxDURkXmZvxaX9RLq/hlqtX1woWm2JKtv5x5goCY4ZU="; 12 12 }; 13 13 14 - cargoHash = "sha256-IU2oW00VzEV8p3BpqIJZwXvdcaeweAF9nGHwtX+98vY="; 14 + cargoHash = "sha256-zQB8sPeKT43qC5JjrHa7E41NyDyiQ3PGvBqgszs+tBI="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ 17 17 darwin.apple_sdk.frameworks.SystemConfiguration
+3 -3
pkgs/development/tools/selene/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "selene"; 13 - version = "0.25.0"; 13 + version = "0.26.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "kampfkarren"; 17 17 repo = pname; 18 18 rev = version; 19 - sha256 = "sha256-aKU+1eoLm/h5Rj/vAZOyAnyl5/TpStL5g8PPdYCJ8o0="; 19 + sha256 = "sha256-0imHwZNyhJXFai1J5tHqnQ6Ta10nETQ5TILGH0bHc8Y="; 20 20 }; 21 21 22 - cargoSha256 = "sha256-y2BoV59oJPMBf9rUgMhHu87teurwPSNowRbuPfXubGA="; 22 + cargoHash = "sha256-Lm3agCnxDxcj7op17uiokK8Y790oMxwHJStvP/9DsI0="; 23 23 24 24 nativeBuildInputs = lib.optionals robloxSupport [ 25 25 pkg-config
+2 -2
pkgs/development/tools/symfony-cli/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "symfony-cli"; 10 - version = "5.7.2"; 10 + version = "5.7.3"; 11 11 vendorHash = "sha256-xC5EHP4Zb9lgvbxVkoVBxdQ4+f34zqRf4XapntZMTTc="; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "symfony-cli"; 15 15 repo = "symfony-cli"; 16 16 rev = "v${version}"; 17 - hash = "sha256-2/2Hx+9MnnY4GMm/Zt6ssCTdtYgcP1gPRXe1yQMgXTE="; 17 + hash = "sha256-mxyGdyR1yZY+YOyf9ngk6P2oBmUL+IbwLWaCvZziSIM="; 18 18 }; 19 19 20 20 ldflags = [
+2 -2
pkgs/games/vassal/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "VASSAL"; 12 - version = "3.7.4"; 12 + version = "3.7.5"; 13 13 14 14 src = fetchzip { 15 15 url = "https://github.com/vassalengine/vassal/releases/download/${version}/${pname}-${version}-linux.tar.bz2"; 16 - sha256 = "sha256-G9h5U5jlLOFCAKXdwzK+J8er3pUL4AUq5FLcvbUN93A="; 16 + sha256 = "sha256-6TXpUsQBzhZ02SCbCqZW2LZfQ370Ma57bsblmpgZmoc="; 17 17 }; 18 18 19 19 buildInputs = [
+5 -12
pkgs/os-specific/linux/rtl8188eus-aircrack/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, kernel, bc, fetchpatch }: 1 + { lib, stdenv, fetchFromGitHub, kernel, bc }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "rtl8188eus-aircrack"; 5 - version = "${kernel.version}-unstable-2022-03-19"; 5 + version = "${kernel.version}-unstable-2023-09-21"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "aircrack-ng"; 9 9 repo = "rtl8188eus"; 10 - rev = "0958f294f90b49d6bad4972b14f90676e5d858d3"; 11 - sha256 = "sha256-dkCcwvOLxqU1IZ/OXTp67akjWgsaH1Cq4N8d9slMRI8="; 10 + rev = "3fae7237ba121f1169e9a2ea55040dc123697d3b"; 11 + sha256 = "sha256-ILSMEt9nMdg1ZbFeatWm8Yxf6a/E7Vm7KtKhN933KTc="; 12 12 }; 13 13 14 14 prePatch = '' ··· 18 18 --replace '$(MODDESTDIR)' "$out/lib/modules/${kernel.modDirVersion}/kernel/net/wireless/" 19 19 ''; 20 20 21 - patches = [ 22 - (fetchpatch { 23 - url = "https://github.com/aircrack-ng/rtl8188eus/commit/daa3a2e12290050be3af956915939a55aed50d5f.patch"; 24 - hash = "sha256-VsvaAhO74LzqUxbmdDT9qwVl6Y9lXfGfrHHK3SbnOVA="; 25 - }) 26 - ]; 27 - 28 21 hardeningDisable = [ "pic" ]; 29 22 30 23 enableParallelBuilding = true; ··· 40 33 homepage = "https://github.com/aircrack-ng/rtl8188eus"; 41 34 license = licenses.gpl2Only; 42 35 maintainers = with maintainers; [ fortuneteller2k ]; 43 - broken = (lib.versionAtLeast kernel.version "5.17") || ((lib.versions.majorMinor kernel.version) == "5.4" && kernel.isHardened); 36 + broken = (lib.versionAtLeast kernel.version "6.6") || ((lib.versions.majorMinor kernel.version) == "5.4" && kernel.isHardened); 44 37 }; 45 38 }
+2 -2
pkgs/os-specific/linux/uhk-agent/default.nix
··· 11 11 12 12 let 13 13 pname = "uhk-agent"; 14 - version = "3.1.0"; 14 + version = "3.2.0"; 15 15 16 16 src = fetchurl { 17 17 url = "https://github.com/UltimateHackingKeyboard/agent/releases/download/v${version}/UHK.Agent-${version}-linux-x86_64.AppImage"; 18 18 name = "${pname}-${version}.AppImage"; 19 - sha256 = "sha256-KFuB1cbrEDfqeRyrhXZs4ClhdIjZqIT5a+rnvdi3kpA="; 19 + sha256 = "sha256-YMm84jKtWz5DeGJhBlmo2hlIy4iarEvWylgAWY/itII="; 20 20 }; 21 21 22 22 appimageContents = appimageTools.extract {
+29 -29
pkgs/servers/clickhouse/default.nix
··· 6 6 , ninja 7 7 , python3 8 8 , perl 9 + , nasm 9 10 , yasm 10 11 , nixosTests 11 12 , darwin 12 13 , findutils 13 14 14 - # currently for BLAKE3 hash function 15 15 , rustSupport ? true 16 16 17 17 , corrosion ··· 24 24 inherit (llvmPackages) stdenv; 25 25 mkDerivation = ( 26 26 if stdenv.isDarwin 27 - then darwin.apple_sdk_11_0.llvmPackages_15.stdenv 27 + then darwin.apple_sdk_11_0.llvmPackages_16.stdenv 28 28 else llvmPackages.stdenv).mkDerivation; 29 29 in mkDerivation rec { 30 30 pname = "clickhouse"; 31 - version = "23.3.13.6"; 31 + version = "23.10.3.5"; 32 32 33 33 src = fetchFromGitHub rec { 34 34 owner = "ClickHouse"; 35 35 repo = "ClickHouse"; 36 - rev = "v${version}-lts"; 36 + rev = "v${version}-stable"; 37 37 fetchSubmodules = true; 38 38 name = "clickhouse-${rev}.tar.gz"; 39 - hash = "sha256-ryUjXN8UNGmkZTkqNHotB4C2E1MHZhx2teqXrlp5ySQ="; 39 + hash = "sha256-H3nIhBydLBxSesGrvqmwHmBoQGCGQlWgVVUudKLLkIY="; 40 40 postFetch = '' 41 41 # delete files that make the source too big 42 42 rm -rf $out/contrib/llvm-project/llvm/test ··· 67 67 ninja 68 68 python3 69 69 perl 70 + llvmPackages.lld 70 71 ] ++ lib.optionals stdenv.isx86_64 [ 72 + nasm 71 73 yasm 72 74 ] ++ lib.optionals stdenv.isDarwin [ 73 75 llvmPackages.bintools ··· 92 94 preBuild = "cd generator"; 93 95 hash = "sha256-dhUgpwSjE9NZ2mCkhGiydI51LIOClA5wwk1O3mnnbM8="; 94 96 } else null; 95 - blake3Deps = if rustSupport then rustPlatform.fetchCargoTarball { 97 + rustDeps = if rustSupport then rustPlatform.fetchCargoTarball { 96 98 inherit src; 97 - name = "blake3-deps"; 98 - preBuild = "cd rust/BLAKE3"; 99 - hash = "sha256-lDMmmsyjEbTfI5NgTgT4+8QQrcUE/oUWfFgj1i19W0Q="; 100 - } else null; 101 - skimDeps = if rustSupport then rustPlatform.fetchCargoTarball { 102 - inherit src; 103 - name = "skim-deps"; 104 - preBuild = "cd rust/skim"; 105 - hash = "sha256-gEWB+U8QrM0yYyMXpwocszJZgOemdTlbSzKNkS0NbPk="; 99 + name = "rust-deps"; 100 + preBuild = "cd rust"; 101 + hash = "sha256-fWDAGm19b7uZv8aBdBoieY5c6POd8IxFXbGdtONpZbw="; 106 102 } else null; 107 103 108 104 dontCargoSetupPostUnpack = true; ··· 117 113 corrosionDepsCopy="$cargoDepsCopy" 118 114 popd 119 115 120 - pushd rust/BLAKE3 121 - cargoDeps="$blake3Deps" cargoSetupPostUnpackHook 122 - blake3DepsCopy="$cargoDepsCopy" 123 - popd 124 - 125 - pushd rust/skim 126 - cargoDeps="$skimDeps" cargoSetupPostUnpackHook 127 - skimDepsCopy="$cargoDepsCopy" 116 + pushd rust 117 + cargoDeps="$rustDeps" cargoSetupPostUnpackHook 118 + rustDepsCopy="$cargoDepsCopy" 119 + cat .cargo/config >> .cargo/config.toml.in 120 + cat .cargo/config >> skim/.cargo/config.toml.in 121 + rm .cargo/config 128 122 popd 129 123 130 124 popd ··· 152 146 cargoDepsCopy="$corrosionDepsCopy" cargoSetupPostPatchHook 153 147 popd 154 148 155 - pushd rust/BLAKE3 156 - cargoDepsCopy="$blake3DepsCopy" cargoSetupPostPatchHook 157 - popd 158 - 159 - pushd rust/skim 160 - cargoDepsCopy="$skimDepsCopy" cargoSetupPostPatchHook 149 + pushd rust 150 + cargoDepsCopy="$rustDepsCopy" cargoSetupPostPatchHook 161 151 popd 162 152 163 153 cargoSetupPostPatchHook() { true; } 154 + '' + lib.optionalString stdenv.isDarwin '' 155 + # Make sure Darwin invokes lld.ld64 not lld. 156 + substituteInPlace cmake/tools.cmake \ 157 + --replace '--ld-path=''${LLD_PATH}' '-fuse-ld=lld' 164 158 ''; 165 159 166 160 cmakeFlags = [ ··· 168 162 "-DCOMPILER_CACHE=disabled" 169 163 "-DENABLE_EMBEDDED_COMPILER=ON" 170 164 ]; 165 + 166 + env = lib.optionalAttrs stdenv.isDarwin { 167 + # Silence ``-Wimplicit-const-int-float-conversion` error in MemoryTracker.cpp and 168 + # ``-Wno-unneeded-internal-declaration` TreeOptimizer.cpp. 169 + NIX_CFLAGS_COMPILE = "-Wno-implicit-const-int-float-conversion -Wno-unneeded-internal-declaration"; 170 + }; 171 171 172 172 # https://github.com/ClickHouse/ClickHouse/issues/49988 173 173 hardeningDisable = [ "fortify" ];
+3 -3
pkgs/servers/http/dufs/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "dufs"; 11 - version = "0.36.0"; 11 + version = "0.37.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "sigoden"; 15 15 repo = "dufs"; 16 16 rev = "v${version}"; 17 - hash = "sha256-WZ+tyrx4ayFyPmDJq6dGaTRiR6bSQq5k5iOfb+ETe/I="; 17 + hash = "sha256-Q5t3FUT/ukGME+ZJXpLWnii2XCPrBVDAlbjW8FrpOZs="; 18 18 }; 19 19 20 - cargoHash = "sha256-HZiWmqIh21b12DP+hnx1pWBWgSa5j71kp6GCRKGMHv0="; 20 + cargoHash = "sha256-6ybYfeufHr3ulTbKe27CDS5m1mCluPwS/5GYemYXat8="; 21 21 22 22 nativeBuildInputs = [ installShellFiles ]; 23 23
-4
pkgs/servers/jellyseerr/default.nix
··· 1 1 { lib 2 - , stdenv 3 2 , fetchFromGitHub 4 3 , makeWrapper 5 4 , mkYarnPackage 6 5 , nodejs 7 - , sqlite 8 6 , fetchYarnDeps 9 7 , python3 10 - , pkg-config 11 - , glib 12 8 }: 13 9 14 10 let
+49 -49
pkgs/servers/jellyseerr/package.json
··· 1 1 { 2 2 "name": "jellyseerr", 3 - "version": "1.4.1", 3 + "version": "1.7.0", 4 4 "private": true, 5 5 "scripts": { 6 6 "dev": "nodemon -e ts --watch server --watch overseerr-api.yml -e .json,.ts,.yml -x ts-node -r tsconfig-paths/register --files --project server/tsconfig.json server/index.ts", ··· 8 8 "build:next": "next build", 9 9 "build": "yarn build:next && yarn build:server", 10 10 "lint": "eslint \"./server/**/*.{ts,tsx}\" \"./src/**/*.{ts,tsx}\" --cache", 11 + "lintfix": "eslint \"./server/**/*.{ts,tsx}\" \"./src/**/*.{ts,tsx}\" --fix", 11 12 "start": "NODE_ENV=production node dist/index.js", 12 13 "i18n:extract": "extract-messages -l=en -o src/i18n/locale -d en --flat true --overwriteDefault true \"./src/**/!(*.test).{ts,tsx}\"", 13 14 "migration:generate": "ts-node -r tsconfig-paths/register --project server/tsconfig.json ./node_modules/typeorm/cli.js migration:generate -d server/datasource.ts", ··· 29 30 }, 30 31 "license": "MIT", 31 32 "dependencies": { 32 - "@formatjs/intl-displaynames": "6.2.3", 33 - "@formatjs/intl-locale": "3.0.11", 34 - "@formatjs/intl-pluralrules": "5.1.8", 33 + "@formatjs/intl-displaynames": "6.2.6", 34 + "@formatjs/intl-locale": "3.1.1", 35 + "@formatjs/intl-pluralrules": "5.1.10", 35 36 "@formatjs/intl-utils": "3.8.4", 36 - "@headlessui/react": "1.7.7", 37 - "@heroicons/react": "2.0.13", 37 + "@headlessui/react": "1.7.12", 38 + "@heroicons/react": "2.0.16", 38 39 "@supercharge/request-ip": "1.2.0", 39 40 "@svgr/webpack": "6.5.1", 40 - "@tanem/react-nprogress": "5.0.22", 41 - "ace-builds": "1.14.0", 42 - "axios": "1.2.2", 41 + "@tanem/react-nprogress": "5.0.30", 42 + "ace-builds": "1.15.2", 43 + "axios": "1.3.4", 43 44 "axios-rate-limit": "1.3.0", 44 45 "bcrypt": "5.1.0", 45 46 "bowser": "2.11.0", ··· 47 48 "cookie-parser": "1.4.6", 48 49 "copy-to-clipboard": "3.3.3", 49 50 "country-flag-icons": "1.5.5", 50 - "cronstrue": "2.21.0", 51 + "cronstrue": "2.23.0", 51 52 "csurf": "1.11.0", 52 53 "date-fns": "2.29.3", 53 54 "dayjs": "1.11.7", ··· 64 65 "next": "12.3.4", 65 66 "node-cache": "5.1.2", 66 67 "node-gyp": "9.3.1", 67 - "node-schedule": "2.1.0", 68 - "nodemailer": "6.8.0", 69 - "openpgp": "5.5.0", 68 + "node-schedule": "2.1.1", 69 + "nodemailer": "6.9.1", 70 + "openpgp": "5.7.0", 70 71 "plex-api": "5.3.2", 71 72 "pug": "3.0.2", 72 - "pulltorefreshjs": "0.1.22", 73 73 "react": "18.2.0", 74 74 "react-ace": "10.1.0", 75 75 "react-animate-height": "2.1.2", 76 - "react-aria": "3.22.0", 76 + "react-aria": "3.23.0", 77 77 "react-dom": "18.2.0", 78 - "react-intersection-observer": "9.4.1", 79 - "react-intl": "6.2.5", 80 - "react-markdown": "8.0.4", 78 + "react-intersection-observer": "9.4.3", 79 + "react-intl": "6.2.10", 80 + "react-markdown": "8.0.5", 81 81 "react-popper-tooltip": "4.4.2", 82 82 "react-select": "5.7.0", 83 - "react-spring": "9.6.1", 83 + "react-spring": "9.7.1", 84 84 "react-tailwindcss-datepicker-sct": "1.3.4", 85 85 "react-toast-notifications": "2.5.1", 86 86 "react-truncate-markup": "5.1.2", ··· 89 89 "secure-random-password": "0.2.3", 90 90 "semver": "7.3.8", 91 91 "sqlite3": "5.1.4", 92 - "swagger-ui-express": "4.6.0", 93 - "swr": "2.0.0", 94 - "typeorm": "0.3.11", 92 + "swagger-ui-express": "4.6.2", 93 + "swr": "2.0.4", 94 + "typeorm": "0.3.12", 95 95 "web-push": "3.5.0", 96 96 "winston": "3.8.2", 97 97 "winston-daily-rotate-file": "4.7.1", 98 98 "xml2js": "0.4.23", 99 99 "yamljs": "0.3.0", 100 100 "yup": "0.32.11", 101 - "zod": "3.20.2" 101 + "zod": "3.20.6" 102 102 }, 103 103 "devDependencies": { 104 - "@babel/cli": "7.20.7", 105 - "@commitlint/cli": "17.4.0", 106 - "@commitlint/config-conventional": "17.4.0", 104 + "@babel/cli": "7.21.0", 105 + "@commitlint/cli": "17.4.4", 106 + "@commitlint/config-conventional": "17.4.4", 107 107 "@semantic-release/changelog": "6.0.2", 108 108 "@semantic-release/commit-analyzer": "9.0.2", 109 109 "@semantic-release/exec": "6.0.3", 110 110 "@semantic-release/git": "10.0.1", 111 111 "@tailwindcss/aspect-ratio": "0.4.2", 112 112 "@tailwindcss/forms": "0.5.3", 113 - "@tailwindcss/typography": "0.5.8", 113 + "@tailwindcss/typography": "0.5.9", 114 114 "@types/bcrypt": "5.0.0", 115 115 "@types/cookie-parser": "1.4.3", 116 116 "@types/country-flag-icons": "1.2.0", 117 117 "@types/csurf": "1.11.2", 118 118 "@types/email-templates": "8.0.4", 119 - "@types/express": "4.17.15", 120 - "@types/express-session": "1.17.5", 119 + "@types/express": "4.17.17", 120 + "@types/express-session": "1.17.6", 121 121 "@types/lodash": "4.14.191", 122 122 "@types/node": "17.0.36", 123 123 "@types/node-schedule": "2.1.0", 124 124 "@types/nodemailer": "6.4.7", 125 - "@types/pulltorefreshjs": "0.1.5", 126 - "@types/react": "18.0.26", 127 - "@types/react-dom": "18.0.10", 125 + "@types/react": "18.0.28", 126 + "@types/react-dom": "18.0.11", 128 127 "@types/react-transition-group": "4.4.5", 129 128 "@types/secure-random-password": "0.2.1", 130 129 "@types/semver": "7.3.13", ··· 133 132 "@types/xml2js": "0.4.11", 134 133 "@types/yamljs": "0.2.31", 135 134 "@types/yup": "0.29.14", 136 - "@typescript-eslint/eslint-plugin": "5.48.0", 137 - "@typescript-eslint/parser": "5.48.0", 135 + "@typescript-eslint/eslint-plugin": "5.54.0", 136 + "@typescript-eslint/parser": "5.54.0", 138 137 "autoprefixer": "10.4.13", 139 138 "babel-plugin-react-intl": "8.2.25", 140 139 "babel-plugin-react-intl-auto": "3.3.0", 141 - "commitizen": "4.2.6", 140 + "commitizen": "4.3.0", 142 141 "copyfiles": "2.4.1", 143 142 "cy-mobile-commands": "0.3.0", 144 - "cypress": "12.3.0", 143 + "cypress": "12.7.0", 145 144 "cz-conventional-changelog": "3.3.0", 146 - "eslint": "8.31.0", 145 + "eslint": "8.35.0", 147 146 "eslint-config-next": "12.3.4", 148 147 "eslint-config-prettier": "8.6.0", 149 - "eslint-plugin-formatjs": "4.3.9", 150 - "eslint-plugin-jsx-a11y": "6.6.1", 148 + "eslint-plugin-formatjs": "4.9.0", 149 + "eslint-plugin-jsx-a11y": "6.7.1", 151 150 "eslint-plugin-no-relative-import-paths": "1.5.2", 152 151 "eslint-plugin-prettier": "4.2.1", 153 - "eslint-plugin-react": "7.31.11", 152 + "eslint-plugin-react": "7.32.2", 154 153 "eslint-plugin-react-hooks": "4.6.0", 155 154 "extract-react-intl-messages": "4.1.1", 156 155 "husky": "8.0.3", 157 - "lint-staged": "13.1.0", 156 + "lint-staged": "13.1.2", 158 157 "nodemon": "2.0.20", 159 - "postcss": "8.4.20", 160 - "prettier": "2.8.1", 161 - "prettier-plugin-organize-imports": "3.2.1", 162 - "prettier-plugin-tailwindcss": "0.2.1", 158 + "postcss": "8.4.21", 159 + "prettier": "2.8.4", 160 + "prettier-plugin-organize-imports": "3.2.2", 161 + "prettier-plugin-tailwindcss": "0.2.3", 163 162 "semantic-release": "19.0.5", 164 163 "semantic-release-docker-buildx": "1.0.1", 165 - "tailwindcss": "3.2.4", 164 + "tailwindcss": "3.2.7", 166 165 "ts-node": "10.9.1", 167 166 "tsc-alias": "1.8.2", 168 167 "tsconfig-paths": "4.1.2", 169 - "typescript": "4.9.4" 168 + "typescript": "4.9.5" 170 169 }, 171 170 "resolutions": { 172 171 "sqlite3/node-gyp": "8.4.1", 173 - "@types/react": "18.0.26", 174 - "@types/react-dom": "18.0.10" 172 + "@types/react": "18.0.28", 173 + "@types/react-dom": "18.0.11", 174 + "@types/express-session": "1.17.6" 175 175 }, 176 176 "config": { 177 177 "commitizen": {
+3 -3
pkgs/servers/jellyseerr/pin.json
··· 1 1 { 2 - "version": "1.4.1", 3 - "srcHash": "sha256-LDqlQfy1bm2xMNn1oulImfanQmJX57P48VaZn0Jxwpk=", 4 - "yarnSha256": "162aip7r5vcpfj1sn42qwwdlwnaii32bd2k0gp9py1z0zmw0lwlf" 2 + "version": "1.7.0", 3 + "srcHash": "sha256-9ILP2HH7p8ELwrQOBnqPbvHdUnNrqEkA4OmxOuhNbEc=", 4 + "yarnSha256": "1ygb8pmwra570wmdkn7mxv9j90cgjh063b9cl0wl9hsmg687sk9h" 5 5 }
+2 -2
pkgs/servers/jellyseerr/update.sh
··· 19 19 fi 20 20 21 21 src="https://raw.githubusercontent.com/Fallenbagel/jellyseerr/$tag" 22 - src_hash=$(nix-prefetch-github Fallenbagel jellyseerr --rev ${tag} | jq -r .hash) 22 + src_hash=$(nix-prefetch-github Fallenbagel jellyseerr --rev ${tag} | jq -r .sha256) 23 23 24 24 tmpdir=$(mktemp -d) 25 25 trap 'rm -rf "$tmpdir"' EXIT ··· 33 33 cat > pin.json << EOF 34 34 { 35 35 "version": "$(echo $tag | grep -P '(\d|\.)+' -o)", 36 - "srcHash": "$src_hash", 36 + "srcHash": "sha256-$src_hash", 37 37 "yarnSha256": "$yarn_sha256" 38 38 } 39 39 EOF
+3 -3
pkgs/servers/mjolnir/default.nix
··· 10 10 11 11 mkYarnPackage rec { 12 12 pname = "mjolnir"; 13 - version = "1.6.4"; 13 + version = "1.6.5"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "matrix-org"; 17 17 repo = "mjolnir"; 18 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-/vnojWLpu/fktqPUhAdL1QTESxDwFrBVYAkyF79Fj9w="; 19 + hash = "sha256-xejFKz2MmdjMFU0X0SdI+qXTBRAwIvkcfZPQqXB9LV0="; 20 20 }; 21 21 22 22 packageJSON = ./package.json; 23 23 24 24 offlineCache = fetchYarnDeps { 25 25 yarnLock = src + "/yarn.lock"; 26 - hash = "sha256-B4s0CYr5Ihoh4gkckwZ3z0Nb4LMET48WvRXuhk3fpQM="; 26 + hash = "sha256-RpvdyxJj92k4wFjBBmWCnEpFVOXVWlHEm0SmEBUlnTM="; 27 27 }; 28 28 29 29 packageResolutions = {
+5 -5
pkgs/servers/mjolnir/package.json
··· 1 1 { 2 2 "name": "mjolnir", 3 - "version": "1.6.3", 3 + "version": "1.6.5", 4 4 "description": "A moderation tool for Matrix", 5 5 "main": "lib/index.js", 6 6 "repository": "git@github.com:matrix-org/mjolnir.git", ··· 30 30 "@types/jsdom": "^16.2.11", 31 31 "@types/mocha": "^9.0.0", 32 32 "@types/nedb": "^1.8.12", 33 - "@types/node": "^16.7.10", 33 + "@types/node": "^18.0.0", 34 34 "@types/pg": "^8.6.5", 35 35 "@types/request": "^2.48.8", 36 36 "@types/shell-quote": "1.7.1", ··· 55 55 "humanize-duration-ts": "^2.1.1", 56 56 "js-yaml": "^4.1.0", 57 57 "jsdom": "^16.6.0", 58 - "matrix-appservice-bridge": "8.0.0", 58 + "matrix-appservice-bridge": "8.1.2", 59 59 "parse-duration": "^1.0.2", 60 60 "pg": "^8.8.0", 61 61 "prom-client": "^14.1.0", 62 62 "shell-quote": "^1.7.3", 63 63 "ulidx": "^0.3.0", 64 - "yaml": "^2.1.1" 64 + "yaml": "^2.2.2" 65 65 }, 66 66 "engines": { 67 - "node": ">=16.0.0" 67 + "node": ">=18.0.0" 68 68 } 69 69 }
+3 -3
pkgs/servers/search/zincsearch/default.nix
··· 5 5 }: 6 6 7 7 let 8 - version = "0.4.7"; 8 + version = "0.4.9"; 9 9 src = fetchFromGitHub { 10 10 owner = "zinclabs"; 11 11 repo = "zincsearch"; 12 12 rev = "v${version}"; 13 - hash = "sha256-6ZwEH9Xm+iIZ0SDa8qb82lIN3KU6DMe2wt0q9doKgkE="; 13 + hash = "sha256-NIrLhbtpk1mFbWRFPxkH1r4mBiwT488MYBjRgIV7igE="; 14 14 }; 15 15 16 16 webui = buildNpmPackage { ··· 40 40 cp -r ${webui}/share/zinc-ui web/dist 41 41 ''; 42 42 43 - vendorHash = "sha256-/uZh50ImKWW7vYMfRqTbTAMUoRTZ9jXMbc3K16wYJkE="; 43 + vendorHash = "sha256-kP7QlES7VpZrOS4TGOFB9qciXGBEUVqzVLhz+2KiK98="; 44 44 subPackages = [ "cmd/zincsearch" ]; 45 45 46 46 ldflags = [
+4 -4
pkgs/servers/teleport/12/default.nix
··· 1 1 { callPackage, ... }@args: 2 2 callPackage ../generic.nix ({ 3 - version = "12.4.22"; 4 - hash = "sha256-UEiS+GiderYTU34GHsQr4G8XrasV5ewmPcdrec4v5B4="; 5 - vendorHash = "sha256-etutgK/5u+e86kx7ha3x+di9np7Tcr7hpGUMKZxJNT4="; 6 - yarnHash = "sha256-MBTElkMH5rb33l+AYWH+zguSLQf+ntXpOkHZpjLAx/Q="; 3 + version = "12.4.23"; 4 + hash = "sha256-kCHRBa9rdwfcb98XG/08ZaJmI1NhEiSCoXuH8/3xJlk="; 5 + vendorHash = "sha256-yOvQQHjtDSLqQZcw2OIOy6CDqwYSgMpL2Rxlk2u//OE="; 6 + yarnHash = "sha256-beHCg9qUSisYMJ/9eeqWmbc9+V9YGgXBheZSFpbqoPY="; 7 7 cargoLock = { 8 8 lockFile = ./Cargo.lock; 9 9 outputHashes = {
+6 -17
pkgs/servers/teleport/13/Cargo.lock
··· 451 451 452 452 [[package]] 453 453 name = "errno" 454 - version = "0.2.8" 455 - source = "registry+https://github.com/rust-lang/crates.io-index" 456 - checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 457 - dependencies = [ 458 - "errno-dragonfly", 459 - "libc", 460 - "winapi", 461 - ] 462 - 463 - [[package]] 464 - name = "errno" 465 454 version = "0.3.0" 466 455 source = "registry+https://github.com/rust-lang/crates.io-index" 467 456 checksum = "50d6a0976c999d473fe89ad888d5a284e55366d9dc9038b1ba2aa15128c4afa0" ··· 713 702 dependencies = [ 714 703 "hermit-abi 0.2.6", 715 704 "io-lifetimes", 716 - "rustix 0.36.5", 705 + "rustix 0.36.16", 717 706 "windows-sys 0.42.0", 718 707 ] 719 708 ··· 1363 1352 1364 1353 [[package]] 1365 1354 name = "rustix" 1366 - version = "0.36.5" 1355 + version = "0.36.16" 1367 1356 source = "registry+https://github.com/rust-lang/crates.io-index" 1368 - checksum = "a3807b5d10909833d3e9acd1eb5fb988f79376ff10fce42937de71a449c4c588" 1357 + checksum = "6da3636faa25820d8648e0e31c5d519bbb01f72fdf57131f0f5f7da5fed36eab" 1369 1358 dependencies = [ 1370 1359 "bitflags 1.3.2", 1371 - "errno 0.2.8", 1360 + "errno", 1372 1361 "io-lifetimes", 1373 1362 "libc", 1374 1363 "linux-raw-sys 0.1.4", 1375 - "windows-sys 0.42.0", 1364 + "windows-sys 0.45.0", 1376 1365 ] 1377 1366 1378 1367 [[package]] ··· 1382 1371 checksum = "c348b5dc624ecee40108aa2922fed8bad89d7fcc2b9f8cb18f632898ac4a37f9" 1383 1372 dependencies = [ 1384 1373 "bitflags 1.3.2", 1385 - "errno 0.3.0", 1374 + "errno", 1386 1375 "io-lifetimes", 1387 1376 "libc", 1388 1377 "linux-raw-sys 0.3.0",
+4 -4
pkgs/servers/teleport/13/default.nix
··· 1 1 { callPackage, ... }@args: 2 2 callPackage ../generic.nix ({ 3 - version = "13.4.3"; 4 - hash = "sha256-x8G94jKycK3nYwqDA5RPc63GHIk9y4pHfSwSBqGBINk="; 5 - vendorHash = "sha256-Pb3eO9zqLgTD7otM7yGRWicQjvpIXg7xKV8Oc4yh8PA="; 6 - yarnHash = "sha256-GnoiLqzqGV0UZm5zePCDBUUX63NTIIo1dcxtiWQDPqc="; 3 + version = "13.4.5"; 4 + hash = "sha256-uZolRnESFP65Xgvr29laEok2kBbm7G2qY9j8yKRrUdo="; 5 + vendorHash = "sha256-Bkr6R9P2YTqvTEQkHvVdsRmWp6pv3Qg0WaQ+pERclWc="; 6 + yarnHash = "sha256-60k4LRHpX4rYXZZ0CC44PqzL3PDu8PadV0kwXatnByI="; 7 7 cargoLock = { 8 8 lockFile = ./Cargo.lock; 9 9 outputHashes = {
+31 -18
pkgs/servers/teleport/14/Cargo.lock
··· 451 451 452 452 [[package]] 453 453 name = "errno" 454 - version = "0.2.8" 455 - source = "registry+https://github.com/rust-lang/crates.io-index" 456 - checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 457 - dependencies = [ 458 - "errno-dragonfly", 459 - "libc", 460 - "winapi", 461 - ] 462 - 463 - [[package]] 464 - name = "errno" 465 454 version = "0.3.1" 466 455 source = "registry+https://github.com/rust-lang/crates.io-index" 467 456 checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" ··· 708 697 dependencies = [ 709 698 "hermit-abi 0.2.6", 710 699 "io-lifetimes", 711 - "rustix 0.36.5", 700 + "rustix 0.36.16", 712 701 "windows-sys 0.42.0", 713 702 ] 714 703 ··· 1356 1345 1357 1346 [[package]] 1358 1347 name = "rustix" 1359 - version = "0.36.5" 1348 + version = "0.36.16" 1360 1349 source = "registry+https://github.com/rust-lang/crates.io-index" 1361 - checksum = "a3807b5d10909833d3e9acd1eb5fb988f79376ff10fce42937de71a449c4c588" 1350 + checksum = "6da3636faa25820d8648e0e31c5d519bbb01f72fdf57131f0f5f7da5fed36eab" 1362 1351 dependencies = [ 1363 1352 "bitflags 1.3.2", 1364 - "errno 0.2.8", 1353 + "errno", 1365 1354 "io-lifetimes", 1366 1355 "libc", 1367 1356 "linux-raw-sys 0.1.4", 1368 - "windows-sys 0.42.0", 1357 + "windows-sys 0.45.0", 1369 1358 ] 1370 1359 1371 1360 [[package]] ··· 1375 1364 checksum = "0a962918ea88d644592894bc6dc55acc6c0956488adcebbfb6e273506b7fd6e5" 1376 1365 dependencies = [ 1377 1366 "bitflags 2.4.0", 1378 - "errno 0.3.1", 1367 + "errno", 1379 1368 "libc", 1380 1369 "linux-raw-sys 0.4.3", 1381 1370 "windows-sys 0.48.0", ··· 1845 1834 1846 1835 [[package]] 1847 1836 name = "windows-sys" 1837 + version = "0.45.0" 1838 + source = "registry+https://github.com/rust-lang/crates.io-index" 1839 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 1840 + dependencies = [ 1841 + "windows-targets 0.42.2", 1842 + ] 1843 + 1844 + [[package]] 1845 + name = "windows-sys" 1848 1846 version = "0.48.0" 1849 1847 source = "registry+https://github.com/rust-lang/crates.io-index" 1850 1848 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1851 1849 dependencies = [ 1852 - "windows-targets", 1850 + "windows-targets 0.48.0", 1851 + ] 1852 + 1853 + [[package]] 1854 + name = "windows-targets" 1855 + version = "0.42.2" 1856 + source = "registry+https://github.com/rust-lang/crates.io-index" 1857 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 1858 + dependencies = [ 1859 + "windows_aarch64_gnullvm 0.42.2", 1860 + "windows_aarch64_msvc 0.42.2", 1861 + "windows_i686_gnu 0.42.2", 1862 + "windows_i686_msvc 0.42.2", 1863 + "windows_x86_64_gnu 0.42.2", 1864 + "windows_x86_64_gnullvm 0.42.2", 1865 + "windows_x86_64_msvc 0.42.2", 1853 1866 ] 1854 1867 1855 1868 [[package]]
+4 -4
pkgs/servers/teleport/14/default.nix
··· 1 1 { callPackage, ... }@args: 2 2 callPackage ../generic.nix ({ 3 - version = "14.0.3"; 4 - hash = "sha256-X+vekYmuTE7n22SH/z2GWO3wnBsIef1GEjR7WOJpjc8="; 5 - vendorHash = "sha256-+R6f2HrlN/RLec83YutccDFJW6gq6HXbxoJVtxMgdp8="; 6 - yarnHash = "sha256-udM4DNaTGiMkqfkllJjmT+Nk6PNbGUzT34ixQOhmScw="; 3 + version = "14.1.1"; 4 + hash = "sha256-xdJBl5imHuo1IP0ja33eaaE4i/sSP3kg/wQwehC1Hao="; 5 + vendorHash = "sha256-+kCns/xHUfUOW2xBk6CaPZYWe/vcEguz2/4lqaJEbFc="; 6 + yarnHash = "sha256-fWBMeat1bSIEMSADn8oDVfQtnUBojjy5ZCdVhw8PGMs="; 7 7 cargoLock = { 8 8 lockFile = ./Cargo.lock; 9 9 outputHashes = {
+8
pkgs/test/cc-wrapper/atomics.cc
··· 1 + #include <atomic> 2 + #include <cstdint> 3 + 4 + int main() 5 + { 6 + std::atomic_int x = {0}; 7 + return !std::atomic_is_lock_free(&x); 8 + }
+10 -1
pkgs/test/cc-wrapper/default.nix
··· 9 9 ); 10 10 staticLibc = lib.optionalString (stdenv.hostPlatform.libc == "glibc") "-L ${glibc.static}/lib"; 11 11 emulator = stdenv.hostPlatform.emulator buildPackages; 12 - libcxxStdenvSuffix = lib.optionalString (stdenv.cc.libcxx != null) "-libcxx"; 12 + isCxx = stdenv.cc.libcxx != null; 13 + libcxxStdenvSuffix = lib.optionalString isCxx "-libcxx"; 13 14 in stdenv.mkDerivation { 14 15 pname = "cc-wrapper-test-${stdenv.cc.cc.pname}${libcxxStdenvSuffix}"; 15 16 version = stdenv.cc.version; ··· 36 37 echo "checking whether cxxabi.h can be included... " >&2 37 38 $CXX -o include-cxxabi ${./include-cxxabi.cc} 38 39 ${emulator} ./include-cxxabi 40 + 41 + # cxx doesn't have libatomic.so 42 + ${lib.optionalString (!isCxx) '' 43 + # https://github.com/NixOS/nixpkgs/issues/91285 44 + echo "checking whether libatomic.so can be linked... " >&2 45 + $CXX -shared -o atomics.so ${./atomics.cc} -latomic ${lib.optionalString (stdenv.cc.isClang && lib.versionOlder stdenv.cc.version "6.0.0" ) "-std=c++17"} 46 + $READELF -d ./atomics.so | grep libatomic.so && echo "ok" >&2 || echo "failed" >&2 47 + ''} 39 48 40 49 ${lib.optionalString (stdenv.isDarwin && stdenv.cc.isClang) '' 41 50 echo "checking whether compiler can build with CoreFoundation.framework... " >&2
+19 -17
pkgs/test/default.nix
··· 39 39 name = "cc-wrapper-supported"; 40 40 builtGCC = 41 41 let 42 - names = lib.pipe (attrNames gccTests) ([ 43 - (filter (n: lib.meta.availableOn stdenv.hostPlatform pkgs.${n}.cc)) 42 + inherit (lib) filterAttrs; 43 + sets = lib.pipe gccTests ([ 44 + (filterAttrs (_: v: lib.meta.availableOn stdenv.hostPlatform v.stdenv.cc)) 44 45 # Broken 45 - (filter (n: n != "gcc49Stdenv")) 46 - (filter (n: n != "gccMultiStdenv")) 46 + (filterAttrs (n: _: n != "gcc49Stdenv")) 47 + (filterAttrs (n: _: n != "gccMultiStdenv")) 47 48 ] ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [ 48 49 # fails with things like 49 50 # ld: warning: ld: warning: object file (trunctfsf2_s.o) was built for newer macOS version (11.0) than being linked (10.5) 50 51 # ld: warning: ld: warning: could not create compact unwind for ___fixunstfdi: register 20 saved somewhere other than in frame 51 - (filter (n: n != "gcc11Stdenv")) 52 + (filterAttrs (n: _: n != "gcc11Stdenv")) 52 53 ]); 53 54 in 54 - toJSON (lib.genAttrs names (name: { name = pkgs.${name}; })); 55 + toJSON sets; 55 56 56 57 builtLLVM = 57 58 let 58 - names = lib.pipe (attrNames llvmTests) ([ 59 - (filter (n: lib.meta.availableOn stdenv.hostPlatform pkgs.${n}.stdenv.cc)) 60 - (filter (n: lib.meta.availableOn stdenv.hostPlatform pkgs.${n}.libcxxStdenv.cc)) 59 + inherit (lib) filterAttrs; 60 + sets = lib.pipe llvmTests ([ 61 + (filterAttrs (_: v: lib.meta.availableOn stdenv.hostPlatform v.clang.stdenv.cc)) 62 + (filterAttrs (_: v: lib.meta.availableOn stdenv.hostPlatform v.libcxx.stdenv.cc)) 61 63 62 64 # libcxxStdenv broken 63 65 # fix in https://github.com/NixOS/nixpkgs/pull/216273 64 66 ] ++ lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [ 65 67 # libcxx does not build for some reason on aarch64-linux 66 - (filter (n: n != "llvmPackages_7")) 68 + (filterAttrs (n: _: n != "llvmPackages_7")) 67 69 ] ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [ 68 - (filter (n: n != "llvmPackages_5")) 69 - (filter (n: n != "llvmPackages_6")) 70 - (filter (n: n != "llvmPackages_7")) 71 - (filter (n: n != "llvmPackages_8")) 72 - (filter (n: n != "llvmPackages_9")) 73 - (filter (n: n != "llvmPackages_10")) 70 + (filterAttrs (n: _: n != "llvmPackages_5")) 71 + (filterAttrs (n: _: n != "llvmPackages_6")) 72 + (filterAttrs (n: _: n != "llvmPackages_7")) 73 + (filterAttrs (n: _: n != "llvmPackages_8")) 74 + (filterAttrs (n: _: n != "llvmPackages_9")) 75 + (filterAttrs (n: _: n != "llvmPackages_10")) 74 76 ]); 75 77 in 76 - toJSON (lib.genAttrs names (name: { stdenv = pkgs.${name}.stdenv; libcxx = pkgs.${name}.libcxxStdenv; })); 78 + toJSON sets; 77 79 buildCommand = '' 78 80 touch $out 79 81 '';
+17 -17
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.93.0"; 4 + version = "3.94.0"; 5 5 pulumiPkgs = { 6 6 x86_64-linux = [ 7 7 { 8 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.93.0-linux-x64.tar.gz"; 9 - sha256 = "1s081ak1m55jckgrrcnj918smlx79sywqgqfbvf50hkcrk5pwdsj"; 8 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.94.0-linux-x64.tar.gz"; 9 + sha256 = "1yn97xxqwgrcd5psrrimcz1gjv34s7mri40nwb2mgmqj7xs4hyi3"; 10 10 } 11 11 { 12 12 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.7.2-linux-amd64.tar.gz"; ··· 61 61 sha256 = "1r1sfxngwkf89lni0l8zalh2vz5a7m9ap4p15cs4bc98zmkin762"; 62 62 } 63 63 { 64 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.4.4-linux-amd64.tar.gz"; 65 - sha256 = "01zckkhkji8579r6b18mc6h36ap5qm8pa5kjf3mzgy1j1v1mhlww"; 64 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.4.5-linux-amd64.tar.gz"; 65 + sha256 = "1m44dwr8q8w60s5clm4n1hini1bm5bqc7p7h1gvbh5zg1482hn5q"; 66 66 } 67 67 { 68 68 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.2.1-linux-amd64.tar.gz"; ··· 163 163 ]; 164 164 x86_64-darwin = [ 165 165 { 166 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.93.0-darwin-x64.tar.gz"; 167 - sha256 = "0gxch1ml2sv66wbzfycsg02f6cagwrv0kl2b437xnn8g86mxi2di"; 166 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.94.0-darwin-x64.tar.gz"; 167 + sha256 = "0v854xz9imq9kxslvyx3km20jzcia8m6wkq6ga1gxlsrbx3ajgrn"; 168 168 } 169 169 { 170 170 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.7.2-darwin-amd64.tar.gz"; ··· 219 219 sha256 = "0iymy2rjyxya49w7awrjns4pnj4m2m66iqf59f1a6ww4i5qmx5f1"; 220 220 } 221 221 { 222 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.4.4-darwin-amd64.tar.gz"; 223 - sha256 = "10w91x51by096blmvgdyci1xan9xw7yh9ky7ajpz3mmr3y3npqn8"; 222 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.4.5-darwin-amd64.tar.gz"; 223 + sha256 = "0g8rcdbfbpmsw3wqx9jy5kz6pcmr9im2njisi3rlkkyfazm7fmqd"; 224 224 } 225 225 { 226 226 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.2.1-darwin-amd64.tar.gz"; ··· 321 321 ]; 322 322 aarch64-linux = [ 323 323 { 324 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.93.0-linux-arm64.tar.gz"; 325 - sha256 = "0xmsn6qyrmiqpgpffr1c0ykpw06ca8lcv4hgsvv12jxzqrasdv6a"; 324 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.94.0-linux-arm64.tar.gz"; 325 + sha256 = "075pyjjinc77283cqd81745sdjxlcrdn02nx17jis28w4gp7y88n"; 326 326 } 327 327 { 328 328 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.7.2-linux-arm64.tar.gz"; ··· 377 377 sha256 = "11q7cnncwdmjp8klk74wrnm6674ap5lrdjfq7413ps8rbdjpyvhl"; 378 378 } 379 379 { 380 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.4.4-linux-arm64.tar.gz"; 381 - sha256 = "0rl4ckrna59qgyhzmrzzlhl08c13979gjfx0pbhk6m6ahcm6whyc"; 380 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.4.5-linux-arm64.tar.gz"; 381 + sha256 = "1dxam51n9r2nmkw29fdwl5b0664ll2a1qczva0fgh1wpdslisp8s"; 382 382 } 383 383 { 384 384 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.2.1-linux-arm64.tar.gz"; ··· 479 479 ]; 480 480 aarch64-darwin = [ 481 481 { 482 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.93.0-darwin-arm64.tar.gz"; 483 - sha256 = "0q59khgglzk0dkz1p81nmj0v7gsgkdfv2109sk3lb7ms5myknkd6"; 482 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.94.0-darwin-arm64.tar.gz"; 483 + sha256 = "05yyw5pjbmzgqimcd72xidwzqsvvkj7ayafwy701smmxdpck31b0"; 484 484 } 485 485 { 486 486 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.7.2-darwin-arm64.tar.gz"; ··· 535 535 sha256 = "1glpfbinny7cm7bk3q5y7g7lyrzmhdlsfjyiaxqwpkwx2960p5iv"; 536 536 } 537 537 { 538 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.4.4-darwin-arm64.tar.gz"; 539 - sha256 = "0xh2r364xkfxq4dlxskxm449d2iqrc2105y72km6w6wrmdvazpn7"; 538 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.4.5-darwin-arm64.tar.gz"; 539 + sha256 = "0kcivc4bs720s7cdjphjcy1sss7pfsands37c8gikhiq0cnl39mb"; 540 540 } 541 541 { 542 542 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.2.1-darwin-arm64.tar.gz";
+5 -5
pkgs/tools/filesystems/bcachefs-tools/default.nix
··· 21 21 , fuseSupport ? false 22 22 }: 23 23 let 24 - rev = "6b175a022496572416918bd38d083120c23ba5f2"; 24 + version = "1.3.1"; 25 25 in 26 26 stdenv.mkDerivation { 27 27 pname = "bcachefs-tools"; 28 - version = "unstable-2023-09-29"; 28 + inherit version; 29 29 30 30 31 31 src = fetchFromGitHub { 32 32 owner = "koverstreet"; 33 33 repo = "bcachefs-tools"; 34 - inherit rev; 35 - hash = "sha256-qC6Bq2zdO8Tj+bZbIUvcVBqvuKccqDEX3HIeOXsEloQ="; 34 + rev = "v${version}"; 35 + hash = "sha256-4TmH6YOW6ktISVA6RLo7JRl8/SnRzGMrdbyCr+mDkqY="; 36 36 }; 37 37 38 38 nativeBuildInputs = [ ··· 71 71 72 72 makeFlags = [ 73 73 "PREFIX=${placeholder "out"}" 74 - "VERSION=${lib.strings.substring 0 7 rev}" 74 + "VERSION=${version}" 75 75 "INITRAMFS_DIR=${placeholder "out"}/etc/initramfs-tools" 76 76 ]; 77 77
+3 -3
pkgs/tools/graphics/netpbm/default.nix
··· 20 20 # Determine version and revision from: 21 21 # https://sourceforge.net/p/netpbm/code/HEAD/log/?path=/advanced 22 22 pname = "netpbm"; 23 - version = "11.4.3"; 23 + version = "11.4.4"; 24 24 25 25 outputs = [ "bin" "out" "dev" ]; 26 26 27 27 src = fetchsvn { 28 28 url = "https://svn.code.sf.net/p/netpbm/code/advanced"; 29 - rev = "4776"; 30 - sha256 = "h8QjYc4VYJY1fSwCyqn6am/L0tv02ux1lQZfYov1XFA="; 29 + rev = "4784"; 30 + sha256 = "GoO32AWu2s/s1IzehPynCJctc1F98dQhz5cQSXQhu2A="; 31 31 }; 32 32 33 33 nativeBuildInputs = [
+2 -2
pkgs/tools/misc/esphome/dashboard.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "esphome-dashboard"; 8 - version = "20230904.0"; 8 + version = "20231107.0"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - hash = "sha256-b+NlWekNXbGvhLQlQqFtSSsO99J+ldS6NddlK3lykeA="; 13 + hash = "sha256-84iM987nxNidMObnbY3lt78xRbN9USNtqQzfOzkd17k="; 14 14 }; 15 15 16 16 # no tests
+6 -5
pkgs/tools/misc/esphome/default.nix
··· 1 1 { lib 2 2 , callPackage 3 - , python3 3 + , python3Packages 4 4 , fetchFromGitHub 5 5 , platformio 6 6 , esptool_3 ··· 8 8 }: 9 9 10 10 let 11 - python = python3.override { 11 + python = python3Packages.python.override { 12 12 packageOverrides = self: super: { 13 13 esphome-dashboard = self.callPackage ./dashboard.nix {}; 14 14 }; ··· 16 16 in 17 17 python.pkgs.buildPythonApplication rec { 18 18 pname = "esphome"; 19 - version = "2023.10.6"; 19 + version = "2023.11.0"; 20 20 format = "setuptools"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = pname; 24 24 repo = pname; 25 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-GqZSQVQnxLj0JrUrCMB5+RmxcJRU6ErIDGP8WaMolXk="; 26 + hash = "sha256-965gjYQmdsx4G4HJdBYx8u1jvAk48fLRP8QXDv1eQLM="; 27 27 }; 28 28 29 29 postPatch = '' ··· 45 45 # - validate_pillow_installed 46 46 propagatedBuildInputs = with python.pkgs; [ 47 47 aioesphomeapi 48 + argcomplete 48 49 click 49 50 colorama 50 51 cryptography ··· 72 73 "--set ESPHOME_USE_SUBPROCESS ''" 73 74 ]; 74 75 75 - nativeCheckInputs = with python.pkgs; [ 76 + nativeCheckInputs = with python3Packages; [ 76 77 hypothesis 77 78 mock 78 79 pytest-asyncio
+3 -3
pkgs/tools/misc/google-cloud-sql-proxy/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "google-cloud-sql-proxy"; 8 - version = "2.7.1"; 8 + version = "2.7.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "GoogleCloudPlatform"; 12 12 repo = "cloud-sql-proxy"; 13 13 rev = "v${version}"; 14 - hash = "sha256-8UoAN5z84gGV869AgOWGrC92NdEnkw5b6QME4QKQ/mM="; 14 + hash = "sha256-mfPh9cdsn9Jq9a1gkF5f/24inxuwcITrp7KfSfp0pMQ="; 15 15 }; 16 16 17 17 subPackages = [ "." ]; 18 18 19 - vendorHash = "sha256-S2bt015AD25K6yrVGK3qv8Gq2fVifVV0AVBSt/8V9So="; 19 + vendorHash = "sha256-GfvEurTX5r2ZIOwaDJA4ncd8SNMusoqXuhcMGYvaVwQ="; 20 20 21 21 preCheck = '' 22 22 buildFlagsArray+="-short"
+2 -2
pkgs/tools/misc/moar/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "moar"; 5 - version = "1.18.3"; 5 + version = "1.18.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "walles"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-Wj7zKszVtaTwcIoTtjHasShEnSDoiZ53Gnz38Ci31Hs="; 11 + hash = "sha256-zF+Hnsmw5TJCYYoItrwcnyh3NSmKrV9JoTPwTMVyw7Y="; 12 12 }; 13 13 14 14 vendorHash = "sha256-x6BeU6JDayCOi8T8+NvXZe59QmTaO9RAYwSiFlDPL/c=";
+2 -2
pkgs/tools/misc/pb/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "pb"; 5 - version = "0.3.0"; 5 + version = "0.4.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "parseablehq"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-ZtjlrWCL1h2qtpLsr7HN6ZcYhybjnoSFwMAXFGCn00A="; 11 + hash = "sha256-ckRvtEtagyYpXJ0hh8jsgpE/16bu7b9IdNn2stvb2iI="; 12 12 }; 13 13 14 14 vendorHash = "sha256-dNSr0bQz7XdC2fTD82TI8tfmwKBuAcbxjaMC9KAjxlI=";
+2 -2
pkgs/tools/misc/ugs/default.nix
··· 18 18 in 19 19 stdenv.mkDerivation rec { 20 20 pname = "ugs"; 21 - version = "2.0.21"; 21 + version = "2.1.0"; 22 22 23 23 src = fetchzip { 24 24 url = "https://github.com/winder/Universal-G-Code-Sender/releases/download/v${version}/UniversalGcodeSender.zip"; 25 - hash = "sha256-KZh15M1dRV7oN5Qrg8q+PV3ZHCdNHF2wOUnGq+VLGYI="; 25 + hash = "sha256-BH4oka2Ht4fGMD6/xy/MLBXNkJRggs4VQVG0UqmYQoI="; 26 26 }; 27 27 28 28 dontUnpack = true;
+2 -2
pkgs/tools/networking/aria2/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "aria2"; 9 - version = "1.36.0"; 9 + version = "1.37.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "aria2"; 13 13 repo = "aria2"; 14 14 rev = "release-${version}"; 15 - sha256 = "sha256-ErjFfSJDIgZq0qy0Zn5uZ9bZS2AtJq4FuBVuUuQgPTI="; 15 + sha256 = "sha256-xbiNSg/Z+CA0x0DQfMNsWdA+TATyX6dCeW2Nf3L3Kfs="; 16 16 }; 17 17 18 18 patches = [
+2 -2
pkgs/tools/networking/socat/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "socat"; 13 - version = "1.7.4.4"; 13 + version = "1.8.0.0"; 14 14 15 15 src = fetchurl { 16 16 url = "http://www.dest-unreach.org/socat/download/${pname}-${version}.tar.bz2"; 17 - sha256 = "sha256-+9Qr0vDlSjr20BvfFThThKuC28Dk8aXhU7PgvhtjgKw="; 17 + hash = "sha256-4d5oPdIu4OOmxrv/Jpq+GKsMnX62UCBPElFVuQBfrKc="; 18 18 }; 19 19 20 20 postPatch = ''
+3 -3
pkgs/tools/networking/v2ray/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "v2ray-core"; 9 - version = "5.8.0"; 9 + version = "5.11.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "v2fly"; 13 13 repo = "v2ray-core"; 14 14 rev = "v${version}"; 15 - hash = "sha256-fMAPlPn53GkYKpraRS58XTF//IMZtzssaQpBkirEWfw="; 15 + hash = "sha256-wiAK3dzZ9TGYkt7MmBkYTD+Mi5BEid8sziDM1nI3Z80="; 16 16 }; 17 17 18 18 # `nix-update` doesn't support `vendorHash` yet. 19 19 # https://github.com/Mic92/nix-update/pull/95 20 - vendorHash = "sha256-un3faML5u9kmlsJw/hitoRcGYtVukF+V/dJMFyGhr8Q="; 20 + vendorHash = "sha256-pC3KXx1KBvQx6eZZG1czaGjCOd0xAB42B5HmKn7p52c="; 21 21 22 22 ldflags = [ "-s" "-w" "-buildid=" ]; 23 23
+3 -3
pkgs/tools/security/httpx/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "httpx"; 8 - version = "1.3.6"; 8 + version = "1.3.7"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "projectdiscovery"; 12 12 repo = "httpx"; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-oLx8fyFmK6SyFLw4yDwa+z5CpuAqebQdEH3JCbt9cg0="; 14 + hash = "sha256-FiCY9dZDZ92c6MayloS97Ff1trc5w4M/AIS6XORZf5U="; 15 15 }; 16 16 17 - vendorHash = "sha256-QggYz5vAzhqagYIRCa7R09px8qXaqsTcj659XIV/LR4="; 17 + vendorHash = "sha256-++vCyunRkLn9K1u+zXSN4TzIS9J8emc/w85ToqmG7gY="; 18 18 19 19 subPackages = [ 20 20 "cmd/httpx"
+2 -2
pkgs/tools/security/sigma-cli/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "sigma-cli"; 8 - version = "0.7.9"; 8 + version = "0.7.10"; 9 9 format = "pyproject"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "SigmaHQ"; 13 13 repo = "sigma-cli"; 14 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-CWoVVvhprqBW4bmcAHtgJbbOPxGbBsikNu6bwyDdIcc="; 15 + hash = "sha256-Sy9adkmR7Vu7kI75XG0PXihFogPaNwzHH2U5uSz9mZA="; 16 16 }; 17 17 18 18 postPatch = ''
+2 -2
pkgs/tools/security/sslscan/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "sslscan"; 9 - version = "2.1.1"; 9 + version = "2.1.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "rbsec"; 13 13 repo = "sslscan"; 14 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-AsOuNJ5adI7/8A6siK4MzLtpBstsU7JxX1d6WWVJHAY="; 15 + hash = "sha256-6teCWzv9DXhGSBjyIurRW3ymSTwMUlbJGjuXmsqpkUc="; 16 16 }; 17 17 18 18 buildInputs = [ openssl ];
+3 -3
pkgs/tools/text/riffdiff/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "riffdiff"; 5 - version = "2.27.0"; 5 + version = "2.27.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "walles"; 9 9 repo = "riff"; 10 10 rev = version; 11 - hash = "sha256-yrIZsCxoFV9LFh96asYxpAYv1KvrLq+RlqL8gZXaeak="; 11 + hash = "sha256-cW43nt8Go4VjEwXpCieGYIXwG1XMexslgriMsZ0BB1g="; 12 12 }; 13 13 14 - cargoHash = "sha256-tO49qAEW15q76hLcHOtniwLqGy29MZ/dabyZHYAsiME="; 14 + cargoHash = "sha256-phTo0XvCiTnBFF5r5myvwmiWnpcYLnkaMLcaXw4oL/Y="; 15 15 16 16 meta = with lib; { 17 17 description = "A diff filter highlighting which line parts have changed";
+3 -3
pkgs/tools/wayland/hyprland-per-window-layout/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "hyprland-per-window-layout"; 5 - version = "2.3"; 5 + version = "2.3.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "coffebar"; 9 9 repo = pname; 10 10 rev = version; 11 - hash = "sha256-eqhGX9rjvOHh6RuWj5dqWPKlFdTnZpAcDUuJbT3Z/E8="; 11 + hash = "sha256-zH0N7m8cvc47MM7+DAIgg/S6onpIwoB9CfcAmRqhtGA="; 12 12 }; 13 13 14 - cargoHash = "sha256-AUkBTHShtY3ZJ8pxCuW9baVuxb2QxzXxJQMgbuVTlPY="; 14 + cargoHash = "sha256-rYTptEB+2Adlb1y7oXO+noqNylwiHBAb49ufZdPL9Qc="; 15 15 16 16 meta = with lib; { 17 17 description = "Per window keyboard layout (language) for Hyprland wayland compositor";
+60 -14
pkgs/top-level/all-packages.nix
··· 2527 2527 2528 2528 lab = callPackage ../applications/version-management/lab { }; 2529 2529 2530 - labctl = callPackage ../tools/networking/labctl { }; 2530 + labctl = callPackage ../tools/networking/labctl { 2531 + buildGoModule = buildGo120Module; 2532 + }; 2531 2533 2532 2534 lefthook = callPackage ../applications/version-management/lefthook { }; 2533 2535 ··· 9881 9883 9882 9884 kdiff3 = libsForQt5.callPackage ../tools/text/kdiff3 { }; 9883 9885 9884 - kube-router = callPackage ../applications/networking/cluster/kube-router { }; 9886 + kube-router = callPackage ../applications/networking/cluster/kube-router { 9887 + buildGoModule = buildGo120Module; 9888 + }; 9885 9889 9886 9890 kubepug = callPackage ../development/tools/kubepug { }; 9887 9891 ··· 11569 11573 11570 11574 onlykey = callPackage ../tools/security/onlykey { node_webkit = nwjs; }; 11571 11575 11572 - ooniprobe-cli = callPackage ../tools/networking/ooniprobe-cli { }; 11576 + ooniprobe-cli = callPackage ../tools/networking/ooniprobe-cli { 11577 + buildGoModule = buildGo120Module; 11578 + }; 11573 11579 11574 11580 openapi-generator-cli = callPackage ../tools/networking/openapi-generator-cli { jre = pkgs.jre_headless; }; 11575 11581 openapi-generator-cli-unstable = callPackage ../tools/networking/openapi-generator-cli/unstable.nix { jre = pkgs.jre_headless; }; ··· 15262 15268 15263 15269 zip = callPackage ../tools/archivers/zip { }; 15264 15270 15265 - zincsearch = callPackage ../servers/search/zincsearch { }; 15271 + zincsearch = callPackage ../servers/search/zincsearch { 15272 + buildGoModule = buildGo120Module; 15273 + }; 15266 15274 15267 15275 zkfuse = callPackage ../tools/filesystems/zkfuse { }; 15268 15276 ··· 26289 26297 clamsmtp = callPackage ../servers/mail/clamsmtp { }; 26290 26298 26291 26299 clickhouse = callPackage ../servers/clickhouse { 26292 - llvmPackages = llvmPackages_15; 26300 + llvmPackages = llvmPackages_16; 26293 26301 }; 26294 26302 26295 26303 clickhouse-cli = with python3Packages; toPythonApplication clickhouse-cli; ··· 28404 28412 28405 28413 goconst = callPackage ../development/tools/goconst { }; 28406 28414 28407 - goconvey = callPackage ../development/tools/goconvey { }; 28415 + goconvey = callPackage ../development/tools/goconvey { 28416 + buildGoModule = buildGo120Module; 28417 + }; 28408 28418 28409 28419 go-callvis = callPackage ../development/tools/go-callvis { }; 28410 28420 ··· 28462 28472 28463 28473 go-mod-graph-chart = callPackage ../development/tools/go-mod-graph-chart { }; 28464 28474 28465 - gomacro = callPackage ../development/tools/gomacro { }; 28475 + gomacro = callPackage ../development/tools/gomacro { 28476 + buildGoModule = buildGo120Module; 28477 + }; 28466 28478 28467 28479 gomodifytags = callPackage ../development/tools/gomodifytags { }; 28468 28480 ··· 30494 30506 30495 30507 audacity = callPackage ../applications/audio/audacity { 30496 30508 inherit (darwin.apple_sdk.frameworks) AppKit CoreAudioKit; 30509 + wxGTK32 = wxGTK32.overrideAttrs { 30510 + patches = [ 30511 + (fetchpatch { # required to run audacity 3.3.3 on wxGTK 3.2.4, see PR #266945 30512 + url = "https://github.com/wxWidgets/wxWidgets/commit/425d9455e8307c1267a79d47d77e3dafeb4d86de.patch"; 30513 + excludes = [ "docs/changes.txt" ]; 30514 + revert = true; 30515 + hash = "sha256-6LOYLDLtVCHxNdHAWv3zhlCsljIpi//RJb9XVLGD5hM="; 30516 + }) 30517 + ]; 30518 + }; 30497 30519 }; 30498 30520 30499 30521 audio-recorder = callPackage ../applications/audio/audio-recorder { }; ··· 30992 31014 30993 31015 cordless = callPackage ../applications/networking/instant-messengers/cordless { }; 30994 31016 30995 - cosmic-applets = callPackage ../applications/window-managers/cosmic/applets { }; 30996 - 30997 31017 cosmic-settings = callPackage ../applications/window-managers/cosmic/settings { }; 30998 31018 30999 31019 cosmic-edit = callPackage ../applications/editors/cosmic-edit { }; ··· 31432 31452 31433 31453 gigalixir = callPackage ../tools/misc/gigalixir { }; 31434 31454 31435 - go-libp2p-daemon = callPackage ../servers/go-libp2p-daemon { }; 31455 + go-libp2p-daemon = callPackage ../servers/go-libp2p-daemon { 31456 + buildGoModule = buildGo120Module; 31457 + }; 31436 31458 31437 31459 go-motion = callPackage ../development/tools/go-motion { }; 31438 31460 ··· 33582 33604 33583 33605 markscribe = callPackage ../tools/text/markscribe { }; 33584 33606 33585 - magnetico = callPackage ../applications/networking/p2p/magnetico { }; 33607 + magnetico = callPackage ../applications/networking/p2p/magnetico { 33608 + buildGoModule = buildGo120Module; 33609 + }; 33586 33610 33587 33611 mastodon-bot = nodePackages.mastodon-bot; 33588 33612 ··· 35776 35800 35777 35801 texture-synthesis = callPackage ../tools/graphics/texture-synthesis { }; 35778 35802 35803 + texturepacker = qt6.callPackage ../applications/graphics/texturepacker { }; 35804 + 35779 35805 tty-solitaire = callPackage ../applications/misc/tty-solitaire { }; 35780 35806 35781 35807 termtosvg = callPackage ../tools/misc/termtosvg { }; ··· 37068 37094 37069 37095 dcrctl = callPackage ../applications/blockchains/dcrctl { }; 37070 37096 dcrd = callPackage ../applications/blockchains/dcrd { }; 37071 - dcrwallet = callPackage ../applications/blockchains/dcrwallet { }; 37097 + dcrwallet = callPackage ../applications/blockchains/dcrwallet { 37098 + buildGoModule = buildGo120Module; 37099 + }; 37072 37100 37073 37101 dogecoin = libsForQt5.callPackage ../applications/blockchains/dogecoin { 37074 37102 withGui = true; ··· 37408 37436 rbdoom-3-bfg = callPackage ../games/doom-ports/rbdoom-3-bfg { }; 37409 37437 37410 37438 slade = callPackage ../games/doom-ports/slade { 37411 - wxGTK = wxGTK32.override { 37439 + wxGTK = (wxGTK32.overrideAttrs { 37440 + patches = [ 37441 + (fetchpatch { # required to run slade 3.2.4 on wxGTK 3.2.4, see PR #266945 37442 + url = "https://github.com/wxWidgets/wxWidgets/commit/425d9455e8307c1267a79d47d77e3dafeb4d86de.patch"; 37443 + excludes = [ "docs/changes.txt" ]; 37444 + revert = true; 37445 + hash = "sha256-6LOYLDLtVCHxNdHAWv3zhlCsljIpi//RJb9XVLGD5hM="; 37446 + }) 37447 + ]; 37448 + }).override { 37412 37449 withWebKit = true; 37413 37450 }; 37414 37451 }; 37415 37452 37416 37453 sladeUnstable = callPackage ../games/doom-ports/slade/git.nix { 37417 - wxGTK = wxGTK32.override { 37454 + wxGTK = (wxGTK32.overrideAttrs { 37455 + patches = [ 37456 + (fetchpatch { # required to run sladeUnstable unstable-2023-09-30 on wxGTK 3.2.4, see PR #266945 37457 + url = "https://github.com/wxWidgets/wxWidgets/commit/425d9455e8307c1267a79d47d77e3dafeb4d86de.patch"; 37458 + excludes = [ "docs/changes.txt" ]; 37459 + revert = true; 37460 + hash = "sha256-6LOYLDLtVCHxNdHAWv3zhlCsljIpi//RJb9XVLGD5hM="; 37461 + }) 37462 + ]; 37463 + }).override { 37418 37464 withWebKit = true; 37419 37465 }; 37420 37466 };