Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub fea626d2 704cf689

+256 -630
+1
maintainers/scripts/luarocks-packages.csv
··· 15 15 coxpcall,,,,1.17.0-1,, 16 16 cqueues,,,,,,vcunat 17 17 cyan,,,,,, 18 + datafile,,,,,, 18 19 digestif,,,,,5.3, 19 20 dkjson,,,,,, 20 21 fennel,,,,,,misterio77
-12
pkgs/applications/editors/vim/plugins/generated.nix
··· 9533 9533 meta.homepage = "https://github.com/lucidph3nx/nvim-sops/"; 9534 9534 }; 9535 9535 9536 - nvim-spectre = buildVimPlugin { 9537 - pname = "nvim-spectre"; 9538 - version = "2024-10-27"; 9539 - src = fetchFromGitHub { 9540 - owner = "nvim-pack"; 9541 - repo = "nvim-spectre"; 9542 - rev = "08be31c104df3b4b049607694ebb2b6ced4f928b"; 9543 - sha256 = "04v1gypga9fhmkddis5yyppvmpq0b1b7zpvbfjlxfp2z498l5n2v"; 9544 - }; 9545 - meta.homepage = "https://github.com/nvim-pack/nvim-spectre/"; 9546 - }; 9547 - 9548 9536 nvim-spider = buildVimPlugin { 9549 9537 pname = "nvim-spider"; 9550 9538 version = "2024-12-03";
+61
pkgs/applications/editors/vim/plugins/nvim-spectre/default.nix
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + nix-update-script, 5 + rustPlatform, 6 + vimPlugins, 7 + vimUtils, 8 + }: 9 + let 10 + version = "0-unstable-2024-10-27"; 11 + src = fetchFromGitHub { 12 + owner = "nvim-pack"; 13 + repo = "nvim-spectre"; 14 + rev = "08be31c104df3b4b049607694ebb2b6ced4f928b"; 15 + sha256 = "04v1gypga9fhmkddis5yyppvmpq0b1b7zpvbfjlxfp2z498l5n2v"; 16 + }; 17 + 18 + spectre_oxi = rustPlatform.buildRustPackage { 19 + pname = "spectre_oxi"; 20 + inherit version src; 21 + sourceRoot = "${src.name}/spectre_oxi"; 22 + 23 + cargoHash = "sha256-jVNeK1BeCzQaS5G561iWB3xEupzjIgnbUpEo1IVr9nQ="; 24 + 25 + preCheck = '' 26 + mkdir tests/tmp/ 27 + ''; 28 + 29 + checkFlags = [ 30 + # Flaky test (https://github.com/nvim-pack/nvim-spectre/issues/244) 31 + "--skip=tests::test_replace_simple" 32 + ]; 33 + }; 34 + in 35 + vimUtils.buildVimPlugin { 36 + pname = "nvim-spectre"; 37 + inherit version src; 38 + 39 + dependencies = [ vimPlugins.plenary-nvim ]; 40 + 41 + postInstall = '' 42 + ln -s ${spectre_oxi}/lib/libspectre_oxi.* $out/lua/spectre_oxi.so 43 + ''; 44 + 45 + nvimRequireCheck = "spectre"; 46 + 47 + passthru = { 48 + updateScript = nix-update-script { 49 + extraArgs = [ "--version=branch" ]; 50 + attrPath = "vimPlugins.nvim-spectre.spectre_oxi"; 51 + }; 52 + 53 + # needed for the update script 54 + inherit spectre_oxi; 55 + }; 56 + 57 + meta = { 58 + homepage = "https://github.com/nvim-pack/nvim-spectre/"; 59 + license = lib.licenses.mit; 60 + }; 61 + }
+2 -29
pkgs/applications/editors/vim/plugins/overrides.nix
··· 2369 2369 buildInputs = [ ripgrep ]; 2370 2370 }; 2371 2371 2372 - nvim-spectre = super.nvim-spectre.overrideAttrs ( 2373 - old: 2374 - let 2375 - spectre_oxi = rustPlatform.buildRustPackage { 2376 - pname = "spectre_oxi"; 2377 - inherit (old) version src; 2378 - sourceRoot = "${old.src.name}/spectre_oxi"; 2379 - 2380 - cargoHash = "sha256-yYUbfqkICsGDKexYjfhXfpIoT1+QrZQJPpKzk+gwm+s="; 2381 - 2382 - preCheck = '' 2383 - mkdir tests/tmp/ 2384 - ''; 2385 - 2386 - checkFlags = [ 2387 - # Flaky test (https://github.com/nvim-pack/nvim-spectre/issues/244) 2388 - "--skip=tests::test_replace_simple" 2389 - ]; 2390 - }; 2391 - in 2392 - { 2393 - dependencies = [ self.plenary-nvim ]; 2394 - postInstall = '' 2395 - ln -s ${spectre_oxi}/lib/libspectre_oxi.* $out/lua/spectre_oxi.so 2396 - ''; 2397 - nvimRequireCheck = "spectre"; 2398 - } 2399 - ); 2400 - 2401 2372 nvim-scissors = super.nvim-scissors.overrideAttrs { 2402 2373 nvimRequireCheck = "scissors"; 2403 2374 }; ··· 2406 2377 # Optional cmp integration 2407 2378 nvimSkipModule = "snippets.utils.cmp"; 2408 2379 }; 2380 + 2381 + nvim-spectre = callPackage ./nvim-spectre { }; 2409 2382 2410 2383 nvim-surround = super.nvim-surround.overrideAttrs { 2411 2384 # Optional treesitter integration
-1
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 791 791 https://github.com/dcampos/nvim-snippy/,HEAD, 792 792 https://github.com/ishan9299/nvim-solarized-lua/,, 793 793 https://github.com/lucidph3nx/nvim-sops/,HEAD, 794 - https://github.com/nvim-pack/nvim-spectre/,, 795 794 https://github.com/chrisgrieser/nvim-spider/,HEAD, 796 795 https://github.com/kylechui/nvim-surround/,main, 797 796 https://github.com/svermeulen/nvim-teal-maker/,HEAD,
-2
pkgs/applications/window-managers/cage/default.nix
··· 17 17 systemd, 18 18 libGL, 19 19 libX11, 20 - mesa, 21 20 xwayland ? null, 22 21 nixosTests, 23 22 }: ··· 53 52 pixman 54 53 libxkbcommon 55 54 xcbutilwm 56 - mesa # for libEGL headers 57 55 systemd 58 56 libGL 59 57 libX11
+2 -2
pkgs/applications/window-managers/cagebreak/default.nix
··· 4 4 fetchFromGitHub, 5 5 cairo, 6 6 fontconfig, 7 + libdrm, 7 8 libevdev, 8 9 libinput, 9 10 libxkbcommon, 10 11 xcbutilwm, 11 12 makeWrapper, 12 - mesa, 13 13 meson, 14 14 ninja, 15 15 nixosTests, ··· 49 49 buildInputs = [ 50 50 cairo 51 51 fontconfig 52 + libdrm 52 53 libevdev 53 54 libinput 54 55 libxkbcommon 55 56 xcbutilwm 56 - mesa # for libEGL headers 57 57 pango 58 58 pixman 59 59 systemd
+3 -3
pkgs/by-name/bu/burpsuite/package.nix
··· 9 9 }: 10 10 11 11 let 12 - version = "2024.11.1"; 12 + version = "2024.11.2"; 13 13 14 14 product = 15 15 if proEdition then 16 16 { 17 17 productName = "pro"; 18 18 productDesktop = "Burp Suite Professional Edition"; 19 - hash = "sha256-T2mihC/E9P2ARDs3aN6Acg62W86zNR4rTjngriGl3aU="; 19 + hash = "sha256-VoihG+JjA39wQ1Z7rRwenggwQCNTgg9wgi3vF1tAi6A="; 20 20 } 21 21 else 22 22 { 23 23 productName = "community"; 24 24 productDesktop = "Burp Suite Community Edition"; 25 - hash = "sha256-feTqtqnYtT7i+HtJAERcKK3QAdPkXm+JUtl6JZLEHJA="; 25 + hash = "sha256-KSpZ+QO+R1c5wc/I07TQIhfEoh8lrHQR8H+2C1Al+wk="; 26 26 }; 27 27 28 28 src = fetchurl {
+5 -9
pkgs/by-name/re/rerun/package.nix
··· 1 1 { 2 2 lib, 3 3 rustPlatform, 4 - fetchpatch, 5 4 fetchFromGitHub, 6 5 pkg-config, 7 6 stdenv, ··· 22 21 23 22 rustPlatform.buildRustPackage rec { 24 23 pname = "rerun"; 25 - version = "0.18.2"; 24 + version = "0.20.2"; 26 25 src = fetchFromGitHub { 27 26 owner = "rerun-io"; 28 27 repo = "rerun"; 29 - rev = version; 30 - sha256 = "sha256-mQjjgRKNFSts34Lphfje9H1BLY9nybCrJ2V09nMzVDM="; 28 + rev = "refs/tags/${version}"; 29 + hash = "sha256-AoI+BKDqHRsBrZAAwrE17xCduIP9wI7WPSSpn7SMz/M="; 31 30 }; 32 31 33 - cargoHash = "sha256-ZyjRe4M6RabSKhKCLa1ed1fsF6dkUt2a1c8C/1E48+M="; 34 - # the crate uses an old rust version (currently 1.76) 35 - # nixpkgs only works with the latest rust (currently 1.80) 36 - # so we patch this 37 - cargoPatches = [ ./rust-version.patch ]; 32 + useFetchCargoVendor = true; 33 + cargoHash = "sha256-LB8P9ceHN4zq+8qv1h0nDKW9FVTEbSrX/Zbv2WB29ck="; 38 34 39 35 cargoBuildFlags = [ "--package rerun-cli" ]; 40 36 cargoTestFlags = [ "--package rerun-cli" ];
-436
pkgs/by-name/re/rerun/rust-version.patch
··· 1 - BUILD.md | 4 ++-- 2 - CHANGELOG.md | 4 ++-- 3 - Cargo.toml | 2 +- 4 - clippy.toml | 2 +- 5 - crates/build/re_build_info/src/build_info.rs | 2 +- 6 - crates/viewer/re_viewer/data/quick_start_guides/rust_connect.md | 2 +- 7 - crates/viewer/re_viewer/data/quick_start_guides/rust_spawn.md | 2 +- 8 - docs/content/getting-started/installing-viewer.md | 2 +- 9 - docs/content/getting-started/quick-start/rust.md | 2 +- 10 - examples/rust/clock/Cargo.toml | 2 +- 11 - examples/rust/custom_data_loader/Cargo.toml | 2 +- 12 - examples/rust/custom_space_view/Cargo.toml | 2 +- 13 - examples/rust/custom_store_subscriber/Cargo.toml | 2 +- 14 - examples/rust/dna/Cargo.toml | 2 +- 15 - examples/rust/extend_viewer_ui/Cargo.toml | 2 +- 16 - examples/rust/external_data_loader/Cargo.toml | 2 +- 17 - examples/rust/incremental_logging/Cargo.toml | 2 +- 18 - examples/rust/log_file/Cargo.toml | 2 +- 19 - examples/rust/minimal/Cargo.toml | 2 +- 20 - examples/rust/minimal_options/Cargo.toml | 2 +- 21 - examples/rust/minimal_serve/Cargo.toml | 2 +- 22 - examples/rust/objectron/Cargo.toml | 2 +- 23 - examples/rust/raw_mesh/Cargo.toml | 2 +- 24 - examples/rust/shared_recording/Cargo.toml | 2 +- 25 - examples/rust/spawn_viewer/Cargo.toml | 2 +- 26 - examples/rust/stdio/Cargo.toml | 2 +- 27 - examples/rust/template/Cargo.toml | 2 +- 28 - rust-toolchain | 2 +- 29 - scripts/clippy_wasm/clippy.toml | 2 +- 30 - scripts/lint.py | 2 +- 31 - 30 files changed, 32 insertions(+), 32 deletions(-) 32 - 33 - diff --git a/BUILD.md b/BUILD.md 34 - index c0bc6e074..a74f86967 100644 35 - --- a/BUILD.md 36 - +++ b/BUILD.md 37 - @@ -23,12 +23,12 @@ cd rerun 38 - 39 - Now install the `pixi` package manager: <https://github.com/prefix-dev/pixi?tab=readme-ov-file#installation> 40 - 41 - -Make sure `cargo --version` prints `1.76.0` once you are done. 42 - +Make sure `cargo --version` prints `1.80.0` once you are done. 43 - 44 - If you are using an Apple-silicon Mac (M1, M2), make sure `rustc -vV` outputs `host: aarch64-apple-darwin`. If not, this should fix it: 45 - 46 - ```sh 47 - -rustup set default-host aarch64-apple-darwin && rustup install 1.76.0 48 - +rustup set default-host aarch64-apple-darwin && rustup install 1.80.0 49 - ``` 50 - 51 - ## Building and running the Viewer 52 - diff --git a/CHANGELOG.md b/CHANGELOG.md 53 - index 7efd062ea..82da0d411 100644 54 - --- a/CHANGELOG.md 55 - +++ b/CHANGELOG.md 56 - @@ -672,7 +672,7 @@ As always there's a lot going on under the hood: 57 - - New data APIs 6: cached archetype queries [#5673](https://github.com/rerun-io/rerun/pull/5673) 58 - - Remove justfile & fully replace remaining commands with Pixi [#5892](https://github.com/rerun-io/rerun/pull/5892) 59 - - Replace requirements-docs.txt with a Python doc Pixi environment [#5909](https://github.com/rerun-io/rerun/pull/5909) 60 - -- Update to Rust 1.76 [#5908](https://github.com/rerun-io/rerun/pull/5908) 61 - +- Update to Rust 1.80 [#5908](https://github.com/rerun-io/rerun/pull/5908) 62 - - Remove all dev/ci requirements.txt and fully replace with Pixi [#5939](https://github.com/rerun-io/rerun/pull/5939) 63 - - Markdown linter [#6181](https://github.com/rerun-io/rerun/pull/6181) 64 - 65 - @@ -1337,7 +1337,7 @@ Check out our [migration guide](https://www.rerun.io/docs/reference/migration/mi 66 - 67 - #### 📦 Dependencies 68 - - Update egui and wgpu [#4111](https://github.com/rerun-io/rerun/pull/4111) 69 - -- Update Rust to 1.76.0 [#4390](https://github.com/rerun-io/rerun/pull/4390) 70 - +- Update Rust to 1.80.0 [#4390](https://github.com/rerun-io/rerun/pull/4390) 71 - 72 - #### 🤷 Other 73 - #### 🤷 Other 74 - diff --git a/Cargo.toml b/Cargo.toml 75 - index 48ab565a3..a479a5394 100644 76 - --- a/Cargo.toml 77 - +++ b/Cargo.toml 78 - @@ -24,7 +24,7 @@ homepage = "https://rerun.io" 79 - include = ["../../LICENSE-APACHE", "../../LICENSE-MIT", "**/*.rs", "Cargo.toml"] 80 - license = "MIT OR Apache-2.0" 81 - repository = "https://github.com/rerun-io/rerun" 82 - -rust-version = "1.76" 83 - +rust-version = "1.80" 84 - version = "0.18.2" 85 - 86 - [workspace.dependencies] 87 - diff --git a/clippy.toml b/clippy.toml 88 - index 70ff980b8..f3d9d04b4 100644 89 - --- a/clippy.toml 90 - +++ b/clippy.toml 91 - @@ -3,7 +3,7 @@ 92 - # ----------------------------------------------------------------------------- 93 - # Section identical to the main scripts/clippy_wasm/clippy.toml: 94 - 95 - -msrv = "1.76" 96 - +msrv = "1.80" 97 - 98 - allow-unwrap-in-tests = true 99 - 100 - diff --git a/crates/build/re_build_info/src/build_info.rs b/crates/build/re_build_info/src/build_info.rs 101 - index 55abb7290..6efb10e3b 100644 102 - --- a/crates/build/re_build_info/src/build_info.rs 103 - +++ b/crates/build/re_build_info/src/build_info.rs 104 - @@ -153,7 +153,7 @@ fn crate_version_from_build_info_string() { 105 - patch: 0, 106 - meta: Some(crate::crate_version::Meta::DevAlpha(7)), 107 - }, 108 - - rustc_version: "1.76.0 (d5c2e9c34 2023-09-13)", 109 - + rustc_version: "1.80.0 (d5c2e9c34 2023-09-13)", 110 - llvm_version: "16.0.5", 111 - git_hash: "", 112 - git_branch: "", 113 - diff --git a/crates/viewer/re_viewer/data/quick_start_guides/rust_connect.md b/crates/viewer/re_viewer/data/quick_start_guides/rust_connect.md 114 - index 1130ccd7e..c5b748b77 100644 115 - --- a/crates/viewer/re_viewer/data/quick_start_guides/rust_connect.md 116 - +++ b/crates/viewer/re_viewer/data/quick_start_guides/rust_connect.md 117 - @@ -10,7 +10,7 @@ Let's try it out in a brand-new Rust project: 118 - cargo init cube && cd cube && cargo add rerun --features native_viewer 119 - ``` 120 - 121 - -Note that the Rerun SDK requires a working installation of Rust 1.76+. 122 - +Note that the Rerun SDK requires a working installation of Rust 1.80+. 123 - 124 - ## Logging your own data 125 - 126 - diff --git a/crates/viewer/re_viewer/data/quick_start_guides/rust_spawn.md b/crates/viewer/re_viewer/data/quick_start_guides/rust_spawn.md 127 - index fc9cfc1c6..cde772f1a 100644 128 - --- a/crates/viewer/re_viewer/data/quick_start_guides/rust_spawn.md 129 - +++ b/crates/viewer/re_viewer/data/quick_start_guides/rust_spawn.md 130 - @@ -10,7 +10,7 @@ Let's try it out in a brand-new Rust project: 131 - cargo init cube && cd cube && cargo add rerun 132 - ``` 133 - 134 - -Note that the Rerun SDK requires a working installation of Rust 1.76+. 135 - +Note that the Rerun SDK requires a working installation of Rust 1.80+. 136 - 137 - ## Logging your own data 138 - 139 - diff --git a/docs/content/getting-started/installing-viewer.md b/docs/content/getting-started/installing-viewer.md 140 - index 8327753b2..55ebc55e8 100644 141 - --- a/docs/content/getting-started/installing-viewer.md 142 - +++ b/docs/content/getting-started/installing-viewer.md 143 - @@ -40,7 +40,7 @@ There are many ways to install the viewer. Please pick whatever works best for y 144 - - Download `rerun-cli` for your platform from the [GitHub Release artifacts](https://github.com/rerun-io/rerun/releases/latest/). 145 - - Via Cargo 146 - - `cargo binstall rerun-cli` - download binaries via [`cargo binstall`](https://github.com/cargo-bins/cargo-binstall) 147 - - - `cargo install rerun-cli --locked` - build it from source (this requires Rust 1.76+) 148 - + - `cargo install rerun-cli --locked` - build it from source (this requires Rust 1.80+) 149 - - Together with the Rerun [Python SDK](./quick-start/python.md): 150 - - `pip3 install rerun-sdk` - download it via pip 151 - - `conda install -c conda-forge rerun-sdk` - download via Conda 152 - diff --git a/docs/content/getting-started/quick-start/rust.md b/docs/content/getting-started/quick-start/rust.md 153 - index 45d1beb1a..c79bc34db 100644 154 - --- a/docs/content/getting-started/quick-start/rust.md 155 - +++ b/docs/content/getting-started/quick-start/rust.md 156 - @@ -5,7 +5,7 @@ order: 3 157 - 158 - ## Setup 159 - 160 - -The Rerun SDK for Rust requires a working installation of Rust 1.76+. 161 - +The Rerun SDK for Rust requires a working installation of Rust 1.80+. 162 - 163 - After you have [installed the viewer](../installing-viewer.md#installing-the-viewer) you can simply add [the Rerun crate](https://crates.io/crates/rerun) to your project with `cargo add rerun`. 164 - 165 - diff --git a/examples/rust/clock/Cargo.toml b/examples/rust/clock/Cargo.toml 166 - index ba2999675..7c038ebc4 100644 167 - --- a/examples/rust/clock/Cargo.toml 168 - +++ b/examples/rust/clock/Cargo.toml 169 - @@ -2,7 +2,7 @@ 170 - name = "clock" 171 - version = "0.18.2" 172 - edition = "2021" 173 - -rust-version = "1.76" 174 - +rust-version = "1.80" 175 - license = "MIT OR Apache-2.0" 176 - publish = false 177 - 178 - diff --git a/examples/rust/custom_data_loader/Cargo.toml b/examples/rust/custom_data_loader/Cargo.toml 179 - index e5df4cf66..37cbe80cb 100644 180 - --- a/examples/rust/custom_data_loader/Cargo.toml 181 - +++ b/examples/rust/custom_data_loader/Cargo.toml 182 - @@ -2,7 +2,7 @@ 183 - name = "custom_data_loader" 184 - version = "0.18.2" 185 - edition = "2021" 186 - -rust-version = "1.76" 187 - +rust-version = "1.80" 188 - license = "MIT OR Apache-2.0" 189 - publish = false 190 - 191 - diff --git a/examples/rust/custom_space_view/Cargo.toml b/examples/rust/custom_space_view/Cargo.toml 192 - index ae1babd40..5c012cf7c 100644 193 - --- a/examples/rust/custom_space_view/Cargo.toml 194 - +++ b/examples/rust/custom_space_view/Cargo.toml 195 - @@ -2,7 +2,7 @@ 196 - name = "custom_space_view" 197 - version = "0.18.2" 198 - edition = "2021" 199 - -rust-version = "1.76" 200 - +rust-version = "1.80" 201 - license = "MIT OR Apache-2.0" 202 - publish = false 203 - 204 - diff --git a/examples/rust/custom_store_subscriber/Cargo.toml b/examples/rust/custom_store_subscriber/Cargo.toml 205 - index 627f21d7b..52d8d923e 100644 206 - --- a/examples/rust/custom_store_subscriber/Cargo.toml 207 - +++ b/examples/rust/custom_store_subscriber/Cargo.toml 208 - @@ -2,7 +2,7 @@ 209 - name = "custom_store_subscriber" 210 - version = "0.18.2" 211 - edition = "2021" 212 - -rust-version = "1.76" 213 - +rust-version = "1.80" 214 - license = "MIT OR Apache-2.0" 215 - publish = false 216 - 217 - diff --git a/examples/rust/dna/Cargo.toml b/examples/rust/dna/Cargo.toml 218 - index 57909e2fe..f5332a40c 100644 219 - --- a/examples/rust/dna/Cargo.toml 220 - +++ b/examples/rust/dna/Cargo.toml 221 - @@ -2,7 +2,7 @@ 222 - name = "dna" 223 - version = "0.18.2" 224 - edition = "2021" 225 - -rust-version = "1.76" 226 - +rust-version = "1.80" 227 - license = "MIT OR Apache-2.0" 228 - publish = false 229 - 230 - diff --git a/examples/rust/extend_viewer_ui/Cargo.toml b/examples/rust/extend_viewer_ui/Cargo.toml 231 - index 0a753fe36..e2442a638 100644 232 - --- a/examples/rust/extend_viewer_ui/Cargo.toml 233 - +++ b/examples/rust/extend_viewer_ui/Cargo.toml 234 - @@ -2,7 +2,7 @@ 235 - name = "extend_viewer_ui" 236 - version = "0.18.2" 237 - edition = "2021" 238 - -rust-version = "1.76" 239 - +rust-version = "1.80" 240 - license = "MIT OR Apache-2.0" 241 - publish = false 242 - 243 - diff --git a/examples/rust/external_data_loader/Cargo.toml b/examples/rust/external_data_loader/Cargo.toml 244 - index a57a27743..7ee67583d 100644 245 - --- a/examples/rust/external_data_loader/Cargo.toml 246 - +++ b/examples/rust/external_data_loader/Cargo.toml 247 - @@ -2,7 +2,7 @@ 248 - name = "rerun-loader-rust-file" 249 - version = "0.18.2" 250 - edition = "2021" 251 - -rust-version = "1.76" 252 - +rust-version = "1.80" 253 - license = "MIT OR Apache-2.0" 254 - publish = false 255 - 256 - diff --git a/examples/rust/incremental_logging/Cargo.toml b/examples/rust/incremental_logging/Cargo.toml 257 - index c7cfe3965..2bc68c06c 100644 258 - --- a/examples/rust/incremental_logging/Cargo.toml 259 - +++ b/examples/rust/incremental_logging/Cargo.toml 260 - @@ -2,7 +2,7 @@ 261 - name = "incremental_logging" 262 - version = "0.18.2" 263 - edition = "2021" 264 - -rust-version = "1.76" 265 - +rust-version = "1.80" 266 - license = "MIT OR Apache-2.0" 267 - publish = false 268 - 269 - diff --git a/examples/rust/log_file/Cargo.toml b/examples/rust/log_file/Cargo.toml 270 - index 4f3b5a220..b78f3a49b 100644 271 - --- a/examples/rust/log_file/Cargo.toml 272 - +++ b/examples/rust/log_file/Cargo.toml 273 - @@ -2,7 +2,7 @@ 274 - name = "log_file" 275 - version = "0.18.2" 276 - edition = "2021" 277 - -rust-version = "1.76" 278 - +rust-version = "1.80" 279 - license = "MIT OR Apache-2.0" 280 - publish = false 281 - 282 - diff --git a/examples/rust/minimal/Cargo.toml b/examples/rust/minimal/Cargo.toml 283 - index 77588cfb0..f5bc05637 100644 284 - --- a/examples/rust/minimal/Cargo.toml 285 - +++ b/examples/rust/minimal/Cargo.toml 286 - @@ -2,7 +2,7 @@ 287 - name = "minimal" 288 - version = "0.18.2" 289 - edition = "2021" 290 - -rust-version = "1.76" 291 - +rust-version = "1.80" 292 - license = "MIT OR Apache-2.0" 293 - publish = false 294 - 295 - diff --git a/examples/rust/minimal_options/Cargo.toml b/examples/rust/minimal_options/Cargo.toml 296 - index 2f34f4890..6c9afe8c8 100644 297 - --- a/examples/rust/minimal_options/Cargo.toml 298 - +++ b/examples/rust/minimal_options/Cargo.toml 299 - @@ -2,7 +2,7 @@ 300 - name = "minimal_options" 301 - version = "0.18.2" 302 - edition = "2021" 303 - -rust-version = "1.76" 304 - +rust-version = "1.80" 305 - license = "MIT OR Apache-2.0" 306 - publish = false 307 - 308 - diff --git a/examples/rust/minimal_serve/Cargo.toml b/examples/rust/minimal_serve/Cargo.toml 309 - index d2efcb718..7ca9ca96a 100644 310 - --- a/examples/rust/minimal_serve/Cargo.toml 311 - +++ b/examples/rust/minimal_serve/Cargo.toml 312 - @@ -2,7 +2,7 @@ 313 - name = "minimal_serve" 314 - version = "0.18.2" 315 - edition = "2021" 316 - -rust-version = "1.76" 317 - +rust-version = "1.80" 318 - license = "MIT OR Apache-2.0" 319 - publish = false 320 - 321 - diff --git a/examples/rust/objectron/Cargo.toml b/examples/rust/objectron/Cargo.toml 322 - index 25d732cde..bf1029d56 100644 323 - --- a/examples/rust/objectron/Cargo.toml 324 - +++ b/examples/rust/objectron/Cargo.toml 325 - @@ -2,7 +2,7 @@ 326 - name = "objectron" 327 - version = "0.18.2" 328 - edition = "2021" 329 - -rust-version = "1.76" 330 - +rust-version = "1.80" 331 - license = "MIT OR Apache-2.0" 332 - publish = false 333 - 334 - diff --git a/examples/rust/raw_mesh/Cargo.toml b/examples/rust/raw_mesh/Cargo.toml 335 - index a41df4804..a3d3b7081 100644 336 - --- a/examples/rust/raw_mesh/Cargo.toml 337 - +++ b/examples/rust/raw_mesh/Cargo.toml 338 - @@ -2,7 +2,7 @@ 339 - name = "raw_mesh" 340 - version = "0.18.2" 341 - edition = "2021" 342 - -rust-version = "1.76" 343 - +rust-version = "1.80" 344 - license = "MIT OR Apache-2.0" 345 - publish = false 346 - 347 - diff --git a/examples/rust/shared_recording/Cargo.toml b/examples/rust/shared_recording/Cargo.toml 348 - index ded88fbfb..a238033d3 100644 349 - --- a/examples/rust/shared_recording/Cargo.toml 350 - +++ b/examples/rust/shared_recording/Cargo.toml 351 - @@ -2,7 +2,7 @@ 352 - name = "shared_recording" 353 - version = "0.18.2" 354 - edition = "2021" 355 - -rust-version = "1.76" 356 - +rust-version = "1.80" 357 - license = "MIT OR Apache-2.0" 358 - publish = false 359 - 360 - diff --git a/examples/rust/spawn_viewer/Cargo.toml b/examples/rust/spawn_viewer/Cargo.toml 361 - index 8a73efc91..7495735d8 100644 362 - --- a/examples/rust/spawn_viewer/Cargo.toml 363 - +++ b/examples/rust/spawn_viewer/Cargo.toml 364 - @@ -2,7 +2,7 @@ 365 - name = "spawn_viewer" 366 - version = "0.18.2" 367 - edition = "2021" 368 - -rust-version = "1.76" 369 - +rust-version = "1.80" 370 - license = "MIT OR Apache-2.0" 371 - publish = false 372 - 373 - diff --git a/examples/rust/stdio/Cargo.toml b/examples/rust/stdio/Cargo.toml 374 - index f55cea217..78493677e 100644 375 - --- a/examples/rust/stdio/Cargo.toml 376 - +++ b/examples/rust/stdio/Cargo.toml 377 - @@ -2,7 +2,7 @@ 378 - name = "stdio" 379 - version = "0.18.2" 380 - edition = "2021" 381 - -rust-version = "1.76" 382 - +rust-version = "1.80" 383 - license = "MIT OR Apache-2.0" 384 - publish = false 385 - 386 - diff --git a/examples/rust/template/Cargo.toml b/examples/rust/template/Cargo.toml 387 - index 6e1ebafe4..eda133daa 100644 388 - --- a/examples/rust/template/Cargo.toml 389 - +++ b/examples/rust/template/Cargo.toml 390 - @@ -2,7 +2,7 @@ 391 - name = "template" 392 - version = "0.18.2" 393 - edition = "2021" 394 - -rust-version = "1.76" 395 - +rust-version = "1.80" 396 - license = "MIT OR Apache-2.0" 397 - publish = false 398 - 399 - diff --git a/rust-toolchain b/rust-toolchain 400 - index 871f56248..38e5e90f3 100644 401 - --- a/rust-toolchain 402 - +++ b/rust-toolchain 403 - @@ -5,6 +5,6 @@ 404 - # to the user in the error, instead of "error: invalid channel name '[toolchain]'". 405 - 406 - [toolchain] 407 - -channel = "1.76.0" 408 - +channel = "1.80.0" 409 - components = ["rustfmt", "clippy"] 410 - targets = ["wasm32-unknown-unknown"] 411 - diff --git a/scripts/clippy_wasm/clippy.toml b/scripts/clippy_wasm/clippy.toml 412 - index 75729af1e..627a3650e 100644 413 - --- a/scripts/clippy_wasm/clippy.toml 414 - +++ b/scripts/clippy_wasm/clippy.toml 415 - @@ -6,7 +6,7 @@ 416 - # ----------------------------------------------------------------------------- 417 - # Section identical to the main clippy.toml: 418 - 419 - -msrv = "1.76" 420 - +msrv = "1.80" 421 - 422 - allow-unwrap-in-tests = true 423 - 424 - diff --git a/scripts/lint.py b/scripts/lint.py 425 - index 695d12b6b..32a2c41e1 100755 426 - --- a/scripts/lint.py 427 - +++ b/scripts/lint.py 428 - @@ -599,7 +599,7 @@ def test_lint_workspace_deps() -> None: 429 - name = "clock" 430 - version = "0.6.0-alpha.0" 431 - edition = "2021" 432 - - rust-version = "1.76" 433 - + rust-version = "1.80" 434 - license = "MIT OR Apache-2.0" 435 - publish = false 436 -
+6 -8
pkgs/by-name/se/secrets-extractor/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "secrets-extractor"; 10 - version = "1.0.1"; 10 + version = "1.0.2"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "Xenios91"; 14 14 repo = "Secrets-Extractor"; 15 - rev = "v${version}"; 16 - hash = "sha256-cwEG0cXlyhrUSQAuZ/5KVqJtez13GvZghabsooXCM/U="; 15 + rev = "refs/tags/v${version}"; 16 + hash = "sha256-xtxhatxNK9bRnT1R/5BJkTcubO58sg5ssrziLYvw6mQ="; 17 17 }; 18 18 19 - vendorHash = "sha256-KhAaBNSpFu7LAWiHCWD1OssexW9N96ArDb7Oo1AaiWI="; 19 + vendorHash = "sha256-1NfeFw8v6F00CZe8a3qdk/TrUBNi2wr9PvwIsZzkDSk="; 20 20 21 - buildInputs = [ 22 - libpcap 23 - ]; 21 + buildInputs = [ libpcap ]; 24 22 25 23 meta = with lib; { 26 24 description = "Tool to check packets for secrets"; 27 25 homepage = "https://github.com/Xenios91/Secrets-Extractor"; 28 26 # https://github.com/Xenios91/Secrets-Extractor/issues/1 29 - license = with licenses; [ unfree ]; 27 + license = licenses.unfree; 30 28 maintainers = with maintainers; [ fab ]; 31 29 }; 32 30 }
+29
pkgs/by-name/ta/tatl/package.nix
··· 1 + { 2 + stdenv, 3 + lib, 4 + fetchFromGitHub, 5 + ocamlPackages, 6 + }: 7 + 8 + ocamlPackages.buildDunePackage rec { 9 + duneVersion = "3"; 10 + pname = "tatl"; 11 + version = "1.0"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "theoremprover-museum"; 15 + repo = "TATL"; 16 + rev = "refs/tags/v${version}"; 17 + sha256 = "sha256-leP02141kZSUmCDXOfV0TsEn+OQ6WoyM7+9NutLX1qk="; 18 + }; 19 + 20 + nativeBuildInputs = [ ocamlPackages.menhir ]; 21 + propagatedBuildInputs = [ ocamlPackages.ocamlgraph ]; 22 + 23 + meta = { 24 + description = "Implementation of a tableau-based decision procedure for the full Alternating-time Temporal Logic (ATL*)"; 25 + homepage = "https://atila.ibisc.univ-evry.fr/tableau_ATL_star/"; 26 + license = lib.licenses.asl20; 27 + maintainers = [ lib.maintainers.mgttlinger ]; 28 + }; 29 + }
+2 -2
pkgs/development/libraries/mesa/common.nix
··· 5 5 # nix build .#legacyPackages.x86_64-darwin.mesa .#legacyPackages.aarch64-darwin.mesa 6 6 rec { 7 7 pname = "mesa"; 8 - version = "24.3.1"; 8 + version = "24.3.2"; 9 9 10 10 src = fetchFromGitLab { 11 11 domain = "gitlab.freedesktop.org"; 12 12 owner = "mesa"; 13 13 repo = "mesa"; 14 14 rev = "mesa-${version}"; 15 - hash = "sha256-+UyeS2KkVexYdHj9WW8qVE8GLXyQn8G3ZW/Htog/m3I="; 15 + hash = "sha256-6EcSOE73wEz+aS4C+GUVfcbJtGB0MvIL4a6zA1ohVGA="; 16 16 }; 17 17 18 18 meta = {
-13
pkgs/development/libraries/mesa/darwin-build-fix.patch
··· 1 - diff --git a/src/glx/glxext.c b/src/glx/glxext.c 2 - index b03554487c3..9738dbdcaf2 100644 3 - --- a/src/glx/glxext.c 4 - +++ b/src/glx/glxext.c 5 - @@ -28,7 +28,7 @@ 6 - #include "glxextensions.h" 7 - 8 - #include "util/u_debug.h" 9 - -#ifndef GLX_USE_APPLEGL 10 - +#if !defined(GLX_USE_APPLEGL) || defined(GLX_USE_APPLE) 11 - #include "dri_common.h" 12 - #endif 13 -
+10 -2
pkgs/development/libraries/mesa/darwin.nix
··· 3 3 lib, 4 4 stdenv, 5 5 fetchFromGitLab, 6 + fetchpatch, 6 7 bison, 7 8 flex, 8 9 libxml2, ··· 26 27 meta 27 28 ; 28 29 30 + # Darwin build fixes. FIXME: remove in 25.1. 29 31 patches = [ 30 - # Submitted upstream: https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32497 31 - ./darwin-build-fix.patch 32 + (fetchpatch { 33 + url = "https://gitlab.freedesktop.org/mesa/mesa/-/commit/e89eba0796b3469f1d2cdbb600309f6231a8169d.patch"; 34 + hash = "sha256-0EP0JsYy+UTQ+eGd3sMfoLf1R+2e8n1flmQAHq3rCR4="; 35 + }) 36 + (fetchpatch { 37 + url = "https://gitlab.freedesktop.org/mesa/mesa/-/commit/568a4ca899762fe96fc9b34d2288d07e6656af87.patch"; 38 + hash = "sha256-uLxa5vA3/cYAIJT9h7eBQ1EBu4MnMg9R5uGAHzTb5Fc="; 39 + }) 32 40 ]; 33 41 34 42 outputs = [
+2 -2
pkgs/development/libraries/webkitgtk/default.nix
··· 48 48 apple_sdk, 49 49 libGL, 50 50 libGLU, 51 - mesa, 51 + libgbm, 52 52 libintl, 53 53 lcms2, 54 54 libmanette, ··· 147 147 hyphen 148 148 libGL 149 149 libGLU 150 - mesa # for libEGL headers 150 + libgbm 151 151 libgcrypt 152 152 libgpg-error 153 153 libidn
+88 -63
pkgs/development/lua-modules/generated-packages.nix
··· 387 387 }; 388 388 }) {}; 389 389 390 + datafile = callPackage({ buildLuarocksPackage, fetchFromGitHub, fetchurl, luaOlder }: 391 + buildLuarocksPackage { 392 + pname = "datafile"; 393 + version = "0.10-1"; 394 + knownRockspec = (fetchurl { 395 + url = "mirror://luarocks/datafile-0.10-1.rockspec"; 396 + sha256 = "0qj9m5qv84rqg9k981bnsvrbnmd1d6zqvl30471w0bx5w88zidyk"; 397 + }).outPath; 398 + src = fetchFromGitHub { 399 + owner = "hishamhm"; 400 + repo = "datafile"; 401 + rev = "v0.10"; 402 + hash = "sha256-l0jrSHkcvAeF5/HUXIV0wGLmmTNINXsQ05EjT/YFgw4="; 403 + }; 404 + 405 + disabled = luaOlder "5.1"; 406 + 407 + meta = { 408 + homepage = "http://github.com/hishamhm/datafile"; 409 + description = "A library for handling paths when loading data files"; 410 + license.fullName = "MIT/X11"; 411 + }; 412 + }) {}; 413 + 390 414 digestif = callPackage({ buildLuarocksPackage, fetchFromGitHub, fetchurl, lpeg, luaOlder, luafilesystem }: 391 415 buildLuarocksPackage { 392 416 pname = "digestif"; ··· 555 579 fzf-lua = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder }: 556 580 buildLuarocksPackage { 557 581 pname = "fzf-lua"; 558 - version = "0.0.1494-1"; 582 + version = "0.0.1569-1"; 559 583 knownRockspec = (fetchurl { 560 - url = "mirror://luarocks/fzf-lua-0.0.1494-1.rockspec"; 561 - sha256 = "0k6igz74ah84a91wbasqdjs44fcc91mijgi3ks0g6is9xkdvscy8"; 584 + url = "mirror://luarocks/fzf-lua-0.0.1569-1.rockspec"; 585 + sha256 = "00p1pqx0yjhjn2dv9297167yy50a30iinv46g2n9p05c1a6ban12"; 562 586 }).outPath; 563 587 src = fetchzip { 564 - url = "https://github.com/ibhagwan/fzf-lua/archive/ce978474e406f4faacd2e66ec35d93b9e8ae069e.zip"; 565 - sha256 = "078i9f5n2iphghjxrz42gra5hnfcwqhprp5wj9rwlsq4ws6ks4d6"; 588 + url = "https://github.com/ibhagwan/fzf-lua/archive/cd9ab4ed3f44d062e511aa9de41ccf815f0ec962.zip"; 589 + sha256 = "0x6hkbwxqv5j99623gfv92bwz1kxlifwm6fj05ic8x92r96c58f1"; 566 590 }; 567 591 568 592 disabled = luaOlder "5.1"; ··· 622 646 haskell-tools-nvim = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder }: 623 647 buildLuarocksPackage { 624 648 pname = "haskell-tools.nvim"; 625 - version = "4.3.1-1"; 649 + version = "4.3.2-1"; 626 650 knownRockspec = (fetchurl { 627 - url = "mirror://luarocks/haskell-tools.nvim-4.3.1-1.rockspec"; 628 - sha256 = "1aw8rs6b384qp33j615ixp2iz8qpfs9nwv5psgknb38pswh9ldly"; 651 + url = "mirror://luarocks/haskell-tools.nvim-4.3.2-1.rockspec"; 652 + sha256 = "02lsy1g79c5670l7gbnhwhv6cr66idfmcb0956yvhzcdh92pmvr2"; 629 653 }).outPath; 630 654 src = fetchzip { 631 - url = "https://github.com/mrcjkb/haskell-tools.nvim/archive/v4.3.1.zip"; 632 - sha256 = "1ssgwms4jipl7j3v51wzmhllg1bm4k1nd3j5i8rwmjcv704izik9"; 655 + url = "https://github.com/mrcjkb/haskell-tools.nvim/archive/v4.3.2.zip"; 656 + sha256 = "0a86nx2ldvxzk4wbpbch4zi13mn7bzkmbrhrj5bkkl6b9745fgzk"; 633 657 }; 634 658 635 659 disabled = luaOlder "5.1"; ··· 1651 1675 }; 1652 1676 }) {}; 1653 1677 1654 - luacov = callPackage({ buildLuarocksPackage, fetchFromGitHub, fetchurl, luaAtLeast, luaOlder }: 1678 + luacov = callPackage({ buildLuarocksPackage, datafile, fetchFromGitHub, fetchurl, luaOlder }: 1655 1679 buildLuarocksPackage { 1656 1680 pname = "luacov"; 1657 - version = "0.15.0-1"; 1681 + version = "0.16.0-1"; 1658 1682 knownRockspec = (fetchurl { 1659 - url = "mirror://luarocks/luacov-0.15.0-1.rockspec"; 1660 - sha256 = "18byfl23c73pazi60hsx0vd74hqq80mzixab76j36cyn8k4ni9db"; 1683 + url = "mirror://luarocks/luacov-0.16.0-1.rockspec"; 1684 + sha256 = "1yn056pd2x142lc1s2admnhjnv5hpqwlq6d5sr2ckj5g83x55dvx"; 1661 1685 }).outPath; 1662 1686 src = fetchFromGitHub { 1663 - owner = "keplerproject"; 1687 + owner = "lunarmodules"; 1664 1688 repo = "luacov"; 1665 - rev = "v0.15.0"; 1666 - hash = "sha256-cZrsxQyW5Z13cguTzsdJyIMATJUw6GasLItho6wFpSA="; 1689 + rev = "v0.16.0"; 1690 + hash = "sha256-GoJqiFyXH4chQ/k/qBPttnh/V4vUSfR2Lg8rt3CPKoY="; 1667 1691 }; 1668 1692 1669 - disabled = luaOlder "5.1" || luaAtLeast "5.5"; 1693 + disabled = luaOlder "5.1"; 1694 + propagatedBuildInputs = [ datafile ]; 1670 1695 1671 1696 meta = { 1672 - homepage = "https://keplerproject.github.io/luacov/"; 1697 + homepage = "https://lunarmodules.github.io/luacov/"; 1673 1698 description = "Coverage analysis tool for Lua scripts"; 1674 1699 license.fullName = "MIT"; 1675 1700 }; ··· 2088 2113 luarocks-build-treesitter-parser = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder, luafilesystem }: 2089 2114 buildLuarocksPackage { 2090 2115 pname = "luarocks-build-treesitter-parser"; 2091 - version = "5.0.2-1"; 2116 + version = "6.0.0-1"; 2092 2117 knownRockspec = (fetchurl { 2093 - url = "mirror://luarocks/luarocks-build-treesitter-parser-5.0.2-1.rockspec"; 2094 - sha256 = "037rap1aar6xx25xgnlknkkszarkbflpdfp1jaasq5py397gc61a"; 2118 + url = "mirror://luarocks/luarocks-build-treesitter-parser-6.0.0-1.rockspec"; 2119 + sha256 = "1al6id20nvdz2whyiig271bydxmvrpgjdzn2sv2zkpkgsadp8p3h"; 2095 2120 }).outPath; 2096 2121 src = fetchzip { 2097 - url = "https://github.com/nvim-neorocks/luarocks-build-treesitter-parser/archive/v5.0.2.zip"; 2098 - sha256 = "03f17sljq1f7nqrdjn94p9p2j67bs5si2nl0xlv1njj326rby324"; 2122 + url = "https://github.com/nvim-neorocks/luarocks-build-treesitter-parser/archive/v6.0.0.zip"; 2123 + sha256 = "17ikz8nna8jngdd8pxg0x65sxpzv0njhiqzb2nh6ng2s195sya23"; 2099 2124 }; 2100 2125 2101 2126 disabled = luaOlder "5.1"; ··· 2259 2284 luasystem = callPackage({ buildLuarocksPackage, fetchFromGitHub, fetchurl, luaOlder }: 2260 2285 buildLuarocksPackage { 2261 2286 pname = "luasystem"; 2262 - version = "0.4.4-1"; 2287 + version = "0.4.5-1"; 2263 2288 knownRockspec = (fetchurl { 2264 - url = "mirror://luarocks/luasystem-0.4.4-1.rockspec"; 2265 - sha256 = "0gk489qwxfvc5qwmj9fgwi60qnjnqasc665bg8iiggapdwcl5ny4"; 2289 + url = "mirror://luarocks/luasystem-0.4.5-1.rockspec"; 2290 + sha256 = "0769h7mlw8gv3zw0yvnwmg1f0k02a85w4cnxbmpd19k07m6v9izr"; 2266 2291 }).outPath; 2267 2292 src = fetchFromGitHub { 2268 2293 owner = "lunarmodules"; 2269 2294 repo = "luasystem"; 2270 - rev = "v0.4.4"; 2271 - hash = "sha256-Lxp3o94QxtsgBMilKBG21mFneh0ux7wRKDyPwMTDDUA="; 2295 + rev = "v0.4.5"; 2296 + hash = "sha256-miubEXFrfB3/PzToOOh3sKGXwrRRc3Wd+gWbxj9M5ns="; 2272 2297 }; 2273 2298 2274 2299 disabled = luaOlder "5.1"; ··· 2540 2565 lze = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder }: 2541 2566 buildLuarocksPackage { 2542 2567 pname = "lze"; 2543 - version = "0.4.4-1"; 2568 + version = "0.4.5-1"; 2544 2569 knownRockspec = (fetchurl { 2545 - url = "mirror://luarocks/lze-0.4.4-1.rockspec"; 2546 - sha256 = "1qky68bg003d0n57pfb04l4q5sxbwp54kpbwdrwln6qnwbb93fcy"; 2570 + url = "mirror://luarocks/lze-0.4.5-1.rockspec"; 2571 + sha256 = "1r029y9d8dvl5ynwspxq6168x0bg3qyf5m1x9yrqvb52mk0dyhbq"; 2547 2572 }).outPath; 2548 2573 src = fetchzip { 2549 - url = "https://github.com/BirdeeHub/lze/archive/v0.4.4.zip"; 2550 - sha256 = "18g865sii3k09dk7ynhy37m27br3lwy003zl1x0fgqpnqd47114j"; 2574 + url = "https://github.com/BirdeeHub/lze/archive/v0.4.5.zip"; 2575 + sha256 = "0lsy7ikwqnpis8mwha4sl5i0v6x51xxravnsdjvy6fvcr6jbp51r"; 2551 2576 }; 2552 2577 2553 2578 disabled = luaOlder "5.1"; ··· 2707 2732 src = fetchFromGitHub { 2708 2733 owner = "leafo"; 2709 2734 repo = "moonscript"; 2710 - rev = "60094ca0be870462678925413b6528ae5bf4690a"; 2711 - hash = "sha256-xYKn/A1mX1h4LdLcV/2Vww1YJCfhlkXy8fEcqeofYPk="; 2735 + rev = "3db3ec8234a1d77ad6f1fd773057efddfdc79a77"; 2736 + hash = "sha256-TPThwd8kce4hZY4orWnwqWTpQhS8Bn18fTLeURdT2AE="; 2712 2737 }; 2713 2738 2714 2739 disabled = luaOlder "5.1"; ··· 2846 2871 src = fetchFromGitHub { 2847 2872 owner = "hrsh7th"; 2848 2873 repo = "nvim-cmp"; 2849 - rev = "ed31156aa2cc14e3bc066c59357cc91536a2bc01"; 2850 - hash = "sha256-Rpb1rPYFQs74XzNQfj83o/l7bfM3GnYk+EqoDnz2JyM="; 2874 + rev = "98e8b9d593a5547c126a39212d6f5e954a2d85dd"; 2875 + hash = "sha256-63RBd3/t0lv7pVI4wyjU1l8C1oCnP1VFiIv5E2xSYP0="; 2851 2876 }; 2852 2877 2853 2878 disabled = luaOlder "5.1" || luaAtLeast "5.4"; ··· 3073 3098 rocks-git-nvim = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder, nvim-nio, rocks-nvim }: 3074 3099 buildLuarocksPackage { 3075 3100 pname = "rocks-git.nvim"; 3076 - version = "2.5.1-1"; 3101 + version = "2.5.2-1"; 3077 3102 knownRockspec = (fetchurl { 3078 - url = "mirror://luarocks/rocks-git.nvim-2.5.1-1.rockspec"; 3079 - sha256 = "0mb8r5064h7yjgdaipsmgi6ha2dlxbwd73js8w23pi182fprqpvj"; 3103 + url = "mirror://luarocks/rocks-git.nvim-2.5.2-1.rockspec"; 3104 + sha256 = "1c7rmn735d0axk92mk1hpiyqrv9hw4a2naai9naq57g6fy7wh0cc"; 3080 3105 }).outPath; 3081 3106 src = fetchzip { 3082 - url = "https://github.com/nvim-neorocks/rocks-git.nvim/archive/v2.5.1.zip"; 3083 - sha256 = "11j9w8bz8gacphr98bpw4rbibz4gs8abawmfqhx5l86k4801z5sq"; 3107 + url = "https://github.com/nvim-neorocks/rocks-git.nvim/archive/v2.5.2.zip"; 3108 + sha256 = "1bhaa40j2dz1660q5fqdbjxvbscd6wk6l3psqm7mmh60zyvibnf2"; 3084 3109 }; 3085 3110 3086 3111 disabled = luaOlder "5.1"; ··· 3097 3122 rocks-nvim = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, fidget-nvim, fzy, luaOlder, luarocks, nvim-nio, rtp-nvim, toml-edit }: 3098 3123 buildLuarocksPackage { 3099 3124 pname = "rocks.nvim"; 3100 - version = "2.42.2-1"; 3125 + version = "2.42.4-1"; 3101 3126 knownRockspec = (fetchurl { 3102 - url = "mirror://luarocks/rocks.nvim-2.42.2-1.rockspec"; 3103 - sha256 = "16ca8hk7vc66a4aqy4lpaqr3qlmpb13l1vybc7apaqvpv4jl6jlq"; 3127 + url = "mirror://luarocks/rocks.nvim-2.42.4-1.rockspec"; 3128 + sha256 = "09adajlwj358c7alw9pa3wm013wp40ihcsawbq42diq3n8375s6w"; 3104 3129 }).outPath; 3105 3130 src = fetchzip { 3106 - url = "https://github.com/nvim-neorocks/rocks.nvim/archive/v2.42.2.zip"; 3107 - sha256 = "0vjpnvd6imbgf63x6wff2kqmvzn3j2dwrnbhacpj5a06nppwc0k7"; 3131 + url = "https://github.com/nvim-neorocks/rocks.nvim/archive/v2.42.4.zip"; 3132 + sha256 = "0r4lx432b71j0xrbi7axh2aqfpjyp313v5rw6vg1a3hbv02v0w82"; 3108 3133 }; 3109 3134 3110 3135 disabled = luaOlder "5.1"; ··· 3144 3169 rustaceanvim = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder }: 3145 3170 buildLuarocksPackage { 3146 3171 pname = "rustaceanvim"; 3147 - version = "5.15.2-1"; 3172 + version = "5.19.2-1"; 3148 3173 knownRockspec = (fetchurl { 3149 - url = "mirror://luarocks/rustaceanvim-5.15.2-1.rockspec"; 3150 - sha256 = "146wgs02qvlhpvq4vkn3kyjqa7305lc8741rqd46rw7y4cmnxmrn"; 3174 + url = "mirror://luarocks/rustaceanvim-5.19.2-1.rockspec"; 3175 + sha256 = "0cza1rp8d5sg4av87s859aa1ncni1i8i2b6lalklwy6q3f6cvf9l"; 3151 3176 }).outPath; 3152 3177 src = fetchzip { 3153 - url = "https://github.com/mrcjkb/rustaceanvim/archive/v5.15.2.zip"; 3154 - sha256 = "0kflz9n5kzyfjix8gmy8a7rqdzwwp77m2ffx54a82rbb9ddqs5jr"; 3178 + url = "https://github.com/mrcjkb/rustaceanvim/archive/v5.19.2.zip"; 3179 + sha256 = "1kxapy0vidvgrnrvsdrpwaqq6aa4gb91f5i8wxzwxnl6ag4parxa"; 3155 3180 }; 3156 3181 3157 3182 disabled = luaOlder "5.1"; ··· 3316 3341 src = fetchFromGitHub { 3317 3342 owner = "teal-language"; 3318 3343 repo = "teal-language-server"; 3319 - rev = "6e50c7d907b150b1b2e03fb5d70f0f3c63dec5c3"; 3320 - hash = "sha256-lTCTePaAYW4pqbJznos3BM0I0/Vaw13TNCCatmQjIJo="; 3344 + rev = "main"; 3345 + hash = "sha256-TbNvYG2aRt27+sfXvZOlq/F7Gy6sQtoDz6satC+Qqss="; 3321 3346 }; 3322 3347 3323 3348 propagatedBuildInputs = [ argparse dkjson inspect luafilesystem lusc_luv luv tl ]; ··· 3363 3388 src = fetchFromGitHub { 3364 3389 owner = "nvim-telescope"; 3365 3390 repo = "telescope.nvim"; 3366 - rev = "85922dde3767e01d42a08e750a773effbffaea3e"; 3367 - hash = "sha256-Qa/f+0asQvA8mhIUajC4BGZCI92OqA6ySVoQSC3ZY3s="; 3391 + rev = "2eca9ba22002184ac05eddbe47a7fe2d5a384dfc"; 3392 + hash = "sha256-npb61MZYAotz71Co5G1dUeIqWt7GVeqZNz0A2Yz2dy4="; 3368 3393 }; 3369 3394 3370 3395 disabled = lua.luaversion != "5.1"; ··· 3380 3405 tiktoken_core = callPackage({ buildLuarocksPackage, fetchFromGitHub, fetchurl, luaOlder, luarocks-build-rust-mlua }: 3381 3406 buildLuarocksPackage { 3382 3407 pname = "tiktoken_core"; 3383 - version = "0.2.2-1"; 3408 + version = "0.2.3-1"; 3384 3409 knownRockspec = (fetchurl { 3385 - url = "mirror://luarocks/tiktoken_core-0.2.2-1.rockspec"; 3386 - sha256 = "1bx1kj47d6di1iflhccm5p7z2ry5c83f59pqi5jsf1r2h000p4n5"; 3410 + url = "mirror://luarocks/tiktoken_core-0.2.3-1.rockspec"; 3411 + sha256 = "0xwsjirxr5y6famhhwc170py6lsxhfsy1r3sviwfwz22cj51frx7"; 3387 3412 }).outPath; 3388 3413 src = fetchFromGitHub { 3389 3414 owner = "gptlang"; 3390 3415 repo = "lua-tiktoken"; 3391 - rev = "v0.2.2"; 3392 - hash = "sha256-H83kk9dsH/cWBEx2AXQQ82l8sNfhzO864jwDd7vwAQc="; 3416 + rev = "v0.2.3"; 3417 + hash = "sha256-Se/V2+X1Fddie3W1OYrEJt9Jn8ZqmiYbByu8H1OvECA="; 3393 3418 }; 3394 3419 3395 3420 disabled = luaOlder "5.1"; ··· 3414 3439 src = fetchFromGitHub { 3415 3440 owner = "teal-language"; 3416 3441 repo = "tl"; 3417 - rev = "refs/tags/v0.24.1"; 3442 + rev = "v0.24.1"; 3418 3443 hash = "sha256-7jnkURfY2o/32V5sEYleBfwWjDIeo2q/gGrFIizoHZk="; 3419 3444 }; 3420 3445
+2 -2
pkgs/development/python-modules/ailment/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "ailment"; 13 - version = "9.2.132"; 13 + version = "9.2.133"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.11"; ··· 19 19 owner = "angr"; 20 20 repo = "ailment"; 21 21 rev = "refs/tags/v${version}"; 22 - hash = "sha256-XvDZwZF084Qns0b3g+X1ay+XEZq84mIvF/8JEx8sCaQ="; 22 + hash = "sha256-3yNMrIQWW+pvwfGzox1rHLXzfY3Y6jjU8YFdrZgMePA="; 23 23 }; 24 24 25 25 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/aioopenexchangerates/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "aioopenexchangerates"; 17 - version = "0.6.18"; 17 + version = "0.6.19"; 18 18 pyproject = true; 19 19 20 20 disabled = pythonOlder "3.11"; ··· 23 23 owner = "MartinHjelmare"; 24 24 repo = "aioopenexchangerates"; 25 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-/iSL+Beny7q9RtdbVIfiMmAwH5wS90ADQszBL7Ooq3o="; 26 + hash = "sha256-Rb5oCheiTZ737nKDwSpoRZcgpWPt5YMzplD6Wb6kZxY="; 27 27 }; 28 28 29 29 pythonRelaxDeps = [ "pydantic" ];
+2 -2
pkgs/development/python-modules/aiortm/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "aiortm"; 22 - version = "0.9.43"; 22 + version = "0.9.44"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.12"; ··· 28 28 owner = "MartinHjelmare"; 29 29 repo = "aiortm"; 30 30 rev = "refs/tags/v${version}"; 31 - hash = "sha256-MyeD0SNVHhIPn3KcBfLO5msmwrFRMyIhW8LxUVsHU0o="; 31 + hash = "sha256-m62VEmrmczNxBLBEmLKP3vEi14BuwLA2WwtLOU436hY="; 32 32 }; 33 33 34 34 pythonRelaxDeps = [ "typer" ];
+2 -2
pkgs/development/python-modules/angr/default.nix
··· 36 36 37 37 buildPythonPackage rec { 38 38 pname = "angr"; 39 - version = "9.2.132"; 39 + version = "9.2.133"; 40 40 pyproject = true; 41 41 42 42 disabled = pythonOlder "3.11"; ··· 45 45 owner = "angr"; 46 46 repo = "angr"; 47 47 rev = "refs/tags/v${version}"; 48 - hash = "sha256-DtmjtxO2eOq2qz48uMkNOlGhIsc+LVOWGh0PpPIzaow="; 48 + hash = "sha256-dHksVhuQUC0f55WNPSkVHTXTGVuul742LeWSz0CTwrw="; 49 49 }; 50 50 51 51 postPatch = ''
+2 -2
pkgs/development/python-modules/archinfo/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "archinfo"; 13 - version = "9.2.132"; 13 + version = "9.2.133"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.8"; ··· 19 19 owner = "angr"; 20 20 repo = "archinfo"; 21 21 rev = "refs/tags/v${version}"; 22 - hash = "sha256-j/N5nWUCWQRGb9Soe+naHLXV2Fwqu7lPMZdY9k3U1O4="; 22 + hash = "sha256-opIQm/59X+5PDJiFW8SkB0CrFkICBTgbNW8ZUXMfrnw="; 23 23 }; 24 24 25 25 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/bc-detect-secrets/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "bc-detect-secrets"; 20 - version = "1.5.32"; 20 + version = "1.5.33"; 21 21 pyproject = true; 22 22 23 23 disabled = pythonOlder "3.8"; ··· 26 26 owner = "bridgecrewio"; 27 27 repo = "detect-secrets"; 28 28 rev = "refs/tags/${version}"; 29 - hash = "sha256-xZOoEpsYPtqeJoEuq7qsBl7TNvJYzUsI7H39P5qWHXk="; 29 + hash = "sha256-z/mjZcC1ZXebDWXlYvcdxDk+HoZ0gctfJSpQSkIbQmA="; 30 30 }; 31 31 32 32 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/boto3-stubs/default.nix
··· 359 359 360 360 buildPythonPackage rec { 361 361 pname = "boto3-stubs"; 362 - version = "1.35.82"; 362 + version = "1.35.84"; 363 363 pyproject = true; 364 364 365 365 disabled = pythonOlder "3.7"; ··· 367 367 src = fetchPypi { 368 368 pname = "boto3_stubs"; 369 369 inherit version; 370 - hash = "sha256-IYShG/AR3zoHn30oFkg4AiYBJlpKJX0H6WbXwyzbbqE="; 370 + hash = "sha256-KZ0cJKxdGlRb5rNnF7LZXXg2hcSoG7x6V2mlUnHmENY="; 371 371 }; 372 372 373 373 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/botocore-stubs/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "botocore-stubs"; 13 - version = "1.35.82"; 13 + version = "1.35.84.post1"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 18 18 src = fetchPypi { 19 19 pname = "botocore_stubs"; 20 20 inherit version; 21 - hash = "sha256-TDZebNytHPt+l6/8DG5qTQR1DbIpMfLbxx/NibzSj4I="; 21 + hash = "sha256-6tG4B6O6p3livImrcBYWQlN0ul0xIZ+2TCygkPMwkLM="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ setuptools ];
+2 -2
pkgs/development/python-modules/claripy/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "claripy"; 17 - version = "9.2.132"; 17 + version = "9.2.133"; 18 18 pyproject = true; 19 19 20 20 disabled = pythonOlder "3.11"; ··· 23 23 owner = "angr"; 24 24 repo = "claripy"; 25 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-TiddozxGyDilcLKXyIOlIo7cTDVdJCJEjArq6nwgsc0="; 26 + hash = "sha256-Fdeh0wr7hPa6SG7UG5Ue58W3x7JYD97NAU29FFklLcA="; 27 27 }; 28 28 29 29 # z3 does not provide a dist-info, so python-runtime-deps-check will fail
+3 -3
pkgs/development/python-modules/cle/default.nix
··· 16 16 17 17 let 18 18 # The binaries are following the argr projects release cycle 19 - version = "9.2.132"; 19 + version = "9.2.133"; 20 20 21 21 # Binary files from https://github.com/angr/binaries (only used for testing and only here) 22 22 binaries = fetchFromGitHub { 23 23 owner = "angr"; 24 24 repo = "binaries"; 25 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-ytL8UlvbzOSvUwXjZhxAW6lQJawGOTfMlq/yQnBLIu0="; 26 + hash = "sha256-+vAD9XvqV45wf7sf+VuhTbw2gFeJra5gBptfg8r8e8U="; 27 27 }; 28 28 in 29 29 buildPythonPackage rec { ··· 37 37 owner = "angr"; 38 38 repo = "cle"; 39 39 rev = "refs/tags/v${version}"; 40 - hash = "sha256-TO1zVqoPr1HBTMd9+Gbn39lLsZv8cMcAG0EKsvgymcI="; 40 + hash = "sha256-R57Qd04/xtDW7/WDcZpOhkYOBCSmBNq2Bn3BYDfjseA="; 41 41 }; 42 42 43 43 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pylamarzocco/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "pylamarzocco"; 17 - version = "1.4.0"; 17 + version = "1.4.1"; 18 18 pyproject = true; 19 19 20 20 disabled = pythonOlder "3.11"; ··· 23 23 owner = "zweckj"; 24 24 repo = "pylamarzocco"; 25 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-l9k8cYfYW+4+USDmIAEmXX+6wyDe6tqrjSgQnT8MUKo="; 26 + hash = "sha256-fbXqAPyx6pGEKM+invdq88dDyiLJpyjL3idalnk0RUQ="; 27 27 }; 28 28 29 29 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pypalazzetti/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "pypalazzetti"; 14 - version = "0.1.14"; 14 + version = "0.1.15"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.10"; ··· 20 20 owner = "dotvav"; 21 21 repo = "py-palazzetti-api"; 22 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-TDD3/UghNtsSAWV0k1I4MOjTFZB+sBqGgpKwy1p9Gx4="; 23 + hash = "sha256-gqJZVlX060BMbTbkbpK6UMnM71Mr06sNHX++ObI3Y5Y="; 24 24 }; 25 25 26 26 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pyvex/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "pyvex"; 16 - version = "9.2.132"; 16 + version = "9.2.133"; 17 17 pyproject = true; 18 18 19 19 disabled = pythonOlder "3.11"; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - hash = "sha256-0/kiZLRkhWrMA74XILwrBtR45PMrypi3HqEt5UiVR/0="; 23 + hash = "sha256-uFoMI8byPyjwpQhruh8Hpk9MF8PZBkTvqbXemUHDWqs="; 24 24 }; 25 25 26 26 build-system = [ setuptools ];
-1
pkgs/development/python-modules/rerun-sdk/default.nix
··· 26 26 src 27 27 version 28 28 cargoDeps 29 - cargoPatches 30 29 patches 31 30 ; 32 31
+2 -2
pkgs/development/python-modules/tencentcloud-sdk-python/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "tencentcloud-sdk-python"; 13 - version = "3.0.1284"; 13 + version = "3.0.1285"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.9"; ··· 19 19 owner = "TencentCloud"; 20 20 repo = "tencentcloud-sdk-python"; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-HPfEP6ZTHX8YIxAalZFmng6fjGtiJyx+jDNWlq8ZKag="; 22 + hash = "sha256-tWN2FgL7PDoxvmX3lU/TQCmE51fZ7FBH0oM2VXMlfnw="; 23 23 }; 24 24 25 25 build-system = [ setuptools ];
+3 -3
pkgs/kde/generated/sources/gear.json
··· 145 145 "hash": "sha256-8DxiNzcvpAyHWmnfl4N1wIR48jn8veBI/bRkMbLn4OQ=" 146 146 }, 147 147 "dolphin": { 148 - "version": "24.12.0", 149 - "url": "mirror://kde/stable/release-service/24.12.0/src/dolphin-24.12.0.tar.xz", 150 - "hash": "sha256-Qh8C+WmbYJ1+ZuCq6fof1zW6CpKlb+vnWIDsvrjfxRM=" 148 + "version": "24.12.0.1", 149 + "url": "mirror://kde/stable/release-service/24.12.0/src/dolphin-24.12.0.1.tar.xz", 150 + "hash": "sha256-OdakLHkAIaDEShi3T6tjOHQGNyfUZ5V0amZQYM9Fk6M=" 151 151 }, 152 152 "dolphin-plugins": { 153 153 "version": "24.12.0",
+1 -1
pkgs/tools/security/metasploit/Gemfile
··· 1 1 # frozen_string_literal: true 2 2 source "https://rubygems.org" 3 3 4 - gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.4.39" 4 + gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.4.41"
+5 -5
pkgs/tools/security/metasploit/Gemfile.lock
··· 1 1 GIT 2 2 remote: https://github.com/rapid7/metasploit-framework 3 - revision: b815ef9870c45e2f9d2e62475e1780ddb9bfb1d0 4 - ref: refs/tags/6.4.39 3 + revision: 813c3bea8c3f200422dbaf21ae03229adff424f3 4 + ref: refs/tags/6.4.41 5 5 specs: 6 - metasploit-framework (6.4.39) 6 + metasploit-framework (6.4.41) 7 7 aarch64 8 8 abbrev 9 9 actionpack (~> 7.0.0) ··· 44 44 metasploit-concern 45 45 metasploit-credential 46 46 metasploit-model 47 - metasploit-payloads (= 2.0.187) 47 + metasploit-payloads (= 2.0.189) 48 48 metasploit_data_models 49 49 metasploit_payloads-mettle (= 1.0.35) 50 50 mqtt ··· 275 275 activemodel (~> 7.0) 276 276 activesupport (~> 7.0) 277 277 railties (~> 7.0) 278 - metasploit-payloads (2.0.187) 278 + metasploit-payloads (2.0.189) 279 279 metasploit_data_models (6.0.5) 280 280 activerecord (~> 7.0) 281 281 activesupport (~> 7.0)
+2 -2
pkgs/tools/security/metasploit/default.nix
··· 18 18 in 19 19 stdenv.mkDerivation (finalAttrs: { 20 20 pname = "metasploit-framework"; 21 - version = "6.4.39"; 21 + version = "6.4.41"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "rapid7"; 25 25 repo = "metasploit-framework"; 26 26 rev = "refs/tags/${finalAttrs.version}"; 27 - hash = "sha256-Zg6ui9B+l7tVVrv+gMpFL/xWuvdOc0Gf29s1ZvP2EYM="; 27 + hash = "sha256-70uCHjX5g3fEdgZxYn/VKKZn39V+940KIkkDU6mvYVU="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+5 -5
pkgs/tools/security/metasploit/gemset.nix
··· 734 734 platforms = [ ]; 735 735 source = { 736 736 fetchSubmodules = false; 737 - rev = "b815ef9870c45e2f9d2e62475e1780ddb9bfb1d0"; 738 - sha256 = "10qiyvrncdfvvfgl2wsfyyx5dz1g8p581zmvaravp5vys25sw3k6"; 737 + rev = "813c3bea8c3f200422dbaf21ae03229adff424f3"; 738 + sha256 = "0mb1mylm60s94858vxvyspgng9i8smzn4w86fv27g0zr6lg84jzg"; 739 739 type = "git"; 740 740 url = "https://github.com/rapid7/metasploit-framework"; 741 741 }; 742 - version = "6.4.39"; 742 + version = "6.4.41"; 743 743 }; 744 744 metasploit-model = { 745 745 groups = [ "default" ]; ··· 756 756 platforms = [ ]; 757 757 source = { 758 758 remotes = [ "https://rubygems.org" ]; 759 - sha256 = "13cm4pblldz1cl3cmvppkwsbv12b2a4kfl3r3kzfyjwrlhz121wn"; 759 + sha256 = "0nxr3bs30h2dqmjll322zrgcrkam82k7y5s2l5mx2siy4s4xvlbv"; 760 760 type = "gem"; 761 761 }; 762 - version = "2.0.187"; 762 + version = "2.0.189"; 763 763 }; 764 764 metasploit_data_models = { 765 765 groups = [ "default" ];