diff --git a/nixos/doc/manual/release-notes/rl-2305.section.md b/nixos/doc/manual/release-notes/rl-2305.section.md index 8458d1246add..d5f449afd8e8 100644 --- a/nixos/doc/manual/release-notes/rl-2305.section.md +++ b/nixos/doc/manual/release-notes/rl-2305.section.md @@ -181,6 +181,8 @@ In addition to numerous new and upgraded packages, this release has the followin - The option `i18n.inputMethod.fcitx5.enableRimeData` has been removed. Default RIME data is now included in `fcitx5-rime` by default, and can be customized using `fcitx5-rime.override { rimeDataPkgs = [ pkgs.rime-data, package2, ... ]; }` +- The udev hwdb.bin file is now built with systemd-hwdb rather than the [deprecated "udevadm hwdb"](https://github.com/systemd/systemd/pull/25714). This may impact mappings where the same key is defined in multiple matching entries. The updated behavior will select the latest definition in case of conflict. In general, this should be a positive change, as the hwdb source files are designed with this ordering in mind. As an example, the mapping of the HP Dev One keyboard scan code for "mute mic" is corrected by this update. This change may impact users who have worked-around previously incorrect mappings. + - Kime has been updated from 2.5.6 to 3.0.2 and the `i18n.inputMethod.kime.config` option has been removed. Users should use `daemonModules`, `iconColor`, and `extraConfig` options under `i18n.inputMethod.kime` instead. - `tut` has been updated from 1.0.34 to 2.0.0, and now uses the TOML format for the configuration file instead of INI. Additional information can be found [here](https://github.com/RasmusLindroth/tut/releases/tag/2.0.0). diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index d933199cf60b..61d9e263bb81 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -444,6 +444,7 @@ ./services/desktops/pipewire/wireplumber.nix ./services/desktops/profile-sync-daemon.nix ./services/desktops/system-config-printer.nix + ./services/desktops/system76-scheduler.nix ./services/desktops/telepathy.nix ./services/desktops/tumbler.nix ./services/desktops/zeitgeist.nix diff --git a/nixos/modules/services/desktops/system76-scheduler.nix b/nixos/modules/services/desktops/system76-scheduler.nix new file mode 100644 index 000000000000..93bd503eae50 --- /dev/null +++ b/nixos/modules/services/desktops/system76-scheduler.nix @@ -0,0 +1,296 @@ +{ config, lib, pkgs, ... }: + +let + cfg = config.services.system76-scheduler; + + inherit (builtins) concatStringsSep map toString attrNames; + inherit (lib) boolToString types mkOption literalExpression mdDoc optional mkIf mkMerge; + inherit (types) nullOr listOf bool int ints float str enum; + + withDefaults = optionSpecs: defaults: + lib.genAttrs (attrNames optionSpecs) (name: + mkOption (optionSpecs.${name} // { + default = optionSpecs.${name}.default or defaults.${name} or null; + })); + + latencyProfile = withDefaults { + latency = { + type = int; + description = mdDoc "`sched_latency_ns`."; + }; + nr-latency = { + type = int; + description = mdDoc "`sched_nr_latency`."; + }; + wakeup-granularity = { + type = float; + description = mdDoc "`sched_wakeup_granularity_ns`."; + }; + bandwidth-size = { + type = int; + description = mdDoc "`sched_cfs_bandwidth_slice_us`."; + }; + preempt = { + type = enum [ "none" "voluntary" "full" ]; + description = mdDoc "Preemption mode."; + }; + }; + schedulerProfile = withDefaults { + nice = { + type = nullOr (ints.between (-20) 19); + description = mdDoc "Niceness."; + }; + class = { + type = nullOr (enum [ "idle" "batch" "other" "rr" "fifo" ]); + example = literalExpression "\"batch\""; + description = mdDoc "CPU scheduler class."; + }; + prio = { + type = nullOr (ints.between 1 99); + example = literalExpression "49"; + description = mdDoc "CPU scheduler priority."; + }; + ioClass = { + type = nullOr (enum [ "idle" "best-effort" "realtime" ]); + example = literalExpression "\"best-effort\""; + description = mdDoc "IO scheduler class."; + }; + ioPrio = { + type = nullOr (ints.between 0 7); + example = literalExpression "4"; + description = mdDoc "IO scheduler priority."; + }; + matchers = { + type = nullOr (listOf str); + default = []; + example = literalExpression '' + [ + "include cgroup=\"/user.slice/*.service\" parent=\"systemd\"" + "emacs" + ] + ''; + description = mdDoc "Process matchers."; + }; + }; + + cfsProfileToString = name: let + p = cfg.settings.cfsProfiles.${name}; + in + "${name} latency=${toString p.latency} nr-latency=${toString p.nr-latency} wakeup-granularity=${toString p.wakeup-granularity} bandwidth-size=${toString p.bandwidth-size} preempt=\"${p.preempt}\""; + + prioToString = class: prio: if prio == null then "\"${class}\"" else "(${class})${toString prio}"; + + schedulerProfileToString = name: a: indent: + concatStringsSep " " + (["${indent}${name}"] + ++ (optional (a.nice != null) "nice=${toString a.nice}") + ++ (optional (a.class != null) "sched=${prioToString a.class a.prio}") + ++ (optional (a.ioClass != null) "io=${prioToString a.ioClass a.ioPrio}") + ++ (optional ((builtins.length a.matchers) != 0) ("{\n${concatStringsSep "\n" (map (m: " ${indent}${m}") a.matchers)}\n${indent}}"))); + +in { + options = { + services.system76-scheduler = { + enable = lib.mkEnableOption (lib.mdDoc "system76-scheduler"); + + package = mkOption { + type = types.package; + default = config.boot.kernelPackages.system76-scheduler; + defaultText = literalExpression "config.boot.kernelPackages.system76-scheduler"; + description = mdDoc "Which System76-Scheduler package to use."; + }; + + useStockConfig = mkOption { + type = bool; + default = true; + description = mdDoc '' + Use the (reasonable and featureful) stock configuration. + + When this option is `true`, `services.system76-scheduler.settings` + are ignored. + ''; + }; + + settings = { + cfsProfiles = { + enable = mkOption { + type = bool; + default = true; + description = mdDoc "Tweak CFS latency parameters when going on/off battery"; + }; + + default = latencyProfile { + latency = 6; + nr-latency = 8; + wakeup-granularity = 1.0; + bandwidth-size = 5; + preempt = "voluntary"; + }; + responsive = latencyProfile { + latency = 4; + nr-latency = 10; + wakeup-granularity = 0.5; + bandwidth-size = 3; + preempt = "full"; + }; + }; + + processScheduler = { + enable = mkOption { + type = bool; + default = true; + description = mdDoc "Tweak scheduling of individual processes in real time."; + }; + + useExecsnoop = mkOption { + type = bool; + default = true; + description = mdDoc "Use execsnoop (otherwise poll the precess list periodically)."; + }; + + refreshInterval = mkOption { + type = int; + default = 60; + description = mdDoc "Process list poll interval, in seconds"; + }; + + foregroundBoost = { + enable = mkOption { + type = bool; + default = true; + description = mdDoc '' + Boost foreground process priorities. + + (And de-boost background ones). Note that this option needs cooperation + from the desktop environment to work. On Gnome the client side is + implemented by the "System76 Scheduler" shell extension. + ''; + }; + foreground = schedulerProfile { + nice = 0; + ioClass = "best-effort"; + ioPrio = 0; + }; + background = schedulerProfile { + nice = 6; + ioClass = "idle"; + }; + }; + + pipewireBoost = { + enable = mkOption { + type = bool; + default = true; + description = mdDoc "Boost Pipewire client priorities."; + }; + profile = schedulerProfile { + nice = -6; + ioClass = "best-effort"; + ioPrio = 0; + }; + }; + }; + }; + + assignments = mkOption { + type = types.attrsOf (types.submodule { + options = schedulerProfile { }; + }); + default = {}; + example = literalExpression '' + { + nix-builds = { + nice = 15; + class = "batch"; + ioClass = "idle"; + matchers = [ + "nix-daemon" + ]; + }; + } + ''; + description = mdDoc "Process profile assignments."; + }; + + exceptions = mkOption { + type = types.listOf str; + default = []; + example = literalExpression '' + [ + "include descends=\"schedtool\"" + "schedtool" + ] + ''; + description = mdDoc "Processes that are left alone."; + }; + }; + }; + + config = { + environment.systemPackages = [ cfg.package ]; + services.dbus.packages = [ cfg.package ]; + + systemd.services.system76-scheduler = { + description = "Manage process priorities and CFS scheduler latencies for improved responsiveness on the desktop"; + wantedBy = [ "multi-user.target" ]; + path = [ + # execsnoop needs those to extract kernel headers: + pkgs.kmod + pkgs.gnutar + pkgs.xz + ]; + serviceConfig = { + Type = "dbus"; + BusName= "com.system76.Scheduler"; + ExecStart = "${cfg.package}/bin/system76-scheduler daemon"; + ExecReload = "${cfg.package}/bin/system76-scheduler daemon reload"; + }; + }; + + environment.etc = mkMerge [ + (mkIf cfg.useStockConfig { + # No custom settings: just use stock configuration with a fix for Pipewire + "system76-scheduler/config.kdl".source = "${cfg.package}/data/config.kdl"; + "system76-scheduler/process-scheduler/00-dist.kdl".source = "${cfg.package}/data/pop_os.kdl"; + "system76-scheduler/process-scheduler/01-fix-pipewire-paths.kdl".source = ../../../../pkgs/os-specific/linux/system76-scheduler/01-fix-pipewire-paths.kdl; + }) + + (let + settings = cfg.settings; + cfsp = settings.cfsProfiles; + ps = settings.processScheduler; + in mkIf (!cfg.useStockConfig) { + "system76-scheduler/config.kdl".text = '' + version "2.0" + autogroup-enabled false + cfs-profiles enable=${boolToString cfsp.enable} { + ${cfsProfileToString "default"} + ${cfsProfileToString "responsive"} + } + process-scheduler enable=${boolToString ps.enable} { + execsnoop ${boolToString ps.useExecsnoop} + refresh-rate ${toString ps.refreshInterval} + assignments { + ${if ps.foregroundBoost.enable then (schedulerProfileToString "foreground" ps.foregroundBoost.foreground " ") else ""} + ${if ps.foregroundBoost.enable then (schedulerProfileToString "background" ps.foregroundBoost.background " ") else ""} + ${if ps.pipewireBoost.enable then (schedulerProfileToString "pipewire" ps.pipewireBoost.profile " ") else ""} + } + } + ''; + }) + + { + "system76-scheduler/process-scheduler/02-config.kdl".text = + "exceptions {\n${concatStringsSep "\n" (map (e: " ${e}") cfg.exceptions)}\n}\n" + + "assignments {\n" + + (concatStringsSep "\n" (map (name: schedulerProfileToString name cfg.assignments.${name} " ") + (attrNames cfg.assignments))) + + "\n}\n"; + } + ]; + }; + + meta = { + maintainers = [ lib.maintainers.cmm ]; + }; +} diff --git a/nixos/modules/services/hardware/udev.nix b/nixos/modules/services/hardware/udev.nix index 95c2a4fc5c3e..94406b60b29c 100644 --- a/nixos/modules/services/hardware/udev.nix +++ b/nixos/modules/services/hardware/udev.nix @@ -160,7 +160,7 @@ let echo "Generating hwdb database..." # hwdb --update doesn't return error code even on errors! - res="$(${pkgs.buildPackages.udev}/bin/udevadm hwdb --update --root=$(pwd) 2>&1)" + res="$(${pkgs.buildPackages.systemd}/bin/systemd-hwdb --root=$(pwd) update 2>&1)" echo "$res" [ -z "$(echo "$res" | egrep '^Error')" ] mv etc/udev/hwdb.bin $out diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index e74c97d1c5f0..3643ab1d90b7 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -29,12 +29,12 @@ final: prev: ChatGPT-nvim = buildVimPluginFrom2Nix { pname = "ChatGPT.nvim"; - version = "2023-04-21"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "jackMort"; repo = "ChatGPT.nvim"; - rev = "5a0fdf6c408a53924081aff0b7379e765c7edc1b"; - sha256 = "06pjcsbg4kmxily4ggnc7sx06kas0v5vqch2jzkazds2icbnpnk3"; + rev = "cd060d2dd9abb72e24d7921cdbcf3f57cc720105"; + sha256 = "1cafzv4rl9njbjdjkza41p9x70rqjkl4by16r2xj66hfsyalnsfb"; }; meta.homepage = "https://github.com/jackMort/ChatGPT.nvim/"; }; @@ -65,12 +65,12 @@ final: prev: Coqtail = buildVimPluginFrom2Nix { pname = "Coqtail"; - version = "2023-02-12"; + version = "2023-04-23"; src = fetchFromGitHub { owner = "whonore"; repo = "Coqtail"; - rev = "9aefe2af9230e8e5aa43ed1faade069da0721b66"; - sha256 = "0pl7qnzxxnzlyzvjwa0p828wx1m69b3qmixdzl18ix4c3g1wakf4"; + rev = "916bd5c97242d806ed8a05f1691e27042fd189fb"; + sha256 = "13xi801cjrar813ad0bm9s6h482zs0gjs0j8202p2mz82g6saif9"; }; meta.homepage = "https://github.com/whonore/Coqtail/"; }; @@ -173,12 +173,12 @@ final: prev: LazyVim = buildVimPluginFrom2Nix { pname = "LazyVim"; - version = "2023-04-21"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "LazyVim"; repo = "LazyVim"; - rev = "2f93f69171e6203d79b2aaf1798be71ae1137bda"; - sha256 = "0qmwixccxjcfi3d6mk1h488y0nkv3d7csspn9m5mnp8qw1m617di"; + rev = "c42ebc216a380b4ed17be313f1b5245797b7531c"; + sha256 = "0pm09qq7gpjsrij0xj2rkz6pirsdkpz2xq9gr6f1kdmvvzgi0cxq"; }; meta.homepage = "https://github.com/LazyVim/LazyVim/"; }; @@ -305,12 +305,12 @@ final: prev: SchemaStore-nvim = buildVimPluginFrom2Nix { pname = "SchemaStore.nvim"; - version = "2023-04-20"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "b0o"; repo = "SchemaStore.nvim"; - rev = "bff3297b0c1dba18907c9e5a8eb433e8b2add045"; - sha256 = "05vzrmylh84wz4248kwn0nfp0q1sw6k69lkx3ssr7w4yxpf92986"; + rev = "aac9313a2c78b602f23fa59fc799768b35926e8a"; + sha256 = "02jdl4q3811y044nij8vkkb6fa7kgsi22jvs1fqj38zjqvqbmzhv"; }; meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; }; @@ -365,24 +365,24 @@ final: prev: SpaceVim = buildVimPluginFrom2Nix { pname = "SpaceVim"; - version = "2023-04-18"; + version = "2023-04-29"; src = fetchFromGitHub { owner = "SpaceVim"; repo = "SpaceVim"; - rev = "07ef56b433dabe259687cb2a2d603aaab82753ed"; - sha256 = "1n7ycr5wj3ad8i79z4g5l8b5d6qiz5crzvpimj9nzlmi0r2az7yr"; + rev = "763045513d6227a59bdb2a3a772740c3be97ac01"; + sha256 = "1nsxjlsf8fj8z5c26ch7zjfgvawn60czzvhy1zfwp22ylnyipmz7"; }; meta.homepage = "https://github.com/SpaceVim/SpaceVim/"; }; SudoEdit-vim = buildVimPluginFrom2Nix { pname = "SudoEdit.vim"; - version = "2022-11-03"; + version = "2023-04-25"; src = fetchFromGitHub { owner = "chrisbra"; repo = "SudoEdit.vim"; - rev = "e0ffcda0c2f98bec80cb52d1af5f3af26bd38821"; - sha256 = "125npjj74zn6ldh0656m5f7bc5035wdh7v3bwhh70jkbw36c3vvm"; + rev = "1fb3238d376a0a90bb699ac105798e61124c980f"; + sha256 = "16xd71k4x55mh10r58s995mdrc9n9kv8mddmlaif8zv3lw4ca949"; }; meta.homepage = "https://github.com/chrisbra/SudoEdit.vim/"; }; @@ -486,12 +486,12 @@ final: prev: aerial-nvim = buildVimPluginFrom2Nix { pname = "aerial.nvim"; - version = "2023-04-21"; + version = "2023-04-27"; src = fetchFromGitHub { owner = "stevearc"; repo = "aerial.nvim"; - rev = "00cac8e96f932dca8f559849cbea3f0812621d0d"; - sha256 = "1i57k301va0c1kgxblz4cyq6s38g6z54xzklddyhrvvq4pvn31mi"; + rev = "07039ea63b562caf9017a223d14eebfa1fc085c1"; + sha256 = "0bl6d9g96lfayzn7rv334b5xq54zcai7zbxjwjjlvd60wygxn34l"; fetchSubmodules = true; }; meta.homepage = "https://github.com/stevearc/aerial.nvim/"; @@ -547,12 +547,12 @@ final: prev: ale = buildVimPluginFrom2Nix { pname = "ale"; - version = "2023-04-12"; + version = "2023-04-22"; src = fetchFromGitHub { owner = "dense-analysis"; repo = "ale"; - rev = "fdadaed2ba93432add241bb25f9935dc2ebb4152"; - sha256 = "08i1fs55b3wqbvn3259c7zwnr45iv0lcyqri7ig7xgppi13hm2x8"; + rev = "61248e1453dc6373160154e1f6855ffc510a7dfc"; + sha256 = "0p5kvvajwihjnvqqqc7nq8gz2rzzqlcsry0iv902h2i18dw4sgdf"; }; meta.homepage = "https://github.com/dense-analysis/ale/"; }; @@ -571,12 +571,12 @@ final: prev: alpha-nvim = buildVimPluginFrom2Nix { pname = "alpha-nvim"; - version = "2023-04-17"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "goolord"; repo = "alpha-nvim"; - rev = "87c204040e3f5d4c1c95067b35905d8f8a2f2545"; - sha256 = "0g4p18852vl6j9yb1cgqbcmkil90sf30wss85xcfa2zviid0ab6a"; + rev = "447b821d22b0c1e80494638f84cb00ff696f4ef6"; + sha256 = "0rrg4xz4bdlm9rq4jyg5gnfdng4fmk2kq7w4xihpgf71q3zqkzlp"; }; meta.homepage = "https://github.com/goolord/alpha-nvim/"; }; @@ -775,12 +775,12 @@ final: prev: auto-session = buildVimPluginFrom2Nix { pname = "auto-session"; - version = "2023-04-09"; + version = "2023-04-29"; src = fetchFromGitHub { owner = "rmagatti"; repo = "auto-session"; - rev = "f391aba10ee61927a1cceb9ea3a9dde501e87e9e"; - sha256 = "00bhp8bnlml5qm4yk49155l70lw7wlyy3ljnwqgrqxs1a40i04gy"; + rev = "9752e6b11327329ed3ba5ec2bec36abe4535a8e0"; + sha256 = "0hqh8mzs9vxfasxb1sr4vx2igcjl9f9vmf5spd7vriaxi331sf1p"; }; meta.homepage = "https://github.com/rmagatti/auto-session/"; }; @@ -859,24 +859,24 @@ final: prev: barbar-nvim = buildVimPluginFrom2Nix { pname = "barbar.nvim"; - version = "2023-04-13"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "romgrk"; repo = "barbar.nvim"; - rev = "8edf23fe94a2486a8bc74cb64efb9211810f7e83"; - sha256 = "1ja724qvy2g1irgpkm1yihmbzcyzmmkdwlfa5pbbkla1n9wppks4"; + rev = "3921d775d5db0c9bd42fe4026f68f762e2480475"; + sha256 = "083yhwfj2cci3wazda5qn69m4sbm41p7p6xq0xaq84c5m6v17lmb"; }; meta.homepage = "https://github.com/romgrk/barbar.nvim/"; }; barbecue-nvim = buildVimPluginFrom2Nix { pname = "barbecue.nvim"; - version = "2023-04-15"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "utilyre"; repo = "barbecue.nvim"; - rev = "ac2272e72e4d1960d9cab62f9914e264ba1e6082"; - sha256 = "1lgnibhqrwl956v3h6rbxljqx87ps582isiwhf98afh541wsk18a"; + rev = "cd7e7da622d68136e13721865b4d919efd6325ed"; + sha256 = "0splz9dnzl3cy2klgjw9miv9q87dk56zw3m9y934q0sagl1hv3ll"; }; meta.homepage = "https://github.com/utilyre/barbecue.nvim/"; }; @@ -1063,12 +1063,12 @@ final: prev: bufferline-nvim = buildVimPluginFrom2Nix { pname = "bufferline.nvim"; - version = "2023-04-21"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "akinsho"; repo = "bufferline.nvim"; - rev = "8b32447f1ba00f71ec2ebb413249d1d84228d9fb"; - sha256 = "1i46lgd2w1zwi08zkfs4xfq2gzz7s58hw1mm6s76avbp4fqjrr7q"; + rev = "9f55bff3561e4c0ac5168487c64cb30d0ab75408"; + sha256 = "03lvk0l5402zfxqviipma9s8f8hrzg0pdkcrc3lc5q6iklk20hmf"; }; meta.homepage = "https://github.com/akinsho/bufferline.nvim/"; }; @@ -1123,12 +1123,12 @@ final: prev: ccc-nvim = buildVimPluginFrom2Nix { pname = "ccc.nvim"; - version = "2023-04-21"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "uga-rosa"; repo = "ccc.nvim"; - rev = "985c4a25ad610c6dc3294f1f8d52384440e2b600"; - sha256 = "0akwmz8vfa5wy6wdvammq1hrmkxb07d7i9kn3hvhikzld2s82kgy"; + rev = "0b98a08235e898f1a6e29093ac35478281a5078a"; + sha256 = "1vki7j1nk79hzx5clfqd5rvmrccq6dcjii5238nakmglwrvsmq86"; }; meta.homepage = "https://github.com/uga-rosa/ccc.nvim/"; }; @@ -1291,12 +1291,12 @@ final: prev: cmp-cmdline = buildVimPluginFrom2Nix { pname = "cmp-cmdline"; - version = "2023-04-14"; + version = "2023-04-24"; src = fetchFromGitHub { owner = "hrsh7th"; repo = "cmp-cmdline"; - rev = "af88e700417c6449719fc77f6f3745f88e42d5da"; - sha256 = "07wkbyzia7b7m99dd96km3qhdl8ndibjnsjix5skzqsvxjv24jib"; + rev = "5af1bb7d722ef8a96658f01d6eb219c4cf746b32"; + sha256 = "02xpxdbjvic4l2s4fmhiy38igvvg0mdpi6hr49kvnibx1dyzhx5k"; }; meta.homepage = "https://github.com/hrsh7th/cmp-cmdline/"; }; @@ -1363,12 +1363,12 @@ final: prev: cmp-dictionary = buildVimPluginFrom2Nix { pname = "cmp-dictionary"; - version = "2023-04-02"; + version = "2023-04-25"; src = fetchFromGitHub { owner = "uga-rosa"; repo = "cmp-dictionary"; - rev = "f479a71c6bb164217ceca2ddec26f852abba9ddd"; - sha256 = "1my1v4h5ml8yxvghlx3kzs5qfdbgkmrrpmy8llzbsvvx6i185nqk"; + rev = "3c060f4eb4c5a096e71d82b59e37d13c5df1faba"; + sha256 = "0kirmzawf0772yv7f9yfjznj0ajg5zz4mjnrpzw0y3cfy1mip1rm"; }; meta.homepage = "https://github.com/uga-rosa/cmp-dictionary/"; }; @@ -1555,12 +1555,12 @@ final: prev: cmp-nvim-tags = buildVimPluginFrom2Nix { pname = "cmp-nvim-tags"; - version = "2023-04-18"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "quangnguyen30192"; repo = "cmp-nvim-tags"; - rev = "28542c9adb9fed45a895b7091591f03c80e4c40a"; - sha256 = "16fgf2s6r56byfr00ypwyg80pvpmv4n7dzdpysvjp6sf5v6q4d14"; + rev = "353769051d54fbe97e7d7fc6f7b8ff43d5504635"; + sha256 = "0rbfg1q7lmk40q463q0phi16czvhd8szgbb7awqs3ysms4a9bijm"; }; meta.homepage = "https://github.com/quangnguyen30192/cmp-nvim-tags/"; }; @@ -1663,12 +1663,12 @@ final: prev: cmp-tabnine = buildVimPluginFrom2Nix { pname = "cmp-tabnine"; - version = "2023-04-13"; + version = "2023-04-29"; src = fetchFromGitHub { owner = "tzachar"; repo = "cmp-tabnine"; - rev = "380a11420752ac1c2d8fbb344454ff7f955b912c"; - sha256 = "0dn7cm1zxincy2m83irlc979ci9wlgvic66j1mqps2a2g0aan1zj"; + rev = "7fa0459b0cc0498375c5a1e14fb8d21d130bb198"; + sha256 = "0xgc1vzr0hhbab6b5rhgrv3c656x1yi86cmz008jij144w6awcgf"; }; meta.homepage = "https://github.com/tzachar/cmp-tabnine/"; }; @@ -1939,12 +1939,12 @@ final: prev: comment-nvim = buildVimPluginFrom2Nix { pname = "comment.nvim"; - version = "2023-04-12"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "numtostr"; repo = "comment.nvim"; - rev = "a89339ffbee677ab0521a483b6dac7e2e67c907e"; - sha256 = "0q2882md4c42v255y7pfhqiv1vvi0h76wh4i8n2a00958vkmzg36"; + rev = "38d3b7eb553872d8866f14a0dd4fe84126068fce"; + sha256 = "1d1a2c864y24lnr8h1xsg9krrk9604vy5mawjccn2fzq9g5vg6z5"; }; meta.homepage = "https://github.com/numtostr/comment.nvim/"; }; @@ -2095,12 +2095,12 @@ final: prev: conjure = buildVimPluginFrom2Nix { pname = "conjure"; - version = "2023-04-10"; + version = "2023-04-17"; src = fetchFromGitHub { owner = "Olical"; repo = "conjure"; - rev = "7625ed9afc689888a743492547b0f1ebbe367faf"; - sha256 = "1d1cihbyaq00fvnia394xlw2g1byv5iwc2az1kmanc51kzwmcg52"; + rev = "e0be54273a48b2bca0f3dac09a21ecf80fffda71"; + sha256 = "1lwix51r8155q7q2qh1w942dqbhlhyzrbqqj8nvsgdyw3qrsz6l5"; }; meta.homepage = "https://github.com/Olical/conjure/"; }; @@ -2131,60 +2131,60 @@ final: prev: copilot-cmp = buildVimPluginFrom2Nix { pname = "copilot-cmp"; - version = "2023-04-06"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "zbirenbaum"; repo = "copilot-cmp"; - rev = "99467081478aabe4f1183a19a8ba585e511adc20"; - sha256 = "0qz25r7c53wppfbhrv5qhpfg0jxlqp8c1ixyc8ggkvw4bzc97lp6"; + rev = "ad4c097bf76c544fce95a2cb6b02f245cb18a6bb"; + sha256 = "1i485pijc2083z8ggbzhg7x8y86b4aqqvvqnlxjcy8clbrv1skx6"; }; meta.homepage = "https://github.com/zbirenbaum/copilot-cmp/"; }; copilot-lua = buildVimPluginFrom2Nix { pname = "copilot.lua"; - version = "2023-04-19"; + version = "2023-04-29"; src = fetchFromGitHub { owner = "zbirenbaum"; repo = "copilot.lua"; - rev = "decc8d43bcd73a288fa689690c20faf0485da217"; - sha256 = "18wsjan43mj8iwm2g5l3bkzcrwxcsinpwlwvbsylsfj5yxqjmvyy"; + rev = "19c1c945553918d683a001e697faad933c41bb5d"; + sha256 = "040885dckmrdi3ym2dz255cisvgka0ykglql54sc17lrfihmiiq9"; }; meta.homepage = "https://github.com/zbirenbaum/copilot.lua/"; }; copilot-vim = buildVimPluginFrom2Nix { pname = "copilot.vim"; - version = "2023-03-27"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "github"; repo = "copilot.vim"; - rev = "b6e5624351ba735e25eb8864d7d22819aad00606"; - sha256 = "1dymnx2jraybrqi2yqa9ycbirw77gvcgfxl5gayi2828yhs543qh"; + rev = "1358e8e45ecedc53daf971924a0541ddf6224faf"; + sha256 = "171ypwb85ya8n63zykdnb8d4ni2jbn728x7r6ph1m67k06g0w4pb"; }; meta.homepage = "https://github.com/github/copilot.vim/"; }; coq-artifacts = buildVimPluginFrom2Nix { pname = "coq.artifacts"; - version = "2023-04-16"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "ms-jpq"; repo = "coq.artifacts"; - rev = "551ee8e34fe4d24252ee0c20f51357b78a52d3c7"; - sha256 = "13c8m6y9329k61flkam9vd85dwaw7641h1hlaa2d9jvq06f19fgi"; + rev = "5d99337486305309d4eb5d60c746581d9545420a"; + sha256 = "0bwik3qmpvxpwk47z5fr7kxwppi06nkl1z5rd5dr7jq0n1j0iyz2"; }; meta.homepage = "https://github.com/ms-jpq/coq.artifacts/"; }; coq-thirdparty = buildVimPluginFrom2Nix { pname = "coq.thirdparty"; - version = "2023-04-16"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "ms-jpq"; repo = "coq.thirdparty"; - rev = "4ff6cd4ca34876e231743db480aef699a3ebea98"; - sha256 = "0mqj667kq4hmicysvmj89w4s18kdsl82ah879njv4jvq7s205vgn"; + rev = "d287c948e5c144ee76a2b7af2fdae7b9b41d005a"; + sha256 = "0i5q0p51hb0gphnpxzjcblzhrfg38p56bvix6lg5fb42ibb9yp0h"; }; meta.homepage = "https://github.com/ms-jpq/coq.thirdparty/"; }; @@ -2203,12 +2203,12 @@ final: prev: coq_nvim = buildVimPluginFrom2Nix { pname = "coq_nvim"; - version = "2023-04-16"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "ms-jpq"; repo = "coq_nvim"; - rev = "d9eaa12329b4f48a5e6c29ed6a0b9217ebf67f23"; - sha256 = "0xrj6qrw0vpiybnqjnhhg60gcihkzgxl80dgfijdx669ivvs72vh"; + rev = "4388e987273611cd9883dc2804eb9bbf9f049b4d"; + sha256 = "0p4ssb249sr15b0myr5kqxx4ib7q41ja8s4dqjfzx42lnjs84307"; }; meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; }; @@ -2239,12 +2239,12 @@ final: prev: crates-nvim = buildVimPluginFrom2Nix { pname = "crates.nvim"; - version = "2023-04-01"; + version = "2023-04-23"; src = fetchFromGitHub { owner = "saecki"; repo = "crates.nvim"; - rev = "1d4bb1e7a0fe8bae3f97061be5fbf6f9081a27e2"; - sha256 = "1cj3xqbjx4az6wxf9l5mycpd5k35kabaidqwkxj5pk2iipsg3pa2"; + rev = "5a529df8fe3504ccf1ca9526e196f48b2f723c72"; + sha256 = "0xffp0igr3rs2czzbkx5nr19wza1kyqsk7xf963baqsw0zj6wh7v"; }; meta.homepage = "https://github.com/saecki/crates.nvim/"; }; @@ -2347,12 +2347,12 @@ final: prev: dashboard-nvim = buildVimPluginFrom2Nix { pname = "dashboard-nvim"; - version = "2023-04-17"; + version = "2023-04-27"; src = fetchFromGitHub { owner = "nvimdev"; repo = "dashboard-nvim"; - rev = "275e7c8579858c3ee06f32c16bdc687153ca7204"; - sha256 = "1wsy39swlpw06lm8gq9vzgqd50dj4indr0b7k4h4d41ggfpn647d"; + rev = "be2420c29fd4b96d095b631c5a9cbd7fd4bd5aa3"; + sha256 = "09afhn9g2x6i1wns4r5czbghav3hl9bxzvaj94a8j9jhvifq2b0v"; }; meta.homepage = "https://github.com/nvimdev/dashboard-nvim/"; }; @@ -2383,12 +2383,12 @@ final: prev: defx-nvim = buildVimPluginFrom2Nix { pname = "defx.nvim"; - version = "2022-07-03"; + version = "2023-04-25"; src = fetchFromGitHub { owner = "Shougo"; repo = "defx.nvim"; - rev = "82ca2c5bdf6dbab6f0f96980b572d44267003841"; - sha256 = "0ascysssz2j31cpjhi9zf1kdnp9q57pjj59hcxh2m9bgylr21yq7"; + rev = "eb66962f7b9f7a4d23a1e0be122b45a88331dffa"; + sha256 = "18v7fxw871sl11fsc6klsj1bxiyg2bjpv03qhc4z9b5hxb54sv3k"; }; meta.homepage = "https://github.com/Shougo/defx.nvim/"; }; @@ -2431,24 +2431,24 @@ final: prev: denite-nvim = buildVimPluginFrom2Nix { pname = "denite.nvim"; - version = "2022-07-06"; + version = "2023-04-22"; src = fetchFromGitHub { owner = "Shougo"; repo = "denite.nvim"; - rev = "661d68bce6c9cd7598fcc343919447749582ea05"; - sha256 = "1gkzkymjj6ybm62fy9cn0xj2vvigpamj4z7186xx2iriq7n8g06z"; + rev = "94e3a79b1b97dc335785e0c2d5d7fedf0f34ea9d"; + sha256 = "05jqn0x16lzw6fa57gacj3rffw663lgwpk4xpffhayjv9lfl4csq"; }; meta.homepage = "https://github.com/Shougo/denite.nvim/"; }; deol-nvim = buildVimPluginFrom2Nix { pname = "deol.nvim"; - version = "2023-04-11"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "Shougo"; repo = "deol.nvim"; - rev = "1eea36d874485399fe1af9cd9b92f20c85d24a0f"; - sha256 = "0c60yp58adnlz7qk5kzihwvs6lyw3b3kl0p3h88q1zx38pa0zyl7"; + rev = "b23b7c7dc2b38fc2528927adb7bbcb0552ec7c7a"; + sha256 = "1xlsz4g39vs8nmg4asbb9b56n0df0hq2nc2ywsgcqj68slay8lny"; }; meta.homepage = "https://github.com/Shougo/deol.nvim/"; }; @@ -2661,12 +2661,12 @@ final: prev: deoplete-nvim = buildVimPluginFrom2Nix { pname = "deoplete.nvim"; - version = "2022-11-18"; + version = "2023-04-22"; src = fetchFromGitHub { owner = "Shougo"; repo = "deoplete.nvim"; - rev = "4e91c4d3d0aa7630bea7d7b7f5ac259356c1959d"; - sha256 = "161racr3vhnh9j06wkmhmigkjmcw53agflh6znl4gn6sx18s4amc"; + rev = "82db30626e411e99b0274b8d6c99bce561cb0394"; + sha256 = "0ras9hh57al5vap7ksp8rs3ih7fffswv8is39xfkks4jjwg4b1sf"; }; meta.homepage = "https://github.com/Shougo/deoplete.nvim/"; }; @@ -2733,12 +2733,12 @@ final: prev: diffview-nvim = buildVimPluginFrom2Nix { pname = "diffview.nvim"; - version = "2023-04-21"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "sindrets"; repo = "diffview.nvim"; - rev = "f9ddbe798cb92854a383e2377482a49139a52c3d"; - sha256 = "05a0a4521vba35aa9gy1j3r70y3pqy0rirq7cnzmla654n0d7ddl"; + rev = "8c1702470fd5186cb401b21f9bf8bdfad6d5cc87"; + sha256 = "0bbcjiaib328r2yyy72f4nkw2rxhassdb6cbxqn2raf5a98xa479"; }; meta.homepage = "https://github.com/sindrets/diffview.nvim/"; }; @@ -2793,12 +2793,12 @@ final: prev: dressing-nvim = buildVimPluginFrom2Nix { pname = "dressing.nvim"; - version = "2023-04-12"; + version = "2023-04-22"; src = fetchFromGitHub { owner = "stevearc"; repo = "dressing.nvim"; - rev = "0e3e1eba147fee6e638ac1ac28f0495bcde17319"; - sha256 = "0yndy9n5hl1vv53nflixrqng11mpf5qj7afk9x137bpi847b2x7h"; + rev = "f5d7fa1fa5ce6bcebc8f07922f39b1eda4d01e37"; + sha256 = "15n2pzv9iydn36067bc08xqzz7dwnxyrnz25v1afcfg5ph7vl5g0"; }; meta.homepage = "https://github.com/stevearc/dressing.nvim/"; }; @@ -2817,12 +2817,12 @@ final: prev: edge = buildVimPluginFrom2Nix { pname = "edge"; - version = "2023-04-16"; + version = "2023-04-24"; src = fetchFromGitHub { owner = "sainnhe"; repo = "edge"; - rev = "35396c36580e329d5b3717b397431499a661e99b"; - sha256 = "0ph229jg8bc1g7fln2bkbbjyic8kbc634znffwkvicjk7i81yi3z"; + rev = "358cb6688ac577470a4eafcb53bdd63899dfc937"; + sha256 = "1jz3c5z4cdgi5a50c6wlhz23rapfqchm79n9f3mgc9ss1aisqv0y"; }; meta.homepage = "https://github.com/sainnhe/edge/"; }; @@ -2854,12 +2854,12 @@ final: prev: elixir-tools-nvim = buildVimPluginFrom2Nix { pname = "elixir-tools.nvim"; - version = "2023-04-21"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "elixir-tools"; repo = "elixir-tools.nvim"; - rev = "a9bb505891b2d6eda659b33f69f5e65c9849785d"; - sha256 = "0ks90kvssckqpd2aifp5bg6xlvb4jjiy6aq4xwjiriln3npgd477"; + rev = "2890da8be0ab1af2de3ce3b2bdb99e843c5d561c"; + sha256 = "1c69jr2w6cr7sz1964amp9p5ffdgajnv75ymhpqqf5jz3rdyn53n"; }; meta.homepage = "https://github.com/elixir-tools/elixir-tools.nvim/"; }; @@ -2915,12 +2915,12 @@ final: prev: everforest = buildVimPluginFrom2Nix { pname = "everforest"; - version = "2023-04-20"; + version = "2023-04-24"; src = fetchFromGitHub { owner = "sainnhe"; repo = "everforest"; - rev = "61693d7b90056b90e2f482d36301b485f6c815fa"; - sha256 = "0s7m7gipc248dka7a6w6v5zsp8660isajnd844swkhsyfzby4010"; + rev = "e6e3cbdc854dcd75a2f1a9648ab21103acb79c44"; + sha256 = "1hfzbdir1i5dzb5z170762z265df1grj7ynrza7ckv381qvw4riq"; }; meta.homepage = "https://github.com/sainnhe/everforest/"; }; @@ -2975,12 +2975,12 @@ final: prev: feline-nvim = buildVimPluginFrom2Nix { pname = "feline.nvim"; - version = "2023-03-29"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "freddiehaddad"; repo = "feline.nvim"; - rev = "a02bcdde649cdfca0e25d2dd693ba140233b5c3e"; - sha256 = "0s646hd3pbzv5i8vpsk019hwgyqnrd3qhm6lzilqlydrz3yx3b87"; + rev = "7d4aa041cc796a736729d2a29046d26af89943cc"; + sha256 = "15j6xpnbrsab6s4hds23bdfyb76zsss5arr0q129ik58lhd91fmy"; }; meta.homepage = "https://github.com/freddiehaddad/feline.nvim/"; }; @@ -3072,12 +3072,12 @@ final: prev: flatten-nvim = buildVimPluginFrom2Nix { pname = "flatten.nvim"; - version = "2023-04-13"; + version = "2023-04-23"; src = fetchFromGitHub { owner = "willothy"; repo = "flatten.nvim"; - rev = "28db6048a509c9653cb4a4c734e03f412139aa11"; - sha256 = "0fv7ysb6nl12hhbxr1sm8sjrknpfm6n9z8sr576vpq7cd3ldyzd1"; + rev = "d92c93959e9ac52a00002d6fd64c2d2ca5dd7192"; + sha256 = "04p4cfvfb320bgsrhj9507z0s5hx1xi5fd0qs44qxws9aaqvx7c3"; }; meta.homepage = "https://github.com/willothy/flatten.nvim/"; }; @@ -3144,24 +3144,24 @@ final: prev: flutter-tools-nvim = buildVimPluginFrom2Nix { pname = "flutter-tools.nvim"; - version = "2023-04-20"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "akinsho"; repo = "flutter-tools.nvim"; - rev = "bd82eed8ed710e538fb0752c4c8ec36089d5d239"; - sha256 = "087am755knhk8jr5kq9cy4i5i0900kdjj844w347iiv55rsvw7d3"; + rev = "97f9bdea0374c3553a3a11b8e4d2b21f11855463"; + sha256 = "0awkwf82rc755bdv2qpd8sfk6ciwss73q98xirwpzhfdikisdm5n"; }; meta.homepage = "https://github.com/akinsho/flutter-tools.nvim/"; }; formatter-nvim = buildVimPluginFrom2Nix { pname = "formatter.nvim"; - version = "2023-04-13"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "mhartington"; repo = "formatter.nvim"; - rev = "9c44c9d80863aef1cef5b5c354c393ed5d74e634"; - sha256 = "0a2850jvpwqs1irwkgjfgdd4d32g48zdgpsyay00v6kc48v372pj"; + rev = "fa4f2729cc2909db599169f22d8e55632d4c8d59"; + sha256 = "0hv79gdg7cgqr3a8vw1ysc48f6i3b8xabbglxspm5mbpf22c8xbk"; }; meta.homepage = "https://github.com/mhartington/formatter.nvim/"; }; @@ -3180,12 +3180,12 @@ final: prev: friendly-snippets = buildVimPluginFrom2Nix { pname = "friendly-snippets"; - version = "2023-04-16"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "rafamadriz"; repo = "friendly-snippets"; - rev = "b1b78a6433268fc172adb5a843e165035e83861e"; - sha256 = "09zj4m7j9dsmjvfqb2m7k7yv64r8w9z0f27rifdxywfangsa0zi0"; + rev = "2308366ad625f61284e51d249ede4f795394b186"; + sha256 = "1vvlqc8a2v2891zfjvw3knmrvxszx1zzyh1jkyszz4ii8h3f746m"; }; meta.homepage = "https://github.com/rafamadriz/friendly-snippets/"; }; @@ -3288,12 +3288,12 @@ final: prev: fzf-lua = buildVimPluginFrom2Nix { pname = "fzf-lua"; - version = "2023-04-20"; + version = "2023-04-27"; src = fetchFromGitHub { owner = "ibhagwan"; repo = "fzf-lua"; - rev = "8cee7f542885cb78abef4e2cb6515470aea78564"; - sha256 = "18q477avcrgsmb6nndrbrx0aamjbpqp0ws17pa6fj8mgwg3mgg1w"; + rev = "79c7c3480cc363b3d4ecdfcb8b56623d9decd570"; + sha256 = "0vay2k6hv30fhchjd59m4xqdyl9642xs5gjlc1rrb9v3s2xs9g53"; }; meta.homepage = "https://github.com/ibhagwan/fzf-lua/"; }; @@ -3444,12 +3444,12 @@ final: prev: gitsigns-nvim = buildNeovimPluginFrom2Nix { pname = "gitsigns.nvim"; - version = "2023-04-21"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "lewis6991"; repo = "gitsigns.nvim"; - rev = "7dfe4be94b4f84a9931098f0f0f618d055e50bd5"; - sha256 = "1jpiiyv6b2dcswjjd1c8p7d65040ik0cx862kp8f7f21xz0salzb"; + rev = "e5edefd9976039f5352e0c900f35206770b33a2d"; + sha256 = "1g3wh3zwa9ympdfglgxnnfwnv958dyl0l8jqi2an4kgabl6f5471"; }; meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; }; @@ -3504,12 +3504,12 @@ final: prev: go-nvim = buildVimPluginFrom2Nix { pname = "go.nvim"; - version = "2023-04-21"; + version = "2023-04-24"; src = fetchFromGitHub { owner = "ray-x"; repo = "go.nvim"; - rev = "e7e914cdc3538a9f4e8843d63310b95641245984"; - sha256 = "03rkv3kcnll5bx3an20x4sjb7y9bffk602790yv2b6ysgn5a623d"; + rev = "80670b233218e9c72e9c8893ba52aff4b7510947"; + sha256 = "19smjfa3zz9864dhp2pfxv05llh4rdaz8cksfvpaq4ja7j6vb3n0"; }; meta.homepage = "https://github.com/ray-x/go.nvim/"; }; @@ -3624,24 +3624,24 @@ final: prev: gruvbox-material = buildVimPluginFrom2Nix { pname = "gruvbox-material"; - version = "2023-04-20"; + version = "2023-04-24"; src = fetchFromGitHub { owner = "sainnhe"; repo = "gruvbox-material"; - rev = "9956b910882009e6a70feb66229ae47a8c592d80"; - sha256 = "1999liw5dr6wcsay31q2hcxn2fjkgcpy5m494glmsc64dia3rdv0"; + rev = "3fff63b0d6a425ad1076a260cd4f6da61d1632b1"; + sha256 = "0207p4qg6s31957jbfb0k5yabgadzn6wf3z43m5skvp5w1al5a2b"; }; meta.homepage = "https://github.com/sainnhe/gruvbox-material/"; }; gruvbox-nvim = buildVimPluginFrom2Nix { pname = "gruvbox.nvim"; - version = "2023-04-21"; + version = "2023-04-23"; src = fetchFromGitHub { owner = "ellisonleao"; repo = "gruvbox.nvim"; - rev = "487598d979868224aff92cf8818195c1a60e5dfe"; - sha256 = "11imfkvxk84r63h7rp5w71131anr83difwab3y5jrv9cprijl20j"; + rev = "df149bccb19a02c5c2b9fa6ec0716f0c0487feb0"; + sha256 = "067qpkcwgnwysslq8g8kjxvffh9h4d2ibzjnrfar5jaxmmr0yg2x"; }; meta.homepage = "https://github.com/ellisonleao/gruvbox.nvim/"; }; @@ -3707,12 +3707,12 @@ final: prev: haskell-tools-nvim = buildNeovimPluginFrom2Nix { pname = "haskell-tools.nvim"; - version = "2023-04-17"; + version = "2023-04-23"; src = fetchFromGitHub { owner = "MrcJkb"; repo = "haskell-tools.nvim"; - rev = "53c5a037db61288a760a058f34c41c00849c754f"; - sha256 = "1xy8sj5wykc1n30jxk789rymkrk4gqyhvwfgwaccq6kc07jqazkp"; + rev = "1a2f39087306ff14c2d668a2b19335362bcd27af"; + sha256 = "16ffw6r2g8yxfydlkb4wz0bmvipawi3nxl4maasxagcjj41wfaxl"; }; meta.homepage = "https://github.com/MrcJkb/haskell-tools.nvim/"; }; @@ -4199,12 +4199,12 @@ final: prev: kanagawa-nvim = buildVimPluginFrom2Nix { pname = "kanagawa.nvim"; - version = "2023-04-20"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "rebelot"; repo = "kanagawa.nvim"; - rev = "963824e979f33bf2b39838d9ea7a59467d34ec9b"; - sha256 = "1mkm7klmn5qsj3mznhvndvsv03vy8fbzfd3bf27xmi7hk5z8ibmn"; + rev = "12f07c5d68ba6b09b53ab528de6df68e55b4cd9a"; + sha256 = "0v7wm2nkqwblasjw72f6k68j6v21w66vf9adzqhs8w5p96y27pl2"; }; meta.homepage = "https://github.com/rebelot/kanagawa.nvim/"; }; @@ -4283,24 +4283,24 @@ final: prev: lazy-lsp-nvim = buildVimPluginFrom2Nix { pname = "lazy-lsp.nvim"; - version = "2023-04-11"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "dundalek"; repo = "lazy-lsp.nvim"; - rev = "1e9aa30df98d5bef804e252b2afde2a4f5fc50e1"; - sha256 = "19m1zfdqx4vym345fljqd59s1chdnhb6hyqz7hl4hjwz9wyd86b1"; + rev = "9144fa3dafb45fb68e529a3dae14853a57b76d73"; + sha256 = "0s823mdh657paz6p8ffvrir3gzlqy3kr79bxbc572mb0xw542a3y"; }; meta.homepage = "https://github.com/dundalek/lazy-lsp.nvim/"; }; lazy-nvim = buildVimPluginFrom2Nix { pname = "lazy.nvim"; - version = "2023-04-19"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "folke"; repo = "lazy.nvim"; - rev = "5c89dc52f42e5058a46b0912d7d9042f564e44e0"; - sha256 = "1wn2r05rxxsi64ssnaryby7v293maf5k986bkngaki45lag3ghp8"; + rev = "bb5cc9ef3bbb17541929b745f74551c900188099"; + sha256 = "0pvnshf64s405fh7igb5091gq414fyylq2kzw86d2hsbrdqn3x46"; }; meta.homepage = "https://github.com/folke/lazy.nvim/"; }; @@ -4319,12 +4319,12 @@ final: prev: lean-nvim = buildVimPluginFrom2Nix { pname = "lean.nvim"; - version = "2023-03-25"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "Julian"; repo = "lean.nvim"; - rev = "157ca8a08ad13845cf67b440a595b55b25b9a459"; - sha256 = "1v6018a86la5rlfms0q02kq5pix233n1a9aispy08ws7aj4d45kj"; + rev = "ea68b6abc252e65f88a08305a3d6e1578a27b720"; + sha256 = "14ng8f8w1z2szfk10rkc28mglfkar5aliclwkfbmih1g05vcyx78"; }; meta.homepage = "https://github.com/Julian/lean.nvim/"; }; @@ -4355,12 +4355,12 @@ final: prev: leap-nvim = buildVimPluginFrom2Nix { pname = "leap.nvim"; - version = "2023-04-18"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "ggandor"; repo = "leap.nvim"; - rev = "0eb3611593e135150e2f7880ec67568ccb51c17a"; - sha256 = "1kz843qj8d766x43ys3q9bi6ahjcyw1c063x1kj6dhv3c85l911q"; + rev = "6f2912755c9c4ae790abd829f0cf1b07c037b2a4"; + sha256 = "1xakvx3sxg2l23bqm2r08pcybvi7cx79602dxra0iprr05wg3xzk"; }; meta.homepage = "https://github.com/ggandor/leap.nvim/"; }; @@ -4619,12 +4619,12 @@ final: prev: live-command-nvim = buildVimPluginFrom2Nix { pname = "live-command.nvim"; - version = "2022-10-17"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "smjonas"; repo = "live-command.nvim"; - rev = "ce4b104ce702c7bb9fdff863059af6d47107ca61"; - sha256 = "186258ngg7pchsc769gb05cjkwf61rcb446hd7wrpmvh0y30ylwl"; + rev = "bc7e094e7ff52caf682c1430ff3a43ff55f6a58b"; + sha256 = "1gpy117pwd6n283rbp45428r4xakj4sd8fnhnig0jni6kls68wjs"; }; meta.homepage = "https://github.com/smjonas/live-command.nvim/"; }; @@ -4655,12 +4655,12 @@ final: prev: lsp-inlayhints-nvim = buildVimPluginFrom2Nix { pname = "lsp-inlayhints.nvim"; - version = "2023-01-21"; + version = "2023-04-23"; src = fetchFromGitHub { owner = "lvimuser"; repo = "lsp-inlayhints.nvim"; - rev = "84ca3abe8aaecbb5b30ad89e4701d4a9c821b72c"; - sha256 = "0fx0swsagjdng9m9x73wkfqnk464qk63q9wi32rhywllbm7gsflf"; + rev = "62c7b8dd8ac9933b071912fe3c789ef2cb704672"; + sha256 = "0lriy2q1pz0z7vn9ihjrx9vlqi0imfzq46qyja8zif74p4c333af"; }; meta.homepage = "https://github.com/lvimuser/lsp-inlayhints.nvim/"; }; @@ -4738,12 +4738,12 @@ final: prev: lsp_signature-nvim = buildVimPluginFrom2Nix { pname = "lsp_signature.nvim"; - version = "2023-04-16"; + version = "2023-04-27"; src = fetchFromGitHub { owner = "ray-x"; repo = "lsp_signature.nvim"; - rev = "72b0d4ece23338fe2d03fc7b6fd8c8bace6bb441"; - sha256 = "0ids2xfw7c3i4kjxz2bjbh03zsbp4h3576sxlwfnyc9jdfrwdy6g"; + rev = "9616a1adde75a108495dd97ec8bb46f908d552e7"; + sha256 = "0miv96jg6sbih9clivsmxl5qdma8hqjpmq7zxdk4x4pzmzj2sb7i"; }; meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/"; }; @@ -4786,12 +4786,12 @@ final: prev: ltex_extra-nvim = buildVimPluginFrom2Nix { pname = "ltex_extra.nvim"; - version = "2023-04-17"; + version = "2023-04-23"; src = fetchFromGitHub { owner = "barreiroleo"; repo = "ltex_extra.nvim"; - rev = "918915211dbdbdae29a16e0b85d415e10e732af3"; - sha256 = "0730sq9g3jq56a19d6dbzzx7xyb5sp6ys156gxdk39z0xghkzpq4"; + rev = "3ceb2401ab70c132305b3dba4dcb418d97b567ad"; + sha256 = "0p7pvazpzabf3v40c765m0s9i1wxhc35rz8zfsqq090b8zxvg5lf"; }; meta.homepage = "https://github.com/barreiroleo/ltex_extra.nvim/"; }; @@ -4822,12 +4822,12 @@ final: prev: luasnip = buildVimPluginFrom2Nix { pname = "luasnip"; - version = "2023-04-17"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "l3mon4d3"; repo = "luasnip"; - rev = "8d6c0a93dec34900577ba725e91c44b8d3ca1f45"; - sha256 = "1lrfmzhmxizjk265bk991apfxc74wlaxqwizrg63clbks5nx6av5"; + rev = "a46ab6f8bce6bbddd8ce3e287e1a517c1f5e348e"; + sha256 = "1nwlln0izppwpjpnmaczfl040dbqhcgkphvwxi6bplcix9kq1zgp"; fetchSubmodules = true; }; meta.homepage = "https://github.com/l3mon4d3/luasnip/"; @@ -4847,12 +4847,12 @@ final: prev: lush-nvim = buildNeovimPluginFrom2Nix { pname = "lush.nvim"; - version = "2023-04-02"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "rktjmp"; repo = "lush.nvim"; - rev = "39d91f09cde4c96f09015716fce6f91bca1eaa9a"; - sha256 = "087xmsgxwj9flak3q44823ky8i6j4dzx1hi411fxd6ijrzw7mxwm"; + rev = "fb148c0082488ba048f681792c4044e3229fd1a6"; + sha256 = "0l3hhnskai22lwy78x9gblc0qr928vcbfnzjpawcx5lrmg3a3d44"; }; meta.homepage = "https://github.com/rktjmp/lush.nvim/"; }; @@ -4919,12 +4919,12 @@ final: prev: mason-lspconfig-nvim = buildVimPluginFrom2Nix { pname = "mason-lspconfig.nvim"; - version = "2023-04-17"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "williamboman"; repo = "mason-lspconfig.nvim"; - rev = "7034065099c1665143091c7282b3b1b8f0b23783"; - sha256 = "1ahw156adi9frh3isad37r48zwy8j7llhyq307c3kxnh3r98iiaa"; + rev = "43f2ddf0b5f544d9bb20e24b8ff76b79f2a07ab0"; + sha256 = "09g8hlracxiplb61wbxmg5z3f4sclaaayh5pddkjrmnwl5mfki54"; }; meta.homepage = "https://github.com/williamboman/mason-lspconfig.nvim/"; }; @@ -4943,12 +4943,12 @@ final: prev: mason-nvim = buildVimPluginFrom2Nix { pname = "mason.nvim"; - version = "2023-04-21"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "williamboman"; repo = "mason.nvim"; - rev = "7f364a3c9b3f77ead3dc5316cf6918d944fc3621"; - sha256 = "18a8bljq3yqgdvgmdrqbiw8rmgrlx4wn9rzv69hwap4i2rf8lw97"; + rev = "057ac5ca159c83e302a55bd839a96ff1ea2396db"; + sha256 = "17nm4aprym0nfamckixc12knk069mjms30jnbd27l7ygvsg88yj3"; }; meta.homepage = "https://github.com/williamboman/mason.nvim/"; }; @@ -4967,12 +4967,12 @@ final: prev: material-nvim = buildVimPluginFrom2Nix { pname = "material.nvim"; - version = "2023-03-10"; + version = "2023-04-25"; src = fetchFromGitHub { owner = "marko-cerovac"; repo = "material.nvim"; - rev = "18d5e8af4c4bc77382bda5e5ae2830ab515cf5c6"; - sha256 = "0ws5mig2kwwspwl3b9abqbwwni8xzx252k7k2dhw4dm2h7hkkzsv"; + rev = "0c725897bc3d22c45fbf25a602002ee02f06f619"; + sha256 = "1l950bqlpnidk2vpjsys6pgswsch9dza9vhjsi5pndnx3wgry81y"; }; meta.homepage = "https://github.com/marko-cerovac/material.nvim/"; }; @@ -5015,12 +5015,12 @@ final: prev: mini-nvim = buildVimPluginFrom2Nix { pname = "mini.nvim"; - version = "2023-04-20"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "echasnovski"; repo = "mini.nvim"; - rev = "590ac69a6c249ee94c390ab4b46147480409b646"; - sha256 = "1vkjh7jzj8c4pfwwi3qbkpwc1mssiqgyvbral489ls94j9fncad4"; + rev = "88a6b58b4775b78e5028fb18f4bdc3090bb52923"; + sha256 = "1rn2bcv0rhqwm21aaa813w9b2dkv3g0r58f3y4vc2hy0b8yxq1lh"; }; meta.homepage = "https://github.com/echasnovski/mini.nvim/"; }; @@ -5063,12 +5063,12 @@ final: prev: mkdx = buildVimPluginFrom2Nix { pname = "mkdx"; - version = "2023-04-13"; + version = "2023-04-23"; src = fetchFromGitHub { owner = "SidOfc"; repo = "mkdx"; - rev = "2881f23d06da8544ecfcb75cd3b6c061d7392414"; - sha256 = "06d08mbzc3ri9x8ar9a5f05b7g9vz76cbygna8hqkpmzhq1rq817"; + rev = "1662c1531f0e0a1cb9c9566b555cb8686a336532"; + sha256 = "0n0i7092qqjlp6s951frhasbmi225x52myar3yrh9zskdmrxbh6x"; }; meta.homepage = "https://github.com/SidOfc/mkdx/"; }; @@ -5351,12 +5351,12 @@ final: prev: neo-tree-nvim = buildVimPluginFrom2Nix { pname = "neo-tree.nvim"; - version = "2023-04-17"; + version = "2023-04-23"; src = fetchFromGitHub { owner = "nvim-neo-tree"; repo = "neo-tree.nvim"; - rev = "7a6b0d43d70636edfec183fb49c02f725765da73"; - sha256 = "0icsairxll0anffwh1q39p9mlwwvbf5krp7v7388kilsd57lhjdi"; + rev = "8d485aab32da9b8841d4af977f992b82b14af469"; + sha256 = "192q4z6sy4kcyc57h2n4hsis7rirswfd83zcq1r0zvk7j1sbzzsr"; }; meta.homepage = "https://github.com/nvim-neo-tree/neo-tree.nvim/"; }; @@ -5375,12 +5375,12 @@ final: prev: neoconf-nvim = buildVimPluginFrom2Nix { pname = "neoconf.nvim"; - version = "2023-04-21"; + version = "2023-04-27"; src = fetchFromGitHub { owner = "folke"; repo = "neoconf.nvim"; - rev = "62c8d706fafed90c95aa6b5846f296d3b28db75a"; - sha256 = "1i5r1j3sbqmijvhla1mldrmpki5ymvi1h2qcs63gypmxj4xpy6hz"; + rev = "ccc79c8096b0171c770a59a05d69a22f49d6d6c9"; + sha256 = "0is0wxx8315a8qx63zf97646pva4n50qbfmg54bz327hf8bqnfaf"; }; meta.homepage = "https://github.com/folke/neoconf.nvim/"; }; @@ -5399,12 +5399,12 @@ final: prev: neodev-nvim = buildVimPluginFrom2Nix { pname = "neodev.nvim"; - version = "2023-04-19"; + version = "2023-04-29"; src = fetchFromGitHub { owner = "folke"; repo = "neodev.nvim"; - rev = "e812f3d0e62e21a164b70f90f642cf30129503e4"; - sha256 = "17w17gpk85w8zkqpkvrr2kg90p39wz2l57czphc52ybzirkpij30"; + rev = "7e3f718f43de41053f77b1e8de6de2b759fc4023"; + sha256 = "17f5bvjac682gcp9f3i4sg4n6nwlhjax8n63krjfkxw37rbzhxp6"; }; meta.homepage = "https://github.com/folke/neodev.nvim/"; }; @@ -5495,12 +5495,12 @@ final: prev: neorg = buildVimPluginFrom2Nix { pname = "neorg"; - version = "2023-04-19"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "nvim-neorg"; repo = "neorg"; - rev = "f742e90d6d8ec831f0bce939c37a3c04407c0e9f"; - sha256 = "11nc74vpx7ws733x5ksymd6jdry3vj04jx08wi6gdwsikhvz8jhq"; + rev = "ecfb426fcd9e8cd606645d05553b3e835288fab3"; + sha256 = "066d5i1yc39jmzv70bdiqb6gf7fpq49xj6k765v9hpv86z7fshmh"; }; meta.homepage = "https://github.com/nvim-neorg/neorg/"; }; @@ -5555,24 +5555,24 @@ final: prev: neotest = buildVimPluginFrom2Nix { pname = "neotest"; - version = "2023-04-19"; + version = "2023-04-27"; src = fetchFromGitHub { owner = "nvim-neotest"; repo = "neotest"; - rev = "8d279ac31542553461f5377db1596ae52e042d00"; - sha256 = "0mfh332nh1c5g0abywcjng23wz4z1571dgxyc4f6nlvyikziaghc"; + rev = "972a7dc9dfe860649edaf89e08c514a98d3a2a09"; + sha256 = "12yj02k9yjflq4p10wwb354mxc773vdibmiyf503xp56q48c3rbp"; }; meta.homepage = "https://github.com/nvim-neotest/neotest/"; }; neotest-dart = buildVimPluginFrom2Nix { pname = "neotest-dart"; - version = "2023-03-13"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "sidlatau"; repo = "neotest-dart"; - rev = "43a61b8aab7908799d58369ba15dc4cd381d46ff"; - sha256 = "1kzb08sb38l2dzz9rs4qj6cfbgr0klplxrlb271q0i7xpaflif42"; + rev = "c7a0aa394deadf63fc0a40b0df94c6e4d4047d19"; + sha256 = "0axpiam24gljmnz2i41fg03a6x1i8fqgskmf9nskg5l6m1vf5p19"; }; meta.homepage = "https://github.com/sidlatau/neotest-dart/"; }; @@ -5615,24 +5615,24 @@ final: prev: neotest-go = buildVimPluginFrom2Nix { pname = "neotest-go"; - version = "2023-04-15"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "nvim-neotest"; repo = "neotest-go"; - rev = "2148ad794e7a5c30c7385a3281f4be91e6b113c4"; - sha256 = "0z9yam6v82a6aymsmrr5rly20gq6pv90lwjgwwnz3r88nhyq11v6"; + rev = "b6dc0b1c49569273d863d7b96b6c81b3fc153e82"; + sha256 = "1mm4r9n3hrcp2zh97dsjggppzd6miz9056bp86by1vhysfbrs6fp"; }; meta.homepage = "https://github.com/nvim-neotest/neotest-go/"; }; neotest-haskell = buildVimPluginFrom2Nix { pname = "neotest-haskell"; - version = "2023-04-16"; + version = "2023-04-23"; src = fetchFromGitHub { owner = "MrcJkb"; repo = "neotest-haskell"; - rev = "ea123371271cabcfae8de34095956c75f7e705b6"; - sha256 = "13yskn5dja2lbx20351ajgfqxz8lnnzg3pplcfgrnhfd6xbmxqdy"; + rev = "c0343c05b84a8775b88a2c405927bb1c271bde6b"; + sha256 = "0zrx959yl87j6sj2l1n139bpv0i4lmm4878qj4i1amjb8746gc10"; }; meta.homepage = "https://github.com/MrcJkb/neotest-haskell/"; }; @@ -5663,24 +5663,24 @@ final: prev: neotest-phpunit = buildVimPluginFrom2Nix { pname = "neotest-phpunit"; - version = "2023-04-19"; + version = "2023-04-23"; src = fetchFromGitHub { owner = "olimorris"; repo = "neotest-phpunit"; - rev = "6c4f1def7d4d0ff5d410022b71078468ab96273b"; - sha256 = "1hx5c99b57s1z9hf1f45l4fgvvc5ndh300s347xpi9zbw19ym8fl"; + rev = "0614bf2cd38d5e9febff9b11b2d182953375c96a"; + sha256 = "04fyajn13prf9z7ap2z6cgnxx931pzgiqjfymvqrf71hgv800ppj"; }; meta.homepage = "https://github.com/olimorris/neotest-phpunit/"; }; neotest-plenary = buildVimPluginFrom2Nix { pname = "neotest-plenary"; - version = "2023-04-19"; + version = "2023-04-27"; src = fetchFromGitHub { owner = "nvim-neotest"; repo = "neotest-plenary"; - rev = "65f57c41ffb7bf1c34938b61683fe833ad3be8fb"; - sha256 = "0m4hhl4rcbkvpfs9azaarya9zyfbcxhrsc2ij797myfggiz5s28v"; + rev = "e0d9b1530307a03abcc52fc0ae28f054dea3f752"; + sha256 = "1d5ay6jbc8f10zp7nffx67d627389szr8zkvdx02pzq21m9dsv92"; }; meta.homepage = "https://github.com/nvim-neotest/neotest-plenary/"; }; @@ -5699,24 +5699,24 @@ final: prev: neotest-rspec = buildVimPluginFrom2Nix { pname = "neotest-rspec"; - version = "2023-04-15"; + version = "2023-04-24"; src = fetchFromGitHub { owner = "olimorris"; repo = "neotest-rspec"; - rev = "68b4b195603e89b69dcbe587116eee7e78d186ce"; - sha256 = "0h3qiyd91hrg481fdplyac17yaplmgn41jlhsqnbi18274c1ipjk"; + rev = "fa28be514ceff6465e491bcab08989d8011453fd"; + sha256 = "1q2fp6csz6178bjks40n5kbccs0pq3i5p46n4vv9nq0xggs7fqpx"; }; meta.homepage = "https://github.com/olimorris/neotest-rspec/"; }; neotest-rust = buildVimPluginFrom2Nix { pname = "neotest-rust"; - version = "2023-04-15"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "rouge8"; repo = "neotest-rust"; - rev = "e375bdb26d2ce1c099d17c8adc4d18768d501ff7"; - sha256 = "0zfxr2261ls0k754f4qcd012fl4jhqywpjmr6cc1q5m6bx74p2ms"; + rev = "eaaf57c2124067167b6f7dcab6feedfcabd27fbb"; + sha256 = "18vchckz246lxl99na1xsqlaxy4rsnblfy8lpr67g8lrkmyifcfl"; }; meta.homepage = "https://github.com/rouge8/neotest-rust/"; }; @@ -5807,12 +5807,12 @@ final: prev: nerdcommenter = buildVimPluginFrom2Nix { pname = "nerdcommenter"; - version = "2023-04-21"; + version = "2023-04-26"; src = fetchFromGitHub { owner = "preservim"; repo = "nerdcommenter"; - rev = "91499c76a7358b10945c50173fa8c64dc3c909c8"; - sha256 = "1xv2nb0jpxmmgchjh2j7dpam0xzrslc4qfbv02fdhmj1f7ybf018"; + rev = "1fe9e1cfea9bb0dbc77174d776759ed67899ee50"; + sha256 = "1h2j3f6fmlxggz1ghmb1b4kwpdiwzr7bfccbbxzyabvf04gdsn8h"; }; meta.homepage = "https://github.com/preservim/nerdcommenter/"; }; @@ -5891,12 +5891,12 @@ final: prev: nightfox-nvim = buildVimPluginFrom2Nix { pname = "nightfox.nvim"; - version = "2023-04-21"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "EdenEast"; repo = "nightfox.nvim"; - rev = "e54427a1bfea55c9ab0c21ac7e9d07b22156d0f0"; - sha256 = "0fwn5hhw9fy9g0h62zqlx5iiar77m5ryd8mvahybhdjk8ygjkmg4"; + rev = "a53ff3f99c3cf4e598c5febad367fd3cad341b90"; + sha256 = "11a8209kafwg0d3xls718znnk53zjkhyki34ddp6kdhm2lkglnxp"; }; meta.homepage = "https://github.com/EdenEast/nightfox.nvim/"; }; @@ -5927,12 +5927,12 @@ final: prev: nlsp-settings-nvim = buildVimPluginFrom2Nix { pname = "nlsp-settings.nvim"; - version = "2023-04-21"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "tamago324"; repo = "nlsp-settings.nvim"; - rev = "32f39128c96baf5482c6a775f437be116d0adf4f"; - sha256 = "00l8akyihpimvkxy8yxdvwc3iafjkyyx66scfqj9drm4flsbbqc8"; + rev = "9443ee10595ee8e0a481f949e827f156b8c63b9f"; + sha256 = "0r7nmrlrp9lfg8z69i3ngna9kfwyszlp6f4d33pzn9v1if14mcp9"; }; meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; }; @@ -5963,24 +5963,24 @@ final: prev: no-neck-pain-nvim = buildVimPluginFrom2Nix { pname = "no-neck-pain.nvim"; - version = "2023-04-08"; + version = "2023-04-26"; src = fetchFromGitHub { owner = "shortcuts"; repo = "no-neck-pain.nvim"; - rev = "e22c01b148b37dcb74c40faf801f7ee9de727dfc"; - sha256 = "0d45v508j66by6z7ykaii982xnp8kmhdcj86hhzly24s34jg1q9j"; + rev = "d3527936c4944baf0227c4f5b7fd64e7119ac13c"; + sha256 = "1hf8dyfgjw5jx7f0zpip20wn7q2ba5zcn4i76vi9p9x6ja2n53vv"; }; meta.homepage = "https://github.com/shortcuts/no-neck-pain.nvim/"; }; noice-nvim = buildVimPluginFrom2Nix { pname = "noice.nvim"; - version = "2023-04-18"; + version = "2023-04-22"; src = fetchFromGitHub { owner = "folke"; repo = "noice.nvim"; - rev = "7bd435a48a2d2b3f028c633126e3f669ae6b902f"; - sha256 = "003pbngbf7wvac91lpy717sp3blkxv869f17brshwhciq2zzfxjm"; + rev = "0f12ed399e79aa49f283aa954468b92be65e03ed"; + sha256 = "196lc9y6bfxivsfkck739dkr66arf3jgqgyaha34nc7mk9s0395g"; }; meta.homepage = "https://github.com/folke/noice.nvim/"; }; @@ -6023,24 +6023,24 @@ final: prev: nui-nvim = buildVimPluginFrom2Nix { pname = "nui.nvim"; - version = "2023-04-11"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "MunifTanjim"; repo = "nui.nvim"; - rev = "ecd9def93891b9260b15b5fcef542eaabf4145c9"; - sha256 = "133qxi97km61kg0y465jbwwzrby1v5h663igvrqlj1n2syvwwmi2"; + rev = "698e75814cd7c56b0dd8af4936bcef2d13807f3c"; + sha256 = "06dksyx01ibl79s44rqv4np0j94ihqs30zq9x9rvkisq1a2sqlf1"; }; meta.homepage = "https://github.com/MunifTanjim/nui.nvim/"; }; null-ls-nvim = buildVimPluginFrom2Nix { pname = "null-ls.nvim"; - version = "2023-04-11"; + version = "2023-04-26"; src = fetchFromGitHub { owner = "jose-elias-alvarez"; repo = "null-ls.nvim"; - rev = "f8ffcd7cb8fb3325c711d459152ef132b5b65aed"; - sha256 = "0cbc4ic7q6mlr7cg4km8z7zy0znjj7d1vshafi2xg219fq5sfy1g"; + rev = "33b853a3933eed3137cd055aac4e539e69832ad0"; + sha256 = "0qma18jvn7h2lf0dr74h2k4kskw0zm3mx00c6bifc3r8hy2my2kk"; }; meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; }; @@ -6095,12 +6095,12 @@ final: prev: nvim-autopairs = buildVimPluginFrom2Nix { pname = "nvim-autopairs"; - version = "2023-04-20"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "windwp"; repo = "nvim-autopairs"; - rev = "7566a86f44bb72ba2b1a609f528a27d93241502d"; - sha256 = "0hxaqhvqd4446zvwbfs2l6akqbki2sag2vlxqfxbn1a9pdin1329"; + rev = "7747bbae60074acf0b9e3a4c13950be7a2dff444"; + sha256 = "0j0kpy379yhcv35l4jby5qyzqfpckwy7s09q0cc8sla7n1i1b00j"; }; meta.homepage = "https://github.com/windwp/nvim-autopairs/"; }; @@ -6167,12 +6167,12 @@ final: prev: nvim-cmp = buildNeovimPluginFrom2Nix { pname = "nvim-cmp"; - version = "2023-03-17"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "hrsh7th"; repo = "nvim-cmp"; - rev = "777450fd0ae289463a14481673e26246b5e38bf2"; - sha256 = "0a8jj0frf2rb7dwx35157kp4iaiij2ad0azicw3i11bb4qicd08a"; + rev = "c3f7c54f6efed83b5657b1cf2e2a9bb7c121c6b4"; + sha256 = "10d1va35izy4cxbpsyh5h2p5jqxwlwpb5pafhb8fw72rqf02lda7"; }; meta.homepage = "https://github.com/hrsh7th/nvim-cmp/"; }; @@ -6323,12 +6323,12 @@ final: prev: nvim-dap-virtual-text = buildVimPluginFrom2Nix { pname = "nvim-dap-virtual-text"; - version = "2023-04-03"; + version = "2023-04-26"; src = fetchFromGitHub { owner = "theHamsta"; repo = "nvim-dap-virtual-text"; - rev = "9dc45a6eb33871f4c5cb2ba08fa307467657471e"; - sha256 = "05j81a8jrzl81im35g5fzyh6dsmydgkxdxisfs07hl7cv51g2j95"; + rev = "ab988dbb7d20cdaebf9b3ef7554a89f6895de042"; + sha256 = "0mchrwd49hjl9sgspnwqbl5pplp88g3jnaiphzj5ri44cdgvajym"; }; meta.homepage = "https://github.com/theHamsta/nvim-dap-virtual-text/"; }; @@ -6371,12 +6371,12 @@ final: prev: nvim-gdb = buildVimPluginFrom2Nix { pname = "nvim-gdb"; - version = "2022-11-29"; + version = "2023-04-27"; src = fetchFromGitHub { owner = "sakhnik"; repo = "nvim-gdb"; - rev = "9a6adc688bf9acf1628b014d2c7217443dd6fa6f"; - sha256 = "17rkx4bwr392minrp2db6s4rq3j4sz53mhcq8caz9cfmny2c3idr"; + rev = "fc0173b4058265b225d98429599bc4f47f0a940e"; + sha256 = "1yxnsyj3d5cam28q62jdglpw1miknsl9ysmzs6wbkyxgi521dpwl"; }; meta.homepage = "https://github.com/sakhnik/nvim-gdb/"; }; @@ -6407,12 +6407,12 @@ final: prev: nvim-highlite = buildVimPluginFrom2Nix { pname = "nvim-highlite"; - version = "2023-04-09"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "Iron-E"; repo = "nvim-highlite"; - rev = "3841a166416a21f43bb5dbfa3664b0d56ce96366"; - sha256 = "1gg7jcgjsd3i88nbbsq9ql4k9zzk6q7iyz2zhcknq1cjrfzb0870"; + rev = "ab5f7c3bf32401f1d6c90b31db309daf6d004ebf"; + sha256 = "0yf5pzgskia5rxc3hx479rs4qwi2c2dqajvib80119jbf7av11j6"; }; meta.homepage = "https://github.com/Iron-E/nvim-highlite/"; }; @@ -6503,12 +6503,12 @@ final: prev: nvim-lint = buildVimPluginFrom2Nix { pname = "nvim-lint"; - version = "2023-04-19"; + version = "2023-04-23"; src = fetchFromGitHub { owner = "mfussenegger"; repo = "nvim-lint"; - rev = "f27ba536d9363d216dcf1996f42d55756e977522"; - sha256 = "1km9ch467q613pf50xa1bhrp9zd47c21g990aqczw4s6787fk2fb"; + rev = "e03f2656d9d7c80929bf47f5ac71a5f23183510c"; + sha256 = "002h2phjvnd2q05ki3y3syi1pi3fqj871df9icljmgaqxhj4prdc"; }; meta.homepage = "https://github.com/mfussenegger/nvim-lint/"; }; @@ -6527,12 +6527,12 @@ final: prev: nvim-lspconfig = buildVimPluginFrom2Nix { pname = "nvim-lspconfig"; - version = "2023-04-16"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "neovim"; repo = "nvim-lspconfig"; - rev = "eddaef928c1e1dd79a96f5db45f2fd7f2efe7ea0"; - sha256 = "1gpkmywjlyyx8zmvyxqsrrfyrxsvs42gd442k05nhfv75z077dcf"; + rev = "5f7a8311dd6e67de74c12fa9ac2f1aa75f72b19e"; + sha256 = "1m00hlixyisv2ccvsnnv0rir5y4219m8y6xns673j6hsg5jsnjsg"; }; meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; }; @@ -6575,12 +6575,12 @@ final: prev: nvim-metals = buildVimPluginFrom2Nix { pname = "nvim-metals"; - version = "2023-03-20"; + version = "2023-04-26"; src = fetchFromGitHub { owner = "scalameta"; repo = "nvim-metals"; - rev = "51e88e4f5eeadbd92a75cae71c5cbb75f3cb6765"; - sha256 = "0lq4dl92wvnql9i5c8kbfja4jzzlzps0v6nmpy7qalrxhfp5gyn2"; + rev = "26968e2768ffd59f7dcc26693c534ca91a80c928"; + sha256 = "0vgpkcdxicfrnbr38kxlqlhy6fqb3rm36rn89ywhnfk9qakn0l0a"; }; meta.homepage = "https://github.com/scalameta/nvim-metals/"; }; @@ -6599,24 +6599,24 @@ final: prev: nvim-navic = buildVimPluginFrom2Nix { pname = "nvim-navic"; - version = "2023-04-21"; + version = "2023-04-22"; src = fetchFromGitHub { owner = "smiteshp"; repo = "nvim-navic"; - rev = "63a5d2d6af20d7818b94b4bdc2133107a88107e2"; - sha256 = "1gj28wiimizgxyqshxlbk0l9afxsakjhjfsx35pg0j0znaybj9m4"; + rev = "83dc174da915f9dbc9b51169e9b62a2e0d42b527"; + sha256 = "19lr5mlhnfd9s47mvhhkxl343slsvhw8ni5gqb9p11k1zznl2h9b"; }; meta.homepage = "https://github.com/smiteshp/nvim-navic/"; }; nvim-neoclip-lua = buildVimPluginFrom2Nix { pname = "nvim-neoclip.lua"; - version = "2023-01-16"; + version = "2023-04-25"; src = fetchFromGitHub { owner = "AckslD"; repo = "nvim-neoclip.lua"; - rev = "5b9286a40ea2020352280caeb713515badb03d99"; - sha256 = "182jzsgqvzhlpzadi6rpnh6j2fakvinbmwwzgfnn6jyxw2cglbv2"; + rev = "591f1b62343efe3e369e4831cd91e1875f3a08f4"; + sha256 = "17v2c7vmnj7lxngvc039ih6d0mihhjcy4bfhrm2l67j7sylybdcr"; }; meta.homepage = "https://github.com/AckslD/nvim-neoclip.lua/"; }; @@ -6695,12 +6695,12 @@ final: prev: nvim-scrollbar = buildVimPluginFrom2Nix { pname = "nvim-scrollbar"; - version = "2023-03-19"; + version = "2023-04-27"; src = fetchFromGitHub { owner = "petertriho"; repo = "nvim-scrollbar"; - rev = "f85b29805cf917f9b1d5ff0c9a52c5b1bdca5943"; - sha256 = "1n9vn7q802pnrp7ghww8racx8jcylf0m99lj8hv37f565ddddnim"; + rev = "f3a5469e9881360e70d34b25333c910ee4a505f3"; + sha256 = "1b2zg8yaqlhj3pqc1fqv64pmj4rygzz11prgh59gc03c45mp6nrk"; }; meta.homepage = "https://github.com/petertriho/nvim-scrollbar/"; }; @@ -6719,12 +6719,12 @@ final: prev: nvim-snippy = buildVimPluginFrom2Nix { pname = "nvim-snippy"; - version = "2023-04-03"; + version = "2023-04-25"; src = fetchFromGitHub { owner = "dcampos"; repo = "nvim-snippy"; - rev = "8ada65df34610f0dbfdbd036dfddf7ad3b67523b"; - sha256 = "1y5ssshc9ggn0mwi98mk2gqk67sfqlwbksg240xddq5kvd07b61k"; + rev = "b1bef6f62c0d985ddf1303afa14578f9afb8379a"; + sha256 = "0yhybjzvbrwd4j51pm20z3sdr85azbghz1d1wyr8q8b103zbqph1"; }; meta.homepage = "https://github.com/dcampos/nvim-snippy/"; }; @@ -6743,12 +6743,12 @@ final: prev: nvim-spectre = buildVimPluginFrom2Nix { pname = "nvim-spectre"; - version = "2023-03-31"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "nvim-pack"; repo = "nvim-spectre"; - rev = "6e5ce371f93625c7dc43f5e2647d3647f2ea15e2"; - sha256 = "1x1m5wcpmw2bj4646991ady6dfk4apjdc70lz4az8akayilms9hr"; + rev = "46b9883c0760db6547f152dc97a651611ba6486d"; + sha256 = "08amf2qpciqamgc5kg697y9yy5zdpl2cv7v4ff9vxnq099a7v1al"; }; meta.homepage = "https://github.com/nvim-pack/nvim-spectre/"; }; @@ -6767,12 +6767,12 @@ final: prev: nvim-surround = buildVimPluginFrom2Nix { pname = "nvim-surround"; - version = "2023-04-02"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "kylechui"; repo = "nvim-surround"; - rev = "e6047128e57c1aff1566fb9f627521d2887fc77a"; - sha256 = "0568ac35dcqa73gv9gfv4wybjrg748v8cfvcn127k2ckjzq259jw"; + rev = "219bd66585aa467b1c90fd01b54a2a423aaed4ab"; + sha256 = "0aximc9fiicmhxkqrazjsqfr9mqw7llnfdc778acn5rkhwj1xms9"; }; meta.homepage = "https://github.com/kylechui/nvim-surround/"; }; @@ -6803,48 +6803,48 @@ final: prev: nvim-tree-lua = buildVimPluginFrom2Nix { pname = "nvim-tree.lua"; - version = "2023-04-18"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "nvim-tree"; repo = "nvim-tree.lua"; - rev = "0db85a70248f9a90e61af5cdbafe5d9f4320f719"; - sha256 = "0iyyy0b2ym00p14n5hrmx6g87g9r03scjsszr33v6hcsq0k06282"; + rev = "0df384b6c0fa62ff1333634d56ee4df0be5d34e1"; + sha256 = "1iqw7hwdjs5fdcpjmizi16pxpgak5zf73p78v0sdwyx8z4pd82vn"; }; meta.homepage = "https://github.com/nvim-tree/nvim-tree.lua/"; }; nvim-treesitter = buildVimPluginFrom2Nix { pname = "nvim-treesitter"; - version = "2023-04-21"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "nvim-treesitter"; repo = "nvim-treesitter"; - rev = "654216eb04f3fdf0f847ff2d410319fba6cee847"; - sha256 = "0rk925xmgh7nil8dmps109h0zr36x36j6l537zs66kjcvafmy0rs"; + rev = "b4d2640eab4b1f6373e1ded84ab9f6db0c02c756"; + sha256 = "0ha614qcnklqcnayy0fxw901mk9njcwqrf5hcpd7dvbwx60iqz54"; }; meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; }; nvim-treesitter-context = buildVimPluginFrom2Nix { pname = "nvim-treesitter-context"; - version = "2023-04-20"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "nvim-treesitter"; repo = "nvim-treesitter-context"; - rev = "8b6861ebf0ba88e5f57796372eb194787705d25a"; - sha256 = "08dn0c673i91ql14ls8ackmda3l7mx4y4gl5hlyr0030c6ziv1qf"; + rev = "e1dc868e61766499746b5b7b22671efc1f33181e"; + sha256 = "1y8rhx9315pnj43925ljjyxykpdg126zzqzhd2dprikhn9clh3w9"; }; meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; }; nvim-treesitter-endwise = buildVimPluginFrom2Nix { pname = "nvim-treesitter-endwise"; - version = "2022-09-26"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "RRethy"; repo = "nvim-treesitter-endwise"; - rev = "0cf4601c330cf724769a2394df555a57d5fd3f34"; - sha256 = "12psl12ggmw23b7z9ph6360sc4qprvn3f5m4ikl1mhp50bg3wyry"; + rev = "944b0d85bb6817948eaaf78893cbb23c25641d8f"; + sha256 = "0nh5aiqbnia832hq4rbm0ijj4wb5djncqdz8zmpvf137mh0qp66q"; }; meta.homepage = "https://github.com/RRethy/nvim-treesitter-endwise/"; }; @@ -6875,24 +6875,24 @@ final: prev: nvim-treesitter-textobjects = buildVimPluginFrom2Nix { pname = "nvim-treesitter-textobjects"; - version = "2023-04-10"; + version = "2023-04-29"; src = fetchFromGitHub { owner = "nvim-treesitter"; repo = "nvim-treesitter-textobjects"; - rev = "8673926519ea61069f9c1366d1ad1949316d250e"; - sha256 = "0qgx7f1jkd62dxw8a0f4h01dbixzqmj18nmyh50baang671xzlzl"; + rev = "85a6f9d1af8b731f09f4031e1f9478d4b40d13ab"; + sha256 = "1dgqvj5j24r3058vxqykj9j7dhf6pjnch7bccxdnc4an4x0hmwiz"; }; meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects/"; }; nvim-ts-autotag = buildVimPluginFrom2Nix { pname = "nvim-ts-autotag"; - version = "2023-04-20"; + version = "2023-04-27"; src = fetchFromGitHub { owner = "windwp"; repo = "nvim-ts-autotag"; - rev = "26761ba6848d814605a629bc8d2694eeb1e48007"; - sha256 = "1g3ss0mhbwv08y8kpgzqk65d5v4vl9mdl21ya2c7irvsnm23l25r"; + rev = "40615e96075c743ef47aaf9de966dc348bec6459"; + sha256 = "0x58mcz3ii3yv7rjfzgxsjy7vnvh0gpxyjr626766vf3ignfdzff"; }; meta.homepage = "https://github.com/windwp/nvim-ts-autotag/"; }; @@ -6923,11 +6923,11 @@ final: prev: nvim-ts-rainbow2 = buildVimPluginFrom2Nix { pname = "nvim-ts-rainbow2"; - version = "2023-04-17"; + version = "2023-04-25"; src = fetchgit { url = "https://gitlab.com/HiPhish/nvim-ts-rainbow2"; - rev = "3bfcb9a7dd55d106f2e8afd3dcaec1ac624db2db"; - sha256 = "1vh125k3i2j35jqw0rfkjxsvivxr8g5kg31zzkpcwq1irhfz9w5d"; + rev = "1ffe68cdd594633dfee0762feebfef81ed6f1fbb"; + sha256 = "01qlrz7s681s0hl2ygg6qq7ysqr1yxz7y512f647mviv7c7aw3qy"; }; meta.homepage = "https://gitlab.com/HiPhish/nvim-ts-rainbow2"; }; @@ -6946,12 +6946,12 @@ final: prev: nvim-web-devicons = buildVimPluginFrom2Nix { pname = "nvim-web-devicons"; - version = "2023-04-11"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "nvim-tree"; repo = "nvim-web-devicons"; - rev = "4ec26d67d419c12a4abaea02f1b6c57b40c08d7e"; - sha256 = "18ssw6v60sy2lmb4dc11xz0vwkc4mw8fzbavvggadibjmbcf824l"; + rev = "b34362b20a4942b3245f958e73ebe1b09b020ad1"; + sha256 = "0jyqxxlp27v5mfp72x6dv7ph3j3p9anaf6f3whdls1ajw3k8d23m"; }; meta.homepage = "https://github.com/nvim-tree/nvim-web-devicons/"; }; @@ -7018,36 +7018,36 @@ final: prev: oceanic-next = buildVimPluginFrom2Nix { pname = "oceanic-next"; - version = "2021-02-05"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "mhartington"; repo = "oceanic-next"; - rev = "5ef31a34204f84714885ae9036f66a626036c3dc"; - sha256 = "1wazbyxaq71mlpyvyxrbrpyb9vgkcsj2y2zf1sba9gfjjszph482"; + rev = "09833f72d5ba23de2e8bcae18f479f326f5f677a"; + sha256 = "1wxzclv7pcli075fagl89302azka6q2l0cb9rpjw4ch679par63z"; }; meta.homepage = "https://github.com/mhartington/oceanic-next/"; }; octo-nvim = buildVimPluginFrom2Nix { pname = "octo.nvim"; - version = "2023-04-05"; + version = "2023-04-26"; src = fetchFromGitHub { owner = "pwntester"; repo = "octo.nvim"; - rev = "f37efab489a99b4a104e5ee18c73453d5e828b62"; - sha256 = "0m4r8w67na8yhwsr9j0xlrbhnwcfa41kv7jy55d8dz38kq0frkl0"; + rev = "66c0fe4256c4ed1c9f79977ee961d38cedf7d6c6"; + sha256 = "0fg8jdk3i97wghjjs5d72ps4y6vm575cayjqhbw94639n1x3dww6"; }; meta.homepage = "https://github.com/pwntester/octo.nvim/"; }; oil-nvim = buildVimPluginFrom2Nix { pname = "oil.nvim"; - version = "2023-04-21"; + version = "2023-04-29"; src = fetchFromGitHub { owner = "stevearc"; repo = "oil.nvim"; - rev = "3ac035e5ac448ce898c9aad7158a47378be4e85a"; - sha256 = "01znzj38mhnh80w7n101ysq4vsd651lsbk6rr8d1g2nc61m1c2bc"; + rev = "82c706822bb13a8ea7a21e0e3dccc83eaf40bfbc"; + sha256 = "0qkp0axsbq7wwdqr20zqmgvc8k2zi3rfrspi5d0c5qq5yih518b5"; fetchSubmodules = true; }; meta.homepage = "https://github.com/stevearc/oil.nvim/"; @@ -7079,12 +7079,12 @@ final: prev: onedark-nvim = buildVimPluginFrom2Nix { pname = "onedark.nvim"; - version = "2023-04-20"; + version = "2023-04-29"; src = fetchFromGitHub { owner = "navarasu"; repo = "onedark.nvim"; - rev = "d20f23c0d6810c8754737428771eef40bd1056a7"; - sha256 = "0xb50bz86dmlnsqnpl7b29glpx84i4m1c2sm9q03sf6xdizdpk2a"; + rev = "82cad746101300aa2fdea5f4d121c51c23bab8bd"; + sha256 = "080hjnd8pmy186ml5sv4hcqxh3wd84jl61119rcv6cvkaapfvcxz"; }; meta.homepage = "https://github.com/navarasu/onedark.nvim/"; }; @@ -7103,12 +7103,12 @@ final: prev: onedarkpro-nvim = buildVimPluginFrom2Nix { pname = "onedarkpro.nvim"; - version = "2023-04-14"; + version = "2023-04-22"; src = fetchFromGitHub { owner = "olimorris"; repo = "onedarkpro.nvim"; - rev = "434b67beced0b518804712ab04b8cf4bcf1aed7d"; - sha256 = "0580qvrc5f9z7vbgwys83gm6grcc77nhy8l5hy5bg5yfg342aajf"; + rev = "0147f69893496b3df605d64acdf4b66f03b0654e"; + sha256 = "11xxjw1x5dn32g42v61kxyr2g4j0nci4skla4bp4lkdywi6ag1cp"; }; meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; }; @@ -7175,24 +7175,24 @@ final: prev: orgmode = buildVimPluginFrom2Nix { pname = "orgmode"; - version = "2023-04-15"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "nvim-orgmode"; repo = "orgmode"; - rev = "d8020e95f531369962d74d037f603d038d70de1e"; - sha256 = "08zq7fnmj2bcz96f2zwjghp10w75ww6qqslyrdn4hic0vvdw976l"; + rev = "4647d20e33bf14c70fd44e1a4ee071ce1351d139"; + sha256 = "1rrqbkqk837plkizzxp83w4agqikccgp6582ijwxhnc526qlz7nm"; }; meta.homepage = "https://github.com/nvim-orgmode/orgmode/"; }; oxocarbon-nvim = buildVimPluginFrom2Nix { pname = "oxocarbon.nvim"; - version = "2023-04-02"; + version = "2023-04-23"; src = fetchFromGitHub { owner = "nyoom-engineering"; repo = "oxocarbon.nvim"; - rev = "be12ad8a9607a195d0fc081af0bf3cd38b095d12"; - sha256 = "0sj5as0p3aqddfiwgvch7dnmhq3qw06jhdp7ac5v1hi8bmskgbfm"; + rev = "7d09a07fab1aa770baf5491b78f9bbf0d305f114"; + sha256 = "16h8c3lfagwmkvg9lx7cphzi4nclwd3yg5npysv4zb6z8w88465h"; }; meta.homepage = "https://github.com/nyoom-engineering/oxocarbon.nvim/"; }; @@ -7223,12 +7223,12 @@ final: prev: palenight-vim = buildVimPluginFrom2Nix { pname = "palenight.vim"; - version = "2020-10-20"; + version = "2023-04-27"; src = fetchFromGitHub { owner = "drewtempelmeyer"; repo = "palenight.vim"; - rev = "847fcf5b1de2a1f9c28fdcc369d009996c6bf633"; - sha256 = "0v7jkg6rpwmyq0wl6lymm2j07r0mzab8lbsnxb0jw34hcpx0rfis"; + rev = "5552a6349bcd927df9f17db34f017b77b963e503"; + sha256 = "0mdzml7g40rh4j8q98s209pmg62h2pi968k2nrnxkzrr3yxi6f6z"; }; meta.homepage = "https://github.com/drewtempelmeyer/palenight.vim/"; }; @@ -7657,12 +7657,12 @@ final: prev: refactoring-nvim = buildVimPluginFrom2Nix { pname = "refactoring.nvim"; - version = "2023-04-04"; + version = "2023-04-25"; src = fetchFromGitHub { owner = "theprimeagen"; repo = "refactoring.nvim"; - rev = "e7c40818b2995016ede93c5620055206b1aba44f"; - sha256 = "0p05vkbfwpknfq0f8lls10k5iwaibhzr2df2fsmp4h327vabiywa"; + rev = "47a1716a9020c0093a1c8af36c3f9434dae62bbd"; + sha256 = "12pbz5m42capc841x89bin9kinck4ysycks7pyj2zg8z8yb9xp5f"; }; meta.homepage = "https://github.com/theprimeagen/refactoring.nvim/"; }; @@ -7693,12 +7693,12 @@ final: prev: rest-nvim = buildNeovimPluginFrom2Nix { pname = "rest.nvim"; - version = "2023-04-12"; + version = "2023-04-27"; src = fetchFromGitHub { owner = "rest-nvim"; repo = "rest.nvim"; - rev = "df826bc0a76d5eb79b458db894d47a5538b454fe"; - sha256 = "13f3s5xzl572y2pa7j67h7sgmnkjhkrchzqd1fjjx6098r15qnsk"; + rev = "4ca39f739919c43b620c6fc9e314fdee136bdd54"; + sha256 = "1jwr0gbz0rrp8gfc05l3m9x6y108n88ara4ckc01a75sr5k3nk5d"; }; meta.homepage = "https://github.com/rest-nvim/rest.nvim/"; }; @@ -7837,12 +7837,12 @@ final: prev: scope-nvim = buildVimPluginFrom2Nix { pname = "scope.nvim"; - version = "2022-06-27"; + version = "2023-04-24"; src = fetchFromGitHub { owner = "tiagovla"; repo = "scope.nvim"; - rev = "2db6d31de8e3a98d2b41c0f0d1f5dc299ee76875"; - sha256 = "10l7avsjcgzh0s29az4zzskqcp9jw5xpvdiih02rf7c1j85zxm85"; + rev = "6c5d5d73701e45b1fad50fa821fe9bf88ab2eec6"; + sha256 = "1ryfnjl0384aq0mi2i8b9993hx9s2wgriixf02pmb8mz9hv38rpm"; }; meta.homepage = "https://github.com/tiagovla/scope.nvim/"; }; @@ -8018,12 +8018,12 @@ final: prev: smart-splits-nvim = buildVimPluginFrom2Nix { pname = "smart-splits.nvim"; - version = "2023-04-20"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "mrjones2014"; repo = "smart-splits.nvim"; - rev = "e1dbc83510616df73a645f616431cfe1348898f8"; - sha256 = "1yyz16hb9h76gnilim6mwsyim3arkki7raaa53nxndr7gmjgkywd"; + rev = "c9ed0ebe308bf157fe7c2f10ab6d9dbef5b2be94"; + sha256 = "1b06w8gn76qhnirgrhkn18hi1vb6ylws2pg4nakr8ga7bj6djm38"; }; meta.homepage = "https://github.com/mrjones2014/smart-splits.nvim/"; }; @@ -8090,12 +8090,12 @@ final: prev: sonokai = buildVimPluginFrom2Nix { pname = "sonokai"; - version = "2023-04-16"; + version = "2023-04-24"; src = fetchFromGitHub { owner = "sainnhe"; repo = "sonokai"; - rev = "95d0ed42b40e6e050b4f0e5f08a7bf7b348f7808"; - sha256 = "096hzz7ksydvzz2p605yx1gz0w8bsk9k1rywjsbzm6m6ybwqc1g4"; + rev = "a9b2a3e83ed4fa7a5541e41be9becaa7b436edcf"; + sha256 = "0zfgi04c42n1bf5l9zj4g5k60fnsp2njf12vkpfnq2vqdcj1563i"; }; meta.homepage = "https://github.com/sainnhe/sonokai/"; }; @@ -8222,12 +8222,12 @@ final: prev: splitjoin-vim = buildVimPluginFrom2Nix { pname = "splitjoin.vim"; - version = "2023-04-09"; + version = "2023-04-23"; src = fetchFromGitHub { owner = "AndrewRadev"; repo = "splitjoin.vim"; - rev = "8a1d52c374f1347c259e9557658be06d7acf3e79"; - sha256 = "1yccnam55pr8nshgjfqqvzfczi7qyflkxkgs46yp90vinmibjb12"; + rev = "c00fa513974811e7bdf34b3d8a53abbd69c9042c"; + sha256 = "08afyma20gv9snv526ppy078hjd5jixxhpzlqw2h7aya0jb455bk"; fetchSubmodules = true; }; meta.homepage = "https://github.com/AndrewRadev/splitjoin.vim/"; @@ -8247,12 +8247,12 @@ final: prev: srcery-vim = buildVimPluginFrom2Nix { pname = "srcery-vim"; - version = "2022-12-20"; + version = "2023-04-25"; src = fetchFromGitHub { owner = "srcery-colors"; repo = "srcery-vim"; - rev = "91958b5bcac9dd78d6c66fc75816464fac29e27c"; - sha256 = "18wp8kj8wj2w3x3qk1jlz0hsniw7jn9igps0rcgcfr6122qggh11"; + rev = "6545397ee8119c43f5717600a42ad4b44be0f572"; + sha256 = "1i71l565kmfqrl691ccs1p12v3rig00j4bvl9qg9fhwwxk61bcpx"; }; meta.homepage = "https://github.com/srcery-colors/srcery-vim/"; }; @@ -8790,12 +8790,12 @@ final: prev: telescope-project-nvim = buildVimPluginFrom2Nix { pname = "telescope-project.nvim"; - version = "2023-03-23"; + version = "2023-04-27"; src = fetchFromGitHub { owner = "nvim-telescope"; repo = "telescope-project.nvim"; - rev = "fa081e35ba7397e5147a51ece693aa3afda167fc"; - sha256 = "0bpqqkrw2s3hx8am4q1xizh1srxhnm9fxajnxv1cj1vxy0inkihk"; + rev = "7c64b181dd4e72deddcf6f319e3bf1e95b2a2f30"; + sha256 = "1amcaf182p3b27hx32m6vj1n3nz97qicwx3h51g5jlaf78z6pa8z"; }; meta.homepage = "https://github.com/nvim-telescope/telescope-project.nvim/"; }; @@ -8899,12 +8899,12 @@ final: prev: telescope-nvim = buildNeovimPluginFrom2Nix { pname = "telescope.nvim"; - version = "2023-04-10"; + version = "2023-04-26"; src = fetchFromGitHub { owner = "nvim-telescope"; repo = "telescope.nvim"; - rev = "6258d50b09f9ae087317e392efe7c05a7323492d"; - sha256 = "0p4wz6gvs7952gbzlaz8sdjb92s1nwwry8mkxywi37pn8z6rvj2h"; + rev = "713d26b98583b160b50fb827adb751f768238ed3"; + sha256 = "0g9ac5wp9vnj2qmwc4v6ix0pjsaqg0q5vk42wbyjjnkxa17f2y1b"; }; meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; }; @@ -9152,24 +9152,24 @@ final: prev: toggleterm-nvim = buildVimPluginFrom2Nix { pname = "toggleterm.nvim"; - version = "2023-04-12"; + version = "2023-04-24"; src = fetchFromGitHub { owner = "akinsho"; repo = "toggleterm.nvim"; - rev = "1c5996ee3c30b54751093fe68d40676859e7778f"; - sha256 = "0m0xaw7d9yf9xy4j9x9y8lj7alr9zmys5picknfklyxq6p7szh6b"; + rev = "68fdf851c2b7901a7065ff129b77d3483419ddce"; + sha256 = "04lphxnwzlsacszdikzwipm8wycwzi0zyz1lvpqplpk6vrfbb58v"; }; meta.homepage = "https://github.com/akinsho/toggleterm.nvim/"; }; tokyonight-nvim = buildVimPluginFrom2Nix { pname = "tokyonight.nvim"; - version = "2023-04-19"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "folke"; repo = "tokyonight.nvim"; - rev = "ff81eac0ecf85db235dfc4c9d54f2d07d662a423"; - sha256 = "1zccj9jff1cyi5z1cg2dy7ly42z2zxr1csd22akrlxf2956v3nb1"; + rev = "c5df636ce62a8aab7565f35da143cfd672526302"; + sha256 = "1pfhrkn4r5r4pnr7jfc6cv29ijjvyacs7zpyarhi6fzkvnwz4pdw"; }; meta.homepage = "https://github.com/folke/tokyonight.nvim/"; }; @@ -9200,12 +9200,12 @@ final: prev: treesj = buildVimPluginFrom2Nix { pname = "treesj"; - version = "2023-04-19"; + version = "2023-04-24"; src = fetchFromGitHub { owner = "Wansmer"; repo = "treesj"; - rev = "61830dd2ba196e3e62557386607928889741ab3d"; - sha256 = "046ggamsbss9am5qs0ggp7dp8izqzyxc5sk9sagiy4nzl2j1mzz6"; + rev = "cba4aca075e4a9687cfd34b40328cac06126bc07"; + sha256 = "0dz4a8jnq5ii0h8amlc5gcx08qqgnj7y2l6hb89iihqibvcny0ma"; }; meta.homepage = "https://github.com/Wansmer/treesj/"; }; @@ -9306,6 +9306,18 @@ final: prev: meta.homepage = "https://github.com/leafgarland/typescript-vim/"; }; + typescript-nvim = buildVimPluginFrom2Nix { + pname = "typescript.nvim"; + version = "2023-01-03"; + src = fetchFromGitHub { + owner = "jose-elias-alvarez"; + repo = "typescript.nvim"; + rev = "f66d4472606cb24615dfb7dbc6557e779d177624"; + sha256 = "1hm87jpscv250x8hv3vacw0sdhkwa81x21cxyvc6nf2vsbj5hx9w"; + }; + meta.homepage = "https://github.com/jose-elias-alvarez/typescript.nvim/"; + }; + ultisnips = buildVimPluginFrom2Nix { pname = "ultisnips"; version = "2023-02-01"; @@ -9344,12 +9356,12 @@ final: prev: unison = buildVimPluginFrom2Nix { pname = "unison"; - version = "2023-04-21"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "unisonweb"; repo = "unison"; - rev = "c32964f6fb35a7ad2bc74320bb7032477965881b"; - sha256 = "19bpf235rv3gdyx94ancwmg9an0zjlkf0k0i75vmx6y01kb0an55"; + rev = "7e6936ed62620080322ca254dfb60aabb9bc6774"; + sha256 = "1bz41fcp7ry8wpl38q9q03kc2mwc2cnqy3m28fvyzcplpary0x2d"; }; meta.homepage = "https://github.com/unisonweb/unison/"; }; @@ -10124,12 +10136,12 @@ final: prev: vim-capslock = buildVimPluginFrom2Nix { pname = "vim-capslock"; - version = "2022-01-15"; + version = "2023-04-26"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-capslock"; - rev = "529b32877e144f7c1a6fabe357317c4b7d94a98e"; - sha256 = "1jay0hv9asvqpi02zcwp23l2b90n17qbc87jbvzgzjmqjgwi5dk6"; + rev = "2bd1d47d35ac489b150d284141b6dce743a307f5"; + sha256 = "1f5c7x08w5hgygxi4fxxdvk49m9s4nxd42lsiqs3fzzl8lgmil7s"; }; meta.homepage = "https://github.com/tpope/vim-capslock/"; }; @@ -10448,12 +10460,12 @@ final: prev: vim-dadbod-completion = buildVimPluginFrom2Nix { pname = "vim-dadbod-completion"; - version = "2022-12-08"; + version = "2023-04-25"; src = fetchFromGitHub { owner = "kristijanhusak"; repo = "vim-dadbod-completion"; - rev = "e71eb6140556c5ced80de6299a1fdfe22bd3c1b1"; - sha256 = "1d3gg2s9krvq9nasa3iwb7kv3jx5v74h0h55syp7d7hl7idysgdd"; + rev = "fc7321a17f4c55db11fae89a884ddf4724020bae"; + sha256 = "1y3yx8zzlca47b3yswsyj3z9zx43xnx6nrvxjabm6wxl2dhgxhqw"; }; meta.homepage = "https://github.com/kristijanhusak/vim-dadbod-completion/"; }; @@ -10712,12 +10724,12 @@ final: prev: vim-endwise = buildVimPluginFrom2Nix { pname = "vim-endwise"; - version = "2023-04-17"; + version = "2023-04-23"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-endwise"; - rev = "49f7283374f8e3badd3701e35420cf6cb386ef2a"; - sha256 = "0afh1k81b2j169h6bzd4hjr3cp0iizc3z3cj4ycj7a3h0n6pzm3s"; + rev = "e714ac3bcfd5a90038de49c3254eded7c70ae3c3"; + sha256 = "1zhz2risd8vhwnz5b5r5kkgflhxsp87df86n1brbh22jgzx5sapx"; }; meta.homepage = "https://github.com/tpope/vim-endwise/"; }; @@ -10964,12 +10976,12 @@ final: prev: vim-fugitive = buildVimPluginFrom2Nix { pname = "vim-fugitive"; - version = "2023-04-14"; + version = "2023-04-29"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-fugitive"; - rev = "e6651a79facf5cc2b7c554fdc19eb8a9fe89602c"; - sha256 = "1n6sswhn0x7qg7jpk38790lbrbvpz1k5wjfjanplfz35h2njjyag"; + rev = "5f0d280b517cacb16f59316659966c7ca5e2bea2"; + sha256 = "0qgxchrsydxznxwz3gwksqg3nal1ypmwi0ibpkf4whc62a8xxgl6"; }; meta.homepage = "https://github.com/tpope/vim-fugitive/"; }; @@ -11060,12 +11072,12 @@ final: prev: vim-gitgutter = buildVimPluginFrom2Nix { pname = "vim-gitgutter"; - version = "2023-03-16"; + version = "2023-04-27"; src = fetchFromGitHub { owner = "airblade"; repo = "vim-gitgutter"; - rev = "44dbd57dd19e8ec58b2a50c787c8ae7bb231c145"; - sha256 = "05nnfkrqm9py0c2hs7wcn248hvvb6qdm3ak9hpfy7y3y6r7a9cim"; + rev = "2ee95686c5944f99b42dd04fec005b30497006de"; + sha256 = "1lg74l6rw6m1fy39c039vynpb97gq0j066k9gn9wll7zjxqjwfss"; }; meta.homepage = "https://github.com/airblade/vim-gitgutter/"; }; @@ -11842,12 +11854,12 @@ final: prev: vim-lsp = buildVimPluginFrom2Nix { pname = "vim-lsp"; - version = "2023-04-13"; + version = "2023-04-27"; src = fetchFromGitHub { owner = "prabirshrestha"; repo = "vim-lsp"; - rev = "80644e108b71d8735ab4c03dbc53db5ec6598d9b"; - sha256 = "1m3c8sq48acb1mcv1b1dxyh6zfm2i46hvaf0i7nx8ndnasd3jap4"; + rev = "507565f281a739c7aa1d3852d96baaaf4ee93882"; + sha256 = "0d8gpb3nw5p5wilg70gf3vbr6xgjq4h4v82fmnyyjysxx2hc5vkf"; }; meta.homepage = "https://github.com/prabirshrestha/vim-lsp/"; }; @@ -11951,12 +11963,12 @@ final: prev: vim-matchup = buildVimPluginFrom2Nix { pname = "vim-matchup"; - version = "2023-04-20"; + version = "2023-04-29"; src = fetchFromGitHub { owner = "andymass"; repo = "vim-matchup"; - rev = "1364b2ba551c82fdb342b646da666a477490c063"; - sha256 = "1fqnp195gxh8wcjvdv01iq6zd04d43nml3d2qlxqr6fcc5pvrn9a"; + rev = "a8d1b8e635d666b19effa842f331ffa32beb57c2"; + sha256 = "0v0q5jlw8fclhr5d78gbz9bfhxj4k3fz2rgqafnfnzzjwpn7jzxy"; }; meta.homepage = "https://github.com/andymass/vim-matchup/"; }; @@ -12167,12 +12179,12 @@ final: prev: vim-nickel = buildVimPluginFrom2Nix { pname = "vim-nickel"; - version = "2022-12-15"; + version = "2023-04-27"; src = fetchFromGitHub { owner = "nickel-lang"; repo = "vim-nickel"; - rev = "55e7d1b6a723115497ec214d3d72e37a6114a767"; - sha256 = "1424vw1hrp4v45vp8skygvn53437ln3c44zal8jl0nflvmpkc9z6"; + rev = "b9c3d1fcc26f1d44cbe8c0b6c64beeac0b8c7760"; + sha256 = "1sjz3slq8y4zxb1mrsp0ny0kbq8jy6z4zsvmlw1hxgk28ghawh0s"; }; meta.homepage = "https://github.com/nickel-lang/vim-nickel/"; }; @@ -12827,12 +12839,12 @@ final: prev: vim-rails = buildVimPluginFrom2Nix { pname = "vim-rails"; - version = "2023-04-16"; + version = "2023-04-24"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-rails"; - rev = "eb51379ebab26ca3ec45d54f848c310c45ce7692"; - sha256 = "0z8zsyv3g1224g6iwgf0wchnqn6cmr7w9h0ddgv3lysvh7qz6mla"; + rev = "2b8c4fc831e0de2681beda0a2f48222812920a1d"; + sha256 = "1n3v24ngwqhpgkaij8nl9gq5snzvkwjapgp10n88rc8f65px3hqk"; }; meta.homepage = "https://github.com/tpope/vim-rails/"; }; @@ -12887,12 +12899,12 @@ final: prev: vim-rsi = buildVimPluginFrom2Nix { pname = "vim-rsi"; - version = "2022-07-12"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-rsi"; - rev = "4c673fb6c70652a09682c50a0e308184731ca70b"; - sha256 = "1vfgb6ip8rnwxvjayv4lxar274bx3wykax3ms07wyna9p9pp5qfj"; + rev = "45540637ead22f011e8215f1c90142e49d946a54"; + sha256 = "0vr5mlna5f60dmhk4ims7g0ikqw15h21hr619xii1069ggddqr9v"; }; meta.homepage = "https://github.com/tpope/vim-rsi/"; }; @@ -13055,12 +13067,12 @@ final: prev: vim-signify = buildVimPluginFrom2Nix { pname = "vim-signify"; - version = "2022-12-28"; + version = "2023-04-27"; src = fetchFromGitHub { owner = "mhinz"; repo = "vim-signify"; - rev = "a05e63ba72411977f5087c27c1564c9287bfab66"; - sha256 = "1z435v9y7nkffwr2b7rnmjla21nfb3wvdnf6s32vw4h6n5wgj3bl"; + rev = "6a9499c1e13a7356780d9cf813380baefaebcb32"; + sha256 = "02adkf307pw2cwyqq3isb2x60rh1waam9mvx0jnqpg46qar3d71b"; }; meta.homepage = "https://github.com/mhinz/vim-signify/"; }; @@ -13211,24 +13223,24 @@ final: prev: vim-snippets = buildVimPluginFrom2Nix { pname = "vim-snippets"; - version = "2023-03-05"; + version = "2023-04-29"; src = fetchFromGitHub { owner = "honza"; repo = "vim-snippets"; - rev = "c7e61b73a546c9dd0525cd158cc1613bb48e414a"; - sha256 = "02m3pq8lk1qk0mdjjila59grsg2bpsir02jlrir1dmk3ifsy38wh"; + rev = "5094d3658023cf743379f45c4c34bcc0a39ca4a2"; + sha256 = "0x9j86iv7dfz80gjacbhqw0dinw84ymsfw300vwq9yn3gsrbl4ax"; }; meta.homepage = "https://github.com/honza/vim-snippets/"; }; vim-solarized8 = buildVimPluginFrom2Nix { pname = "vim-solarized8"; - version = "2023-02-25"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "lifepillar"; repo = "vim-solarized8"; - rev = "bcd4e74e9850fd59ee0294a5c3ae958ed535cc52"; - sha256 = "00qhqy511wdcmlsglwhqsd6gffagjmdz0wl5627a3nwmxs8p45sa"; + rev = "b0b5d4dd1e582cd5f681bb438346ce5848d845fd"; + sha256 = "0dp3vj80dgkm5zv0hjmmx1810z1ajl77sbwb1v2sbhk2c3mgr0cv"; }; meta.homepage = "https://github.com/lifepillar/vim-solarized8/"; }; @@ -13295,12 +13307,12 @@ final: prev: vim-startuptime = buildVimPluginFrom2Nix { pname = "vim-startuptime"; - version = "2023-04-21"; + version = "2023-04-24"; src = fetchFromGitHub { owner = "dstein64"; repo = "vim-startuptime"; - rev = "00391e7f86a0fd0ebdb2afdf4336f6712925ce45"; - sha256 = "1n0q0mgb52yr5vv053dgkp1vhzl42l7ancmpbg5vwc4gj0bwm603"; + rev = "01b67169c3ebe41f163c07bf6853555ca19bc27f"; + sha256 = "1rbmri63v3wmx841pzncjqsw495dlwc0m0p4nr2r9mg4ccpq2xqm"; }; meta.homepage = "https://github.com/dstein64/vim-startuptime/"; }; @@ -13451,12 +13463,12 @@ final: prev: vim-terraform = buildVimPluginFrom2Nix { pname = "vim-terraform"; - version = "2023-01-11"; + version = "2023-04-26"; src = fetchFromGitHub { owner = "hashivim"; repo = "vim-terraform"; - rev = "d00503de9bed3a1da7206090cb148c6a1acce870"; - sha256 = "1vh8yv2cpyfnqmmjza8dm3b11mhz9x8lwln865hdjggzbj9vdbcg"; + rev = "2bbc5f65a80c79a5110494a2ba1b869075fcf7a0"; + sha256 = "0k79q0703ngknrxm4mnhg1qvgkfh2ga7sli6krkx1hd9ikb4p5qp"; }; meta.homepage = "https://github.com/hashivim/vim-terraform/"; }; @@ -13476,12 +13488,12 @@ final: prev: vim-test = buildVimPluginFrom2Nix { pname = "vim-test"; - version = "2023-04-11"; + version = "2023-04-24"; src = fetchFromGitHub { owner = "vim-test"; repo = "vim-test"; - rev = "8183037eccad54deb2100a9665157e4405fa4702"; - sha256 = "10mj43mm366h91nfp4cnkw61kvdx0pm0kzac0yc41bar91mmpbg6"; + rev = "5af7aa2a07c70f730b03c893821366961b108cf2"; + sha256 = "0pgbq148pfizjklg4276n9rniklqqhhlg48p73i2capgkm50hnjd"; }; meta.homepage = "https://github.com/vim-test/vim-test/"; }; @@ -13596,12 +13608,12 @@ final: prev: vim-tmux-clipboard = buildVimPluginFrom2Nix { pname = "vim-tmux-clipboard"; - version = "2023-02-02"; + version = "2023-04-24"; src = fetchFromGitHub { owner = "roxma"; repo = "vim-tmux-clipboard"; - rev = "e1be6608410c260479dc4807ad8c103faf5460d8"; - sha256 = "07a8jj1j8422a8grvp440qbrxmzchqxc3mgmpa7hsyqlkw5fjkj8"; + rev = "d4774dc7dfdd4b8a60613355ed32e6a1c18220cf"; + sha256 = "0qmxpf5k0n0vc6pmns3z2gbgvi4jgqh0jqgaq5n5q7f9nf5mpwy1"; }; meta.homepage = "https://github.com/roxma/vim-tmux-clipboard/"; }; @@ -13992,12 +14004,12 @@ final: prev: vim-xkbswitch = buildVimPluginFrom2Nix { pname = "vim-xkbswitch"; - version = "2023-04-20"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "lyokha"; repo = "vim-xkbswitch"; - rev = "cba47eaec8931266c34c4ab1247abe04f3b7ef55"; - sha256 = "0fgd10j4c64zc77pc2q3d5x7hg1h844lfj2cdqqxgds33nf2cald"; + rev = "4aa9050c58b0b96a7bd28accd15d93fc410af725"; + sha256 = "18m4gmdf2pqhgrbm3mr79r6c7pcvc0i5rcpnaz62dj2qd3bkb5l1"; }; meta.homepage = "https://github.com/lyokha/vim-xkbswitch/"; }; @@ -14196,12 +14208,12 @@ final: prev: vimspector = buildVimPluginFrom2Nix { pname = "vimspector"; - version = "2023-04-21"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "puremourning"; repo = "vimspector"; - rev = "bcf6dad40903ad34843a7536d3a4cff6ac5c0035"; - sha256 = "0lngsihdwv3s46b61r7kpnac3r0iw1vhh2bggn3k9ldmzds36rzb"; + rev = "6cb63b9329685b750b9b689a942c47b9012c8bbc"; + sha256 = "1y9vs7gyv8810d8frm11izbcvasj777rw448mmzag2agksyv17yf"; fetchSubmodules = true; }; meta.homepage = "https://github.com/puremourning/vimspector/"; @@ -14209,12 +14221,12 @@ final: prev: vimtex = buildVimPluginFrom2Nix { pname = "vimtex"; - version = "2023-04-16"; + version = "2023-05-01"; src = fetchFromGitHub { owner = "lervag"; repo = "vimtex"; - rev = "d3dfbf391ba8d8f08ab91ce8e54173cddc708b02"; - sha256 = "1kv6004a8r1c68kda1zn853kddbqb8dafxba8a5h3rcjqcbjn1kn"; + rev = "871ac461e9314598b5b26c3a1a9f5e36c17dff14"; + sha256 = "1n1qyg5v4r8j816y5abqclhmsyny0k3arwlz23rlvdidwq5d1zn8"; }; meta.homepage = "https://github.com/lervag/vimtex/"; }; @@ -14317,24 +14329,24 @@ final: prev: wgsl-vim = buildVimPluginFrom2Nix { pname = "wgsl.vim"; - version = "2023-04-12"; + version = "2023-04-29"; src = fetchFromGitHub { owner = "DingDean"; repo = "wgsl.vim"; - rev = "b72cb2c28ec9554be240113bceb34198f88484e6"; - sha256 = "1l1y9dwp33g5gp5mvyq4vkw8q8369r493i0qfn81nmwnmc09rsbn"; + rev = "fdf91e11243266dfe923fc08c2fc9749429bc5aa"; + sha256 = "05b1i0w65yz44hlwc4xghw6i23skkb78f02nlc0szzxksrm70xmg"; }; meta.homepage = "https://github.com/DingDean/wgsl.vim/"; }; which-key-nvim = buildVimPluginFrom2Nix { pname = "which-key.nvim"; - version = "2023-04-18"; + version = "2023-04-27"; src = fetchFromGitHub { owner = "folke"; repo = "which-key.nvim"; - rev = "94cb020ff33a1e0e22fac1c41663d2c439741f17"; - sha256 = "1xq9l53n5l1dyyj4xvw30wra9g8c8xg82sijx1ahgfcqkz4j1zib"; + rev = "4acffc92953a90a790603bfdab7c92319ab167b1"; + sha256 = "1msiqpxsnmdxgxcxhlpgjaz9fyg2jy4lbvfv0p8b265vlnym4ymy"; }; meta.homepage = "https://github.com/folke/which-key.nvim/"; }; @@ -14618,12 +14630,12 @@ final: prev: catppuccin-nvim = buildVimPluginFrom2Nix { pname = "catppuccin-nvim"; - version = "2023-04-20"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "catppuccin"; repo = "nvim"; - rev = "939be5f7fcbc15abeaad9214bb253a4551f6f6e6"; - sha256 = "16dmasj74szapc0p9kv35yb0smci7zk4k17p5d301lslrhr5jg35"; + rev = "94d10b558e679447064fe72ddf764b6fea3f0c85"; + sha256 = "0pklfhfhwnwgnjdkv80gwc3wjcd2q7hsjs7wwjsbn5j6bv1f3x5s"; }; meta.homepage = "https://github.com/catppuccin/nvim/"; }; @@ -14642,12 +14654,12 @@ final: prev: chad = buildVimPluginFrom2Nix { pname = "chad"; - version = "2023-04-16"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "ms-jpq"; repo = "chadtree"; - rev = "bac02812a4ccb695a02dcc46ed6b33d56b31b147"; - sha256 = "1d0hhlia4s9nb81ah5f3qilmsflyax5w38w3fjpqvffikxn9rvzs"; + rev = "30ea3d112fd8527f0e5e27becb76b291179e34df"; + sha256 = "0sv6m6v3gdi8s8jgdxq0p6dd42y8p0kvl7sq6jhqws6dw9zi5z9p"; }; meta.homepage = "https://github.com/ms-jpq/chadtree/"; }; @@ -14690,12 +14702,12 @@ final: prev: lspsaga-nvim-original = buildVimPluginFrom2Nix { pname = "lspsaga-nvim-original"; - version = "2023-04-19"; + version = "2023-04-28"; src = fetchFromGitHub { owner = "nvimdev"; repo = "lspsaga.nvim"; - rev = "c483c9b43fa6cb47fb8c18a8ebd4ece45bbf07f4"; - sha256 = "10gy1jvqkxq20bdq4k3mhc6ib1d15h0p9vmnmx55bgp5z1hby44c"; + rev = "349b3d412d4d277a7b2971352319a463952623c4"; + sha256 = "0y507651aqznknzw5fw0v7mwp6bcxz03cqgzmyrkb5qvbhpzdsj4"; }; meta.homepage = "https://github.com/nvimdev/lspsaga.nvim/"; }; @@ -14738,12 +14750,12 @@ final: prev: rose-pine = buildVimPluginFrom2Nix { pname = "rose-pine"; - version = "2023-04-18"; + version = "2023-04-30"; src = fetchFromGitHub { owner = "rose-pine"; repo = "neovim"; - rev = "667851c05f87874826084474b5f04829940b6451"; - sha256 = "0j7f7fj3gy2p6q3vnkwxxll49p36fi8glzlzgbc08knwksdkgi30"; + rev = "2eace84d649d76d41dcd44a87a17f64c7c4a586d"; + sha256 = "0y7649xbny9qvwlcszzi9r69f8af92v3ibbkbmy2vyygzbcr3a73"; }; meta.homepage = "https://github.com/rose-pine/neovim/"; }; diff --git a/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix b/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix index 8d1654913fab..34bc432a8d06 100644 --- a/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix +++ b/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix @@ -148,12 +148,12 @@ }; capnp = buildGrammar { language = "capnp"; - version = "0.0.0+rev=fc6e2ad"; + version = "0.0.0+rev=7d5fa4e"; src = fetchFromGitHub { owner = "amaanq"; repo = "tree-sitter-capnp"; - rev = "fc6e2addf103861b9b3dffb82c543eb6b71061aa"; - hash = "sha256-FKzh0c/mTURLss8mv/c/p3dNXQxE/r5P063GEM8un70="; + rev = "7d5fa4e94d3643ec15750106113be0d40f9fc1bb"; + hash = "sha256-K83xouIGsv9EDLp4MSH9i6JE/GlAT72i3eJa58vR2gs="; }; meta.homepage = "https://github.com/amaanq/tree-sitter-capnp"; }; @@ -303,12 +303,12 @@ }; devicetree = buildGrammar { language = "devicetree"; - version = "0.0.0+rev=6428cee"; + version = "0.0.0+rev=d2cc332"; src = fetchFromGitHub { owner = "joelspadin"; repo = "tree-sitter-devicetree"; - rev = "6428cee0e9d76fac3291796ced56ac14ecd036ee"; - hash = "sha256-QU5lCnTe00Mj5IfrBBnGwvU5S3Gz9VL2FRTNy0FPnIo="; + rev = "d2cc332aeb814ea40e1e34ed6b9446324b32612a"; + hash = "sha256-iDiG6pNfALxy7nKyjuHfI9HW5/KElW/6zYguPaiMrzY="; }; meta.homepage = "https://github.com/joelspadin/tree-sitter-devicetree"; }; @@ -436,12 +436,12 @@ }; erlang = buildGrammar { language = "erlang"; - version = "0.0.0+rev=abf5794"; + version = "0.0.0+rev=7d083ca"; src = fetchFromGitHub { owner = "WhatsApp"; repo = "tree-sitter-erlang"; - rev = "abf5794511a912059b8234ea7e70d60b55df8805"; - hash = "sha256-38Q2HB5Hj7qdNwMyyXt1eNTqYHefkfC9teJM6PRE22A="; + rev = "7d083ca431265a6a677c10e8ca68a908ab0c2bc8"; + hash = "sha256-W08JXLPIjUBfHSaTEGbIKPStQr4jOVE1f9osjrWG82Q="; }; meta.homepage = "https://github.com/WhatsApp/tree-sitter-erlang"; }; @@ -579,12 +579,12 @@ }; gitcommit = buildGrammar { language = "gitcommit"; - version = "0.0.0+rev=04dcb2c"; + version = "0.0.0+rev=735f02b"; src = fetchFromGitHub { owner = "gbprod"; repo = "tree-sitter-gitcommit"; - rev = "04dcb2cb9a4cf638252b8bd4a829f9acadf2cc4c"; - hash = "sha256-plu1qzMfvMfSqapQ4q+ZYNULDM8mBwlNeOzHoSSC3Hc="; + rev = "735f02b12d9cdd9a8b90ac4b2dff8cdab6dd1e7b"; + hash = "sha256-uWePpMTJNiR7uh9LpmSiIQUHNiVDF8i32nckPKBFH3g="; }; meta.homepage = "https://github.com/gbprod/tree-sitter-gitcommit"; }; @@ -612,12 +612,12 @@ }; glimmer = buildGrammar { language = "glimmer"; - version = "0.0.0+rev=21805f4"; + version = "0.0.0+rev=d3031a8"; src = fetchFromGitHub { owner = "alexlafroscia"; repo = "tree-sitter-glimmer"; - rev = "21805f429c5b7536be9f5f61dcabb5d3a4173bec"; - hash = "sha256-EMcPjnf0SPa8Jk0GkkLTsOEGqRVdjbUt/DklRmXOGUA="; + rev = "d3031a8294bf331600d5046b1d14e690a0d8ba0c"; + hash = "sha256-YvftQHEwYxRyRIYHrnAjIqgx6O0FlFrnF9TwUE+RiqI="; }; meta.homepage = "https://github.com/alexlafroscia/tree-sitter-glimmer"; }; @@ -722,12 +722,12 @@ }; haskell = buildGrammar { language = "haskell"; - version = "0.0.0+rev=98fc7f5"; + version = "0.0.0+rev=3241b68"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-haskell"; - rev = "98fc7f59049aeb713ab9b72a8ff25dcaaef81087"; - hash = "sha256-BDvzmFIGABtkWEUbi74o3vPLsiwNWsQDNura867vYpU="; + rev = "3241b683cc1eaa466afb83b9a5592ab39caaa2fa"; + hash = "sha256-kGUBAXskVPRQHMwffYLRGO6uD9PNFWZeXkXsmp0yfKA="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-haskell"; }; @@ -788,34 +788,34 @@ }; html = buildGrammar { language = "html"; - version = "0.0.0+rev=594f23e"; + version = "0.0.0+rev=86c253e"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-html"; - rev = "594f23eb6da580cf269a59d966db68f2cde7d0c8"; - hash = "sha256-DgYcJjMCQ0C96l1J4if6FdArj5atxy3LsJr+SnZqiQo="; + rev = "86c253e675e7fdd1c0482efe0706f24bafbc3a7d"; + hash = "sha256-mOJ1JUlsnFPH5jQcWdhWJkoZ0qOK1CTvmi/gEPzzeYk="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-html"; }; htmldjango = buildGrammar { language = "htmldjango"; - version = "0.0.0+rev=b2dba02"; + version = "0.0.0+rev=11e73eb"; src = fetchFromGitHub { owner = "interdependence"; repo = "tree-sitter-htmldjango"; - rev = "b2dba02eddab66be669022320273d0dfe1ff923d"; - hash = "sha256-FEsvr9i0Lys8CzDlm2lhdJEAQNnmqRSFjn4I+CcZYM8="; + rev = "11e73ebd8e73356badaad826a0534437b208b6e7"; + hash = "sha256-xOWR5Lp9Ggkqmm5rutKrnMNXFASdyn6vPtxcY2mu2zs="; }; meta.homepage = "https://github.com/interdependence/tree-sitter-htmldjango"; }; http = buildGrammar { language = "http"; - version = "0.0.0+rev=2c6c445"; + version = "0.0.0+rev=f41d3e9"; src = fetchFromGitHub { owner = "rest-nvim"; repo = "tree-sitter-http"; - rev = "2c6c44574031263326cb1e51658bbc0c084326e7"; - hash = "sha256-R81n6vb7JzZlnK17SkiwYeJeMs0xYTXx/qFdTvT8V5c="; + rev = "f41d3e97ad148f0b2c2d913e3834ccd5816fdc02"; + hash = "sha256-yHsvrMPLL3zrmP/t8Bzfl9lR+SEkRy7RypmqM9sHZCk="; }; meta.homepage = "https://github.com/rest-nvim/tree-sitter-http"; }; @@ -830,14 +830,25 @@ }; meta.homepage = "https://github.com/justinmk/tree-sitter-ini"; }; + janet_simple = buildGrammar { + language = "janet_simple"; + version = "0.0.0+rev=bd9cbaf"; + src = fetchFromGitHub { + owner = "sogaiu"; + repo = "tree-sitter-janet-simple"; + rev = "bd9cbaf1ea8b942dfd58e68df10c9a378ab3d2b6"; + hash = "sha256-2FucTi1wATBcomyNx2oCqMJVmAqLWHJiPQ2+L0VtwUM="; + }; + meta.homepage = "https://github.com/sogaiu/tree-sitter-janet-simple"; + }; java = buildGrammar { language = "java"; - version = "0.0.0+rev=3c24aa9"; + version = "0.0.0+rev=c194ee5"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-java"; - rev = "3c24aa9365985830421a3a7b6791b415961ea770"; - hash = "sha256-06spTQhAIJvixfZ858vPKKv6FJ1AC4JElQzkugxfTuo="; + rev = "c194ee5e6ede5f26cf4799feead4a8f165dcf14d"; + hash = "sha256-PNR1XajfELQuwYvCHm8778TzeUlxb9D+HrVF26lQk2E="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-java"; }; @@ -876,12 +887,12 @@ }; json = buildGrammar { language = "json"; - version = "0.0.0+rev=7307675"; + version = "0.0.0+rev=40a81c0"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-json"; - rev = "73076754005a460947cafe8e03a8cf5fa4fa2938"; - hash = "sha256-wbE7CQ6l1wlhJdAoDVAj1QzyvlYnevbrlVCO0TMU7to="; + rev = "40a81c01a40ac48744e0c8ccabbaba1920441199"; + hash = "sha256-fZNftzNavJQPQE4S1VLhRyGQRoJgbWA5xTPa8ZI5UX4="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-json"; }; @@ -931,23 +942,23 @@ }; kdl = buildGrammar { language = "kdl"; - version = "0.0.0+rev=e36f054"; + version = "0.0.0+rev=d118f93"; src = fetchFromGitHub { owner = "amaanq"; repo = "tree-sitter-kdl"; - rev = "e36f054a60c4d9e5ae29567d439fdb8790b53b30"; - hash = "sha256-ZZLe7WBDIX1x1lmuHE1lmZ93YWXTW3iwPgXXbxXR/n4="; + rev = "d118f9376ef4f0461975289302fe74a28f073876"; + hash = "sha256-FxY7wqksjSJiOffb7FBcsDQ0oMr94CeGreBV8MMtFr4="; }; meta.homepage = "https://github.com/amaanq/tree-sitter-kdl"; }; kotlin = buildGrammar { language = "kotlin"; - version = "0.0.0+rev=c84d16e"; + version = "0.0.0+rev=100d79f"; src = fetchFromGitHub { owner = "fwcd"; repo = "tree-sitter-kotlin"; - rev = "c84d16e7f75032cdd8c4ad986a76ca9e1fe4e639"; - hash = "sha256-SvzWWsXlcT5aIpswhKA8xo7iRIDaDZkeUuPGyvfc2fk="; + rev = "100d79fd96b56a1b99099a8d2f3c114b8687acfb"; + hash = "sha256-+TLeB6S5MwbbxPZSvDasxAfTPV3YyjtR0pUTlFkdphc="; }; meta.homepage = "https://github.com/fwcd/tree-sitter-kotlin"; }; @@ -975,12 +986,12 @@ }; ledger = buildGrammar { language = "ledger"; - version = "0.0.0+rev=f787ae6"; + version = "0.0.0+rev=1cc4445"; src = fetchFromGitHub { owner = "cbarrete"; repo = "tree-sitter-ledger"; - rev = "f787ae635ca79589faa25477b94291a87e2d3e23"; - hash = "sha256-9Sc22IYWhUUzCslna3mzePd7bRbtWDwiWKvAzLYubOQ="; + rev = "1cc4445908966046c1dd211d9ddaac4c3198bd1d"; + hash = "sha256-GHxpVWvO9BWabBiYAyMeTt1+kQZmon3LeP9So2/voYw="; }; meta.homepage = "https://github.com/cbarrete/tree-sitter-ledger"; }; @@ -1019,15 +1030,26 @@ }; luap = buildGrammar { language = "luap"; - version = "0.0.0+rev=bfb38d2"; + version = "0.0.0+rev=393915d"; src = fetchFromGitHub { owner = "amaanq"; repo = "tree-sitter-luap"; - rev = "bfb38d254f380362e26b5c559a4086ba6e92ba77"; - hash = "sha256-HpKqesIa+x3EQGnWV07jv2uEW9A9TEN4bPNuecXEaFI="; + rev = "393915db4b16a792da9c60f52d11d93247d870b9"; + hash = "sha256-FLRPzU1JI8PoI8vZAKXG6DtHcnSksXCwTHAS0fb4WsY="; }; meta.homepage = "https://github.com/amaanq/tree-sitter-luap"; }; + luau = buildGrammar { + language = "luau"; + version = "0.0.0+rev=4f8fc20"; + src = fetchFromGitHub { + owner = "amaanq"; + repo = "tree-sitter-luau"; + rev = "4f8fc207b3a25b07cba1d3b4066f2872dcfe201f"; + hash = "sha256-vDkexlebgg/biif3MJ1c+OD8hy+4uvghIWZlqE9cQXg="; + }; + meta.homepage = "https://github.com/amaanq/tree-sitter-luau"; + }; m68k = buildGrammar { language = "m68k"; version = "0.0.0+rev=d097b12"; @@ -1311,12 +1333,12 @@ }; pony = buildGrammar { language = "pony"; - version = "0.0.0+rev=af8a2d4"; + version = "0.0.0+rev=5fd795a"; src = fetchFromGitHub { owner = "amaanq"; repo = "tree-sitter-pony"; - rev = "af8a2d40ed813d818380e7798f16732f34d95bf6"; - hash = "sha256-fgPnDU58qfZfRmBA2hBQt23TjJqiU6XobBYzRD7ZFz0="; + rev = "5fd795ae7597b568b0a356c5d243cc92162bc00c"; + hash = "sha256-uwxqbWK3Zy5heGQ3aSX73X6wY0FY3ewqjsQXgDl8nb0="; }; meta.homepage = "https://github.com/amaanq/tree-sitter-pony"; }; @@ -1364,6 +1386,17 @@ }; meta.homepage = "https://github.com/zealot128/tree-sitter-pug"; }; + puppet = buildGrammar { + language = "puppet"; + version = "0.0.0+rev=5e1bb97"; + src = fetchFromGitHub { + owner = "amaanq"; + repo = "tree-sitter-puppet"; + rev = "5e1bb979ea71efc0860d4bc56eb3b3f7a670d6ec"; + hash = "sha256-7xqZ5nVAyflQ84Zah6M6yxpJ8qQooWl6tOodioXvsI8="; + }; + meta.homepage = "https://github.com/amaanq/tree-sitter-puppet"; + }; python = buildGrammar { language = "python"; version = "0.0.0+rev=6282715"; @@ -1520,12 +1553,12 @@ }; rust = buildGrammar { language = "rust"; - version = "0.0.0+rev=fbf9e50"; + version = "0.0.0+rev=0a70e15"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-rust"; - rev = "fbf9e507d09d8b3c0bb9dfc4d46c31039a47dc4a"; - hash = "sha256-hWooQfE7sWXfOkGai3hREoEulcwWT6XPT4xAc+dfjKk="; + rev = "0a70e15da977489d954c219af9b50b8a722630ee"; + hash = "sha256-CrNY+4nsYQOzzVR7X+yuo4+5s6K3VHtVQyWfledKJ1U="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-rust"; }; @@ -1542,12 +1575,12 @@ }; scheme = buildGrammar { language = "scheme"; - version = "0.0.0+rev=9a23ff3"; + version = "0.0.0+rev=6abcfe3"; src = fetchFromGitHub { owner = "6cdh"; repo = "tree-sitter-scheme"; - rev = "9a23ff3df8f03da555f7679ab640a98a9e851c79"; - hash = "sha256-qEJgMSS6+q3lqks2CzG3XLZrd0Pl3b8jJiD/GA5TBOc="; + rev = "6abcfe33d976ebe3e244ca80273c7e8a070441b5"; + hash = "sha256-6lxpFk9YWVape/Oq2GFYcyNH8J38W+dmFdz+ykqBX0U="; }; meta.homepage = "https://github.com/6cdh/tree-sitter-scheme"; }; @@ -1575,12 +1608,12 @@ }; smali = buildGrammar { language = "smali"; - version = "0.0.0+rev=b002dce"; + version = "0.0.0+rev=9bf8aa6"; src = fetchFromSourcehut { owner = "~yotam"; repo = "tree-sitter-smali"; - rev = "b002dceb9b91a6d6de45479ab4b2e9596ebbaaf3"; - hash = "sha256-KZ5+3xqQkxAZcOY8UVxfycQWlaGHq9pv4MzjiIaVtLY="; + rev = "9bf8aa671a233ae2d2c6e9512c7144ce121b1fb6"; + hash = "sha256-V5JnB1JT8vV5zA+OjM0a7fBGC8CEqyPcUbeD8NoRTSE="; }; meta.homepage = "https://git.sr.ht/~yotam/tree-sitter-smali"; }; @@ -1619,12 +1652,12 @@ }; sql = buildGrammar { language = "sql"; - version = "0.0.0+rev=8f1c49f"; + version = "0.0.0+rev=9de72fb"; src = fetchFromGitHub { owner = "derekstride"; repo = "tree-sitter-sql"; - rev = "8f1c49febcb8944d39df8554d32c749b4f5f3158"; - hash = "sha256-9/Otouynt5Cqh5UdeiMsTo+F22fBu1U+EuN7e+TYQy4="; + rev = "9de72fb40cd6d13a64c3aeeabc079c6b8dadb339"; + hash = "sha256-WcKrYjOnWRf2ei4bAGH7zJJ/DEaaQ8lmAmO5LEkg17g="; }; meta.homepage = "https://github.com/derekstride/tree-sitter-sql"; }; @@ -1685,12 +1718,12 @@ }; swift = buildGrammar { language = "swift"; - version = "0.0.0+rev=05467af"; + version = "0.0.0+rev=56ecc99"; src = fetchFromGitHub { owner = "alex-pinkus"; repo = "tree-sitter-swift"; - rev = "05467af73ac315fc80c7f3ef397e261f30395e2a"; - hash = "sha256-4/5ZzxkMiv8qXCXM/M/+NBX9uMw46DnGTEFKbPgNNzU="; + rev = "56ecc996e5765054fc25cdae5fbddfd75a64287b"; + hash = "sha256-GH0HpxAprOlOLv8zqsP1O0/RbIn93FfdgAHp56Pyw9g="; }; generate = true; meta.homepage = "https://github.com/alex-pinkus/tree-sitter-swift"; @@ -1708,13 +1741,13 @@ }; t32 = buildGrammar { language = "t32"; - version = "0.0.0+rev=0802b36"; + version = "0.0.0+rev=ff822fd"; src = fetchFromGitea { domain = "codeberg.org"; owner = "xasc"; repo = "tree-sitter-t32"; - rev = "0802b3638a1c5022b4d55bdafa64f856ed43d7d6"; - hash = "sha256-9c5EUgtvoXXZQY5AtahyfmG9SGxcjhrrOxWa0eyicqU="; + rev = "ff822fd77bb919854ba60d05f4d373d9d578d0e0"; + hash = "sha256-jHVfyp8yLaxI+Aa4iH1fXpNIzIoGLdQwo7SvRGFKbFQ="; }; meta.homepage = "https://codeberg.org/xasc/tree-sitter-t32"; }; @@ -1810,12 +1843,12 @@ }; tsx = buildGrammar { language = "tsx"; - version = "0.0.0+rev=b66d19b"; + version = "0.0.0+rev=286e90c"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-typescript"; - rev = "b66d19b9b6ec3edf3d8aff0c20646acbdaa0afb3"; - hash = "sha256-YJrjxU2VmkVHTHta531fsJrx+K4Xih5kpFVEEqmvz34="; + rev = "286e90c32060032225f636a573d0e999f7766c97"; + hash = "sha256-lg/FxjosZkhosllT0PyCKggV1Z2V4rPdKFD4agRLeBo="; }; location = "tsx"; meta.homepage = "https://github.com/tree-sitter/tree-sitter-typescript"; @@ -1844,12 +1877,12 @@ }; typescript = buildGrammar { language = "typescript"; - version = "0.0.0+rev=b66d19b"; + version = "0.0.0+rev=286e90c"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-typescript"; - rev = "b66d19b9b6ec3edf3d8aff0c20646acbdaa0afb3"; - hash = "sha256-YJrjxU2VmkVHTHta531fsJrx+K4Xih5kpFVEEqmvz34="; + rev = "286e90c32060032225f636a573d0e999f7766c97"; + hash = "sha256-lg/FxjosZkhosllT0PyCKggV1Z2V4rPdKFD4agRLeBo="; }; location = "typescript"; meta.homepage = "https://github.com/tree-sitter/tree-sitter-typescript"; @@ -1934,12 +1967,12 @@ }; vimdoc = buildGrammar { language = "vimdoc"; - version = "0.0.0+rev=15c2fdc"; + version = "0.0.0+rev=b3fca1b"; src = fetchFromGitHub { owner = "neovim"; repo = "tree-sitter-vimdoc"; - rev = "15c2fdcc57f51f1caef82fe75e1ffb733626dcae"; - hash = "sha256-pke1yxPfZt4hykmT76sHpk/LOQHfcH/oII7oZyU8m6U="; + rev = "b3fca1b950ca9666bd1e891efe79470fb6dc403e"; + hash = "sha256-u+w304+VJ0pinvzqNM59Xd0g5YWuOatOSn2avozqTSY="; }; meta.homepage = "https://github.com/neovim/tree-sitter-vimdoc"; }; @@ -2011,12 +2044,12 @@ }; zig = buildGrammar { language = "zig"; - version = "0.0.0+rev=9b84cb6"; + version = "0.0.0+rev=0d08703"; src = fetchFromGitHub { owner = "maxxnino"; repo = "tree-sitter-zig"; - rev = "9b84cb66e7d480e7c0370f4e33e8325bac6ad09f"; - hash = "sha256-IyVYRqSAqCxUK5ADXlTfNK9MhcdvDVwCJ2Y5VF/oYVs="; + rev = "0d08703e4c3f426ec61695d7617415fff97029bd"; + hash = "sha256-a3W7eBUN4V3HD3YPr1+3tpuWQfIQy1Wu8qxCQx0hEnI="; }; meta.homepage = "https://github.com/maxxnino/tree-sitter-zig"; }; diff --git a/pkgs/applications/editors/vim/plugins/vim-plugin-names b/pkgs/applications/editors/vim/plugins/vim-plugin-names index c93095642419..9dc5a3f02074 100644 --- a/pkgs/applications/editors/vim/plugins/vim-plugin-names +++ b/pkgs/applications/editors/vim/plugins/vim-plugin-names @@ -780,6 +780,7 @@ https://github.com/jgdavey/tslime.vim/,, https://github.com/Quramy/tsuquyomi/,, https://github.com/folke/twilight.nvim/,, https://github.com/leafgarland/typescript-vim/,, +https://github.com/jose-elias-alvarez/typescript.nvim/,, https://github.com/SirVer/ultisnips/,, https://github.com/mbbill/undotree/,, https://github.com/chrisbra/unicode.vim/,, diff --git a/pkgs/applications/editors/vscode/extensions/sumneko.lua/default.nix b/pkgs/applications/editors/vscode/extensions/sumneko.lua/default.nix index 16f4c52034dd..fe6e79be40dd 100644 --- a/pkgs/applications/editors/vscode/extensions/sumneko.lua/default.nix +++ b/pkgs/applications/editors/vscode/extensions/sumneko.lua/default.nix @@ -7,10 +7,12 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "lua"; publisher = "sumneko"; - version = "3.5.6"; - sha256 = "sha256-Unzs9rX/0MlQprSvScdBCCFMeLCaGzWsMbcFqSKY2XY="; + version = "3.6.19"; + sha256 = "sha256-7f8zovJS1lNwrUryxgadrBbNRw/OwFqry57JWKY1D8E="; }; + # Running chmod in runtime will lock up extension + # indefinitely if the binary is in nix store. patches = [ ./remove-chmod.patch ]; postInstall = '' diff --git a/pkgs/applications/editors/vscode/extensions/sumneko.lua/remove-chmod.patch b/pkgs/applications/editors/vscode/extensions/sumneko.lua/remove-chmod.patch index 8b9028625aa8..8fd44e9476b4 100644 --- a/pkgs/applications/editors/vscode/extensions/sumneko.lua/remove-chmod.patch +++ b/pkgs/applications/editors/vscode/extensions/sumneko.lua/remove-chmod.patch @@ -1,8 +1,6 @@ -diff --git a/client/out/languageserver.js b/client/out/languageserver.js -index 6c7429c..6f53aa4 100644 --- a/client/out/languageserver.js +++ b/client/out/languageserver.js -@@ -79,11 +79,9 @@ class LuaClient { +@@ -145,11 +145,9 @@ break; case "linux": command = this.context.asAbsolutePath(path.join('server', binDir ? binDir : 'bin-Linux', 'lua-language-server')); @@ -12,5 +10,5 @@ index 6c7429c..6f53aa4 100644 command = this.context.asAbsolutePath(path.join('server', binDir ? binDir : 'bin-macOS', 'lua-language-server')); - yield fs.promises.chmod(command, '777'); break; - } - let serverOptions = { + default: + throw new Error(`Unsupported operating system "${platform}"!`); diff --git a/pkgs/applications/graphics/oculante/Cargo.lock b/pkgs/applications/graphics/oculante/Cargo.lock index c458cdbca4fe..b551c13ec2df 100644 --- a/pkgs/applications/graphics/oculante/Cargo.lock +++ b/pkgs/applications/graphics/oculante/Cargo.lock @@ -363,7 +363,7 @@ checksum = "fdde5c9cd29ebd706ce1b35600920a33550e402fc998a2e53ad3b42c3c47a192" dependencies = [ "proc-macro2", "quote", - "syn 2.0.12", + "syn 2.0.15", ] [[package]] @@ -588,9 +588,9 @@ checksum = "7439becb5fafc780b6f4de382b1a7a3e70234afe783854a4702ee8adbb838609" [[package]] name = "concurrent-queue" -version = "2.1.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c278839b831783b70278b14df4d45e1beb1aad306c07bb796637de9a0e323e8e" +checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c" dependencies = [ "crossbeam-utils", ] @@ -636,9 +636,9 @@ dependencies = [ [[package]] name = "core-foundation-sys" -version = "0.8.3" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" +checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" [[package]] name = "core-graphics" @@ -688,9 +688,9 @@ dependencies = [ [[package]] name = "crossbeam-channel" -version = "0.5.7" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf2b3e8478797446514c91ef04bafcb59faba183e621ad488df88983cc14128c" +checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" dependencies = [ "cfg-if 1.0.0", "crossbeam-utils", @@ -1058,13 +1058,13 @@ dependencies = [ [[package]] name = "errno" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50d6a0976c999d473fe89ad888d5a284e55366d9dc9038b1ba2aa15128c4afa0" +checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" dependencies = [ "errno-dragonfly", "libc", - "windows-sys 0.45.0", + "windows-sys 0.48.0", ] [[package]] @@ -1098,9 +1098,9 @@ dependencies = [ [[package]] name = "evalexpr" -version = "8.1.0" +version = "8.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aacfb566035f8cd02f6ec9247c242f3f9904a0b288ea383abcf4e95df6436a34" +checksum = "6aed2b80295745e5fed7a9e869bb8b592961584379df6fddcf0922877206974e" [[package]] name = "event-listener" @@ -1128,7 +1128,7 @@ dependencies = [ "flume", "half", "lebe", - "miniz_oxide", + "miniz_oxide 0.6.2", "rayon-core", "smallvec", "zune-inflate", @@ -1179,6 +1179,15 @@ dependencies = [ "instant", ] +[[package]] +name = "fdeflate" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10" +dependencies = [ + "simd-adler32", +] + [[package]] name = "find-crate" version = "0.6.3" @@ -1206,7 +1215,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" dependencies = [ "crc32fast", - "miniz_oxide", + "miniz_oxide 0.6.2", ] [[package]] @@ -1234,7 +1243,7 @@ dependencies = [ "futures-sink", "nanorand", "pin-project", - "spin 0.9.7", + "spin 0.9.8", ] [[package]] @@ -1302,7 +1311,7 @@ checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" dependencies = [ "proc-macro2", "quote", - "syn 2.0.12", + "syn 2.0.15", ] [[package]] @@ -1411,9 +1420,9 @@ checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" [[package]] name = "futures-lite" -version = "1.12.0" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" +checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" dependencies = [ "fastrand", "futures-core", @@ -1432,7 +1441,7 @@ checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" dependencies = [ "proc-macro2", "quote", - "syn 2.0.12", + "syn 2.0.15", ] [[package]] @@ -1516,9 +1525,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.8" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" +checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" dependencies = [ "cfg-if 1.0.0", "js-sys", @@ -1774,9 +1783,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.3.16" +version = "0.3.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d" +checksum = "17f8a914c2987b688368b5138aa05321db91f4090cf26118185672ad588bce21" dependencies = [ "bytes", "fnv", @@ -1887,9 +1896,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "hyper" -version = "0.14.25" +version = "0.14.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc5e554ff619822309ffd57d8734d77cd5ce6238bc956f037ea06c58238c9899" +checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4" dependencies = [ "bytes", "futures-channel", @@ -2016,13 +2025,13 @@ dependencies = [ [[package]] name = "io-lifetimes" -version = "1.0.9" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09270fd4fa1111bc614ed2246c7ef56239a3063d5be0d1ec3b589c505d400aeb" +checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" dependencies = [ "hermit-abi 0.3.1", "libc", - "windows-sys 0.45.0", + "windows-sys 0.48.0", ] [[package]] @@ -2033,14 +2042,14 @@ checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f" [[package]] name = "is-terminal" -version = "0.4.6" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "256017f749ab3117e93acb91063009e1f1bb56d03965b14c2c8df4eb02c524d8" +checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" dependencies = [ "hermit-abi 0.3.1", "io-lifetimes", "rustix", - "windows-sys 0.45.0", + "windows-sys 0.48.0", ] [[package]] @@ -2157,9 +2166,9 @@ checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc" [[package]] name = "kurbo" -version = "0.9.2" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5174361704392c4a640258d5020e14ec820a8c1820d5ba67b2311962f411b52b" +checksum = "28a2d0c1781729f69dbea30f968608cadfaeb6582e5ce903a167a5216b53cd0f" dependencies = [ "arrayvec 0.7.2", ] @@ -2215,9 +2224,9 @@ dependencies = [ [[package]] name = "libavif-sys" -version = "0.14.1" +version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8ed7ab954ad8e287cb69d8aadfa577a494b478864aaf7d89efefdad8c6922d5" +checksum = "2c7b9293d221c7d4b4290d4479c491a09b877943208593f1563d8521c4b55930" dependencies = [ "cmake", "libc", @@ -2227,9 +2236,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.140" +version = "0.2.141" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" +checksum = "3304a64d199bb964be99741b7a14d26972741915b3649639149b2479bb46f4b5" [[package]] name = "libdav1d-sys" @@ -2281,9 +2290,9 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "linux-raw-sys" -version = "0.3.1" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f" +checksum = "9b085a4f2cde5781fc4b1717f2e86c62f5cda49de7ba99a7c2eae02b61c9064c" [[package]] name = "lock_api" @@ -2460,6 +2469,16 @@ dependencies = [ "adler", ] +[[package]] +name = "miniz_oxide" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" +dependencies = [ + "adler", + "simd-adler32", +] + [[package]] name = "mio" version = "0.8.6" @@ -2636,9 +2655,9 @@ checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8" [[package]] name = "notan" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08d94d6b9c12dae32ed4c0d195b9767c77b3bbc6aeb05765b750dc0e4fb7f44e" +checksum = "4fe05ab2904de4bad18950790a346b21ace46399308a1257cc96727b42cdf465" dependencies = [ "notan_app", "notan_backend", @@ -2654,9 +2673,9 @@ dependencies = [ [[package]] name = "notan_app" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3270760bbc1945e953e12b0a73904200ea1d369806ce9dbdd75dd5aa12fabf8" +checksum = "5cf05fb9bd79b1a75b7d05f4d524b252ffd3b65e0334abc0988563b9e8ed3d22" dependencies = [ "bytemuck", "downcast-rs", @@ -2680,9 +2699,9 @@ dependencies = [ [[package]] name = "notan_backend" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46840ee15153745cf7c4c92aaeb94affb9ac2683725dcf5b484ec46b553467f2" +checksum = "157b87a240d02a8cacdfb3a6e916f2db19ab79c108dcb70de1af028f02852c4c" dependencies = [ "notan_web", "notan_winit", @@ -2690,18 +2709,18 @@ dependencies = [ [[package]] name = "notan_core" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b4b7defb83b378e903917b79c58427a1cb91cb2e22a8254fc559d2c2ba914e6" +checksum = "0d9b634a7f30f311802a031b3b02287365e48c10a14cb44f2576acfaa64f2e11" dependencies = [ "web-sys", ] [[package]] name = "notan_draw" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28ab4cb11d4d00bc325045a53d2d1ae2dc449dfca80df7a663015bb4759e7bce" +checksum = "5e89627179eaa85bec2de5966562a89ba6cb5d72175eadb983421f463b25687b" dependencies = [ "log", "lyon", @@ -2717,9 +2736,9 @@ dependencies = [ [[package]] name = "notan_egui" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77ccda210aa1e65395daf4987aae412309f83c3b6bfa2e5794de585687c4d138" +checksum = "4119d7b4cd389af870ae7ff9e9f9ab39ffc6766d5c65e52f1c5bc02d1393d69c" dependencies = [ "bytemuck", "egui", @@ -2731,9 +2750,9 @@ dependencies = [ [[package]] name = "notan_glow" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693f27c0f625dbb4225011a51c077ce32990643ba38ce0985ce625d2680d74d6" +checksum = "48961f4ccc256904221e4be862a57bc0963a20b2b30333c7eeffeae14ee4cf45" dependencies = [ "bytemuck", "glow", @@ -2748,9 +2767,9 @@ dependencies = [ [[package]] name = "notan_glyph" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1153c4a4b416c42c1d63691dfde3c4af94cdfb37523ab292073c2b467282d5eb" +checksum = "c24760e1fa2ab081fc493ccd2f2a6946864d87b8806767dfd998eb7365aae3c4" dependencies = [ "bytemuck", "glyph_brush", @@ -2762,9 +2781,9 @@ dependencies = [ [[package]] name = "notan_graphics" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91c38da02cbe02a90aa76336796956914ecc89c541d4de9913965619ad1e198b" +checksum = "64b8437c9bb4f96b1fd18ae3e61a6b1a437ac32f3ccf078de531ab38cd6861ee" dependencies = [ "bytemuck", "glsl-layout", @@ -2777,9 +2796,9 @@ dependencies = [ [[package]] name = "notan_input" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de23a07f8a1203487179bcf257a938ce87747c02d53b8c8c364d9a3f779c01d0" +checksum = "78c182ba310d14e24e39fdbbb523f8686d2bcd85a8e3415ac15a1b203383b320" dependencies = [ "hashbrown 0.13.2", "log", @@ -2789,9 +2808,9 @@ dependencies = [ [[package]] name = "notan_macro" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94ce02dadae5862a47e1acfdd1f5bb8427829ab22ca0462374b241d5a308fcb6" +checksum = "cbf38df1753b05ffd6e4f3e6cf309f8f2c1f6d60d97b0b29f0da81da3fcd35b4" dependencies = [ "cfg_aliases", "glsl-to-spirv", @@ -2804,18 +2823,18 @@ dependencies = [ [[package]] name = "notan_math" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5361d47f89ede17397790c8c81ae3ec789b2a18c8b0f1459146e003c116d9856" +checksum = "4768d6a1f20f635ae20dffde5f4d1d4d84bfd8caebe312e4c4ca7d134f2aae1d" dependencies = [ "glam", ] [[package]] name = "notan_text" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c78ef6196517146ed3be9f21c93acff1457b80f8afb50387f573eeb5ffac7e41" +checksum = "db09dd4b60817fff7cc8852837e5dc97ea7520d894dff29d01f2d3b74480aa7e" dependencies = [ "hashbrown 0.13.2", "lazy_static", @@ -2829,9 +2848,9 @@ dependencies = [ [[package]] name = "notan_utils" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "444beb25a698cb9a1df22f062062c232d8f0625f4cb20f47a0ba4c389ce65770" +checksum = "7293931f914054e89fd958112ad34f707ec5e89caedb29fdfafeb7f71744318b" dependencies = [ "instant", "log", @@ -2839,9 +2858,9 @@ dependencies = [ [[package]] name = "notan_web" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2108fe65b2ac951ff34919f65c47065890164e70695e9d8a73837eca88590140" +checksum = "2efe6523a123951d028a30275d8891d6678fa41cfadd4b0b29182c1755f7152c" dependencies = [ "console_error_panic_hook", "futures-util", @@ -2858,9 +2877,9 @@ dependencies = [ [[package]] name = "notan_winit" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "355289e0ca3284d3268a20580b4acd2b2d24c4a7e01360e188456b5b11700108" +checksum = "c407c236419054799047de0880e0ac2cec2d9666e2c2a006ee57424845aef396" dependencies = [ "glutin", "glutin-winit", @@ -3037,9 +3056,9 @@ checksum = "df3b9834c1e95694a05a828b59f55fa2afec6288359cda67146126b3f90a55d7" [[package]] name = "objc2" -version = "0.3.0-beta.3.patch-leaks.2" +version = "0.3.0-beta.3.patch-leaks.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7d9bb2ee6b71d02b1b3554ed600d267ee9a2796acc9fa43fb7748e13fe072dd" +checksum = "7e01640f9f2cb1220bbe80325e179e532cb3379ebcd1bf2279d703c19fe3a468" dependencies = [ "block2", "objc-sys", @@ -3075,7 +3094,7 @@ dependencies = [ [[package]] name = "oculante" -version = "0.6.58" +version = "0.6.63" dependencies = [ "anyhow", "arboard", @@ -3116,7 +3135,6 @@ dependencies = [ "strum_macros", "tiff 0.9.0", "tiny-skia 0.8.3", - "tonemap", "turbojpeg", "usvg", "webbrowser", @@ -3211,9 +3229,9 @@ dependencies = [ [[package]] name = "parking" -version = "2.0.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" +checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" [[package]] name = "parking_lot" @@ -3394,21 +3412,22 @@ dependencies = [ [[package]] name = "png" -version = "0.17.7" +version = "0.17.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d708eaf860a19b19ce538740d2b4bdeeb8337fa53f7738455e706623ad5c638" +checksum = "aaeebc51f9e7d2c150d3f3bfeb667f2aa985db5ef1e3d212847bdedb488beeaa" dependencies = [ "bitflags", "crc32fast", + "fdeflate", "flate2", - "miniz_oxide", + "miniz_oxide 0.7.1", ] [[package]] name = "polling" -version = "2.6.0" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e1f879b2998099c2d69ab9605d145d5b661195627eccc680002c4918a7fb6fa" +checksum = "4be1c66a6add46bff50935c313dae30a5030cf8385c5206e8a95e9e9def974aa" dependencies = [ "autocfg", "bitflags", @@ -3417,7 +3436,7 @@ dependencies = [ "libc", "log", "pin-project-lite", - "windows-sys 0.45.0", + "windows-sys 0.48.0", ] [[package]] @@ -3474,9 +3493,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" -version = "1.0.54" +version = "1.0.56" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e472a104799c74b514a57226160104aa483546de37e839ec50e3c2e41dd87534" +checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" dependencies = [ "unicode-ident", ] @@ -3577,9 +3596,9 @@ dependencies = [ [[package]] name = "rav1e" -version = "0.6.3" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "277898094f0d03c6a609e491324102daf5080e71c06b4b25e5acf8b89d26c945" +checksum = "be22fc799d8dc5573ba290fd436cea91ccfc0c6b7e121750ea5939cc786429ec" dependencies = [ "arbitrary", "arg_enum_proc_macro", @@ -3750,9 +3769,9 @@ dependencies = [ [[package]] name = "resvg" -version = "0.30.0" +version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3781eed5e82686ce0cc64b081b70920487ad709525b4555060a63d53636dd46f" +checksum = "84558b03726d979bf0444a5a88791cd451108fe45db699f3324388d700c048dc" dependencies = [ "gif", "jpeg-decoder", @@ -3876,16 +3895,16 @@ dependencies = [ [[package]] name = "rustix" -version = "0.37.6" +version = "0.37.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d097081ed288dfe45699b72f5b5d648e5f15d64d900c7080273baa20c16a6849" +checksum = "722529a737f5a942fdbac3a46cee213053196737c5eaa3386d52e85b786f2659" dependencies = [ "bitflags", "errno", "io-lifetimes", "libc", "linux-raw-sys", - "windows-sys 0.45.0", + "windows-sys 0.48.0", ] [[package]] @@ -4033,29 +4052,29 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.159" +version = "1.0.160" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065" +checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.159" +version = "1.0.160" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585" +checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df" dependencies = [ "proc-macro2", "quote", - "syn 2.0.12", + "syn 2.0.15", ] [[package]] name = "serde_json" -version = "1.0.95" +version = "1.0.96" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744" +checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" dependencies = [ "itoa", "ryu", @@ -4118,9 +4137,9 @@ dependencies = [ [[package]] name = "simba" -version = "0.8.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50582927ed6f77e4ac020c057f37a268fc6aebc29225050365aacbb9deeeddc4" +checksum = "061507c94fc6ab4ba1c9a0305018408e312e17c041eb63bef8aa726fa33aceae" dependencies = [ "approx", "num-complex", @@ -4220,9 +4239,9 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "spin" -version = "0.9.7" +version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0959fd6f767df20b231736396e4f602171e00d95205676286e79d4a4eb67bef" +checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" dependencies = [ "lock_api", ] @@ -4326,9 +4345,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.12" +version = "2.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79d9531f94112cfc3e4c8f5f02cb2b58f72c97b7efd85f70203cc6d8efda5927" +checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" dependencies = [ "proc-macro2", "quote", @@ -4393,7 +4412,7 @@ checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" dependencies = [ "proc-macro2", "quote", - "syn 2.0.12", + "syn 2.0.15", ] [[package]] @@ -4578,12 +4597,6 @@ dependencies = [ "winnow", ] -[[package]] -name = "tonemap" -version = "0.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d97478858c823077ed7bc79d6a84be4e0af8e9882b222e61a8a5dbae458f45d" - [[package]] name = "tower-service" version = "0.3.2" @@ -4754,9 +4767,9 @@ checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9" [[package]] name = "usvg" -version = "0.30.0" +version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15cc6c2525931fafd8dd1b1169805c02b6ad8aeb85ca454413cc251df0592220" +checksum = "67a6cab2bc32b5a4310a06c7d3c6b51b5c7897b1f7c7d2bf73bf052f5754950f" dependencies = [ "base64", "log", @@ -4769,9 +4782,9 @@ dependencies = [ [[package]] name = "usvg-parser" -version = "0.30.0" +version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8177e95723471c172d1163d4d6b28c0ede7a3ef6389a117b69ae323faf8b62a1" +checksum = "b2352a2c05655a7e4d3dca76cf65764efce35527472668bae5c6fc876b4c996d" dependencies = [ "data-url", "flate2", @@ -4786,9 +4799,9 @@ dependencies = [ [[package]] name = "usvg-text-layout" -version = "0.30.0" +version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0accc97b136de1893848eede9b1b44e8e0acaaa687e65c64097335029fd72c54" +checksum = "392baafaaa861ff8c9863546f92a60c51380fc49aa185a6840fb2af564c73530" dependencies = [ "fontdb", "kurbo", @@ -4802,9 +4815,9 @@ dependencies = [ [[package]] name = "usvg-tree" -version = "0.30.0" +version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a58ac99ef85e0a970d0b1cdb89b9327069d853876da8b64a2bd96fc0d25cad8c" +checksum = "f9cb92fe40e0ffb45fd01349187e276a695f6c676a016d72ba09510009594829" dependencies = [ "kurbo", "rctree", @@ -5045,9 +5058,9 @@ dependencies = [ [[package]] name = "webbrowser" -version = "0.8.8" +version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "579cc485bd5ce5bfa0d738e4921dd0b956eca9800be1fd2e5257ebe95bc4617e" +checksum = "b692165700260bbd40fbc5ff23766c03e339fbaca907aeea5cb77bf0a553ca83" dependencies = [ "core-foundation", "dirs 4.0.0", @@ -5141,7 +5154,7 @@ version = "0.44.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e745dab35a0c4c77aa3ce42d595e13d2003d6902d6b08c9ef5fc326d08da12b" dependencies = [ - "windows-targets", + "windows-targets 0.42.2", ] [[package]] @@ -5163,12 +5176,12 @@ version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" dependencies = [ - "windows_aarch64_gnullvm", + "windows_aarch64_gnullvm 0.42.2", "windows_aarch64_msvc 0.42.2", "windows_i686_gnu 0.42.2", "windows_i686_msvc 0.42.2", "windows_x86_64_gnu 0.42.2", - "windows_x86_64_gnullvm", + "windows_x86_64_gnullvm 0.42.2", "windows_x86_64_msvc 0.42.2", ] @@ -5178,7 +5191,16 @@ version = "0.45.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" dependencies = [ - "windows-targets", + "windows-targets 0.42.2", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.0", ] [[package]] @@ -5187,21 +5209,42 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" dependencies = [ - "windows_aarch64_gnullvm", + "windows_aarch64_gnullvm 0.42.2", "windows_aarch64_msvc 0.42.2", "windows_i686_gnu 0.42.2", "windows_i686_msvc 0.42.2", "windows_x86_64_gnu 0.42.2", - "windows_x86_64_gnullvm", + "windows_x86_64_gnullvm 0.42.2", "windows_x86_64_msvc 0.42.2", ] +[[package]] +name = "windows-targets" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" +dependencies = [ + "windows_aarch64_gnullvm 0.48.0", + "windows_aarch64_msvc 0.48.0", + "windows_i686_gnu 0.48.0", + "windows_i686_msvc 0.48.0", + "windows_x86_64_gnu 0.48.0", + "windows_x86_64_gnullvm 0.48.0", + "windows_x86_64_msvc 0.48.0", +] + [[package]] name = "windows_aarch64_gnullvm" version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" + [[package]] name = "windows_aarch64_msvc" version = "0.36.1" @@ -5214,6 +5257,12 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" + [[package]] name = "windows_i686_gnu" version = "0.36.1" @@ -5226,6 +5275,12 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" +[[package]] +name = "windows_i686_gnu" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" + [[package]] name = "windows_i686_msvc" version = "0.36.1" @@ -5238,6 +5293,12 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" +[[package]] +name = "windows_i686_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" + [[package]] name = "windows_x86_64_gnu" version = "0.36.1" @@ -5250,12 +5311,24 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" + [[package]] name = "windows_x86_64_gnullvm" version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" + [[package]] name = "windows_x86_64_msvc" version = "0.36.1" @@ -5268,6 +5341,12 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" + [[package]] name = "windres" version = "0.2.2" diff --git a/pkgs/applications/graphics/oculante/default.nix b/pkgs/applications/graphics/oculante/default.nix index aadc0c5c66c3..94097afe7522 100644 --- a/pkgs/applications/graphics/oculante/default.nix +++ b/pkgs/applications/graphics/oculante/default.nix @@ -19,16 +19,18 @@ rustPlatform.buildRustPackage rec { pname = "oculante"; - version = "0.6.58"; + version = "0.6.63"; src = fetchFromGitHub { owner = "woelper"; repo = pname; rev = version; - sha256 = "sha256-Cs7f6RSOoZFOtQWH67l3A6kv/o2lN5NOn+BEasV03RU="; + sha256 = "sha256-ynxGpx8LLcd4/n9hz/bbhpZUxqX1sPS7LFYPZ22hTxo="; }; - cargoLock.lockFile = ./Cargo.lock; + cargoLock = { + lockFile = ./Cargo.lock; + }; nativeBuildInputs = [ cmake @@ -63,6 +65,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/woelper/oculante"; changelog = "https://github.com/woelper/oculante/blob/${version}/CHANGELOG.md"; license = licenses.mit; - maintainers = with maintainers; [ dit7ya ]; + maintainers = with maintainers; [ dit7ya figsoda ]; }; } diff --git a/pkgs/applications/misc/therion/default.nix b/pkgs/applications/misc/therion/default.nix new file mode 100644 index 000000000000..295cd860b03e --- /dev/null +++ b/pkgs/applications/misc/therion/default.nix @@ -0,0 +1,97 @@ +{ lib +, stdenv +, fetchFromGitHub +, cmake +, pkg-config +, perl +, tcl +, tcllib +, tk +, expat +, bwidget +, python3 +, texlive +, survex +, makeWrapper +, fmt +, proj +, wxGTK32 +, vtk +, freetype +, libjpeg +, gettext +, libGL +, libGLU +, sqlite +, libtiff +, curl +, tkimg +}: + +stdenv.mkDerivation rec { + pname = "therion"; + version = "6.1.7"; + + src = fetchFromGitHub { + owner = "therion"; + repo = "therion"; + rev = "v${version}"; + hash = "sha256-q+p1akGfzBeZejeYiJ8lrSbEIMTsX5YuIG/u35oh0JI="; + }; + + nativeBuildInputs = [ + cmake + pkg-config + perl + python3 + texlive.combined.scheme-tetex + makeWrapper + tcl.tclPackageHook + ]; + + preConfigure = '' + export OUTDIR=$out + ''; + + cmakeFlags = [ + "-DBUILD_THBOOK=OFF" + ]; + + buildInputs = [ + expat + tkimg + proj + wxGTK32 + vtk + tk + freetype + libjpeg + gettext + libGL + libGLU + sqlite + libtiff + curl + fmt + tcl + tcllib + bwidget + ]; + + fixupPhase = '' + runHook preFixup + wrapProgram $out/bin/therion \ + --prefix PATH : ${lib.makeBinPath [ survex texlive.combined.scheme-tetex ]} + wrapProgram $out/bin/xtherion \ + --prefix PATH : ${lib.makeBinPath [ tk ]} + runHook postFixup + ''; + + meta = with lib; { + description = "Therion – cave surveying software"; + homepage = "https://therion.speleo.sk/"; + changelog = "https://github.com/therion/therion/blob/${src.rev}/CHANGES"; + license = licenses.gpl2Only; + maintainers = with maintainers; [ matthewcroughan ]; + }; +} diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index d699b8c49d4b..da0172228fbf 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -331,7 +331,7 @@ let buildPhase = let buildCommand = target: '' - ninja -C "${buildPath}" -j$NIX_BUILD_CORES "${target}" + TERM=dumb ninja -C "${buildPath}" -j$NIX_BUILD_CORES "${target}" ( source chrome/installer/linux/common/installer.include PACKAGE=$packageName @@ -341,7 +341,11 @@ let ''; targets = extraAttrs.buildTargets or []; commands = map buildCommand targets; - in lib.concatStringsSep "\n" commands; + in '' + runHook preBuild + ${lib.concatStringsSep "\n" commands} + runHook postBuild + ''; postFixup = '' # Make sure that libGLESv2 and libvulkan are found by dlopen. diff --git a/pkgs/applications/networking/cluster/helm-docs/default.nix b/pkgs/applications/networking/cluster/helm-docs/default.nix index 5a8d5189b8d5..3a09148394f7 100644 --- a/pkgs/applications/networking/cluster/helm-docs/default.nix +++ b/pkgs/applications/networking/cluster/helm-docs/default.nix @@ -17,7 +17,7 @@ buildGoModule rec { ldflags = [ "-w" "-s" - "-X main.version=v${version}" + "-X main.version=${version}" ]; meta = with lib; { diff --git a/pkgs/applications/networking/cluster/terraform-backend-git/default.nix b/pkgs/applications/networking/cluster/terraform-backend-git/default.nix new file mode 100644 index 000000000000..0cbba942d0ac --- /dev/null +++ b/pkgs/applications/networking/cluster/terraform-backend-git/default.nix @@ -0,0 +1,28 @@ +{ lib +, buildGoModule +, fetchFromGitHub +}: + +buildGoModule rec { + pname = "terraform-backend-git"; + version = "0.1.4"; + + src = fetchFromGitHub { + owner = "plumber-cd"; + repo = "terraform-backend-git"; + rev = "v${version}"; + hash = "sha256-nRh2eIVVBdb8jFfgmPoOk4y0TDoCeng50TRA+nphn58="; + }; + + vendorHash = "sha256-Y/4UgG/2Vp+gxBnGrNpAgRNfPZWJXhVo8TVa/VfOYt0="; + + ldflags = [ "-s" "-w" ]; + + meta = with lib; { + description = "Terraform HTTP Backend implementation that uses Git repository as storage"; + homepage = "https://github.com/plumber-cd/terraform-backend-git"; + changelog = "https://github.com/plumber-cd/terraform-backend-git/blob/${src.rev}/CHANGELOG.md"; + license = licenses.asl20; + maintainers = with maintainers; [ blaggacao ]; + }; +} diff --git a/pkgs/applications/office/qownnotes/default.nix b/pkgs/applications/office/qownnotes/default.nix index 2fc8d8102dde..aa827bdf910d 100644 --- a/pkgs/applications/office/qownnotes/default.nix +++ b/pkgs/applications/office/qownnotes/default.nix @@ -17,14 +17,14 @@ let pname = "qownnotes"; appname = "QOwnNotes"; - version = "23.4.7"; + version = "23.5.0"; in stdenv.mkDerivation { inherit pname appname version; src = fetchurl { url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz"; - sha256 = "sha256-E9ap7TcICVwalPfScPEcn4lgNkDI2sPtdIgwRQkcOd0="; + sha256 = "sha256-W1bu3isEe1j7XTj+deLNk6Ncssy2UKG+eF36fe1FFWs="; }; nativeBuildInputs = [ diff --git a/pkgs/applications/video/go-chromecast/default.nix b/pkgs/applications/video/go-chromecast/default.nix index 94e698289297..523eef1b8591 100644 --- a/pkgs/applications/video/go-chromecast/default.nix +++ b/pkgs/applications/video/go-chromecast/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "go-chromecast"; - version = "0.2.12"; + version = "0.3.1"; src = fetchFromGitHub { owner = "vishen"; repo = pname; rev = "v${version}"; - sha256 = "sha256-h8qWwMaEhXnj6ZSrKAXBVbrMR0je41EoOtFeN9XlCuk="; + hash = "sha256-Kzo8iWj4mtnX1Jxm2sLsnmEOmpzScxWHZ/sLYYm3vQI="; }; - vendorSha256 = "sha256-PpMLHuJR6irp+QHhzguwGtBy30HM7DR0tNGiwB07M5E="; + vendorHash = "sha256-cEUlCR/xtPJJSWplV1COwV6UfzSmVArF4V0pJRk+/Og="; ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=${src.rev}" "-X main.date=unknown" ]; @@ -20,6 +20,5 @@ buildGoModule rec { description = "CLI for Google Chromecast, Home devices and Cast Groups"; license = licenses.asl20; maintainers = with maintainers; [ marsam ]; - broken = true; # build fails with go > 1.17 }; } diff --git a/pkgs/applications/virtualization/virtualbox/fix-audio-driver-loading.patch b/pkgs/applications/virtualization/virtualbox/fix-audio-driver-loading.patch index 552f867f1acc..ccd4b55c88f1 100644 --- a/pkgs/applications/virtualization/virtualbox/fix-audio-driver-loading.patch +++ b/pkgs/applications/virtualization/virtualbox/fix-audio-driver-loading.patch @@ -7,7 +7,7 @@ index cfcb0abbf..2ce564f6f 100644 RTLDRMOD hMod = NIL_RTLDRMOD; - int rc = RTLdrLoadSystemEx(VBOX_ALSA_LIB, RTLDRLOAD_FLAGS_NO_UNLOAD, &hMod); -+ int rc = RTLdrLoad(VBOX_ALSA_LIB, &hMod); ++ int rc = RTLdrLoadEx(VBOX_ALSA_LIB, &hMod, RTLDRLOAD_FLAGS_NO_UNLOAD, nullptr); if (RT_SUCCESS(rc)) { for (uintptr_t i = 0; i < RT_ELEMENTS(SharedFuncs); i++) @@ -20,7 +20,7 @@ index a17fc93f9..148f5c39a 100644 RTLDRMOD hMod = NIL_RTLDRMOD; - int rc = RTLdrLoadSystemEx(VBOX_PULSE_LIB, RTLDRLOAD_FLAGS_NO_UNLOAD, &hMod); -+ int rc = RTLdrLoad(VBOX_PULSE_LIB, &hMod); ++ int rc = RTLdrLoadEx(VBOX_PULSE_LIB, &hMod, RTLDRLOAD_FLAGS_NO_UNLOAD, nullptr); if (RT_SUCCESS(rc)) { for (unsigned i = 0; i < RT_ELEMENTS(g_aImportedFunctions); i++) \ No newline at end of file diff --git a/pkgs/data/themes/colloid-gtk-theme/default.nix b/pkgs/data/themes/colloid-gtk-theme/default.nix index ccb224f5986c..c71c86269e71 100644 --- a/pkgs/data/themes/colloid-gtk-theme/default.nix +++ b/pkgs/data/themes/colloid-gtk-theme/default.nix @@ -19,17 +19,17 @@ in lib.checkListOfEnum "${pname}: theme variants" [ "default" "purple" "pink" "red" "orange" "yellow" "green" "teal" "grey" "all" ] themeVariants lib.checkListOfEnum "${pname}: color variants" [ "standard" "light" "dark" ] colorVariants lib.checkListOfEnum "${pname}: size variants" [ "standard" "compact" ] sizeVariants -lib.checkListOfEnum "${pname}: tweaks" [ "nord" "black" "dracula" "rimless" "normal" ] tweaks +lib.checkListOfEnum "${pname}: tweaks" [ "nord" "black" "dracula" "gruvbox" "rimless" "normal" ] tweaks stdenvNoCC.mkDerivation rec { inherit pname; - version = "2022.11.11"; + version = "2023.04.11"; src = fetchFromGitHub { owner = "vinceliuice"; repo = pname; rev = version; - hash = "sha256-3uiQYiseNEKDahjurjnDj9pakx1p94BfsR3LBO2dd/s="; + hash = "sha256-lVHDQmu9GLesasmI2GQ0hx4f2NtgaM4IlJk/hXe2XzY="; }; nativeBuildInputs = [ diff --git a/pkgs/desktops/gnome/games/gnome-nibbles/default.nix b/pkgs/desktops/gnome/games/gnome-nibbles/default.nix index 34b50f2244fa..741006bdec19 100644 --- a/pkgs/desktops/gnome/games/gnome-nibbles/default.nix +++ b/pkgs/desktops/gnome/games/gnome-nibbles/default.nix @@ -1,7 +1,6 @@ { lib , stdenv , fetchurl -, fetchpatch , pkg-config , gnome , gtk3 @@ -12,7 +11,6 @@ , gettext , itstool , vala -, python3 , libxml2 , libgee , libgnome-games-support @@ -24,30 +22,17 @@ stdenv.mkDerivation rec { pname = "gnome-nibbles"; - version = "3.38.2"; + version = "3.38.3"; src = fetchurl { url = "mirror://gnome/sources/gnome-nibbles/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "1naknfbciydbym79a0jq039xf0033z8gyln48c0qsbcfr2qn8yj5"; + sha256 = "l1/eHYPHsVs5Lqx6NZFhKQ/IrrdgXBHnHO4MPDJrXmE="; }; - patches = [ - # Fix build with recent Vala. - (fetchpatch { - url = "https://gitlab.gnome.org/GNOME/gnome-nibbles/-/commit/62964e9256fcac616109af874dbb2bd8342a9853.patch"; - sha256 = "4VijELRxycS8rwi1HU9U3h9K/VtdQjJntfdtMN9Uz34="; - }) - (fetchpatch { - url = "https://gitlab.gnome.org/GNOME/gnome-nibbles/-/commit/1b48446068608aff9b5edf1fdbd4b8c0d9f0be94.patch"; - sha256 = "X0+Go5ae4F06WTPDYc2HIIax8X4RDgUGO6A6Qp8UifQ="; - }) - ]; - nativeBuildInputs = [ meson ninja vala - python3 pkg-config wrapGAppsHook gettext diff --git a/pkgs/development/libraries/cxx-rs/Cargo.lock b/pkgs/development/libraries/cxx-rs/Cargo.lock index 70bd50ec869f..157563e60f94 100644 --- a/pkgs/development/libraries/cxx-rs/Cargo.lock +++ b/pkgs/development/libraries/cxx-rs/Cargo.lock @@ -79,7 +79,7 @@ dependencies = [ [[package]] name = "cxx" -version = "1.0.86" +version = "1.0.94" dependencies = [ "cc", "cxx-build", @@ -94,7 +94,7 @@ dependencies = [ [[package]] name = "cxx-build" -version = "1.0.86" +version = "1.0.94" dependencies = [ "cc", "codespan-reporting", @@ -105,17 +105,17 @@ dependencies = [ "proc-macro2", "quote", "scratch", - "syn", + "syn 2.0.15", ] [[package]] name = "cxx-gen" -version = "0.7.86" +version = "0.7.94" dependencies = [ "codespan-reporting", "proc-macro2", "quote", - "syn", + "syn 2.0.15", ] [[package]] @@ -129,22 +129,22 @@ dependencies = [ [[package]] name = "cxxbridge-cmd" -version = "1.0.86" +version = "1.0.94" dependencies = [ "clap", "codespan-reporting", "proc-macro2", "quote", - "syn", + "syn 2.0.15", ] [[package]] name = "cxxbridge-flags" -version = "1.0.86" +version = "1.0.94" [[package]] name = "cxxbridge-macro" -version = "1.0.86" +version = "1.0.94" dependencies = [ "clang-ast", "cxx", @@ -154,7 +154,7 @@ dependencies = [ "quote", "serde", "serde_json", - "syn", + "syn 2.0.15", ] [[package]] @@ -256,18 +256,18 @@ checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" [[package]] name = "proc-macro2" -version = "1.0.49" +version = "1.0.56" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5" +checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" dependencies = [ "unicode-ident", ] [[package]] name = "quote" -version = "1.0.23" +version = "1.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" +checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" dependencies = [ "proc-macro2", ] @@ -307,7 +307,7 @@ checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.107", ] [[package]] @@ -338,6 +338,17 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "syn" +version = "2.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + [[package]] name = "termcolor" version = "1.1.3" diff --git a/pkgs/development/libraries/cxx-rs/default.nix b/pkgs/development/libraries/cxx-rs/default.nix index 253e70635043..c06171e72ce5 100644 --- a/pkgs/development/libraries/cxx-rs/default.nix +++ b/pkgs/development/libraries/cxx-rs/default.nix @@ -2,13 +2,13 @@ rustPlatform.buildRustPackage rec { pname = "cxx-rs"; - version = "1.0.86"; + version = "1.0.94"; src = fetchFromGitHub { owner = "dtolnay"; repo = "cxx"; rev = version; - sha256 = "sha256-bysuvCapesU/HaNfTfMUas7g3clf8299HmCChpd7abY="; + sha256 = "sha256-h6TmQyxhoOhaAWBZr9rRPCf0BE2QMBIYm5uTVKD2paE="; }; cargoLock = { diff --git a/pkgs/development/libraries/tkimg/default.nix b/pkgs/development/libraries/tkimg/default.nix new file mode 100644 index 000000000000..094a6b5dda3d --- /dev/null +++ b/pkgs/development/libraries/tkimg/default.nix @@ -0,0 +1,28 @@ +{ lib, fetchsvn, tcl, tcllib, tk, xorg }: + +tcl.mkTclDerivation rec { + pname = "tkimg"; + version = "623"; + + src = fetchsvn { + url = "svn://svn.code.sf.net/p/tkimg/code/trunk"; + rev = version; + sha256 = "sha256-6GlkqYxXmMGjiJTZS2fQNVSimcKc1BZ/lvzvtkhty+o="; + }; + + configureFlags = [ + "--with-tcl=${tcl}/lib" + "--with-tk=${tk}/lib" + "--with-tkinclude=${tk.dev}/include" + ]; + + buildInputs = [ xorg.libX11 tcllib ]; + + meta = { + homepage = "https://sourceforge.net/projects/tkimg/"; + description = "The Img package adds several image formats to Tcl/Tk"; + maintainers = with lib.maintainers; [ matthewcroughan ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + }; +} diff --git a/pkgs/development/mobile/maestro/default.nix b/pkgs/development/mobile/maestro/default.nix index 0cf885b341f9..83141bd8d117 100644 --- a/pkgs/development/mobile/maestro/default.nix +++ b/pkgs/development/mobile/maestro/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "maestro"; - version = "1.26.1"; + version = "1.27.0"; src = fetchurl { url = "https://github.com/mobile-dev-inc/maestro/releases/download/cli-${version}/maestro.zip"; - sha256 = "1hq4y8qwnw6mb962g2cp7a5qp8x95p6268d34hjpx0i2h40s9vrk"; + sha256 = "1ldlc8qj8nzy44h6qwgz0xiwp3a6fm0wkl05sl1r20iv7sr92grz"; }; dontUnpack = true; diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json index dc283fffc80c..9e32ac90f17c 100644 --- a/pkgs/development/node-packages/node-packages.json +++ b/pkgs/development/node-packages/node-packages.json @@ -22,6 +22,7 @@ , "@tailwindcss/line-clamp" , "@tailwindcss/typography" , "@uppy/companion" +, "@volar/vue-language-server" , "@vue/cli" , {"@webassemblyjs/cli": "1.11.1"} , {"@webassemblyjs/repl": "1.11.1"} diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index e8847af007b2..39d31e505fc4 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -1651,13 +1651,13 @@ let sha512 = "ustrPY8MryhloQj7OWGe+HrYx+aoiOxzbXTtgblbV3xwCqpzUK36phH3XNHQKj3EPonyFUuDTfR3qFhTEAuZEg=="; }; }; - "@azure/msal-browser-2.36.0" = { + "@azure/msal-browser-2.37.0" = { name = "_at_azure_slash_msal-browser"; packageName = "@azure/msal-browser"; - version = "2.36.0"; + version = "2.37.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.36.0.tgz"; - sha512 = "OrVDZ9ftO7ExqZVHripAt+doKg6G14YbP2LoSygiWQoSqoO4CejoXLRLqANc/HGg18N0p/oaRETw4IHZvwsxZw=="; + url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.37.0.tgz"; + sha512 = "YNGD/W/tw/5wDWlXOfmrVILaxVsorVLxYU2ovmL1PDvxkdudbQRyGk/76l4emqgDAl/kPQeqyivxjOU6w1YfvQ=="; }; }; "@azure/msal-common-12.1.0" = { @@ -1669,6 +1669,15 @@ let sha512 = "9RUiv0evSHvYtvF7r9ksShw9FgCeT6Rf6JB/SOMbMzI0VySZDUBSE+0b9e7DgL2Ph8wSARIh3m8c5pCK9TRY3w=="; }; }; + "@azure/msal-common-13.0.0" = { + name = "_at_azure_slash_msal-common"; + packageName = "@azure/msal-common"; + version = "13.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-13.0.0.tgz"; + sha512 = "GqCOg5H5bouvLij9NFXFkh+asRRxsPBRwnTDsfK7o0KcxYHJbuidKw8/VXpycahGXNxgtuhqtK/n5he+5NhyEA=="; + }; + }; "@azure/msal-common-7.6.0" = { name = "_at_azure_slash_msal-common"; packageName = "@azure/msal-common"; @@ -4486,22 +4495,22 @@ let sha512 = "BdhBgm2ZBnYyYRLRgOjM5VHkyFItsbggJ0MHycOjKWdFGYwK97ZFXH54dTvUWEfha81vfvwr5On6XBjt99uDcg=="; }; }; - "@emmetio/abbreviation-2.3.1" = { + "@emmetio/abbreviation-2.3.2" = { name = "_at_emmetio_slash_abbreviation"; packageName = "@emmetio/abbreviation"; - version = "2.3.1"; + version = "2.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/@emmetio/abbreviation/-/abbreviation-2.3.1.tgz"; - sha512 = "QXgYlXZGprqb6aCBJPPWVBN/Jb69khJF73GGJkOk//PoMgSbPGuaHn1hCRolctnzlBHjCIC6Om97Pw46/1A23g=="; + url = "https://registry.npmjs.org/@emmetio/abbreviation/-/abbreviation-2.3.2.tgz"; + sha512 = "8vqkn4rtjm5Zv34RPgsq3/ij88ri+IcfC2MxPELytrQvfpaLyppscE0YSwDVuIUR6KL5GCBUfr5Mo7SHSbswpA=="; }; }; - "@emmetio/css-abbreviation-2.1.6" = { + "@emmetio/css-abbreviation-2.1.7" = { name = "_at_emmetio_slash_css-abbreviation"; packageName = "@emmetio/css-abbreviation"; - version = "2.1.6"; + version = "2.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/@emmetio/css-abbreviation/-/css-abbreviation-2.1.6.tgz"; - sha512 = "bvuPogt0OvwcILRg+ZD/oej1H72xwOhUDPWOmhCWLJrZZ8bMTazsWnvw8a8noaaVqUhOE9PsC0tYgGVv5N7fsw=="; + url = "https://registry.npmjs.org/@emmetio/css-abbreviation/-/css-abbreviation-2.1.7.tgz"; + sha512 = "nrOt3/QROjYYK1cMjoO5fCfHIf0hFpcZeQQt7Ew6ixZ0ElEEs77ijnY57HC6ti91W/mn+c1T7ET8sClBMRHHBg=="; }; }; "@emmetio/extract-abbreviation-0.1.6" = { @@ -4513,13 +4522,13 @@ let sha512 = "Ce3xE2JvTSEbASFbRbA1gAIcMcZWdS2yUYRaQbeM0nbOzaZrUYfa3ePtcriYRZOZmr+CkKA+zbjhvTpIOAYVcw=="; }; }; - "@emmetio/scanner-1.0.2" = { + "@emmetio/scanner-1.0.3" = { name = "_at_emmetio_slash_scanner"; packageName = "@emmetio/scanner"; - version = "1.0.2"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@emmetio/scanner/-/scanner-1.0.2.tgz"; - sha512 = "1ESCGgXRgn1r29hRmz8K0G4Ywr5jDWezMgRnICComBCWmg3znLWU8+tmakuM1og1Vn4W/sauvlABl/oq2pve8w=="; + url = "https://registry.npmjs.org/@emmetio/scanner/-/scanner-1.0.3.tgz"; + sha512 = "/EFyTijquAwKMGSBd50RnjxsfDXmZAFp71PGu7sM6LEnEJXMV+FKL7Rvr6YLu4czQmPVRsfyhcbQz+WZnM4AZw=="; }; }; "@emotion/hash-0.9.0" = { @@ -5926,85 +5935,85 @@ let sha512 = "5D2qVpZrgpjtqU4eNOcWGp1gnUCgjfM+vKGE2y03kKN6z5EBhtx0qdRFbg8QuNNj8wXNoX93KJoYb+NqoxswmQ=="; }; }; - "@fluentui/date-time-utilities-8.5.8" = { + "@fluentui/date-time-utilities-8.5.9" = { name = "_at_fluentui_slash_date-time-utilities"; packageName = "@fluentui/date-time-utilities"; - version = "8.5.8"; + version = "8.5.9"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/date-time-utilities/-/date-time-utilities-8.5.8.tgz"; - sha512 = "8QkUZtoqEOeA9ePPntvQOAO/RS8UjqAqDaCPwKFcbETjz2qYdNEDH576RlSosZz+isUFKt1Y/UHiw0KOPMhMWw=="; + url = "https://registry.npmjs.org/@fluentui/date-time-utilities/-/date-time-utilities-8.5.9.tgz"; + sha512 = "OCtghkCd9VvwKARMVR9hHEGCXrtd6BMZXEWouEz1MY2D/GMvL9ecQ4OYlC5WfzWF7e1AbNRh3DsHgm4Y89SnPg=="; }; }; - "@fluentui/dom-utilities-2.2.7" = { + "@fluentui/dom-utilities-2.2.8" = { name = "_at_fluentui_slash_dom-utilities"; packageName = "@fluentui/dom-utilities"; - version = "2.2.7"; + version = "2.2.8"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/dom-utilities/-/dom-utilities-2.2.7.tgz"; - sha512 = "V+bW/WKR3ADGbBFw5hZqTY197RSz0tXm+gsdBj4iK4BJkWCRQYmj7ZLY+5pEAtfVJ7Z55zjYmLuzTpqGbCGxzg=="; + url = "https://registry.npmjs.org/@fluentui/dom-utilities/-/dom-utilities-2.2.8.tgz"; + sha512 = "nZesHyw/Y96IIEwaxl0GH3bLonOVwTXfMRvs1XuSlP5Ap7W1RnPvXn15iMHoU/ktCSiV9U/Fgihq+o/5vh8ngA=="; }; }; - "@fluentui/font-icons-mdl2-8.5.14" = { + "@fluentui/font-icons-mdl2-8.5.15" = { name = "_at_fluentui_slash_font-icons-mdl2"; packageName = "@fluentui/font-icons-mdl2"; - version = "8.5.14"; + version = "8.5.15"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.5.14.tgz"; - sha512 = "a/zGlzf4PWbVXAK/39/hYoWxSdn4+akYr/FAC8yqVYB/vxz6vQ1vwXKu/jMlAaUYEnZwC0jYByWhXmrDj4t+NA=="; + url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.5.15.tgz"; + sha512 = "uCKzQCe7LQsJ9CvHTPIJA08eaAn9KyJRDw/738MNb6gCDaIqL3/XUGAvE2MCaH2XX6WEorRbkE2Oj0oxVnuFRg=="; }; }; - "@fluentui/foundation-legacy-8.2.34" = { + "@fluentui/foundation-legacy-8.2.35" = { name = "_at_fluentui_slash_foundation-legacy"; packageName = "@fluentui/foundation-legacy"; - version = "8.2.34"; + version = "8.2.35"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.2.34.tgz"; - sha512 = "1FmUFUYyp6SaOA+o/lujvckTMP2fJDHTnNm7kj3EVKh2676aFrUcmMYknYXEngImdGIGjhj6xSinbLgulr8DsA=="; + url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.2.35.tgz"; + sha512 = "ZvPfmSi2rEqXBWpEpekUskdgdEz7dbu9Mdd0rPx4VXzrZZDK+Fq+8mGGIgyULm2bwGGoLG6I8gJu4M28wf5DtQ=="; }; }; - "@fluentui/keyboard-key-0.4.7" = { + "@fluentui/keyboard-key-0.4.8" = { name = "_at_fluentui_slash_keyboard-key"; packageName = "@fluentui/keyboard-key"; - version = "0.4.7"; + version = "0.4.8"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/keyboard-key/-/keyboard-key-0.4.7.tgz"; - sha512 = "+ivm4+fcNZGiAf0YthGcDxOYDxHX2td+4BuhtznDLsMt27akx/eOuK9uF1ZgXpMsq0UncOIV6qOyWUgGuY31LA=="; + url = "https://registry.npmjs.org/@fluentui/keyboard-key/-/keyboard-key-0.4.8.tgz"; + sha512 = "qa8WC3JWPdCN6V6zcVk1IEmynPy8H1AdqUF74X+YdDhsixqFxiMG+f+puQThJIC9CfWvOYu7ujTPOGRose7wBQ=="; }; }; - "@fluentui/merge-styles-8.5.8" = { + "@fluentui/merge-styles-8.5.9" = { name = "_at_fluentui_slash_merge-styles"; packageName = "@fluentui/merge-styles"; - version = "8.5.8"; + version = "8.5.9"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.5.8.tgz"; - sha512 = "wY+li6t7ByQml5duquqluTcQiQdBj7d+MgcM9WHKrmsEM3hEOy8qD5g9b9/EDUShGlL6jCwCFnxMjx4Fy6Tf0w=="; + url = "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.5.9.tgz"; + sha512 = "xZf4AeOPIIsz1j+BcZKDv955H4HgIf9HTOgmGFEHrF/NP4/beKM6+hvqYeKpqNaOdcr/0qc5UCf6Lz2exiuoOQ=="; }; }; - "@fluentui/react-8.108.3" = { + "@fluentui/react-8.109.0" = { name = "_at_fluentui_slash_react"; packageName = "@fluentui/react"; - version = "8.108.3"; + version = "8.109.0"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react/-/react-8.108.3.tgz"; - sha512 = "1njuMAkCHJBtDrtWIOzfFeEnul0I1Scnnr/Y9xi3UNbZkYb+w1XwUCLpwWaj/d24sProWwsiC/OhcgSm/CQaXg=="; + url = "https://registry.npmjs.org/@fluentui/react/-/react-8.109.0.tgz"; + sha512 = "V7RTMWbcxjj7i+KUCrDaLoHme3sluP7tU46rktBhEQbJNv/TahTQwwup13jbExc0oGFXJaBePrY/TxZm7He5vA=="; }; }; - "@fluentui/react-focus-8.8.20" = { + "@fluentui/react-focus-8.8.21" = { name = "_at_fluentui_slash_react-focus"; packageName = "@fluentui/react-focus"; - version = "8.8.20"; + version = "8.8.21"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.8.20.tgz"; - sha512 = "8+Ozvf58rTCRyV+O+yw10EXrPDy27vCh5jGUbQZIkdJedtaLLAX/L+FFbFDxwQZbQloxPx9bBq7vTABHPBxtNg=="; + url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.8.21.tgz"; + sha512 = "VNRcusmhRGfI20oMXCyJkOvV4pmLImBL6WIKl9AbGa9r93Y0w/31SnmKJ9cc9lbT69wsZvb1T1FSDoWBu4D2PA=="; }; }; - "@fluentui/react-hooks-8.6.21" = { + "@fluentui/react-hooks-8.6.22" = { name = "_at_fluentui_slash_react-hooks"; packageName = "@fluentui/react-hooks"; - version = "8.6.21"; + version = "8.6.22"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.6.21.tgz"; - sha512 = "FhmndDWF00JMH+czFyREksUUP4F3BXVRBscPcXZI9gYL4BQ1wPAZnSTVo1uIkiysuo2BTMK4VMnaFRvj4pHHhQ=="; + url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.6.22.tgz"; + sha512 = "HOKSpXMYSrsDIzhW73ByJfSJeJMhIIRrzzSFp9E5LFq4V9MibiRwhd9lF3a8mX70UEjeODTyj9/T2a6K0bFE/A=="; }; }; "@fluentui/react-portal-compat-context-9.0.5" = { @@ -6016,49 +6025,49 @@ let sha512 = "vgGvv74jPi/salcxv37TCm06lOFn44CfNLX5wZw5HQIe9LYGUw/J7vkaniwNIzmQZsn62Y+fVxDS6Sq5S823tA=="; }; }; - "@fluentui/react-window-provider-2.2.10" = { + "@fluentui/react-window-provider-2.2.11" = { name = "_at_fluentui_slash_react-window-provider"; packageName = "@fluentui/react-window-provider"; - version = "2.2.10"; + version = "2.2.11"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-2.2.10.tgz"; - sha512 = "MGn86ceK0pYrfgPIdNiyheE8nfO38jJqVjyNADZfdn6rm59mLR6aIHP7vlTsgolMWsVmz3C349HCNeH6F0dxJQ=="; + url = "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-2.2.11.tgz"; + sha512 = "oLpx5JwdMAeXKsKwFMQukAl2pkFo9M7HzPvBYm9EF+X6HwWpoxMWH98gK6gWrR/v7/jpxmmyGaFfxyB7gY+P8A=="; }; }; - "@fluentui/set-version-8.2.7" = { + "@fluentui/set-version-8.2.8" = { name = "_at_fluentui_slash_set-version"; packageName = "@fluentui/set-version"; - version = "8.2.7"; + version = "8.2.8"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/set-version/-/set-version-8.2.7.tgz"; - sha512 = "3w4dKv+bFBH7drL4hoNmbGZB3pLi5TqxPoZKhFvbYSwdEJPANzShGgwP1ccoNOkgRqsfRln/4d9xrzhoaE15Eg=="; + url = "https://registry.npmjs.org/@fluentui/set-version/-/set-version-8.2.8.tgz"; + sha512 = "9CUot4S2n7aCNp0Xmzt3759nqOtVOOQaay6CQwkFbJuaL8LvzleePcJ2lww47U++ersxUAbJXjsrHRDLB41/0A=="; }; }; - "@fluentui/style-utilities-8.9.7" = { + "@fluentui/style-utilities-8.9.8" = { name = "_at_fluentui_slash_style-utilities"; packageName = "@fluentui/style-utilities"; - version = "8.9.7"; + version = "8.9.8"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.9.7.tgz"; - sha512 = "2S2adiiA8E3ghxtdXtPeEajNpaC00aORB6a0nSwbBCD+7mmy+n/d3T5G5iW/fR/uvDHzcb50v2kT3UWakf02Eg=="; + url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.9.8.tgz"; + sha512 = "1lKY/yW3T4VFEFtNaey37fwqiwPCs0wqTjSV4QZtReFuLS0Frq5qEJ+wY60hru5HYXq+o9u6GXdbRLQ18Nq4WA=="; }; }; - "@fluentui/theme-2.6.26" = { + "@fluentui/theme-2.6.27" = { name = "_at_fluentui_slash_theme"; packageName = "@fluentui/theme"; - version = "2.6.26"; + version = "2.6.27"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.26.tgz"; - sha512 = "dzODGZ9wKw0pLxhTV37pifEFYu6ipPXp4FFmwiZnBZjS9lJFc/gx+UkL3Wer8RH3Jdk/9XUZYdCk868YmqudJg=="; + url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.27.tgz"; + sha512 = "L6J+vWrZSTObniT67MzFY6O5s680zb3DiWfxwS8dfxQAapsZRtRgkusC9miPYBEUmhqVLtwAMkWE7Y7MlojqbQ=="; }; }; - "@fluentui/utilities-8.13.10" = { + "@fluentui/utilities-8.13.11" = { name = "_at_fluentui_slash_utilities"; packageName = "@fluentui/utilities"; - version = "8.13.10"; + version = "8.13.11"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.13.10.tgz"; - sha512 = "9HCQ0kbzN+Pj3fx6NMEFrXWPbTuOKChlKSEvfnWjlpEYU9fQG+OqoY5/ALs9aX4RhfhzQhFBuaaaviSkaFpmzQ=="; + url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.13.11.tgz"; + sha512 = "EQGRGCgbuSm44gM0wYuJvGsZLZXnp3lCTsrBNs0pCJu0cI6GsH5B5hR31twoRqGyKZGeIPQr5dH0maxGwxscog=="; }; }; "@forge/api-2.15.2" = { @@ -7033,6 +7042,15 @@ let sha512 = "Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg=="; }; }; + "@isaacs/cliui-8.0.2" = { + name = "_at_isaacs_slash_cliui"; + packageName = "@isaacs/cliui"; + version = "8.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz"; + sha512 = "O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA=="; + }; + }; "@isaacs/string-locale-compare-1.1.0" = { name = "_at_isaacs_slash_string-locale-compare"; packageName = "@isaacs/string-locale-compare"; @@ -7510,6 +7528,15 @@ let sha512 = "VyCpkZzFTHXtKgVO35iKN0sYR10psGpV6SkcSeV4oF7eSYlR8Bl6aQLCzVeFjvESF7mxTmIiI3/XrMobVrtxDA=="; }; }; + "@johnsoncodehk/pug-beautify-0.2.2" = { + name = "_at_johnsoncodehk_slash_pug-beautify"; + packageName = "@johnsoncodehk/pug-beautify"; + version = "0.2.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@johnsoncodehk/pug-beautify/-/pug-beautify-0.2.2.tgz"; + sha512 = "qqNS/YD0Nck5wtQLCPHAfGVgWbbGafxSPjNh0ekYPFSNNqnDH2kamnduzYly8IiADmeVx/MfAE1njMEjVeHTMA=="; + }; + }; "@joplin/fork-htmlparser2-4.1.43" = { name = "_at_joplin_slash_fork-htmlparser2"; packageName = "@joplin/fork-htmlparser2"; @@ -7753,6 +7780,15 @@ let sha512 = "XNcBd6W4G5mlP6ZL13idEx21diQAM5AJgIe78RxRfZctWRppaZrtpiGTzhc/sNv7UM1FpfO/aa5wel4+aQW7MQ=="; }; }; + "@json2csv/plainjs-6.1.3" = { + name = "_at_json2csv_slash_plainjs"; + packageName = "@json2csv/plainjs"; + version = "6.1.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@json2csv/plainjs/-/plainjs-6.1.3.tgz"; + sha512 = "8cH/yVAPt1edDq/2Krr4elS2uJFWAdMQDH+ocuepjyh7lmBHEHv5kU0bqbYpd5ZpKTizshotsKk7KYA3nx4CCw=="; + }; + }; "@koa/multer-3.0.2" = { name = "_at_koa_slash_multer"; packageName = "@koa/multer"; @@ -10462,13 +10498,13 @@ let sha512 = "+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg=="; }; }; - "@pkgr/utils-2.3.1" = { + "@pkgr/utils-2.4.0" = { name = "_at_pkgr_slash_utils"; packageName = "@pkgr/utils"; - version = "2.3.1"; + version = "2.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz"; - sha512 = "wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw=="; + url = "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.0.tgz"; + sha512 = "2OCURAmRtdlL8iUDTypMrrxfwe8frXTeXaxGsVOaYtc/wrUyk8Z/0OBetM7cdlsy7ZFWlMX72VogKeh+A4Xcjw=="; }; }; "@pm2/agent-2.0.1" = { @@ -10552,13 +10588,13 @@ let sha512 = "YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA=="; }; }; - "@pnpm/npm-conf-2.1.1" = { + "@pnpm/npm-conf-2.2.0" = { name = "_at_pnpm_slash_npm-conf"; packageName = "@pnpm/npm-conf"; - version = "2.1.1"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.1.1.tgz"; - sha512 = "yfRcuupmxxeDOSxvw4g+wFCrGiPD0L32f5WMzqMXp7Rl93EOCdFiDcaSNnZ10Up9GdNqkj70UTa8hfhPFphaZA=="; + url = "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.2.0.tgz"; + sha512 = "roLI1ul/GwzwcfcVpZYPdrgW2W/drLriObl1h+yLF5syc8/5ULWw2ALbCHUWF+4YltIqA3xFSbG4IwyJz37e9g=="; }; }; "@pnpm/package-bins-4.1.0" = { @@ -12172,6 +12208,15 @@ let sha512 = "juqNFdqqmY/nvsODq1Vba7PWIaqr01VcqICIrxbws97QKSQhQUMml8FqdHLmevwVpqH39H5mVXKFWiWCi1ke0w=="; }; }; + "@streamparser/json-0.0.12" = { + name = "_at_streamparser_slash_json"; + packageName = "@streamparser/json"; + version = "0.0.12"; + src = fetchurl { + url = "https://registry.npmjs.org/@streamparser/json/-/json-0.0.12.tgz"; + sha512 = "+kmRpd+EeTFd3qNt1AoKphJqbAN26ZDsbiwqjBFeoAmdCyiUO19xMXPtYi9vovAj9a7OAJnvWtiHkwwjU2Fx4Q=="; + }; + }; "@stroncium/procfs-1.2.1" = { name = "_at_stroncium_slash_procfs"; packageName = "@stroncium/procfs"; @@ -14737,6 +14782,132 @@ let sha512 = "2f50OTVrN07x7pH+XNW0e7cj7T+Ufg+19+a2N3/XZBjQmV+FaMlmSLiaQ4tBxp2H8lWWHzENua7ZSSQPtRZ3/A=="; }; }; + "@volar-plugins/css-2.0.0" = { + name = "_at_volar-plugins_slash_css"; + packageName = "@volar-plugins/css"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@volar-plugins/css/-/css-2.0.0.tgz"; + sha512 = "ZAXdRK6n6T5fwC3Et4rOofLS9VH919/ayFHo5tXNCA7k2wkrVU2Uno408+024/irpVsFCkSxipycSQJBtTFh+A=="; + }; + }; + "@volar-plugins/emmet-2.0.0" = { + name = "_at_volar-plugins_slash_emmet"; + packageName = "@volar-plugins/emmet"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@volar-plugins/emmet/-/emmet-2.0.0.tgz"; + sha512 = "fbi+fDjixvipXt6qX71Bci66RGho/LnxeA9GfGsezdDWdQr9VjHs/3ewEpgi3fJkPeZqSawAkG+v2YQEWG4QMg=="; + }; + }; + "@volar-plugins/html-2.0.0" = { + name = "_at_volar-plugins_slash_html"; + packageName = "@volar-plugins/html"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@volar-plugins/html/-/html-2.0.0.tgz"; + sha512 = "X/DlOX/qJ54v8NzS80ZuD0OOU+Txx4GH0cUffhIsd9yn55mP/vc4nH+Lxo0Yz2I8SkjIiLM+DssumvAJSjH+og=="; + }; + }; + "@volar-plugins/json-2.0.0" = { + name = "_at_volar-plugins_slash_json"; + packageName = "@volar-plugins/json"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@volar-plugins/json/-/json-2.0.0.tgz"; + sha512 = "o56Ei2D2jVs5opSILGcE3wHVg0dGZEQ9A6xsx+klCDJ2/ZNADrByefga0z8LKdD2ZZiIpUpjzvsM/Oh9+hZOWw=="; + }; + }; + "@volar-plugins/pug-2.0.0" = { + name = "_at_volar-plugins_slash_pug"; + packageName = "@volar-plugins/pug"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@volar-plugins/pug/-/pug-2.0.0.tgz"; + sha512 = "BDz1n7EUa+J51cBxdhj8jVfB6KywB0BHt6IaMu/HV8VXFLNpDQCCUMEkEb5Wm7u9iV54hYk1x4cZawGruhHGZw=="; + }; + }; + "@volar-plugins/pug-beautify-2.0.0" = { + name = "_at_volar-plugins_slash_pug-beautify"; + packageName = "@volar-plugins/pug-beautify"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@volar-plugins/pug-beautify/-/pug-beautify-2.0.0.tgz"; + sha512 = "25r8HwObez/LoNrb0+kbyKDbhlEJe/WgjYeYMJ/OlKu+60BvSWyDTDtGmkV9DHh921zeAHcFTkHebf7oX1KbmA=="; + }; + }; + "@volar-plugins/typescript-2.0.0" = { + name = "_at_volar-plugins_slash_typescript"; + packageName = "@volar-plugins/typescript"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@volar-plugins/typescript/-/typescript-2.0.0.tgz"; + sha512 = "392e4KyMikiU9QkC/ii1K/HCs5Zcf8h6GA9BTpuuhxXeYk8LOnqDX8xLHTFVBuTORCXzrikZEzNzXHdL/4tqEA=="; + }; + }; + "@volar-plugins/typescript-twoslash-queries-2.0.0" = { + name = "_at_volar-plugins_slash_typescript-twoslash-queries"; + packageName = "@volar-plugins/typescript-twoslash-queries"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@volar-plugins/typescript-twoslash-queries/-/typescript-twoslash-queries-2.0.0.tgz"; + sha512 = "NwqBBruD1DvVmFVyPinOuuMGqpSroVTnl1R1vOnhbKquButOj+0b2k43Gn1fz/Uqe9hijLCxMEtMIIcW38ny8w=="; + }; + }; + "@volar/language-core-1.4.1" = { + name = "_at_volar_slash_language-core"; + packageName = "@volar/language-core"; + version = "1.4.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@volar/language-core/-/language-core-1.4.1.tgz"; + sha512 = "EIY+Swv+TjsWpxOxujjMf1ZXqOjg9MT2VMXZ+1dKva0wD8W0L6EtptFFcCJdBbcKmGMFkr57Qzz9VNMWhs3jXQ=="; + }; + }; + "@volar/language-server-1.4.1" = { + name = "_at_volar_slash_language-server"; + packageName = "@volar/language-server"; + version = "1.4.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@volar/language-server/-/language-server-1.4.1.tgz"; + sha512 = "UxhiN205o8ZfTnMNhRPCtW+ncrBtqZMd+f08Xf99Je4WB+SYyv3VNnIZEQDXfaTXR6mLUgQ1mDwPsUOLKKGY8A=="; + }; + }; + "@volar/language-service-1.4.1" = { + name = "_at_volar_slash_language-service"; + packageName = "@volar/language-service"; + version = "1.4.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@volar/language-service/-/language-service-1.4.1.tgz"; + sha512 = "F30uT+xk20ZYpxRwNW9xBEoErSqd9zNW7iuFwSIX9bYO/12RLjB2I+vgM/GdPZnzZ37imXa76ykwqTRXrafigQ=="; + }; + }; + "@volar/source-map-1.4.1" = { + name = "_at_volar_slash_source-map"; + packageName = "@volar/source-map"; + version = "1.4.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@volar/source-map/-/source-map-1.4.1.tgz"; + sha512 = "bZ46ad72dsbzuOWPUtJjBXkzSQzzSejuR3CT81+GvTEI2E994D8JPXzM3tl98zyCNnjgs4OkRyliImL1dvJ5BA=="; + }; + }; + "@volar/vue-language-core-1.6.3" = { + name = "_at_volar_slash_vue-language-core"; + packageName = "@volar/vue-language-core"; + version = "1.6.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@volar/vue-language-core/-/vue-language-core-1.6.3.tgz"; + sha512 = "e9OTDCPa8Wuh0ORhD4z++qTIcrsrqcI9waspr93YcQCq6j+Q+JTFuy7HBSQgyezSAsP6x1WWokKVk4fWWDJQOw=="; + }; + }; + "@volar/vue-language-service-1.6.3" = { + name = "_at_volar_slash_vue-language-service"; + packageName = "@volar/vue-language-service"; + version = "1.6.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@volar/vue-language-service/-/vue-language-service-1.6.3.tgz"; + sha512 = "4pOruLg1DwPCWkymeLtED87HKlZs/safOkgWaKe0L/gTNgMtMwrfbjx5b2nZtYcdE6FA8fwl2AzDFwphjkrWrg=="; + }; + }; "@vscode/emmet-helper-2.8.7" = { name = "_at_vscode_slash_emmet-helper"; packageName = "@vscode/emmet-helper"; @@ -14755,6 +14926,15 @@ let sha512 = "E1OCmDcDWa0Ya7vtSjp/XfHFGqYJfh+YPC1RkATU71fTac+j1JjCcB3qwSzmlKAighx2WxhLlfhS0RwAN++PFQ=="; }; }; + "@vscode/l10n-0.0.11" = { + name = "_at_vscode_slash_l10n"; + packageName = "@vscode/l10n"; + version = "0.0.11"; + src = fetchurl { + url = "https://registry.npmjs.org/@vscode/l10n/-/l10n-0.0.11.tgz"; + sha512 = "ukOMWnCg1tCvT7WnDfsUKQOFDQGsyR5tNgRpwmqi+5/vzU3ghdDXzvIM4IOPdSb3OeSsBNvmSL8nxIVOqi2WXA=="; + }; + }; "@vscode/l10n-0.0.13" = { name = "_at_vscode_slash_l10n"; packageName = "@vscode/l10n"; @@ -14881,6 +15061,15 @@ let sha512 = "p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig=="; }; }; + "@vue/compiler-core-3.3.0-beta.3" = { + name = "_at_vue_slash_compiler-core"; + packageName = "@vue/compiler-core"; + version = "3.3.0-beta.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.0-beta.3.tgz"; + sha512 = "mv2rPo4JHou6ebm7+U/wO1HpA6W1zDfTqbt4fqjoXrMwU4DWNgRcLKTXG6G3cXV4mOe+2YgWspfxEzo7fPTMKg=="; + }; + }; "@vue/compiler-dom-3.2.47" = { name = "_at_vue_slash_compiler-dom"; packageName = "@vue/compiler-dom"; @@ -14890,6 +15079,15 @@ let sha512 = "dBBnEHEPoftUiS03a4ggEig74J2YBZ2UIeyfpcRM2tavgMWo4bsEfgCGsu+uJIL/vax9S+JztH8NmQerUo7shQ=="; }; }; + "@vue/compiler-dom-3.3.0-beta.3" = { + name = "_at_vue_slash_compiler-dom"; + packageName = "@vue/compiler-dom"; + version = "3.3.0-beta.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.0-beta.3.tgz"; + sha512 = "e7VpjN9wYiuJdJos6Uoe501CzdMkfaEr/27Ks4Ss7Irtcj5YA/S1OROZ35Xl2Pc3ctx6beq5RpcOvnMqh0hcaA=="; + }; + }; "@vue/compiler-sfc-2.7.14" = { name = "_at_vue_slash_compiler-sfc"; packageName = "@vue/compiler-sfc"; @@ -14908,6 +15106,15 @@ let sha512 = "rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ=="; }; }; + "@vue/compiler-sfc-3.3.0-beta.3" = { + name = "_at_vue_slash_compiler-sfc"; + packageName = "@vue/compiler-sfc"; + version = "3.3.0-beta.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.0-beta.3.tgz"; + sha512 = "6shZNooetShjSMHJvgVoE0EM8pOMV5vnrzsHoCU06stzV+kqRJQpbN7xf2s9wK2fgHMIBSMINrM9AuZiQnNCJg=="; + }; + }; "@vue/compiler-ssr-3.2.47" = { name = "_at_vue_slash_compiler-ssr"; packageName = "@vue/compiler-ssr"; @@ -14917,6 +15124,15 @@ let sha512 = "wVXC+gszhulcMD8wpxMsqSOpvDZ6xKXSVWkf50Guf/S+28hTAXPDYRTbLQ3EDkOP5Xz/+SY37YiwDquKbJOgZw=="; }; }; + "@vue/compiler-ssr-3.3.0-beta.3" = { + name = "_at_vue_slash_compiler-ssr"; + packageName = "@vue/compiler-ssr"; + version = "3.3.0-beta.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.0-beta.3.tgz"; + sha512 = "egJ0lEVAod3Hpnw96cJ/0a9qv5f5h5/VCBpKYT8scqkzoMsikh8AJant2omokBCL/Ut5UAMLVQlA5b66+2Ys/g=="; + }; + }; "@vue/component-compiler-utils-3.3.0" = { name = "_at_vue_slash_component-compiler-utils"; packageName = "@vue/component-compiler-utils"; @@ -14953,6 +15169,15 @@ let sha512 = "LIZMuJk38pk9U9Ur4YzHjlIyMuxPlACdBIHH9/nGYVTsaGKOSnSuELiE8vS9wa+dJpIYspYUOqk+L1Q4pgHQHQ=="; }; }; + "@vue/reactivity-3.3.0-beta.3" = { + name = "_at_vue_slash_reactivity"; + packageName = "@vue/reactivity"; + version = "3.3.0-beta.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.0-beta.3.tgz"; + sha512 = "9VjWfWgZJ18YXEkfnDfZr33RyLBa6zc0RARLkMqMApWvM26eusZAZ4hhyxlgODBU/mEFk4XOGIAtwwSQedA0MQ=="; + }; + }; "@vue/reactivity-transform-3.2.47" = { name = "_at_vue_slash_reactivity-transform"; packageName = "@vue/reactivity-transform"; @@ -14962,6 +15187,15 @@ let sha512 = "m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA=="; }; }; + "@vue/reactivity-transform-3.3.0-beta.3" = { + name = "_at_vue_slash_reactivity-transform"; + packageName = "@vue/reactivity-transform"; + version = "3.3.0-beta.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.0-beta.3.tgz"; + sha512 = "aM3TgBca9QMMu/9B9ASRVvckeZpAdJO9nmQh5UCznhoDYjVxQPS+sCQvH6TLOjPB1MDQMVQYg4ZiPqfVVo7NbA=="; + }; + }; "@vue/shared-3.2.47" = { name = "_at_vue_slash_shared"; packageName = "@vue/shared"; @@ -14971,6 +15205,15 @@ let sha512 = "BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ=="; }; }; + "@vue/shared-3.3.0-beta.3" = { + name = "_at_vue_slash_shared"; + packageName = "@vue/shared"; + version = "3.3.0-beta.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@vue/shared/-/shared-3.3.0-beta.3.tgz"; + sha512 = "st1SnB/Bkbb9TsieeI4TRX9TqHYIR5wvIma3ZtEben55EYSWa1q5u2BhTNgABSdH+rv3Xwfrvpwh5PmCw6Y53g=="; + }; + }; "@vue/web-component-wrapper-1.3.0" = { name = "_at_vue_slash_web-component-wrapper"; packageName = "@vue/web-component-wrapper"; @@ -23234,13 +23477,13 @@ let sha512 = "GXmHxRdAPPCkD0jbD8QIhfry+EiHaLNAEToLh4snvgUhoYPuYd2qNKx6u7tyrw9Gpat8OxNMrX6J3Av3EjVmFw=="; }; }; - "cdk8s-plus-25-2.7.14" = { + "cdk8s-plus-25-2.7.15" = { name = "cdk8s-plus-25"; packageName = "cdk8s-plus-25"; - version = "2.7.14"; + version = "2.7.15"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.7.14.tgz"; - sha512 = "EMp0PldyDwNiS814y9O5nvr3Il3W5+N51fTFdpUziUQoqUJ692I/d0T1e9AV/b0IonhrXhM9hkEWre3LIbdDAg=="; + url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.7.15.tgz"; + sha512 = "YAxSIt1ZQvWX9VgpQRpKaXAzpiJnG5ayhbmr0FMS7EqDWrUgQdBC2UaeMx4APustEUBzGFUa4k6eUCyf7ngKNg=="; }; }; "cdktf-0.16.1" = { @@ -24296,13 +24539,13 @@ let sha512 = "x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g=="; }; }; - "cli-spinners-2.8.0" = { + "cli-spinners-2.9.0" = { name = "cli-spinners"; packageName = "cli-spinners"; - version = "2.8.0"; + version = "2.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.8.0.tgz"; - sha512 = "/eG5sJcvEIwxcdYM86k5tPwn0MUzkX5YY3eImTGpJOZgVe4SdTMY14vQpcxgBzJ0wXwAYrS8E+c3uHeK4JNyzQ=="; + url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.0.tgz"; + sha512 = "4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g=="; }; }; "cli-sprintf-format-1.1.1" = { @@ -24566,16 +24809,6 @@ let sha512 = "BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ=="; }; }; - "cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" = { - name = "cliui"; - packageName = "cliui"; - version = "8.0.1"; - src = fetchgit { - url = "https://github.com/isaacs/cliui"; - rev = "9f97090165675fdda63a79c29bc36bb1033506b0"; - sha256 = "ab26c7d11e3828b09fa5596ad1a88b57df8694c4b1d88c5ef1979914a1376fb9"; - }; - }; "clivas-0.1.4" = { name = "clivas"; packageName = "clivas"; @@ -26097,13 +26330,13 @@ let sha512 = "xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ=="; }; }; - "constructs-10.2.12" = { + "constructs-10.2.13" = { name = "constructs"; packageName = "constructs"; - version = "10.2.12"; + version = "10.2.13"; src = fetchurl { - url = "https://registry.npmjs.org/constructs/-/constructs-10.2.12.tgz"; - sha512 = "aBX/fxAgJgZaX2SL6rdUap8UIWAY1lv6xK/stB1EJ3TFpSEDApd6ZCG40hvK/243H13m0MilvCrmyfyKTdiPlQ=="; + url = "https://registry.npmjs.org/constructs/-/constructs-10.2.13.tgz"; + sha512 = "bohdPGeid/loR/1HNtn+bTQMvTgBRbFNRkykNB2nfxivo7nYYUIu/4BocAPe58In9kYOeJh4X6XrIvMAjwVSzg=="; }; }; "consume-http-header-1.0.0" = { @@ -28015,15 +28248,6 @@ let sha512 = "byxnDBxM1AVF3YfmsK7Smop9/usNz7gAZYSo9eYp61TGcNXraJby1rAiLyJSt1/8Iho2qaxZOtZCOvQMXogPtg=="; }; }; - "csv-parse-5.3.8" = { - name = "csv-parse"; - packageName = "csv-parse"; - version = "5.3.8"; - src = fetchurl { - url = "https://registry.npmjs.org/csv-parse/-/csv-parse-5.3.8.tgz"; - sha512 = "ird8lzMv9I64oqIVIHdaTbT7Yr55n2C/Nv6m1LxO7nddLEeI67468VQ9Ik+r6lwYbK9kTE1oSqAVcVKc/Uqx6g=="; - }; - }; "csv-parse-5.3.9" = { name = "csv-parse"; packageName = "csv-parse"; @@ -31561,13 +31785,13 @@ let sha512 = "r1NDtlajsq7gf2EXgjRfblCVPquvD2yeg+6XGErOKblvxOpDi0iulZLVhgYDP4AEF1P5/HgbX/vwjlkEv7PEIQ=="; }; }; - "electron-to-chromium-1.4.378" = { + "electron-to-chromium-1.4.379" = { name = "electron-to-chromium"; packageName = "electron-to-chromium"; - version = "1.4.378"; + version = "1.4.379"; src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.378.tgz"; - sha512 = "RfCD26kGStl6+XalfX3DGgt3z2DNwJS5DKRHCpkPq5T/PqpZMPB1moSRXuK9xhkt/sF57LlpzJgNoYl7mO7Z6w=="; + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.379.tgz"; + sha512 = "eRMq6Cf4PhjB14R9U6QcXM/VRQ54Gc3OL9LKnFugUIh2AXm3KJlOizlSfVIgjH76bII4zHGK4t0PVTE5qq8dZg=="; }; }; "electrum-client-git+https://github.com/janoside/electrum-client" = { @@ -31671,13 +31895,13 @@ let sha512 = "DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ=="; }; }; - "emmet-2.4.2" = { + "emmet-2.4.3" = { name = "emmet"; packageName = "emmet"; - version = "2.4.2"; + version = "2.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/emmet/-/emmet-2.4.2.tgz"; - sha512 = "YgmsMkhUgzhJMgH5noGudfxqrQn1bapvF0y7C1e7A0jWFImsRrrvVslzyZz0919NED/cjFOpVWx7c973V+2S/w=="; + url = "https://registry.npmjs.org/emmet/-/emmet-2.4.3.tgz"; + sha512 = "Bq6zozVDVrLbBmKdosI9Q2DvrFh/ehwnNjgDRsvGVjPOEAhMKie9HwQnPuUi3NOZ2itVGyRwsLAdufnG9DVFwg=="; }; }; "emoji-named-characters-1.0.2" = { @@ -31923,13 +32147,13 @@ let sha512 = "ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA=="; }; }; - "engine.io-6.4.1" = { + "engine.io-6.4.2" = { name = "engine.io"; packageName = "engine.io"; - version = "6.4.1"; + version = "6.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/engine.io/-/engine.io-6.4.1.tgz"; - sha512 = "JFYQurD/nbsA5BSPmbaOSLa3tSVj8L6o4srSwXXY3NqE+gGUNmmPTbhn8tjzcCtSqhFgIeqef81ngny8JM25hw=="; + url = "https://registry.npmjs.org/engine.io/-/engine.io-6.4.2.tgz"; + sha512 = "FKn/3oMiJjrOEOeUub2WCox6JhxBXq/Zn3fZOMCBxKnNYtsdKjxhl7yR3fZhM9PV+rdE75SU5SYMc+2PGzo+Tg=="; }; }; "engine.io-client-1.3.1" = { @@ -38576,15 +38800,6 @@ let sha512 = "sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA=="; }; }; - "globalyzer-0.1.0" = { - name = "globalyzer"; - packageName = "globalyzer"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz"; - sha512 = "40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q=="; - }; - }; "globby-10.0.0" = { name = "globby"; packageName = "globby"; @@ -38702,15 +38917,6 @@ let sha512 = "xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg=="; }; }; - "globrex-0.1.2" = { - name = "globrex"; - packageName = "globrex"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz"; - sha512 = "uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg=="; - }; - }; "globule-1.3.4" = { name = "globule"; packageName = "globule"; @@ -38783,13 +38989,13 @@ let sha512 = "5Rk7iLNDFhFeBYc3s8l1CqzbEBcdhwR193RlD4vSNFajIcINKI8W8P0JLmBpwymHqqWbX34pJDQu39cSy/6RsA=="; }; }; - "google-auth-library-8.7.0" = { + "google-auth-library-8.8.0" = { name = "google-auth-library"; packageName = "google-auth-library"; - version = "8.7.0"; + version = "8.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-8.7.0.tgz"; - sha512 = "1M0NG5VDIvJZEnstHbRdckLZESoJwguinwN8Dhae0j2ZKIQFIV63zxm6Fo6nM4xkgqUr2bbMtV5Dgo+Hy6oo0Q=="; + url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-8.8.0.tgz"; + sha512 = "0iJn7IDqObDG5Tu9Tn2WemmJ31ksEa96IyK0J0OZCpTh6CrC6FrattwKX87h3qKVuprCJpdOGKc1Xi8V0kMh8Q=="; }; }; "google-gax-3.6.0" = { @@ -44993,22 +45199,13 @@ let sha512 = "R2SE/AQrE4IhlyRbBp7ASIjFO+Wlpfra2Q7GMZkOjQb890MLtKyINPawJ7fr+Z7CPgHoXj2J3BNyebBIbVn8PQ=="; }; }; - "jackspeak-2.1.3" = { + "jackspeak-2.1.5" = { name = "jackspeak"; packageName = "jackspeak"; - version = "2.1.3"; + version = "2.1.5"; src = fetchurl { - url = "https://registry.npmjs.org/jackspeak/-/jackspeak-2.1.3.tgz"; - sha512 = "fdMVv5tNmDwEilqhV3P5d71SWGhBwMPTfIXRGx9BN+3N84d64hw4i6tZb7GKzssGT6O7gYYWDNJnSAdliiLCkQ=="; - }; - }; - "jackspeak-2.1.4" = { - name = "jackspeak"; - packageName = "jackspeak"; - version = "2.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/jackspeak/-/jackspeak-2.1.4.tgz"; - sha512 = "7CGd4ZQu5M/FgQLlcgcsY858wf+ukg1ma5M95FACSfC54+88vm594Nv6C3NqWfk8wyK1u+E3SzvVsxr7bwONmg=="; + url = "https://registry.npmjs.org/jackspeak/-/jackspeak-2.1.5.tgz"; + sha512 = "NeK3mbF9vwNS3SjhzlEfO6WREJqoKtCwLoUPoUVtGJrpecxN3ZxlDuF22MzNSbOk/AA/VFWi+nFMV89xkXh2og=="; }; }; "jade-0.26.3" = { @@ -46002,13 +46199,13 @@ let sha512 = "cJGoILr4jNnOIDtNY3LLldsZujmtEILOzwX7yHFu+sVcqlpyeT8VYd34hQwIh3D9HA9DqJh30thTqoQbRMdN+A=="; }; }; - "jsii-srcmak-0.1.900" = { + "jsii-srcmak-0.1.901" = { name = "jsii-srcmak"; packageName = "jsii-srcmak"; - version = "0.1.900"; + version = "0.1.901"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.900.tgz"; - sha512 = "D2tN+JZ941jlOVVdXLHmztbY1zlg1jbx0irkXPR8y2IWTftQalDkmx0dw82LJPEAVSGRSTiWKJoXRs+5o+fvqQ=="; + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.901.tgz"; + sha512 = "zj/w56AFo2E7PwivpcG+xaccgZXDAO+C48xQu/Wc9/3K6GU4VAeSc5X0LHXBhR2GTQXuyuu3a0k9WZzyklbNLQ=="; }; }; "json-bigint-1.0.0" = { @@ -48090,6 +48287,15 @@ let sha512 = "1kK6AnzxCGal0sjxPJf6AlEas5TgeYK+8g+Gb+2ygIqC5PxhqG+66Jn1yPGF9pOityh45wedeHsm8X12GH5OJQ=="; }; }; + "lightning-9.3.0" = { + name = "lightning"; + packageName = "lightning"; + version = "9.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/lightning/-/lightning-9.3.0.tgz"; + sha512 = "vkjo1vor1WNAEE/CkU9MDCj6soOszsBmLrpqBD+EN5YT+7B9twp+xkETulgFCPyF/Nb7ftA7ijiMH9Wq2UP4ew=="; + }; + }; "lightningcss-1.20.0" = { name = "lightningcss"; packageName = "lightningcss"; @@ -48405,6 +48611,15 @@ let sha512 = "8eQvvZb/MiYcRUlg/iIaamWSSTLBpLidLiviqmZ3enpnliW1JIA6pgXsbfyKSWPK3bdzqPuRGnQKQevXsTAybQ=="; }; }; + "ln-accounting-7.0.1" = { + name = "ln-accounting"; + packageName = "ln-accounting"; + version = "7.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-7.0.1.tgz"; + sha512 = "81zor89MUIYLgVqOZdzgf3DZhDMLbJ5uolQIExDYxNHfIYkV5h+tfJOTIDsvI81DBLJaRDvB4Q9Ye4HFt6zkNA=="; + }; + }; "ln-service-54.10.5" = { name = "ln-service"; packageName = "ln-service"; @@ -48432,6 +48647,15 @@ let sha512 = "bniNeAalvhNZ8SSq96rZ2p59rasEFH1ik4Lvz2ixkonnpynzyLVxz5EJ95zZS8X0+PIIKT0V6jdP/kGHwZxnIQ=="; }; }; + "ln-service-56.3.0" = { + name = "ln-service"; + packageName = "ln-service"; + version = "56.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/ln-service/-/ln-service-56.3.0.tgz"; + sha512 = "8OhCO8o3bzbMzd1fTBSH95YDhx8e9v0xv4MnAl1UIMLkWpMY8EubBwtbLGwKcXumMMdLMUDXsfkKjwnlvtTMRw=="; + }; + }; "ln-sync-4.2.0" = { name = "ln-sync"; packageName = "ln-sync"; @@ -50755,6 +50979,15 @@ let sha512 = "WcfidHrDjMY+eLjlU+8OvwREqHwpgCeKVBUpQ3OhYYuvfaYCUgcbuBzappNzZvg/v8onU3oQj+BYpkOJe9Iw4Q=="; }; }; + "magic-string-0.30.0" = { + name = "magic-string"; + packageName = "magic-string"; + version = "0.30.0"; + src = fetchurl { + url = "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz"; + sha512 = "LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ=="; + }; + }; "magicli-0.0.5" = { name = "magicli"; packageName = "magicli"; @@ -54130,13 +54363,13 @@ let sha512 = "VoY2AaoowHZLLKyEb5FRzuhdSzXn5quGjcMKJOJHJPxp9baYZx5t6jiHUhp5aNRlqqlt+5GXQGovMLNKsrm1hg=="; }; }; - "msgpackr-1.8.5" = { + "msgpackr-1.9.0" = { name = "msgpackr"; packageName = "msgpackr"; - version = "1.8.5"; + version = "1.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/msgpackr/-/msgpackr-1.8.5.tgz"; - sha512 = "mpPs3qqTug6ahbblkThoUY2DQdNXcm4IapwOS3Vm/87vmpzLVelvp9h3It1y9l1VPpiFLV11vfOXnmeEwiIXwg=="; + url = "https://registry.npmjs.org/msgpackr/-/msgpackr-1.9.0.tgz"; + sha512 = "iiFP5UVxvdYFnxuFD3GrQ4eXr8LYRs6TsNQcps39+yLwMqg1ObJ+WUhgYkyfkts/uH1qSjrRNIttJ3lS56HrZQ=="; }; }; "msgpackr-extract-3.0.2" = { @@ -54157,6 +54390,15 @@ let sha512 = "m0yTx9xzUtTvJpWJHqknUXUDPRnJXZYOOFNygnNIXn1PBkLsC/rkXQdquObd+M0ZPlBhGC00Jg28zG0wCl7VWg=="; }; }; + "muggle-string-0.2.2" = { + name = "muggle-string"; + packageName = "muggle-string"; + version = "0.2.2"; + src = fetchurl { + url = "https://registry.npmjs.org/muggle-string/-/muggle-string-0.2.2.tgz"; + sha512 = "YVE1mIJ4VpUMqZObFndk9CJu6DBJR/GB13p3tXuNbwD4XExaI5EOuRl6BHeIDxIqXZVxSfAC+y6U1Z/IxCfKUg=="; + }; + }; "multer-1.4.3" = { name = "multer"; packageName = "multer"; @@ -60765,13 +61007,13 @@ let sha512 = "0+uijmzYcnhC0hStDjm/cl2VYdrmVVBpe7Q8k9YBojxmR5tG8mvR9/nooQq3QSXiQqORDVOTY3XqMEqJVIzkHA=="; }; }; - "pkg-types-1.0.2" = { + "pkg-types-1.0.3" = { name = "pkg-types"; packageName = "pkg-types"; - version = "1.0.2"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/pkg-types/-/pkg-types-1.0.2.tgz"; - sha512 = "hM58GKXOcj8WTqUXnsQyJYXdeAPbythQgEF3nTcEo+nkD49chjQ9IKm/QJy9xf6JakXptz86h7ecP2024rrLaQ=="; + url = "https://registry.npmjs.org/pkg-types/-/pkg-types-1.0.3.tgz"; + sha512 = "nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A=="; }; }; "pkg-up-3.1.0" = { @@ -68703,13 +68945,13 @@ let sha512 = "uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw=="; }; }; - "rollup-3.21.2" = { + "rollup-3.21.3" = { name = "rollup"; packageName = "rollup"; - version = "3.21.2"; + version = "3.21.3"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-3.21.2.tgz"; - sha512 = "c4vC+JZ3bbF4Kqq2TtM7zSKtSyMybFOjqmomFax3xpfYaPZDZ4iz8NMIuBRMjnXOcKYozw7bC6vhJjiWD6JpzQ=="; + url = "https://registry.npmjs.org/rollup/-/rollup-3.21.3.tgz"; + sha512 = "VnPfEG51nIv2xPLnZaekkuN06q9ZbnyDcLkaBdJa/W7UddyhOfMP2yOPziYQfeY7k++fZM8FdQIummFN5y14kA=="; }; }; "rollup-plugin-inject-3.0.2" = { @@ -76328,15 +76570,6 @@ let sha512 = "NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q=="; }; }; - "tiny-glob-0.2.9" = { - name = "tiny-glob"; - packageName = "tiny-glob"; - version = "0.2.9"; - src = fetchurl { - url = "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz"; - sha512 = "g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg=="; - }; - }; "tiny-inflate-1.0.3" = { name = "tiny-inflate"; packageName = "tiny-inflate"; @@ -78065,6 +78298,15 @@ let sha512 = "EqrdoXr0FbUrAMmkNQQuPwlhUGM7SJnpwUlWTWNlK2mOhOUyM+33fhm1f1hz3nnJJV8fTxzS3kTDq6pkVASLAw=="; }; }; + "typesafe-path-0.2.2" = { + name = "typesafe-path"; + packageName = "typesafe-path"; + version = "0.2.2"; + src = fetchurl { + url = "https://registry.npmjs.org/typesafe-path/-/typesafe-path-0.2.2.tgz"; + sha512 = "OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA=="; + }; + }; "typescript-2.9.2" = { name = "typescript"; packageName = "typescript"; @@ -78137,13 +78379,22 @@ let sha512 = "cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw=="; }; }; - "typescript-5.1.0-dev.20230501" = { + "typescript-5.1.0-dev.20230502" = { name = "typescript"; packageName = "typescript"; - version = "5.1.0-dev.20230501"; + version = "5.1.0-dev.20230502"; src = fetchurl { - url = "https://registry.npmjs.org/typescript/-/typescript-5.1.0-dev.20230501.tgz"; - sha512 = "do/P7zywbVm6xrjV7Sa7jqgqBfME/FhvtECzxfLpAxyqYY5SFPPWb5NTposRUVKw/0hLOxAoCbvYzNHa22VOMg=="; + url = "https://registry.npmjs.org/typescript/-/typescript-5.1.0-dev.20230502.tgz"; + sha512 = "xhGigho37UgtjMkTWMKDtIBV6ElFjcMFdzwTPQ0knTCSJ8tq0ENGsQPeTe0E7Db7mgZYWULEZnzs8KZ8IlHHLQ=="; + }; + }; + "typescript-auto-import-cache-0.2.1" = { + name = "typescript-auto-import-cache"; + packageName = "typescript-auto-import-cache"; + version = "0.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/typescript-auto-import-cache/-/typescript-auto-import-cache-0.2.1.tgz"; + sha512 = "FD5uYQSNkVTX4b3lvtifP+SR3bARWGmKe/uyp5BfuW2ZUCYG7vHKPddrteLU06Uh68woRaYIX+Sbs2nnySpGLw=="; }; }; "typescript-eslint-parser-16.0.1" = { @@ -81233,13 +81484,13 @@ let sha512 = "NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA=="; }; }; - "vite-4.3.3" = { + "vite-4.3.4" = { name = "vite"; packageName = "vite"; - version = "4.3.3"; + version = "4.3.4"; src = fetchurl { - url = "https://registry.npmjs.org/vite/-/vite-4.3.3.tgz"; - sha512 = "MwFlLBO4udZXd+VBcezo3u8mC77YQk+ik+fbc0GZWGgzfbPP+8Kf0fldhARqvSYmtIWoAJ5BXPClUbMTlqFxrA=="; + url = "https://registry.npmjs.org/vite/-/vite-4.3.4.tgz"; + sha512 = "f90aqGBoxSFxWph2b39ae2uHAxm5jFBBdnfueNxZAT1FTpM13ccFQExCaKbR2xFW5atowjleRniQ7onjJ22QEg=="; }; }; "vite-node-0.28.5" = { @@ -81935,6 +82186,24 @@ let sha512 = "DE+24W1d3oanGqq7yna4ddOKXmVzjECgku2ddMcm7OS9Bp9QOblMHT88PzKiCc7npGiHf5+mTfrEW1JVIBbA2A=="; }; }; + "vue-component-meta-1.6.3" = { + name = "vue-component-meta"; + packageName = "vue-component-meta"; + version = "1.6.3"; + src = fetchurl { + url = "https://registry.npmjs.org/vue-component-meta/-/vue-component-meta-1.6.3.tgz"; + sha512 = "ani/zGhKFriJna5FcuNfTp+t9X2Xy6AS4mwAeln3s8R3OYIrXp+yGmkJc+u6WmUgHeCPupTaXlfAC4nFYbrSCA=="; + }; + }; + "vue-component-type-helpers-1.6.3" = { + name = "vue-component-type-helpers"; + packageName = "vue-component-type-helpers"; + version = "1.6.3"; + src = fetchurl { + url = "https://registry.npmjs.org/vue-component-type-helpers/-/vue-component-type-helpers-1.6.3.tgz"; + sha512 = "d1SA+w3EMauEG38rjdtUNOp3TK4dl/RVMHb4aCVaG5490rNIGoybJurWbwLa0ofdPTkT0ie8yUQSyhebyqGQQw=="; + }; + }; "vue-eslint-parser-2.0.3" = { name = "vue-eslint-parser"; packageName = "vue-eslint-parser"; @@ -82043,6 +82312,15 @@ let sha512 = "ODQS1SyMbjKoO1JBJZojSw6FE4qnh9rIpUZn2EUT86FKizx9uH5z6uXiIrm4/Nb/gwxTi/o17ZDEGWAXHvtC7g=="; }; }; + "vue-template-compiler-2.7.14" = { + name = "vue-template-compiler"; + packageName = "vue-template-compiler"; + version = "2.7.14"; + src = fetchurl { + url = "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.14.tgz"; + sha512 = "zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ=="; + }; + }; "vue-template-es2015-compiler-1.9.1" = { name = "vue-template-es2015-compiler"; packageName = "vue-template-es2015-compiler"; @@ -85183,6 +85461,16 @@ in sources."@angular-devkit/core-15.2.7" sources."@angular-devkit/schematics-15.2.7" sources."@gar/promisify-1.1.3" + (sources."@isaacs/cliui-8.0.2" // { + dependencies = [ + sources."ansi-regex-6.0.1" + sources."ansi-styles-6.2.1" + sources."emoji-regex-9.2.2" + sources."string-width-5.1.2" + sources."strip-ansi-7.0.1" + sources."wrap-ansi-8.1.0" + ]; + }) sources."@jridgewell/sourcemap-codec-1.4.15" sources."@npmcli/fs-2.1.2" sources."@npmcli/git-4.0.4" @@ -85241,18 +85529,9 @@ in sources."chownr-2.0.0" sources."clean-stack-2.2.0" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-width-3.0.0" - (sources."cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" // { - dependencies = [ - sources."ansi-regex-6.0.1" - sources."ansi-styles-6.2.1" - sources."emoji-regex-9.2.2" - sources."string-width-5.1.2" - sources."strip-ansi-7.0.1" - sources."wrap-ansi-8.1.0" - ]; - }) + sources."cliui-8.0.1" sources."clone-1.0.4" sources."color-convert-2.0.1" sources."color-name-1.1.4" @@ -85343,7 +85622,7 @@ in sources."is-unicode-supported-0.1.0" sources."is-wsl-2.2.0" sources."isexe-2.0.0" - sources."jackspeak-2.1.3" + sources."jackspeak-2.1.5" sources."json-parse-even-better-errors-3.0.0" sources."json-schema-traverse-1.0.0" sources."jsonc-parser-3.2.0" @@ -85906,44 +86185,94 @@ in }; dependencies = [ sources."@astrojs/compiler-1.4.0" - sources."@emmetio/abbreviation-2.3.1" - sources."@emmetio/css-abbreviation-2.1.6" - sources."@emmetio/scanner-1.0.2" + sources."@emmetio/abbreviation-2.3.2" + sources."@emmetio/css-abbreviation-2.1.7" + sources."@emmetio/scanner-1.0.3" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.18" - sources."@pkgr/utils-2.3.1" + sources."@nodelib/fs.scandir-2.1.5" + sources."@nodelib/fs.stat-2.0.5" + sources."@nodelib/fs.walk-1.2.8" + sources."@pkgr/utils-2.4.0" (sources."@vscode/emmet-helper-2.8.7" // { dependencies = [ sources."vscode-uri-2.1.2" ]; }) sources."@vscode/l10n-0.0.13" + sources."big-integer-1.6.51" + sources."bplist-parser-0.2.0" + sources."braces-3.0.2" + sources."bundle-name-3.0.0" sources."cross-spawn-7.0.3" - sources."define-lazy-prop-2.0.0" - sources."emmet-2.4.2" + sources."default-browser-4.0.0" + sources."default-browser-id-3.0.0" + sources."define-lazy-prop-3.0.0" + sources."emmet-2.4.3" sources."events-3.3.0" - sources."globalyzer-0.1.0" - sources."globrex-0.1.2" - sources."is-docker-2.2.1" + (sources."execa-7.1.1" // { + dependencies = [ + sources."human-signals-4.3.1" + sources."is-stream-3.0.0" + sources."mimic-fn-4.0.0" + sources."npm-run-path-5.1.0" + sources."onetime-6.0.0" + sources."path-key-4.0.0" + sources."strip-final-newline-3.0.0" + ]; + }) + sources."fast-glob-3.2.12" + sources."fastq-1.15.0" + sources."fill-range-7.0.1" + sources."get-stream-6.0.1" + sources."glob-parent-5.1.2" + sources."human-signals-2.1.0" + sources."is-docker-3.0.0" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" - sources."is-wsl-2.2.0" + sources."is-inside-container-1.0.0" + sources."is-number-7.0.0" + sources."is-stream-2.0.1" + (sources."is-wsl-2.2.0" // { + dependencies = [ + sources."is-docker-2.2.1" + ]; + }) sources."isexe-2.0.0" sources."jsonc-parser-2.3.1" - sources."open-8.4.2" + sources."merge-stream-2.0.0" + sources."merge2-1.4.1" + sources."micromatch-4.0.5" + sources."mimic-fn-2.1.0" + sources."npm-run-path-4.0.1" + sources."onetime-5.1.2" + sources."open-9.1.0" sources."path-key-3.1.1" sources."picocolors-1.0.0" + sources."picomatch-2.3.1" sources."prettier-2.8.8" sources."prettier-plugin-astro-0.8.0" + sources."queue-microtask-1.2.3" + sources."reusify-1.0.4" + (sources."run-applescript-5.0.0" // { + dependencies = [ + sources."execa-5.1.1" + ]; + }) + sources."run-parallel-1.2.0" sources."s.color-0.0.15" sources."sass-formatter-0.7.6" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" + sources."signal-exit-3.0.7" + sources."strip-final-newline-2.0.0" sources."suf-log-2.5.3" sources."synckit-0.8.5" - sources."tiny-glob-0.2.9" + sources."titleize-3.0.0" + sources."to-regex-range-5.0.1" sources."tslib-2.5.0" + sources."untildify-4.0.0" sources."vscode-css-languageservice-6.2.5" sources."vscode-html-languageservice-5.0.5" sources."vscode-jsonrpc-8.1.0" @@ -86134,7 +86463,7 @@ in ]; }) sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" (sources."encoding-0.1.13" // { @@ -87030,7 +87359,7 @@ in sources."clean-css-5.3.2" sources."cli-color-2.0.3" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-table3-0.6.3" sources."cli-width-3.0.0" sources."cliui-7.0.4" @@ -87129,7 +87458,7 @@ in }) sources."duplexer3-0.1.5" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -87965,7 +88294,7 @@ in sources."chokidar-3.5.3" sources."clean-stack-2.2.0" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-truncate-3.1.0" sources."cli-width-3.0.0" sources."clone-1.0.4" @@ -89238,9 +89567,9 @@ in sources."tslib-2.5.0" ]; }) - (sources."@azure/msal-browser-2.36.0" // { + (sources."@azure/msal-browser-2.37.0" // { dependencies = [ - sources."@azure/msal-common-12.1.0" + sources."@azure/msal-common-13.0.0" ]; }) sources."@azure/msal-common-7.6.0" @@ -89411,7 +89740,7 @@ in sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" (sources."cli-table-0.3.11" // { dependencies = [ sources."colors-1.0.3" @@ -90012,7 +90341,7 @@ in sources."chalk-4.1.2" sources."child-process-promise-2.2.1" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."clone-1.0.4" sources."color-convert-2.0.1" sources."color-name-1.1.4" @@ -90183,7 +90512,7 @@ in sources."chokidar-3.5.3" sources."chrome-trace-event-1.0.3" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-table3-0.6.3" sources."cli-width-3.0.0" sources."clone-1.0.4" @@ -90195,7 +90524,7 @@ in sources."cross-spawn-7.0.3" sources."deepmerge-4.3.1" sources."defaults-1.0.4" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" sources."enhanced-resolve-5.13.0" @@ -90445,7 +90774,7 @@ in sources."graceful-fs-4.2.10" ]; }) - sources."@pnpm/npm-conf-2.1.1" + sources."@pnpm/npm-conf-2.2.0" (sources."@shopify/cli-kit-3.45.1" // { dependencies = [ sources."ansi-escapes-6.0.0" @@ -91011,7 +91340,7 @@ in sources."buffer-5.7.1" sources."chalk-4.1.2" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."clone-1.0.4" sources."color-convert-2.0.1" sources."color-name-1.1.4" @@ -91933,6 +92262,120 @@ in bypassCache = true; reconstructLock = true; }; + "@volar/vue-language-server" = nodeEnv.buildNodePackage { + name = "_at_volar_slash_vue-language-server"; + packageName = "@volar/vue-language-server"; + version = "1.6.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@volar/vue-language-server/-/vue-language-server-1.6.3.tgz"; + sha512 = "YPP36VXy6WD0BWHTLPX79C75D6ymgbL3ovZPs7kl3BJ7tGFf67B7SFVaYJUuqsxJMjhyyadWhRlS1CC+WJO5zA=="; + }; + dependencies = [ + sources."@babel/parser-7.21.5" + sources."@emmetio/abbreviation-2.3.2" + sources."@emmetio/css-abbreviation-2.1.7" + sources."@emmetio/scanner-1.0.3" + sources."@johnsoncodehk/pug-beautify-0.2.2" + sources."@jridgewell/sourcemap-codec-1.4.15" + sources."@volar-plugins/css-2.0.0" + sources."@volar-plugins/emmet-2.0.0" + sources."@volar-plugins/html-2.0.0" + sources."@volar-plugins/json-2.0.0" + sources."@volar-plugins/pug-2.0.0" + sources."@volar-plugins/pug-beautify-2.0.0" + sources."@volar-plugins/typescript-2.0.0" + sources."@volar-plugins/typescript-twoslash-queries-2.0.0" + sources."@volar/language-core-1.4.1" + sources."@volar/language-server-1.4.1" + sources."@volar/language-service-1.4.1" + sources."@volar/source-map-1.4.1" + sources."@volar/vue-language-core-1.6.3" + sources."@volar/vue-language-service-1.6.3" + (sources."@vscode/emmet-helper-2.8.7" // { + dependencies = [ + sources."jsonc-parser-2.3.1" + sources."vscode-uri-2.1.2" + ]; + }) + sources."@vscode/l10n-0.0.11" + sources."@vue/compiler-core-3.3.0-beta.3" + sources."@vue/compiler-dom-3.3.0-beta.3" + sources."@vue/compiler-sfc-3.3.0-beta.3" + sources."@vue/compiler-ssr-3.3.0-beta.3" + sources."@vue/reactivity-3.3.0-beta.3" + sources."@vue/reactivity-transform-3.3.0-beta.3" + sources."@vue/shared-3.3.0-beta.3" + sources."acorn-7.4.1" + sources."balanced-match-1.0.2" + sources."brace-expansion-2.0.1" + sources."call-bind-1.0.2" + sources."character-parser-2.2.0" + sources."de-indent-1.0.2" + sources."emmet-2.4.3" + sources."estree-walker-2.0.2" + sources."function-bind-1.1.1" + sources."get-intrinsic-1.2.0" + sources."has-1.0.3" + sources."has-symbols-1.0.3" + sources."has-tostringtag-1.0.0" + sources."he-1.2.0" + sources."is-expression-4.0.0" + sources."is-regex-1.1.4" + sources."jsonc-parser-3.2.0" + sources."lru-cache-6.0.0" + sources."magic-string-0.30.0" + sources."minimatch-9.0.0" + sources."muggle-string-0.2.2" + sources."nanoid-3.3.6" + sources."object-assign-4.1.1" + sources."picocolors-1.0.0" + sources."postcss-8.4.23" + sources."pug-error-2.0.0" + sources."pug-lexer-5.0.1" + sources."pug-parser-6.0.0" + sources."request-light-0.7.0" + sources."semver-7.5.0" + sources."source-map-js-1.0.2" + sources."token-stream-1.0.0" + sources."typesafe-path-0.2.2" + sources."typescript-5.0.4" + sources."typescript-auto-import-cache-0.2.1" + (sources."vscode-css-languageservice-6.2.5" // { + dependencies = [ + sources."@vscode/l10n-0.0.13" + ]; + }) + (sources."vscode-html-languageservice-5.0.5" // { + dependencies = [ + sources."@vscode/l10n-0.0.13" + ]; + }) + (sources."vscode-json-languageservice-5.3.4" // { + dependencies = [ + sources."@vscode/l10n-0.0.13" + ]; + }) + sources."vscode-jsonrpc-8.1.0" + sources."vscode-languageserver-8.1.0" + sources."vscode-languageserver-protocol-3.17.3" + sources."vscode-languageserver-textdocument-1.0.10" + sources."vscode-languageserver-types-3.17.3" + sources."vscode-nls-5.2.0" + sources."vscode-uri-3.0.7" + sources."vue-component-meta-1.6.3" + sources."vue-component-type-helpers-1.6.3" + sources."vue-template-compiler-2.7.14" + sources."yallist-4.0.0" + ]; + buildInputs = globalBuildInputs; + meta = { + homepage = "https://github.com/vuejs/language-tools#readme"; + license = "MIT"; + }; + production = true; + bypassCache = true; + reconstructLock = true; + }; "@vue/cli" = nodeEnv.buildNodePackage { name = "_at_vue_slash_cli"; packageName = "@vue/cli"; @@ -92303,7 +92746,7 @@ in sources."clean-stack-2.2.0" sources."cli-boxes-2.2.1" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-width-3.0.0" sources."cliui-7.0.4" sources."clone-1.0.4" @@ -92389,7 +92832,7 @@ in sources."easy-stack-1.0.1" sources."ee-first-1.1.1" sources."ejs-3.1.9" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."encoding-0.1.13" @@ -93293,6 +93736,7 @@ in sources."@babel/code-frame-7.21.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" + sources."@isaacs/cliui-8.0.2" sources."@npmcli/config-6.1.6" (sources."@npmcli/map-workspaces-3.0.4" // { dependencies = [ @@ -93308,7 +93752,7 @@ in sources."graceful-fs-4.2.10" ]; }) - sources."@pnpm/npm-conf-2.1.1" + sources."@pnpm/npm-conf-2.2.0" sources."@sindresorhus/is-5.3.0" sources."@szmarczak/http-timer-5.0.1" sources."@types/acorn-4.0.6" @@ -93368,7 +93812,6 @@ in sources."character-reference-invalid-2.0.1" sources."ci-info-3.8.0" sources."cli-boxes-3.0.0" - sources."cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" sources."color-convert-1.9.3" sources."color-name-1.1.3" sources."comma-separated-tokens-2.0.3" @@ -93490,7 +93933,7 @@ in sources."is-yarn-global-0.4.1" sources."isarray-0.0.1" sources."isexe-2.0.0" - sources."jackspeak-2.1.4" + sources."jackspeak-2.1.5" sources."js-tokens-4.0.0" sources."json-buffer-3.0.1" sources."json-parse-even-better-errors-2.3.1" @@ -93878,7 +94321,7 @@ in sources."convert-source-map-1.9.0" sources."debug-4.3.4" sources."ejs-3.1.6" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."ensure-posix-path-1.1.1" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" @@ -94267,7 +94710,7 @@ in dependencies = [ sources."browserslist-4.21.5" sources."caniuse-lite-1.0.30001482" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."escalade-3.1.1" sources."fraction.js-4.2.0" sources."nanoid-3.3.6" @@ -94373,7 +94816,7 @@ in sources."cheerio-select-2.1.0" sources."chownr-1.1.4" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-width-3.0.0" sources."clone-1.0.4" sources."color-convert-2.0.1" @@ -94657,7 +95100,7 @@ in sources."character-reference-invalid-1.1.4" sources."clean-stack-2.2.0" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."clone-1.0.4" sources."clone-response-1.0.3" sources."co-3.1.0" @@ -95010,10 +95453,10 @@ in balanceofsatoshis = nodeEnv.buildNodePackage { name = "balanceofsatoshis"; packageName = "balanceofsatoshis"; - version = "15.4.2"; + version = "15.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-15.4.2.tgz"; - sha512 = "PxzvZlqkPm5GurpMii1hE2uAOV3HCvE/Ze+jxx6UNf8vlXlhcnFxc5VyYzPuLZdjgHGyAr6ku4fBOeIYRszZAg=="; + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-15.4.3.tgz"; + sha512 = "mbJ4hpYrw94xPtYATWO6+oDhyEM63KNpg7a2bySIi23qJ9INc2aFQyCcDfpbMXsLHrDlhymjniZejx1c9b+jlA=="; }; dependencies = [ (sources."@alexbosworth/caporal-1.4.4" // { @@ -95044,7 +95487,7 @@ in sources."@grpc/proto-loader-0.7.6" sources."@handsontable/formulajs-2.0.2" sources."@json2csv/formatters-6.1.3" - sources."@json2csv/plainjs-6.1.2" + sources."@json2csv/plainjs-6.1.3" sources."@mitmaro/errors-1.0.0" sources."@mitmaro/http-authorization-header-1.0.0" sources."@protobufjs/aspromise-1.1.2" @@ -95057,7 +95500,7 @@ in sources."@protobufjs/path-1.1.2" sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" - sources."@streamparser/json-0.0.10" + sources."@streamparser/json-0.0.12" sources."@types/body-parser-1.19.2" sources."@types/caseless-0.12.2" sources."@types/connect-3.4.35" @@ -95134,7 +95577,7 @@ in sources."chardet-0.7.0" sources."cipher-base-1.0.4" sources."cli-cursor-1.0.2" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-width-2.2.1" sources."cliui-7.0.4" sources."clone-1.0.4" @@ -95160,7 +95603,7 @@ in sources."cors-2.8.5" sources."create-hash-1.2.0" sources."crypto-js-4.1.1" - sources."csv-parse-5.3.8" + sources."csv-parse-5.3.9" sources."debug-2.6.9" sources."defaults-1.0.4" sources."define-property-1.0.0" @@ -95291,42 +95734,30 @@ in sources."@types/node-18.15.0" ]; }) - (sources."ln-accounting-6.1.3" // { + sources."ln-accounting-7.0.1" + (sources."ln-service-56.3.0" // { dependencies = [ - sources."@grpc/grpc-js-1.8.4" - sources."@grpc/proto-loader-0.7.4" - sources."@types/express-4.17.15" - sources."@types/node-18.11.18" - sources."body-parser-1.20.1" - sources."colorette-2.0.19" - sources."goldengate-12.0.2" - (sources."lightning-7.0.3" // { - dependencies = [ - sources."@grpc/grpc-js-1.8.1" - ]; - }) - sources."ln-service-54.9.0" - sources."ln-sync-4.2.0" - sources."raw-body-2.5.1" - sources."type-fest-3.5.1" - sources."utf-8-validate-5.0.10" - sources."ws-8.11.0" + sources."@grpc/grpc-js-1.8.14" + sources."lightning-9.3.0" + sources."type-fest-3.9.0" ]; }) - (sources."ln-service-56.2.0" // { + (sources."ln-sync-5.1.0" // { dependencies = [ sources."@grpc/grpc-js-1.8.14" sources."@types/node-18.16.2" sources."lightning-9.2.1" + sources."ln-service-56.2.0" sources."type-fest-3.9.0" ]; }) - sources."ln-sync-5.1.0" (sources."ln-telegram-4.6.1" // { dependencies = [ sources."@grammyjs/types-2.12.1" sources."@grpc/grpc-js-1.8.4" sources."@grpc/proto-loader-0.7.4" + sources."@json2csv/plainjs-6.1.2" + sources."@streamparser/json-0.0.10" sources."@types/express-4.17.15" sources."@types/node-18.11.18" sources."body-parser-1.20.1" @@ -95343,6 +95774,7 @@ in sources."@grpc/grpc-js-1.8.1" ]; }) + sources."ln-accounting-6.1.3" sources."ln-service-54.9.0" sources."ln-sync-4.3.0" sources."ms-2.1.2" @@ -95423,7 +95855,15 @@ in sources."os-shim-0.1.3" sources."os-tmpdir-1.0.2" sources."p2tr-1.3.3" - sources."paid-services-5.0.2" + (sources."paid-services-5.0.2" // { + dependencies = [ + sources."@grpc/grpc-js-1.8.14" + sources."@types/node-18.16.2" + sources."lightning-9.2.1" + sources."ln-service-56.2.0" + sources."type-fest-3.9.0" + ]; + }) sources."parseurl-1.3.3" sources."path-to-regexp-0.1.7" sources."pinkie-2.0.4" @@ -96074,7 +96514,7 @@ in sources."ee-first-1.1.1" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" - sources."engine.io-6.4.1" + sources."engine.io-6.4.2" sources."engine.io-client-6.4.0" sources."engine.io-parser-5.0.6" sources."escalade-3.1.1" @@ -97801,10 +98241,10 @@ in cdk8s-cli = nodeEnv.buildNodePackage { name = "cdk8s-cli"; packageName = "cdk8s-cli"; - version = "2.2.24"; + version = "2.2.25"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.2.24.tgz"; - sha512 = "yLzGNS2aGQ37JGJ16UIcChpt4ra9yqKSMNJWXFulno6l4YNyl60VBjwWHlQmAcwesJHftIWFW2aBdPRQXH4a9w=="; + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.2.25.tgz"; + sha512 = "1CQo6E10hZnPSWGUAZVZKvg7I8lpuGhYINH4PEqtbSrE3yVNDwy89bIEhoFrz5OwjEDTcKxjL9/tCiUh6Wc09Q=="; }; dependencies = [ sources."@colors/colors-1.5.0" @@ -97861,12 +98301,12 @@ in sources."camelcase-6.3.0" sources."case-1.6.3" sources."cdk8s-2.7.56" - sources."cdk8s-plus-25-2.7.14" + sources."cdk8s-plus-25-2.7.15" sources."chalk-4.1.2" sources."chardet-0.7.0" sources."clean-stack-2.2.0" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-width-3.0.0" sources."cliui-7.0.4" sources."clone-2.1.2" @@ -97889,7 +98329,7 @@ in sources."combined-stream-1.0.8" sources."commonmark-0.30.0" sources."concat-map-0.0.1" - sources."constructs-10.2.12" + sources."constructs-10.2.13" sources."date-format-4.0.14" sources."debug-4.3.4" sources."decamelize-5.0.1" @@ -97989,7 +98429,7 @@ in sources."yargs-16.2.0" ]; }) - (sources."jsii-srcmak-0.1.900" // { + (sources."jsii-srcmak-0.1.901" // { dependencies = [ sources."fs-extra-9.1.0" ]; @@ -98391,7 +98831,7 @@ in sources."color-name-1.1.3" sources."commonmark-0.30.0" sources."concat-map-0.0.1" - sources."constructs-10.2.12" + sources."constructs-10.2.13" sources."convert-source-map-1.9.0" sources."convert-to-spaces-1.0.2" sources."cookie-0.4.2" @@ -98414,10 +98854,10 @@ in sources."diff-sequences-29.4.3" (sources."downlevel-dts-0.11.0" // { dependencies = [ - sources."typescript-5.1.0-dev.20230501" + sources."typescript-5.1.0-dev.20230502" ]; }) - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."emittery-0.13.1" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" @@ -98624,7 +99064,7 @@ in ]; }) sources."jsii-rosetta-5.0.7" - (sources."jsii-srcmak-0.1.900" // { + (sources."jsii-srcmak-0.1.901" // { dependencies = [ sources."ansi-styles-4.3.0" sources."color-convert-2.0.1" @@ -100318,7 +100758,7 @@ in sources."domelementtype-1.3.1" sources."domhandler-2.4.2" sources."domutils-1.7.0" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."emoji-regex-8.0.0" sources."entities-1.1.2" sources."error-ex-1.3.2" @@ -104021,7 +104461,7 @@ in sources."chromium-pickle-js-0.2.0" sources."clean-stack-2.2.0" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-truncate-2.1.0" sources."cliui-8.0.1" sources."clone-1.0.4" @@ -104568,7 +105008,7 @@ in }) sources."cli-cursor-3.1.0" sources."cli-progress-3.11.2" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."clone-1.0.4" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -105087,7 +105527,7 @@ in ]; }) sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."emoji-regex-8.0.0" sources."emojilib-2.4.0" sources."end-of-stream-1.4.4" @@ -105347,9 +105787,9 @@ in }) sources."@azure/keyvault-keys-4.7.0" sources."@azure/logger-1.0.4" - (sources."@azure/msal-browser-2.36.0" // { + (sources."@azure/msal-browser-2.37.0" // { dependencies = [ - sources."@azure/msal-common-12.1.0" + sources."@azure/msal-common-13.0.0" ]; }) sources."@azure/msal-common-7.6.0" @@ -105391,21 +105831,21 @@ in sources."strip-json-comments-3.1.1" ]; }) - sources."@fluentui/date-time-utilities-8.5.8" - sources."@fluentui/dom-utilities-2.2.7" - sources."@fluentui/font-icons-mdl2-8.5.14" - sources."@fluentui/foundation-legacy-8.2.34" - sources."@fluentui/keyboard-key-0.4.7" - sources."@fluentui/merge-styles-8.5.8" - sources."@fluentui/react-8.108.3" - sources."@fluentui/react-focus-8.8.20" - sources."@fluentui/react-hooks-8.6.21" + sources."@fluentui/date-time-utilities-8.5.9" + sources."@fluentui/dom-utilities-2.2.8" + sources."@fluentui/font-icons-mdl2-8.5.15" + sources."@fluentui/foundation-legacy-8.2.35" + sources."@fluentui/keyboard-key-0.4.8" + sources."@fluentui/merge-styles-8.5.9" + sources."@fluentui/react-8.109.0" + sources."@fluentui/react-focus-8.8.21" + sources."@fluentui/react-hooks-8.6.22" sources."@fluentui/react-portal-compat-context-9.0.5" - sources."@fluentui/react-window-provider-2.2.10" - sources."@fluentui/set-version-8.2.7" - sources."@fluentui/style-utilities-8.9.7" - sources."@fluentui/theme-2.6.26" - sources."@fluentui/utilities-8.13.10" + sources."@fluentui/react-window-provider-2.2.11" + sources."@fluentui/set-version-8.2.8" + sources."@fluentui/style-utilities-8.9.8" + sources."@fluentui/theme-2.6.27" + sources."@fluentui/utilities-8.13.11" sources."@gar/promisify-1.1.3" (sources."@gulp-sourcemaps/identity-map-2.0.1" // { dependencies = [ @@ -105429,6 +105869,7 @@ in }) sources."@humanwhocodes/object-schema-1.2.1" sources."@ioredis/commands-1.2.0" + sources."@isaacs/cliui-8.0.2" sources."@jridgewell/gen-mapping-0.3.3" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" @@ -105785,17 +106226,22 @@ in sources."cli-cursor-3.1.0" (sources."cli-highlight-2.1.11" // { dependencies = [ - sources."ansi-styles-4.3.0" - sources."cliui-7.0.4" sources."emoji-regex-8.0.0" sources."string-width-4.2.3" sources."strip-ansi-6.0.1" - sources."wrap-ansi-7.0.0" sources."yargs-16.2.0" ]; }) sources."cli-width-3.0.0" - sources."cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" + (sources."cliui-7.0.4" // { + dependencies = [ + sources."ansi-styles-4.3.0" + sources."emoji-regex-8.0.0" + sources."string-width-4.2.3" + sources."strip-ansi-6.0.1" + sources."wrap-ansi-7.0.0" + ]; + }) sources."clone-2.1.2" sources."clone-buffer-1.0.0" sources."clone-response-1.0.3" @@ -105911,7 +106357,7 @@ in sources."eastasianwidth-0.2.0" sources."ecdsa-sig-formatter-1.0.11" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."emoji-regex-9.2.2" sources."encodeurl-1.0.2" (sources."encoding-0.1.13" // { @@ -106361,7 +106807,7 @@ in sources."isexe-2.0.0" sources."isobject-3.0.1" sources."isomorphic-ws-4.0.1" - sources."jackspeak-2.1.4" + sources."jackspeak-2.1.5" (sources."jest-worker-27.5.1" // { dependencies = [ sources."supports-color-8.1.1" @@ -107303,9 +107749,12 @@ in }) (sources."yargs-17.7.2" // { dependencies = [ + sources."ansi-styles-4.3.0" + sources."cliui-8.0.1" sources."emoji-regex-8.0.0" sources."string-width-4.2.3" sources."strip-ansi-6.0.1" + sources."wrap-ansi-7.0.0" sources."yargs-parser-21.1.1" ]; }) @@ -107792,7 +108241,7 @@ in sources."supports-color-7.2.0" ]; }) - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-width-3.0.0" (sources."clipboardy-2.3.0" // { dependencies = [ @@ -108025,7 +108474,7 @@ in sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -110472,7 +110921,7 @@ in }) sources."cli-boxes-2.2.1" sources."cli-cursor-2.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-table3-0.6.3" sources."clone-1.0.4" sources."clone-response-1.0.3" @@ -110589,7 +111038,7 @@ in sources."dot-case-3.0.4" sources."duplexer3-0.1.5" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" sources."encodeurl-1.0.2" @@ -111583,7 +112032,7 @@ in sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-truncate-2.1.0" sources."code-excerpt-3.0.0" sources."color-convert-1.9.3" @@ -111603,7 +112052,7 @@ in }) sources."delay-5.0.0" sources."devtools-protocol-0.0.981744" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -111905,7 +112354,7 @@ in sources."clean-stack-3.0.1" sources."cli-boxes-2.2.1" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-table-0.3.11" (sources."cli-ux-4.9.3" // { dependencies = [ @@ -112219,7 +112668,7 @@ in sources."@google-cloud/promisify-2.0.4" (sources."@google-cloud/pubsub-3.5.2" // { dependencies = [ - sources."google-auth-library-8.7.0" + sources."google-auth-library-8.8.0" ]; }) sources."@grpc/grpc-js-1.8.14" @@ -112240,7 +112689,7 @@ in sources."graceful-fs-4.2.10" ]; }) - sources."@pnpm/npm-conf-2.1.1" + sources."@pnpm/npm-conf-2.2.0" sources."@protobufjs/aspromise-1.1.2" sources."@protobufjs/base64-1.1.2" sources."@protobufjs/codegen-2.0.4" @@ -112365,7 +112814,7 @@ in sources."clean-stack-2.2.0" sources."cli-boxes-2.2.1" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-table-0.3.11" sources."cli-table3-0.6.3" sources."cli-width-3.0.0" @@ -112588,7 +113037,7 @@ in }) (sources."google-gax-3.6.0" // { dependencies = [ - sources."google-auth-library-8.7.0" + sources."google-auth-library-8.8.0" ]; }) sources."google-p12-pem-4.0.1" @@ -113134,7 +113583,7 @@ in sources."chardet-0.7.0" sources."clean-stack-4.2.0" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-truncate-3.1.0" sources."cli-width-3.0.0" sources."clone-1.0.4" @@ -114257,7 +114706,7 @@ in sources."domhandler-4.3.1" sources."domutils-2.8.0" sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -114359,7 +114808,7 @@ in sources."mimic-response-1.0.1" sources."minimatch-3.1.2" sources."ms-2.1.2" - sources."msgpackr-1.8.5" + sources."msgpackr-1.9.0" (sources."msgpackr-extract-3.0.2" // { dependencies = [ sources."node-gyp-build-optional-packages-5.0.7" @@ -114616,7 +115065,7 @@ in sources."clean-stack-2.2.0" sources."cli-boxes-1.0.0" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-table-0.3.11" sources."cli-width-3.0.0" sources."clone-2.1.2" @@ -115383,7 +115832,7 @@ in sources."graceful-fs-4.2.10" ]; }) - sources."@pnpm/npm-conf-2.1.1" + sources."@pnpm/npm-conf-2.2.0" sources."@sindresorhus/is-5.3.0" sources."@szmarczak/http-timer-5.0.1" sources."@tootallnate/once-1.1.2" @@ -115427,7 +115876,7 @@ in sources."ci-info-3.8.0" sources."cli-boxes-3.0.0" sources."cli-cursor-4.0.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-width-4.0.0" sources."clone-1.0.4" sources."color-convert-1.9.3" @@ -115729,12 +116178,12 @@ in sha512 = "Xsa0BcxIC6th9UwNjZkhrMtNo/MnyRL8jGCP+uEwhA5oFOCY1f2s1/oNKY47xQ0Bg5nkjsfAEIej1VeH62bDDQ=="; }; dependencies = [ + sources."@isaacs/cliui-8.0.2" sources."@pkgjs/parseargs-0.11.0" sources."ansi-regex-5.0.1" sources."ansi-styles-6.2.1" sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" - sources."cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."cross-spawn-7.0.3" @@ -115743,7 +116192,7 @@ in sources."foreground-child-3.1.1" sources."is-fullwidth-code-point-3.0.0" sources."isexe-2.0.0" - sources."jackspeak-2.1.4" + sources."jackspeak-2.1.5" sources."lru-cache-9.1.1" sources."minimatch-9.0.0" sources."minipass-5.0.0" @@ -116181,7 +116630,7 @@ in sources."chownr-2.0.0" sources."clean-stack-2.2.0" sources."cli-cursor-2.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-width-3.0.0" (sources."cliui-8.0.1" // { dependencies = [ @@ -122862,7 +123311,7 @@ in sources."ee-first-1.1.1" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" - (sources."engine.io-6.4.1" // { + (sources."engine.io-6.4.2" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -123204,7 +123653,7 @@ in }) sources."dotenv-8.6.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."encoding-0.1.13" @@ -124224,6 +124673,16 @@ in }) sources."@gar/promisify-1.1.3" sources."@hutson/parse-repository-url-3.0.2" + (sources."@isaacs/cliui-8.0.2" // { + dependencies = [ + sources."ansi-regex-6.0.1" + sources."ansi-styles-6.2.1" + sources."emoji-regex-9.2.2" + sources."string-width-5.1.2" + sources."strip-ansi-7.0.1" + sources."wrap-ansi-8.1.0" + ]; + }) sources."@isaacs/string-locale-compare-1.1.0" sources."@jest/schemas-29.4.3" sources."@lerna/child-process-6.6.1" @@ -124457,18 +124916,9 @@ in sources."ci-info-2.0.0" sources."clean-stack-2.2.0" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-width-3.0.0" - (sources."cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" // { - dependencies = [ - sources."ansi-regex-6.0.1" - sources."ansi-styles-6.2.1" - sources."emoji-regex-9.2.2" - sources."string-width-5.1.2" - sources."strip-ansi-7.0.1" - sources."wrap-ansi-8.1.0" - ]; - }) + sources."cliui-7.0.4" sources."clone-1.0.4" (sources."clone-deep-4.0.1" // { dependencies = [ @@ -124709,7 +125159,7 @@ in sources."isarray-1.0.0" sources."isexe-2.0.0" sources."isobject-3.0.1" - sources."jackspeak-2.1.4" + sources."jackspeak-2.1.5" sources."jake-10.8.5" sources."js-tokens-4.0.0" sources."js-yaml-4.1.0" @@ -124961,7 +125411,6 @@ in (sources."nx-15.9.3" // { dependencies = [ sources."cli-spinners-2.6.1" - sources."cliui-7.0.4" sources."fast-glob-3.2.7" sources."fs-extra-11.1.1" sources."glob-7.1.4" @@ -125250,11 +125699,7 @@ in sources."y18n-5.0.8" sources."yallist-4.0.0" sources."yaml-1.10.2" - (sources."yargs-16.2.0" // { - dependencies = [ - sources."cliui-7.0.4" - ]; - }) + sources."yargs-16.2.0" sources."yargs-parser-20.2.4" sources."yocto-queue-0.1.0" ]; @@ -126523,13 +126968,13 @@ in sha512 = "4G9I++VBTZkaye6Yfc/7dU6HQHcyldZEVB+bYyQJLcpJOHKk/q5ZpGqK80oKMIdlxzsA3aWOJLZ4DkoaoUWXbQ=="; }; dependencies = [ + sources."@isaacs/cliui-8.0.2" sources."@pkgjs/parseargs-0.11.0" sources."ansi-regex-5.0.1" sources."ansi-styles-6.2.1" sources."argparse-2.0.1" sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" - sources."cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."commander-10.0.1" @@ -126545,7 +126990,7 @@ in sources."ini-3.0.1" sources."is-fullwidth-code-point-3.0.0" sources."isexe-2.0.0" - sources."jackspeak-2.1.4" + sources."jackspeak-2.1.5" sources."js-yaml-4.1.0" sources."jsonc-parser-3.2.0" sources."linkify-it-4.0.1" @@ -127076,7 +127521,7 @@ in sources."domain-browser-1.2.0" sources."duplexify-3.7.1" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -128506,7 +128951,7 @@ in sources."chalk-4.1.2" sources."chardet-0.7.0" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-width-3.0.0" sources."clone-1.0.4" sources."color-convert-2.0.1" @@ -130764,6 +131209,14 @@ in dependencies = [ sources."@colors/colors-1.5.0" sources."@gar/promisify-1.1.3" + (sources."@isaacs/cliui-8.0.2" // { + dependencies = [ + sources."ansi-regex-6.0.1" + sources."emoji-regex-9.2.2" + sources."string-width-5.1.2" + sources."strip-ansi-7.0.1" + ]; + }) sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -130785,7 +131238,7 @@ in sources."graceful-fs-4.2.10" ]; }) - sources."@pnpm/npm-conf-2.1.1" + sources."@pnpm/npm-conf-2.2.0" sources."@sigstore/protobuf-specs-0.1.0" sources."@sindresorhus/is-5.3.0" sources."@szmarczak/http-timer-5.0.1" @@ -130840,14 +131293,6 @@ in sources."clean-stack-2.2.0" sources."cli-boxes-3.0.0" sources."cli-table3-0.6.3" - (sources."cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" // { - dependencies = [ - sources."ansi-regex-6.0.1" - sources."emoji-regex-9.2.2" - sources."string-width-5.1.2" - sources."strip-ansi-7.0.1" - ]; - }) sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."color-support-1.1.3" @@ -130963,7 +131408,7 @@ in sources."is-typedarray-1.0.0" sources."is-yarn-global-0.4.1" sources."isexe-2.0.0" - sources."jackspeak-2.1.4" + sources."jackspeak-2.1.5" sources."jju-1.4.0" sources."js-yaml-4.1.0" sources."json-buffer-3.0.1" @@ -132288,7 +132733,7 @@ in sources."duplexer2-0.1.4" sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -133133,7 +133578,7 @@ in sources."dotenv-7.0.0" sources."dotenv-expand-5.1.0" sources."ecc-jsbn-0.1.2" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."entities-4.5.0" sources."error-ex-1.3.2" sources."escalade-3.1.1" @@ -133228,7 +133673,7 @@ in sources."mime-db-1.52.0" sources."mime-types-2.1.35" sources."minimatch-5.1.6" - sources."msgpackr-1.8.5" + sources."msgpackr-1.9.0" (sources."msgpackr-extract-3.0.2" // { dependencies = [ sources."node-gyp-build-optional-packages-5.0.7" @@ -134892,10 +135337,10 @@ in pnpm = nodeEnv.buildNodePackage { name = "pnpm"; packageName = "pnpm"; - version = "8.3.1"; + version = "8.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/pnpm/-/pnpm-8.3.1.tgz"; - sha512 = "0mT2ZAv08J3nz8xUdWhRW88GE89IWgPo/xZhb6acQXK2+aCikl7kT7Bg31ZcnJqOrwYXSed68xjLd/ZoSnBR8w=="; + url = "https://registry.npmjs.org/pnpm/-/pnpm-8.4.0.tgz"; + sha512 = "oW5jpFgCmXHIVOU5HZLBWGBtCH7K4JSRdpk7/f+Dtp+KhUsX5NQaWzzYyU9TX7eAsfYMko179133gbUS+JTrMw=="; }; buildInputs = globalBuildInputs; meta = { @@ -135299,7 +135744,7 @@ in sources."debug-4.3.4" sources."decamelize-1.2.0" sources."default-require-extensions-3.0.1" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."emoji-regex-8.0.0" sources."es6-error-4.1.1" sources."escalade-3.1.1" @@ -136795,7 +137240,7 @@ in sources."duplexify-3.7.1" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -138432,7 +138877,7 @@ in }) sources."domain-browser-1.2.0" sources."dompurify-2.4.5" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -139158,12 +139603,12 @@ in sha512 = "Jf9llaP+RvaEVS5nPShYFhtXIrb3LRKP281ib3So0KkeZKo2wIKyq0Re7TOSwanasA423PSr6CCIL4bP6T040g=="; }; dependencies = [ + sources."@isaacs/cliui-8.0.2" sources."@pkgjs/parseargs-0.11.0" sources."ansi-regex-5.0.1" sources."ansi-styles-6.2.1" sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" - sources."cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."cross-spawn-7.0.3" @@ -139173,7 +139618,7 @@ in sources."glob-10.2.2" sources."is-fullwidth-code-point-3.0.0" sources."isexe-2.0.0" - sources."jackspeak-2.1.4" + sources."jackspeak-2.1.5" sources."lru-cache-9.1.1" sources."minimatch-9.0.0" sources."minipass-5.0.0" @@ -139219,10 +139664,10 @@ in rollup = nodeEnv.buildNodePackage { name = "rollup"; packageName = "rollup"; - version = "3.21.2"; + version = "3.21.3"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-3.21.2.tgz"; - sha512 = "c4vC+JZ3bbF4Kqq2TtM7zSKtSyMybFOjqmomFax3xpfYaPZDZ4iz8NMIuBRMjnXOcKYozw7bC6vhJjiWD6JpzQ=="; + url = "https://registry.npmjs.org/rollup/-/rollup-3.21.3.tgz"; + sha512 = "VnPfEG51nIv2xPLnZaekkuN06q9ZbnyDcLkaBdJa/W7UddyhOfMP2yOPziYQfeY7k++fZM8FdQIummFN5y14kA=="; }; dependencies = [ sources."fsevents-2.3.2" @@ -140037,7 +140482,7 @@ in sources."cli-color-2.0.3" sources."cli-cursor-3.1.0" sources."cli-progress-footer-2.3.2" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" (sources."cli-sprintf-format-1.1.1" // { dependencies = [ sources."supports-color-6.1.0" @@ -141170,7 +141615,7 @@ in sources."cookie-0.4.2" sources."cors-2.8.5" sources."debug-4.3.4" - sources."engine.io-6.4.1" + sources."engine.io-6.4.2" sources."engine.io-parser-5.0.6" sources."mime-db-1.52.0" sources."mime-types-2.1.35" @@ -141229,7 +141674,7 @@ in sources."camelcase-keys-7.0.2" sources."chalk-4.1.2" sources."cli-cursor-4.0.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."clone-1.0.4" sources."color-convert-2.0.1" sources."color-name-1.1.4" @@ -143724,7 +144169,7 @@ in sources."detect-indent-6.1.0" sources."diff-4.0.2" sources."doctypes-1.1.0" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."errno-0.1.8" sources."es6-promise-3.3.1" sources."escalade-3.1.1" @@ -143913,9 +144358,9 @@ in sources."@jridgewell/trace-mapping-0.3.9" ]; }) - sources."@emmetio/abbreviation-2.3.1" - sources."@emmetio/css-abbreviation-2.1.6" - sources."@emmetio/scanner-1.0.2" + sources."@emmetio/abbreviation-2.3.2" + sources."@emmetio/css-abbreviation-2.1.7" + sources."@emmetio/scanner-1.0.3" sources."@jridgewell/gen-mapping-0.3.3" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" @@ -143984,8 +144429,8 @@ in sources."detect-indent-6.1.0" sources."diff-4.0.2" sources."doctypes-1.1.0" - sources."electron-to-chromium-1.4.378" - sources."emmet-2.4.2" + sources."electron-to-chromium-1.4.379" + sources."emmet-2.4.3" sources."errno-0.1.8" sources."es6-promise-3.3.1" sources."escalade-3.1.1" @@ -150023,7 +150468,7 @@ in sources."@dabh/diagnostics-2.0.3" sources."@pnpm/config.env-replace-1.1.0" sources."@pnpm/network.ca-file-1.0.2" - sources."@pnpm/npm-conf-2.1.1" + sources."@pnpm/npm-conf-2.2.0" sources."@primer/octicons-17.10.2" sources."@sindresorhus/is-5.3.0" sources."@socket.io/component-emitter-3.1.0" @@ -150515,6 +150960,7 @@ in sources."@babel/code-frame-7.21.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" + sources."@isaacs/cliui-8.0.2" sources."@npmcli/config-6.1.6" sources."@npmcli/map-workspaces-3.0.4" sources."@npmcli/name-from-folder-2.0.0" @@ -150539,7 +150985,6 @@ in sources."color-name-1.1.3" ]; }) - sources."cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."concat-stream-2.0.0" @@ -150567,7 +151012,7 @@ in sources."is-fullwidth-code-point-3.0.0" sources."is-plain-obj-4.1.0" sources."isexe-2.0.0" - sources."jackspeak-2.1.4" + sources."jackspeak-2.1.5" sources."js-tokens-4.0.0" sources."json-parse-even-better-errors-3.0.0" sources."lines-and-columns-2.0.3" @@ -151393,7 +151838,7 @@ in sources."chownr-2.0.0" sources."clean-stack-2.2.0" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-width-3.0.0" sources."clone-1.0.4" sources."clone-response-1.0.3" @@ -151470,7 +151915,7 @@ in ]; }) sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" sources."encodeurl-1.0.2" @@ -151860,7 +152305,7 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-4.0.1" - sources."pkg-types-1.0.2" + sources."pkg-types-1.0.3" sources."postcss-8.4.23" sources."postcss-discard-duplicates-5.1.0" sources."postcss-load-config-4.0.1" @@ -151931,7 +152376,7 @@ in sources."restore-cursor-3.1.0" sources."reusify-1.0.4" sources."rimraf-3.0.2" - sources."rollup-3.21.2" + sources."rollup-3.21.3" (sources."rollup-plugin-inject-3.0.2" // { dependencies = [ sources."estree-walker-0.6.1" @@ -152084,7 +152529,7 @@ in sources."vfile-5.3.7" sources."vfile-location-4.1.0" sources."vfile-message-3.1.4" - (sources."vite-4.3.3" // { + (sources."vite-4.3.4" // { dependencies = [ sources."@esbuild/android-arm-0.17.18" sources."@esbuild/android-arm64-0.17.18" @@ -154026,7 +154471,7 @@ in sources."graceful-fs-4.2.10" ]; }) - sources."@pnpm/npm-conf-2.1.1" + sources."@pnpm/npm-conf-2.2.0" sources."@sindresorhus/is-5.3.0" sources."@szmarczak/http-timer-5.0.1" sources."@types/http-cache-semantics-4.0.1" @@ -154721,7 +155166,7 @@ in sources."caniuse-lite-1.0.30001482" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."enhanced-resolve-5.13.0" sources."es-module-lexer-1.2.1" sources."escalade-3.1.1" @@ -154828,7 +155273,7 @@ in sources."colorette-2.0.20" sources."commander-10.0.1" sources."cross-spawn-7.0.3" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."enhanced-resolve-5.13.0" sources."envinfo-7.8.1" sources."es-module-lexer-1.2.1" @@ -155025,7 +155470,7 @@ in sources."dns-equal-1.0.0" sources."dns-packet-5.6.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."encodeurl-1.0.2" sources."enhanced-resolve-5.13.0" sources."es-module-lexer-1.2.1" @@ -155305,7 +155750,7 @@ in sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" sources."dir-glob-3.0.1" - sources."electron-to-chromium-1.4.378" + sources."electron-to-chromium-1.4.379" sources."enhanced-resolve-5.13.0" sources."es-module-lexer-1.2.1" sources."escalade-3.1.1" @@ -155507,7 +155952,7 @@ in ]; }) sources."cli-cursor-3.1.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-width-3.0.0" sources."cliui-8.0.1" sources."clone-1.0.4" @@ -156617,7 +157062,7 @@ in sources."cli-boxes-2.2.1" sources."cli-cursor-3.1.0" sources."cli-list-0.2.0" - sources."cli-spinners-2.8.0" + sources."cli-spinners-2.9.0" sources."cli-table-0.3.11" sources."cli-width-3.0.0" sources."clone-1.0.4" diff --git a/pkgs/development/node-packages/overrides.nix b/pkgs/development/node-packages/overrides.nix index 77bf8e3f8f22..10c4e6e6bbc6 100644 --- a/pkgs/development/node-packages/overrides.nix +++ b/pkgs/development/node-packages/overrides.nix @@ -626,6 +626,10 @@ final: prev: { }; }; + volar = final."@volar/vue-language-server".override { + name = "volar"; + }; + wavedrom-cli = prev.wavedrom-cli.override { nativeBuildInputs = [ pkgs.pkg-config final.node-pre-gyp ]; # These dependencies are required by diff --git a/pkgs/development/python-modules/cwl-upgrader/default.nix b/pkgs/development/python-modules/cwl-upgrader/default.nix index 5f3ba48e0299..6dd63c2db3b7 100644 --- a/pkgs/development/python-modules/cwl-upgrader/default.nix +++ b/pkgs/development/python-modules/cwl-upgrader/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "cwl-upgrader"; - version = "1.2.4"; + version = "1.2.6"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "common-workflow-language"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-3pKnkU8lks3w+N7w2qST9jr4/CS6YzgnBVLTlgq1gf0="; + hash = "sha256-lVIy0aa+hqbi46NfwXCKWDRzszneyuyo6KXxAcr/xIA="; }; postPatch = '' diff --git a/pkgs/development/python-modules/glymur/default.nix b/pkgs/development/python-modules/glymur/default.nix index 31434342be84..da240ce3f9d5 100644 --- a/pkgs/development/python-modules/glymur/default.nix +++ b/pkgs/development/python-modules/glymur/default.nix @@ -1,38 +1,42 @@ -{ lib, stdenv +{ lib +, stdenv , buildPythonPackage , fetchFromGitHub -, numpy -, scikitimage -, openjpeg -, procps -, pytestCheckHook -, contextlib2 -, mock -, importlib-resources -, isPy27 , lxml +, numpy +, openjpeg +, pytestCheckHook +, pythonOlder +, scikitimage +, setuptools }: buildPythonPackage rec { pname = "glymur"; - version = "0.9.3"; + version = "0.12.4"; + format = "pyproject"; + + disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "quintusdias"; repo = pname; - rev = "v${version}"; - sha256 = "1xlpax56qg5qqh0s19xidgvv2483sc684zj7rh6zw1m1z9m37drr"; + rev = "refs/tags/v${version}"; + hash = "sha256-H7aA1nHd8JI3+4dzZhu+GOv/0Y2KRdDkn6Fvc76ny/A="; }; + nativeBuildInputs = [ + setuptools + ]; + propagatedBuildInputs = [ numpy - ] ++ lib.optionals isPy27 [ contextlib2 mock importlib-resources ]; + ]; nativeCheckInputs = [ - scikitimage - procps - pytestCheckHook lxml + pytestCheckHook + scikitimage ]; postConfigure = '' @@ -45,13 +49,18 @@ buildPythonPackage rec { # fsh systems by reading an .rc file and such, and is obviated by the patch # in postConfigure "tests/test_config.py" + "tests/test_tiff2jp2.py" ]; + pythonImportsCheck = [ + "glymur" + ]; meta = with lib; { description = "Tools for accessing JPEG2000 files"; homepage = "https://github.com/quintusdias/glymur"; + changelog = "https://github.com/quintusdias/glymur/blob/v${version}/CHANGES.txt"; license = licenses.mit; - maintainers = [ maintainers.costrouc ]; + maintainers = with maintainers; [ costrouc ]; }; } diff --git a/pkgs/development/python-modules/lifelines/default.nix b/pkgs/development/python-modules/lifelines/default.nix index 7e2496d23046..450138fdde68 100644 --- a/pkgs/development/python-modules/lifelines/default.nix +++ b/pkgs/development/python-modules/lifelines/default.nix @@ -1,46 +1,48 @@ { lib -, buildPythonPackage -, fetchFromGitHub -, pytestCheckHook -, numpy -, scipy -, pandas -, matplotlib , autograd , autograd-gamma -, formulaic -, scikit-learn -, sybil -, flaky -, jinja2 +, buildPythonPackage , dill +, fetchFromGitHub +, flaky +, formulaic +, jinja2 +, matplotlib +, numpy +, pandas , psutil +, pytestCheckHook +, pythonOlder +, scikit-learn +, scipy +, sybil }: buildPythonPackage rec { pname = "lifelines"; - version = "0.27.4"; + version = "0.27.7"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "CamDavidsonPilon"; repo = "lifelines"; - rev = "v${version}"; - hash = "sha256-KDoXplqkTsk85dmcTBhbj2GDcC4ry+2z5C2QHAnBTw4="; + rev = "refs/tags/v${version}"; + hash = "sha256-6ulg3R59QHy31CXit8tddi6F0vPKVRZDIu0zdS19xu0="; }; propagatedBuildInputs = [ - numpy - scipy - pandas - matplotlib autograd autograd-gamma formulaic + matplotlib + numpy + pandas + scipy ]; - pythonImportsCheck = [ "lifelines" ]; - - checkInputs = [ + nativeCheckInputs = [ dill flaky jinja2 @@ -50,14 +52,23 @@ buildPythonPackage rec { sybil ]; + pythonImportsCheck = [ + "lifelines" + ]; + disabledTestPaths = [ "lifelines/tests/test_estimation.py" ]; - meta = { - homepage = "https://lifelines.readthedocs.io"; + disabledTests = [ + "test_datetimes_to_durations_with_different_frequencies" + ]; + + meta = with lib; { description = "Survival analysis in Python"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ swflint ]; + homepage = "https://lifelines.readthedocs.io"; + changelog = "https://github.com/CamDavidsonPilon/lifelines/blob/v${version}/CHANGELOG.md"; + license = licenses.mit; + maintainers = with maintainers; [ swflint ]; }; } diff --git a/pkgs/development/python-modules/pytest-ansible/default.nix b/pkgs/development/python-modules/pytest-ansible/default.nix index c28d46886586..f1ef205a4d8e 100644 --- a/pkgs/development/python-modules/pytest-ansible/default.nix +++ b/pkgs/development/python-modules/pytest-ansible/default.nix @@ -1,46 +1,71 @@ { lib , buildPythonPackage , fetchFromGitHub -, ansible +, ansible-core +, coreutils +, coverage , pytest -, mock +, pytestCheckHook +, pythonOlder }: buildPythonPackage rec { pname = "pytest-ansible"; - version = "2.2.4"; + version = "3.0.0"; + format = "pyproject"; + + disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "ansible"; - repo = "pytest-ansible"; - rev = "v${version}"; - sha256 = "0vr015msciwzz20zplxalfmfx5hbg8rkf8vwjdg3z12fba8z8ks4"; + repo = pname; + rev = "refs/tags/v${version}"; + hash = "sha256-kxOp7ScpIIzEbM4VQa+3ByHzkPS8pzdYq82rggF9Fpk="; }; - patchPhase = '' - sed -i "s/'setuptools-markdown'//g" setup.py + postPatch = '' + substituteInPlace tests/conftest.py inventory \ + --replace '/usr/bin/env' '${coreutils}/bin/env' ''; - buildInputs = [ pytest ]; + buildInputs = [ + pytest + ]; - # requires pandoc < 2.0 - # buildInputs = [ setuptools-markdown ]; - nativeCheckInputs = [ mock ]; - propagatedBuildInputs = [ ansible ]; + propagatedBuildInputs = [ + ansible-core + ]; - # tests not included with release, even on github - doCheck = false; + nativeCheckInputs = [ + coverage + pytestCheckHook + ]; - checkPhase = '' - HOME=$TMPDIR pytest tests/ + preCheck = '' + export HOME=$TMPDIR ''; + pytestFlagsArray = [ + "tests/" + ]; + + disabledTests = [ + # Host unreachable in the inventory + "test_become" + # [Errno -3] Temporary failure in name resolution + "test_connection_failure_v2" + "test_connection_failure_extra_inventory_v2" + ]; + + pythonImportsCheck = [ + "pytest_ansible" + ]; + meta = with lib; { - homepage = "https://github.com/jlaska/pytest-ansible"; description = "Plugin for py.test to simplify calling ansible modules from tests or fixtures"; + homepage = "https://github.com/jlaska/pytest-ansible"; + changelog = "https://github.com/ansible-community/pytest-ansible/releases/tag/v${version}"; license = licenses.mit; - maintainers = [ maintainers.costrouc ]; - # https://github.com/ansible-community/pytest-ansible/blob/v2.2.4/setup.py#L124 - broken = lib.versionAtLeast ansible.version "2.10"; + maintainers = with maintainers; [ costrouc ]; }; } diff --git a/pkgs/os-specific/linux/ax99100/default.nix b/pkgs/os-specific/linux/ax99100/default.nix index 600e02de7074..9ff6add9fe9e 100644 --- a/pkgs/os-specific/linux/ax99100/default.nix +++ b/pkgs/os-specific/linux/ax99100/default.nix @@ -26,7 +26,9 @@ stdenv.mkDerivation patches = [ ./kernel-5.18-pci_free_consistent-pci_alloc_consistent.patch ./kernel-6.1-set_termios-const-ktermios.patch - ]; + ] ++ (lib.optional (lib.versionAtLeast kernel.version "6.2") [ + ./kernel-6.2-fix-pointer-type.patch + ]); patchFlags = [ "-p0" ]; diff --git a/pkgs/os-specific/linux/ax99100/kernel-6.2-fix-pointer-type.patch b/pkgs/os-specific/linux/ax99100/kernel-6.2-fix-pointer-type.patch new file mode 100644 index 000000000000..39071f2f4798 --- /dev/null +++ b/pkgs/os-specific/linux/ax99100/kernel-6.2-fix-pointer-type.patch @@ -0,0 +1,11 @@ +--- ax99100_spi.c ++++ ax99100_spi.c +@@ -76,7 +76,7 @@ int spi_suspend_count; + static unsigned int spi_major = 241; + static unsigned int spi_min_count = 0; + /* device Class */ +-static char *ax_devnode(struct device *dev, umode_t *mode) ++static char *ax_devnode(const struct device *dev, umode_t *mode) + { + return kasprintf(GFP_KERNEL, "%s", dev_name(dev)); + } diff --git a/pkgs/os-specific/linux/libnvme/default.nix b/pkgs/os-specific/linux/libnvme/default.nix index 5f1960f4e531..4ed838051f6f 100644 --- a/pkgs/os-specific/linux/libnvme/default.nix +++ b/pkgs/os-specific/linux/libnvme/default.nix @@ -54,6 +54,10 @@ stdenv.mkDerivation rec { "-Ddocs-build=true" ]; + preConfigure = '' + export KBUILD_BUILD_TIMESTAMP="$(date -u -d @$SOURCE_DATE_EPOCH)" + ''; + doCheck = true; meta = with lib; { diff --git a/pkgs/os-specific/linux/system76-scheduler/01-fix-pipewire-paths.kdl b/pkgs/os-specific/linux/system76-scheduler/01-fix-pipewire-paths.kdl new file mode 100644 index 000000000000..1ce08e2d3436 --- /dev/null +++ b/pkgs/os-specific/linux/system76-scheduler/01-fix-pipewire-paths.kdl @@ -0,0 +1,8 @@ +assignments { + sound-server { + // original config matches on /usr/bin/..., but this is NixOS + pipewire + pipewire-pulse + jackd + } +} diff --git a/pkgs/os-specific/linux/system76-scheduler/default.nix b/pkgs/os-specific/linux/system76-scheduler/default.nix new file mode 100644 index 000000000000..1ca4fa27610a --- /dev/null +++ b/pkgs/os-specific/linux/system76-scheduler/default.nix @@ -0,0 +1,47 @@ +{ lib +, fetchFromGitHub +, rustPlatform +, llvm +, clang +, libclang +, pipewire +, pkg-config +, bcc +, dbus }: + +let + version = "2.0.1"; +in rustPlatform.buildRustPackage { + pname = "system76-scheduler"; + inherit version; + src = fetchFromGitHub { + owner = "pop-os"; + repo = "system76-scheduler"; + rev = version; + hash = "sha256-o4noaLBXHDe7pMBHfQ85uzKJzwbBE5mkWq8h9l6iIZs="; + }; + cargoSha256 = "sha256-hpFDAhOzm4v3lBWwAl/10pS5xvKCScdKsp5wpCeQ+FE="; + + nativeBuildInputs = [ pkg-config llvm clang ]; + buildInputs = [ dbus pipewire ]; + + LIBCLANG_PATH = "${libclang.lib}/lib"; + EXECSNOOP_PATH = "${bcc}/bin/execsnoop"; + + # tests don't build + doCheck = false; + + postInstall = '' + mkdir -p $out/data + install -D -m 0644 data/com.system76.Scheduler.conf $out/etc/dbus-1/system.d/com.system76.Scheduler.conf + install -D -m 0644 data/*.kdl $out/data/ + ''; + + meta = with lib; { + description = "System76 Scheduler"; + homepage = "https://github.com/pop-os/system76-scheduler"; + license = licenses.mpl20; + platforms = [ "x86_64-linux" "x86-linux" "aarch64-linux" ]; + maintainers = [ maintainers.cmm ]; + }; +} diff --git a/pkgs/servers/fastnetmon-advanced/default.nix b/pkgs/servers/fastnetmon-advanced/default.nix index 780c65986593..53c1ef11e25c 100644 --- a/pkgs/servers/fastnetmon-advanced/default.nix +++ b/pkgs/servers/fastnetmon-advanced/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "fastnetmon-advanced"; - version = "2.0.336"; + version = "2.0.337"; src = fetchurl { url = "https://repo.fastnetmon.com/fastnetmon_ubuntu_jammy/pool/fastnetmon/f/fastnetmon/fastnetmon_${version}_amd64.deb"; - hash = "sha256-qbGYvBaIMnpoyfBVfcCY16vlOaYyE4MPdnkwWohBukA="; + hash = "sha256-lYXJ0Q0iUiWk/n/I71BsKnnoRJh3a2EJT3EWV4+pQbM="; }; nativeBuildInputs = [ @@ -21,6 +21,11 @@ stdenv.mkDerivation rec { ar xf $src tar xf data.tar.xz + # both clickhouse 2.0.0 and 2.3.0 libs are included, without versioning it will by + # default choose the first it finds, but we need 2.3.0 otherwise the fastnetmon + # binary will be missing symbols + rm -r opt/fastnetmon/libraries/libclickhouse_2_0_0 + # unused libraries, which have additional dependencies rm opt/fastnetmon/libraries/gcc1210/lib/libgccjit.so.0.0.1 rm opt/fastnetmon/libraries/poco_1_10_0/lib/libPocoCryptod.so.70 @@ -38,6 +43,13 @@ stdenv.mkDerivation rec { addAutoPatchelfSearchPath $out/libexec/fastnetmon/libraries ''; + doInstallCheck = true; + installCheckPhase = '' + set +o pipefail + $out/bin/fastnetmon 2>&1 | grep "Can't open log file" + $out/bin/fcli 2>&1 | grep "Please run this tool with root rights" + ''; + meta = with lib; { description = "A high performance DDoS detector / sensor - commercial edition"; homepage = "https://fastnetmon.com"; diff --git a/pkgs/servers/matrix-synapse/tools/synadm.nix b/pkgs/servers/matrix-synapse/tools/synadm.nix index 73199c27383c..91efac65b604 100644 --- a/pkgs/servers/matrix-synapse/tools/synadm.nix +++ b/pkgs/servers/matrix-synapse/tools/synadm.nix @@ -1,15 +1,16 @@ { lib +, nix-update-script , python3 }: python3.pkgs.buildPythonApplication rec { pname = "synadm"; - version = "0.40"; + version = "0.41.2"; format = "setuptools"; src = python3.pkgs.fetchPypi { inherit pname version; - hash = "sha256-iDG2wsC0820unKlKNDKwgCNC+SAWJm8ltSB4knmLqeQ="; + hash = "sha256-wSpgc1umBMLCc2ThfYSuNNnzqWXyEQM0XhTuOAQaiXg="; }; propagatedBuildInputs = with python3.pkgs; [ @@ -28,6 +29,8 @@ python3.pkgs.buildPythonApplication rec { runHook postCheck ''; + passthru.updateScript = nix-update-script { }; + meta = with lib; { description = "Command line admin tool for Synapse"; longDescription = '' @@ -35,6 +38,7 @@ python3.pkgs.buildPythonApplication rec { conveniently issue commands available via its admin API's (matrix-org/synapse@master/docs/admin_api) ''; + changelog = "https://github.com/JOJ0/synadm/releases/tag/v${version}"; homepage = "https://github.com/JOJ0/synadm"; license = licenses.gpl3Plus; maintainers = with maintainers; [ hexa ]; diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix index 17759d9fa1d7..6a743f60c9b2 100644 --- a/pkgs/stdenv/linux/default.nix +++ b/pkgs/stdenv/linux/default.nix @@ -310,6 +310,10 @@ in # top-level pkgs as an override either. perl = super.perl.override { enableThreading = false; enableCrypt = false; }; }; + + # `gettext` comes with obsolete config.sub/config.guess that don't recognize LoongArch64. + extraNativeBuildInputs = + lib.optional (localSystem.isLoongArch64) prevStage.updateAutotoolsGnuConfigScriptsHook; }) # First rebuild of gcc; this is linked against all sorts of junk @@ -387,6 +391,10 @@ in ''; }); }; + + # `gettext` comes with obsolete config.sub/config.guess that don't recognize LoongArch64. + extraNativeBuildInputs = + lib.optional (localSystem.isLoongArch64) prevStage.updateAutotoolsGnuConfigScriptsHook; }) # 2nd stdenv that contains our own rebuilt binutils and is used for @@ -469,9 +477,10 @@ in }; + # `gettext` comes with obsolete config.sub/config.guess that don't recognize LoongArch64. # `libtool` comes with obsolete config.sub/config.guess that don't recognize Risc-V. extraNativeBuildInputs = - lib.optional (localSystem.isRiscV) prevStage.updateAutotoolsGnuConfigScriptsHook; + lib.optional (localSystem.isLoongArch64 || localSystem.isRiscV) prevStage.updateAutotoolsGnuConfigScriptsHook; }) diff --git a/pkgs/tools/networking/routedns/default.nix b/pkgs/tools/networking/routedns/default.nix index 4cf2c9eeeed8..722063147e08 100644 --- a/pkgs/tools/networking/routedns/default.nix +++ b/pkgs/tools/networking/routedns/default.nix @@ -5,25 +5,25 @@ buildGoModule rec { pname = "routedns"; - version = "0.1.5"; + version = "0.1.20"; src = fetchFromGitHub { owner = "folbricht"; repo = "routedns"; - # https://github.com/folbricht/routedns/issues/237 - rev = "02f14a567fee2a289810979446f5260b8a31bf73"; - sha256 = "sha256-oImimNBz1qizUPD6qHi73fGKNCu5cii99GIUo21e+bs="; + rev = "v${version}"; + hash = "sha256-whMSqGsZTr6tj9jbUzkNanR69xfmvXC257DsHooqlkE="; }; - vendorSha256 = "sha256-T6adpxJgOPGy+UOOlGAAf1gjk1wJxwOc9enfv9X3LBE="; + vendorHash = "sha256-XqrV/eBpKzFgNSG9yoP8iqzIEifXEMOCCfPbHo3YKZw="; subPackages = [ "./cmd/routedns" ]; + ldflags = [ "-s" "-w" ]; + meta = with lib; { homepage = "https://github.com/folbricht/routedns"; description = "DNS stub resolver, proxy and router"; license = licenses.bsd3; maintainers = with maintainers; [ jsimonetti ]; - platforms = platforms.linux; }; } diff --git a/pkgs/tools/security/naabu/default.nix b/pkgs/tools/security/naabu/default.nix index 3eb6604a5a4d..f89a10b6b621 100644 --- a/pkgs/tools/security/naabu/default.nix +++ b/pkgs/tools/security/naabu/default.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "naabu"; - version = "2.1.5"; + version = "2.1.6"; src = fetchFromGitHub { owner = "projectdiscovery"; repo = "naabu"; rev = "refs/tags/v${version}"; - hash = "sha256-st1SYWSwoFs0tzb1O5jDzCEYVmD6aVWkJTQZFxp+XfY="; + hash = "sha256-STykmBsKLcuPhNrk/RHwvlkz9L+IwiALY7Iuvuu3dPM="; }; - vendorHash = "sha256-b2v9PCxiYA965u3Xzfs/gEo1cFFvwsZbsLN5DuABs/U="; + vendorHash = "sha256-yY5zVlZolc8NLiySBOwKIIa+UN/hsqe9/Pf6iLG1H38="; buildInputs = [ libpcap diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e72023a7c15e..9d1e639fe2fe 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -24064,6 +24064,8 @@ with pkgs; tk-8_6 = callPackage ../development/libraries/tk/8.6.nix { }; tk-8_5 = callPackage ../development/libraries/tk/8.5.nix { tcl = tcl-8_5; }; + tkimg = callPackage ../development/libraries/tkimg { }; + tkrzw = callPackage ../development/libraries/tkrzw { }; tl-expected = callPackage ../development/libraries/tl-expected { }; @@ -33905,7 +33907,7 @@ with pkgs; robustirc-bridge = callPackage ../servers/irc/robustirc-bridge { }; routedns = callPackage ../tools/networking/routedns { - buildGoModule = buildGo118Module; # build fails with 1.19 + buildGoModule = buildGo119Module; # build fails with 1.20 }; skrooge = libsForQt5.callPackage ../applications/office/skrooge { }; @@ -39364,6 +39366,8 @@ with pkgs; terraforming = callPackage ../applications/networking/cluster/terraforming { }; + terraform-backend-git = callPackage ../applications/networking/cluster/terraform-backend-git { }; + terraform-compliance = python3Packages.callPackage ../applications/networking/cluster/terraform-compliance { }; terraform-docs = callPackage ../applications/networking/cluster/terraform-docs { }; @@ -39406,6 +39410,8 @@ with pkgs; thermald = callPackage ../tools/system/thermald { }; + therion = callPackage ../applications/misc/therion { }; + throttled = callPackage ../tools/system/throttled { }; thinkfan = callPackage ../tools/system/thinkfan { }; diff --git a/pkgs/top-level/linux-kernels.nix b/pkgs/top-level/linux-kernels.nix index 8daa52a73dfb..52245dc38e81 100644 --- a/pkgs/top-level/linux-kernels.nix +++ b/pkgs/top-level/linux-kernels.nix @@ -502,6 +502,8 @@ in { system76-io = callPackage ../os-specific/linux/system76-io { }; + system76-scheduler = callPackage ../os-specific/linux/system76-scheduler { }; + tmon = callPackage ../os-specific/linux/tmon { }; tp_smapi = callPackage ../os-specific/linux/tp_smapi { };