Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 957aa4d9 1d370645

+648 -200
+2 -2
doc/hooks/tauri.section.md
··· 52 53 buildInputs = 54 [ openssl ] 55 - ++ lib.optionals stdenv.isLinux [ 56 glib-networking # Most Tauri apps need networking 57 libsoup 58 webkitgtk_4_0 59 ] 60 - ++ lib.optionals stdenv.isDarwin ( 61 with darwin.apple_sdk.frameworks; 62 [ 63 AppKit
··· 52 53 buildInputs = 54 [ openssl ] 55 + ++ lib.optionals stdenv.hostPlatform.isLinux [ 56 glib-networking # Most Tauri apps need networking 57 libsoup 58 webkitgtk_4_0 59 ] 60 + ++ lib.optionals stdenv.hostPlatform.isDarwin ( 61 with darwin.apple_sdk.frameworks; 62 [ 63 AppKit
+13 -1
maintainers/maintainer-list.nix
··· 2832 githubId = 24254289; 2833 name = "Payas Relekar"; 2834 }; 2835 bhipple = { 2836 email = "bhipple@protonmail.com"; 2837 github = "bhipple"; ··· 5841 name = "Sebastian Krohn"; 5842 }; 5843 drawbu = { 5844 - email = "clement21.boillot@gmail.com"; 5845 github = "drawbu"; 5846 githubId = 69208565; 5847 name = "Clément Boillot"; ··· 10940 github = "jtcoolen"; 10941 githubId = 54635632; 10942 keys = [ { fingerprint = "4C68 56EE DFDA 20FB 77E8 9169 1964 2151 C218 F6F5"; } ]; 10943 }; 10944 jtobin = { 10945 email = "jared@jtobin.io";
··· 2832 githubId = 24254289; 2833 name = "Payas Relekar"; 2834 }; 2835 + bhasherbel = { 2836 + email = "nixos.maintainer@bhasher.com"; 2837 + github = "bhasherbel"; 2838 + githubId = 45831883; 2839 + name = "Brieuc Dubois"; 2840 + }; 2841 bhipple = { 2842 email = "bhipple@protonmail.com"; 2843 github = "bhipple"; ··· 5847 name = "Sebastian Krohn"; 5848 }; 5849 drawbu = { 5850 + email = "clement2104.boillot@gmail.com"; 5851 github = "drawbu"; 5852 githubId = 69208565; 5853 name = "Clément Boillot"; ··· 10946 github = "jtcoolen"; 10947 githubId = 54635632; 10948 keys = [ { fingerprint = "4C68 56EE DFDA 20FB 77E8 9169 1964 2151 C218 F6F5"; } ]; 10949 + }; 10950 + jthulhu = { 10951 + name = "Adrien Mathieu"; 10952 + email = "adrien.lc.mathieu@gmail.com"; 10953 + github = "jthulhu"; 10954 + githubId = 23179762; 10955 }; 10956 jtobin = { 10957 email = "jared@jtobin.io";
+1 -1
nixos/modules/hardware/graphics.nix
··· 101 assertions = [ 102 { 103 assertion = cfg.enable32Bit -> pkgs.stdenv.hostPlatform.isx86_64; 104 - message = "`hardware.graphics.enable32Bit` only makes sense on a 64-bit system."; 105 } 106 { 107 assertion = cfg.enable32Bit -> (config.boot.kernelPackages.kernel.features.ia32Emulation or false);
··· 101 assertions = [ 102 { 103 assertion = cfg.enable32Bit -> pkgs.stdenv.hostPlatform.isx86_64; 104 + message = "`hardware.graphics.enable32Bit` is only supported on an x86_64 system."; 105 } 106 { 107 assertion = cfg.enable32Bit -> (config.boot.kernelPackages.kernel.features.ia32Emulation or false);
+2 -4
pkgs/applications/version-management/gitoxide/default.nix
··· 4 , cmake 5 , pkg-config 6 , stdenv 7 - , libiconv 8 - , Security 9 - , SystemConfiguration 10 , curl 11 , openssl 12 , buildPackages ··· 33 nativeBuildInputs = [ cmake pkg-config installShellFiles ]; 34 35 buildInputs = [ curl ] ++ (if stdenv.hostPlatform.isDarwin 36 - then [ libiconv Security SystemConfiguration ] 37 else [ openssl ]); 38 39 preFixup = lib.optionalString canRunCmd ''
··· 4 , cmake 5 , pkg-config 6 , stdenv 7 + , apple-sdk_11 8 , curl 9 , openssl 10 , buildPackages ··· 31 nativeBuildInputs = [ cmake pkg-config installShellFiles ]; 32 33 buildInputs = [ curl ] ++ (if stdenv.hostPlatform.isDarwin 34 + then [ apple-sdk_11 ] 35 else [ openssl ]); 36 37 preFixup = lib.optionalString canRunCmd ''
+8 -1
pkgs/applications/window-managers/i3/lock-fancy-rapid.nix
··· 1 - { lib, stdenv, fetchFromGitHub, xorg, i3lock }: 2 3 stdenv.mkDerivation { 4 pname = "i3lock-fancy-rapid"; ··· 33 description = "Faster implementation of i3lock-fancy"; 34 homepage = "https://github.com/yvbbrjdr/i3lock-fancy-rapid"; 35 maintainers = with maintainers; [ nickhu ]; 36 license = licenses.bsd3; 37 platforms = platforms.linux; 38 };
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + xorg, 6 + i3lock, 7 + }: 8 9 stdenv.mkDerivation { 10 pname = "i3lock-fancy-rapid"; ··· 39 description = "Faster implementation of i3lock-fancy"; 40 homepage = "https://github.com/yvbbrjdr/i3lock-fancy-rapid"; 41 maintainers = with maintainers; [ nickhu ]; 42 + mainProgram = "i3lock-fancy-rapid"; 43 license = licenses.bsd3; 44 platforms = platforms.linux; 45 };
+99
pkgs/by-name/br/bruno-cli/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + buildNpmPackage, 5 + bruno, 6 + pkg-config, 7 + pango, 8 + apple-sdk_11, 9 + testers, 10 + bruno-cli, 11 + }: 12 + 13 + let 14 + pname = "bruno-cli"; 15 + in 16 + buildNpmPackage { 17 + inherit pname; 18 + 19 + # since they only make releases and git tags for bruno, 20 + # we lie about bruno-cli's version and say it's the same as bruno's 21 + # to keep them in sync with easier maintenance 22 + inherit (bruno) version src npmDepsHash; 23 + 24 + npmWorkspace = "packages/bruno-cli"; 25 + npmFlags = [ "--legacy-peer-deps" ]; 26 + 27 + nativeBuildInputs = [ 28 + pkg-config 29 + ]; 30 + 31 + buildInputs = 32 + [ 33 + pango 34 + ] 35 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 36 + # fix for: https://github.com/NixOS/nixpkgs/issues/272156 37 + apple-sdk_11 38 + ]; 39 + 40 + ELECTRON_SKIP_BINARY_DOWNLOAD = 1; 41 + 42 + buildPhase = '' 43 + runHook preBuild 44 + 45 + npm run build --workspace=packages/bruno-common 46 + npm run build --workspace=packages/bruno-graphql-docs 47 + npm run build --workspace=packages/bruno-query 48 + 49 + npm run sandbox:bundle-libraries --workspace=packages/bruno-js 50 + 51 + runHook postBuild 52 + ''; 53 + 54 + npmPackFlags = [ "--ignore-scripts" ]; 55 + 56 + postInstall = '' 57 + cp -r packages $out/lib/node_modules/usebruno 58 + 59 + echo "Removing unnecessary files" 60 + pushd $out/lib/node_modules/usebruno 61 + rm -rfv packages/bruno-{app,electron,tests,toml,schema,docs} 62 + rm -rfv packages/*/node_modules/typescript 63 + rm -rfv node_modules/{next,@next,@tabler,pdfjs-dist,*redux*,*babel*,prettier,@types*,*react*,*graphiql*} 64 + for pattern in '*.map' '*.map.js' '*.ts'; do 65 + find . -type f -name "$pattern" -exec rm -v {} + 66 + done 67 + popd 68 + echo "Removed unnecessary files" 69 + ''; 70 + 71 + postFixup = '' 72 + wrapProgram $out/bin/bru \ 73 + --prefix NODE_PATH : $out/lib/node_modules/usebruno/packages/bruno-cli/node_modules \ 74 + --prefix NODE_PATH : $out/lib/node_modules 75 + ''; 76 + 77 + passthru.tests.help = testers.runCommand { 78 + name = "${pname}-help-test"; 79 + nativeBuildInputs = [ bruno-cli ]; 80 + script = '' 81 + bru --help && touch $out 82 + ''; 83 + }; 84 + 85 + meta = { 86 + description = "CLI of the open-source IDE For exploring and testing APIs"; 87 + homepage = "https://www.usebruno.com"; 88 + license = lib.licenses.mit; 89 + mainProgram = "bru"; 90 + maintainers = with lib.maintainers; [ 91 + gepbird 92 + kashw2 93 + lucasew 94 + mattpolzin 95 + water-sucks 96 + ]; 97 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 98 + }; 99 + }
+3 -3
pkgs/by-name/bu/buildkite-agent/package.nix
··· 13 }: 14 buildGoModule rec { 15 pname = "buildkite-agent"; 16 - version = "3.82.1"; 17 18 src = fetchFromGitHub { 19 owner = "buildkite"; 20 repo = "agent"; 21 rev = "v${version}"; 22 - hash = "sha256-xTF8zmpwEFHkLwDYBICXJZ4gjJYpcH5i76kPQM6qt5o="; 23 }; 24 25 - vendorHash = "sha256-xKAQ2yvFYl9ld3H6IGafYgCdA8jn9xig/AAej56ACns="; 26 27 postPatch = '' 28 substituteInPlace clicommand/agent_start.go --replace /bin/bash ${bash}/bin/bash
··· 13 }: 14 buildGoModule rec { 15 pname = "buildkite-agent"; 16 + version = "3.85.1"; 17 18 src = fetchFromGitHub { 19 owner = "buildkite"; 20 repo = "agent"; 21 rev = "v${version}"; 22 + hash = "sha256-aRgjXzwTC1wCWZ7n0MJpNHcHZgvendFPr4vCrBnCJCk="; 23 }; 24 25 + vendorHash = "sha256-UMnDVxZgqI4430IlA8fSygKEOT86RjCwuzGsvkQ8XIo="; 26 27 postPatch = '' 28 substituteInPlace clicommand/agent_start.go --replace /bin/bash ${bash}/bin/bash
+3 -3
pkgs/by-name/de/deno/package.nix
··· 19 in 20 rustPlatform.buildRustPackage rec { 21 pname = "deno"; 22 - version = "2.0.5"; 23 24 src = fetchFromGitHub { 25 owner = "denoland"; 26 repo = "deno"; 27 rev = "refs/tags/v${version}"; 28 - hash = "sha256-JTNLxUT1C9Q8XiP3BYn6NhytbvilQ20DzWwLjNXjlCI="; 29 }; 30 31 - cargoHash = "sha256-EDphp03j6HpTxgBgsaGHuO+hQX57QXkTz6fHN0+or48="; 32 33 postPatch = '' 34 # upstream uses lld on aarch64-darwin for faster builds
··· 19 in 20 rustPlatform.buildRustPackage rec { 21 pname = "deno"; 22 + version = "2.0.6"; 23 24 src = fetchFromGitHub { 25 owner = "denoland"; 26 repo = "deno"; 27 rev = "refs/tags/v${version}"; 28 + hash = "sha256-dJ1SHWPgQtr7BdBW63A+/RocHAx1MRnyeRj1Q/Qmcgk="; 29 }; 30 31 + cargoHash = "sha256-6sAu8RbC6CcPABUZ2KEmcf2bn0UGiWacHJg4Eso+ozo="; 32 33 postPatch = '' 34 # upstream uses lld on aarch64-darwin for faster builds
+2 -2
pkgs/by-name/du/dust/package.nix
··· 1 - { stdenv, lib, fetchFromGitHub, rustPlatform, AppKit, installShellFiles }: 2 3 rustPlatform.buildRustPackage rec { 4 # Originally, this package was under the attribute `du-dust`, since `dust` was taken. ··· 23 24 nativeBuildInputs = [ installShellFiles ]; 25 26 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ AppKit ]; 27 28 doCheck = false; 29
··· 1 + { stdenv, lib, fetchFromGitHub, rustPlatform, apple-sdk_11, installShellFiles }: 2 3 rustPlatform.buildRustPackage rec { 4 # Originally, this package was under the attribute `du-dust`, since `dust` was taken. ··· 23 24 nativeBuildInputs = [ installShellFiles ]; 25 26 + buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 27 28 doCheck = false; 29
+28
pkgs/by-name/hy/hyprsome/package.nix
···
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + }: 6 + 7 + rustPlatform.buildRustPackage { 8 + pname = "hyprsome"; 9 + version = "0.1.12-unstable-2024-05-20"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "sopa0"; 13 + repo = "hyprsome"; 14 + rev = "985e1a3b03b5118c98c03983f60ea9f74775858c"; 15 + hash = "sha256-JiOV9c23yOhaVW2NHgs8rjM8l9qt181Tigf5sCnPep8="; 16 + }; 17 + 18 + cargoHash = "sha256-Jqx77/PDWEJ+NPJN2R6n4w9nVPXQoHeuVfYKUB3i9Lg="; 19 + 20 + meta = { 21 + description = "Awesome-like workspaces for Hyprland"; 22 + homepage = "https://github.com/sopa0/hyprsome"; 23 + license = lib.licenses.gpl3Only; 24 + maintainers = with lib.maintainers; [ bhasherbel ]; 25 + platforms = lib.platforms.linux; 26 + mainProgram = "hyprsome"; 27 + }; 28 + }
+1 -1
pkgs/by-name/le/lean4/package.nix
··· 63 changelog = "https://github.com/leanprover/lean4/blob/${finalAttrs.src.rev}/RELEASES.md"; 64 license = licenses.asl20; 65 platforms = platforms.all; 66 - maintainers = with maintainers; [ danielbritten ]; 67 mainProgram = "lean"; 68 }; 69 })
··· 63 changelog = "https://github.com/leanprover/lean4/blob/${finalAttrs.src.rev}/RELEASES.md"; 64 license = licenses.asl20; 65 platforms = platforms.all; 66 + maintainers = with maintainers; [ danielbritten jthulhu ]; 67 mainProgram = "lean"; 68 }; 69 })
+9 -6
pkgs/by-name/lo/localsend/package.nix
··· 15 16 let 17 pname = "localsend"; 18 - version = "1.15.4"; 19 20 linux = flutter324.buildFlutterApplication rec { 21 - inherit pname; 22 - version = "1.15.4-unstable-2024-10-26"; 23 24 src = fetchFromGitHub { 25 owner = pname; 26 repo = pname; 27 - rev = "d0e864ddf6ebe1c55188b33f8fdccd534d203c75"; 28 - hash = "sha256-qaW9LoRQge4K/CAQwbjNxmlUkQmxvaZyBJdAjXbbTw4="; 29 }; 30 31 sourceRoot = "${src.name}/app"; ··· 50 mkdir -p $d 51 cp ./assets/img/logo-''${s}.png $d/localsend.png 52 done 53 ''; 54 55 desktopItems = [ ··· 79 80 src = fetchurl { 81 url = "https://github.com/localsend/localsend/releases/download/v${version}/LocalSend-${version}.dmg"; 82 - hash = "sha256-ZU2aXZNKo01TnXNH0e+r0l4J5HIILmGam3T4+6GaeA4="; 83 }; 84 85 nativeBuildInputs = [
··· 15 16 let 17 pname = "localsend"; 18 + version = "1.16.1"; 19 20 linux = flutter324.buildFlutterApplication rec { 21 + inherit pname version; 22 23 src = fetchFromGitHub { 24 owner = pname; 25 repo = pname; 26 + rev = "v${version}"; 27 + hash = "sha256-9nW1cynvRgX565ZupR+ogfDH9Qem+LQH4XZupVsrEWo="; 28 }; 29 30 sourceRoot = "${src.name}/app"; ··· 49 mkdir -p $d 50 cp ./assets/img/logo-''${s}.png $d/localsend.png 51 done 52 + ''; 53 + 54 + extraWrapProgramArgs = '' 55 + --prefix LD_LIBRARY_PATH : "$out/app/${pname}/lib" 56 ''; 57 58 desktopItems = [ ··· 82 83 src = fetchurl { 84 url = "https://github.com/localsend/localsend/releases/download/v${version}/LocalSend-${version}.dmg"; 85 + hash = "sha256-kgq3AoypDdRwk9bKa1zjUJo4tHHUbDZIg0G0Rk9S3n4="; 86 }; 87 88 nativeBuildInputs = [
+285 -155
pkgs/by-name/lo/localsend/pubspec.lock.json
··· 30 "dependency": "transitive", 31 "description": { 32 "name": "animated_vector", 33 - "sha256": "e15c6596549ca6e2e7491c11fbe168a1dead87475a828a4bc81cf104feca0432", 34 "url": "https://pub.dev" 35 }, 36 "source": "hosted", 37 - "version": "0.2.0" 38 }, 39 "animated_vector_annotations": { 40 "dependency": "transitive", 41 "description": { 42 "name": "animated_vector_annotations", 43 - "sha256": "baa6b4ed98407220f2c9634f7da3cfa5eedb46798e090466f441e666e2f7c8c0", 44 "url": "https://pub.dev" 45 }, 46 "source": "hosted", 47 - "version": "0.2.0" 48 }, 49 "ansicolor": { 50 "dependency": "transitive", ··· 70 "dependency": "transitive", 71 "description": { 72 "name": "args", 73 - "sha256": "7cf60b9f0cc88203c5a190b4cd62a99feea42759a7fa695010eb5de1c0b2252a", 74 "url": "https://pub.dev" 75 }, 76 "source": "hosted", 77 - "version": "2.5.0" 78 }, 79 "async": { 80 "dependency": "transitive", ··· 116 "source": "hosted", 117 "version": "2.4.1" 118 }, 119 "build_config": { 120 "dependency": "transitive", 121 "description": { ··· 220 "dependency": "transitive", 221 "description": { 222 "name": "code_builder", 223 - "sha256": "f692079e25e7869c14132d39f223f8eec9830eb76131925143b2129c4bb01b37", 224 "url": "https://pub.dev" 225 }, 226 "source": "hosted", 227 - "version": "4.10.0" 228 }, 229 "collection": { 230 "dependency": "direct main", ··· 259 "dependency": "direct main", 260 "description": { 261 "name": "connectivity_plus", 262 - "sha256": "2056db5241f96cdc0126bd94459fc4cdc13876753768fc7a31c425e50a7177d0", 263 "url": "https://pub.dev" 264 }, 265 "source": "hosted", 266 - "version": "6.0.5" 267 }, 268 "connectivity_plus_platform_interface": { 269 "dependency": "transitive", ··· 279 "dependency": "transitive", 280 "description": { 281 "name": "convert", 282 - "sha256": "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592", 283 "url": "https://pub.dev" 284 }, 285 "source": "hosted", 286 - "version": "3.1.1" 287 }, 288 "coverage": { 289 "dependency": "transitive", 290 "description": { 291 "name": "coverage", 292 - "sha256": "c1fb2dce3c0085f39dc72668e85f8e0210ec7de05345821ff58530567df345a5", 293 "url": "https://pub.dev" 294 }, 295 "source": "hosted", 296 - "version": "1.9.2" 297 }, 298 "cross_file": { 299 "dependency": "transitive", ··· 309 "dependency": "transitive", 310 "description": { 311 "name": "crypto", 312 - "sha256": "ec30d999af904f33454ba22ed9a86162b35e52b44ac4807d1d93c288041d7d27", 313 "url": "https://pub.dev" 314 }, 315 "source": "hosted", 316 - "version": "3.0.5" 317 }, 318 "csslib": { 319 "dependency": "transitive", 320 "description": { 321 "name": "csslib", 322 - "sha256": "706b5707578e0c1b4b7550f64078f0a0f19dec3f50a178ffae7006b0a9ca58fb", 323 "url": "https://pub.dev" 324 }, 325 "source": "hosted", 326 - "version": "1.0.0" 327 }, 328 "csv": { 329 "dependency": "transitive", ··· 339 "dependency": "direct main", 340 "description": { 341 "name": "dart_mappable", 342 - "sha256": "47269caf2060533c29b823ff7fa9706502355ffcb61e7f2a374e3a0fb2f2c3f0", 343 "url": "https://pub.dev" 344 }, 345 "source": "hosted", 346 - "version": "4.2.2" 347 }, 348 "dart_mappable_builder": { 349 "dependency": "direct dev", 350 "description": { 351 "name": "dart_mappable_builder", 352 - "sha256": "ab5cf9086862d3fceb9773e945b5f95cc5471a28c782a4fc451bd400a4e0c64e", 353 "url": "https://pub.dev" 354 }, 355 "source": "hosted", 356 - "version": "4.2.3" 357 }, 358 "dart_style": { 359 "dependency": "transitive", ··· 409 "dependency": "direct main", 410 "description": { 411 "name": "device_info_plus", 412 - "sha256": "a7fd703482b391a87d60b6061d04dfdeab07826b96f9abd8f5ed98068acc0074", 413 "url": "https://pub.dev" 414 }, 415 "source": "hosted", 416 - "version": "10.1.2" 417 }, 418 "device_info_plus_platform_interface": { 419 "dependency": "transitive", ··· 425 "source": "hosted", 426 "version": "7.0.1" 427 }, 428 - "dio": { 429 - "dependency": "direct main", 430 - "description": { 431 - "name": "dio", 432 - "sha256": "5598aa796bbf4699afd5c67c0f5f6e2ed542afc956884b9cd58c306966efc260", 433 - "url": "https://pub.dev" 434 - }, 435 - "source": "hosted", 436 - "version": "5.7.0" 437 - }, 438 - "dio_web_adapter": { 439 - "dependency": "transitive", 440 - "description": { 441 - "name": "dio_web_adapter", 442 - "sha256": "33259a9276d6cea88774a0000cfae0d861003497755969c92faa223108620dc8", 443 - "url": "https://pub.dev" 444 - }, 445 - "source": "hosted", 446 - "version": "2.0.0" 447 - }, 448 "dynamic_color": { 449 "dependency": "direct main", 450 "description": { ··· 499 "dependency": "transitive", 500 "description": { 501 "name": "file", 502 - "sha256": "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c", 503 "url": "https://pub.dev" 504 }, 505 "source": "hosted", 506 - "version": "7.0.0" 507 }, 508 "file_picker": { 509 "dependency": "direct main", 510 "description": { 511 "name": "file_picker", 512 - "sha256": "167bb619cdddaa10ef2907609feb8a79c16dfa479d3afaf960f8e223f754bf12", 513 "url": "https://pub.dev" 514 }, 515 "source": "hosted", 516 - "version": "8.1.2" 517 }, 518 "file_selector": { 519 "dependency": "direct main", ··· 529 "dependency": "transitive", 530 "description": { 531 "name": "file_selector_android", 532 - "sha256": "00aafa9ae05a8663d0b4f17abd2a02316911ca0f46f9b9dacb9578b324d99590", 533 "url": "https://pub.dev" 534 }, 535 "source": "hosted", 536 - "version": "0.5.1+9" 537 }, 538 "file_selector_ios": { 539 "dependency": "transitive", ··· 599 "dependency": "transitive", 600 "description": { 601 "name": "fixnum", 602 - "sha256": "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1", 603 "url": "https://pub.dev" 604 }, 605 "source": "hosted", 606 - "version": "1.1.0" 607 }, 608 "flutter": { 609 "dependency": "direct main", ··· 625 "dependency": "transitive", 626 "description": { 627 "name": "flutter_gen_core", 628 - "sha256": "638d518897f1aefc55a24278968027591d50223a6943b6ae9aa576fe1494d99d", 629 "url": "https://pub.dev" 630 }, 631 "source": "hosted", 632 - "version": "5.7.0" 633 }, 634 "flutter_gen_runner": { 635 "dependency": "direct dev", 636 "description": { 637 "name": "flutter_gen_runner", 638 - "sha256": "7f2f02d95e3ec96cf70a1c515700c0dd3ea905af003303a55d6fb081240e6b8a", 639 "url": "https://pub.dev" 640 }, 641 "source": "hosted", 642 - "version": "5.7.0" 643 }, 644 "flutter_lints": { 645 "dependency": "direct dev", 646 "description": { 647 "name": "flutter_lints", 648 - "sha256": "3f41d009ba7172d5ff9be5f6e6e6abb4300e263aab8866d2a0842ed2a70f8f0c", 649 "url": "https://pub.dev" 650 }, 651 "source": "hosted", 652 - "version": "4.0.0" 653 }, 654 "flutter_localizations": { 655 "dependency": "direct main", ··· 661 "dependency": "direct main", 662 "description": { 663 "name": "flutter_markdown", 664 - "sha256": "a23c41ee57573e62fc2190a1f36a0480c4d90bde3a8a8d7126e5d5992fb53fb7", 665 "url": "https://pub.dev" 666 }, 667 "source": "hosted", 668 - "version": "0.7.3+1" 669 }, 670 "flutter_plugin_android_lifecycle": { 671 "dependency": "transitive", ··· 677 "source": "hosted", 678 "version": "2.0.23" 679 }, 680 "flutter_test": { 681 "dependency": "transitive", 682 "description": "flutter", ··· 689 "source": "sdk", 690 "version": "0.0.0" 691 }, 692 "frontend_server_client": { 693 "dependency": "transitive", 694 "description": { ··· 763 "dependency": "transitive", 764 "description": { 765 "name": "html", 766 - "sha256": "3a7812d5bcd2894edf53dfaf8cd640876cf6cef50a8f238745c8b8120ea74d3a", 767 "url": "https://pub.dev" 768 }, 769 "source": "hosted", 770 - "version": "0.15.4" 771 }, 772 "http": { 773 "dependency": "transitive", ··· 813 "dependency": "transitive", 814 "description": { 815 "name": "image", 816 - "sha256": "2237616a36c0d69aef7549ab439b833fb7f9fb9fc861af2cc9ac3eedddd69ca8", 817 "url": "https://pub.dev" 818 }, 819 "source": "hosted", 820 - "version": "4.2.0" 821 }, 822 "image_picker": { 823 "dependency": "direct main", ··· 833 "dependency": "transitive", 834 "description": { 835 "name": "image_picker_android", 836 - "sha256": "d3e5e00fdfeca8fd4ffb3227001264d449cc8950414c2ff70b0e06b9c628e643", 837 "url": "https://pub.dev" 838 }, 839 "source": "hosted", 840 - "version": "0.8.12+15" 841 }, 842 "image_picker_for_web": { 843 "dependency": "transitive", 844 "description": { 845 "name": "image_picker_for_web", 846 - "sha256": "65d94623e15372c5c51bebbcb820848d7bcb323836e12dfdba60b5d3a8b39e50", 847 "url": "https://pub.dev" 848 }, 849 "source": "hosted", 850 - "version": "3.0.5" 851 }, 852 "image_picker_ios": { 853 "dependency": "transitive", 854 "description": { 855 "name": "image_picker_ios", 856 - "sha256": "6703696ad49f5c3c8356d576d7ace84d1faf459afb07accbb0fae780753ff447", 857 "url": "https://pub.dev" 858 }, 859 "source": "hosted", 860 - "version": "0.8.12" 861 }, 862 "image_picker_linux": { 863 "dependency": "transitive", ··· 923 "dependency": "transitive", 924 "description": { 925 "name": "in_app_purchase_android", 926 - "sha256": "bee60266e443d4ae0e4809bae7f9cd4d6be75ab5ec6bb3d2ca737774a274a3bd", 927 "url": "https://pub.dev" 928 }, 929 "source": "hosted", 930 - "version": "0.3.6+9" 931 }, 932 "in_app_purchase_platform_interface": { 933 "dependency": "transitive", ··· 943 "dependency": "transitive", 944 "description": { 945 "name": "in_app_purchase_storekit", 946 - "sha256": "e9a408da11d055f9af9849859e1251b2b0a2f84f256fa3bf1285c5614a397079", 947 "url": "https://pub.dev" 948 }, 949 "source": "hosted", 950 - "version": "0.3.18+1" 951 }, 952 "intl": { 953 "dependency": "direct main", ··· 1043 "dependency": "transitive", 1044 "description": { 1045 "name": "lints", 1046 - "sha256": "976c774dd944a42e83e2467f4cc670daef7eed6295b10b36ae8c85bcbf828235", 1047 "url": "https://pub.dev" 1048 }, 1049 "source": "hosted", 1050 - "version": "4.0.0" 1051 }, 1052 "logging": { 1053 "dependency": "direct main", 1054 "description": { 1055 "name": "logging", 1056 - "sha256": "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340", 1057 "url": "https://pub.dev" 1058 }, 1059 "source": "hosted", 1060 - "version": "1.2.0" 1061 }, 1062 "macros": { 1063 "dependency": "transitive", ··· 1099 "source": "hosted", 1100 "version": "0.11.1" 1101 }, 1102 "menu_base": { 1103 "dependency": "transitive", 1104 "description": { ··· 1163 "dependency": "direct main", 1164 "description": { 1165 "name": "network_info_plus", 1166 - "sha256": "6a31fa47c1f6e240f1b60de0a57d65a092ac1af7515247660f03643576984eb8", 1167 "url": "https://pub.dev" 1168 }, 1169 "source": "hosted", 1170 - "version": "6.0.1" 1171 }, 1172 "network_info_plus_platform_interface": { 1173 "dependency": "transitive", ··· 1199 "source": "hosted", 1200 "version": "2.0.2" 1201 }, 1202 "open_filex": { 1203 "dependency": "direct main", 1204 "description": { ··· 1223 "dependency": "direct main", 1224 "description": { 1225 "name": "package_info_plus", 1226 - "sha256": "a75164ade98cb7d24cfd0a13c6408927c6b217fa60dee5a7ff5c116a58f28918", 1227 "url": "https://pub.dev" 1228 }, 1229 "source": "hosted", 1230 - "version": "8.0.2" 1231 }, 1232 "package_info_plus_platform_interface": { 1233 "dependency": "transitive", ··· 1264 "dependency": "transitive", 1265 "description": { 1266 "name": "path_parsing", 1267 - "sha256": "e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf", 1268 "url": "https://pub.dev" 1269 }, 1270 "source": "hosted", 1271 - "version": "1.0.1" 1272 }, 1273 "path_provider": { 1274 "dependency": "direct main", 1275 "description": { 1276 "name": "path_provider", 1277 - "sha256": "fec0d61223fba3154d87759e3cc27fe2c8dc498f6386c6d6fc80d1afdd1bf378", 1278 "url": "https://pub.dev" 1279 }, 1280 "source": "hosted", 1281 - "version": "2.1.4" 1282 }, 1283 "path_provider_android": { 1284 "dependency": "transitive", ··· 1344 "dependency": "transitive", 1345 "description": { 1346 "name": "permission_handler_android", 1347 - "sha256": "76e4ab092c1b240d31177bb64d2b0bea43f43d0e23541ec866151b9f7b2490fa", 1348 "url": "https://pub.dev" 1349 }, 1350 "source": "hosted", 1351 - "version": "12.0.12" 1352 }, 1353 "permission_handler_apple": { 1354 "dependency": "transitive", ··· 1405 "dependency": "transitive", 1406 "description": { 1407 "name": "photo_manager", 1408 - "sha256": "32a1ce1095aeaaa792a29f28c1f74613aa75109f21c2d4ab85be3ad9964230a4", 1409 "url": "https://pub.dev" 1410 }, 1411 "source": "hosted", 1412 - "version": "3.5.0" 1413 }, 1414 "photo_manager_image_provider": { 1415 "dependency": "transitive", 1416 "description": { 1417 "name": "photo_manager_image_provider", 1418 - "sha256": "b0a6d59f34e48c2b9aa52a4a655308c29b0fc4b3931607f9e0e252bc49aef974", 1419 "url": "https://pub.dev" 1420 }, 1421 "source": "hosted", 1422 - "version": "2.1.2" 1423 }, 1424 "platform": { 1425 "dependency": "transitive", 1426 "description": { 1427 "name": "platform", 1428 - "sha256": "9b71283fc13df574056616011fb138fd3b793ea47cc509c189a6c3fa5f8a1a65", 1429 "url": "https://pub.dev" 1430 }, 1431 "source": "hosted", 1432 - "version": "3.1.5" 1433 }, 1434 "platform_linux": { 1435 "dependency": "transitive", ··· 1545 "dependency": "direct dev", 1546 "description": { 1547 "name": "refena_inspector", 1548 - "sha256": "c682581e2c2e8f641f5366cd079c0db1cab33a58ec160464d03d02019e92acd2", 1549 "url": "https://pub.dev" 1550 }, 1551 "source": "hosted", 1552 - "version": "2.0.0" 1553 }, 1554 "refena_inspector_client": { 1555 "dependency": "direct main", 1556 "description": { 1557 "name": "refena_inspector_client", 1558 - "sha256": "f211414cd0c45a18fa482b8fbc0d8ee3b0383cda2979f127320134c4ffa8cafb", 1559 "url": "https://pub.dev" 1560 }, 1561 "source": "hosted", 1562 - "version": "2.0.0" 1563 }, 1564 "routerino": { 1565 "dependency": "direct main", ··· 1575 "dependency": "direct main", 1576 "description": { 1577 "name": "saf_stream", 1578 - "sha256": "f3ece997ab9202192be0e4b55bfc95a744fb67be9cdf1c72650c60613befd63c", 1579 "url": "https://pub.dev" 1580 }, 1581 "source": "hosted", 1582 - "version": "0.7.5" 1583 }, 1584 "screen_retriever": { 1585 "dependency": "direct main", 1586 "description": { 1587 "name": "screen_retriever", 1588 - "sha256": "6ee02c8a1158e6dae7ca430da79436e3b1c9563c8cf02f524af997c201ac2b90", 1589 "url": "https://pub.dev" 1590 }, 1591 "source": "hosted", 1592 - "version": "0.1.9" 1593 }, 1594 "share_handler": { 1595 "dependency": "direct main", 1596 "description": { 1597 "name": "share_handler", 1598 - "sha256": "2350c7f22579cb753323c533fde05c48e42ec717f76c7090dacd7a9eb0ec68b0", 1599 "url": "https://pub.dev" 1600 }, 1601 "source": "hosted", 1602 - "version": "0.0.19" 1603 }, 1604 "share_handler_android": { 1605 "dependency": "transitive", ··· 1612 "version": "0.0.9" 1613 }, 1614 "share_handler_ios": { 1615 - "dependency": "direct main", 1616 "description": { 1617 "name": "share_handler_ios", 1618 - "sha256": "522e5284ef186e83c34acea16fd65469db56a78a4c932c95e71a5be8a0e02d51", 1619 "url": "https://pub.dev" 1620 }, 1621 "source": "hosted", 1622 - "version": "0.0.12" 1623 }, 1624 "share_handler_platform_interface": { 1625 "dependency": "transitive", ··· 1745 "dependency": "transitive", 1746 "description": { 1747 "name": "shelf_web_socket", 1748 - "sha256": "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1", 1749 "url": "https://pub.dev" 1750 }, 1751 "source": "hosted", 1752 - "version": "1.0.4" 1753 }, 1754 "shortid": { 1755 "dependency": "transitive", ··· 1771 "dependency": "direct main", 1772 "description": { 1773 "name": "slang", 1774 - "sha256": "a2f704508bf9f209b71c881347bd27de45309651e9bd63570e4dd6ed2a77fbd2", 1775 "url": "https://pub.dev" 1776 }, 1777 "source": "hosted", 1778 - "version": "3.31.2" 1779 }, 1780 "slang_build_runner": { 1781 "dependency": "direct dev", 1782 "description": { 1783 "name": "slang_build_runner", 1784 - "sha256": "6e60160e8000b91824c47221b20d9642e7408287a5a21837ecefc75270197586", 1785 "url": "https://pub.dev" 1786 }, 1787 "source": "hosted", 1788 - "version": "3.31.0" 1789 }, 1790 "slang_flutter": { 1791 "dependency": "direct main", 1792 "description": { 1793 "name": "slang_flutter", 1794 - "sha256": "f8400292be49c11697d94af58d7f7d054c91af759f41ffe71e4e5413871ffc62", 1795 "url": "https://pub.dev" 1796 }, 1797 "source": "hosted", 1798 - "version": "3.31.0" 1799 - }, 1800 - "slang_gpt": { 1801 - "dependency": "direct dev", 1802 - "description": { 1803 - "name": "slang_gpt", 1804 - "sha256": "98e6f32f518c038c18fdd6b53923966a97f3a358487bfbe1a6dead4e8c1a3a39", 1805 - "url": "https://pub.dev" 1806 - }, 1807 - "source": "hosted", 1808 - "version": "0.10.3" 1809 }, 1810 "source_gen": { 1811 "dependency": "transitive", ··· 1971 "dependency": "direct main", 1972 "description": { 1973 "name": "tray_manager", 1974 - "sha256": "c9a63fd88bd3546287a7eb8ccc978d707eef82c775397af17dda3a4f4c039e64", 1975 "url": "https://pub.dev" 1976 }, 1977 "source": "hosted", 1978 - "version": "0.2.3" 1979 }, 1980 "type_plus": { 1981 "dependency": "transitive", ··· 1991 "dependency": "transitive", 1992 "description": { 1993 "name": "typed_data", 1994 - "sha256": "facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c", 1995 "url": "https://pub.dev" 1996 }, 1997 "source": "hosted", 1998 - "version": "1.3.2" 1999 }, 2000 "uri_content": { 2001 "dependency": "direct main", ··· 2011 "dependency": "direct main", 2012 "description": { 2013 "name": "url_launcher", 2014 - "sha256": "21b704ce5fa560ea9f3b525b43601c678728ba46725bab9b01187b4831377ed3", 2015 "url": "https://pub.dev" 2016 }, 2017 "source": "hosted", 2018 - "version": "6.3.0" 2019 }, 2020 "url_launcher_android": { 2021 "dependency": "transitive", 2022 "description": { 2023 "name": "url_launcher_android", 2024 - "sha256": "8fc3bae0b68c02c47c5c86fa8bfa74471d42687b0eded01b78de87872db745e2", 2025 "url": "https://pub.dev" 2026 }, 2027 "source": "hosted", 2028 - "version": "6.3.12" 2029 }, 2030 "url_launcher_ios": { 2031 "dependency": "transitive", ··· 2081 "dependency": "transitive", 2082 "description": { 2083 "name": "url_launcher_windows", 2084 - "sha256": "49c10f879746271804767cb45551ec5592cdab00ee105c06dddde1a98f73b185", 2085 "url": "https://pub.dev" 2086 }, 2087 "source": "hosted", 2088 - "version": "3.1.2" 2089 }, 2090 "uuid": { 2091 "dependency": "direct main", 2092 "description": { 2093 "name": "uuid", 2094 - "sha256": "f33d6bb662f0e4f79dcd7ada2e6170f3b3a2530c28fc41f49a411ddedd576a77", 2095 "url": "https://pub.dev" 2096 }, 2097 "source": "hosted", 2098 - "version": "4.5.0" 2099 }, 2100 "vector_graphics_codec": { 2101 "dependency": "transitive", 2102 "description": { 2103 "name": "vector_graphics_codec", 2104 - "sha256": "c86987475f162fadff579e7320c7ddda04cd2fdeffbe1129227a85d9ac9e03da", 2105 "url": "https://pub.dev" 2106 }, 2107 "source": "hosted", 2108 - "version": "1.1.11+1" 2109 }, 2110 "vector_graphics_compiler": { 2111 "dependency": "transitive", 2112 "description": { 2113 "name": "vector_graphics_compiler", 2114 - "sha256": "12faff3f73b1741a36ca7e31b292ddeb629af819ca9efe9953b70bd63fc8cd81", 2115 "url": "https://pub.dev" 2116 }, 2117 "source": "hosted", 2118 - "version": "1.1.11+1" 2119 }, 2120 "vector_math": { 2121 "dependency": "transitive", ··· 2141 "dependency": "transitive", 2142 "description": { 2143 "name": "video_player_android", 2144 - "sha256": "ae5287ca367e206eb74d7b3dc1ce0b8912ab9a3fc0597b6a101a0a5239f229d3", 2145 "url": "https://pub.dev" 2146 }, 2147 "source": "hosted", 2148 - "version": "2.7.9" 2149 }, 2150 "video_player_avfoundation": { 2151 "dependency": "transitive", ··· 2171 "dependency": "transitive", 2172 "description": { 2173 "name": "video_player_web", 2174 - "sha256": "6dcdd298136523eaf7dfc31abaf0dfba9aa8a8dbc96670e87e9d42b6f2caf774", 2175 "url": "https://pub.dev" 2176 }, 2177 "source": "hosted", 2178 - "version": "2.3.2" 2179 }, 2180 "visibility_detector": { 2181 "dependency": "transitive", ··· 2237 "source": "hosted", 2238 "version": "1.1.0" 2239 }, 2240 "web_socket_channel": { 2241 "dependency": "transitive", 2242 "description": { 2243 "name": "web_socket_channel", 2244 - "sha256": "d88238e5eac9a42bb43ca4e721edba3c08c6354d4a53063afaa568516217621b", 2245 "url": "https://pub.dev" 2246 }, 2247 "source": "hosted", 2248 - "version": "2.4.0" 2249 }, 2250 "webkit_inspection_protocol": { 2251 "dependency": "transitive", ··· 2261 "dependency": "direct main", 2262 "description": { 2263 "name": "wechat_assets_picker", 2264 - "sha256": "e97f0402c5cd5fc75c90f3395874f8c94a60a59e4f206ad5d3f005d48d54e976", 2265 "url": "https://pub.dev" 2266 }, 2267 "source": "hosted", 2268 - "version": "9.3.0" 2269 }, 2270 "wechat_picker_library": { 2271 "dependency": "transitive", ··· 2281 "dependency": "transitive", 2282 "description": { 2283 "name": "win32", 2284 - "sha256": "4d45dc9069dba4619dc0ebd93c7cec5e66d8482cb625a370ac806dcc8165f2ec", 2285 "url": "https://pub.dev" 2286 }, 2287 "source": "hosted", 2288 - "version": "5.5.5" 2289 }, 2290 "win32_registry": { 2291 "dependency": "direct main", ··· 2301 "dependency": "direct main", 2302 "description": { 2303 "name": "window_manager", 2304 - "sha256": "ab8b2a7f97543d3db2b506c9d875e637149d48ee0c6a5cb5f5fd6e0dac463792", 2305 "url": "https://pub.dev" 2306 }, 2307 "source": "hosted", 2308 - "version": "0.4.2" 2309 }, 2310 "windows_taskbar": { 2311 "dependency": "direct main", ··· 2351 "dependency": "direct main", 2352 "description": { 2353 "name": "yaru", 2354 - "sha256": "9e07131b9c3b9997d7784c3cb6ad24a218f8e0507d82f8fb07b7e160e111236d", 2355 "url": "https://pub.dev" 2356 }, 2357 "source": "hosted", 2358 - "version": "5.2.1" 2359 }, 2360 "yaru_window": { 2361 "dependency": "transitive",
··· 30 "dependency": "transitive", 31 "description": { 32 "name": "animated_vector", 33 + "sha256": "f1beb10e6fcfd8bd15abb788e20345def786d1c7391d7c1426bb2a1f2adf2132", 34 "url": "https://pub.dev" 35 }, 36 "source": "hosted", 37 + "version": "0.2.2" 38 }, 39 "animated_vector_annotations": { 40 "dependency": "transitive", 41 "description": { 42 "name": "animated_vector_annotations", 43 + "sha256": "07c1ea603a2096f7eb6f1c2b8f16c3c330c680843ea78b7782a3217c3c53f979", 44 "url": "https://pub.dev" 45 }, 46 "source": "hosted", 47 + "version": "0.2.2" 48 }, 49 "ansicolor": { 50 "dependency": "transitive", ··· 70 "dependency": "transitive", 71 "description": { 72 "name": "args", 73 + "sha256": "bf9f5caeea8d8fe6721a9c358dd8a5c1947b27f1cfaa18b39c301273594919e6", 74 "url": "https://pub.dev" 75 }, 76 "source": "hosted", 77 + "version": "2.6.0" 78 + }, 79 + "assorted_layout_widgets": { 80 + "dependency": "transitive", 81 + "description": { 82 + "name": "assorted_layout_widgets", 83 + "sha256": "5b7f7c76a1a4c7cf95edfb854c3ed09ce9cb7f25a372f2d9a8d4c1569d42ecfb", 84 + "url": "https://pub.dev" 85 + }, 86 + "source": "hosted", 87 + "version": "9.0.2" 88 }, 89 "async": { 90 "dependency": "transitive", ··· 126 "source": "hosted", 127 "version": "2.4.1" 128 }, 129 + "build_cli_annotations": { 130 + "dependency": "transitive", 131 + "description": { 132 + "name": "build_cli_annotations", 133 + "sha256": "b59d2769769efd6c9ff6d4c4cede0be115a566afc591705c2040b707534b1172", 134 + "url": "https://pub.dev" 135 + }, 136 + "source": "hosted", 137 + "version": "2.1.0" 138 + }, 139 "build_config": { 140 "dependency": "transitive", 141 "description": { ··· 240 "dependency": "transitive", 241 "description": { 242 "name": "code_builder", 243 + "sha256": "0ec10bf4a89e4c613960bf1e8b42c64127021740fb21640c29c909826a5eea3e", 244 "url": "https://pub.dev" 245 }, 246 "source": "hosted", 247 + "version": "4.10.1" 248 }, 249 "collection": { 250 "dependency": "direct main", ··· 279 "dependency": "direct main", 280 "description": { 281 "name": "connectivity_plus", 282 + "sha256": "876849631b0c7dc20f8b471a2a03142841b482438e3b707955464f5ffca3e4c3", 283 "url": "https://pub.dev" 284 }, 285 "source": "hosted", 286 + "version": "6.1.0" 287 }, 288 "connectivity_plus_platform_interface": { 289 "dependency": "transitive", ··· 299 "dependency": "transitive", 300 "description": { 301 "name": "convert", 302 + "sha256": "b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68", 303 "url": "https://pub.dev" 304 }, 305 "source": "hosted", 306 + "version": "3.1.2" 307 }, 308 "coverage": { 309 "dependency": "transitive", 310 "description": { 311 "name": "coverage", 312 + "sha256": "88b0fddbe4c92910fefc09cc0248f5e7f0cd23e450ded4c28f16ab8ee8f83268", 313 "url": "https://pub.dev" 314 }, 315 "source": "hosted", 316 + "version": "1.10.0" 317 }, 318 "cross_file": { 319 "dependency": "transitive", ··· 329 "dependency": "transitive", 330 "description": { 331 "name": "crypto", 332 + "sha256": "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855", 333 "url": "https://pub.dev" 334 }, 335 "source": "hosted", 336 + "version": "3.0.6" 337 }, 338 "csslib": { 339 "dependency": "transitive", 340 "description": { 341 "name": "csslib", 342 + "sha256": "09bad715f418841f976c77db72d5398dc1253c21fb9c0c7f0b0b985860b2d58e", 343 "url": "https://pub.dev" 344 }, 345 "source": "hosted", 346 + "version": "1.0.2" 347 }, 348 "csv": { 349 "dependency": "transitive", ··· 359 "dependency": "direct main", 360 "description": { 361 "name": "dart_mappable", 362 + "sha256": "f69a961ae8589724ebb542e588f228ae844c5f78028899cbe2cc718977c1b382", 363 "url": "https://pub.dev" 364 }, 365 "source": "hosted", 366 + "version": "4.3.0" 367 }, 368 "dart_mappable_builder": { 369 "dependency": "direct dev", 370 "description": { 371 "name": "dart_mappable_builder", 372 + "sha256": "04a6e7117382f8a8689b3e363bee6c3de8c9ea4332e664148fe01bd576eb1126", 373 "url": "https://pub.dev" 374 }, 375 "source": "hosted", 376 + "version": "4.3.0" 377 }, 378 "dart_style": { 379 "dependency": "transitive", ··· 429 "dependency": "direct main", 430 "description": { 431 "name": "device_info_plus", 432 + "sha256": "c4af09051b4f0508f6c1dc0a5c085bf014d5c9a4a0678ce1799c2b4d716387a0", 433 "url": "https://pub.dev" 434 }, 435 "source": "hosted", 436 + "version": "11.1.0" 437 }, 438 "device_info_plus_platform_interface": { 439 "dependency": "transitive", ··· 445 "source": "hosted", 446 "version": "7.0.1" 447 }, 448 "dynamic_color": { 449 "dependency": "direct main", 450 "description": { ··· 499 "dependency": "transitive", 500 "description": { 501 "name": "file", 502 + "sha256": "a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4", 503 "url": "https://pub.dev" 504 }, 505 "source": "hosted", 506 + "version": "7.0.1" 507 }, 508 "file_picker": { 509 "dependency": "direct main", 510 "description": { 511 "name": "file_picker", 512 + "sha256": "aac85f20436608e01a6ffd1fdd4e746a7f33c93a2c83752e626bdfaea139b877", 513 "url": "https://pub.dev" 514 }, 515 "source": "hosted", 516 + "version": "8.1.3" 517 }, 518 "file_selector": { 519 "dependency": "direct main", ··· 529 "dependency": "transitive", 530 "description": { 531 "name": "file_selector_android", 532 + "sha256": "ec439df07c4999faad319ce8ad9e971795c2f1d7132ad5a793b9370a863c6128", 533 "url": "https://pub.dev" 534 }, 535 "source": "hosted", 536 + "version": "0.5.1+10" 537 }, 538 "file_selector_ios": { 539 "dependency": "transitive", ··· 599 "dependency": "transitive", 600 "description": { 601 "name": "fixnum", 602 + "sha256": "b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be", 603 "url": "https://pub.dev" 604 }, 605 "source": "hosted", 606 + "version": "1.1.1" 607 }, 608 "flutter": { 609 "dependency": "direct main", ··· 625 "dependency": "transitive", 626 "description": { 627 "name": "flutter_gen_core", 628 + "sha256": "46ecf0e317413dd065547887c43f93f55e9653e83eb98dc13dd07d40dd225325", 629 "url": "https://pub.dev" 630 }, 631 "source": "hosted", 632 + "version": "5.8.0" 633 }, 634 "flutter_gen_runner": { 635 "dependency": "direct dev", 636 "description": { 637 "name": "flutter_gen_runner", 638 + "sha256": "77f0a02fc30d9fcf2549fe874eb3fde091435724904bcbb1af60aa40cbfab1f4", 639 "url": "https://pub.dev" 640 }, 641 "source": "hosted", 642 + "version": "5.8.0" 643 }, 644 "flutter_lints": { 645 "dependency": "direct dev", 646 "description": { 647 "name": "flutter_lints", 648 + "sha256": "5398f14efa795ffb7a33e9b6a08798b26a180edac4ad7db3f231e40f82ce11e1", 649 "url": "https://pub.dev" 650 }, 651 "source": "hosted", 652 + "version": "5.0.0" 653 }, 654 "flutter_localizations": { 655 "dependency": "direct main", ··· 661 "dependency": "direct main", 662 "description": { 663 "name": "flutter_markdown", 664 + "sha256": "f0e599ba89c9946c8e051780f0ec99aba4ba15895e0380a7ab68f420046fc44e", 665 "url": "https://pub.dev" 666 }, 667 "source": "hosted", 668 + "version": "0.7.4+1" 669 }, 670 "flutter_plugin_android_lifecycle": { 671 "dependency": "transitive", ··· 677 "source": "hosted", 678 "version": "2.0.23" 679 }, 680 + "flutter_rust_bridge": { 681 + "dependency": "transitive", 682 + "description": { 683 + "name": "flutter_rust_bridge", 684 + "sha256": "5fe868d3cb8cbc4d83091748552e03f00ccfa41b8e44691bc382611f831d5f8b", 685 + "url": "https://pub.dev" 686 + }, 687 + "source": "hosted", 688 + "version": "2.5.1" 689 + }, 690 "flutter_test": { 691 "dependency": "transitive", 692 "description": "flutter", ··· 699 "source": "sdk", 700 "version": "0.0.0" 701 }, 702 + "freezed_annotation": { 703 + "dependency": "transitive", 704 + "description": { 705 + "name": "freezed_annotation", 706 + "sha256": "c2e2d632dd9b8a2b7751117abcfc2b4888ecfe181bd9fca7170d9ef02e595fe2", 707 + "url": "https://pub.dev" 708 + }, 709 + "source": "hosted", 710 + "version": "2.4.4" 711 + }, 712 "frontend_server_client": { 713 "dependency": "transitive", 714 "description": { ··· 783 "dependency": "transitive", 784 "description": { 785 "name": "html", 786 + "sha256": "1fc58edeaec4307368c60d59b7e15b9d658b57d7f3125098b6294153c75337ec", 787 "url": "https://pub.dev" 788 }, 789 "source": "hosted", 790 + "version": "0.15.5" 791 }, 792 "http": { 793 "dependency": "transitive", ··· 833 "dependency": "transitive", 834 "description": { 835 "name": "image", 836 + "sha256": "f31d52537dc417fdcde36088fdf11d191026fd5e4fae742491ebd40e5a8bea7d", 837 "url": "https://pub.dev" 838 }, 839 "source": "hosted", 840 + "version": "4.3.0" 841 }, 842 "image_picker": { 843 "dependency": "direct main", ··· 853 "dependency": "transitive", 854 "description": { 855 "name": "image_picker_android", 856 + "sha256": "8faba09ba361d4b246dc0a17cb4289b3324c2b9f6db7b3d457ee69106a86bd32", 857 "url": "https://pub.dev" 858 }, 859 "source": "hosted", 860 + "version": "0.8.12+17" 861 }, 862 "image_picker_for_web": { 863 "dependency": "transitive", 864 "description": { 865 "name": "image_picker_for_web", 866 + "sha256": "717eb042ab08c40767684327be06a5d8dbb341fe791d514e4b92c7bbe1b7bb83", 867 "url": "https://pub.dev" 868 }, 869 "source": "hosted", 870 + "version": "3.0.6" 871 }, 872 "image_picker_ios": { 873 "dependency": "transitive", 874 "description": { 875 "name": "image_picker_ios", 876 + "sha256": "4f0568120c6fcc0aaa04511cb9f9f4d29fc3d0139884b1d06be88dcec7641d6b", 877 "url": "https://pub.dev" 878 }, 879 "source": "hosted", 880 + "version": "0.8.12+1" 881 }, 882 "image_picker_linux": { 883 "dependency": "transitive", ··· 943 "dependency": "transitive", 944 "description": { 945 "name": "in_app_purchase_android", 946 + "sha256": "81507c7cacc6fc45e7980f887d53566b2847ac02859d0156f171f5056c2dd1b7", 947 "url": "https://pub.dev" 948 }, 949 "source": "hosted", 950 + "version": "0.3.6+11" 951 }, 952 "in_app_purchase_platform_interface": { 953 "dependency": "transitive", ··· 963 "dependency": "transitive", 964 "description": { 965 "name": "in_app_purchase_storekit", 966 + "sha256": "96cfa71121f4294079586a2fab7363b01bdb4c3381d9b397012c2580b391281d", 967 "url": "https://pub.dev" 968 }, 969 "source": "hosted", 970 + "version": "0.3.18+3" 971 }, 972 "intl": { 973 "dependency": "direct main", ··· 1063 "dependency": "transitive", 1064 "description": { 1065 "name": "lints", 1066 + "sha256": "3315600f3fb3b135be672bf4a178c55f274bebe368325ae18462c89ac1e3b413", 1067 "url": "https://pub.dev" 1068 }, 1069 "source": "hosted", 1070 + "version": "5.0.0" 1071 }, 1072 "logging": { 1073 "dependency": "direct main", 1074 "description": { 1075 "name": "logging", 1076 + "sha256": "c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61", 1077 "url": "https://pub.dev" 1078 }, 1079 "source": "hosted", 1080 + "version": "1.3.0" 1081 }, 1082 "macros": { 1083 "dependency": "transitive", ··· 1119 "source": "hosted", 1120 "version": "0.11.1" 1121 }, 1122 + "matrix4_transform": { 1123 + "dependency": "transitive", 1124 + "description": { 1125 + "name": "matrix4_transform", 1126 + "sha256": "42c42610deecc382be2653f4a21358537401bd5b027c168a174c7c6a64959908", 1127 + "url": "https://pub.dev" 1128 + }, 1129 + "source": "hosted", 1130 + "version": "3.0.1" 1131 + }, 1132 "menu_base": { 1133 "dependency": "transitive", 1134 "description": { ··· 1193 "dependency": "direct main", 1194 "description": { 1195 "name": "network_info_plus", 1196 + "sha256": "89bad7bf9614e78716f0f86c905fe2a850dbdcc00c377968d5260c49c2c6f2eb", 1197 "url": "https://pub.dev" 1198 }, 1199 "source": "hosted", 1200 + "version": "6.1.0" 1201 }, 1202 "network_info_plus_platform_interface": { 1203 "dependency": "transitive", ··· 1229 "source": "hosted", 1230 "version": "2.0.2" 1231 }, 1232 + "open_dir": { 1233 + "dependency": "direct main", 1234 + "description": { 1235 + "name": "open_dir", 1236 + "sha256": "a4884b00e5e5795a9b4b3d582ac6a66e9196795ed760dbc3c63b4837c70c5901", 1237 + "url": "https://pub.dev" 1238 + }, 1239 + "source": "hosted", 1240 + "version": "0.0.2+1" 1241 + }, 1242 + "open_dir_linux": { 1243 + "dependency": "transitive", 1244 + "description": { 1245 + "name": "open_dir_linux", 1246 + "sha256": "566cd9e02403971be06af35e1abc8057a4f3f98888c1226042e96a2af333b8bc", 1247 + "url": "https://pub.dev" 1248 + }, 1249 + "source": "hosted", 1250 + "version": "0.0.2+1" 1251 + }, 1252 + "open_dir_macos": { 1253 + "dependency": "transitive", 1254 + "description": { 1255 + "name": "open_dir_macos", 1256 + "sha256": "51fdc8c3a06c9d571b599b5901045ada23d1440b24c3052c0a66cf3ee4ac901b", 1257 + "url": "https://pub.dev" 1258 + }, 1259 + "source": "hosted", 1260 + "version": "0.0.2" 1261 + }, 1262 + "open_dir_platform_interface": { 1263 + "dependency": "transitive", 1264 + "description": { 1265 + "name": "open_dir_platform_interface", 1266 + "sha256": "ca189abb02d8e3320f9b2493b6d58e3a33f393d5eb4ccbbef02e0bc0fd393872", 1267 + "url": "https://pub.dev" 1268 + }, 1269 + "source": "hosted", 1270 + "version": "0.0.2" 1271 + }, 1272 + "open_dir_windows": { 1273 + "dependency": "transitive", 1274 + "description": { 1275 + "name": "open_dir_windows", 1276 + "sha256": "ec48df32ce61adb6f6cede0330d13b0d89714d2ee2df198f32ecd520e3a5d250", 1277 + "url": "https://pub.dev" 1278 + }, 1279 + "source": "hosted", 1280 + "version": "0.0.2+1" 1281 + }, 1282 "open_filex": { 1283 "dependency": "direct main", 1284 "description": { ··· 1303 "dependency": "direct main", 1304 "description": { 1305 "name": "package_info_plus", 1306 + "sha256": "df3eb3e0aed5c1107bb0fdb80a8e82e778114958b1c5ac5644fb1ac9cae8a998", 1307 "url": "https://pub.dev" 1308 }, 1309 "source": "hosted", 1310 + "version": "8.1.0" 1311 }, 1312 "package_info_plus_platform_interface": { 1313 "dependency": "transitive", ··· 1344 "dependency": "transitive", 1345 "description": { 1346 "name": "path_parsing", 1347 + "sha256": "883402936929eac138ee0a45da5b0f2c80f89913e6dc3bf77eb65b84b409c6ca", 1348 "url": "https://pub.dev" 1349 }, 1350 "source": "hosted", 1351 + "version": "1.1.0" 1352 }, 1353 "path_provider": { 1354 "dependency": "direct main", 1355 "description": { 1356 "name": "path_provider", 1357 + "sha256": "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd", 1358 "url": "https://pub.dev" 1359 }, 1360 "source": "hosted", 1361 + "version": "2.1.5" 1362 }, 1363 "path_provider_android": { 1364 "dependency": "transitive", ··· 1424 "dependency": "transitive", 1425 "description": { 1426 "name": "permission_handler_android", 1427 + "sha256": "71bbecfee799e65aff7c744761a57e817e73b738fedf62ab7afd5593da21f9f1", 1428 "url": "https://pub.dev" 1429 }, 1430 "source": "hosted", 1431 + "version": "12.0.13" 1432 }, 1433 "permission_handler_apple": { 1434 "dependency": "transitive", ··· 1485 "dependency": "transitive", 1486 "description": { 1487 "name": "photo_manager", 1488 + "sha256": "f5ef2618870e9a50d8bfeb81a02c242d580ae8614bd5ea9e1b80dbb7e49d4260", 1489 "url": "https://pub.dev" 1490 }, 1491 "source": "hosted", 1492 + "version": "3.6.1" 1493 }, 1494 "photo_manager_image_provider": { 1495 "dependency": "transitive", 1496 "description": { 1497 "name": "photo_manager_image_provider", 1498 + "sha256": "b6015b67b32f345f57cf32c126f871bced2501236c405aafaefa885f7c821e4f", 1499 "url": "https://pub.dev" 1500 }, 1501 "source": "hosted", 1502 + "version": "2.2.0" 1503 }, 1504 "platform": { 1505 "dependency": "transitive", 1506 "description": { 1507 "name": "platform", 1508 + "sha256": "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984", 1509 "url": "https://pub.dev" 1510 }, 1511 "source": "hosted", 1512 + "version": "3.1.6" 1513 }, 1514 "platform_linux": { 1515 "dependency": "transitive", ··· 1625 "dependency": "direct dev", 1626 "description": { 1627 "name": "refena_inspector", 1628 + "sha256": "c7c93884392493dd6a0ef8762eaaf6a45a64480b11f22f48b8547ef52916496b", 1629 "url": "https://pub.dev" 1630 }, 1631 "source": "hosted", 1632 + "version": "2.0.2" 1633 }, 1634 "refena_inspector_client": { 1635 "dependency": "direct main", 1636 "description": { 1637 "name": "refena_inspector_client", 1638 + "sha256": "8bcc1e169bfc0e5ba448f4920067a0579c0b4a42fff39dbdfd4a743bf2b235a6", 1639 "url": "https://pub.dev" 1640 }, 1641 "source": "hosted", 1642 + "version": "2.0.1" 1643 + }, 1644 + "rhttp": { 1645 + "dependency": "direct main", 1646 + "description": { 1647 + "name": "rhttp", 1648 + "sha256": "92fb57dea6338370efe1e4e2101e8b521f91f15bc60ef6908469b4392dd9803a", 1649 + "url": "https://pub.dev" 1650 + }, 1651 + "source": "hosted", 1652 + "version": "0.9.1" 1653 }, 1654 "routerino": { 1655 "dependency": "direct main", ··· 1665 "dependency": "direct main", 1666 "description": { 1667 "name": "saf_stream", 1668 + "sha256": "d90bcbf0fe9e99065e3bab5d5711551b1911ed2001ad8cf94258081ed6f6b7b2", 1669 "url": "https://pub.dev" 1670 }, 1671 "source": "hosted", 1672 + "version": "0.10.0" 1673 }, 1674 "screen_retriever": { 1675 "dependency": "direct main", 1676 "description": { 1677 "name": "screen_retriever", 1678 + "sha256": "570dbc8e4f70bac451e0efc9c9bb19fa2d6799a11e6ef04f946d7886d2e23d0c", 1679 + "url": "https://pub.dev" 1680 + }, 1681 + "source": "hosted", 1682 + "version": "0.2.0" 1683 + }, 1684 + "screen_retriever_linux": { 1685 + "dependency": "transitive", 1686 + "description": { 1687 + "name": "screen_retriever_linux", 1688 + "sha256": "f7f8120c92ef0784e58491ab664d01efda79a922b025ff286e29aa123ea3dd18", 1689 + "url": "https://pub.dev" 1690 + }, 1691 + "source": "hosted", 1692 + "version": "0.2.0" 1693 + }, 1694 + "screen_retriever_macos": { 1695 + "dependency": "transitive", 1696 + "description": { 1697 + "name": "screen_retriever_macos", 1698 + "sha256": "71f956e65c97315dd661d71f828708bd97b6d358e776f1a30d5aa7d22d78a149", 1699 + "url": "https://pub.dev" 1700 + }, 1701 + "source": "hosted", 1702 + "version": "0.2.0" 1703 + }, 1704 + "screen_retriever_platform_interface": { 1705 + "dependency": "transitive", 1706 + "description": { 1707 + "name": "screen_retriever_platform_interface", 1708 + "sha256": "ee197f4581ff0d5608587819af40490748e1e39e648d7680ecf95c05197240c0", 1709 "url": "https://pub.dev" 1710 }, 1711 "source": "hosted", 1712 + "version": "0.2.0" 1713 + }, 1714 + "screen_retriever_windows": { 1715 + "dependency": "transitive", 1716 + "description": { 1717 + "name": "screen_retriever_windows", 1718 + "sha256": "449ee257f03ca98a57288ee526a301a430a344a161f9202b4fcc38576716fe13", 1719 + "url": "https://pub.dev" 1720 + }, 1721 + "source": "hosted", 1722 + "version": "0.2.0" 1723 }, 1724 "share_handler": { 1725 "dependency": "direct main", 1726 "description": { 1727 "name": "share_handler", 1728 + "sha256": "76575533be04df3fecbebd3c5b5325a8271b5973131f8b8b0ab8490c395a5d37", 1729 "url": "https://pub.dev" 1730 }, 1731 "source": "hosted", 1732 + "version": "0.0.22" 1733 }, 1734 "share_handler_android": { 1735 "dependency": "transitive", ··· 1742 "version": "0.0.9" 1743 }, 1744 "share_handler_ios": { 1745 + "dependency": "transitive", 1746 "description": { 1747 "name": "share_handler_ios", 1748 + "sha256": "cdc21f88f336a944157a8e9ceb191525cee3b082d6eb6c2082488e4f09dc3ece", 1749 "url": "https://pub.dev" 1750 }, 1751 "source": "hosted", 1752 + "version": "0.0.15" 1753 }, 1754 "share_handler_platform_interface": { 1755 "dependency": "transitive", ··· 1875 "dependency": "transitive", 1876 "description": { 1877 "name": "shelf_web_socket", 1878 + "sha256": "073c147238594ecd0d193f3456a5fe91c4b0abbcc68bf5cd95b36c4e194ac611", 1879 "url": "https://pub.dev" 1880 }, 1881 "source": "hosted", 1882 + "version": "2.0.0" 1883 }, 1884 "shortid": { 1885 "dependency": "transitive", ··· 1901 "dependency": "direct main", 1902 "description": { 1903 "name": "slang", 1904 + "sha256": "b04db2dbaf927b28600a2f8a272a3bf2ae309556dcc5d6beb02d66af0be39e4c", 1905 "url": "https://pub.dev" 1906 }, 1907 "source": "hosted", 1908 + "version": "4.1.0" 1909 }, 1910 "slang_build_runner": { 1911 "dependency": "direct dev", 1912 "description": { 1913 "name": "slang_build_runner", 1914 + "sha256": "6338653769ab088ad222e84b1f382fffb867a9a3ead802960aa4d0ab45a62f5f", 1915 "url": "https://pub.dev" 1916 }, 1917 "source": "hosted", 1918 + "version": "4.1.0" 1919 }, 1920 "slang_flutter": { 1921 "dependency": "direct main", 1922 "description": { 1923 "name": "slang_flutter", 1924 + "sha256": "59988f37bb8b50d96ee46832a8a389036c0da26c04b1b1d4aa6690c00f70eccf", 1925 "url": "https://pub.dev" 1926 }, 1927 "source": "hosted", 1928 + "version": "4.1.0" 1929 }, 1930 "source_gen": { 1931 "dependency": "transitive", ··· 2091 "dependency": "direct main", 2092 "description": { 2093 "name": "tray_manager", 2094 + "sha256": "bdc3ac6c36f3d12d871459e4a9822705ce5a1165a17fa837103bc842719bf3f7", 2095 "url": "https://pub.dev" 2096 }, 2097 "source": "hosted", 2098 + "version": "0.2.4" 2099 }, 2100 "type_plus": { 2101 "dependency": "transitive", ··· 2111 "dependency": "transitive", 2112 "description": { 2113 "name": "typed_data", 2114 + "sha256": "f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006", 2115 "url": "https://pub.dev" 2116 }, 2117 "source": "hosted", 2118 + "version": "1.4.0" 2119 }, 2120 "uri_content": { 2121 "dependency": "direct main", ··· 2131 "dependency": "direct main", 2132 "description": { 2133 "name": "url_launcher", 2134 + "sha256": "9d06212b1362abc2f0f0d78e6f09f726608c74e3b9462e8368bb03314aa8d603", 2135 "url": "https://pub.dev" 2136 }, 2137 "source": "hosted", 2138 + "version": "6.3.1" 2139 }, 2140 "url_launcher_android": { 2141 "dependency": "transitive", 2142 "description": { 2143 "name": "url_launcher_android", 2144 + "sha256": "6fc2f56536ee873eeb867ad176ae15f304ccccc357848b351f6f0d8d4a40d193", 2145 "url": "https://pub.dev" 2146 }, 2147 "source": "hosted", 2148 + "version": "6.3.14" 2149 }, 2150 "url_launcher_ios": { 2151 "dependency": "transitive", ··· 2201 "dependency": "transitive", 2202 "description": { 2203 "name": "url_launcher_windows", 2204 + "sha256": "44cf3aabcedde30f2dba119a9dea3b0f2672fbe6fa96e85536251d678216b3c4", 2205 "url": "https://pub.dev" 2206 }, 2207 "source": "hosted", 2208 + "version": "3.1.3" 2209 }, 2210 "uuid": { 2211 "dependency": "direct main", 2212 "description": { 2213 "name": "uuid", 2214 + "sha256": "a5be9ef6618a7ac1e964353ef476418026db906c4facdedaa299b7a2e71690ff", 2215 "url": "https://pub.dev" 2216 }, 2217 "source": "hosted", 2218 + "version": "4.5.1" 2219 }, 2220 "vector_graphics_codec": { 2221 "dependency": "transitive", 2222 "description": { 2223 "name": "vector_graphics_codec", 2224 + "sha256": "2430b973a4ca3c4dbc9999b62b8c719a160100dcbae5c819bae0cacce32c9cdb", 2225 "url": "https://pub.dev" 2226 }, 2227 "source": "hosted", 2228 + "version": "1.1.12" 2229 }, 2230 "vector_graphics_compiler": { 2231 "dependency": "transitive", 2232 "description": { 2233 "name": "vector_graphics_compiler", 2234 + "sha256": "26d520739b7c6b5d2a2b3274427874a8390831fd4cd5bb8cfbd7d913477d3a2e", 2235 "url": "https://pub.dev" 2236 }, 2237 "source": "hosted", 2238 + "version": "1.1.14" 2239 }, 2240 "vector_math": { 2241 "dependency": "transitive", ··· 2261 "dependency": "transitive", 2262 "description": { 2263 "name": "video_player_android", 2264 + "sha256": "391e092ba4abe2f93b3e625bd6b6a6ec7d7414279462c1c0ee42b5ab8d0a0898", 2265 "url": "https://pub.dev" 2266 }, 2267 "source": "hosted", 2268 + "version": "2.7.16" 2269 }, 2270 "video_player_avfoundation": { 2271 "dependency": "transitive", ··· 2291 "dependency": "transitive", 2292 "description": { 2293 "name": "video_player_web", 2294 + "sha256": "881b375a934d8ebf868c7fb1423b2bfaa393a0a265fa3f733079a86536064a10", 2295 "url": "https://pub.dev" 2296 }, 2297 "source": "hosted", 2298 + "version": "2.3.3" 2299 }, 2300 "visibility_detector": { 2301 "dependency": "transitive", ··· 2357 "source": "hosted", 2358 "version": "1.1.0" 2359 }, 2360 + "web_socket": { 2361 + "dependency": "transitive", 2362 + "description": { 2363 + "name": "web_socket", 2364 + "sha256": "3c12d96c0c9a4eec095246debcea7b86c0324f22df69893d538fcc6f1b8cce83", 2365 + "url": "https://pub.dev" 2366 + }, 2367 + "source": "hosted", 2368 + "version": "0.1.6" 2369 + }, 2370 "web_socket_channel": { 2371 "dependency": "transitive", 2372 "description": { 2373 "name": "web_socket_channel", 2374 + "sha256": "9f187088ed104edd8662ca07af4b124465893caf063ba29758f97af57e61da8f", 2375 "url": "https://pub.dev" 2376 }, 2377 "source": "hosted", 2378 + "version": "3.0.1" 2379 }, 2380 "webkit_inspection_protocol": { 2381 "dependency": "transitive", ··· 2391 "dependency": "direct main", 2392 "description": { 2393 "name": "wechat_assets_picker", 2394 + "sha256": "c7d925dfe0f94666a35d4a9791f6dfcb6ff137eb040057adbddd1638f50e65c2", 2395 "url": "https://pub.dev" 2396 }, 2397 "source": "hosted", 2398 + "version": "9.3.3" 2399 }, 2400 "wechat_picker_library": { 2401 "dependency": "transitive", ··· 2411 "dependency": "transitive", 2412 "description": { 2413 "name": "win32", 2414 + "sha256": "84ba388638ed7a8cb3445a320c8273136ab2631cd5f2c57888335504ddab1bc2", 2415 "url": "https://pub.dev" 2416 }, 2417 "source": "hosted", 2418 + "version": "5.8.0" 2419 }, 2420 "win32_registry": { 2421 "dependency": "direct main", ··· 2431 "dependency": "direct main", 2432 "description": { 2433 "name": "window_manager", 2434 + "sha256": "732896e1416297c63c9e3fb95aea72d0355f61390263982a47fd519169dc5059", 2435 "url": "https://pub.dev" 2436 }, 2437 "source": "hosted", 2438 + "version": "0.4.3" 2439 }, 2440 "windows_taskbar": { 2441 "dependency": "direct main", ··· 2481 "dependency": "direct main", 2482 "description": { 2483 "name": "yaru", 2484 + "sha256": "afc659f78a0bef5e06ebbbd516979afceca7526b7703daa444bf419a54b2dc85", 2485 "url": "https://pub.dev" 2486 }, 2487 "source": "hosted", 2488 + "version": "5.3.2" 2489 }, 2490 "yaru_window": { 2491 "dependency": "transitive",
+3 -3
pkgs/by-name/st/storj-uplink/package.nix
··· 5 6 buildGoModule rec { 7 pname = "storj-uplink"; 8 - version = "1.114.3"; 9 10 src = fetchFromGitHub { 11 owner = "storj"; 12 repo = "storj"; 13 rev = "v${version}"; 14 - hash = "sha256-V7Vl2sViRl6olhCdJF4xtR7iyJCqJCrm39/Aq1T9GFQ="; 15 }; 16 17 subPackages = [ "cmd/uplink" ]; 18 19 - vendorHash = "sha256-+eqT3VNqw3fOLwfCKPacIEcoXjuzPaY1EAZI95rgLDs="; 20 21 ldflags = [ "-s" "-w" ]; 22
··· 5 6 buildGoModule rec { 7 pname = "storj-uplink"; 8 + version = "1.116.5"; 9 10 src = fetchFromGitHub { 11 owner = "storj"; 12 repo = "storj"; 13 rev = "v${version}"; 14 + hash = "sha256-vQftcQU7WUDfVFKYswtpEHbSyReIcWF83vEQrEbzbHk="; 15 }; 16 17 subPackages = [ "cmd/uplink" ]; 18 19 + vendorHash = "sha256-4wkgQQGbQi9ZcBaExRQysL6r/rJZez9z7keaJReuAeg="; 20 21 ldflags = [ "-s" "-w" ]; 22
+35
pkgs/by-name/te/testkube/package.nix
···
··· 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 + }: 6 + buildGoModule rec { 7 + pname = "testkube"; 8 + version = "2.1.56"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "kubeshop"; 12 + repo = "testkube"; 13 + rev = "v${version}"; 14 + hash = "sha256-P+A9lUMzQ3M0SEVZBMDSMj8S0uCsEhadv5vDRxbQORA="; 15 + }; 16 + 17 + vendorHash = "sha256-44aIwddMH6CMfTno90xGkHgna4DO2Ii3KhpMwv6Zjmo="; 18 + 19 + ldflags = [ 20 + "-X main.version=${version}" 21 + "-X main.builtBy=nixpkgs" 22 + "-X main.commit=v${version}" 23 + "-X main.date=1970-01-01-00:00:01" 24 + ]; 25 + 26 + subPackages = [ "cmd/kubectl-testkube" ]; 27 + 28 + meta = { 29 + description = "Kubernetes-native framework for test definition and execution"; 30 + homepage = "https://github.com/kubeshop/testkube/"; 31 + license = lib.licenses.mit; 32 + mainProgram = "kubectl-testkube"; 33 + maintainers = with lib.maintainers; [ mathstlouis ]; 34 + }; 35 + }
+1
pkgs/development/compilers/dart/package-source-builders/default.nix
··· 6 matrix = callPackage ./matrix { }; 7 media_kit_libs_linux = callPackage ./media_kit_libs_linux { }; 8 olm = callPackage ./olm { }; 9 sqlcipher_flutter_libs = callPackage ./sqlcipher_flutter_libs { }; 10 sqlite3 = callPackage ./sqlite3 { }; 11 system_tray = callPackage ./system-tray { };
··· 6 matrix = callPackage ./matrix { }; 7 media_kit_libs_linux = callPackage ./media_kit_libs_linux { }; 8 olm = callPackage ./olm { }; 9 + rhttp = callPackage ./rhttp { }; 10 sqlcipher_flutter_libs = callPackage ./sqlcipher_flutter_libs { }; 11 sqlite3 = callPackage ./sqlite3 { }; 12 system_tray = callPackage ./system-tray { };
+90
pkgs/development/compilers/dart/package-source-builders/rhttp/cargokit.patch
···
··· 1 + --- old/cargokit/cmake/cargokit.cmake 2024-11-08 13:36:13.345889693 +0800 2 + +++ new/cargokit/cmake/cargokit.cmake 2024-11-08 13:45:26.019632176 +0800 3 + @@ -17,83 +17,22 @@ 4 + function(apply_cargokit target manifest_dir lib_name any_symbol_name) 5 + 6 + set(CARGOKIT_LIB_NAME "${lib_name}") 7 + - set(CARGOKIT_LIB_FULL_NAME "${CMAKE_SHARED_MODULE_PREFIX}${CARGOKIT_LIB_NAME}${CMAKE_SHARED_MODULE_SUFFIX}") 8 + - if (CMAKE_CONFIGURATION_TYPES) 9 + - set(CARGOKIT_OUTPUT_DIR "${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>") 10 + - set(OUTPUT_LIB "${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>/${CARGOKIT_LIB_FULL_NAME}") 11 + - else() 12 + - set(CARGOKIT_OUTPUT_DIR "${CMAKE_CURRENT_BINARY_DIR}") 13 + - set(OUTPUT_LIB "${CMAKE_CURRENT_BINARY_DIR}/${CARGOKIT_LIB_FULL_NAME}") 14 + - endif() 15 + - set(CARGOKIT_TEMP_DIR "${CMAKE_CURRENT_BINARY_DIR}/cargokit_build") 16 + - 17 + - if (FLUTTER_TARGET_PLATFORM) 18 + - set(CARGOKIT_TARGET_PLATFORM "${FLUTTER_TARGET_PLATFORM}") 19 + - else() 20 + - set(CARGOKIT_TARGET_PLATFORM "windows-x64") 21 + - endif() 22 + - 23 + - set(CARGOKIT_ENV 24 + - "CARGOKIT_CMAKE=${CMAKE_COMMAND}" 25 + - "CARGOKIT_CONFIGURATION=$<CONFIG>" 26 + - "CARGOKIT_MANIFEST_DIR=${CMAKE_CURRENT_SOURCE_DIR}/${manifest_dir}" 27 + - "CARGOKIT_TARGET_TEMP_DIR=${CARGOKIT_TEMP_DIR}" 28 + - "CARGOKIT_OUTPUT_DIR=${CARGOKIT_OUTPUT_DIR}" 29 + - "CARGOKIT_TARGET_PLATFORM=${CARGOKIT_TARGET_PLATFORM}" 30 + - "CARGOKIT_TOOL_TEMP_DIR=${CARGOKIT_TEMP_DIR}/tool" 31 + - "CARGOKIT_ROOT_PROJECT_DIR=${CMAKE_SOURCE_DIR}" 32 + - ) 33 + - 34 + - if (WIN32) 35 + - set(SCRIPT_EXTENSION ".cmd") 36 + - set(IMPORT_LIB_EXTENSION ".lib") 37 + - else() 38 + - set(SCRIPT_EXTENSION ".sh") 39 + - set(IMPORT_LIB_EXTENSION "") 40 + - execute_process(COMMAND chmod +x "${cargokit_cmake_root}/run_build_tool${SCRIPT_EXTENSION}") 41 + - endif() 42 + - 43 + - # Using generators in custom command is only supported in CMake 3.20+ 44 + - if (CMAKE_CONFIGURATION_TYPES AND ${CMAKE_VERSION} VERSION_LESS "3.20.0") 45 + - foreach(CONFIG IN LISTS CMAKE_CONFIGURATION_TYPES) 46 + - add_custom_command( 47 + - OUTPUT 48 + - "${CMAKE_CURRENT_BINARY_DIR}/${CONFIG}/${CARGOKIT_LIB_FULL_NAME}" 49 + - "${CMAKE_CURRENT_BINARY_DIR}/_phony_" 50 + - COMMAND ${CMAKE_COMMAND} -E env ${CARGOKIT_ENV} 51 + - "${cargokit_cmake_root}/run_build_tool${SCRIPT_EXTENSION}" build-cmake 52 + - VERBATIM 53 + - ) 54 + - endforeach() 55 + - else() 56 + - add_custom_command( 57 + - OUTPUT 58 + - ${OUTPUT_LIB} 59 + - "${CMAKE_CURRENT_BINARY_DIR}/_phony_" 60 + - COMMAND ${CMAKE_COMMAND} -E env ${CARGOKIT_ENV} 61 + - "${cargokit_cmake_root}/run_build_tool${SCRIPT_EXTENSION}" build-cmake 62 + - VERBATIM 63 + - ) 64 + - endif() 65 + - 66 + - 67 + - set_source_files_properties("${CMAKE_CURRENT_BINARY_DIR}/_phony_" PROPERTIES SYMBOLIC TRUE) 68 + 69 + if (TARGET ${target}) 70 + # If we have actual cmake target provided create target and make existing 71 + # target depend on it 72 + - add_custom_target("${target}_cargokit" DEPENDS ${OUTPUT_LIB}) 73 + + add_custom_target("${target}_cargokit" DEPENDS OUTPUT_LIB) 74 + add_dependencies("${target}" "${target}_cargokit") 75 + - target_link_libraries("${target}" PRIVATE "${OUTPUT_LIB}${IMPORT_LIB_EXTENSION}") 76 + + target_link_libraries("${target}" PRIVATE OUTPUT_LIB) 77 + if(WIN32) 78 + target_link_options(${target} PRIVATE "/INCLUDE:${any_symbol_name}") 79 + endif() 80 + else() 81 + # Otherwise (FFI) just use ALL to force building always 82 + - add_custom_target("${target}_cargokit" ALL DEPENDS ${OUTPUT_LIB}) 83 + + add_custom_target("${target}_cargokit" ALL DEPENDS OUTPUT_LIB) 84 + endif() 85 + 86 + # Allow adding the output library to plugin bundled libraries 87 + - set("${target}_cargokit_lib" ${OUTPUT_LIB} PARENT_SCOPE) 88 + + set("${target}_cargokit_lib" OUTPUT_LIB PARENT_SCOPE) 89 + 90 + endfunction()
+51
pkgs/development/compilers/dart/package-source-builders/rhttp/default.nix
···
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + stdenv, 5 + }: 6 + 7 + { version, src, ... }: 8 + 9 + let 10 + rustDep = rustPlatform.buildRustPackage { 11 + pname = "rhttp-rs"; 12 + inherit version src; 13 + 14 + sourceRoot = "${src.name}/rust"; 15 + 16 + cargoHash = 17 + { 18 + _0_9_1 = "sha256-Gl3ArdSuw3/yi/JX6oloKJqerSJjTfK8HXRNei/LO+4="; 19 + } 20 + .${"_" + (lib.replaceStrings [ "." ] [ "_" ] version)} or (throw '' 21 + Unsupported version of pub 'rhttp': '${version}' 22 + Please add cargoHash here. If the cargoHash 23 + is the same with existing versions, add an alias here. 24 + ''); 25 + 26 + env.RUSTFLAGS = "--cfg reqwest_unstable"; 27 + 28 + passthru.libraryPath = "lib/librhttp.so"; 29 + }; 30 + 31 + in 32 + stdenv.mkDerivation { 33 + pname = "rhttp"; 34 + inherit version src; 35 + inherit (src) passthru; 36 + 37 + patches = [ ./cargokit.patch ]; 38 + 39 + postPatch = '' 40 + substituteInPlace ./cargokit/cmake/cargokit.cmake --replace-fail "OUTPUT_LIB" "${rustDep}/${rustDep.passthru.libraryPath}" 41 + ''; 42 + 43 + installPhase = '' 44 + runHook preInstall 45 + 46 + mkdir $out/ 47 + cp -r ./* $out/ 48 + 49 + runHook postInstall 50 + ''; 51 + }
+2 -2
pkgs/development/python-modules/ayla-iot-unofficial/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "ayla-iot-unofficial"; 15 - version = "1.4.3"; 16 pyproject = true; 17 18 src = fetchFromGitHub { 19 owner = "rewardone"; 20 repo = "ayla-iot-unofficial"; 21 rev = "refs/tags/v${version}"; 22 - hash = "sha256-y2SjnM48OYyXhBxLHE8R9di4ErORUgS87m/FKs21NLU="; 23 }; 24 25 build-system = [ setuptools ];
··· 12 13 buildPythonPackage rec { 14 pname = "ayla-iot-unofficial"; 15 + version = "1.4.4"; 16 pyproject = true; 17 18 src = fetchFromGitHub { 19 owner = "rewardone"; 20 repo = "ayla-iot-unofficial"; 21 rev = "refs/tags/v${version}"; 22 + hash = "sha256-LYHfu02FYoL2D9dEL3CM3llRXMa2M3EMU9CAsl1Cgoo="; 23 }; 24 25 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pipenv-poetry-migrate/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "pipenv-poetry-migrate"; 15 - version = "0.5.10"; 16 format = "pyproject"; 17 18 disabled = pythonOlder "3.8"; ··· 21 owner = "yhino"; 22 repo = "pipenv-poetry-migrate"; 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-ROi5Yj4Ht91Go2jkm6BQZyaJWtBKHk4ar1ly8jAPGlc="; 25 }; 26 27 nativeBuildInputs = [ poetry-core ];
··· 12 13 buildPythonPackage rec { 14 pname = "pipenv-poetry-migrate"; 15 + version = "0.5.11"; 16 format = "pyproject"; 17 18 disabled = pythonOlder "3.8"; ··· 21 owner = "yhino"; 22 repo = "pipenv-poetry-migrate"; 23 rev = "refs/tags/v${version}"; 24 + hash = "sha256-du2OJ9gevPr7LOv88aXuq+e3YfD2eNoBp/ppEs522ws="; 25 }; 26 27 nativeBuildInputs = [ poetry-core ];
+7 -7
pkgs/development/python-modules/vulcan-api/default.nix
··· 4 aiodns, 5 aiohttp, 6 buildPythonPackage, 7 faust-cchardet, 8 fetchFromGitHub, 9 pyopenssl, 10 pythonOlder, 11 pytz, 12 related, 13 - requests, 14 uonet-request-signer-hebe, 15 yarl, 16 }: 17 18 buildPythonPackage rec { 19 pname = "vulcan-api"; 20 - version = "2.4.0"; 21 - format = "setuptools"; 22 23 disabled = pythonOlder "3.6"; 24 ··· 26 owner = "kapi2289"; 27 repo = pname; 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-RtB67Pme/qtKG0T3rzm0OeewNZPg2e3aebL5YnSWWFQ="; 30 }; 31 32 - pythonRemoveDeps = [ "faust-cchardet" ]; 33 34 35 - propagatedBuildInputs = [ 36 aenum 37 aiodns 38 aiohttp ··· 40 pyopenssl 41 pytz 42 related 43 - requests 44 uonet-request-signer-hebe 45 yarl 46 ];
··· 4 aiodns, 5 aiohttp, 6 buildPythonPackage, 7 + setuptools, 8 faust-cchardet, 9 fetchFromGitHub, 10 pyopenssl, 11 pythonOlder, 12 pytz, 13 related, 14 uonet-request-signer-hebe, 15 yarl, 16 }: 17 18 buildPythonPackage rec { 19 pname = "vulcan-api"; 20 + version = "2.4.1"; 21 + pyproject = true; 22 23 disabled = pythonOlder "3.6"; 24 ··· 26 owner = "kapi2289"; 27 repo = pname; 28 rev = "refs/tags/v${version}"; 29 + hash = "sha256-FEWm5DvnrEIelRnu/IgWU7h1CTvPQcZ3DbFS2swy/wQ="; 30 }; 31 32 + pythonRemoveDeps = [ "related-without-future" ]; 33 34 + build-system = [ setuptools ]; 35 36 + dependencies = [ 37 aenum 38 aiodns 39 aiohttp ··· 41 pyopenssl 42 pytz 43 related 44 uonet-request-signer-hebe 45 yarl 46 ];
+1 -7
pkgs/top-level/all-packages.nix
··· 1250 1251 gita = python3Packages.callPackage ../applications/version-management/gita { }; 1252 1253 - gitoxide = darwin.apple_sdk_11_0.callPackage ../applications/version-management/gitoxide { 1254 - inherit (darwin.apple_sdk_11_0.frameworks) Security SystemConfiguration; 1255 - }; 1256 1257 github-cli = gh; 1258 git-absorb = callPackage ../applications/version-management/git-absorb { ··· 13877 drawterm-wayland = callPackage ../tools/admin/drawterm { config = "linux"; }; 13878 13879 droopy = python3Packages.callPackage ../applications/networking/droopy { }; 13880 - 13881 - dust = callPackage ../by-name/du/dust/package.nix { 13882 - inherit (darwin.apple_sdk_11_0.frameworks) AppKit; 13883 - }; 13884 13885 dexed = darwin.apple_sdk_11_0.callPackage ../applications/audio/dexed { 13886 inherit (darwin.apple_sdk_11_0.frameworks) Accelerate Cocoa WebKit MetalKit DiscRecording CoreAudioKit;
··· 1250 1251 gita = python3Packages.callPackage ../applications/version-management/gita { }; 1252 1253 + gitoxide = callPackage ../applications/version-management/gitoxide { }; 1254 1255 github-cli = gh; 1256 git-absorb = callPackage ../applications/version-management/git-absorb { ··· 13875 drawterm-wayland = callPackage ../tools/admin/drawterm { config = "linux"; }; 13876 13877 droopy = python3Packages.callPackage ../applications/networking/droopy { }; 13878 13879 dexed = darwin.apple_sdk_11_0.callPackage ../applications/audio/dexed { 13880 inherit (darwin.apple_sdk_11_0.frameworks) Accelerate Cocoa WebKit MetalKit DiscRecording CoreAudioKit;