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 52 53 53 buildInputs = 54 54 [ openssl ] 55 - ++ lib.optionals stdenv.isLinux [ 55 + ++ lib.optionals stdenv.hostPlatform.isLinux [ 56 56 glib-networking # Most Tauri apps need networking 57 57 libsoup 58 58 webkitgtk_4_0 59 59 ] 60 - ++ lib.optionals stdenv.isDarwin ( 60 + ++ lib.optionals stdenv.hostPlatform.isDarwin ( 61 61 with darwin.apple_sdk.frameworks; 62 62 [ 63 63 AppKit
+13 -1
maintainers/maintainer-list.nix
··· 2832 2832 githubId = 24254289; 2833 2833 name = "Payas Relekar"; 2834 2834 }; 2835 + bhasherbel = { 2836 + email = "nixos.maintainer@bhasher.com"; 2837 + github = "bhasherbel"; 2838 + githubId = 45831883; 2839 + name = "Brieuc Dubois"; 2840 + }; 2835 2841 bhipple = { 2836 2842 email = "bhipple@protonmail.com"; 2837 2843 github = "bhipple"; ··· 5841 5847 name = "Sebastian Krohn"; 5842 5848 }; 5843 5849 drawbu = { 5844 - email = "clement21.boillot@gmail.com"; 5850 + email = "clement2104.boillot@gmail.com"; 5845 5851 github = "drawbu"; 5846 5852 githubId = 69208565; 5847 5853 name = "Clément Boillot"; ··· 10940 10946 github = "jtcoolen"; 10941 10947 githubId = 54635632; 10942 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; 10943 10955 }; 10944 10956 jtobin = { 10945 10957 email = "jared@jtobin.io";
+1 -1
nixos/modules/hardware/graphics.nix
··· 101 101 assertions = [ 102 102 { 103 103 assertion = cfg.enable32Bit -> pkgs.stdenv.hostPlatform.isx86_64; 104 - message = "`hardware.graphics.enable32Bit` only makes sense on a 64-bit system."; 104 + message = "`hardware.graphics.enable32Bit` is only supported on an x86_64 system."; 105 105 } 106 106 { 107 107 assertion = cfg.enable32Bit -> (config.boot.kernelPackages.kernel.features.ia32Emulation or false);
+2 -4
pkgs/applications/version-management/gitoxide/default.nix
··· 4 4 , cmake 5 5 , pkg-config 6 6 , stdenv 7 - , libiconv 8 - , Security 9 - , SystemConfiguration 7 + , apple-sdk_11 10 8 , curl 11 9 , openssl 12 10 , buildPackages ··· 33 31 nativeBuildInputs = [ cmake pkg-config installShellFiles ]; 34 32 35 33 buildInputs = [ curl ] ++ (if stdenv.hostPlatform.isDarwin 36 - then [ libiconv Security SystemConfiguration ] 34 + then [ apple-sdk_11 ] 37 35 else [ openssl ]); 38 36 39 37 preFixup = lib.optionalString canRunCmd ''
+8 -1
pkgs/applications/window-managers/i3/lock-fancy-rapid.nix
··· 1 - { lib, stdenv, fetchFromGitHub, xorg, i3lock }: 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + xorg, 6 + i3lock, 7 + }: 2 8 3 9 stdenv.mkDerivation { 4 10 pname = "i3lock-fancy-rapid"; ··· 33 39 description = "Faster implementation of i3lock-fancy"; 34 40 homepage = "https://github.com/yvbbrjdr/i3lock-fancy-rapid"; 35 41 maintainers = with maintainers; [ nickhu ]; 42 + mainProgram = "i3lock-fancy-rapid"; 36 43 license = licenses.bsd3; 37 44 platforms = platforms.linux; 38 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 13 }: 14 14 buildGoModule rec { 15 15 pname = "buildkite-agent"; 16 - version = "3.82.1"; 16 + version = "3.85.1"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "buildkite"; 20 20 repo = "agent"; 21 21 rev = "v${version}"; 22 - hash = "sha256-xTF8zmpwEFHkLwDYBICXJZ4gjJYpcH5i76kPQM6qt5o="; 22 + hash = "sha256-aRgjXzwTC1wCWZ7n0MJpNHcHZgvendFPr4vCrBnCJCk="; 23 23 }; 24 24 25 - vendorHash = "sha256-xKAQ2yvFYl9ld3H6IGafYgCdA8jn9xig/AAej56ACns="; 25 + vendorHash = "sha256-UMnDVxZgqI4430IlA8fSygKEOT86RjCwuzGsvkQ8XIo="; 26 26 27 27 postPatch = '' 28 28 substituteInPlace clicommand/agent_start.go --replace /bin/bash ${bash}/bin/bash
+3 -3
pkgs/by-name/de/deno/package.nix
··· 19 19 in 20 20 rustPlatform.buildRustPackage rec { 21 21 pname = "deno"; 22 - version = "2.0.5"; 22 + version = "2.0.6"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "denoland"; 26 26 repo = "deno"; 27 27 rev = "refs/tags/v${version}"; 28 - hash = "sha256-JTNLxUT1C9Q8XiP3BYn6NhytbvilQ20DzWwLjNXjlCI="; 28 + hash = "sha256-dJ1SHWPgQtr7BdBW63A+/RocHAx1MRnyeRj1Q/Qmcgk="; 29 29 }; 30 30 31 - cargoHash = "sha256-EDphp03j6HpTxgBgsaGHuO+hQX57QXkTz6fHN0+or48="; 31 + cargoHash = "sha256-6sAu8RbC6CcPABUZ2KEmcf2bn0UGiWacHJg4Eso+ozo="; 32 32 33 33 postPatch = '' 34 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 }: 1 + { stdenv, lib, fetchFromGitHub, rustPlatform, apple-sdk_11, installShellFiles }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 # Originally, this package was under the attribute `du-dust`, since `dust` was taken. ··· 23 23 24 24 nativeBuildInputs = [ installShellFiles ]; 25 25 26 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ AppKit ]; 26 + buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 27 27 28 28 doCheck = false; 29 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 63 changelog = "https://github.com/leanprover/lean4/blob/${finalAttrs.src.rev}/RELEASES.md"; 64 64 license = licenses.asl20; 65 65 platforms = platforms.all; 66 - maintainers = with maintainers; [ danielbritten ]; 66 + maintainers = with maintainers; [ danielbritten jthulhu ]; 67 67 mainProgram = "lean"; 68 68 }; 69 69 })
+9 -6
pkgs/by-name/lo/localsend/package.nix
··· 15 15 16 16 let 17 17 pname = "localsend"; 18 - version = "1.15.4"; 18 + version = "1.16.1"; 19 19 20 20 linux = flutter324.buildFlutterApplication rec { 21 - inherit pname; 22 - version = "1.15.4-unstable-2024-10-26"; 21 + inherit pname version; 23 22 24 23 src = fetchFromGitHub { 25 24 owner = pname; 26 25 repo = pname; 27 - rev = "d0e864ddf6ebe1c55188b33f8fdccd534d203c75"; 28 - hash = "sha256-qaW9LoRQge4K/CAQwbjNxmlUkQmxvaZyBJdAjXbbTw4="; 26 + rev = "v${version}"; 27 + hash = "sha256-9nW1cynvRgX565ZupR+ogfDH9Qem+LQH4XZupVsrEWo="; 29 28 }; 30 29 31 30 sourceRoot = "${src.name}/app"; ··· 50 49 mkdir -p $d 51 50 cp ./assets/img/logo-''${s}.png $d/localsend.png 52 51 done 52 + ''; 53 + 54 + extraWrapProgramArgs = '' 55 + --prefix LD_LIBRARY_PATH : "$out/app/${pname}/lib" 53 56 ''; 54 57 55 58 desktopItems = [ ··· 79 82 80 83 src = fetchurl { 81 84 url = "https://github.com/localsend/localsend/releases/download/v${version}/LocalSend-${version}.dmg"; 82 - hash = "sha256-ZU2aXZNKo01TnXNH0e+r0l4J5HIILmGam3T4+6GaeA4="; 85 + hash = "sha256-kgq3AoypDdRwk9bKa1zjUJo4tHHUbDZIg0G0Rk9S3n4="; 83 86 }; 84 87 85 88 nativeBuildInputs = [
+285 -155
pkgs/by-name/lo/localsend/pubspec.lock.json
··· 30 30 "dependency": "transitive", 31 31 "description": { 32 32 "name": "animated_vector", 33 - "sha256": "e15c6596549ca6e2e7491c11fbe168a1dead87475a828a4bc81cf104feca0432", 33 + "sha256": "f1beb10e6fcfd8bd15abb788e20345def786d1c7391d7c1426bb2a1f2adf2132", 34 34 "url": "https://pub.dev" 35 35 }, 36 36 "source": "hosted", 37 - "version": "0.2.0" 37 + "version": "0.2.2" 38 38 }, 39 39 "animated_vector_annotations": { 40 40 "dependency": "transitive", 41 41 "description": { 42 42 "name": "animated_vector_annotations", 43 - "sha256": "baa6b4ed98407220f2c9634f7da3cfa5eedb46798e090466f441e666e2f7c8c0", 43 + "sha256": "07c1ea603a2096f7eb6f1c2b8f16c3c330c680843ea78b7782a3217c3c53f979", 44 44 "url": "https://pub.dev" 45 45 }, 46 46 "source": "hosted", 47 - "version": "0.2.0" 47 + "version": "0.2.2" 48 48 }, 49 49 "ansicolor": { 50 50 "dependency": "transitive", ··· 70 70 "dependency": "transitive", 71 71 "description": { 72 72 "name": "args", 73 - "sha256": "7cf60b9f0cc88203c5a190b4cd62a99feea42759a7fa695010eb5de1c0b2252a", 73 + "sha256": "bf9f5caeea8d8fe6721a9c358dd8a5c1947b27f1cfaa18b39c301273594919e6", 74 74 "url": "https://pub.dev" 75 75 }, 76 76 "source": "hosted", 77 - "version": "2.5.0" 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" 78 88 }, 79 89 "async": { 80 90 "dependency": "transitive", ··· 116 126 "source": "hosted", 117 127 "version": "2.4.1" 118 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 + }, 119 139 "build_config": { 120 140 "dependency": "transitive", 121 141 "description": { ··· 220 240 "dependency": "transitive", 221 241 "description": { 222 242 "name": "code_builder", 223 - "sha256": "f692079e25e7869c14132d39f223f8eec9830eb76131925143b2129c4bb01b37", 243 + "sha256": "0ec10bf4a89e4c613960bf1e8b42c64127021740fb21640c29c909826a5eea3e", 224 244 "url": "https://pub.dev" 225 245 }, 226 246 "source": "hosted", 227 - "version": "4.10.0" 247 + "version": "4.10.1" 228 248 }, 229 249 "collection": { 230 250 "dependency": "direct main", ··· 259 279 "dependency": "direct main", 260 280 "description": { 261 281 "name": "connectivity_plus", 262 - "sha256": "2056db5241f96cdc0126bd94459fc4cdc13876753768fc7a31c425e50a7177d0", 282 + "sha256": "876849631b0c7dc20f8b471a2a03142841b482438e3b707955464f5ffca3e4c3", 263 283 "url": "https://pub.dev" 264 284 }, 265 285 "source": "hosted", 266 - "version": "6.0.5" 286 + "version": "6.1.0" 267 287 }, 268 288 "connectivity_plus_platform_interface": { 269 289 "dependency": "transitive", ··· 279 299 "dependency": "transitive", 280 300 "description": { 281 301 "name": "convert", 282 - "sha256": "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592", 302 + "sha256": "b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68", 283 303 "url": "https://pub.dev" 284 304 }, 285 305 "source": "hosted", 286 - "version": "3.1.1" 306 + "version": "3.1.2" 287 307 }, 288 308 "coverage": { 289 309 "dependency": "transitive", 290 310 "description": { 291 311 "name": "coverage", 292 - "sha256": "c1fb2dce3c0085f39dc72668e85f8e0210ec7de05345821ff58530567df345a5", 312 + "sha256": "88b0fddbe4c92910fefc09cc0248f5e7f0cd23e450ded4c28f16ab8ee8f83268", 293 313 "url": "https://pub.dev" 294 314 }, 295 315 "source": "hosted", 296 - "version": "1.9.2" 316 + "version": "1.10.0" 297 317 }, 298 318 "cross_file": { 299 319 "dependency": "transitive", ··· 309 329 "dependency": "transitive", 310 330 "description": { 311 331 "name": "crypto", 312 - "sha256": "ec30d999af904f33454ba22ed9a86162b35e52b44ac4807d1d93c288041d7d27", 332 + "sha256": "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855", 313 333 "url": "https://pub.dev" 314 334 }, 315 335 "source": "hosted", 316 - "version": "3.0.5" 336 + "version": "3.0.6" 317 337 }, 318 338 "csslib": { 319 339 "dependency": "transitive", 320 340 "description": { 321 341 "name": "csslib", 322 - "sha256": "706b5707578e0c1b4b7550f64078f0a0f19dec3f50a178ffae7006b0a9ca58fb", 342 + "sha256": "09bad715f418841f976c77db72d5398dc1253c21fb9c0c7f0b0b985860b2d58e", 323 343 "url": "https://pub.dev" 324 344 }, 325 345 "source": "hosted", 326 - "version": "1.0.0" 346 + "version": "1.0.2" 327 347 }, 328 348 "csv": { 329 349 "dependency": "transitive", ··· 339 359 "dependency": "direct main", 340 360 "description": { 341 361 "name": "dart_mappable", 342 - "sha256": "47269caf2060533c29b823ff7fa9706502355ffcb61e7f2a374e3a0fb2f2c3f0", 362 + "sha256": "f69a961ae8589724ebb542e588f228ae844c5f78028899cbe2cc718977c1b382", 343 363 "url": "https://pub.dev" 344 364 }, 345 365 "source": "hosted", 346 - "version": "4.2.2" 366 + "version": "4.3.0" 347 367 }, 348 368 "dart_mappable_builder": { 349 369 "dependency": "direct dev", 350 370 "description": { 351 371 "name": "dart_mappable_builder", 352 - "sha256": "ab5cf9086862d3fceb9773e945b5f95cc5471a28c782a4fc451bd400a4e0c64e", 372 + "sha256": "04a6e7117382f8a8689b3e363bee6c3de8c9ea4332e664148fe01bd576eb1126", 353 373 "url": "https://pub.dev" 354 374 }, 355 375 "source": "hosted", 356 - "version": "4.2.3" 376 + "version": "4.3.0" 357 377 }, 358 378 "dart_style": { 359 379 "dependency": "transitive", ··· 409 429 "dependency": "direct main", 410 430 "description": { 411 431 "name": "device_info_plus", 412 - "sha256": "a7fd703482b391a87d60b6061d04dfdeab07826b96f9abd8f5ed98068acc0074", 432 + "sha256": "c4af09051b4f0508f6c1dc0a5c085bf014d5c9a4a0678ce1799c2b4d716387a0", 413 433 "url": "https://pub.dev" 414 434 }, 415 435 "source": "hosted", 416 - "version": "10.1.2" 436 + "version": "11.1.0" 417 437 }, 418 438 "device_info_plus_platform_interface": { 419 439 "dependency": "transitive", ··· 425 445 "source": "hosted", 426 446 "version": "7.0.1" 427 447 }, 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 448 "dynamic_color": { 449 449 "dependency": "direct main", 450 450 "description": { ··· 499 499 "dependency": "transitive", 500 500 "description": { 501 501 "name": "file", 502 - "sha256": "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c", 502 + "sha256": "a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4", 503 503 "url": "https://pub.dev" 504 504 }, 505 505 "source": "hosted", 506 - "version": "7.0.0" 506 + "version": "7.0.1" 507 507 }, 508 508 "file_picker": { 509 509 "dependency": "direct main", 510 510 "description": { 511 511 "name": "file_picker", 512 - "sha256": "167bb619cdddaa10ef2907609feb8a79c16dfa479d3afaf960f8e223f754bf12", 512 + "sha256": "aac85f20436608e01a6ffd1fdd4e746a7f33c93a2c83752e626bdfaea139b877", 513 513 "url": "https://pub.dev" 514 514 }, 515 515 "source": "hosted", 516 - "version": "8.1.2" 516 + "version": "8.1.3" 517 517 }, 518 518 "file_selector": { 519 519 "dependency": "direct main", ··· 529 529 "dependency": "transitive", 530 530 "description": { 531 531 "name": "file_selector_android", 532 - "sha256": "00aafa9ae05a8663d0b4f17abd2a02316911ca0f46f9b9dacb9578b324d99590", 532 + "sha256": "ec439df07c4999faad319ce8ad9e971795c2f1d7132ad5a793b9370a863c6128", 533 533 "url": "https://pub.dev" 534 534 }, 535 535 "source": "hosted", 536 - "version": "0.5.1+9" 536 + "version": "0.5.1+10" 537 537 }, 538 538 "file_selector_ios": { 539 539 "dependency": "transitive", ··· 599 599 "dependency": "transitive", 600 600 "description": { 601 601 "name": "fixnum", 602 - "sha256": "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1", 602 + "sha256": "b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be", 603 603 "url": "https://pub.dev" 604 604 }, 605 605 "source": "hosted", 606 - "version": "1.1.0" 606 + "version": "1.1.1" 607 607 }, 608 608 "flutter": { 609 609 "dependency": "direct main", ··· 625 625 "dependency": "transitive", 626 626 "description": { 627 627 "name": "flutter_gen_core", 628 - "sha256": "638d518897f1aefc55a24278968027591d50223a6943b6ae9aa576fe1494d99d", 628 + "sha256": "46ecf0e317413dd065547887c43f93f55e9653e83eb98dc13dd07d40dd225325", 629 629 "url": "https://pub.dev" 630 630 }, 631 631 "source": "hosted", 632 - "version": "5.7.0" 632 + "version": "5.8.0" 633 633 }, 634 634 "flutter_gen_runner": { 635 635 "dependency": "direct dev", 636 636 "description": { 637 637 "name": "flutter_gen_runner", 638 - "sha256": "7f2f02d95e3ec96cf70a1c515700c0dd3ea905af003303a55d6fb081240e6b8a", 638 + "sha256": "77f0a02fc30d9fcf2549fe874eb3fde091435724904bcbb1af60aa40cbfab1f4", 639 639 "url": "https://pub.dev" 640 640 }, 641 641 "source": "hosted", 642 - "version": "5.7.0" 642 + "version": "5.8.0" 643 643 }, 644 644 "flutter_lints": { 645 645 "dependency": "direct dev", 646 646 "description": { 647 647 "name": "flutter_lints", 648 - "sha256": "3f41d009ba7172d5ff9be5f6e6e6abb4300e263aab8866d2a0842ed2a70f8f0c", 648 + "sha256": "5398f14efa795ffb7a33e9b6a08798b26a180edac4ad7db3f231e40f82ce11e1", 649 649 "url": "https://pub.dev" 650 650 }, 651 651 "source": "hosted", 652 - "version": "4.0.0" 652 + "version": "5.0.0" 653 653 }, 654 654 "flutter_localizations": { 655 655 "dependency": "direct main", ··· 661 661 "dependency": "direct main", 662 662 "description": { 663 663 "name": "flutter_markdown", 664 - "sha256": "a23c41ee57573e62fc2190a1f36a0480c4d90bde3a8a8d7126e5d5992fb53fb7", 664 + "sha256": "f0e599ba89c9946c8e051780f0ec99aba4ba15895e0380a7ab68f420046fc44e", 665 665 "url": "https://pub.dev" 666 666 }, 667 667 "source": "hosted", 668 - "version": "0.7.3+1" 668 + "version": "0.7.4+1" 669 669 }, 670 670 "flutter_plugin_android_lifecycle": { 671 671 "dependency": "transitive", ··· 677 677 "source": "hosted", 678 678 "version": "2.0.23" 679 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 + }, 680 690 "flutter_test": { 681 691 "dependency": "transitive", 682 692 "description": "flutter", ··· 689 699 "source": "sdk", 690 700 "version": "0.0.0" 691 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 + }, 692 712 "frontend_server_client": { 693 713 "dependency": "transitive", 694 714 "description": { ··· 763 783 "dependency": "transitive", 764 784 "description": { 765 785 "name": "html", 766 - "sha256": "3a7812d5bcd2894edf53dfaf8cd640876cf6cef50a8f238745c8b8120ea74d3a", 786 + "sha256": "1fc58edeaec4307368c60d59b7e15b9d658b57d7f3125098b6294153c75337ec", 767 787 "url": "https://pub.dev" 768 788 }, 769 789 "source": "hosted", 770 - "version": "0.15.4" 790 + "version": "0.15.5" 771 791 }, 772 792 "http": { 773 793 "dependency": "transitive", ··· 813 833 "dependency": "transitive", 814 834 "description": { 815 835 "name": "image", 816 - "sha256": "2237616a36c0d69aef7549ab439b833fb7f9fb9fc861af2cc9ac3eedddd69ca8", 836 + "sha256": "f31d52537dc417fdcde36088fdf11d191026fd5e4fae742491ebd40e5a8bea7d", 817 837 "url": "https://pub.dev" 818 838 }, 819 839 "source": "hosted", 820 - "version": "4.2.0" 840 + "version": "4.3.0" 821 841 }, 822 842 "image_picker": { 823 843 "dependency": "direct main", ··· 833 853 "dependency": "transitive", 834 854 "description": { 835 855 "name": "image_picker_android", 836 - "sha256": "d3e5e00fdfeca8fd4ffb3227001264d449cc8950414c2ff70b0e06b9c628e643", 856 + "sha256": "8faba09ba361d4b246dc0a17cb4289b3324c2b9f6db7b3d457ee69106a86bd32", 837 857 "url": "https://pub.dev" 838 858 }, 839 859 "source": "hosted", 840 - "version": "0.8.12+15" 860 + "version": "0.8.12+17" 841 861 }, 842 862 "image_picker_for_web": { 843 863 "dependency": "transitive", 844 864 "description": { 845 865 "name": "image_picker_for_web", 846 - "sha256": "65d94623e15372c5c51bebbcb820848d7bcb323836e12dfdba60b5d3a8b39e50", 866 + "sha256": "717eb042ab08c40767684327be06a5d8dbb341fe791d514e4b92c7bbe1b7bb83", 847 867 "url": "https://pub.dev" 848 868 }, 849 869 "source": "hosted", 850 - "version": "3.0.5" 870 + "version": "3.0.6" 851 871 }, 852 872 "image_picker_ios": { 853 873 "dependency": "transitive", 854 874 "description": { 855 875 "name": "image_picker_ios", 856 - "sha256": "6703696ad49f5c3c8356d576d7ace84d1faf459afb07accbb0fae780753ff447", 876 + "sha256": "4f0568120c6fcc0aaa04511cb9f9f4d29fc3d0139884b1d06be88dcec7641d6b", 857 877 "url": "https://pub.dev" 858 878 }, 859 879 "source": "hosted", 860 - "version": "0.8.12" 880 + "version": "0.8.12+1" 861 881 }, 862 882 "image_picker_linux": { 863 883 "dependency": "transitive", ··· 923 943 "dependency": "transitive", 924 944 "description": { 925 945 "name": "in_app_purchase_android", 926 - "sha256": "bee60266e443d4ae0e4809bae7f9cd4d6be75ab5ec6bb3d2ca737774a274a3bd", 946 + "sha256": "81507c7cacc6fc45e7980f887d53566b2847ac02859d0156f171f5056c2dd1b7", 927 947 "url": "https://pub.dev" 928 948 }, 929 949 "source": "hosted", 930 - "version": "0.3.6+9" 950 + "version": "0.3.6+11" 931 951 }, 932 952 "in_app_purchase_platform_interface": { 933 953 "dependency": "transitive", ··· 943 963 "dependency": "transitive", 944 964 "description": { 945 965 "name": "in_app_purchase_storekit", 946 - "sha256": "e9a408da11d055f9af9849859e1251b2b0a2f84f256fa3bf1285c5614a397079", 966 + "sha256": "96cfa71121f4294079586a2fab7363b01bdb4c3381d9b397012c2580b391281d", 947 967 "url": "https://pub.dev" 948 968 }, 949 969 "source": "hosted", 950 - "version": "0.3.18+1" 970 + "version": "0.3.18+3" 951 971 }, 952 972 "intl": { 953 973 "dependency": "direct main", ··· 1043 1063 "dependency": "transitive", 1044 1064 "description": { 1045 1065 "name": "lints", 1046 - "sha256": "976c774dd944a42e83e2467f4cc670daef7eed6295b10b36ae8c85bcbf828235", 1066 + "sha256": "3315600f3fb3b135be672bf4a178c55f274bebe368325ae18462c89ac1e3b413", 1047 1067 "url": "https://pub.dev" 1048 1068 }, 1049 1069 "source": "hosted", 1050 - "version": "4.0.0" 1070 + "version": "5.0.0" 1051 1071 }, 1052 1072 "logging": { 1053 1073 "dependency": "direct main", 1054 1074 "description": { 1055 1075 "name": "logging", 1056 - "sha256": "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340", 1076 + "sha256": "c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61", 1057 1077 "url": "https://pub.dev" 1058 1078 }, 1059 1079 "source": "hosted", 1060 - "version": "1.2.0" 1080 + "version": "1.3.0" 1061 1081 }, 1062 1082 "macros": { 1063 1083 "dependency": "transitive", ··· 1099 1119 "source": "hosted", 1100 1120 "version": "0.11.1" 1101 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 + }, 1102 1132 "menu_base": { 1103 1133 "dependency": "transitive", 1104 1134 "description": { ··· 1163 1193 "dependency": "direct main", 1164 1194 "description": { 1165 1195 "name": "network_info_plus", 1166 - "sha256": "6a31fa47c1f6e240f1b60de0a57d65a092ac1af7515247660f03643576984eb8", 1196 + "sha256": "89bad7bf9614e78716f0f86c905fe2a850dbdcc00c377968d5260c49c2c6f2eb", 1167 1197 "url": "https://pub.dev" 1168 1198 }, 1169 1199 "source": "hosted", 1170 - "version": "6.0.1" 1200 + "version": "6.1.0" 1171 1201 }, 1172 1202 "network_info_plus_platform_interface": { 1173 1203 "dependency": "transitive", ··· 1199 1229 "source": "hosted", 1200 1230 "version": "2.0.2" 1201 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 + }, 1202 1282 "open_filex": { 1203 1283 "dependency": "direct main", 1204 1284 "description": { ··· 1223 1303 "dependency": "direct main", 1224 1304 "description": { 1225 1305 "name": "package_info_plus", 1226 - "sha256": "a75164ade98cb7d24cfd0a13c6408927c6b217fa60dee5a7ff5c116a58f28918", 1306 + "sha256": "df3eb3e0aed5c1107bb0fdb80a8e82e778114958b1c5ac5644fb1ac9cae8a998", 1227 1307 "url": "https://pub.dev" 1228 1308 }, 1229 1309 "source": "hosted", 1230 - "version": "8.0.2" 1310 + "version": "8.1.0" 1231 1311 }, 1232 1312 "package_info_plus_platform_interface": { 1233 1313 "dependency": "transitive", ··· 1264 1344 "dependency": "transitive", 1265 1345 "description": { 1266 1346 "name": "path_parsing", 1267 - "sha256": "e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf", 1347 + "sha256": "883402936929eac138ee0a45da5b0f2c80f89913e6dc3bf77eb65b84b409c6ca", 1268 1348 "url": "https://pub.dev" 1269 1349 }, 1270 1350 "source": "hosted", 1271 - "version": "1.0.1" 1351 + "version": "1.1.0" 1272 1352 }, 1273 1353 "path_provider": { 1274 1354 "dependency": "direct main", 1275 1355 "description": { 1276 1356 "name": "path_provider", 1277 - "sha256": "fec0d61223fba3154d87759e3cc27fe2c8dc498f6386c6d6fc80d1afdd1bf378", 1357 + "sha256": "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd", 1278 1358 "url": "https://pub.dev" 1279 1359 }, 1280 1360 "source": "hosted", 1281 - "version": "2.1.4" 1361 + "version": "2.1.5" 1282 1362 }, 1283 1363 "path_provider_android": { 1284 1364 "dependency": "transitive", ··· 1344 1424 "dependency": "transitive", 1345 1425 "description": { 1346 1426 "name": "permission_handler_android", 1347 - "sha256": "76e4ab092c1b240d31177bb64d2b0bea43f43d0e23541ec866151b9f7b2490fa", 1427 + "sha256": "71bbecfee799e65aff7c744761a57e817e73b738fedf62ab7afd5593da21f9f1", 1348 1428 "url": "https://pub.dev" 1349 1429 }, 1350 1430 "source": "hosted", 1351 - "version": "12.0.12" 1431 + "version": "12.0.13" 1352 1432 }, 1353 1433 "permission_handler_apple": { 1354 1434 "dependency": "transitive", ··· 1405 1485 "dependency": "transitive", 1406 1486 "description": { 1407 1487 "name": "photo_manager", 1408 - "sha256": "32a1ce1095aeaaa792a29f28c1f74613aa75109f21c2d4ab85be3ad9964230a4", 1488 + "sha256": "f5ef2618870e9a50d8bfeb81a02c242d580ae8614bd5ea9e1b80dbb7e49d4260", 1409 1489 "url": "https://pub.dev" 1410 1490 }, 1411 1491 "source": "hosted", 1412 - "version": "3.5.0" 1492 + "version": "3.6.1" 1413 1493 }, 1414 1494 "photo_manager_image_provider": { 1415 1495 "dependency": "transitive", 1416 1496 "description": { 1417 1497 "name": "photo_manager_image_provider", 1418 - "sha256": "b0a6d59f34e48c2b9aa52a4a655308c29b0fc4b3931607f9e0e252bc49aef974", 1498 + "sha256": "b6015b67b32f345f57cf32c126f871bced2501236c405aafaefa885f7c821e4f", 1419 1499 "url": "https://pub.dev" 1420 1500 }, 1421 1501 "source": "hosted", 1422 - "version": "2.1.2" 1502 + "version": "2.2.0" 1423 1503 }, 1424 1504 "platform": { 1425 1505 "dependency": "transitive", 1426 1506 "description": { 1427 1507 "name": "platform", 1428 - "sha256": "9b71283fc13df574056616011fb138fd3b793ea47cc509c189a6c3fa5f8a1a65", 1508 + "sha256": "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984", 1429 1509 "url": "https://pub.dev" 1430 1510 }, 1431 1511 "source": "hosted", 1432 - "version": "3.1.5" 1512 + "version": "3.1.6" 1433 1513 }, 1434 1514 "platform_linux": { 1435 1515 "dependency": "transitive", ··· 1545 1625 "dependency": "direct dev", 1546 1626 "description": { 1547 1627 "name": "refena_inspector", 1548 - "sha256": "c682581e2c2e8f641f5366cd079c0db1cab33a58ec160464d03d02019e92acd2", 1628 + "sha256": "c7c93884392493dd6a0ef8762eaaf6a45a64480b11f22f48b8547ef52916496b", 1549 1629 "url": "https://pub.dev" 1550 1630 }, 1551 1631 "source": "hosted", 1552 - "version": "2.0.0" 1632 + "version": "2.0.2" 1553 1633 }, 1554 1634 "refena_inspector_client": { 1555 1635 "dependency": "direct main", 1556 1636 "description": { 1557 1637 "name": "refena_inspector_client", 1558 - "sha256": "f211414cd0c45a18fa482b8fbc0d8ee3b0383cda2979f127320134c4ffa8cafb", 1638 + "sha256": "8bcc1e169bfc0e5ba448f4920067a0579c0b4a42fff39dbdfd4a743bf2b235a6", 1559 1639 "url": "https://pub.dev" 1560 1640 }, 1561 1641 "source": "hosted", 1562 - "version": "2.0.0" 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" 1563 1653 }, 1564 1654 "routerino": { 1565 1655 "dependency": "direct main", ··· 1575 1665 "dependency": "direct main", 1576 1666 "description": { 1577 1667 "name": "saf_stream", 1578 - "sha256": "f3ece997ab9202192be0e4b55bfc95a744fb67be9cdf1c72650c60613befd63c", 1668 + "sha256": "d90bcbf0fe9e99065e3bab5d5711551b1911ed2001ad8cf94258081ed6f6b7b2", 1579 1669 "url": "https://pub.dev" 1580 1670 }, 1581 1671 "source": "hosted", 1582 - "version": "0.7.5" 1672 + "version": "0.10.0" 1583 1673 }, 1584 1674 "screen_retriever": { 1585 1675 "dependency": "direct main", 1586 1676 "description": { 1587 1677 "name": "screen_retriever", 1588 - "sha256": "6ee02c8a1158e6dae7ca430da79436e3b1c9563c8cf02f524af997c201ac2b90", 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", 1589 1709 "url": "https://pub.dev" 1590 1710 }, 1591 1711 "source": "hosted", 1592 - "version": "0.1.9" 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" 1593 1723 }, 1594 1724 "share_handler": { 1595 1725 "dependency": "direct main", 1596 1726 "description": { 1597 1727 "name": "share_handler", 1598 - "sha256": "2350c7f22579cb753323c533fde05c48e42ec717f76c7090dacd7a9eb0ec68b0", 1728 + "sha256": "76575533be04df3fecbebd3c5b5325a8271b5973131f8b8b0ab8490c395a5d37", 1599 1729 "url": "https://pub.dev" 1600 1730 }, 1601 1731 "source": "hosted", 1602 - "version": "0.0.19" 1732 + "version": "0.0.22" 1603 1733 }, 1604 1734 "share_handler_android": { 1605 1735 "dependency": "transitive", ··· 1612 1742 "version": "0.0.9" 1613 1743 }, 1614 1744 "share_handler_ios": { 1615 - "dependency": "direct main", 1745 + "dependency": "transitive", 1616 1746 "description": { 1617 1747 "name": "share_handler_ios", 1618 - "sha256": "522e5284ef186e83c34acea16fd65469db56a78a4c932c95e71a5be8a0e02d51", 1748 + "sha256": "cdc21f88f336a944157a8e9ceb191525cee3b082d6eb6c2082488e4f09dc3ece", 1619 1749 "url": "https://pub.dev" 1620 1750 }, 1621 1751 "source": "hosted", 1622 - "version": "0.0.12" 1752 + "version": "0.0.15" 1623 1753 }, 1624 1754 "share_handler_platform_interface": { 1625 1755 "dependency": "transitive", ··· 1745 1875 "dependency": "transitive", 1746 1876 "description": { 1747 1877 "name": "shelf_web_socket", 1748 - "sha256": "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1", 1878 + "sha256": "073c147238594ecd0d193f3456a5fe91c4b0abbcc68bf5cd95b36c4e194ac611", 1749 1879 "url": "https://pub.dev" 1750 1880 }, 1751 1881 "source": "hosted", 1752 - "version": "1.0.4" 1882 + "version": "2.0.0" 1753 1883 }, 1754 1884 "shortid": { 1755 1885 "dependency": "transitive", ··· 1771 1901 "dependency": "direct main", 1772 1902 "description": { 1773 1903 "name": "slang", 1774 - "sha256": "a2f704508bf9f209b71c881347bd27de45309651e9bd63570e4dd6ed2a77fbd2", 1904 + "sha256": "b04db2dbaf927b28600a2f8a272a3bf2ae309556dcc5d6beb02d66af0be39e4c", 1775 1905 "url": "https://pub.dev" 1776 1906 }, 1777 1907 "source": "hosted", 1778 - "version": "3.31.2" 1908 + "version": "4.1.0" 1779 1909 }, 1780 1910 "slang_build_runner": { 1781 1911 "dependency": "direct dev", 1782 1912 "description": { 1783 1913 "name": "slang_build_runner", 1784 - "sha256": "6e60160e8000b91824c47221b20d9642e7408287a5a21837ecefc75270197586", 1914 + "sha256": "6338653769ab088ad222e84b1f382fffb867a9a3ead802960aa4d0ab45a62f5f", 1785 1915 "url": "https://pub.dev" 1786 1916 }, 1787 1917 "source": "hosted", 1788 - "version": "3.31.0" 1918 + "version": "4.1.0" 1789 1919 }, 1790 1920 "slang_flutter": { 1791 1921 "dependency": "direct main", 1792 1922 "description": { 1793 1923 "name": "slang_flutter", 1794 - "sha256": "f8400292be49c11697d94af58d7f7d054c91af759f41ffe71e4e5413871ffc62", 1924 + "sha256": "59988f37bb8b50d96ee46832a8a389036c0da26c04b1b1d4aa6690c00f70eccf", 1795 1925 "url": "https://pub.dev" 1796 1926 }, 1797 1927 "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" 1928 + "version": "4.1.0" 1809 1929 }, 1810 1930 "source_gen": { 1811 1931 "dependency": "transitive", ··· 1971 2091 "dependency": "direct main", 1972 2092 "description": { 1973 2093 "name": "tray_manager", 1974 - "sha256": "c9a63fd88bd3546287a7eb8ccc978d707eef82c775397af17dda3a4f4c039e64", 2094 + "sha256": "bdc3ac6c36f3d12d871459e4a9822705ce5a1165a17fa837103bc842719bf3f7", 1975 2095 "url": "https://pub.dev" 1976 2096 }, 1977 2097 "source": "hosted", 1978 - "version": "0.2.3" 2098 + "version": "0.2.4" 1979 2099 }, 1980 2100 "type_plus": { 1981 2101 "dependency": "transitive", ··· 1991 2111 "dependency": "transitive", 1992 2112 "description": { 1993 2113 "name": "typed_data", 1994 - "sha256": "facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c", 2114 + "sha256": "f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006", 1995 2115 "url": "https://pub.dev" 1996 2116 }, 1997 2117 "source": "hosted", 1998 - "version": "1.3.2" 2118 + "version": "1.4.0" 1999 2119 }, 2000 2120 "uri_content": { 2001 2121 "dependency": "direct main", ··· 2011 2131 "dependency": "direct main", 2012 2132 "description": { 2013 2133 "name": "url_launcher", 2014 - "sha256": "21b704ce5fa560ea9f3b525b43601c678728ba46725bab9b01187b4831377ed3", 2134 + "sha256": "9d06212b1362abc2f0f0d78e6f09f726608c74e3b9462e8368bb03314aa8d603", 2015 2135 "url": "https://pub.dev" 2016 2136 }, 2017 2137 "source": "hosted", 2018 - "version": "6.3.0" 2138 + "version": "6.3.1" 2019 2139 }, 2020 2140 "url_launcher_android": { 2021 2141 "dependency": "transitive", 2022 2142 "description": { 2023 2143 "name": "url_launcher_android", 2024 - "sha256": "8fc3bae0b68c02c47c5c86fa8bfa74471d42687b0eded01b78de87872db745e2", 2144 + "sha256": "6fc2f56536ee873eeb867ad176ae15f304ccccc357848b351f6f0d8d4a40d193", 2025 2145 "url": "https://pub.dev" 2026 2146 }, 2027 2147 "source": "hosted", 2028 - "version": "6.3.12" 2148 + "version": "6.3.14" 2029 2149 }, 2030 2150 "url_launcher_ios": { 2031 2151 "dependency": "transitive", ··· 2081 2201 "dependency": "transitive", 2082 2202 "description": { 2083 2203 "name": "url_launcher_windows", 2084 - "sha256": "49c10f879746271804767cb45551ec5592cdab00ee105c06dddde1a98f73b185", 2204 + "sha256": "44cf3aabcedde30f2dba119a9dea3b0f2672fbe6fa96e85536251d678216b3c4", 2085 2205 "url": "https://pub.dev" 2086 2206 }, 2087 2207 "source": "hosted", 2088 - "version": "3.1.2" 2208 + "version": "3.1.3" 2089 2209 }, 2090 2210 "uuid": { 2091 2211 "dependency": "direct main", 2092 2212 "description": { 2093 2213 "name": "uuid", 2094 - "sha256": "f33d6bb662f0e4f79dcd7ada2e6170f3b3a2530c28fc41f49a411ddedd576a77", 2214 + "sha256": "a5be9ef6618a7ac1e964353ef476418026db906c4facdedaa299b7a2e71690ff", 2095 2215 "url": "https://pub.dev" 2096 2216 }, 2097 2217 "source": "hosted", 2098 - "version": "4.5.0" 2218 + "version": "4.5.1" 2099 2219 }, 2100 2220 "vector_graphics_codec": { 2101 2221 "dependency": "transitive", 2102 2222 "description": { 2103 2223 "name": "vector_graphics_codec", 2104 - "sha256": "c86987475f162fadff579e7320c7ddda04cd2fdeffbe1129227a85d9ac9e03da", 2224 + "sha256": "2430b973a4ca3c4dbc9999b62b8c719a160100dcbae5c819bae0cacce32c9cdb", 2105 2225 "url": "https://pub.dev" 2106 2226 }, 2107 2227 "source": "hosted", 2108 - "version": "1.1.11+1" 2228 + "version": "1.1.12" 2109 2229 }, 2110 2230 "vector_graphics_compiler": { 2111 2231 "dependency": "transitive", 2112 2232 "description": { 2113 2233 "name": "vector_graphics_compiler", 2114 - "sha256": "12faff3f73b1741a36ca7e31b292ddeb629af819ca9efe9953b70bd63fc8cd81", 2234 + "sha256": "26d520739b7c6b5d2a2b3274427874a8390831fd4cd5bb8cfbd7d913477d3a2e", 2115 2235 "url": "https://pub.dev" 2116 2236 }, 2117 2237 "source": "hosted", 2118 - "version": "1.1.11+1" 2238 + "version": "1.1.14" 2119 2239 }, 2120 2240 "vector_math": { 2121 2241 "dependency": "transitive", ··· 2141 2261 "dependency": "transitive", 2142 2262 "description": { 2143 2263 "name": "video_player_android", 2144 - "sha256": "ae5287ca367e206eb74d7b3dc1ce0b8912ab9a3fc0597b6a101a0a5239f229d3", 2264 + "sha256": "391e092ba4abe2f93b3e625bd6b6a6ec7d7414279462c1c0ee42b5ab8d0a0898", 2145 2265 "url": "https://pub.dev" 2146 2266 }, 2147 2267 "source": "hosted", 2148 - "version": "2.7.9" 2268 + "version": "2.7.16" 2149 2269 }, 2150 2270 "video_player_avfoundation": { 2151 2271 "dependency": "transitive", ··· 2171 2291 "dependency": "transitive", 2172 2292 "description": { 2173 2293 "name": "video_player_web", 2174 - "sha256": "6dcdd298136523eaf7dfc31abaf0dfba9aa8a8dbc96670e87e9d42b6f2caf774", 2294 + "sha256": "881b375a934d8ebf868c7fb1423b2bfaa393a0a265fa3f733079a86536064a10", 2175 2295 "url": "https://pub.dev" 2176 2296 }, 2177 2297 "source": "hosted", 2178 - "version": "2.3.2" 2298 + "version": "2.3.3" 2179 2299 }, 2180 2300 "visibility_detector": { 2181 2301 "dependency": "transitive", ··· 2237 2357 "source": "hosted", 2238 2358 "version": "1.1.0" 2239 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 + }, 2240 2370 "web_socket_channel": { 2241 2371 "dependency": "transitive", 2242 2372 "description": { 2243 2373 "name": "web_socket_channel", 2244 - "sha256": "d88238e5eac9a42bb43ca4e721edba3c08c6354d4a53063afaa568516217621b", 2374 + "sha256": "9f187088ed104edd8662ca07af4b124465893caf063ba29758f97af57e61da8f", 2245 2375 "url": "https://pub.dev" 2246 2376 }, 2247 2377 "source": "hosted", 2248 - "version": "2.4.0" 2378 + "version": "3.0.1" 2249 2379 }, 2250 2380 "webkit_inspection_protocol": { 2251 2381 "dependency": "transitive", ··· 2261 2391 "dependency": "direct main", 2262 2392 "description": { 2263 2393 "name": "wechat_assets_picker", 2264 - "sha256": "e97f0402c5cd5fc75c90f3395874f8c94a60a59e4f206ad5d3f005d48d54e976", 2394 + "sha256": "c7d925dfe0f94666a35d4a9791f6dfcb6ff137eb040057adbddd1638f50e65c2", 2265 2395 "url": "https://pub.dev" 2266 2396 }, 2267 2397 "source": "hosted", 2268 - "version": "9.3.0" 2398 + "version": "9.3.3" 2269 2399 }, 2270 2400 "wechat_picker_library": { 2271 2401 "dependency": "transitive", ··· 2281 2411 "dependency": "transitive", 2282 2412 "description": { 2283 2413 "name": "win32", 2284 - "sha256": "4d45dc9069dba4619dc0ebd93c7cec5e66d8482cb625a370ac806dcc8165f2ec", 2414 + "sha256": "84ba388638ed7a8cb3445a320c8273136ab2631cd5f2c57888335504ddab1bc2", 2285 2415 "url": "https://pub.dev" 2286 2416 }, 2287 2417 "source": "hosted", 2288 - "version": "5.5.5" 2418 + "version": "5.8.0" 2289 2419 }, 2290 2420 "win32_registry": { 2291 2421 "dependency": "direct main", ··· 2301 2431 "dependency": "direct main", 2302 2432 "description": { 2303 2433 "name": "window_manager", 2304 - "sha256": "ab8b2a7f97543d3db2b506c9d875e637149d48ee0c6a5cb5f5fd6e0dac463792", 2434 + "sha256": "732896e1416297c63c9e3fb95aea72d0355f61390263982a47fd519169dc5059", 2305 2435 "url": "https://pub.dev" 2306 2436 }, 2307 2437 "source": "hosted", 2308 - "version": "0.4.2" 2438 + "version": "0.4.3" 2309 2439 }, 2310 2440 "windows_taskbar": { 2311 2441 "dependency": "direct main", ··· 2351 2481 "dependency": "direct main", 2352 2482 "description": { 2353 2483 "name": "yaru", 2354 - "sha256": "9e07131b9c3b9997d7784c3cb6ad24a218f8e0507d82f8fb07b7e160e111236d", 2484 + "sha256": "afc659f78a0bef5e06ebbbd516979afceca7526b7703daa444bf419a54b2dc85", 2355 2485 "url": "https://pub.dev" 2356 2486 }, 2357 2487 "source": "hosted", 2358 - "version": "5.2.1" 2488 + "version": "5.3.2" 2359 2489 }, 2360 2490 "yaru_window": { 2361 2491 "dependency": "transitive",
+3 -3
pkgs/by-name/st/storj-uplink/package.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "storj-uplink"; 8 - version = "1.114.3"; 8 + version = "1.116.5"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "storj"; 12 12 repo = "storj"; 13 13 rev = "v${version}"; 14 - hash = "sha256-V7Vl2sViRl6olhCdJF4xtR7iyJCqJCrm39/Aq1T9GFQ="; 14 + hash = "sha256-vQftcQU7WUDfVFKYswtpEHbSyReIcWF83vEQrEbzbHk="; 15 15 }; 16 16 17 17 subPackages = [ "cmd/uplink" ]; 18 18 19 - vendorHash = "sha256-+eqT3VNqw3fOLwfCKPacIEcoXjuzPaY1EAZI95rgLDs="; 19 + vendorHash = "sha256-4wkgQQGbQi9ZcBaExRQysL6r/rJZez9z7keaJReuAeg="; 20 20 21 21 ldflags = [ "-s" "-w" ]; 22 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 6 matrix = callPackage ./matrix { }; 7 7 media_kit_libs_linux = callPackage ./media_kit_libs_linux { }; 8 8 olm = callPackage ./olm { }; 9 + rhttp = callPackage ./rhttp { }; 9 10 sqlcipher_flutter_libs = callPackage ./sqlcipher_flutter_libs { }; 10 11 sqlite3 = callPackage ./sqlite3 { }; 11 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 12 13 13 buildPythonPackage rec { 14 14 pname = "ayla-iot-unofficial"; 15 - version = "1.4.3"; 15 + version = "1.4.4"; 16 16 pyproject = true; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "rewardone"; 20 20 repo = "ayla-iot-unofficial"; 21 21 rev = "refs/tags/v${version}"; 22 - hash = "sha256-y2SjnM48OYyXhBxLHE8R9di4ErORUgS87m/FKs21NLU="; 22 + hash = "sha256-LYHfu02FYoL2D9dEL3CM3llRXMa2M3EMU9CAsl1Cgoo="; 23 23 }; 24 24 25 25 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pipenv-poetry-migrate/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "pipenv-poetry-migrate"; 15 - version = "0.5.10"; 15 + version = "0.5.11"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.8"; ··· 21 21 owner = "yhino"; 22 22 repo = "pipenv-poetry-migrate"; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-ROi5Yj4Ht91Go2jkm6BQZyaJWtBKHk4ar1ly8jAPGlc="; 24 + hash = "sha256-du2OJ9gevPr7LOv88aXuq+e3YfD2eNoBp/ppEs522ws="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ poetry-core ];
+7 -7
pkgs/development/python-modules/vulcan-api/default.nix
··· 4 4 aiodns, 5 5 aiohttp, 6 6 buildPythonPackage, 7 + setuptools, 7 8 faust-cchardet, 8 9 fetchFromGitHub, 9 10 pyopenssl, 10 11 pythonOlder, 11 12 pytz, 12 13 related, 13 - requests, 14 14 uonet-request-signer-hebe, 15 15 yarl, 16 16 }: 17 17 18 18 buildPythonPackage rec { 19 19 pname = "vulcan-api"; 20 - version = "2.4.0"; 21 - format = "setuptools"; 20 + version = "2.4.1"; 21 + pyproject = true; 22 22 23 23 disabled = pythonOlder "3.6"; 24 24 ··· 26 26 owner = "kapi2289"; 27 27 repo = pname; 28 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-RtB67Pme/qtKG0T3rzm0OeewNZPg2e3aebL5YnSWWFQ="; 29 + hash = "sha256-FEWm5DvnrEIelRnu/IgWU7h1CTvPQcZ3DbFS2swy/wQ="; 30 30 }; 31 31 32 - pythonRemoveDeps = [ "faust-cchardet" ]; 32 + pythonRemoveDeps = [ "related-without-future" ]; 33 33 34 + build-system = [ setuptools ]; 34 35 35 - propagatedBuildInputs = [ 36 + dependencies = [ 36 37 aenum 37 38 aiodns 38 39 aiohttp ··· 40 41 pyopenssl 41 42 pytz 42 43 related 43 - requests 44 44 uonet-request-signer-hebe 45 45 yarl 46 46 ];
+1 -7
pkgs/top-level/all-packages.nix
··· 1250 1250 1251 1251 gita = python3Packages.callPackage ../applications/version-management/gita { }; 1252 1252 1253 - gitoxide = darwin.apple_sdk_11_0.callPackage ../applications/version-management/gitoxide { 1254 - inherit (darwin.apple_sdk_11_0.frameworks) Security SystemConfiguration; 1255 - }; 1253 + gitoxide = callPackage ../applications/version-management/gitoxide { }; 1256 1254 1257 1255 github-cli = gh; 1258 1256 git-absorb = callPackage ../applications/version-management/git-absorb { ··· 13877 13875 drawterm-wayland = callPackage ../tools/admin/drawterm { config = "linux"; }; 13878 13876 13879 13877 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 13878 13885 13879 dexed = darwin.apple_sdk_11_0.callPackage ../applications/audio/dexed { 13886 13880 inherit (darwin.apple_sdk_11_0.frameworks) Accelerate Cocoa WebKit MetalKit DiscRecording CoreAudioKit;