Merge master into staging-next

authored by github-actions[bot] and committed by GitHub ce84b137 e3e1b16e

+2359 -1091
+29
doc/languages-frameworks/chicken.section.md
··· 47 47 The first section of this file lists eggs which are required by `egg2nix` 48 48 itself; all other eggs go into the second section. After editing, follow the 49 49 procedure for updating eggs. 50 + 51 + ## Override Scope {#sec-chicken-override-scope} 52 + 53 + The chicken package and its eggs, respectively, reside in a scope. This means, 54 + the scope can be overridden to effect other packages in it. 55 + 56 + This example shows how to use a local copy of `srfi-180` and have it affect 57 + all the other eggs: 58 + 59 + ```nix 60 + let 61 + myChickenPackages = pkgs.chickenPackages.overrideScope' (self: super: { 62 + # The chicken package itself can be overridden to effect the whole ecosystem. 63 + # chicken = super.chicken.overrideAttrs { 64 + # src = ... 65 + # }; 66 + 67 + chickenEggs = super.chickenEggs.overrideScope' (eggself: eggsuper: { 68 + srfi-180 = eggsuper.srfi-180.overrideAttrs { 69 + # path to a local copy of srfi-180 70 + src = ... 71 + }; 72 + }); 73 + }); 74 + in 75 + # Here, `myChickenPackages.chickenEggs.json-rpc`, which depends on `srfi-180` will use 76 + # the local copy of `srfi-180`. 77 + # ... 78 + ```
+9
maintainers/maintainer-list.nix
··· 17613 17613 github = "twitchyliquid64"; 17614 17614 githubId = 6328589; 17615 17615 }; 17616 + twz123 = { 17617 + name = "Tom Wieczorek"; 17618 + email = "tom@bibbu.net"; 17619 + github = "twz123"; 17620 + githubId = 1215104; 17621 + keys = [{ 17622 + fingerprint = "B1FD 4E2A 84B2 2379 F4BF 2EF5 FE33 A228 2371 E831"; 17623 + }]; 17624 + }; 17616 17625 tylerjl = { 17617 17626 email = "tyler+nixpkgs@langlois.to"; 17618 17627 github = "tylerjl";
+1 -1
nixos/modules/services/networking/privoxy.nix
··· 12 12 else "${name} ${toString val}\n"; 13 13 14 14 configType = with types; 15 - let atom = oneOf [ int bool string path ]; 15 + let atom = oneOf [ int bool str path ]; 16 16 in attrsOf (either atom (listOf atom)) 17 17 // { description = '' 18 18 privoxy configuration type. The format consists of an attribute
+2 -1
pkgs/applications/file-managers/joshuto/default.nix
··· 22 22 homepage = "https://github.com/kamiyaa/joshuto"; 23 23 changelog = "https://github.com/kamiyaa/joshuto/releases/tag/${src.rev}"; 24 24 license = licenses.lgpl3Only; 25 - maintainers = with maintainers; [ figsoda totoroot ]; 25 + maintainers = with maintainers; [ figsoda totoroot xrelkd ]; 26 + mainProgram = "joshuto"; 26 27 }; 27 28 }
+2 -2
pkgs/applications/finance/odoo/default.nix
··· 3 3 , fetchFromGitHub 4 4 , fetchzip 5 5 , python310 6 - , nodePackages 6 + , rtlcss 7 7 , wkhtmltopdf 8 8 , nixosTests 9 9 }: ··· 63 63 doCheck = false; 64 64 65 65 makeWrapperArgs = [ 66 - "--prefix" "PATH" ":" "${lib.makeBinPath [ wkhtmltopdf nodePackages.rtlcss ]}" 66 + "--prefix" "PATH" ":" "${lib.makeBinPath [ wkhtmltopdf rtlcss ]}" 67 67 ]; 68 68 69 69 propagatedBuildInputs = with python.pkgs; [
+2 -2
pkgs/applications/finance/odoo/odoo15.nix
··· 1 - { stdenv, lib, fetchFromGitHub, fetchzip, python310, nodePackages, wkhtmltopdf 1 + { stdenv, lib, fetchFromGitHub, fetchzip, python310, rtlcss, wkhtmltopdf 2 2 , nixosTests }: 3 3 4 4 let ··· 59 59 "--prefix" 60 60 "PATH" 61 61 ":" 62 - "${lib.makeBinPath [ wkhtmltopdf nodePackages.rtlcss ]}" 62 + "${lib.makeBinPath [ wkhtmltopdf rtlcss ]}" 63 63 ]; 64 64 65 65 propagatedBuildInputs = with python.pkgs; [
+9 -3
pkgs/applications/gis/qgis/default.nix
··· 1 - { lib, makeWrapper, symlinkJoin 1 + { lib 2 + , makeWrapper 3 + , symlinkJoin 4 + 2 5 , extraPythonPackages ? (ps: [ ]) 6 + 3 7 , libsForQt5 4 8 }: 5 - with lib; 6 9 let 7 10 qgis-unwrapped = libsForQt5.callPackage ./unwrapped.nix { }; 8 11 in symlinkJoin rec { ··· 12 15 13 16 paths = [ qgis-unwrapped ]; 14 17 15 - nativeBuildInputs = [ makeWrapper qgis-unwrapped.py.pkgs.wrapPython ]; 18 + nativeBuildInputs = [ 19 + makeWrapper 20 + qgis-unwrapped.py.pkgs.wrapPython 21 + ]; 16 22 17 23 # extend to add to the python environment of QGIS without rebuilding QGIS application. 18 24 pythonInputs = qgis-unwrapped.pythonBuildInputs ++ (extraPythonPackages qgis-unwrapped.py.pkgs);
+9 -3
pkgs/applications/gis/qgis/ltr.nix
··· 1 - { lib, makeWrapper, symlinkJoin 1 + { lib 2 + , makeWrapper 3 + , symlinkJoin 4 + 2 5 , extraPythonPackages ? (ps: [ ]) 6 + 3 7 , libsForQt5 4 8 }: 5 - with lib; 6 9 let 7 10 qgis-ltr-unwrapped = libsForQt5.callPackage ./unwrapped-ltr.nix { }; 8 11 in symlinkJoin rec { ··· 12 15 13 16 paths = [ qgis-ltr-unwrapped ]; 14 17 15 - nativeBuildInputs = [ makeWrapper qgis-ltr-unwrapped.py.pkgs.wrapPython ]; 18 + nativeBuildInputs = [ 19 + makeWrapper 20 + qgis-ltr-unwrapped.py.pkgs.wrapPython 21 + ]; 16 22 17 23 # extend to add to the python environment of QGIS without rebuilding QGIS application. 18 24 pythonInputs = qgis-ltr-unwrapped.pythonBuildInputs ++ (extraPythonPackages qgis-ltr-unwrapped.py.pkgs);
+52 -41
pkgs/applications/gis/qgis/unwrapped-ltr.nix
··· 1 1 { lib 2 + , fetchFromGitHub 3 + , makeWrapper 2 4 , mkDerivation 3 - , fetchFromGitHub 5 + , substituteAll 6 + , wrapGAppsHook 7 + 8 + , withGrass ? true 9 + , withWebKit ? false 10 + 11 + , bison 4 12 , cmake 5 - , ninja 13 + , exiv2 14 + , fcgi 6 15 , flex 7 - , bison 8 - , proj 9 16 , geos 10 - , sqlite 17 + , grass 11 18 , gsl 12 - , qwt 13 - , fcgi 14 - , python3 19 + , hdf5 15 20 , libspatialindex 16 21 , libspatialite 17 - , postgresql 18 - , txt2tags 19 - , openssl 20 22 , libzip 21 - , hdf5 22 23 , netcdf 23 - , exiv2 24 + , ninja 25 + , openssl 26 + , pdal 27 + , postgresql 28 + , proj 24 29 , protobuf 30 + , python3 31 + , qca-qt5 32 + , qscintilla 33 + , qt3d 25 34 , qtbase 26 - , qtsensors 27 - , qca-qt5 28 35 , qtkeychain 29 - , qt3d 30 - , qscintilla 31 36 , qtlocation 37 + , qtsensors 32 38 , qtserialport 39 + , qtwebkit 33 40 , qtxmlpatterns 34 - , withGrass ? true 35 - , grass 36 - , withWebKit ? false 37 - , qtwebkit 38 - , pdal 41 + , qwt 42 + , sqlite 43 + , txt2tags 39 44 , zstd 40 - , makeWrapper 41 - , wrapGAppsHook 42 - , substituteAll 43 45 }: 44 46 45 47 let ··· 53 55 }; 54 56 55 57 pythonBuildInputs = with py.pkgs; [ 56 - qscintilla-qt5 58 + chardet 57 59 gdal 58 60 jinja2 59 61 numpy 62 + owslib 60 63 psycopg2 61 - chardet 64 + pygments 65 + pyqt-builder 66 + pyqt5 62 67 python-dateutil 68 + pytz 63 69 pyyaml 64 - pytz 70 + qscintilla-qt5 65 71 requests 66 - urllib3 67 - pygments 68 - pyqt5 69 - pyqt-builder 72 + setuptools 70 73 sip 71 - setuptools 72 - owslib 73 74 six 75 + urllib3 74 76 ]; 75 77 in mkDerivation rec { 76 - version = "3.28.7"; 78 + version = "3.28.10"; 77 79 pname = "qgis-ltr-unwrapped"; 78 80 79 81 src = fetchFromGitHub { 80 82 owner = "qgis"; 81 83 repo = "QGIS"; 82 84 rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}"; 83 - hash = "sha256-RWQ3RlE8fPMuDGosxKNVgbjRTigZRolqNyaJoC1xdec="; 85 + hash = "sha256-5TGcXYfOJonpqecV59dhFcl4rNXbBSofdoTz5o5FFcc="; 84 86 }; 85 87 86 88 passthru = { ··· 88 90 inherit py; 89 91 }; 90 92 93 + nativeBuildInputs = [ 94 + makeWrapper 95 + wrapGAppsHook 96 + 97 + bison 98 + cmake 99 + flex 100 + ninja 101 + ]; 102 + 91 103 buildInputs = [ 92 104 openssl 93 105 proj ··· 120 132 ++ lib.optional withWebKit qtwebkit 121 133 ++ pythonBuildInputs; 122 134 123 - nativeBuildInputs = [ makeWrapper wrapGAppsHook cmake flex bison ninja ]; 124 - 125 135 patches = [ 126 136 (substituteAll { 127 137 src = ./set-pyqt-package-dirs-ltr.patch; ··· 133 143 cmakeFlags = [ 134 144 "-DWITH_3D=True" 135 145 "-DWITH_PDAL=TRUE" 146 + "-DENABLE_TESTS=False" 136 147 ] ++ lib.optional (!withWebKit) "-DWITH_QTWEBKIT=OFF" 137 148 ++ lib.optional withGrass (let 138 149 gmajor = lib.versions.major grass.version; ··· 143 154 dontWrapGApps = true; # wrapper params passed below 144 155 145 156 postFixup = lib.optionalString withGrass '' 146 - # grass has to be availble on the command line even though we baked in 157 + # GRASS has to be availble on the command line even though we baked in 147 158 # the path at build time using GRASS_PREFIX. 148 - # using wrapGAppsHook also prevents file dialogs from crashing the program 149 - # on non-NixOS 159 + # Using wrapGAppsHook also prevents file dialogs from crashing the program 160 + # on non-NixOS. 150 161 wrapProgram $out/bin/qgis \ 151 162 "''${gappsWrapperArgs[@]}" \ 152 163 --prefix PATH : ${lib.makeBinPath [ grass ]}
+1
pkgs/applications/gis/qgis/unwrapped.nix
··· 152 152 cmakeFlags = [ 153 153 "-DWITH_3D=True" 154 154 "-DWITH_PDAL=TRUE" 155 + "-DENABLE_TESTS=False" 155 156 ] ++ lib.optional (!withWebKit) "-DWITH_QTWEBKIT=OFF" 156 157 ++ lib.optional withGrass (let 157 158 gmajor = lib.versions.major grass.version;
+2 -2
pkgs/applications/misc/jquake/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "jquake"; 7 - version = "1.8.4"; 7 + version = "1.8.5"; 8 8 9 9 src = fetchurl { 10 10 url = "https://github.com/fleneindre/fleneindre.github.io/raw/master/downloads/JQuake_${version}_linux.zip"; 11 - sha256 = "sha256-oIYkYmI8uG4zjnm1Jq1mzIcSwRlKbWJqvACygQyp9sA="; 11 + sha256 = "sha256-Q9R5Qhk8Qodw2d99nL2aG5WGpIyvKmjzfkRK7xJzoc0="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ unzip copyDesktopItems ];
+2 -2
pkgs/applications/misc/mediainfo-gui/default.nix
··· 6 6 in 7 7 stdenv.mkDerivation rec { 8 8 pname = "mediainfo-gui"; 9 - version = "23.06"; 9 + version = "23.07"; 10 10 11 11 src = fetchurl { 12 12 url = "https://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; 13 - hash = "sha256-TJd+6wzoN4co5k7yTyf+YrLFEW+/BUHIJKRDCfgP+Io="; 13 + hash = "sha256-ttfanimZX9NKIhAIJbhD50wyx7xnrbARZrG+7epJ9dA="; 14 14 }; 15 15 16 16 nativeBuildInputs = [ autoreconfHook pkg-config ];
+2 -2
pkgs/applications/misc/mediainfo/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "mediainfo"; 5 - version = "23.06"; 5 + version = "23.07"; 6 6 7 7 src = fetchurl { 8 8 url = "https://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; 9 - sha256 = "sha256-TJd+6wzoN4co5k7yTyf+YrLFEW+/BUHIJKRDCfgP+Io="; 9 + hash = "sha256-ttfanimZX9NKIhAIJbhD50wyx7xnrbARZrG+7epJ9dA="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ autoreconfHook pkg-config ];
+3 -3
pkgs/applications/misc/omegat.nix
··· 1 1 { lib, stdenv, fetchurl, unzip, jdk, makeWrapper}: 2 2 3 3 stdenv.mkDerivation { 4 - version = "4.3.0"; 4 + version = "6.0.0"; 5 5 pname = "omegat"; 6 6 7 7 src = fetchurl { # their zip has repeated files or something, so no fetchzip 8 - url = "mirror://sourceforge/project/omegat/OmegaT%20-%20Standard/OmegaT%204.3.0/OmegaT_4.3.0_Without_JRE.zip"; 9 - sha256 = "0axz7r30p34z5hgvdglznc82g7yvm3g56dv5190jixskx6ba58rs"; 8 + url = "mirror://sourceforge/project/omegat/OmegaT%20-%20Standard/OmegaT%206.0.0/OmegaT_6.0.0_Without_JRE.zip"; 9 + sha256 = "sha256-dsbT5iuZBudUL4Kw4rdvi4y98mcvnYNj9jRvC5wJoYI="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper unzip ];
+10 -11
pkgs/applications/misc/yubioath-flutter/default.nix
··· 1 1 { lib 2 - , flutter37 2 + , writeText 3 + , flutter 3 4 , python3 4 5 , fetchFromGitHub 5 6 , pcre2 ··· 11 12 , removeReferencesTo 12 13 }: 13 14 14 - flutter37.buildFlutterApplication rec { 15 + flutter.buildFlutterApplication rec { 15 16 pname = "yubioath-flutter"; 16 17 version = "6.2.0"; 17 18 ··· 24 25 25 26 passthru.helper = python3.pkgs.callPackage ./helper.nix { inherit src version meta; }; 26 27 28 + pubspecLockFile = ./pubspec.lock; 27 29 depsListFile = ./deps.json; 28 - vendorHash = "sha256-q/dNj9Pu7zg0HkV2QkXBbXiTsljsSJOqXhvAQlnoLlA="; 30 + vendorHash = "sha256-RV7NoXJnd1jYGcU5YE0VV7VlMM7bz2JTMJTImOY3m38="; 29 31 30 32 postPatch = '' 33 + rm -f pubspec.lock 34 + ln -s "${writeText "${pname}-overrides.yaml" (builtins.toJSON { 35 + dependency_overrides.intl = "^0.18.1"; 36 + })}" pubspec_overrides.yaml 37 + 31 38 substituteInPlace linux/CMakeLists.txt \ 32 39 --replace "../build/linux/helper" "${passthru.helper}/libexec/helper" 33 40 ''; ··· 63 70 substituteInPlace "$out/share/applications/com.yubico.authenticator.desktop" \ 64 71 --replace "@EXEC_PATH/authenticator" "$out/bin/yubioath-flutter" \ 65 72 --replace "@EXEC_PATH/linux_support/com.yubico.yubioath.png" "$out/share/icons/com.yubico.yubioath.png" 66 - 67 - # Remove unnecessary references to Flutter. 68 - remove-references-to -t ${flutter37.unwrapped} $out/app/data/flutter_assets/shaders/ink_sparkle.frag 69 73 ''; 70 74 71 75 nativeBuildInputs = [ ··· 78 82 pcre2 79 83 libnotify 80 84 libappindicator 81 - ]; 82 - 83 - disallowedReferences = [ 84 - flutter37 85 - flutter37.unwrapped 86 85 ]; 87 86 88 87 meta = with lib; {
+157 -140
pkgs/applications/misc/yubioath-flutter/deps.json
··· 39 39 }, 40 40 { 41 41 "name": "json_serializable", 42 - "version": "6.6.1", 42 + "version": "6.7.1", 43 43 "kind": "dev", 44 44 "source": "hosted", 45 45 "dependencies": [ ··· 59 59 }, 60 60 { 61 61 "name": "source_helper", 62 - "version": "1.3.3", 62 + "version": "1.3.4", 63 63 "kind": "transitive", 64 64 "source": "hosted", 65 65 "dependencies": [ ··· 70 70 }, 71 71 { 72 72 "name": "source_gen", 73 - "version": "1.2.7", 73 + "version": "1.4.0", 74 74 "kind": "transitive", 75 75 "source": "hosted", 76 76 "dependencies": [ ··· 86 86 }, 87 87 { 88 88 "name": "yaml", 89 - "version": "3.1.1", 89 + "version": "3.1.2", 90 90 "kind": "transitive", 91 91 "source": "hosted", 92 92 "dependencies": [ ··· 106 106 }, 107 107 { 108 108 "name": "source_span", 109 - "version": "1.9.1", 109 + "version": "1.10.0", 110 110 "kind": "transitive", 111 111 "source": "hosted", 112 112 "dependencies": [ ··· 124 124 }, 125 125 { 126 126 "name": "path", 127 - "version": "1.8.2", 127 + "version": "1.8.3", 128 128 "kind": "direct", 129 129 "source": "hosted", 130 130 "dependencies": [] 131 131 }, 132 132 { 133 133 "name": "collection", 134 - "version": "1.17.0", 134 + "version": "1.17.2", 135 135 "kind": "direct", 136 136 "source": "hosted", 137 137 "dependencies": [] 138 138 }, 139 139 { 140 140 "name": "glob", 141 - "version": "2.1.1", 141 + "version": "2.1.2", 142 142 "kind": "transitive", 143 143 "source": "hosted", 144 144 "dependencies": [ ··· 161 161 }, 162 162 { 163 163 "name": "meta", 164 - "version": "1.8.0", 164 + "version": "1.9.1", 165 165 "kind": "transitive", 166 166 "source": "hosted", 167 167 "dependencies": [] 168 168 }, 169 169 { 170 170 "name": "async", 171 - "version": "2.10.0", 171 + "version": "2.11.0", 172 172 "kind": "direct", 173 173 "source": "hosted", 174 174 "dependencies": [ ··· 178 178 }, 179 179 { 180 180 "name": "dart_style", 181 - "version": "2.2.4", 181 + "version": "2.3.2", 182 182 "kind": "transitive", 183 183 "source": "hosted", 184 184 "dependencies": [ ··· 191 191 }, 192 192 { 193 193 "name": "pub_semver", 194 - "version": "2.1.3", 194 + "version": "2.1.4", 195 195 "kind": "transitive", 196 196 "source": "hosted", 197 197 "dependencies": [ ··· 201 201 }, 202 202 { 203 203 "name": "args", 204 - "version": "2.4.0", 204 + "version": "2.4.2", 205 205 "kind": "transitive", 206 206 "source": "hosted", 207 207 "dependencies": [] 208 208 }, 209 209 { 210 210 "name": "analyzer", 211 - "version": "5.6.0", 211 + "version": "6.2.0", 212 212 "kind": "transitive", 213 213 "source": "hosted", 214 214 "dependencies": [ ··· 228 228 }, 229 229 { 230 230 "name": "watcher", 231 - "version": "1.0.2", 231 + "version": "1.1.0", 232 232 "kind": "transitive", 233 233 "source": "hosted", 234 234 "dependencies": [ ··· 247 247 }, 248 248 { 249 249 "name": "crypto", 250 - "version": "3.0.2", 250 + "version": "3.0.3", 251 251 "kind": "direct", 252 252 "source": "hosted", 253 253 "dependencies": [ ··· 256 256 }, 257 257 { 258 258 "name": "typed_data", 259 - "version": "1.3.1", 259 + "version": "1.3.2", 260 260 "kind": "transitive", 261 261 "source": "hosted", 262 262 "dependencies": [ ··· 274 274 }, 275 275 { 276 276 "name": "_fe_analyzer_shared", 277 - "version": "54.0.0", 277 + "version": "64.0.0", 278 278 "kind": "transitive", 279 279 "source": "hosted", 280 280 "dependencies": [ ··· 283 283 }, 284 284 { 285 285 "name": "build", 286 - "version": "2.3.1", 286 + "version": "2.4.1", 287 287 "kind": "transitive", 288 288 "source": "hosted", 289 289 "dependencies": [ ··· 294 294 "glob", 295 295 "logging", 296 296 "meta", 297 + "package_config", 297 298 "path" 298 299 ] 299 300 }, 300 301 { 301 302 "name": "logging", 302 - "version": "1.1.1", 303 + "version": "1.2.0", 303 304 "kind": "direct", 304 305 "source": "hosted", 305 306 "dependencies": [] 306 307 }, 307 308 { 308 309 "name": "pubspec_parse", 309 - "version": "1.2.1", 310 + "version": "1.2.3", 310 311 "kind": "transitive", 311 312 "source": "hosted", 312 313 "dependencies": [ ··· 319 320 }, 320 321 { 321 322 "name": "json_annotation", 322 - "version": "4.8.0", 323 + "version": "4.8.1", 323 324 "kind": "direct", 324 325 "source": "hosted", 325 326 "dependencies": [ ··· 328 329 }, 329 330 { 330 331 "name": "checked_yaml", 331 - "version": "2.0.2", 332 + "version": "2.0.3", 332 333 "kind": "transitive", 333 334 "source": "hosted", 334 335 "dependencies": [ ··· 352 353 }, 353 354 { 354 355 "name": "freezed", 355 - "version": "2.3.2", 356 + "version": "2.4.2", 356 357 "kind": "dev", 357 358 "source": "hosted", 358 359 "dependencies": [ ··· 368 369 }, 369 370 { 370 371 "name": "freezed_annotation", 371 - "version": "2.2.0", 372 + "version": "2.4.1", 372 373 "kind": "direct", 373 374 "source": "hosted", 374 375 "dependencies": [ ··· 379 380 }, 380 381 { 381 382 "name": "build_runner", 382 - "version": "2.3.3", 383 + "version": "2.4.6", 383 384 "kind": "dev", 384 385 "source": "hosted", 385 386 "dependencies": [ 387 + "analyzer", 386 388 "args", 387 389 "async", 388 - "analyzer", 389 390 "build", 390 391 "build_config", 391 392 "build_daemon", ··· 421 422 }, 422 423 { 423 424 "name": "web_socket_channel", 424 - "version": "2.3.0", 425 + "version": "2.4.0", 425 426 "kind": "transitive", 426 427 "source": "hosted", 427 428 "dependencies": [ ··· 466 467 }, 467 468 { 468 469 "name": "shelf_web_socket", 469 - "version": "1.0.3", 470 + "version": "1.0.4", 470 471 "kind": "transitive", 471 472 "source": "hosted", 472 473 "dependencies": [ ··· 477 478 }, 478 479 { 479 480 "name": "shelf", 480 - "version": "1.4.0", 481 + "version": "1.4.1", 481 482 "kind": "transitive", 482 483 "source": "hosted", 483 484 "dependencies": [ ··· 520 521 }, 521 522 { 522 523 "name": "js", 523 - "version": "0.6.5", 524 + "version": "0.6.7", 524 525 "kind": "transitive", 525 526 "source": "hosted", 526 527 "dependencies": [ ··· 549 550 }, 550 551 { 551 552 "name": "graphs", 552 - "version": "2.2.0", 553 + "version": "2.3.1", 553 554 "kind": "transitive", 554 555 "source": "hosted", 555 556 "dependencies": [ ··· 568 569 }, 569 570 { 570 571 "name": "code_builder", 571 - "version": "4.4.0", 572 + "version": "4.5.0", 572 573 "kind": "transitive", 573 574 "source": "hosted", 574 575 "dependencies": [ ··· 581 582 }, 582 583 { 583 584 "name": "matcher", 584 - "version": "0.12.13", 585 + "version": "0.12.16", 586 + "kind": "transitive", 587 + "source": "hosted", 588 + "dependencies": [ 589 + "async", 590 + "meta", 591 + "stack_trace", 592 + "term_glyph", 593 + "test_api" 594 + ] 595 + }, 596 + { 597 + "name": "test_api", 598 + "version": "0.6.0", 585 599 "kind": "transitive", 586 600 "source": "hosted", 587 601 "dependencies": [ 602 + "async", 603 + "boolean_selector", 604 + "collection", 588 605 "meta", 589 - "stack_trace" 606 + "source_span", 607 + "stack_trace", 608 + "stream_channel", 609 + "string_scanner", 610 + "term_glyph" 611 + ] 612 + }, 613 + { 614 + "name": "boolean_selector", 615 + "version": "2.1.1", 616 + "kind": "transitive", 617 + "source": "hosted", 618 + "dependencies": [ 619 + "source_span", 620 + "string_scanner" 590 621 ] 591 622 }, 592 623 { 593 624 "name": "built_value", 594 - "version": "8.4.3", 625 + "version": "8.6.2", 595 626 "kind": "transitive", 596 627 "source": "hosted", 597 628 "dependencies": [ ··· 617 648 }, 618 649 { 619 650 "name": "build_runner_core", 620 - "version": "7.2.7", 651 + "version": "7.2.10", 621 652 "kind": "transitive", 622 653 "source": "hosted", 623 654 "dependencies": [ ··· 633 664 "json_annotation", 634 665 "logging", 635 666 "meta", 636 - "path", 637 667 "package_config", 668 + "path", 638 669 "pool", 639 670 "timing", 640 671 "watcher", ··· 643 674 }, 644 675 { 645 676 "name": "build_resolvers", 646 - "version": "2.2.0", 677 + "version": "2.2.1", 647 678 "kind": "transitive", 648 679 "source": "hosted", 649 680 "dependencies": [ ··· 654 685 "crypto", 655 686 "graphs", 656 687 "logging", 657 - "path", 658 688 "package_config", 689 + "path", 659 690 "pool", 660 691 "pub_semver", 661 692 "stream_transform", ··· 664 695 }, 665 696 { 666 697 "name": "build_daemon", 667 - "version": "3.1.1", 698 + "version": "4.0.0", 668 699 "kind": "transitive", 669 700 "source": "hosted", 670 701 "dependencies": [ ··· 683 714 }, 684 715 { 685 716 "name": "flutter_lints", 686 - "version": "2.0.1", 717 + "version": "2.0.2", 687 718 "kind": "dev", 688 719 "source": "hosted", 689 720 "dependencies": [ ··· 692 723 }, 693 724 { 694 725 "name": "lints", 695 - "version": "2.0.1", 726 + "version": "2.1.1", 696 727 "kind": "transitive", 697 728 "source": "hosted", 698 729 "dependencies": [] ··· 705 736 "dependencies": [ 706 737 "flutter", 707 738 "test_api", 739 + "matcher", 708 740 "path", 709 741 "fake_async", 710 742 "clock", ··· 714 746 "boolean_selector", 715 747 "characters", 716 748 "collection", 717 - "js", 718 - "matcher", 719 749 "material_color_utilities", 720 750 "meta", 721 751 "source_span", 722 752 "stream_channel", 723 753 "string_scanner", 724 - "term_glyph" 754 + "term_glyph", 755 + "web" 725 756 ] 726 757 }, 727 758 { 728 - "name": "material_color_utilities", 729 - "version": "0.2.0", 759 + "name": "web", 760 + "version": "0.1.4-beta", 730 761 "kind": "transitive", 731 762 "source": "hosted", 732 763 "dependencies": [] 733 764 }, 734 765 { 735 - "name": "characters", 736 - "version": "1.2.1", 766 + "name": "material_color_utilities", 767 + "version": "0.5.0", 737 768 "kind": "transitive", 738 769 "source": "hosted", 739 - "dependencies": [] 770 + "dependencies": [ 771 + "collection" 772 + ] 740 773 }, 741 774 { 742 - "name": "boolean_selector", 743 - "version": "2.1.1", 775 + "name": "characters", 776 + "version": "1.3.0", 744 777 "kind": "transitive", 745 778 "source": "hosted", 746 - "dependencies": [ 747 - "source_span", 748 - "string_scanner" 749 - ] 779 + "dependencies": [] 750 780 }, 751 781 { 752 782 "name": "vector_math", ··· 773 803 ] 774 804 }, 775 805 { 776 - "name": "test_api", 777 - "version": "0.4.16", 778 - "kind": "transitive", 779 - "source": "hosted", 780 - "dependencies": [ 781 - "async", 782 - "boolean_selector", 783 - "collection", 784 - "meta", 785 - "source_span", 786 - "stack_trace", 787 - "stream_channel", 788 - "string_scanner", 789 - "term_glyph", 790 - "matcher" 791 - ] 792 - }, 793 - { 794 806 "name": "flutter", 795 807 "version": "0.0.0", 796 808 "kind": "direct", ··· 798 810 "dependencies": [ 799 811 "characters", 800 812 "collection", 801 - "js", 802 813 "material_color_utilities", 803 814 "meta", 804 815 "vector_math", 816 + "web", 805 817 "sky_engine" 806 818 ] 807 819 }, ··· 823 835 "flutter_test", 824 836 "path", 825 837 "vm_service", 826 - "archive", 827 838 "async", 828 839 "boolean_selector", 829 840 "characters", 830 841 "clock", 831 842 "collection", 832 - "crypto", 833 843 "fake_async", 834 844 "file", 835 - "js", 836 845 "matcher", 837 846 "material_color_utilities", 838 847 "meta", ··· 843 852 "sync_http", 844 853 "term_glyph", 845 854 "test_api", 846 - "typed_data", 847 855 "vector_math", 856 + "web", 848 857 "webdriver" 849 858 ] 850 859 }, 851 860 { 852 861 "name": "webdriver", 853 - "version": "3.0.1", 862 + "version": "3.0.2", 854 863 "kind": "transitive", 855 864 "source": "hosted", 856 865 "dependencies": [ 857 - "archive", 858 866 "matcher", 859 867 "path", 860 868 "stack_trace", ··· 869 877 "dependencies": [] 870 878 }, 871 879 { 872 - "name": "archive", 873 - "version": "3.3.2", 874 - "kind": "direct", 875 - "source": "hosted", 876 - "dependencies": [ 877 - "crypto", 878 - "path" 879 - ] 880 - }, 881 - { 882 880 "name": "vm_service", 883 - "version": "9.4.0", 881 + "version": "11.7.1", 884 882 "kind": "transitive", 885 883 "source": "hosted", 886 884 "dependencies": [] ··· 899 897 "meta", 900 898 "vm_service", 901 899 "webdriver", 902 - "archive", 903 900 "async", 904 901 "boolean_selector", 905 902 "characters", 906 903 "clock", 907 904 "collection", 908 - "crypto", 909 - "js", 910 905 "matcher", 911 906 "material_color_utilities", 912 907 "platform", ··· 918 913 "sync_http", 919 914 "term_glyph", 920 915 "test_api", 921 - "typed_data", 922 - "vector_math" 916 + "vector_math", 917 + "web" 923 918 ] 924 919 }, 925 920 { ··· 1002 997 ] 1003 998 }, 1004 999 { 1000 + "name": "archive", 1001 + "version": "3.3.7", 1002 + "kind": "direct", 1003 + "source": "hosted", 1004 + "dependencies": [ 1005 + "crypto", 1006 + "path", 1007 + "pointycastle" 1008 + ] 1009 + }, 1010 + { 1011 + "name": "pointycastle", 1012 + "version": "3.7.3", 1013 + "kind": "transitive", 1014 + "source": "hosted", 1015 + "dependencies": [ 1016 + "collection", 1017 + "convert", 1018 + "js" 1019 + ] 1020 + }, 1021 + { 1005 1022 "name": "file_picker", 1006 - "version": "5.2.7", 1023 + "version": "5.3.4", 1007 1024 "kind": "direct", 1008 1025 "source": "hosted", 1009 1026 "dependencies": [ ··· 1018 1035 }, 1019 1036 { 1020 1037 "name": "win32", 1021 - "version": "3.1.3", 1038 + "version": "5.0.7", 1022 1039 "kind": "transitive", 1023 1040 "source": "hosted", 1024 1041 "dependencies": [ ··· 1027 1044 }, 1028 1045 { 1029 1046 "name": "ffi", 1030 - "version": "2.0.1", 1047 + "version": "2.1.0", 1031 1048 "kind": "transitive", 1032 1049 "source": "hosted", 1033 1050 "dependencies": [] 1034 1051 }, 1035 1052 { 1036 1053 "name": "plugin_platform_interface", 1037 - "version": "2.1.4", 1054 + "version": "2.1.5", 1038 1055 "kind": "transitive", 1039 1056 "source": "hosted", 1040 1057 "dependencies": [ ··· 1043 1060 }, 1044 1061 { 1045 1062 "name": "flutter_plugin_android_lifecycle", 1046 - "version": "2.0.7", 1063 + "version": "2.0.15", 1047 1064 "kind": "transitive", 1048 1065 "source": "hosted", 1049 1066 "dependencies": [ ··· 1057 1074 "source": "sdk", 1058 1075 "dependencies": [ 1059 1076 "flutter", 1060 - "js", 1061 1077 "characters", 1062 1078 "collection", 1063 1079 "material_color_utilities", 1064 1080 "meta", 1065 - "vector_math" 1081 + "vector_math", 1082 + "web" 1066 1083 ] 1067 1084 }, 1068 1085 { 1069 1086 "name": "vector_graphics_compiler", 1070 - "version": "1.1.4", 1087 + "version": "1.1.7", 1071 1088 "kind": "direct", 1072 1089 "source": "hosted", 1073 1090 "dependencies": [ ··· 1080 1097 }, 1081 1098 { 1082 1099 "name": "vector_graphics_codec", 1083 - "version": "1.1.4", 1100 + "version": "1.1.7", 1084 1101 "kind": "transitive", 1085 1102 "source": "hosted", 1086 1103 "dependencies": [] 1087 1104 }, 1088 1105 { 1089 1106 "name": "xml", 1090 - "version": "6.2.2", 1107 + "version": "6.3.0", 1091 1108 "kind": "transitive", 1092 1109 "source": "hosted", 1093 1110 "dependencies": [ ··· 1098 1115 }, 1099 1116 { 1100 1117 "name": "petitparser", 1101 - "version": "5.1.0", 1118 + "version": "5.4.0", 1102 1119 "kind": "transitive", 1103 1120 "source": "hosted", 1104 1121 "dependencies": [ ··· 1117 1134 }, 1118 1135 { 1119 1136 "name": "vector_graphics", 1120 - "version": "1.1.4", 1137 + "version": "1.1.7", 1121 1138 "kind": "direct", 1122 1139 "source": "hosted", 1123 1140 "dependencies": [ ··· 1127 1144 }, 1128 1145 { 1129 1146 "name": "path_provider", 1130 - "version": "2.0.14", 1147 + "version": "2.1.0", 1131 1148 "kind": "direct", 1132 1149 "source": "hosted", 1133 1150 "dependencies": [ ··· 1141 1158 }, 1142 1159 { 1143 1160 "name": "path_provider_windows", 1144 - "version": "2.1.4", 1161 + "version": "2.2.0", 1145 1162 "kind": "transitive", 1146 1163 "source": "hosted", 1147 1164 "dependencies": [ ··· 1154 1171 }, 1155 1172 { 1156 1173 "name": "path_provider_platform_interface", 1157 - "version": "2.0.6", 1174 + "version": "2.1.0", 1158 1175 "kind": "transitive", 1159 1176 "source": "hosted", 1160 1177 "dependencies": [ ··· 1165 1182 }, 1166 1183 { 1167 1184 "name": "path_provider_linux", 1168 - "version": "2.1.9", 1185 + "version": "2.2.0", 1169 1186 "kind": "transitive", 1170 1187 "source": "hosted", 1171 1188 "dependencies": [ ··· 1178 1195 }, 1179 1196 { 1180 1197 "name": "xdg_directories", 1181 - "version": "1.0.0", 1198 + "version": "1.0.2", 1182 1199 "kind": "transitive", 1183 1200 "source": "hosted", 1184 1201 "dependencies": [ 1185 1202 "meta", 1186 - "path", 1187 - "process" 1203 + "path" 1188 1204 ] 1189 1205 }, 1190 1206 { 1191 1207 "name": "path_provider_foundation", 1192 - "version": "2.1.1", 1208 + "version": "2.3.0", 1193 1209 "kind": "transitive", 1194 1210 "source": "hosted", 1195 1211 "dependencies": [ ··· 1199 1215 }, 1200 1216 { 1201 1217 "name": "path_provider_android", 1202 - "version": "2.0.22", 1218 + "version": "2.1.0", 1203 1219 "kind": "transitive", 1204 1220 "source": "hosted", 1205 1221 "dependencies": [ ··· 1209 1225 }, 1210 1226 { 1211 1227 "name": "url_launcher", 1212 - "version": "6.1.10", 1228 + "version": "6.1.12", 1213 1229 "kind": "direct", 1214 1230 "source": "hosted", 1215 1231 "dependencies": [ ··· 1225 1241 }, 1226 1242 { 1227 1243 "name": "url_launcher_windows", 1228 - "version": "3.0.4", 1244 + "version": "3.0.7", 1229 1245 "kind": "transitive", 1230 1246 "source": "hosted", 1231 1247 "dependencies": [ ··· 1235 1251 }, 1236 1252 { 1237 1253 "name": "url_launcher_platform_interface", 1238 - "version": "2.1.2", 1254 + "version": "2.1.3", 1239 1255 "kind": "transitive", 1240 1256 "source": "hosted", 1241 1257 "dependencies": [ ··· 1245 1261 }, 1246 1262 { 1247 1263 "name": "url_launcher_web", 1248 - "version": "2.0.15", 1264 + "version": "2.0.18", 1249 1265 "kind": "transitive", 1250 1266 "source": "hosted", 1251 1267 "dependencies": [ ··· 1256 1272 }, 1257 1273 { 1258 1274 "name": "url_launcher_macos", 1259 - "version": "3.0.3", 1275 + "version": "3.0.6", 1260 1276 "kind": "transitive", 1261 1277 "source": "hosted", 1262 1278 "dependencies": [ ··· 1266 1282 }, 1267 1283 { 1268 1284 "name": "url_launcher_linux", 1269 - "version": "3.0.3", 1285 + "version": "3.0.5", 1270 1286 "kind": "transitive", 1271 1287 "source": "hosted", 1272 1288 "dependencies": [ ··· 1276 1292 }, 1277 1293 { 1278 1294 "name": "url_launcher_ios", 1279 - "version": "6.1.1", 1295 + "version": "6.1.4", 1280 1296 "kind": "transitive", 1281 1297 "source": "hosted", 1282 1298 "dependencies": [ ··· 1286 1302 }, 1287 1303 { 1288 1304 "name": "url_launcher_android", 1289 - "version": "6.0.24", 1305 + "version": "6.0.38", 1290 1306 "kind": "transitive", 1291 1307 "source": "hosted", 1292 1308 "dependencies": [ ··· 1296 1312 }, 1297 1313 { 1298 1314 "name": "desktop_drop", 1299 - "version": "0.4.1", 1315 + "version": "0.4.3", 1300 1316 "kind": "direct", 1301 1317 "source": "hosted", 1302 1318 "dependencies": [ ··· 1317 1333 }, 1318 1334 { 1319 1335 "name": "screen_retriever", 1320 - "version": "0.1.6", 1336 + "version": "0.1.9", 1321 1337 "kind": "direct", 1322 1338 "source": "hosted", 1323 1339 "dependencies": [ ··· 1336 1352 }, 1337 1353 { 1338 1354 "name": "window_manager", 1339 - "version": "0.3.2", 1355 + "version": "0.3.6", 1340 1356 "kind": "direct", 1341 1357 "source": "hosted", 1342 1358 "dependencies": [ ··· 1381 1397 }, 1382 1398 { 1383 1399 "name": "shared_preferences", 1384 - "version": "2.1.0", 1400 + "version": "2.2.0", 1385 1401 "kind": "direct", 1386 1402 "source": "hosted", 1387 1403 "dependencies": [ ··· 1396 1412 }, 1397 1413 { 1398 1414 "name": "shared_preferences_windows", 1399 - "version": "2.2.0", 1415 + "version": "2.3.0", 1400 1416 "kind": "transitive", 1401 1417 "source": "hosted", 1402 1418 "dependencies": [ ··· 1410 1426 }, 1411 1427 { 1412 1428 "name": "shared_preferences_platform_interface", 1413 - "version": "2.2.0", 1429 + "version": "2.3.0", 1414 1430 "kind": "transitive", 1415 1431 "source": "hosted", 1416 1432 "dependencies": [ ··· 1420 1436 }, 1421 1437 { 1422 1438 "name": "shared_preferences_web", 1423 - "version": "2.1.0", 1439 + "version": "2.2.0", 1424 1440 "kind": "transitive", 1425 1441 "source": "hosted", 1426 1442 "dependencies": [ ··· 1431 1447 }, 1432 1448 { 1433 1449 "name": "shared_preferences_linux", 1434 - "version": "2.2.0", 1450 + "version": "2.3.0", 1435 1451 "kind": "transitive", 1436 1452 "source": "hosted", 1437 1453 "dependencies": [ ··· 1445 1461 }, 1446 1462 { 1447 1463 "name": "shared_preferences_foundation", 1448 - "version": "2.2.0", 1464 + "version": "2.3.3", 1449 1465 "kind": "transitive", 1450 1466 "source": "hosted", 1451 1467 "dependencies": [ ··· 1455 1471 }, 1456 1472 { 1457 1473 "name": "shared_preferences_android", 1458 - "version": "2.1.0", 1474 + "version": "2.2.0", 1459 1475 "kind": "transitive", 1460 1476 "source": "hosted", 1461 1477 "dependencies": [ ··· 1465 1481 }, 1466 1482 { 1467 1483 "name": "intl", 1468 - "version": "0.17.0", 1484 + "version": "0.18.1", 1469 1485 "kind": "direct", 1470 1486 "source": "hosted", 1471 1487 "dependencies": [ 1472 1488 "clock", 1489 + "meta", 1473 1490 "path" 1474 1491 ] 1475 1492 }, ··· 1484 1501 "characters", 1485 1502 "clock", 1486 1503 "collection", 1487 - "js", 1488 1504 "material_color_utilities", 1489 1505 "meta", 1490 1506 "path", 1491 - "vector_math" 1507 + "vector_math", 1508 + "web" 1492 1509 ] 1493 1510 } 1494 1511 ]
+997
pkgs/applications/misc/yubioath-flutter/pubspec.lock
··· 1 + # Generated by pub 2 + # See https://dart.dev/tools/pub/glossary#lockfile 3 + packages: 4 + _fe_analyzer_shared: 5 + dependency: transitive 6 + description: 7 + name: _fe_analyzer_shared 8 + sha256: eb376e9acf6938204f90eb3b1f00b578640d3188b4c8a8ec054f9f479af8d051 9 + url: "https://pub.dev" 10 + source: hosted 11 + version: "64.0.0" 12 + analyzer: 13 + dependency: transitive 14 + description: 15 + name: analyzer 16 + sha256: "69f54f967773f6c26c7dcb13e93d7ccee8b17a641689da39e878d5cf13b06893" 17 + url: "https://pub.dev" 18 + source: hosted 19 + version: "6.2.0" 20 + archive: 21 + dependency: "direct main" 22 + description: 23 + name: archive 24 + sha256: "0c8368c9b3f0abbc193b9d6133649a614204b528982bebc7026372d61677ce3a" 25 + url: "https://pub.dev" 26 + source: hosted 27 + version: "3.3.7" 28 + args: 29 + dependency: transitive 30 + description: 31 + name: args 32 + sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596 33 + url: "https://pub.dev" 34 + source: hosted 35 + version: "2.4.2" 36 + async: 37 + dependency: "direct main" 38 + description: 39 + name: async 40 + sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" 41 + url: "https://pub.dev" 42 + source: hosted 43 + version: "2.11.0" 44 + boolean_selector: 45 + dependency: transitive 46 + description: 47 + name: boolean_selector 48 + sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" 49 + url: "https://pub.dev" 50 + source: hosted 51 + version: "2.1.1" 52 + build: 53 + dependency: transitive 54 + description: 55 + name: build 56 + sha256: "80184af8b6cb3e5c1c4ec6d8544d27711700bc3e6d2efad04238c7b5290889f0" 57 + url: "https://pub.dev" 58 + source: hosted 59 + version: "2.4.1" 60 + build_config: 61 + dependency: transitive 62 + description: 63 + name: build_config 64 + sha256: bf80fcfb46a29945b423bd9aad884590fb1dc69b330a4d4700cac476af1708d1 65 + url: "https://pub.dev" 66 + source: hosted 67 + version: "1.1.1" 68 + build_daemon: 69 + dependency: transitive 70 + description: 71 + name: build_daemon 72 + sha256: "5f02d73eb2ba16483e693f80bee4f088563a820e47d1027d4cdfe62b5bb43e65" 73 + url: "https://pub.dev" 74 + source: hosted 75 + version: "4.0.0" 76 + build_resolvers: 77 + dependency: transitive 78 + description: 79 + name: build_resolvers 80 + sha256: "6c4dd11d05d056e76320b828a1db0fc01ccd376922526f8e9d6c796a5adbac20" 81 + url: "https://pub.dev" 82 + source: hosted 83 + version: "2.2.1" 84 + build_runner: 85 + dependency: "direct dev" 86 + description: 87 + name: build_runner 88 + sha256: "10c6bcdbf9d049a0b666702cf1cee4ddfdc38f02a19d35ae392863b47519848b" 89 + url: "https://pub.dev" 90 + source: hosted 91 + version: "2.4.6" 92 + build_runner_core: 93 + dependency: transitive 94 + description: 95 + name: build_runner_core 96 + sha256: "6d6ee4276b1c5f34f21fdf39425202712d2be82019983d52f351c94aafbc2c41" 97 + url: "https://pub.dev" 98 + source: hosted 99 + version: "7.2.10" 100 + built_collection: 101 + dependency: transitive 102 + description: 103 + name: built_collection 104 + sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100" 105 + url: "https://pub.dev" 106 + source: hosted 107 + version: "5.1.1" 108 + built_value: 109 + dependency: transitive 110 + description: 111 + name: built_value 112 + sha256: ff627b645b28fb8bdb69e645f910c2458fd6b65f6585c3a53e0626024897dedf 113 + url: "https://pub.dev" 114 + source: hosted 115 + version: "8.6.2" 116 + characters: 117 + dependency: transitive 118 + description: 119 + name: characters 120 + sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" 121 + url: "https://pub.dev" 122 + source: hosted 123 + version: "1.3.0" 124 + checked_yaml: 125 + dependency: transitive 126 + description: 127 + name: checked_yaml 128 + sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff 129 + url: "https://pub.dev" 130 + source: hosted 131 + version: "2.0.3" 132 + clock: 133 + dependency: transitive 134 + description: 135 + name: clock 136 + sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf 137 + url: "https://pub.dev" 138 + source: hosted 139 + version: "1.1.1" 140 + code_builder: 141 + dependency: transitive 142 + description: 143 + name: code_builder 144 + sha256: "4ad01d6e56db961d29661561effde45e519939fdaeb46c351275b182eac70189" 145 + url: "https://pub.dev" 146 + source: hosted 147 + version: "4.5.0" 148 + collection: 149 + dependency: "direct main" 150 + description: 151 + name: collection 152 + sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687 153 + url: "https://pub.dev" 154 + source: hosted 155 + version: "1.17.2" 156 + convert: 157 + dependency: transitive 158 + description: 159 + name: convert 160 + sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" 161 + url: "https://pub.dev" 162 + source: hosted 163 + version: "3.1.1" 164 + cross_file: 165 + dependency: transitive 166 + description: 167 + name: cross_file 168 + sha256: "0b0036e8cccbfbe0555fd83c1d31a6f30b77a96b598b35a5d36dd41f718695e9" 169 + url: "https://pub.dev" 170 + source: hosted 171 + version: "0.3.3+4" 172 + crypto: 173 + dependency: "direct main" 174 + description: 175 + name: crypto 176 + sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab 177 + url: "https://pub.dev" 178 + source: hosted 179 + version: "3.0.3" 180 + dart_style: 181 + dependency: transitive 182 + description: 183 + name: dart_style 184 + sha256: "1efa911ca7086affd35f463ca2fc1799584fb6aa89883cf0af8e3664d6a02d55" 185 + url: "https://pub.dev" 186 + source: hosted 187 + version: "2.3.2" 188 + desktop_drop: 189 + dependency: "direct main" 190 + description: 191 + name: desktop_drop 192 + sha256: ebba9c9cb0b54385998a977d741cc06fd8324878c08d5a36e9da61cd56b04cc6 193 + url: "https://pub.dev" 194 + source: hosted 195 + version: "0.4.3" 196 + fake_async: 197 + dependency: transitive 198 + description: 199 + name: fake_async 200 + sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" 201 + url: "https://pub.dev" 202 + source: hosted 203 + version: "1.3.1" 204 + ffi: 205 + dependency: transitive 206 + description: 207 + name: ffi 208 + sha256: "7bf0adc28a23d395f19f3f1eb21dd7cfd1dd9f8e1c50051c069122e6853bc878" 209 + url: "https://pub.dev" 210 + source: hosted 211 + version: "2.1.0" 212 + file: 213 + dependency: transitive 214 + description: 215 + name: file 216 + sha256: "1b92bec4fc2a72f59a8e15af5f52cd441e4a7860b49499d69dfa817af20e925d" 217 + url: "https://pub.dev" 218 + source: hosted 219 + version: "6.1.4" 220 + file_picker: 221 + dependency: "direct main" 222 + description: 223 + name: file_picker 224 + sha256: bdfa035a974a0c080576c4c8ed01cdf9d1b406a04c7daa05443ef0383a97bedc 225 + url: "https://pub.dev" 226 + source: hosted 227 + version: "5.3.4" 228 + fixnum: 229 + dependency: transitive 230 + description: 231 + name: fixnum 232 + sha256: "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1" 233 + url: "https://pub.dev" 234 + source: hosted 235 + version: "1.1.0" 236 + flutter: 237 + dependency: "direct main" 238 + description: flutter 239 + source: sdk 240 + version: "0.0.0" 241 + flutter_driver: 242 + dependency: transitive 243 + description: flutter 244 + source: sdk 245 + version: "0.0.0" 246 + flutter_lints: 247 + dependency: "direct dev" 248 + description: 249 + name: flutter_lints 250 + sha256: "2118df84ef0c3ca93f96123a616ae8540879991b8b57af2f81b76a7ada49b2a4" 251 + url: "https://pub.dev" 252 + source: hosted 253 + version: "2.0.2" 254 + flutter_localizations: 255 + dependency: "direct main" 256 + description: flutter 257 + source: sdk 258 + version: "0.0.0" 259 + flutter_plugin_android_lifecycle: 260 + dependency: transitive 261 + description: 262 + name: flutter_plugin_android_lifecycle 263 + sha256: "950e77c2bbe1692bc0874fc7fb491b96a4dc340457f4ea1641443d0a6c1ea360" 264 + url: "https://pub.dev" 265 + source: hosted 266 + version: "2.0.15" 267 + flutter_riverpod: 268 + dependency: "direct main" 269 + description: 270 + name: flutter_riverpod 271 + sha256: b3c3a8a9714b7f88dd2a41e1efbc47f76d620b06ab427c62ae7bc82298cd7dbb 272 + url: "https://pub.dev" 273 + source: hosted 274 + version: "2.3.2" 275 + flutter_test: 276 + dependency: "direct dev" 277 + description: flutter 278 + source: sdk 279 + version: "0.0.0" 280 + flutter_web_plugins: 281 + dependency: transitive 282 + description: flutter 283 + source: sdk 284 + version: "0.0.0" 285 + freezed: 286 + dependency: "direct dev" 287 + description: 288 + name: freezed 289 + sha256: "83462cfc33dc9680533a7f3a4a6ab60aa94f287db5f4ee6511248c22833c497f" 290 + url: "https://pub.dev" 291 + source: hosted 292 + version: "2.4.2" 293 + freezed_annotation: 294 + dependency: "direct main" 295 + description: 296 + name: freezed_annotation 297 + sha256: c3fd9336eb55a38cc1bbd79ab17573113a8deccd0ecbbf926cca3c62803b5c2d 298 + url: "https://pub.dev" 299 + source: hosted 300 + version: "2.4.1" 301 + frontend_server_client: 302 + dependency: transitive 303 + description: 304 + name: frontend_server_client 305 + sha256: "408e3ca148b31c20282ad6f37ebfa6f4bdc8fede5b74bc2f08d9d92b55db3612" 306 + url: "https://pub.dev" 307 + source: hosted 308 + version: "3.2.0" 309 + fuchsia_remote_debug_protocol: 310 + dependency: transitive 311 + description: flutter 312 + source: sdk 313 + version: "0.0.0" 314 + glob: 315 + dependency: transitive 316 + description: 317 + name: glob 318 + sha256: "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63" 319 + url: "https://pub.dev" 320 + source: hosted 321 + version: "2.1.2" 322 + graphs: 323 + dependency: transitive 324 + description: 325 + name: graphs 326 + sha256: aedc5a15e78fc65a6e23bcd927f24c64dd995062bcd1ca6eda65a3cff92a4d19 327 + url: "https://pub.dev" 328 + source: hosted 329 + version: "2.3.1" 330 + http_multi_server: 331 + dependency: transitive 332 + description: 333 + name: http_multi_server 334 + sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b" 335 + url: "https://pub.dev" 336 + source: hosted 337 + version: "3.2.1" 338 + http_parser: 339 + dependency: transitive 340 + description: 341 + name: http_parser 342 + sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" 343 + url: "https://pub.dev" 344 + source: hosted 345 + version: "4.0.2" 346 + integration_test: 347 + dependency: "direct dev" 348 + description: flutter 349 + source: sdk 350 + version: "0.0.0" 351 + intl: 352 + dependency: "direct main" 353 + description: 354 + name: intl 355 + sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d" 356 + url: "https://pub.dev" 357 + source: hosted 358 + version: "0.18.1" 359 + io: 360 + dependency: transitive 361 + description: 362 + name: io 363 + sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e" 364 + url: "https://pub.dev" 365 + source: hosted 366 + version: "1.0.4" 367 + js: 368 + dependency: transitive 369 + description: 370 + name: js 371 + sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 372 + url: "https://pub.dev" 373 + source: hosted 374 + version: "0.6.7" 375 + json_annotation: 376 + dependency: "direct main" 377 + description: 378 + name: json_annotation 379 + sha256: b10a7b2ff83d83c777edba3c6a0f97045ddadd56c944e1a23a3fdf43a1bf4467 380 + url: "https://pub.dev" 381 + source: hosted 382 + version: "4.8.1" 383 + json_serializable: 384 + dependency: "direct dev" 385 + description: 386 + name: json_serializable 387 + sha256: aa1f5a8912615733e0fdc7a02af03308933c93235bdc8d50d0b0c8a8ccb0b969 388 + url: "https://pub.dev" 389 + source: hosted 390 + version: "6.7.1" 391 + lints: 392 + dependency: transitive 393 + description: 394 + name: lints 395 + sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452" 396 + url: "https://pub.dev" 397 + source: hosted 398 + version: "2.1.1" 399 + local_notifier: 400 + dependency: "direct main" 401 + description: 402 + name: local_notifier 403 + sha256: cc855aa6362c8840e3d3b35b1c3b058a3a8becdb2b03d5a9aa3f3a1e861f0a03 404 + url: "https://pub.dev" 405 + source: hosted 406 + version: "0.1.5" 407 + logging: 408 + dependency: "direct main" 409 + description: 410 + name: logging 411 + sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340" 412 + url: "https://pub.dev" 413 + source: hosted 414 + version: "1.2.0" 415 + matcher: 416 + dependency: transitive 417 + description: 418 + name: matcher 419 + sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e" 420 + url: "https://pub.dev" 421 + source: hosted 422 + version: "0.12.16" 423 + material_color_utilities: 424 + dependency: transitive 425 + description: 426 + name: material_color_utilities 427 + sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41" 428 + url: "https://pub.dev" 429 + source: hosted 430 + version: "0.5.0" 431 + menu_base: 432 + dependency: transitive 433 + description: 434 + name: menu_base 435 + sha256: "820368014a171bd1241030278e6c2617354f492f5c703d7b7d4570a6b8b84405" 436 + url: "https://pub.dev" 437 + source: hosted 438 + version: "0.1.1" 439 + meta: 440 + dependency: transitive 441 + description: 442 + name: meta 443 + sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3" 444 + url: "https://pub.dev" 445 + source: hosted 446 + version: "1.9.1" 447 + mime: 448 + dependency: transitive 449 + description: 450 + name: mime 451 + sha256: e4ff8e8564c03f255408decd16e7899da1733852a9110a58fe6d1b817684a63e 452 + url: "https://pub.dev" 453 + source: hosted 454 + version: "1.0.4" 455 + package_config: 456 + dependency: transitive 457 + description: 458 + name: package_config 459 + sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd" 460 + url: "https://pub.dev" 461 + source: hosted 462 + version: "2.1.0" 463 + path: 464 + dependency: "direct main" 465 + description: 466 + name: path 467 + sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" 468 + url: "https://pub.dev" 469 + source: hosted 470 + version: "1.8.3" 471 + path_parsing: 472 + dependency: transitive 473 + description: 474 + name: path_parsing 475 + sha256: e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf 476 + url: "https://pub.dev" 477 + source: hosted 478 + version: "1.0.1" 479 + path_provider: 480 + dependency: "direct main" 481 + description: 482 + name: path_provider 483 + sha256: "909b84830485dbcd0308edf6f7368bc8fd76afa26a270420f34cabea2a6467a0" 484 + url: "https://pub.dev" 485 + source: hosted 486 + version: "2.1.0" 487 + path_provider_android: 488 + dependency: transitive 489 + description: 490 + name: path_provider_android 491 + sha256: "5d44fc3314d969b84816b569070d7ace0f1dea04bd94a83f74c4829615d22ad8" 492 + url: "https://pub.dev" 493 + source: hosted 494 + version: "2.1.0" 495 + path_provider_foundation: 496 + dependency: transitive 497 + description: 498 + name: path_provider_foundation 499 + sha256: "1b744d3d774e5a879bb76d6cd1ecee2ba2c6960c03b1020cd35212f6aa267ac5" 500 + url: "https://pub.dev" 501 + source: hosted 502 + version: "2.3.0" 503 + path_provider_linux: 504 + dependency: transitive 505 + description: 506 + name: path_provider_linux 507 + sha256: ba2b77f0c52a33db09fc8caf85b12df691bf28d983e84cf87ff6d693cfa007b3 508 + url: "https://pub.dev" 509 + source: hosted 510 + version: "2.2.0" 511 + path_provider_platform_interface: 512 + dependency: transitive 513 + description: 514 + name: path_provider_platform_interface 515 + sha256: bced5679c7df11190e1ddc35f3222c858f328fff85c3942e46e7f5589bf9eb84 516 + url: "https://pub.dev" 517 + source: hosted 518 + version: "2.1.0" 519 + path_provider_windows: 520 + dependency: transitive 521 + description: 522 + name: path_provider_windows 523 + sha256: ee0e0d164516b90ae1f970bdf29f726f1aa730d7cfc449ecc74c495378b705da 524 + url: "https://pub.dev" 525 + source: hosted 526 + version: "2.2.0" 527 + petitparser: 528 + dependency: transitive 529 + description: 530 + name: petitparser 531 + sha256: cb3798bef7fc021ac45b308f4b51208a152792445cce0448c9a4ba5879dd8750 532 + url: "https://pub.dev" 533 + source: hosted 534 + version: "5.4.0" 535 + platform: 536 + dependency: transitive 537 + description: 538 + name: platform 539 + sha256: "4a451831508d7d6ca779f7ac6e212b4023dd5a7d08a27a63da33756410e32b76" 540 + url: "https://pub.dev" 541 + source: hosted 542 + version: "3.1.0" 543 + plugin_platform_interface: 544 + dependency: transitive 545 + description: 546 + name: plugin_platform_interface 547 + sha256: "43798d895c929056255600343db8f049921cbec94d31ec87f1dc5c16c01935dd" 548 + url: "https://pub.dev" 549 + source: hosted 550 + version: "2.1.5" 551 + pointycastle: 552 + dependency: transitive 553 + description: 554 + name: pointycastle 555 + sha256: "7c1e5f0d23c9016c5bbd8b1473d0d3fb3fc851b876046039509e18e0c7485f2c" 556 + url: "https://pub.dev" 557 + source: hosted 558 + version: "3.7.3" 559 + pool: 560 + dependency: transitive 561 + description: 562 + name: pool 563 + sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a" 564 + url: "https://pub.dev" 565 + source: hosted 566 + version: "1.5.1" 567 + process: 568 + dependency: transitive 569 + description: 570 + name: process 571 + sha256: "53fd8db9cec1d37b0574e12f07520d582019cb6c44abf5479a01505099a34a09" 572 + url: "https://pub.dev" 573 + source: hosted 574 + version: "4.2.4" 575 + pub_semver: 576 + dependency: transitive 577 + description: 578 + name: pub_semver 579 + sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c" 580 + url: "https://pub.dev" 581 + source: hosted 582 + version: "2.1.4" 583 + pubspec_parse: 584 + dependency: transitive 585 + description: 586 + name: pubspec_parse 587 + sha256: c63b2876e58e194e4b0828fcb080ad0e06d051cb607a6be51a9e084f47cb9367 588 + url: "https://pub.dev" 589 + source: hosted 590 + version: "1.2.3" 591 + qrscanner_zxing: 592 + dependency: "direct main" 593 + description: 594 + path: "android/flutter_plugins/qrscanner_zxing" 595 + relative: true 596 + source: path 597 + version: "1.0.0" 598 + riverpod: 599 + dependency: transitive 600 + description: 601 + name: riverpod 602 + sha256: b0fbf7927333c5c318f7e2c22c8b4fd2542ba294de0373e80ecdb34e0dcd8dc4 603 + url: "https://pub.dev" 604 + source: hosted 605 + version: "2.3.2" 606 + screen_retriever: 607 + dependency: "direct main" 608 + description: 609 + name: screen_retriever 610 + sha256: "6ee02c8a1158e6dae7ca430da79436e3b1c9563c8cf02f524af997c201ac2b90" 611 + url: "https://pub.dev" 612 + source: hosted 613 + version: "0.1.9" 614 + shared_preferences: 615 + dependency: "direct main" 616 + description: 617 + name: shared_preferences 618 + sha256: "0344316c947ffeb3a529eac929e1978fcd37c26be4e8468628bac399365a3ca1" 619 + url: "https://pub.dev" 620 + source: hosted 621 + version: "2.2.0" 622 + shared_preferences_android: 623 + dependency: transitive 624 + description: 625 + name: shared_preferences_android 626 + sha256: fe8401ec5b6dcd739a0fe9588802069e608c3fdbfd3c3c93e546cf2f90438076 627 + url: "https://pub.dev" 628 + source: hosted 629 + version: "2.2.0" 630 + shared_preferences_foundation: 631 + dependency: transitive 632 + description: 633 + name: shared_preferences_foundation 634 + sha256: d29753996d8eb8f7619a1f13df6ce65e34bc107bef6330739ed76f18b22310ef 635 + url: "https://pub.dev" 636 + source: hosted 637 + version: "2.3.3" 638 + shared_preferences_linux: 639 + dependency: transitive 640 + description: 641 + name: shared_preferences_linux 642 + sha256: "71d6806d1449b0a9d4e85e0c7a917771e672a3d5dc61149cc9fac871115018e1" 643 + url: "https://pub.dev" 644 + source: hosted 645 + version: "2.3.0" 646 + shared_preferences_platform_interface: 647 + dependency: transitive 648 + description: 649 + name: shared_preferences_platform_interface 650 + sha256: "23b052f17a25b90ff2b61aad4cc962154da76fb62848a9ce088efe30d7c50ab1" 651 + url: "https://pub.dev" 652 + source: hosted 653 + version: "2.3.0" 654 + shared_preferences_web: 655 + dependency: transitive 656 + description: 657 + name: shared_preferences_web 658 + sha256: "7347b194fb0bbeb4058e6a4e87ee70350b6b2b90f8ac5f8bd5b3a01548f6d33a" 659 + url: "https://pub.dev" 660 + source: hosted 661 + version: "2.2.0" 662 + shared_preferences_windows: 663 + dependency: transitive 664 + description: 665 + name: shared_preferences_windows 666 + sha256: f95e6a43162bce43c9c3405f3eb6f39e5b5d11f65fab19196cf8225e2777624d 667 + url: "https://pub.dev" 668 + source: hosted 669 + version: "2.3.0" 670 + shelf: 671 + dependency: transitive 672 + description: 673 + name: shelf 674 + sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4 675 + url: "https://pub.dev" 676 + source: hosted 677 + version: "1.4.1" 678 + shelf_web_socket: 679 + dependency: transitive 680 + description: 681 + name: shelf_web_socket 682 + sha256: "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1" 683 + url: "https://pub.dev" 684 + source: hosted 685 + version: "1.0.4" 686 + shortid: 687 + dependency: transitive 688 + description: 689 + name: shortid 690 + sha256: d0b40e3dbb50497dad107e19c54ca7de0d1a274eb9b4404991e443dadb9ebedb 691 + url: "https://pub.dev" 692 + source: hosted 693 + version: "0.1.2" 694 + sky_engine: 695 + dependency: transitive 696 + description: flutter 697 + source: sdk 698 + version: "0.0.99" 699 + source_gen: 700 + dependency: transitive 701 + description: 702 + name: source_gen 703 + sha256: fc0da689e5302edb6177fdd964efcb7f58912f43c28c2047a808f5bfff643d16 704 + url: "https://pub.dev" 705 + source: hosted 706 + version: "1.4.0" 707 + source_helper: 708 + dependency: transitive 709 + description: 710 + name: source_helper 711 + sha256: "6adebc0006c37dd63fe05bca0a929b99f06402fc95aa35bf36d67f5c06de01fd" 712 + url: "https://pub.dev" 713 + source: hosted 714 + version: "1.3.4" 715 + source_span: 716 + dependency: transitive 717 + description: 718 + name: source_span 719 + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" 720 + url: "https://pub.dev" 721 + source: hosted 722 + version: "1.10.0" 723 + stack_trace: 724 + dependency: transitive 725 + description: 726 + name: stack_trace 727 + sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5 728 + url: "https://pub.dev" 729 + source: hosted 730 + version: "1.11.0" 731 + state_notifier: 732 + dependency: transitive 733 + description: 734 + name: state_notifier 735 + sha256: "8fe42610f179b843b12371e40db58c9444f8757f8b69d181c97e50787caed289" 736 + url: "https://pub.dev" 737 + source: hosted 738 + version: "0.7.2+1" 739 + stream_channel: 740 + dependency: transitive 741 + description: 742 + name: stream_channel 743 + sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8" 744 + url: "https://pub.dev" 745 + source: hosted 746 + version: "2.1.1" 747 + stream_transform: 748 + dependency: transitive 749 + description: 750 + name: stream_transform 751 + sha256: "14a00e794c7c11aa145a170587321aedce29769c08d7f58b1d141da75e3b1c6f" 752 + url: "https://pub.dev" 753 + source: hosted 754 + version: "2.1.0" 755 + string_scanner: 756 + dependency: transitive 757 + description: 758 + name: string_scanner 759 + sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" 760 + url: "https://pub.dev" 761 + source: hosted 762 + version: "1.2.0" 763 + sync_http: 764 + dependency: transitive 765 + description: 766 + name: sync_http 767 + sha256: "7f0cd72eca000d2e026bcd6f990b81d0ca06022ef4e32fb257b30d3d1014a961" 768 + url: "https://pub.dev" 769 + source: hosted 770 + version: "0.3.1" 771 + term_glyph: 772 + dependency: transitive 773 + description: 774 + name: term_glyph 775 + sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 776 + url: "https://pub.dev" 777 + source: hosted 778 + version: "1.2.1" 779 + test_api: 780 + dependency: transitive 781 + description: 782 + name: test_api 783 + sha256: "75760ffd7786fffdfb9597c35c5b27eaeec82be8edfb6d71d32651128ed7aab8" 784 + url: "https://pub.dev" 785 + source: hosted 786 + version: "0.6.0" 787 + timing: 788 + dependency: transitive 789 + description: 790 + name: timing 791 + sha256: "70a3b636575d4163c477e6de42f247a23b315ae20e86442bebe32d3cabf61c32" 792 + url: "https://pub.dev" 793 + source: hosted 794 + version: "1.0.1" 795 + tray_manager: 796 + dependency: "direct main" 797 + description: 798 + name: tray_manager 799 + sha256: b1975a05e0c6999e983cf9a58a6a098318c896040ccebac5398a3cc9e43b9c69 800 + url: "https://pub.dev" 801 + source: hosted 802 + version: "0.2.0" 803 + typed_data: 804 + dependency: transitive 805 + description: 806 + name: typed_data 807 + sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c 808 + url: "https://pub.dev" 809 + source: hosted 810 + version: "1.3.2" 811 + url_launcher: 812 + dependency: "direct main" 813 + description: 814 + name: url_launcher 815 + sha256: "781bd58a1eb16069412365c98597726cd8810ae27435f04b3b4d3a470bacd61e" 816 + url: "https://pub.dev" 817 + source: hosted 818 + version: "6.1.12" 819 + url_launcher_android: 820 + dependency: transitive 821 + description: 822 + name: url_launcher_android 823 + sha256: "3dd2388cc0c42912eee04434531a26a82512b9cb1827e0214430c9bcbddfe025" 824 + url: "https://pub.dev" 825 + source: hosted 826 + version: "6.0.38" 827 + url_launcher_ios: 828 + dependency: transitive 829 + description: 830 + name: url_launcher_ios 831 + sha256: "9af7ea73259886b92199f9e42c116072f05ff9bea2dcb339ab935dfc957392c2" 832 + url: "https://pub.dev" 833 + source: hosted 834 + version: "6.1.4" 835 + url_launcher_linux: 836 + dependency: transitive 837 + description: 838 + name: url_launcher_linux 839 + sha256: "207f4ddda99b95b4d4868320a352d374b0b7e05eefad95a4a26f57da413443f5" 840 + url: "https://pub.dev" 841 + source: hosted 842 + version: "3.0.5" 843 + url_launcher_macos: 844 + dependency: transitive 845 + description: 846 + name: url_launcher_macos 847 + sha256: "1c4fdc0bfea61a70792ce97157e5cc17260f61abbe4f39354513f39ec6fd73b1" 848 + url: "https://pub.dev" 849 + source: hosted 850 + version: "3.0.6" 851 + url_launcher_platform_interface: 852 + dependency: transitive 853 + description: 854 + name: url_launcher_platform_interface 855 + sha256: bfdfa402f1f3298637d71ca8ecfe840b4696698213d5346e9d12d4ab647ee2ea 856 + url: "https://pub.dev" 857 + source: hosted 858 + version: "2.1.3" 859 + url_launcher_web: 860 + dependency: transitive 861 + description: 862 + name: url_launcher_web 863 + sha256: cc26720eefe98c1b71d85f9dc7ef0cada5132617046369d9dc296b3ecaa5cbb4 864 + url: "https://pub.dev" 865 + source: hosted 866 + version: "2.0.18" 867 + url_launcher_windows: 868 + dependency: transitive 869 + description: 870 + name: url_launcher_windows 871 + sha256: "7967065dd2b5fccc18c653b97958fdf839c5478c28e767c61ee879f4e7882422" 872 + url: "https://pub.dev" 873 + source: hosted 874 + version: "3.0.7" 875 + uuid: 876 + dependency: transitive 877 + description: 878 + name: uuid 879 + sha256: "648e103079f7c64a36dc7d39369cabb358d377078a051d6ae2ad3aa539519313" 880 + url: "https://pub.dev" 881 + source: hosted 882 + version: "3.0.7" 883 + vector_graphics: 884 + dependency: "direct main" 885 + description: 886 + name: vector_graphics 887 + sha256: "670f6e07aca990b4a2bcdc08a784193c4ccdd1932620244c3a86bb72a0eac67f" 888 + url: "https://pub.dev" 889 + source: hosted 890 + version: "1.1.7" 891 + vector_graphics_codec: 892 + dependency: transitive 893 + description: 894 + name: vector_graphics_codec 895 + sha256: "7451721781d967db9933b63f5733b1c4533022c0ba373a01bdd79d1a5457f69f" 896 + url: "https://pub.dev" 897 + source: hosted 898 + version: "1.1.7" 899 + vector_graphics_compiler: 900 + dependency: "direct main" 901 + description: 902 + name: vector_graphics_compiler 903 + sha256: "80a13c613c8bde758b1464a1755a7b3a8f2b6cec61fbf0f5a53c94c30f03ba2e" 904 + url: "https://pub.dev" 905 + source: hosted 906 + version: "1.1.7" 907 + vector_math: 908 + dependency: transitive 909 + description: 910 + name: vector_math 911 + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" 912 + url: "https://pub.dev" 913 + source: hosted 914 + version: "2.1.4" 915 + vm_service: 916 + dependency: transitive 917 + description: 918 + name: vm_service 919 + sha256: c620a6f783fa22436da68e42db7ebbf18b8c44b9a46ab911f666ff09ffd9153f 920 + url: "https://pub.dev" 921 + source: hosted 922 + version: "11.7.1" 923 + watcher: 924 + dependency: transitive 925 + description: 926 + name: watcher 927 + sha256: "3d2ad6751b3c16cf07c7fca317a1413b3f26530319181b37e3b9039b84fc01d8" 928 + url: "https://pub.dev" 929 + source: hosted 930 + version: "1.1.0" 931 + web: 932 + dependency: transitive 933 + description: 934 + name: web 935 + sha256: dc8ccd225a2005c1be616fe02951e2e342092edf968cf0844220383757ef8f10 936 + url: "https://pub.dev" 937 + source: hosted 938 + version: "0.1.4-beta" 939 + web_socket_channel: 940 + dependency: transitive 941 + description: 942 + name: web_socket_channel 943 + sha256: d88238e5eac9a42bb43ca4e721edba3c08c6354d4a53063afaa568516217621b 944 + url: "https://pub.dev" 945 + source: hosted 946 + version: "2.4.0" 947 + webdriver: 948 + dependency: transitive 949 + description: 950 + name: webdriver 951 + sha256: "3c923e918918feeb90c4c9fdf1fe39220fa4c0e8e2c0fffaded174498ef86c49" 952 + url: "https://pub.dev" 953 + source: hosted 954 + version: "3.0.2" 955 + win32: 956 + dependency: transitive 957 + description: 958 + name: win32 959 + sha256: "9e82a402b7f3d518fb9c02d0e9ae45952df31b9bf34d77baf19da2de03fc2aaa" 960 + url: "https://pub.dev" 961 + source: hosted 962 + version: "5.0.7" 963 + window_manager: 964 + dependency: "direct main" 965 + description: 966 + name: window_manager 967 + sha256: "6ee795be9124f90660ea9d05e581a466de19e1c89ee74fc4bf528f60c8600edd" 968 + url: "https://pub.dev" 969 + source: hosted 970 + version: "0.3.6" 971 + xdg_directories: 972 + dependency: transitive 973 + description: 974 + name: xdg_directories 975 + sha256: f0c26453a2d47aa4c2570c6a033246a3fc62da2fe23c7ffdd0a7495086dc0247 976 + url: "https://pub.dev" 977 + source: hosted 978 + version: "1.0.2" 979 + xml: 980 + dependency: transitive 981 + description: 982 + name: xml 983 + sha256: "5bc72e1e45e941d825fd7468b9b4cc3b9327942649aeb6fc5cdbf135f0a86e84" 984 + url: "https://pub.dev" 985 + source: hosted 986 + version: "6.3.0" 987 + yaml: 988 + dependency: transitive 989 + description: 990 + name: yaml 991 + sha256: "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5" 992 + url: "https://pub.dev" 993 + source: hosted 994 + version: "3.1.2" 995 + sdks: 996 + dart: ">=3.1.0-185.0.dev <4.0.0" 997 + flutter: ">=3.10.0"
+3 -3
pkgs/applications/networking/cluster/temporal/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "temporal"; 5 - version = "1.21.2"; 5 + version = "1.21.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "temporalio"; 9 9 repo = "temporal"; 10 10 rev = "v${version}"; 11 - hash = "sha256-4iosKxGjH2O2y2wkAs/tuCH+SXTj6FhrPqS9qgL+vTQ="; 11 + hash = "sha256-G8HqoTdkAAGSadJRF+22hD8q0htwl21HWupfx1/5muc="; 12 12 }; 13 13 14 - vendorHash = "sha256-rgUdoFR7Qcp1h7v63DAWwx6NWSwWrJ6C6/b2tx2kCCw="; 14 + vendorHash = "sha256-AVij8Xb729UQt8BuRf+SoGhoDFzsVELAFV5xCBwnx4c="; 15 15 16 16 excludedPackages = [ "./build" ]; 17 17
+2 -2
pkgs/applications/networking/dnscontrol/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "dnscontrol"; 5 - version = "4.2.0"; 5 + version = "4.3.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "StackExchange"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-woiFCirM2psmwcKGgQngOJuYZDI2t81xkSzVi4svtXs="; 11 + sha256 = "sha256-poLRt/T7BGzcIBjBcm943XnSurO3DJOx2QyqjDcqNRo="; 12 12 }; 13 13 14 14 vendorHash = "sha256-3xT5WPBcEclXad8zBA+T7/M6fDmfMWljV8NuxvtvTsA=";
+5 -5
pkgs/applications/networking/instant-messengers/element/pin.nix
··· 1 1 { 2 - "version" = "1.11.38"; 2 + "version" = "1.11.40"; 3 3 "hashes" = { 4 - "desktopSrcHash" = "sha256-xDeVwDQ0/ZeqA8c052WvDyhn14TgDTg+FRYQscgxXOQ="; 5 - "desktopYarnHash" = "1ksj99g649kvilr850rkk8nkl55z7vz7m8159777kjikakzra2ly"; 6 - "webSrcHash" = "sha256-R/JyEVjQN4AYD0AqLJDYcrfGHwTMVGDBhNIK3AtGi2c="; 7 - "webYarnHash" = "1znayywxzs1c4ypdv4akxy0lb7mg0i9h74wnja4d5d3vbbdgnid5"; 4 + "desktopSrcHash" = "sha256-GbmRhdTcbwhDnFv0ljaf3SfoRmuw+zqcetKfCrnxwZ8="; 5 + "desktopYarnHash" = "0w8m318gqm5s2ws9l314l3pm6d6biqp1h58v35zisz2j777kcp76"; 6 + "webSrcHash" = "sha256-TCK3MqKodeIt6Nh1+QK2v6DgC1PHrcKljsN2hHMwHe4="; 7 + "webYarnHash" = "0lx42rz9s6ssdp5d31y5pcaigbs290mn1mnpknbcfdygw0pra897"; 8 8 }; 9 9 }
+1 -1
pkgs/applications/networking/instant-messengers/fluffychat/default.nix
··· 24 24 }; 25 25 26 26 depsListFile = ./deps.json; 27 - vendorHash = "sha256-Ot96+EF8PgYQmXn0hvIWzN8StuzTgQzakRO3yf7PJAU="; 27 + vendorHash = "sha256-dkH+iI1KLsAJtSt6ndc3ZRBllZ9n21RNONqeeUzNQCE="; 28 28 29 29 desktopItem = makeDesktopItem { 30 30 name = "Fluffychat";
+34 -26
pkgs/applications/networking/instant-messengers/fluffychat/deps.json
··· 152 152 "dependencies": [ 153 153 "characters", 154 154 "collection", 155 - "js", 156 155 "material_color_utilities", 157 156 "meta", 158 157 "vector_math", 158 + "web", 159 159 "sky_engine" 160 160 ] 161 161 }, ··· 167 167 "dependencies": [] 168 168 }, 169 169 { 170 - "name": "vector_math", 171 - "version": "2.1.4", 170 + "name": "web", 171 + "version": "0.1.4-beta", 172 172 "kind": "transitive", 173 173 "source": "hosted", 174 174 "dependencies": [] 175 175 }, 176 176 { 177 - "name": "material_color_utilities", 178 - "version": "0.2.0", 177 + "name": "vector_math", 178 + "version": "2.1.4", 179 179 "kind": "transitive", 180 180 "source": "hosted", 181 181 "dependencies": [] 182 182 }, 183 183 { 184 - "name": "js", 185 - "version": "0.6.7", 184 + "name": "material_color_utilities", 185 + "version": "0.5.0", 186 186 "kind": "transitive", 187 187 "source": "hosted", 188 188 "dependencies": [ 189 - "meta" 189 + "collection" 190 190 ] 191 191 }, 192 192 { 193 193 "name": "collection", 194 - "version": "1.17.1", 194 + "version": "1.17.2", 195 195 "kind": "direct", 196 196 "source": "hosted", 197 197 "dependencies": [] ··· 268 268 }, 269 269 { 270 270 "name": "source_span", 271 - "version": "1.9.1", 271 + "version": "1.10.0", 272 272 "kind": "transitive", 273 273 "source": "hosted", 274 274 "dependencies": [ ··· 418 418 ] 419 419 }, 420 420 { 421 + "name": "js", 422 + "version": "0.6.7", 423 + "kind": "transitive", 424 + "source": "hosted", 425 + "dependencies": [ 426 + "meta" 427 + ] 428 + }, 429 + { 421 430 "name": "convert", 422 431 "version": "3.1.1", 423 432 "kind": "transitive", ··· 492 501 "collection", 493 502 "fake_async", 494 503 "file", 495 - "js", 496 504 "matcher", 497 505 "material_color_utilities", 498 506 "meta", ··· 504 512 "term_glyph", 505 513 "test_api", 506 514 "vector_math", 515 + "web", 507 516 "webdriver" 508 517 ] 509 518 }, ··· 537 546 }, 538 547 { 539 548 "name": "matcher", 540 - "version": "0.12.15", 549 + "version": "0.12.16", 541 550 "kind": "transitive", 542 551 "source": "hosted", 543 552 "dependencies": [ ··· 550 559 }, 551 560 { 552 561 "name": "test_api", 553 - "version": "0.5.1", 562 + "version": "0.6.0", 554 563 "kind": "transitive", 555 564 "source": "hosted", 556 565 "dependencies": [ ··· 562 571 "stack_trace", 563 572 "stream_channel", 564 573 "string_scanner", 565 - "term_glyph", 566 - "matcher" 574 + "term_glyph" 567 575 ] 568 576 }, 569 577 { ··· 604 612 }, 605 613 { 606 614 "name": "vm_service", 607 - "version": "11.3.0", 615 + "version": "11.7.1", 608 616 "kind": "transitive", 609 617 "source": "hosted", 610 618 "dependencies": [] ··· 617 625 "dependencies": [ 618 626 "flutter", 619 627 "test_api", 628 + "matcher", 620 629 "path", 621 630 "fake_async", 622 631 "clock", ··· 626 635 "boolean_selector", 627 636 "characters", 628 637 "collection", 629 - "js", 630 - "matcher", 631 638 "material_color_utilities", 632 639 "meta", 633 640 "source_span", 634 641 "stream_channel", 635 642 "string_scanner", 636 - "term_glyph" 643 + "term_glyph", 644 + "web" 637 645 ] 638 646 }, 639 647 { ··· 655 663 "characters", 656 664 "clock", 657 665 "collection", 658 - "js", 659 666 "matcher", 660 667 "material_color_utilities", 661 668 "platform", ··· 667 674 "sync_http", 668 675 "term_glyph", 669 676 "test_api", 670 - "vector_math" 677 + "vector_math", 678 + "web" 671 679 ] 672 680 }, 673 681 { ··· 776 784 "source": "sdk", 777 785 "dependencies": [ 778 786 "flutter", 779 - "js", 780 787 "characters", 781 788 "collection", 782 789 "material_color_utilities", 783 790 "meta", 784 - "vector_math" 791 + "vector_math", 792 + "web" 785 793 ] 786 794 }, 787 795 { ··· 1983 1991 }, 1984 1992 { 1985 1993 "name": "intl", 1986 - "version": "0.18.0", 1994 + "version": "0.18.1", 1987 1995 "kind": "direct", 1988 1996 "source": "hosted", 1989 1997 "dependencies": [ ··· 2720 2728 "characters", 2721 2729 "clock", 2722 2730 "collection", 2723 - "js", 2724 2731 "material_color_utilities", 2725 2732 "meta", 2726 2733 "path", 2727 - "vector_math" 2734 + "vector_math", 2735 + "web" 2728 2736 ] 2729 2737 }, 2730 2738 {
+2 -2
pkgs/applications/window-managers/ragnarwm/default.nix
··· 13 13 14 14 stdenv.mkDerivation (finalAttrs: { 15 15 pname = "ragnarwm"; 16 - version = "1.3.1"; 16 + version = "1.4"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "cococry"; 20 20 repo = "Ragnar"; 21 21 rev = finalAttrs.version; 22 - hash = "sha256-SZWhmFNmS2oLdO9BnPzimoind1452v/EEQzadc5A+bI"; 22 + hash = "sha256-OZhIwrKEhTfkw9K8nZIwGZzxXBObseWS92Y+85HmdNs="; 23 23 }; 24 24 25 25 prePatch = ''
+8 -2
pkgs/build-support/dart/build-dart-application/default.nix
··· 1 - { lib, stdenv, fetchDartDeps, writeText, dartHooks, makeWrapper, dart, nodejs, darwin }: 1 + { lib, stdenv, fetchDartDeps, runCommand, writeText, dartHooks, makeWrapper, dart, cacert, nodejs, darwin }: 2 2 3 3 { pubGetScript ? "dart pub get" 4 4 ··· 30 30 }@args: 31 31 32 32 let 33 - dartDeps = fetchDartDeps { 33 + dartDeps = (fetchDartDeps.override { 34 + dart = runCommand "dart-fod" { nativeBuildInputs = [ makeWrapper ]; } '' 35 + mkdir -p "$out/bin" 36 + makeWrapper "${dart}/bin/dart" "$out/bin/dart" \ 37 + --add-flags "--root-certs-file=${cacert}/etc/ssl/certs/ca-bundle.crt" 38 + ''; 39 + }) { 34 40 buildDrvArgs = args; 35 41 inherit pubGetScript vendorHash pubspecLockFile; 36 42 };
+21
pkgs/build-support/flutter/default.nix
··· 1 1 { lib 2 2 , callPackage 3 3 , stdenvNoCC 4 + , runCommand 4 5 , makeWrapper 5 6 , llvmPackages_13 6 7 , cacert ··· 26 27 }@args: 27 28 let 28 29 flutterSetupScript = '' 30 + # Pub needs SSL certificates. Dart normally looks in a hardcoded path. 31 + # https://github.com/dart-lang/sdk/blob/3.1.0/runtime/bin/security_context_linux.cc#L48 32 + # 33 + # Dart does not respect SSL_CERT_FILE... 34 + # https://github.com/dart-lang/sdk/issues/48506 35 + # ...and Flutter does not support --root-certs-file, so the path cannot be manually set. 36 + # https://github.com/flutter/flutter/issues/56607 37 + # https://github.com/flutter/flutter/issues/113594 38 + # 39 + # libredirect is of no use either, as Flutter does not pass any 40 + # environment variables (including LD_PRELOAD) to the Pub process. 41 + # 42 + # Instead, Flutter is patched to allow the path to the Dart binary used for 43 + # Pub commands to be overriden. 44 + export NIX_FLUTTER_PUB_DART="${runCommand "dart-with-certs" { nativeBuildInputs = [ makeWrapper ]; } '' 45 + mkdir -p "$out/bin" 46 + makeWrapper ${flutter.dart}/bin/dart "$out/bin/dart" \ 47 + --add-flags "--root-certs-file=${cacert}/etc/ssl/certs/ca-bundle.crt" 48 + ''}/bin/dart" 49 + 29 50 export HOME="$NIX_BUILD_TOP" 30 51 flutter config --no-analytics &>/dev/null # mute first-run 31 52 flutter config --enable-linux-desktop >/dev/null
+1 -1
pkgs/desktops/expidus/file-manager/default.nix
··· 11 11 }; 12 12 13 13 depsListFile = ./deps.json; 14 - vendorHash = "sha256-m2GCLC4ZUvDdBVKjxZjelrZZHY3+R7DilOOT84Twrxg="; 14 + vendorHash = "sha256-7d8hsqXD7oqUN8VjQczSCyqytubDRq0os8wGnOfdSvs="; 15 15 16 16 postInstall = '' 17 17 rm $out/bin/file_manager
+60 -61
pkgs/desktops/expidus/file-manager/deps.json
··· 60 60 "dependencies": [ 61 61 "flutter", 62 62 "test_api", 63 + "matcher", 63 64 "path", 64 65 "fake_async", 65 66 "clock", ··· 69 70 "boolean_selector", 70 71 "characters", 71 72 "collection", 72 - "js", 73 - "matcher", 74 73 "material_color_utilities", 75 74 "meta", 76 75 "source_span", 77 76 "stream_channel", 78 77 "string_scanner", 79 - "term_glyph" 78 + "term_glyph", 79 + "web" 80 80 ] 81 81 }, 82 82 { 83 + "name": "web", 84 + "version": "0.1.4-beta", 85 + "kind": "transitive", 86 + "source": "hosted", 87 + "dependencies": [] 88 + }, 89 + { 83 90 "name": "term_glyph", 84 91 "version": "1.2.1", 85 92 "kind": "transitive", ··· 97 104 }, 98 105 { 99 106 "name": "source_span", 100 - "version": "1.9.1", 107 + "version": "1.10.0", 101 108 "kind": "transitive", 102 109 "source": "hosted", 103 110 "dependencies": [ ··· 115 122 }, 116 123 { 117 124 "name": "collection", 118 - "version": "1.17.1", 125 + "version": "1.17.2", 119 126 "kind": "direct", 120 127 "source": "hosted", 121 128 "dependencies": [] ··· 148 155 }, 149 156 { 150 157 "name": "material_color_utilities", 151 - "version": "0.2.0", 152 - "kind": "transitive", 153 - "source": "hosted", 154 - "dependencies": [] 155 - }, 156 - { 157 - "name": "matcher", 158 - "version": "0.12.15", 158 + "version": "0.5.0", 159 159 "kind": "transitive", 160 160 "source": "hosted", 161 161 "dependencies": [ 162 - "async", 163 - "meta", 164 - "stack_trace", 165 - "term_glyph", 166 - "test_api" 162 + "collection" 167 163 ] 168 164 }, 169 165 { 170 - "name": "test_api", 171 - "version": "0.5.1", 166 + "name": "characters", 167 + "version": "1.3.0", 172 168 "kind": "transitive", 173 169 "source": "hosted", 174 - "dependencies": [ 175 - "async", 176 - "boolean_selector", 177 - "collection", 178 - "meta", 179 - "source_span", 180 - "stack_trace", 181 - "stream_channel", 182 - "string_scanner", 183 - "term_glyph", 184 - "matcher" 185 - ] 186 - }, 187 - { 188 - "name": "stack_trace", 189 - "version": "1.11.0", 190 - "kind": "transitive", 191 - "source": "hosted", 192 - "dependencies": [ 193 - "path" 194 - ] 170 + "dependencies": [] 195 171 }, 196 172 { 197 173 "name": "boolean_selector", ··· 204 180 ] 205 181 }, 206 182 { 207 - "name": "js", 208 - "version": "0.6.7", 209 - "kind": "transitive", 210 - "source": "hosted", 211 - "dependencies": [ 212 - "meta" 213 - ] 214 - }, 215 - { 216 - "name": "characters", 217 - "version": "1.3.0", 183 + "name": "vector_math", 184 + "version": "2.1.4", 218 185 "kind": "transitive", 219 186 "source": "hosted", 220 187 "dependencies": [] 221 188 }, 222 189 { 223 - "name": "vector_math", 224 - "version": "2.1.4", 190 + "name": "stack_trace", 191 + "version": "1.11.0", 225 192 "kind": "transitive", 226 193 "source": "hosted", 227 - "dependencies": [] 194 + "dependencies": [ 195 + "path" 196 + ] 228 197 }, 229 198 { 230 199 "name": "clock", ··· 244 213 ] 245 214 }, 246 215 { 216 + "name": "matcher", 217 + "version": "0.12.16", 218 + "kind": "transitive", 219 + "source": "hosted", 220 + "dependencies": [ 221 + "async", 222 + "meta", 223 + "stack_trace", 224 + "term_glyph", 225 + "test_api" 226 + ] 227 + }, 228 + { 229 + "name": "test_api", 230 + "version": "0.6.0", 231 + "kind": "transitive", 232 + "source": "hosted", 233 + "dependencies": [ 234 + "async", 235 + "boolean_selector", 236 + "collection", 237 + "meta", 238 + "source_span", 239 + "stack_trace", 240 + "stream_channel", 241 + "string_scanner", 242 + "term_glyph" 243 + ] 244 + }, 245 + { 247 246 "name": "flutter", 248 247 "version": "0.0.0", 249 248 "kind": "direct", ··· 251 250 "dependencies": [ 252 251 "characters", 253 252 "collection", 254 - "js", 255 253 "material_color_utilities", 256 254 "meta", 257 255 "vector_math", 256 + "web", 258 257 "sky_engine" 259 258 ] 260 259 }, ··· 366 365 "source": "sdk", 367 366 "dependencies": [ 368 367 "flutter", 369 - "js", 370 368 "characters", 371 369 "collection", 372 370 "material_color_utilities", 373 371 "meta", 374 - "vector_math" 372 + "vector_math", 373 + "web" 375 374 ] 376 375 }, 377 376 { ··· 434 433 }, 435 434 { 436 435 "name": "intl", 437 - "version": "0.18.0", 436 + "version": "0.18.1", 438 437 "kind": "direct", 439 438 "source": "hosted", 440 439 "dependencies": [ ··· 1010 1009 "characters", 1011 1010 "clock", 1012 1011 "collection", 1013 - "js", 1014 1012 "material_color_utilities", 1015 1013 "meta", 1016 1014 "path", 1017 - "vector_math" 1015 + "vector_math", 1016 + "web" 1018 1017 ] 1019 1018 }, 1020 1019 {
+1 -1
pkgs/development/compilers/chicken/4/default.nix
··· 18 18 egg2nix = callPackage ./egg2nix.nix { }; 19 19 }; 20 20 21 - in lib.recurseIntoAttrs self 21 + in self
+34 -32
pkgs/development/compilers/chicken/5/default.nix
··· 1 1 { lib, newScope, fetchurl }: 2 - let 3 - callPackage = newScope self; 4 2 5 - self = with lib; { 6 - inherit callPackage; 3 + lib.makeScope newScope (self: { 7 4 8 - fetchegg = { pname, version, sha256, ... }: 9 - fetchurl { 10 - inherit sha256; 11 - url = 12 - "https://code.call-cc.org/egg-tarballs/5/${pname}/${pname}-${version}.tar.gz"; 13 - }; 14 - 15 - eggDerivation = callPackage ./eggDerivation.nix { }; 16 - 17 - chicken = callPackage ./chicken.nix { 18 - bootstrap-chicken = self.chicken.override { bootstrap-chicken = null; }; 5 + fetchegg = { pname, version, sha256, ... }: 6 + fetchurl { 7 + inherit sha256; 8 + url = 9 + "https://code.call-cc.org/egg-tarballs/5/${pname}/${pname}-${version}.tar.gz"; 19 10 }; 20 11 21 - chickenEggs = recurseIntoAttrs (mapAttrs (pname: 22 - eggData@{ version, synopsis, dependencies, license, ... }: 23 - self.eggDerivation { 24 - name = "${pname}-${version}"; 25 - src = self.fetchegg (eggData // { inherit pname; }); 26 - buildInputs = map (x: self.chickenEggs.${x}) dependencies; 27 - meta.homepage = 28 - "https://code.call-cc.org/cgi-bin/gitweb.cgi?p=eggs-5-latest.git;a=tree;f=${pname}/${version}"; 29 - meta.description = synopsis; 30 - meta.license = (licenses // { 31 - "bsd-2-clause" = licenses.bsd2; 32 - "bsd-3-clause" = licenses.bsd3; 33 - "public-domain" = licenses.publicDomain; 34 - }).${license} or license; 35 - }) (importTOML ./deps.toml)); 12 + eggDerivation = self.callPackage ./eggDerivation.nix { }; 36 13 37 - egg2nix = callPackage ./egg2nix.nix { }; 14 + chicken = self.callPackage ./chicken.nix { 15 + bootstrap-chicken = self.chicken.override { bootstrap-chicken = null; }; 38 16 }; 39 17 40 - in lib.recurseIntoAttrs self 18 + chickenEggs = lib.recurseIntoAttrs (lib.makeScope self.newScope (eggself: 19 + (lib.mapAttrs 20 + (pname: 21 + eggData@{ version, synopsis, dependencies, license, ... }: 22 + self.eggDerivation { 23 + name = "${pname}-${version}"; 24 + src = self.fetchegg (eggData // { inherit pname; }); 25 + buildInputs = map (x: eggself.${x}) dependencies; 26 + meta.homepage = 27 + "https://code.call-cc.org/cgi-bin/gitweb.cgi?p=eggs-5-latest.git;a=tree;f=${pname}/${version}"; 28 + meta.description = synopsis; 29 + meta.license = (lib.licenses // { 30 + "bsd-1-clause" = lib.licenses.bsd1; 31 + "bsd-2-clause" = lib.licenses.bsd2; 32 + "bsd-3-clause" = lib.licenses.bsd3; 33 + "lgpl-2.0+" = lib.licenses.lgpl2Plus; 34 + "lgpl-2.1-or-later" = lib.licenses.lgpl21Plus; 35 + "public-domain" = lib.licenses.publicDomain; 36 + }).${license} or license; 37 + }) 38 + (lib.importTOML ./deps.toml)))); 39 + 40 + egg2nix = self.callPackage ./egg2nix.nix { }; 41 + 42 + })
+36 -36
pkgs/development/compilers/chicken/5/deps.toml
··· 107 107 [apropos] 108 108 dependencies = ["srfi-1", "utf8", "string-utils", "symbol-utils", "check-errors"] 109 109 license = "bsd" 110 - sha256 = "1xnqfnbnac4pzm4j3mphq09p18q962dxg11cfyxqk8k6v8qrv5nh" 110 + sha256 = "0njkdxwd9122l9vql64nqm7dy3lggikr2bzwidwk7i8yz3nm3g6w" 111 111 synopsis = "CHICKEN apropos" 112 - version = "3.7.2" 112 + version = "3.8.1" 113 113 114 114 [arcadedb] 115 115 dependencies = ["uri-common", "medea"] ··· 282 282 [bitwise-utils] 283 283 dependencies = [] 284 284 license = "public-domain" 285 - sha256 = "09fdcv81069br4pz0ccr2jj6xgakvwbshdiy21r85865r7r6g05m" 285 + sha256 = "065q6ha8wsj6qhg7zxkaj2qrj5sm3iz2v7shcp5wh7j3fqwbs5q5" 286 286 synopsis = "Bitwise utilities" 287 - version = "1.2.5" 287 + version = "1.3.0" 288 288 289 289 [blas] 290 290 dependencies = ["bind", "compile-file", "srfi-13"] ··· 364 364 version = "2.3" 365 365 366 366 [cairo] 367 - dependencies = [] 367 + dependencies = ["srfi-1"] 368 368 license = "lgpl-2.1" 369 - sha256 = "1krsjlydqa9zj0bpad0w4x636kg30ng1azlyyn8j8vx3b8lcd362" 369 + sha256 = "1x69i4aysn8mf93ic36947p6gvgglk8c0vg2m6vdhimf6y65szi1" 370 370 synopsis = "Chicken bindings for Cairo, a vector graphics library" 371 - version = "0.1.17" 371 + version = "0.1.18" 372 372 373 373 [call-table-generics] 374 374 dependencies = ["brev-separate"] ··· 1157 1157 [gochan] 1158 1158 dependencies = ["matchable", "srfi-18", "queues"] 1159 1159 license = "bsd" 1160 - sha256 = "1yp3yzfx97qfx8kkxvjvs1vnr2h8iffnx1zaqq05dbh5ivnx74j8" 1160 + sha256 = "1pyzr387zbbw7x9zk524qcs368hzxv4c46p24cz3x2nl30y84d5h" 1161 1161 synopsis = "golang channels in CHICKEN" 1162 - version = "5.2.9" 1162 + version = "5.2.10" 1163 1163 1164 1164 [graph-bfs] 1165 1165 dependencies = ["srfi-1", "iset", "matchable", "yasos", "digraph"] ··· 1213 1213 [hash-trie] 1214 1214 dependencies = [] 1215 1215 license = "mit" 1216 - sha256 = "0kcr99fdc0b09inq8ansb79ynblcxryvsg67zfms5y7z91v11p0c" 1216 + sha256 = "1860bp5h3kh0ra6b2qvb5pccylajq1x2hng0skqnv8ik068lnfr0" 1217 1217 synopsis = "hash-trie" 1218 - version = "1.1.7" 1218 + version = "1.1.8" 1219 1219 1220 1220 [heap-o-rama] 1221 1221 dependencies = ["srfi-18"] ··· 1395 1395 [ipfs] 1396 1396 dependencies = ["http-client", "intarweb", "medea", "srfi-1", "srfi-13", "srfi-189", "srfi-197", "uri-common"] 1397 1397 license = "unlicense" 1398 - sha256 = "1cxjbl5kl4xk42a4p8j3av6ip0gqvp5yxahsccvm0snc98n3ngqg" 1398 + sha256 = "1mw6z3piddy9xz494kv0243jhhirlb1dp15dph2p1ks4bhipbr4m" 1399 1399 synopsis = "IPFS HTTP API for Scheme" 1400 - version = "0.0.12" 1400 + version = "0.0.13" 1401 1401 1402 1402 [irc] 1403 1403 dependencies = ["matchable", "regex", "srfi-1"] ··· 1556 1556 [list-utils] 1557 1557 dependencies = ["utf8", "srfi-1", "check-errors"] 1558 1558 license = "bsd" 1559 - sha256 = "0wqmsvh3sfgp8ssh98n8y615lxnjlcda1k375jfss7vf8k5xn032" 1559 + sha256 = "0sbd04kmiahk7mbw1cy64n1qjz2rpldjx66aj41r964kjscm6izv" 1560 1560 synopsis = "list-utils" 1561 - version = "2.4.3" 1561 + version = "2.5.1" 1562 1562 1563 1563 [live-define] 1564 1564 dependencies = ["matchable"] ··· 1794 1794 [micro-benchmark] 1795 1795 dependencies = ["micro-stats", "srfi-1"] 1796 1796 license = "gplv3" 1797 - sha256 = "0ahvxdm350bc9v80gnb8ccmjqqp60jznfjkx7w5ypf0q61mnj8sj" 1797 + sha256 = "022fkwr1wm1im40rgk3g5dz8n4rvlw1zdmskqsh9idv31gbfi456" 1798 1798 synopsis = "Easily create micro-benchmarks" 1799 - version = "0.0.19" 1799 + version = "0.0.20" 1800 1800 1801 1801 [micro-stats] 1802 1802 dependencies = ["srfi-1", "sequences", "sequences-utils"] ··· 2333 2333 [rlimit] 2334 2334 dependencies = ["srfi-13"] 2335 2335 license = "bsd" 2336 - sha256 = "0jmz98253k3q9a6kyyby6jm722w3s74c5y3km7ih9ybjjmcdkyzv" 2336 + sha256 = "1yxdn9y11i8s9mj5dknlpz588d48bklylxcq73v0s48a5m7vfpwp" 2337 2337 synopsis = "Setting resource limits" 2338 - version = "1.0.1" 2338 + version = "1.0.2" 2339 2339 2340 2340 [rocksdb] 2341 2341 dependencies = [] ··· 2368 2368 [s9fes-char-graphics] 2369 2369 dependencies = ["srfi-1", "utf8", "format"] 2370 2370 license = "public-domain" 2371 - sha256 = "1h12l59860cyv8xwvvpf96dnlqwd25mrq2qapj9nyxv0vbkcs4p6" 2371 + sha256 = "1ysz8vrx7zwfv4drx955ca28avmdfilafd9a20sl67y5vwb47i8m" 2372 2372 synopsis = "Scheme 9 from Empty Space Char Graphics" 2373 - version = "1.3.3" 2373 + version = "1.4.2" 2374 2374 2375 2375 [salmonella-diff] 2376 2376 dependencies = ["salmonella", "salmonella-html-report", "srfi-1", "srfi-13", "sxml-transforms"] ··· 2508 2508 [sequences-utils] 2509 2509 dependencies = ["srfi-1", "srfi-69", "sequences"] 2510 2510 license = "bsd" 2511 - sha256 = "0s5yadn034a3g89xjcy0yxga7k60dadcnynv16yvbcfg4wjrs81k" 2511 + sha256 = "1c0yq4bzq6lkax4pwky5vyb2gl0yw88r7fzsbx37xsw14lb4fl64" 2512 2512 synopsis = "(More) Generic sequence operators" 2513 - version = "0.4.0" 2513 + version = "0.5.0" 2514 2514 2515 2515 [sequences] 2516 2516 dependencies = ["fast-generic", "srfi-42"] ··· 3047 3047 [srfi-18] 3048 3048 dependencies = [] 3049 3049 license = "bsd" 3050 - sha256 = "0v2pkdck0ji1wiqgg8sg4z6rbkj2qw4vy4b9lx0w0pmhlxqpg1xd" 3050 + sha256 = "0mkg3g045md9v74p4ac24q0c4xvvinz1nggakyg7wlg7c176i2l9" 3051 3051 synopsis = "SRFI-18 thread library" 3052 - version = "0.1.6" 3052 + version = "0.1.7" 3053 3053 3054 3054 [srfi-180] 3055 3055 dependencies = ["r7rs", "srfi-60", "srfi-145", "srfi-121"] ··· 3068 3068 [srfi-19] 3069 3069 dependencies = ["srfi-1", "utf8", "srfi-18", "srfi-29", "srfi-69", "miscmacros", "locale", "record-variants", "check-errors"] 3070 3070 license = "bsd" 3071 - sha256 = "14nyv6m67k2angmhg028rd50mq77qi1zfr5f0praiyy07k2pmcpz" 3071 + sha256 = "0mq9nd1ck1qq9bs415xw4sqlbw1jcrg9n1vrh8kiqy197xbymh0h" 3072 3072 synopsis = "Time Data Types and Procedures" 3073 - version = "4.7.3" 3073 + version = "4.7.5" 3074 3074 3075 3075 [srfi-193] 3076 3076 dependencies = [] ··· 3159 3159 [srfi-29] 3160 3160 dependencies = ["srfi-1", "srfi-69", "utf8", "locale", "posix-utils", "condition-utils", "check-errors"] 3161 3161 license = "bsd" 3162 - sha256 = "1wxz4kj6dqylfiqi035vzsphgbj68y6wwivmx25z5j11c8v3s81c" 3162 + sha256 = "15g2knq5b76f3nhxnmxidhkvbw9dyyc00hrzvsnpkmnfqzcmxbxw" 3163 3163 synopsis = "Localization" 3164 - version = "3.0.6" 3164 + version = "3.0.7" 3165 3165 3166 3166 [srfi-34] 3167 3167 dependencies = [] ··· 3647 3647 version = "2.0" 3648 3648 3649 3649 [transducers] 3650 - dependencies = ["srfi-1", "srfi-128", "srfi-133", "srfi-143", "srfi-146", "srfi-160", "check-errors"] 3650 + dependencies = ["srfi-1", "srfi-128", "srfi-133", "srfi-143", "srfi-146", "srfi-160", "check-errors", "r7rs"] 3651 3651 license = "mit" 3652 - sha256 = "0mkrrfvskwgy5w8c9gz21np3p9857sm8fylq0hjz608jaxzybpcz" 3652 + sha256 = "162f0xvk69jha55sszdkgm47q18k3x5bc2g6psn2107im4ma45fi" 3653 3653 synopsis = "Transducers for working with foldable data types." 3654 - version = "0.4.0" 3654 + version = "0.4.2" 3655 3655 3656 3656 [transmission] 3657 3657 dependencies = ["http-client", "intarweb", "medea", "r7rs", "srfi-1", "srfi-189", "uri-common"] ··· 3789 3789 [uuid-lib] 3790 3790 dependencies = ["record-variants"] 3791 3791 license = "bsd" 3792 - sha256 = "0da71k0f3j1l9wjnfk9gqs9gw3v1192xhxbxv2gfmah3fvxf203p" 3792 + sha256 = "1hk5p2yvwq4dx93a1wnxggrbwkh050b6m9jlw44s7xvhxhvdqyns" 3793 3793 synopsis = "OSF DCE 1.1 UUID" 3794 - version = "0.0.10" 3794 + version = "0.0.14" 3795 3795 3796 3796 [uuid] 3797 3797 dependencies = [] ··· 3915 3915 [zshbrev] 3916 3916 dependencies = ["brev"] 3917 3917 license = "lgplv3" 3918 - sha256 = "16sn87z72x8d4ddbkwgz1jxas471r5nvazwi0klsn204v1qc30dy" 3918 + sha256 = "1id8a728ibi3fzcpfdd7ary41g7nrlb7pc3vjpmz70jp1q53qppx" 3919 3919 synopsis = "Access Chicken functions from any shell and access zsh functions from Chicken" 3920 - version = "1.19" 3920 + version = "1.20" 3921 3921 3922 3922 [zstd] 3923 3923 dependencies = []
+10 -29
pkgs/development/compilers/flutter/default.nix
··· 74 74 { 75 75 inherit wrapFlutter; 76 76 stable = mkFlutter { 77 - version = "3.10.5"; 78 - engineVersion = "45f6e009110df4f34ec2cf99f63cf73b71b7a420"; 79 - dartVersion = "3.0.5"; 77 + version = "3.13.0"; 78 + engineVersion = "1ac611c64eadbd93c5f5aba5494b8fc3b35ee952"; 79 + dartVersion = "3.1.0"; 80 80 dartHash = { 81 - x86_64-linux = "sha256-UVVwPFk0qsKNR4JZMOGSGh1T482MN/8Xp4MZ3SA3C28="; 82 - aarch64-linux = "sha256-phzaFfrv7qbZOOhPq92q39R6mr5vFeBqEmYDU7e7lZQ="; 83 - x86_64-darwin = "sha256-4gJ659bNzs2lfI1LRwFACgu/ttkj+3xIrqLijju+CaI="; 84 - aarch64-darwin = "sha256-RJt+muq5IrcAhVLYEgdbVygcY1oB7tnVCN+iqktC+6c="; 81 + x86_64-linux = "sha256-sGpRyuUTkZ0cpG/O21NCHaOsQRjNklsl9G6Ia1tZxAw="; 82 + aarch64-linux = "sha256-wcDtL/Lh0NFC01QlnKwx8ovTHZ5ww+rb1sELn92R1uU="; 83 + x86_64-darwin = "sha256-h+e7ABlLWCxc6wrbjiy5lgp6O/DnNKdXFNJtgnXBZNA="; 84 + aarch64-darwin = "sha256-sAWnd09mbcRLP0WjSjjWF7+WQ7LP3tWsq5Kqw8e4APg="; 85 85 }; 86 86 flutterHash = rec { 87 - x86_64-linux = "sha256-lLppUQzu+fl81TMYSPD+HA83BqeIg7bXpURyo49NPwI="; 87 + x86_64-linux = "sha256-gXNQ9RuHVC/3puHNygWPRdezx8iiKmiOnxQmoX6XUFo="; 88 88 aarch64-linux = x86_64-linux; 89 - x86_64-darwin = "sha256-1ZC5aCoGVBCeTSsu/ZEl1v53lLnzulx8Ya6YXvo4yIY="; 90 - aarch64-darwin = "sha256-TCMempLjO47IbP5MAZVHlXXvNaURGo+EbaL0K8e27wU="; 91 - }; 92 - patches = flutter3Patches; 93 - }; 94 - 95 - v37 = mkFlutter { 96 - version = "3.7.12"; 97 - engineVersion = "1a65d409c7a1438a34d21b60bf30a6fd5db59314"; 98 - dartVersion = "2.19.6"; 99 - dartHash = { 100 - x86_64-linux = "sha256-4ezRuwhQHVCxZg5WbzU/tBUDvZVpfCo6coDE4K0UzXo="; 101 - aarch64-linux = "sha256-pYmClIqOo0sRPOkrcF4xQbo0mHlrr1TkhT1fnNyYNck="; 102 - x86_64-darwin = "sha256-tuIQhIOX2ub0u99CW/l7nCya9YVNokCZNgbVFqO4ils="; 103 - aarch64-darwin = "sha256-Oe8/0ygDN3xf5/2I3N/OBzF0bps7Mg0K2zJKj+E9Nak="; 104 - }; 105 - flutterHash = rec { 106 - x86_64-linux = "sha256-5ExDBQXIpoZ5NwS66seY3m9/V8xDiyq/RdzldAyHdEE="; 107 - aarch64-linux = x86_64-linux; 108 - x86_64-darwin = "sha256-cJF8KB9fNb3hTZShDAPsMmr1neRdIMLvIl/m2tpzwQs="; 109 - aarch64-darwin = "sha256-yetEE65UP2Wh9ocx7nClQjYLHO6lIbZPay1+I2tDSM4="; 89 + x86_64-darwin = "sha256-vI8TsXIfTg4PYf5dzxDaJt+PIdmVFBmd2slKK7c1By0="; 90 + aarch64-darwin = "sha256-VhGJlp+HG8QLZx8u0xK+cgbneoDM7zhNvm3Oco4nBms="; 110 91 }; 111 92 patches = flutter3Patches; 112 93 };
+58 -172
pkgs/development/compilers/flutter/engine-artifacts/hashes.nix
··· 1 1 { 2 - "1a65d409c7a1438a34d21b60bf30a6fd5db59314" = { 3 - skyNotice = "sha256-+EitMZAAvJ1mIlfm5ZTfY+pk8tfyu33XM7P8qOdj+J8="; 4 - flutterNotice = "sha256-pZjblLYpD/vhC17PkRBXtqlDNRxyf92p5fKJHWhwCiA="; 5 - android-arm = { 6 - "artifacts.zip" = "sha256-KDMiI6SQoZHfFV5LJJZ7VOGyEKC4UxzRc777j4BbXgM="; 7 - }; 8 - android-arm-profile = { 9 - "artifacts.zip" = "sha256-MErLoGJWXg4yJ6b6c5bqP8Nat6O7eYSfM71mMNAAQf4="; 10 - "linux-x64.zip" = "sha256-0TZQ05HR7NRqHzeoHZ/sOrjKiSvCpMUH85YXXzV4URg="; 11 - "darwin-x64.zip" = "sha256-gOmxGurYyuuGxPnzK+2O1s7d7x514R9MfincibxVTCI="; 12 - }; 13 - android-arm-release = { 14 - "artifacts.zip" = "sha256-hU4S4FOqUGokByZ47nzOqQ4A9QFshruqrpJvJUBHUho="; 15 - "linux-x64.zip" = "sha256-AqNlqjOht+c2sdW5ReoF66ZJWJl1W4vGKbQ3YyderRY="; 16 - "darwin-x64.zip" = "sha256-UiJNbIvjYvIX2oFNCz+TurUdhHS8vcl9X6WEkEs5hvU="; 17 - }; 18 - android-arm64 = { 19 - "artifacts.zip" = "sha256-ApNg3Uu9gyGNsx7sdpTCz1yADVAI5ZuNHgvgiuH9IpQ="; 20 - }; 21 - android-arm64-profile = { 22 - "artifacts.zip" = "sha256-D/8+WKPIkOaV3PwkCHiJROFlokm4lWWmtPQb93Yqwr0="; 23 - "linux-x64.zip" = "sha256-S0RHLov6/C22VvGdvZV87Ybaxun8YBrw1gTgNklRcM0="; 24 - "darwin-x64.zip" = "sha256-AWivGn0TCVEW+N8g9bpEP1JuKWhrccb+ANQgyLjBjfw="; 25 - }; 26 - android-arm64-release = { 27 - "artifacts.zip" = "sha256-OoYqHtwmT+VWJ+G+sMXM5+ux3h1Fnyo9Vj2za9cm5eE="; 28 - "linux-x64.zip" = "sha256-NuXclg1a+Ofw5AWJ1tajpn2jYEZw6DluWxrFVL8rPfg="; 29 - "darwin-x64.zip" = "sha256-/j5sVfyllkhsc9mpdbOqlT7VT1H6nD3Y+mYnWXDh0yI="; 30 - }; 31 - android-x64 = { 32 - "artifacts.zip" = "sha256-hrBvnzCj/24h5kat96avlgXi6WhMsos5aPlkgxOYo8Q="; 33 - }; 34 - android-x64-profile = { 35 - "artifacts.zip" = "sha256-xzSj/2ah9aQoosaNGkSWFP3bMNJqRSFc0+78XEBHwzM="; 36 - "linux-x64.zip" = "sha256-HfBiz1JWlBQ8KEfmf8uDlVzFlDt3+VF2VeY82tsMjHs="; 37 - "darwin-x64.zip" = "sha256-J5JJH9GAQaQKahimb09fLC59VchPP15iMHY9bDMfdf8="; 38 - }; 39 - android-x64-release = { 40 - "artifacts.zip" = "sha256-TcfMeA+8Uf9yRrYdEIsjip0cKmSUm2Ow1tkoE9803XY="; 41 - "linux-x64.zip" = "sha256-D6efb6pj9+xjPnJu3O+ZCmwfatBzasuFZEFRntAiU9U="; 42 - "darwin-x64.zip" = "sha256-hDftGgKqW6tzH/+jFOYfzxssbS01XtiWEeycJr3QSoc="; 43 - }; 44 - android-x86 = { 45 - "artifacts.zip" = "sha256-nN66nIrcbJHq2S4oIT5e2NCv7mS5Kw+HBv3ReHs+d3Y="; 46 - }; 47 - android-x86-jit-release = { 48 - "artifacts.zip" = "sha256-A8F6K78Ykp1rMsUmjD7B9nFFPAubZnqAqgWSzbNCRwk="; 49 - }; 50 - darwin-arm64 = { 51 - "artifacts.zip" = "sha256-lfkEToKFBBOee7KgOl1z/ZeMQwEBWkmAYb2Hbfk8dfg="; 52 - "font-subset.zip" = "sha256-W7GnLvCobED7uyhpURF4T4SL4yZIQmE2JFQVQIxl0NI="; 53 - }; 54 - darwin-arm64-profile = { 55 - "artifacts.zip" = "sha256-DfYS+FEqjtq02jFRBqVR3SVWe4LAoPa5MMKWCbvF7mI="; 56 - }; 57 - darwin-arm64-release = { 58 - "artifacts.zip" = "sha256-gG/OcCJE3XPO6T8bltMtPxdlYX5HQ/4qYsdHe0OdDaE="; 59 - }; 60 - darwin-x64 = { 61 - "FlutterEmbedder.framework.zip" = "sha256-G84GGK6gtR+CYu9S/GhdNTL4KWqgFBp8QdvWOq+IZlk="; 62 - "FlutterMacOS.framework.zip" = "sha256-1/txBoXDIs7Gn5zsZ4jYQXK73+iaZV4sRdYKqEBUTxU="; 63 - "artifacts.zip" = "sha256-H7Moy6E1eRrOXYYAIgiJHOmstyy3YaCnu8O3IPr9BK8="; 64 - "font-subset.zip" = "sha256-VSkG3zZw/4DDInwxPaMXT2B1LXIb0Ejkb2xf5SVrwW4="; 65 - "gen_snapshot.zip" = "sha256-Pknv1fUcXGbWzt6So0DgWnvL4b43k51KMWiX1YXd2As="; 66 - }; 67 - darwin-x64-profile = { 68 - "FlutterMacOS.framework.zip" = "sha256-3umN1HNX4UA00EFsBnWS0X04QRKlcCnChDYd9L6x1L4="; 69 - "artifacts.zip" = "sha256-8Aj2+nTKKeVLEYN+swVlVqRB/3fVSwrb3i1g1JUDsNY="; 70 - "gen_snapshot.zip" = "sha256-bi3RqSdOQODpPmY+eBUQPiNeZ/bECoOUx/pOADpTZiA="; 71 - }; 72 - darwin-x64-release = { 73 - "FlutterMacOS.dSYM.zip" = "sha256-LfDQuCcBXEV3Jao/sbfIvjn1d2ZfZrWgzNzFE1zE3Rw="; 74 - "FlutterMacOS.framework.zip" = "sha256-2xuPPJifdu/kvvtR0viMvbTOXfv8ndtNAhTmef8863o="; 75 - "artifacts.zip" = "sha256-3p41zRjvWYCl/Kk/7/0MjV2FS10XEtyX1hYmxTHT8lU="; 76 - "gen_snapshot.zip" = "sha256-ExXwj1QO1XQznZ49rW08tibA5BaURShE6pUYDokZfpE="; 77 - }; 78 - "flutter_patched_sdk.zip" = "sha256-Pvsjttm5OwpJ/pW4UQXvvEiJYCM5CoZZfVXz5jef37k="; 79 - "flutter_patched_sdk_product.zip" = "sha256-fhj2uUOrLwrzHrM6RNVpPNize5Qu6mLQDcSzLT2TbRA="; 80 - ios = { 81 - "artifacts.zip" = "sha256-yqJ4+lNsedRFbe11dBK4KGMX5+Nilj1V0i2E94n7q+0="; 82 - }; 83 - ios-profile = { 84 - "artifacts.zip" = "sha256-ZguLM1QoYyg5dXPw3Fl1zSLdbirShV3xZuxl1CfEf50="; 85 - }; 86 - ios-release = { 87 - "Flutter.dSYM.zip" = "sha256-Y57wt1y4NIdbRMM1r/d1Dv8bekwO9/9gpLkTEcw7Hfs="; 88 - "artifacts.zip" = "sha256-Sm4Pkm1mWu3k5S+aws+kRpth+o3yTBYITg23LhnSViE="; 89 - }; 90 - linux-arm64 = { 91 - "artifacts.zip" = "sha256-xyKVaEFb5gVkVrPzDrOql5BmXGO0FnCSeXOoQ10ZFrw="; 92 - "font-subset.zip" = "sha256-Ulwb6q2SzB4suMJhAM3zAwWOzlEImlu9Ha+w5u4QqIU="; 93 - }; 94 - linux-arm64-debug = { 95 - "linux-arm64-flutter-gtk.zip" = "sha256-SiYOH++py4zeoD3BkNayqy/C9Zz9OiYQ5+u+pDLIpWg="; 96 - }; 97 - linux-arm64-profile = { 98 - "linux-arm64-flutter-gtk.zip" = "sha256-xB0eqrBYD7vhOwYUgJwNaBftNZJgdwxA9AUpEfX0iFs="; 99 - }; 100 - linux-arm64-release = { 101 - "linux-arm64-flutter-gtk.zip" = "sha256-aHLKV129WIRsLUG6xTMwCKB4eXD3jonqinjI8KSsOus="; 102 - }; 103 - linux-x64 = { 104 - "artifacts.zip" = "sha256-+zIABFXUpiqn3OMoLcU4NDLxZ1y9z0r46iCTNRHAkz8="; 105 - "font-subset.zip" = "sha256-W4SRPvA4rraVqN1ehbY6MFL7ZIWDHVJhjlLtxyUJJKY="; 106 - }; 107 - linux-x64-debug = { 108 - "linux-x64-flutter-gtk.zip" = "sha256-boICnuJF4zqGb7kaN5haO/df9hC9KeJidt3uIK06S7M="; 109 - }; 110 - linux-x64-profile = { 111 - "linux-x64-flutter-gtk.zip" = "sha256-AnkLMPW3mwiXdiDz3Zo802QZRi+8EMCy4Mx2ODSbMOU="; 112 - }; 113 - linux-x64-release = { 114 - "linux-x64-flutter-gtk.zip" = "sha256-RAsgupVF18IxLaP8tJ7XRQ8y/um46nlpA8fDITPwLqY="; 115 - }; 116 - }; 117 - "45f6e009110df4f34ec2cf99f63cf73b71b7a420" = { 118 - skyNotice = "sha256-n9B26rLlfUqdR6s+2+PNK4H/fN95UE0T7/Vic19W6yo="; 2 + "1ac611c64eadbd93c5f5aba5494b8fc3b35ee952" = { 3 + skyNotice = "sha256-bJMktK26wC9fVzdhLNcTHqOg5sHRZ535LB5u5dgwjlY="; 119 4 flutterNotice = "sha256-pZjblLYpD/vhC17PkRBXtqlDNRxyf92p5fKJHWhwCiA="; 120 5 android-arm = { 121 - "artifacts.zip" = "sha256-NOpUM+iFSPVzr99Dz0DBdDUQnMC0ad1eZnVhtqu9HnU="; 6 + "artifacts.zip" = "sha256-rAWcm/vjJ7P9q69z0bZNhBv/NO+sGhFJe+r/BHPR1To="; 122 7 }; 123 8 android-arm-profile = { 124 - "artifacts.zip" = "sha256-MZK1zaSv9yuZaVDR1dReCM7WRDxKql0yxsPa8WFc1yw="; 125 - "linux-x64.zip" = "sha256-9OlBv2C6Msj73g624TixbstudCTbdIJ6PzPMsbQENy4="; 126 - "darwin-x64.zip" = "sha256-lVJ31F7UMaXQym3touJQ2cN8svKBaWJurDTVZPeMzCo="; 9 + "artifacts.zip" = "sha256-08+LDA7qNcMFH4xk+WfAXYqIDueCSHNmD/i/XaDeTrA="; 10 + "linux-x64.zip" = "sha256-LWdrWdSGDAfX0gGtqQ2mSschBW3EAgaBldL/Cw99ft8="; 11 + "darwin-x64.zip" = "sha256-FeBLBp3U2BPun/iPpTmHvaj3ZO8l7DQhwArqKN+D1m0="; 127 12 }; 128 13 android-arm-release = { 129 - "artifacts.zip" = "sha256-tjHckwoxQkkKoyTl6+wBKK40mFDmSDvCPNhBHVA+xxw="; 130 - "linux-x64.zip" = "sha256-zE9oYkv4WBcbgEdYfYIcdDXX3tnYfCg+3KA3oA03nYA="; 131 - "darwin-x64.zip" = "sha256-mCr29gIn808NF4k8kdC7oLTSU6AXq7I/bJF3BBdJlAo="; 14 + "artifacts.zip" = "sha256-VCWSWfL74PJ6F6N18mOHjOkN8oTkL8coDfemV0Pc/Fw="; 15 + "linux-x64.zip" = "sha256-xtQJ9merALKe20LZai+5ApJNOXR3uweIYQFWSyjmBEE="; 16 + "darwin-x64.zip" = "sha256-YuEY7ZQAqpo0wbvI/iK3YYUSguZGi/wSl/DLPzmlNj8="; 132 17 }; 133 18 android-arm64 = { 134 - "artifacts.zip" = "sha256-8W/JrOGhAzHWpM2Jh9vjdkaB6ODmCItqcmF47GqbNQk="; 19 + "artifacts.zip" = "sha256-z4gvkNofQaFv8tFAXcLepsge9CV1T7cBe3EZRdBT7Ms="; 135 20 }; 136 21 android-arm64-profile = { 137 - "artifacts.zip" = "sha256-9SGBWp05lxLQTpLuzq8FYSQQOpjo8UL93Pv4YYFD4QE="; 138 - "linux-x64.zip" = "sha256-5nH2AAxupRIhn8gNH+1V+vSP+qqfx5MS97EC4s3QHe8="; 139 - "darwin-x64.zip" = "sha256-kkutEwKcj1wKJREbxbx8+DW53WVbizg6zKIFFVujgAM="; 22 + "artifacts.zip" = "sha256-7DHKcgwdaG6+MH7uVqSk2UGxLM4VsHVk5vUtYMn11kQ="; 23 + "linux-x64.zip" = "sha256-3ZahRPzDVBff2pGUjjoIABH1lmwyrx05GnaJNyF4OiY="; 24 + "darwin-x64.zip" = "sha256-Pmil9S314EoWJhfo0nrtBh1VLUeiavKvp/LIPZJoy6U="; 140 25 }; 141 26 android-arm64-release = { 142 - "artifacts.zip" = "sha256-7O7RBfEo6enZtVNsnt4HH0bex8Xpz9mqCvb2LNLbg3Q="; 143 - "linux-x64.zip" = "sha256-loucmX4+0R11L1nzewiMTeRZoB6wLK0WasW5W3rIvYU="; 144 - "darwin-x64.zip" = "sha256-0bpNQDfIzQqwQpzThLfOXEEEpH/uCJCRF331d0/pzfs="; 27 + "artifacts.zip" = "sha256-GI+ADau8sbD9+ctXrciraeXNPGMto2+bBDyJcKt9YTE="; 28 + "linux-x64.zip" = "sha256-riHs2bbOFNH7VqD3snEu5RuKrMqbsuFnDBZ9Apxq/+g="; 29 + "darwin-x64.zip" = "sha256-DwTskXkcNqNsU3I+t9UMvKjxG4O2mN4cUGLB4dSWBHM="; 145 30 }; 146 31 android-x64 = { 147 - "artifacts.zip" = "sha256-j7AezbyzH07yOR0/W1ttfCjMHMdOlXLQjAsu/ExqmqA="; 32 + "artifacts.zip" = "sha256-0dkDhr/TJi4ROcN1BV1OsUwWSnZuEHzgM0DKSeUIrnA="; 148 33 }; 149 34 android-x64-profile = { 150 - "artifacts.zip" = "sha256-J8cqdcHoj1hpo6zY5R6S9lvkVXp7wvzQlurM7TEUe+k="; 151 - "linux-x64.zip" = "sha256-YuRHctkDjLZVGQr+m5uM+AxYNLkfqycV4UNcAp7JavE="; 152 - "darwin-x64.zip" = "sha256-Mw8C279cVbQHTdIsHhIT5HWe52X8XXbkIDpVcEz1tWc="; 35 + "artifacts.zip" = "sha256-2g+GaZHO17/rLa6Y1DHfDEq0Q05NRxQ5ese2Eo5rvNA="; 36 + "linux-x64.zip" = "sha256-O3bHS/UHz8ymXq8ZEutLIj7K8wVTdt7vTo3OLGAkkh8="; 37 + "darwin-x64.zip" = "sha256-vEzg6vxm1CbvVBSAoWwZhAS/bsuDlesmo30zWwK2a7g="; 153 38 }; 154 39 android-x64-release = { 155 - "artifacts.zip" = "sha256-uhq3fXcxXjF4/YHSkf6V4wToL9jOUKBm3978j/7xI/s="; 156 - "linux-x64.zip" = "sha256-iJfatLW7jVcrfNdVx/QOPiyON5ce0tSNGOBx0TILrKE="; 157 - "darwin-x64.zip" = "sha256-3P3QZ+jW3Jl6PJvRY9pBHQdhj8UcsHFAjln8q6UlL+A="; 40 + "artifacts.zip" = "sha256-nlYI2ffULiDrehOSFEZkZoav/RJ0VykwREQkUwNX2/I="; 41 + "linux-x64.zip" = "sha256-iUy8tjpkFd3V/RIVRPbNNEsa/GAXhtLsNAkEOvdKhks="; 42 + "darwin-x64.zip" = "sha256-xZf2f4L/hSJEN63hQqtP0rbXkB2iw/Co4vLXYe/oeI4="; 158 43 }; 159 44 android-x86 = { 160 - "artifacts.zip" = "sha256-/xLacCi65hg1gEahty0btrc+NR/jfebSAIt31qwIlZY="; 45 + "artifacts.zip" = "sha256-OIB7VnhCasOflVtGFOe1DgCLP4Os82R6H7ucp0Wrez0="; 161 46 }; 162 47 android-x86-jit-release = { 163 - "artifacts.zip" = "sha256-Ntq0i+sFruDhlyp9VBxBnsNqqGoQeXMeIwfi+BNlr0Q="; 48 + "artifacts.zip" = "sha256-dyjGkQJu73sOaxKvmIlbS5j0zO78RXHZrJQVi7qpBAU="; 164 49 }; 165 50 darwin-arm64 = { 166 - "artifacts.zip" = "sha256-A21Tnn4jC5IzdL3c7n6/q9H6uJ/ofvJ+K9W8PPpAoYM="; 167 - "font-subset.zip" = "sha256-NhnUOK1Gn4ekKOf5rDoy4HodzhlS8ylf/MN/6l4Dk18="; 51 + "artifacts.zip" = "sha256-Ro+N5e5RhXgfqVDSEvqCKPdXRK1QnYCvIqmtlEW4s8c="; 52 + "font-subset.zip" = "sha256-yCboANBEarWZDtoTwDFbtnlsPW2kPwZ5Jp31V2hbga4="; 168 53 }; 169 54 darwin-arm64-profile = { 170 - "artifacts.zip" = "sha256-aDWrz3bebC6kZRe2LgunsmFhbxJhmP1bsZv5A/SGF2Y="; 55 + "artifacts.zip" = "sha256-Lf3LLkRhtGNA9cWZwv4Q9MncXzOoVCgmp+6osWRUCE0="; 171 56 }; 172 57 darwin-arm64-release = { 173 - "artifacts.zip" = "sha256-F44e39KSX8juojFBV/CSvFES+RQW+gHKDWtfnydqiNo="; 58 + "artifacts.zip" = "sha256-6BSQ2zodrQmZKkHeaGVVT4D7jNekhwNOul5C6qwLbO8="; 174 59 }; 175 60 darwin-x64 = { 176 - "FlutterEmbedder.framework.zip" = "sha256-+S2unNH8cpfqUiPLTwGUUW00DdNYFDN8KM/O1pMdxQs="; 177 - "FlutterMacOS.framework.zip" = "sha256-iCGXzxBhJGR6rWcECRg0W5Qv4I6ePo7UrWIqjQK1bWI="; 178 - "artifacts.zip" = "sha256-2Ng0rxVDeMCH3kFHS7rhVd6R8oiJqvfsNDp+rzgtA50="; 179 - "font-subset.zip" = "sha256-5IyNNLUT27WUCr61LjnMjmAZEv63ZaF+rl/p2XHFlVU="; 180 - "gen_snapshot.zip" = "sha256-zPJaXPdvbQGx79c41XdRrBW/+3aV/INaPtO47+hHdxM="; 61 + "FlutterEmbedder.framework.zip" = "sha256-4jYk+aYjOS/CZajS1oVBexg2+C9fy0OmfaI6i3rrhXo="; 62 + "FlutterMacOS.framework.zip" = "sha256-Im7DTFf1zXrG6n1OtM4Jixd992mS2r47GRnAa7/urNc="; 63 + "artifacts.zip" = "sha256-SdnPPnx4NOfOlJU1234977/cVRCa/5KTI/1kqCtTxG0="; 64 + "font-subset.zip" = "sha256-F7qt7X0FNXODb3rvTkXacK3wG/aEVn+ny8DHFL3gEkI="; 65 + "gen_snapshot.zip" = "sha256-czdCi1cPdD/nu0LJIsgUj42O6D5x5xTKfM8l/UiKZqw="; 181 66 }; 182 67 darwin-x64-profile = { 183 - "FlutterMacOS.framework.zip" = "sha256-PV4sTACDGeLLPz+AchxngWrQypmmUVQ48bQlAfH323w="; 184 - "artifacts.zip" = "sha256-LBosuXu9mPh5WT0Mmgu9rX5Nuy+iIGN8Xvi7uVAyFhc="; 185 - "gen_snapshot.zip" = "sha256-douXVnavzSGBuld3WhwHagBNK6FEU679puM8/fNGz2I="; 68 + "FlutterMacOS.framework.zip" = "sha256-gdfoq6jdHFDb2JXCf45qJ2ekTildUptLb/k0XuHYuh8="; 69 + "artifacts.zip" = "sha256-aEoenQh0Q8xuLU6OeFND3GBbOvhMNsovbbFQwQfudm0="; 70 + "gen_snapshot.zip" = "sha256-tY3qmpdF7MP4iEfqgouzLehr901H3QTLxeV28RoLPDY="; 186 71 }; 187 72 darwin-x64-release = { 188 - "FlutterMacOS.dSYM.zip" = "sha256-A8kyc1fmsGemgUVhI46yTC6XNkrXdoPYvwXomHoW6kM="; 189 - "FlutterMacOS.framework.zip" = "sha256-dZ/MO9J+zanoGfvPaAinnANte92bQOlh697fd/LvGqA="; 190 - "artifacts.zip" = "sha256-T/wxPd1LmstfGHr2Fx6cfhRifaGm6CUlig6cBMcOO5g="; 191 - "gen_snapshot.zip" = "sha256-qeZxVp6btr/fUQRf7nOhlnSC03+QTcRaggiVOmPxVuo="; 73 + "FlutterMacOS.dSYM.zip" = "sha256-dNlx9PsXeJeV6FMPOliRyuc5p58DeEmXus2zP1dOqPs="; 74 + "FlutterMacOS.framework.zip" = "sha256-ibmcuVjd3kswmUvXzZi8vl5uNEbnWvMAwzWYxs8i1zw="; 75 + "artifacts.zip" = "sha256-KCXwR/ZZK1jyLQaIAsb+wAz4awVU1QozydIQt10M30A="; 76 + "gen_snapshot.zip" = "sha256-hZT+IMHbvSTjk2WcNvfPl+vdXZ2vbB/MjiYP1Q+cKD8="; 192 77 }; 193 - "flutter_patched_sdk.zip" = "sha256-kRRFCqQGBDimqwMiSn4yRMNRfZHt03YJqsKW47IBIvQ="; 194 - "flutter_patched_sdk_product.zip" = "sha256-BowamIQHPZgfcZbWG7OFrB5GeEwdcA7AdUrF2Y+KIds="; 78 + "flutter_patched_sdk.zip" = "sha256-vm9Zt+obBuYHQchQlqlinGYg9mwmoo41HwqYzy8QXP0="; 79 + "flutter_patched_sdk_product.zip" = "sha256-JjMQ2zEGXKIcyYqYfCxDYlRbwglVMQ8H1zs5h6To1es=" 80 + ; 195 81 ios = { 196 - "artifacts.zip" = "sha256-VoofDPEBUW2jBrXg3Z556uC2UdrD9JCpioZNhX1p/P0="; 82 + "artifacts.zip" = "sha256-9/GWCsOvwEXVWYMYn48sZTe44GhB2JBJtPDRFUqgTek="; 197 83 }; 198 84 ios-profile = { 199 - "artifacts.zip" = "sha256-5jDIqk7tWuRxXsAzrjBq9xzQrt/eREmmoEF3zc2xQ5M="; 85 + "artifacts.zip" = "sha256-XZ4AFdG60gUx2xv3qZdk8Hh/0ZuIeJXeBxBoWlmhP4I="; 200 86 }; 201 87 ios-release = { 202 - "Flutter.dSYM.zip" = "sha256-TuDld2LcHshl1mXcuIwfZgWLm1My4RpXUwI2B/QbLRk="; 203 - "artifacts.zip" = "sha256-bGuUCKVqNNWWGVccVVKIBmCxTqgu4Q2Kj/Znnl9ZR2Q="; 88 + "Flutter.dSYM.zip" = "sha256-QWCVU518mUHDXDdUm58XfS1TWYNkXI8LnfOIZ0PYLjs="; 89 + "artifacts.zip" = "sha256-tFmIpEogaqCcx4ftVRah3Bw3CeB0dTku0xUMvUVfR00="; 204 90 }; 205 91 linux-arm64 = { 206 - "artifacts.zip" = "sha256-jME3ivE+M+ceAt3aGPSeVwPaW8UhwGQOoL5lmRUqrOU="; 207 - "font-subset.zip" = "sha256-MqavBMXOlx5JX94Oe/8GGuuDNh7A2UkjiOrEhCDW5cc="; 92 + "artifacts.zip" = "sha256-MFsYOUIYLRINLNOjsDLFX4WPwcW3FTQ7P55/i8xQqcI="; 93 + "font-subset.zip" = "sha256-nIWE1Mep1R1EMS3vS31qdTybhFOCyr7/agPEjlAodOQ="; 208 94 }; 209 95 linux-arm64-debug = { 210 - "linux-arm64-flutter-gtk.zip" = "sha256-+ojrvr3bpCAwBc5ZJxSSvfxpW9M8h+YeQqdKno9TJgI="; 96 + "linux-arm64-flutter-gtk.zip" = "sha256-2zYHns8gycYy7VNjXfJdf/yl71VJSDFSIMb6lQ0JuKI="; 211 97 }; 212 98 linux-arm64-profile = { 213 - "linux-arm64-flutter-gtk.zip" = "sha256-5Smyc7JvudBG16l4Twq8QrZgfYXXeUGXb9NRNCBE+D4="; 99 + "linux-arm64-flutter-gtk.zip" = "sha256-doGUIbTinn5kfw20NZRyph96ZkSa77Vm+y1Z/jBUi/E="; 214 100 }; 215 101 linux-arm64-release = { 216 - "linux-arm64-flutter-gtk.zip" = "sha256-WWHhfgD83eMkAYC1jlZdkqO2J8lxf0VlIBGB8qfXQp0="; 102 + "linux-arm64-flutter-gtk.zip" = "sha256-3zeRvhTZ3nFhOuiacJLTTlPBkyP1u3lh00j3e4jJpXU="; 217 103 }; 218 104 linux-x64 = { 219 - "artifacts.zip" = "sha256-LpCjbAjQQmDL3r5iKHkB1072qKbIkvVusPvMYCj1ZI4="; 220 - "font-subset.zip" = "sha256-2TWRwNIMSomFb+ZDKN6ZF9egehq0SBkcyD+0g+GvmEM="; 105 + "artifacts.zip" = "sha256-L8DrlHTLYneYo5yMdgXVZw3YikF0qBKijGVLJZJLTEA="; 106 + "font-subset.zip" = "sha256-KC733fwlRIK6DhjAJopnKdzjaC1JhvJ8nK74x+5DtIE="; 221 107 }; 222 108 linux-x64-debug = { 223 - "linux-x64-flutter-gtk.zip" = "sha256-BV+Sp1EUTndrlu93eQB5txa/lsUPEEk42TbImFGzmk8="; 109 + "linux-x64-flutter-gtk.zip" = "sha256-5hu5uRB4gOnZyH4zWBj/b2Flz6+5DUK2ytTHWGVfp4A="; 224 110 }; 225 111 linux-x64-profile = { 226 - "linux-x64-flutter-gtk.zip" = "sha256-HhT2wm2dqc2ZoPprzm2TTP6pG/glh4ugmmowUYNtBRo="; 112 + "linux-x64-flutter-gtk.zip" = "sha256-gYGBrExyYlIl+nYnCvlGBq13bP0E5bzzM089THEqHBM="; 227 113 }; 228 114 linux-x64-release = { 229 - "linux-x64-flutter-gtk.zip" = "sha256-eluXkoISuzObXt2aiBmZGW6x8MsPTiD9bbVM4xcpe2w="; 115 + "linux-x64-flutter-gtk.zip" = "sha256-Hw/hAMohLko1AMu3sr4Dq5OwvmrBP2PPJcJRVMgy6B4="; 230 116 }; 231 117 }; 232 118 }
+23 -23
pkgs/development/compilers/flutter/patches/flutter3/disable-auto-update.patch
··· 1 1 diff --git a/bin/internal/shared.sh b/bin/internal/shared.sh 2 - index ab746724e9..1087983c87 100644 2 + index 3532c23114..25dfcae4c7 100644 3 3 --- a/bin/internal/shared.sh 4 4 +++ b/bin/internal/shared.sh 5 - @@ -215,8 +215,6 @@ function shared::execute() { 5 + @@ -229,8 +229,6 @@ function shared::execute() { 6 6 exit 1 7 7 fi 8 8 ··· 11 11 BIN_NAME="$(basename "$PROG_NAME")" 12 12 case "$BIN_NAME" in 13 13 flutter*) 14 + diff --git a/packages/flutter_tools/lib/src/cache.dart b/packages/flutter_tools/lib/src/cache.dart 15 + index 13efbde879..467b3a7cbf 100644 16 + --- a/packages/flutter_tools/lib/src/cache.dart 17 + +++ b/packages/flutter_tools/lib/src/cache.dart 18 + @@ -664,6 +664,7 @@ class Cache { 19 + 20 + /// Update the cache to contain all `requiredArtifacts`. 21 + Future<void> updateAll(Set<DevelopmentArtifact> requiredArtifacts, {bool offline = false}) async { 22 + + return; 23 + if (!_lockEnabled) { 24 + return; 25 + } 14 26 diff --git a/packages/flutter_tools/lib/src/runner/flutter_command_runner.dart b/packages/flutter_tools/lib/src/runner/flutter_command_runner.dart 15 - index 738fef987d..03a152e64f 100644 27 + index 5d6d78639f..90a4dfa555 100644 16 28 --- a/packages/flutter_tools/lib/src/runner/flutter_command_runner.dart 17 29 +++ b/packages/flutter_tools/lib/src/runner/flutter_command_runner.dart 18 - @@ -241,7 +241,6 @@ class FlutterCommandRunner extends CommandRunner<void> { 30 + @@ -297,7 +297,6 @@ class FlutterCommandRunner extends CommandRunner<void> { 19 31 globals.flutterUsage.suppressAnalytics = true; 20 32 } 21 33 22 34 - globals.flutterVersion.ensureVersionFile(); 23 - final bool machineFlag = topLevelResults['machine'] as bool? ?? false; 35 + final bool machineFlag = topLevelResults[FlutterGlobalOptions.kMachineFlag] as bool? ?? false; 24 36 final bool ci = await globals.botDetector.isRunningOnBot; 25 37 final bool redirectedCompletion = !globals.stdio.hasTerminal && 26 - @@ -250,10 +249,6 @@ class FlutterCommandRunner extends CommandRunner<void> { 27 - final bool versionCheckFlag = topLevelResults['version-check'] as bool? ?? false; 28 - final bool explicitVersionCheckPassed = topLevelResults.wasParsed('version-check') && versionCheckFlag; 38 + @@ -306,11 +305,6 @@ class FlutterCommandRunner extends CommandRunner<void> { 39 + final bool versionCheckFlag = topLevelResults[FlutterGlobalOptions.kVersionCheckFlag] as bool? ?? false; 40 + final bool explicitVersionCheckPassed = topLevelResults.wasParsed(FlutterGlobalOptions.kVersionCheckFlag) && versionCheckFlag; 29 41 30 42 - if (topLevelResults.command?.name != 'upgrade' && 31 43 - (explicitVersionCheckPassed || (versionCheckFlag && !isMachine))) { 32 44 - await globals.flutterVersion.checkFlutterVersionFreshness(); 33 45 - } 34 - 46 + - 35 47 // See if the user specified a specific device. 36 - globals.deviceManager?.specifiedDeviceId = topLevelResults['device-id'] as String?; 37 - 38 - diff --git a/packages/flutter_tools/lib/src/cache.dart b/packages/flutter_tools/lib/src/cache.dart 39 - index dd80b1e46e..8e54517765 100644 40 - --- a/packages/flutter_tools/lib/src/cache.dart 41 - +++ b/packages/flutter_tools/lib/src/cache.dart 42 - @@ -668,6 +668,7 @@ 43 - 44 - /// Update the cache to contain all `requiredArtifacts`. 45 - Future<void> updateAll(Set<DevelopmentArtifact> requiredArtifacts, {bool offline = false}) async { 46 - + return; 47 - if (!_lockEnabled) { 48 - return; 49 - } 48 + final String? specifiedDeviceId = topLevelResults[FlutterGlobalOptions.kDeviceIdOption] as String?; 49 + if (specifiedDeviceId != null) {
+34
pkgs/development/compilers/flutter/patches/flutter3/flutter-pub-dart-override.patch
··· 1 + From ddb81649092776ecac635af7040685588798b5a5 Mon Sep 17 00:00:00 2001 2 + From: hacker1024 <hacker1024@users.sourceforge.net> 3 + Date: Sun, 27 Aug 2023 22:47:24 +1000 4 + Subject: [PATCH] Allow replacing the Dart binary used for Pub commands with 5 + NIX_FLUTTER_PUB_DART 6 + 7 + --- 8 + packages/flutter_tools/lib/src/dart/pub.dart | 3 ++- 9 + 1 file changed, 2 insertions(+), 1 deletion(-) 10 + 11 + diff --git a/packages/flutter_tools/lib/src/dart/pub.dart b/packages/flutter_tools/lib/src/dart/pub.dart 12 + index 40e60f9005..22fd3cebc7 100644 13 + --- a/packages/flutter_tools/lib/src/dart/pub.dart 14 + +++ b/packages/flutter_tools/lib/src/dart/pub.dart 15 + @@ -3,6 +3,7 @@ 16 + // found in the LICENSE file. 17 + 18 + import 'dart:async'; 19 + +import 'dart:io' as io; 20 + 21 + import 'package:meta/meta.dart'; 22 + import 'package:package_config/package_config.dart'; 23 + @@ -544,7 +545,7 @@ class _DefaultPub implements Pub { 24 + 25 + List<String> _computePubCommand() { 26 + // TODO(zanderso): refactor to use artifacts. 27 + - final String sdkPath = _fileSystem.path.joinAll(<String>[ 28 + + final String sdkPath = io.Platform.environment['NIX_FLUTTER_PUB_DART'] ?? _fileSystem.path.joinAll(<String>[ 29 + Cache.flutterRoot!, 30 + 'bin', 31 + 'cache', 32 + -- 33 + 2.41.0 34 +
+23 -41
pkgs/development/compilers/flutter/patches/flutter3/git-dir.patch
··· 1 1 diff --git a/dev/bots/prepare_package.dart b/dev/bots/prepare_package.dart 2 - index 8e4cb81340..2c20940423 100644 2 + index 9f33a22cc3..c46255742c 100644 3 3 --- a/dev/bots/prepare_package.dart 4 4 +++ b/dev/bots/prepare_package.dart 5 - @@ -526,7 +526,7 @@ class ArchiveCreator { 5 + @@ -602,7 +602,7 @@ class ArchiveCreator { 6 6 7 7 Future<String> _runGit(List<String> args, {Directory? workingDirectory}) { 8 8 return _processRunner.runProcess( ··· 12 12 ); 13 13 } 14 14 diff --git a/packages/flutter_tools/lib/src/commands/downgrade.dart b/packages/flutter_tools/lib/src/commands/downgrade.dart 15 - index 666c190067..b6c3761f6f 100644 15 + index a58b75c009..02da0daeb7 100644 16 16 --- a/packages/flutter_tools/lib/src/commands/downgrade.dart 17 17 +++ b/packages/flutter_tools/lib/src/commands/downgrade.dart 18 - @@ -118,7 +118,7 @@ class DowngradeCommand extends FlutterCommand { 18 + @@ -120,7 +120,7 @@ class DowngradeCommand extends FlutterCommand { 19 19 // Detect unknown versions. 20 20 final ProcessUtils processUtils = _processUtils!; 21 21 final RunResult parseResult = await processUtils.run(<String>[ ··· 24 24 ], workingDirectory: workingDirectory); 25 25 if (parseResult.exitCode != 0) { 26 26 throwToolExit('Failed to parse version for downgrade:\n${parseResult.stderr}'); 27 - @@ -191,7 +191,7 @@ class DowngradeCommand extends FlutterCommand { 27 + @@ -192,7 +192,7 @@ class DowngradeCommand extends FlutterCommand { 28 28 continue; 29 29 } 30 30 final RunResult parseResult = await _processUtils!.run(<String>[ ··· 34 34 if (parseResult.exitCode == 0) { 35 35 buffer.writeln('Channel "${getNameForChannel(channel)}" was previously on: ${parseResult.stdout}.'); 36 36 diff --git a/packages/flutter_tools/lib/src/version.dart b/packages/flutter_tools/lib/src/version.dart 37 - index dc47f17057..8068e2d1f5 100644 37 + index 0702b35e7e..36b2a95b65 100644 38 38 --- a/packages/flutter_tools/lib/src/version.dart 39 39 +++ b/packages/flutter_tools/lib/src/version.dart 40 - @@ -111,7 +111,7 @@ class FlutterVersion { 41 - String? channel = _channel; 42 - if (channel == null) { 40 + @@ -407,7 +407,7 @@ abstract class FlutterVersion { 41 + /// wrapper that does that. 42 + @visibleForTesting 43 + static List<String> gitLog(List<String> args) { 44 + - return <String>['git', '-c', 'log.showSignature=false', 'log'] + args; 45 + + return <String>['git', '--git-dir','.git', '-c', 'log.showSignature=false', 'log'] + args; 46 + } 47 + } 48 + 49 + @@ -559,7 +559,7 @@ class _FlutterVersionGit extends FlutterVersion { 50 + String? get repositoryUrl { 51 + if (_repositoryUrl == null) { 43 52 final String gitChannel = _runGit( 44 53 - 'git rev-parse --abbrev-ref --symbolic $kGitTrackingUpstream', 45 54 + 'git --git-dir .git rev-parse --abbrev-ref --symbolic $kGitTrackingUpstream', 46 55 globals.processUtils, 47 - _workingDirectory, 56 + flutterRoot, 48 57 ); 49 - @@ -119,7 +119,7 @@ class FlutterVersion { 58 + @@ -567,7 +567,7 @@ class _FlutterVersionGit extends FlutterVersion { 50 59 if (slash != -1) { 51 60 final String remote = gitChannel.substring(0, slash); 52 61 _repositoryUrl = _runGit( 53 62 - 'git ls-remote --get-url $remote', 54 63 + 'git --git-dir .git ls-remote --get-url $remote', 55 64 globals.processUtils, 56 - _workingDirectory, 65 + flutterRoot, 57 66 ); 58 - @@ -298,7 +298,7 @@ class FlutterVersion { 59 - /// the branch name will be returned as `'[user-branch]'`. 60 - String getBranchName({ bool redactUnknownBranches = false }) { 61 - _branch ??= () { 62 - - final String branch = _runGit('git rev-parse --abbrev-ref HEAD', globals.processUtils); 63 - + final String branch = _runGit('git --git-dir .git rev-parse --abbrev-ref HEAD', globals.processUtils); 64 - return branch == 'HEAD' ? channel : branch; 65 - }(); 66 - if (redactUnknownBranches || _branch!.isEmpty) { 67 - @@ -331,7 +331,7 @@ class FlutterVersion { 68 - /// wrapper that does that. 69 - @visibleForTesting 70 - static List<String> gitLog(List<String> args) { 71 - - return <String>['git', '-c', 'log.showSignature=false', 'log'] + args; 72 - + return <String>['git', '-c', 'log.showSignature=false', '--git-dir', '.git', 'log'] + args; 73 - } 74 - 75 - /// Gets the release date of the latest available Flutter version. 76 - @@ -708,7 +708,7 @@ class GitTagVersion { 77 - String gitRef = 'HEAD' 78 - }) { 79 - if (fetchTags) { 80 - - final String channel = _runGit('git rev-parse --abbrev-ref HEAD', processUtils, workingDirectory); 81 - + final String channel = _runGit('git --git-dir .git rev-parse --abbrev-ref HEAD', processUtils, workingDirectory); 82 - if (channel == 'dev' || channel == 'beta' || channel == 'stable') { 83 - globals.printTrace('Skipping request to fetchTags - on well known channel $channel.'); 84 - } else { 85 - @@ -718,7 +718,7 @@ class GitTagVersion { 67 + @@ -952,7 +952,7 @@ class GitTagVersion { 86 68 } 87 69 // find all tags attached to the given [gitRef] 88 70 final List<String> tags = _runGit( ··· 91 73 92 74 // Check first for a stable tag 93 75 final RegExp stableTagPattern = RegExp(r'^\d+\.\d+\.\d+$'); 94 - @@ -739,7 +739,7 @@ class GitTagVersion { 76 + @@ -973,7 +973,7 @@ class GitTagVersion { 95 77 // recent tag and number of commits past. 96 78 return parse( 97 79 _runGit(
+2 -2
pkgs/development/libraries/libmediainfo/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libmediainfo"; 5 - version = "23.06"; 5 + version = "23.07"; 6 6 7 7 src = fetchurl { 8 8 url = "https://mediaarea.net/download/source/libmediainfo/${version}/libmediainfo_${version}.tar.xz"; 9 - sha256 = "sha256-xrGuiyu89AM0BRizyU8q51yOsAaCv7vRiyJELkLcz80="; 9 + hash = "sha256-YEVsiyq4dppggdlv176G20/jJSDkoCI5fLIsrPR86CA="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ autoreconfHook pkg-config ];
+2 -2
pkgs/development/libraries/libngspice/default.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "${lib.optionalString withNgshared "lib"}ngspice"; 14 - version = "40"; 14 + version = "41"; 15 15 16 16 src = fetchurl { 17 17 url = "mirror://sourceforge/ngspice/ngspice-${version}.tar.gz"; 18 - hash = "sha256-4wPKe8D1lOLWqoT2h4VCPmvwyNrQCbsgvk1XQliOiQ0="; 18 + hash = "sha256-HOIZOV0vUMM+siOhQD+DGLFo8ebRAVp9udv0OUCN6MQ="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+24
pkgs/development/libraries/rtlcss/default.nix
··· 1 + { buildNpmPackage, fetchFromGitHub, lib, ... }: 2 + 3 + buildNpmPackage rec { 4 + pname = "rtlcss"; 5 + version = "4.1.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "MohammadYounes"; 9 + repo = "rtlcss"; 10 + rev = "v${version}"; 11 + hash = "sha256-KdAf7jzt8o/YEzT/bLCXj546HX0oC90kr44u3p3qv/k="; 12 + }; 13 + 14 + npmDepsHash = "sha256-ghVgvw55w7T9WxokYtlFSgCfGvcOxFzm2wQIFi+6uBY="; 15 + 16 + dontNpmBuild = true; 17 + 18 + meta = with lib; { 19 + description = "Framework for converting Left-To-Right (LTR) Cascading Style Sheets(CSS) to Right-To-Left (RTL)"; 20 + homepage = "https://rtlcss.com"; 21 + license = licenses.mit; 22 + maintainers = with maintainers; [ ]; 23 + }; 24 + }
+2 -2
pkgs/development/libraries/simdjson/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "simdjson"; 5 - version = "3.2.2"; 5 + version = "3.2.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "simdjson"; 9 9 repo = "simdjson"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-+BCXkOaWYZSFWGZmeZ2ZJwVxFwmHgRbb7GSj/lRxmfw="; 11 + sha256 = "sha256-h15IyPYvIUPDOJ03KgEDyRhXe0Oi8XCR5LnzSpPc4PI="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+1
pkgs/development/node-packages/aliases.nix
··· 85 85 inherit (pkgs) npm-check-updates; # added 2023-08-22 86 86 readability-cli = pkgs.readability-cli; # Added 2023-06-12 87 87 reveal-md = pkgs.reveal-md; # added 2023-07-31 88 + inherit (pkgs) rtlcss; # added 2023-08-29 88 89 s3http = throw "s3http was removed because it was abandoned upstream"; # added 2023-08-18 89 90 ssb-server = throw "ssb-server was removed because it was broken"; # added 2023-08-21 90 91 stf = throw "stf was removed because it was broken"; # added 2023-08-21
-1
pkgs/development/node-packages/node-packages.json
··· 242 242 , "rimraf" 243 243 , "rollup" 244 244 , {"rust-analyzer-build-deps": "../../applications/editors/vscode/extensions/rust-lang.rust-analyzer/build-deps"} 245 - , "rtlcss" 246 245 , "sass" 247 246 , "semver" 248 247 , "serve"
-26
pkgs/development/node-packages/node-packages.nix
··· 109255 109255 bypassCache = true; 109256 109256 reconstructLock = true; 109257 109257 }; 109258 - rtlcss = nodeEnv.buildNodePackage { 109259 - name = "rtlcss"; 109260 - packageName = "rtlcss"; 109261 - version = "4.1.0"; 109262 - src = fetchurl { 109263 - url = "https://registry.npmjs.org/rtlcss/-/rtlcss-4.1.0.tgz"; 109264 - sha512 = "W+N4hh0nVqVrrn3mRkHakxpB+c9cQ4CRT67O39kgA+1DjyhrdsqyCqIuHXyvWaXn4/835n+oX3fYJCi4+G/06A=="; 109265 - }; 109266 - dependencies = [ 109267 - sources."escalade-3.1.1" 109268 - sources."nanoid-3.3.6" 109269 - sources."picocolors-1.0.0" 109270 - sources."postcss-8.4.28" 109271 - sources."source-map-js-1.0.2" 109272 - sources."strip-json-comments-3.1.1" 109273 - ]; 109274 - buildInputs = globalBuildInputs; 109275 - meta = { 109276 - description = "Framework for transforming cascading style sheets (CSS) from left-to-right (LTR) to right-to-left (RTL)"; 109277 - homepage = "https://rtlcss.com/"; 109278 - license = "MIT"; 109279 - }; 109280 - production = true; 109281 - bypassCache = true; 109282 - reconstructLock = true; 109283 - }; 109284 109258 sass = nodeEnv.buildNodePackage { 109285 109259 name = "sass"; 109286 109260 packageName = "sass";
+2 -2
pkgs/development/python-modules/aioambient/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "aioambient"; 19 - version = "2023.04.0"; 19 + version = "2023.08.0"; 20 20 format = "pyproject"; 21 21 22 22 disabled = pythonOlder "3.9"; ··· 25 25 owner = "bachya"; 26 26 repo = pname; 27 27 rev = "refs/tags/${version}"; 28 - hash = "sha256-ar2UGSlVukMD5EZsEn7TFfIOovaI+B3Ym+UeGo95oks="; 28 + hash = "sha256-Y8I4iPvxcK98Olb3JURNK37MKggdhcweKvNBa0ZtG6I="; 29 29 }; 30 30 31 31 patches = [
+2 -2
pkgs/development/python-modules/aioesphomeapi/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "aioesphomeapi"; 17 - version = "16.0.2"; 17 + version = "16.0.3"; 18 18 format = "setuptools"; 19 19 20 20 disabled = pythonOlder "3.9"; ··· 23 23 owner = "esphome"; 24 24 repo = pname; 25 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-lnMB66cpF4RsqthZS2Xn4BpniSWHBJlwhYLgDCB1IIc="; 26 + hash = "sha256-x4kH8riHZbVibgwR2DmWB4tsswpub4m2LwnypVVUgqM="; 27 27 }; 28 28 29 29 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/aioguardian/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "aioguardian"; 19 - version = "2022.10.0"; 19 + version = "2023.08.0"; 20 20 format = "pyproject"; 21 21 22 22 disabled = pythonOlder "3.9"; ··· 25 25 owner = "bachya"; 26 26 repo = pname; 27 27 rev = "refs/tags/${version}"; 28 - hash = "sha256-plgO+pyKmG0mYnFZxDcrENcuEg5AG2Og2xWipzuzyHo="; 28 + hash = "sha256-/UNSAfAkOXPJQDWBZIe/AYIhx83kPCjGzZjn4oh+gfY="; 29 29 }; 30 30 31 31 patches = [
+2 -2
pkgs/development/python-modules/aiolifx-themes/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "aiolifx-themes"; 15 - version = "0.4.5"; 15 + version = "0.4.7"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.9"; ··· 21 21 owner = "Djelibeybi"; 22 22 repo = "aiolifx-themes"; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-df3FQdOa3C8eQfgFi+sh7+/GBpE+4B5gOI+3XDQLHEs="; 24 + hash = "sha256-0zcyMn0Y0UI5S8JGdYVXkK7FBdSHCA0FOmkmXDT9P48="; 25 25 }; 26 26 27 27 prePatch = ''
+2 -2
pkgs/development/python-modules/app-model/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "app-model"; 16 - version = "0.2.0"; 16 + version = "0.2.1"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.8"; ··· 22 22 owner = "pyapp-kit"; 23 23 repo = pname; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-4I0lDL6B+8f/lj09zT14lvbGATuHIfjKwwABXi6OIvE="; 25 + hash = "sha256-1LldqihVCCgFdnsod751zWAAqkaaIH2qMpfsPYjWzgs="; 26 26 }; 27 27 28 28 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/casbin/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "casbin"; 12 - version = "1.24.0"; 12 + version = "1.25.0"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.6"; ··· 18 18 owner = pname; 19 19 repo = "pycasbin"; 20 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-IECJlK1DQl/ndLnreZ/xQ5F06eCgFWZe3fF5LLdqLzo="; 21 + hash = "sha256-o8pjoVuZLifGOmijJIl2LpjLguYwPLRVB44iFsGe1BM="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/cloudsplaining/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "cloudsplaining"; 20 - version = "0.6.0"; 20 + version = "0.6.1"; 21 21 format = "setuptools"; 22 22 23 23 disabled = pythonOlder "3.6"; ··· 26 26 owner = "salesforce"; 27 27 repo = pname; 28 28 rev = "refs/tags/${version}"; 29 - hash = "sha256-1p0Lrx4uirgyhE8cdhrSOJLBSN11f6X5WqdWtVutDzQ="; 29 + hash = "sha256-Bw1RhYFTz1bw+4APZKTyWP/G+LWB3R9WI/QEduEgWTQ="; 30 30 }; 31 31 32 32 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/mypy-boto3-builder/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "mypy-boto3-builder"; 21 - version = "7.18.0"; 21 + version = "7.18.2"; 22 22 format = "pyproject"; 23 23 24 24 disabled = pythonOlder "3.10"; ··· 27 27 owner = "youtype"; 28 28 repo = "mypy_boto3_builder"; 29 29 rev = "refs/tags/${version}"; 30 - hash = "sha256-Xm+G9NSiGLv4oLcC1JqaLbM5Wh1Vp1q6CeNcVPWvJU4="; 30 + hash = "sha256-43kyDgolXEu5J5OVaLKqjVdyWaobfGNvevNFh4CFjss="; 31 31 }; 32 32 33 33 nativeBuildInputs = [
+8 -3
pkgs/development/python-modules/mypy-boto3-s3/default.nix
··· 1 1 { lib 2 2 , boto3 3 3 , buildPythonPackage 4 + , cython_3 4 5 , fetchPypi 5 6 , pythonOlder 6 7 , typing-extensions ··· 8 9 9 10 buildPythonPackage rec { 10 11 pname = "mypy-boto3-s3"; 11 - version = "1.28.27"; 12 + version = "1.28.36"; 12 13 format = "setuptools"; 13 14 14 15 disabled = pythonOlder "3.7"; 15 16 16 17 src = fetchPypi { 17 18 inherit pname version; 18 - hash = "sha256-8QlDRPaNH/4rmYQE4uT/mqQjlDhpIYf6g617c0c5mRw="; 19 + hash = "sha256-RNo3X9TXWxxczCbc075IKUxwYURe/W2Q6/ykP/67s+Q="; 19 20 }; 20 21 22 + nativeBuildInputs = [ 23 + cython_3 24 + ]; 25 + 21 26 propagatedBuildInputs = [ 22 27 boto3 23 - ] ++ lib.optionals (pythonOlder "3.9") [ 28 + ] ++ lib.optionals (pythonOlder "3.12") [ 24 29 typing-extensions 25 30 ]; 26 31
+2 -11
pkgs/development/python-modules/notus-scanner/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , paho-mqtt 6 5 , poetry-core 7 6 , psutil ··· 15 14 16 15 buildPythonPackage rec { 17 16 pname = "notus-scanner"; 18 - version = "22.5.0"; 17 + version = "22.6.0"; 19 18 format = "pyproject"; 20 19 21 20 disabled = pythonOlder "3.7"; ··· 24 23 owner = "greenbone"; 25 24 repo = pname; 26 25 rev = "refs/tags/v${version}"; 27 - hash = "sha256-h+jZWjDvTfW9XjoGhWYX08hgJ/Qp64MEaqHHwnahnC4="; 26 + hash = "sha256-Ih6Uz7dTVMNCBsLcDsslyIzttg+IDBW3B+Ixpp7sz1Y="; 28 27 }; 29 - 30 - patches = [ 31 - (fetchpatch { 32 - name = "update-packaging-dependency.patch"; 33 - url = "https://github.com/greenbone/notus-scanner/commit/bfa7d3d2e63e250ff25a66c60b782eb9da0e89e7.patch"; 34 - hash = "sha256-hzS8TYBXDEq+cgWlp6fSOtSbyeX9EX2rURmnFMF5jN0="; 35 - }) 36 - ]; 37 28 38 29 pythonRelaxDeps = [ 39 30 "python-gnupg"
+2 -2
pkgs/development/python-modules/pydaikin/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "pydaikin"; 15 - version = "2.11.0"; 15 + version = "2.11.1"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.6"; ··· 21 21 owner = "mustang51"; 22 22 repo = pname; 23 23 rev = "v${version}"; 24 - hash = "sha256-YQmMuUSmI6npdhRRhoSNwEFXUF1ZHdKsjZnfxFbL60E="; 24 + hash = "sha256-IBrd4PH8EzVVVFQtJdJ8bTMLEzfh7MYMe79yuCrhmww="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pyduotecno/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pyduotecno"; 11 - version = "2023.8.3"; 11 + version = "2023.8.4"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.9"; ··· 17 17 owner = "Cereal2nd"; 18 18 repo = "pyDuotecno"; 19 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-zqaW6iQe982BgxaxeeRFTJ/a2nySGoSW4sxKmNxbKQc="; 20 + hash = "sha256-VDDDG/D21yumWmcTC0mwXoGItB7OTdVCcjo01W1YZXY="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pyoutbreaksnearme/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "pyoutbreaksnearme"; 17 - version = "2022.10.0"; 17 + version = "2023.08.0"; 18 18 format = "pyproject"; 19 19 20 20 disabled = pythonOlder "3.9"; ··· 23 23 owner = "bachya"; 24 24 repo = pname; 25 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-D7oXkKDSg+yF+j1WyG/VVY12hLU6oyhEtxLrF6IkMSA="; 26 + hash = "sha256-Qrq8/dPJsJMJNXobc+Ps6Nbg819+GFuYplovGuWK0nQ="; 27 27 }; 28 28 29 29 patches = [
+2 -2
pkgs/development/python-modules/python-roborock/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "python-roborock"; 23 - version = "0.32.3"; 23 + version = "0.32.4"; 24 24 format = "pyproject"; 25 25 26 26 disabled = pythonOlder "3.10"; ··· 29 29 owner = "humbertogontijo"; 30 30 repo = "python-roborock"; 31 31 rev = "refs/tags/v${version}"; 32 - hash = "sha256-rKE+dgq0ax/EZ0qYkGVsnHhNxyt3F74hI2tZAaOHCqI="; 32 + hash = "sha256-tZ0nyjARqXDffDOBTsGQ1iZSzzkMToUENb+NwhJ7xY4="; 33 33 }; 34 34 35 35 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/pyweatherflowrest/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pyweatherflowrest"; 11 - version = "1.0.9"; 11 + version = "1.0.10"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.7"; ··· 17 17 owner = "briis"; 18 18 repo = pname; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-LFA1GJCYFIWl7/YblRrYgAB4lbELpzhCJyjB8aCkJ/E="; 20 + hash = "sha256-7eNhvpaikzdQBrzjXw67JGqoynvfmz4poruharTkuG0="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/regenmaschine/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "regenmaschine"; 18 - version = "2023.06.0"; 18 + version = "2023.08.0"; 19 19 format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.9"; ··· 24 24 owner = "bachya"; 25 25 repo = pname; 26 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-W5W/2gBraraZs8ai8tyg3aRWvHt6WOQCVICuiAigae0="; 27 + hash = "sha256-2czpPLTJOUxjzG0+aOyY01jfwlcRgoHiQdB6ybQ6gWg="; 28 28 }; 29 29 30 30 patches = [
+2 -2
pkgs/development/python-modules/types-awscrt/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "types-awscrt"; 10 - version = "0.19.0"; 10 + version = "0.19.1"; 11 11 format = "pyproject"; 12 12 13 13 disabled = pythonOlder "3.7"; ··· 15 15 src = fetchPypi { 16 16 pname = "types_awscrt"; 17 17 inherit version; 18 - hash = "sha256-6u9gQiz3FrSuIW8WS3TWecgrDZxT2zgKN96ymuVXmxs="; 18 + hash = "sha256-YYM6oUDnJKkJgCVhD0uM3j3PZbhCYx10RzePn1204f0="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/zeroconf/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "zeroconf"; 18 - version = "0.84.0"; 18 + version = "0.88.0"; 19 19 format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.7"; ··· 24 24 owner = "jstasiak"; 25 25 repo = "python-zeroconf"; 26 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-YOZRqRkJ/yjJmxLvWhrwT3KNX4fiVEHe7riKchZt26w="; 27 + hash = "sha256-PE/KK2MFSVinaCLztdu7LS+gSemlq4UzVVwSjK+9yiM="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+2 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 22 22 23 23 buildPythonApplication rec { 24 24 pname = "checkov"; 25 - version = "2.4.14"; 25 + version = "2.4.18"; 26 26 format = "setuptools"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "bridgecrewio"; 30 30 repo = pname; 31 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-x8ud2kFOuILDXBIyzCcoBpsdisU7ivMfM6Ri9UEkc+Q="; 32 + hash = "sha256-iYfqriGCf+dbQx99+l7/636t/ArV2+6YI4SKW3+NLx8="; 33 33 }; 34 34 35 35 patches = [
+2 -2
pkgs/development/tools/build-managers/bazel/bazel-remote/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "bazel-remote"; 8 - version = "2.4.2"; 8 + version = "2.4.3"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "buchgr"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - hash = "sha256-bXXEvTmzsFH0dt/p26gF9XnSgFulNIiIl3lxJRyUJMg="; 14 + hash = "sha256-yvdsRc5KZAwzekktSu9tR9R2vvAMi+4JVkvy+ANFkQ8="; 15 15 }; 16 16 17 17 vendorHash = "sha256-0rmqsUMwk5ytAZc94JzvZTuh0WAmQwBEWSE96yNALE0=";
+2 -2
pkgs/development/tools/database/sqlfluff/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "sqlfluff"; 8 - version = "2.3.0"; 8 + version = "2.3.1"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = pname; 13 13 repo = pname; 14 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-zIufjQ8JNt3/GGd7Q1wEdJULKe+qXtZpEJJzrH3KVno="; 15 + hash = "sha256-olwvg/smXPDqKvSdpp30SEsHYWNQXU9ISbOmJH7MKLo="; 16 16 }; 17 17 18 18 propagatedBuildInputs = with python3.pkgs; [
+1
pkgs/development/tools/gojq/default.nix
··· 25 25 changelog = "https://github.com/itchyny/gojq/blob/v${version}/CHANGELOG.md"; 26 26 license = licenses.mit; 27 27 maintainers = with maintainers; [ aaronjheng ]; 28 + mainProgram = "gojq"; 28 29 }; 29 30 }
+3 -3
pkgs/development/tools/typos/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "typos"; 5 - version = "1.16.8"; 5 + version = "1.16.9"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "crate-ci"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-JEXc/yR7QbqaKGHrmc/1ZwFVL0NqAAb5JDhidS0p1Ik="; 11 + hash = "sha256-aFP4q3Cv7ESqgpBoYW70Fsl2GGEIX8bEl3/sEG6HGpM="; 12 12 }; 13 13 14 - cargoHash = "sha256-f6BvUc5YVSRZUWEtwUMBnvXwKNFiYbcGzvlplma7Mj4="; 14 + cargoHash = "sha256-mUcvKYe2SiuEWKXGG1jiF4YtVB72HlGc7HDHhgUhLaU="; 15 15 16 16 meta = with lib; { 17 17 description = "Source code spell checker";
+19 -6
pkgs/os-specific/linux/firmware/firmware-updater/default.nix
··· 1 1 { lib 2 + , writeText 2 3 , flutter 3 4 , fetchFromGitHub 4 5 }: 5 6 6 - flutter.buildFlutterApplication { 7 + flutter.buildFlutterApplication rec { 7 8 pname = "firmware-updater"; 8 - version = "unstable-2023-06-20"; 9 + version = "unstable-2023-09-17"; 9 10 10 11 pubspecLockFile = ./pubspec.lock; 11 12 depsListFile = ./deps.json; 12 - vendorHash = "sha256-+4Lu6yHH/Yhl58bxhsLanP5hyhXSg9LpCuG1ohAlM5g="; 13 + vendorHash = "sha256-5xd9ppnWleKVA69DJWVdY+rZziu4dQBCu16I0ivD8kE="; 13 14 14 15 src = fetchFromGitHub { 15 16 owner = "canonical"; 16 17 repo = "firmware-updater"; 17 - rev = "49ebcad241ed4964f1547c8da408bef13a8b4c69"; 18 - sha256 = "sha256-1BGcpcIJV0jqrj3nA7FJg36lMqpl281NGOgWppDUFCI="; 19 - fetchSubmodules = true; 18 + rev = "855999da8d3d0c9930e06f2d296d82b55aeff79e"; 19 + hash = "sha256-tIeEuHl+sCKd756NYPmxXiV1Sg2m9W0eGUtM/Iskeu8="; 20 20 }; 21 + 22 + postPatch = '' 23 + rm -f pubspec.lock 24 + ln -s "${writeText "${pname}-overrides.yaml" (builtins.toJSON { 25 + dependency_overrides = { 26 + yaru = "^1.1.0"; 27 + yaru_icons = "^2.2.1"; 28 + yaru_widgets = "^3.1.0"; 29 + mockito = "^5.4.2"; 30 + test_api = "^0.6.1"; 31 + }; 32 + })}" pubspec_overrides.yaml 33 + ''; 21 34 22 35 meta = with lib; { 23 36 description = "Firmware Updater for Linux";
+328 -195
pkgs/os-specific/linux/firmware/firmware-updater/deps.json
··· 23 23 "ubuntu_logger", 24 24 "ubuntu_service", 25 25 "ubuntu_session", 26 + "ubuntu_test", 26 27 "upower", 27 28 "yaru", 28 29 "yaru_colors", ··· 34 35 "freezed", 35 36 "integration_test", 36 37 "melos", 37 - "mockito" 38 - ] 39 - }, 40 - { 41 - "name": "mockito", 42 - "version": "5.4.0", 43 - "kind": "dev", 44 - "source": "hosted", 45 - "dependencies": [ 46 - "analyzer", 47 - "build", 48 - "code_builder", 49 - "collection", 50 - "dart_style", 51 - "matcher", 52 - "meta", 53 - "path", 54 - "source_gen", 38 + "mockito", 55 39 "test_api" 56 40 ] 57 41 }, 58 42 { 59 43 "name": "test_api", 60 - "version": "0.5.1", 44 + "version": "0.6.1", 61 45 "kind": "transitive", 62 46 "source": "hosted", 63 47 "dependencies": [ ··· 69 53 "stack_trace", 70 54 "stream_channel", 71 55 "string_scanner", 72 - "term_glyph", 73 - "matcher" 56 + "term_glyph" 74 57 ] 75 58 }, 76 59 { 77 - "name": "matcher", 78 - "version": "0.12.15", 60 + "name": "term_glyph", 61 + "version": "1.2.1", 79 62 "kind": "transitive", 80 63 "source": "hosted", 81 - "dependencies": [ 82 - "async", 83 - "meta", 84 - "stack_trace", 85 - "term_glyph", 86 - "test_api" 87 - ] 64 + "dependencies": [] 88 65 }, 89 66 { 90 - "name": "term_glyph", 91 - "version": "1.2.1", 67 + "name": "string_scanner", 68 + "version": "1.2.0", 92 69 "kind": "transitive", 93 70 "source": "hosted", 94 - "dependencies": [] 71 + "dependencies": [ 72 + "source_span" 73 + ] 95 74 }, 96 75 { 97 - "name": "stack_trace", 98 - "version": "1.11.0", 76 + "name": "source_span", 77 + "version": "1.10.0", 99 78 "kind": "transitive", 100 79 "source": "hosted", 101 80 "dependencies": [ 102 - "path" 81 + "collection", 82 + "path", 83 + "term_glyph" 103 84 ] 104 85 }, 105 86 { ··· 110 91 "dependencies": [] 111 92 }, 112 93 { 113 - "name": "meta", 114 - "version": "1.9.1", 94 + "name": "collection", 95 + "version": "1.17.2", 115 96 "kind": "direct", 116 97 "source": "hosted", 117 98 "dependencies": [] 99 + }, 100 + { 101 + "name": "stream_channel", 102 + "version": "2.1.1", 103 + "kind": "transitive", 104 + "source": "hosted", 105 + "dependencies": [ 106 + "async" 107 + ] 118 108 }, 119 109 { 120 110 "name": "async", ··· 127 117 ] 128 118 }, 129 119 { 130 - "name": "collection", 131 - "version": "1.17.1", 120 + "name": "meta", 121 + "version": "1.9.1", 132 122 "kind": "direct", 133 123 "source": "hosted", 134 124 "dependencies": [] 135 125 }, 136 126 { 137 - "name": "string_scanner", 138 - "version": "1.2.0", 127 + "name": "stack_trace", 128 + "version": "1.11.0", 139 129 "kind": "transitive", 140 130 "source": "hosted", 141 131 "dependencies": [ 142 - "source_span" 132 + "path" 143 133 ] 144 134 }, 145 135 { 146 - "name": "source_span", 147 - "version": "1.9.1", 148 - "kind": "transitive", 149 - "source": "hosted", 150 - "dependencies": [ 151 - "collection", 152 - "path", 153 - "term_glyph" 154 - ] 155 - }, 156 - { 157 - "name": "stream_channel", 136 + "name": "boolean_selector", 158 137 "version": "2.1.1", 159 138 "kind": "transitive", 160 139 "source": "hosted", 161 140 "dependencies": [ 162 - "async" 141 + "source_span", 142 + "string_scanner" 163 143 ] 164 144 }, 165 145 { 166 - "name": "boolean_selector", 167 - "version": "2.1.1", 168 - "kind": "transitive", 146 + "name": "mockito", 147 + "version": "5.4.2", 148 + "kind": "dev", 169 149 "source": "hosted", 170 150 "dependencies": [ 171 - "source_span", 172 - "string_scanner" 151 + "analyzer", 152 + "build", 153 + "code_builder", 154 + "collection", 155 + "dart_style", 156 + "matcher", 157 + "meta", 158 + "path", 159 + "source_gen", 160 + "test_api" 173 161 ] 174 162 }, 175 163 { 176 164 "name": "source_gen", 177 - "version": "1.3.2", 165 + "version": "1.4.0", 178 166 "kind": "transitive", 179 167 "source": "hosted", 180 168 "dependencies": [ ··· 224 212 }, 225 213 { 226 214 "name": "dart_style", 227 - "version": "2.3.1", 215 + "version": "2.3.2", 228 216 "kind": "transitive", 229 217 "source": "hosted", 230 218 "dependencies": [ ··· 329 317 }, 330 318 { 331 319 "name": "build", 332 - "version": "2.4.0", 320 + "version": "2.4.1", 333 321 "kind": "transitive", 334 322 "source": "hosted", 335 323 "dependencies": [ ··· 352 340 "dependencies": [] 353 341 }, 354 342 { 343 + "name": "matcher", 344 + "version": "0.12.16", 345 + "kind": "transitive", 346 + "source": "hosted", 347 + "dependencies": [ 348 + "async", 349 + "meta", 350 + "stack_trace", 351 + "term_glyph", 352 + "test_api" 353 + ] 354 + }, 355 + { 355 356 "name": "code_builder", 356 357 "version": "4.5.0", 357 358 "kind": "transitive", ··· 366 367 }, 367 368 { 368 369 "name": "built_value", 369 - "version": "8.6.1", 370 + "version": "8.6.2", 370 371 "kind": "transitive", 371 372 "source": "hosted", 372 373 "dependencies": [ ··· 392 393 }, 393 394 { 394 395 "name": "melos", 395 - "version": "3.1.0", 396 + "version": "3.1.1", 396 397 "kind": "dev", 397 398 "source": "hosted", 398 399 "dependencies": [ ··· 465 466 }, 466 467 { 467 468 "name": "pub_updater", 468 - "version": "0.2.4", 469 + "version": "0.3.1", 469 470 "kind": "transitive", 470 471 "source": "hosted", 471 472 "dependencies": [ 472 473 "http", 473 474 "json_annotation", 474 - "process" 475 + "process", 476 + "pub_semver" 475 477 ] 476 478 }, 477 479 { ··· 503 505 }, 504 506 { 505 507 "name": "http", 506 - "version": "0.13.6", 508 + "version": "1.1.0", 507 509 "kind": "transitive", 508 510 "source": "hosted", 509 511 "dependencies": [ ··· 630 632 "collection", 631 633 "fake_async", 632 634 "file", 633 - "js", 634 635 "matcher", 635 636 "material_color_utilities", 636 637 "meta", ··· 642 643 "term_glyph", 643 644 "test_api", 644 645 "vector_math", 646 + "web", 645 647 "webdriver" 646 648 ] 647 649 }, ··· 665 667 "dependencies": [] 666 668 }, 667 669 { 668 - "name": "vector_math", 669 - "version": "2.1.4", 670 + "name": "web", 671 + "version": "0.1.4-beta", 670 672 "kind": "transitive", 671 673 "source": "hosted", 672 674 "dependencies": [] 673 675 }, 674 676 { 675 - "name": "material_color_utilities", 676 - "version": "0.2.0", 677 + "name": "vector_math", 678 + "version": "2.1.4", 677 679 "kind": "transitive", 678 680 "source": "hosted", 679 681 "dependencies": [] 680 682 }, 681 683 { 682 - "name": "js", 683 - "version": "0.6.7", 684 + "name": "material_color_utilities", 685 + "version": "0.5.0", 684 686 "kind": "transitive", 685 687 "source": "hosted", 686 688 "dependencies": [ 687 - "meta" 689 + "collection" 688 690 ] 689 691 }, 690 692 { ··· 713 715 }, 714 716 { 715 717 "name": "vm_service", 716 - "version": "11.3.0", 718 + "version": "11.7.1", 717 719 "kind": "transitive", 718 720 "source": "hosted", 719 721 "dependencies": [] ··· 726 728 "dependencies": [ 727 729 "flutter", 728 730 "test_api", 731 + "matcher", 729 732 "path", 730 733 "fake_async", 731 734 "clock", ··· 735 738 "boolean_selector", 736 739 "characters", 737 740 "collection", 738 - "js", 739 - "matcher", 740 741 "material_color_utilities", 741 742 "meta", 742 743 "source_span", 743 744 "stream_channel", 744 745 "string_scanner", 745 - "term_glyph" 746 + "term_glyph", 747 + "web" 746 748 ] 747 749 }, 748 750 { ··· 753 755 "dependencies": [ 754 756 "characters", 755 757 "collection", 756 - "js", 757 758 "material_color_utilities", 758 759 "meta", 759 760 "vector_math", 761 + "web", 760 762 "sky_engine" 761 763 ] 762 764 }, ··· 786 788 "characters", 787 789 "clock", 788 790 "collection", 789 - "js", 790 791 "matcher", 791 792 "material_color_utilities", 792 793 "platform", ··· 798 799 "sync_http", 799 800 "term_glyph", 800 801 "test_api", 801 - "vector_math" 802 + "vector_math", 803 + "web" 802 804 ] 803 805 }, 804 806 { ··· 817 819 }, 818 820 { 819 821 "name": "freezed", 820 - "version": "2.3.5", 822 + "version": "2.4.1", 821 823 "kind": "dev", 822 824 "source": "hosted", 823 825 "dependencies": [ ··· 833 835 }, 834 836 { 835 837 "name": "freezed_annotation", 836 - "version": "2.2.0", 838 + "version": "2.4.1", 837 839 "kind": "direct", 838 840 "source": "hosted", 839 841 "dependencies": [ ··· 881 883 }, 882 884 { 883 885 "name": "flutter_lints", 884 - "version": "2.0.1", 886 + "version": "2.0.2", 885 887 "kind": "dev", 886 888 "source": "hosted", 887 889 "dependencies": [ ··· 897 899 }, 898 900 { 899 901 "name": "build_runner", 900 - "version": "2.4.5", 902 + "version": "2.4.6", 901 903 "kind": "dev", 902 904 "source": "hosted", 903 905 "dependencies": [ ··· 997 999 "dependencies": [] 998 1000 }, 999 1001 { 1002 + "name": "js", 1003 + "version": "0.6.7", 1004 + "kind": "transitive", 1005 + "source": "hosted", 1006 + "dependencies": [ 1007 + "meta" 1008 + ] 1009 + }, 1010 + { 1000 1011 "name": "http_multi_server", 1001 1012 "version": "3.2.1", 1002 1013 "kind": "transitive", ··· 1043 1054 }, 1044 1055 { 1045 1056 "name": "build_resolvers", 1046 - "version": "2.2.0", 1057 + "version": "2.2.1", 1047 1058 "kind": "transitive", 1048 1059 "source": "hosted", 1049 1060 "dependencies": [ ··· 1054 1065 "crypto", 1055 1066 "graphs", 1056 1067 "logging", 1057 - "path", 1058 1068 "package_config", 1069 + "path", 1059 1070 "pool", 1060 1071 "pub_semver", 1061 1072 "stream_transform", ··· 1083 1094 }, 1084 1095 { 1085 1096 "name": "yaru_widgets", 1086 - "version": "2.3.1", 1097 + "version": "3.1.0", 1087 1098 "kind": "direct", 1088 1099 "source": "hosted", 1089 1100 "dependencies": [ 1090 1101 "flutter", 1091 1102 "yaru", 1092 - "yaru_colors", 1093 1103 "yaru_icons", 1094 1104 "yaru_window" 1095 1105 ] 1096 1106 }, 1097 1107 { 1098 1108 "name": "yaru_window", 1099 - "version": "0.1.2", 1109 + "version": "0.1.3", 1100 1110 "kind": "transitive", 1101 1111 "source": "hosted", 1102 1112 "dependencies": [ ··· 1120 1130 }, 1121 1131 { 1122 1132 "name": "yaru_window_platform_interface", 1123 - "version": "0.1.1", 1133 + "version": "0.1.2", 1124 1134 "kind": "transitive", 1125 1135 "source": "hosted", 1126 1136 "dependencies": [ ··· 1131 1141 }, 1132 1142 { 1133 1143 "name": "plugin_platform_interface", 1134 - "version": "2.1.4", 1144 + "version": "2.1.5", 1135 1145 "kind": "transitive", 1136 1146 "source": "hosted", 1137 1147 "dependencies": [ ··· 1145 1155 "source": "sdk", 1146 1156 "dependencies": [ 1147 1157 "flutter", 1148 - "js", 1149 1158 "characters", 1150 1159 "collection", 1151 1160 "material_color_utilities", 1152 1161 "meta", 1153 - "vector_math" 1162 + "vector_math", 1163 + "web" 1154 1164 ] 1155 1165 }, 1156 1166 { ··· 1167 1177 }, 1168 1178 { 1169 1179 "name": "window_manager", 1170 - "version": "0.3.4", 1180 + "version": "0.3.6", 1171 1181 "kind": "transitive", 1172 1182 "source": "hosted", 1173 1183 "dependencies": [ ··· 1178 1188 }, 1179 1189 { 1180 1190 "name": "screen_retriever", 1181 - "version": "0.1.6", 1191 + "version": "0.1.9", 1182 1192 "kind": "transitive", 1183 1193 "source": "hosted", 1184 1194 "dependencies": [ ··· 1187 1197 }, 1188 1198 { 1189 1199 "name": "yaru_window_linux", 1190 - "version": "0.1.2", 1200 + "version": "0.1.3", 1191 1201 "kind": "transitive", 1192 1202 "source": "hosted", 1193 1203 "dependencies": [ ··· 1197 1207 }, 1198 1208 { 1199 1209 "name": "yaru_icons", 1200 - "version": "1.0.4", 1210 + "version": "2.2.1", 1201 1211 "kind": "direct", 1202 1212 "source": "hosted", 1203 1213 "dependencies": [ ··· 1205 1215 ] 1206 1216 }, 1207 1217 { 1208 - "name": "yaru_colors", 1209 - "version": "0.1.7", 1218 + "name": "yaru", 1219 + "version": "1.1.0", 1210 1220 "kind": "direct", 1211 1221 "source": "hosted", 1212 1222 "dependencies": [ 1213 1223 "collection", 1214 1224 "flutter", 1215 - "meta", 1216 - "yaru_color_generator" 1225 + "gtk", 1226 + "platform" 1217 1227 ] 1218 1228 }, 1219 1229 { 1220 - "name": "yaru_color_generator", 1221 - "version": "0.1.0", 1222 - "kind": "transitive", 1230 + "name": "gtk", 1231 + "version": "2.1.0", 1232 + "kind": "direct", 1223 1233 "source": "hosted", 1224 1234 "dependencies": [ 1225 - "collection", 1235 + "ffi", 1236 + "flutter", 1226 1237 "meta" 1227 1238 ] 1228 1239 }, 1229 1240 { 1230 - "name": "yaru", 1231 - "version": "0.6.2", 1241 + "name": "ffi", 1242 + "version": "2.1.0", 1243 + "kind": "transitive", 1244 + "source": "hosted", 1245 + "dependencies": [] 1246 + }, 1247 + { 1248 + "name": "yaru_colors", 1249 + "version": "0.1.7", 1232 1250 "kind": "direct", 1233 1251 "source": "hosted", 1234 1252 "dependencies": [ 1235 1253 "collection", 1236 1254 "flutter", 1237 - "gtk", 1238 - "platform", 1239 - "yaru_colors" 1255 + "meta", 1256 + "yaru_color_generator" 1240 1257 ] 1241 1258 }, 1242 1259 { 1243 - "name": "gtk", 1244 - "version": "2.1.0", 1245 - "kind": "direct", 1260 + "name": "yaru_color_generator", 1261 + "version": "0.1.0", 1262 + "kind": "transitive", 1246 1263 "source": "hosted", 1247 1264 "dependencies": [ 1248 - "ffi", 1249 - "flutter", 1265 + "collection", 1250 1266 "meta" 1251 1267 ] 1252 - }, 1253 - { 1254 - "name": "ffi", 1255 - "version": "2.0.2", 1256 - "kind": "transitive", 1257 - "source": "hosted", 1258 - "dependencies": [] 1259 1268 }, 1260 1269 { 1261 1270 "name": "upower", ··· 1299 1308 ] 1300 1309 }, 1301 1310 { 1311 + "name": "ubuntu_test", 1312 + "version": "0.1.0-beta.6", 1313 + "kind": "direct", 1314 + "source": "hosted", 1315 + "dependencies": [ 1316 + "flutter", 1317 + "flutter_html", 1318 + "flutter_markdown", 1319 + "flutter_svg", 1320 + "flutter_test", 1321 + "mockito", 1322 + "test_api", 1323 + "ubuntu_localizations", 1324 + "yaru_test" 1325 + ] 1326 + }, 1327 + { 1328 + "name": "yaru_test", 1329 + "version": "0.1.4", 1330 + "kind": "transitive", 1331 + "source": "hosted", 1332 + "dependencies": [ 1333 + "flutter", 1334 + "flutter_test", 1335 + "yaru", 1336 + "yaru_widgets", 1337 + "yaru_window_platform_interface" 1338 + ] 1339 + }, 1340 + { 1341 + "name": "ubuntu_localizations", 1342 + "version": "0.3.4", 1343 + "kind": "transitive", 1344 + "source": "hosted", 1345 + "dependencies": [ 1346 + "collection", 1347 + "diacritic", 1348 + "flutter", 1349 + "flutter_localizations", 1350 + "intl" 1351 + ] 1352 + }, 1353 + { 1354 + "name": "intl", 1355 + "version": "0.18.1", 1356 + "kind": "transitive", 1357 + "source": "hosted", 1358 + "dependencies": [ 1359 + "clock", 1360 + "meta", 1361 + "path" 1362 + ] 1363 + }, 1364 + { 1365 + "name": "flutter_localizations", 1366 + "version": "0.0.0", 1367 + "kind": "direct", 1368 + "source": "sdk", 1369 + "dependencies": [ 1370 + "flutter", 1371 + "intl", 1372 + "characters", 1373 + "clock", 1374 + "collection", 1375 + "material_color_utilities", 1376 + "meta", 1377 + "path", 1378 + "vector_math", 1379 + "web" 1380 + ] 1381 + }, 1382 + { 1383 + "name": "diacritic", 1384 + "version": "0.1.4", 1385 + "kind": "transitive", 1386 + "source": "hosted", 1387 + "dependencies": [] 1388 + }, 1389 + { 1390 + "name": "flutter_svg", 1391 + "version": "2.0.7", 1392 + "kind": "transitive", 1393 + "source": "hosted", 1394 + "dependencies": [ 1395 + "flutter", 1396 + "vector_graphics", 1397 + "vector_graphics_codec", 1398 + "vector_graphics_compiler" 1399 + ] 1400 + }, 1401 + { 1402 + "name": "vector_graphics_compiler", 1403 + "version": "1.1.7", 1404 + "kind": "transitive", 1405 + "source": "hosted", 1406 + "dependencies": [ 1407 + "args", 1408 + "meta", 1409 + "path_parsing", 1410 + "xml", 1411 + "vector_graphics_codec" 1412 + ] 1413 + }, 1414 + { 1415 + "name": "vector_graphics_codec", 1416 + "version": "1.1.7", 1417 + "kind": "transitive", 1418 + "source": "hosted", 1419 + "dependencies": [] 1420 + }, 1421 + { 1422 + "name": "path_parsing", 1423 + "version": "1.0.1", 1424 + "kind": "transitive", 1425 + "source": "hosted", 1426 + "dependencies": [ 1427 + "vector_math", 1428 + "meta" 1429 + ] 1430 + }, 1431 + { 1432 + "name": "vector_graphics", 1433 + "version": "1.1.7", 1434 + "kind": "transitive", 1435 + "source": "hosted", 1436 + "dependencies": [ 1437 + "flutter", 1438 + "vector_graphics_codec" 1439 + ] 1440 + }, 1441 + { 1442 + "name": "flutter_markdown", 1443 + "version": "0.6.17+1", 1444 + "kind": "transitive", 1445 + "source": "hosted", 1446 + "dependencies": [ 1447 + "flutter", 1448 + "markdown", 1449 + "meta", 1450 + "path" 1451 + ] 1452 + }, 1453 + { 1454 + "name": "markdown", 1455 + "version": "7.1.1", 1456 + "kind": "transitive", 1457 + "source": "hosted", 1458 + "dependencies": [ 1459 + "args", 1460 + "meta" 1461 + ] 1462 + }, 1463 + { 1464 + "name": "flutter_html", 1465 + "version": "3.0.0-beta.2", 1466 + "kind": "direct", 1467 + "source": "hosted", 1468 + "dependencies": [ 1469 + "html", 1470 + "csslib", 1471 + "collection", 1472 + "list_counter", 1473 + "flutter" 1474 + ] 1475 + }, 1476 + { 1477 + "name": "list_counter", 1478 + "version": "1.0.2", 1479 + "kind": "transitive", 1480 + "source": "hosted", 1481 + "dependencies": [] 1482 + }, 1483 + { 1484 + "name": "csslib", 1485 + "version": "0.17.3", 1486 + "kind": "transitive", 1487 + "source": "hosted", 1488 + "dependencies": [ 1489 + "source_span" 1490 + ] 1491 + }, 1492 + { 1493 + "name": "html", 1494 + "version": "0.15.4", 1495 + "kind": "transitive", 1496 + "source": "hosted", 1497 + "dependencies": [ 1498 + "csslib", 1499 + "source_span" 1500 + ] 1501 + }, 1502 + { 1302 1503 "name": "ubuntu_session", 1303 1504 "version": "0.0.4", 1304 1505 "kind": "direct", ··· 1310 1511 }, 1311 1512 { 1312 1513 "name": "ubuntu_service", 1313 - "version": "0.2.3", 1514 + "version": "0.2.4", 1314 1515 "kind": "direct", 1315 1516 "source": "hosted", 1316 1517 "dependencies": [ ··· 1354 1555 ] 1355 1556 }, 1356 1557 { 1357 - "name": "intl", 1358 - "version": "0.18.0", 1359 - "kind": "transitive", 1360 - "source": "hosted", 1361 - "dependencies": [ 1362 - "clock", 1363 - "meta", 1364 - "path" 1365 - ] 1366 - }, 1367 - { 1368 1558 "name": "dio", 1369 1559 "version": "4.0.6", 1370 1560 "kind": "direct", ··· 1421 1611 "collection", 1422 1612 "dbus", 1423 1613 "meta" 1424 - ] 1425 - }, 1426 - { 1427 - "name": "flutter_localizations", 1428 - "version": "0.0.0", 1429 - "kind": "direct", 1430 - "source": "sdk", 1431 - "dependencies": [ 1432 - "flutter", 1433 - "intl", 1434 - "characters", 1435 - "clock", 1436 - "collection", 1437 - "js", 1438 - "material_color_utilities", 1439 - "meta", 1440 - "path", 1441 - "vector_math" 1442 - ] 1443 - }, 1444 - { 1445 - "name": "flutter_html", 1446 - "version": "3.0.0-beta.2", 1447 - "kind": "direct", 1448 - "source": "hosted", 1449 - "dependencies": [ 1450 - "html", 1451 - "csslib", 1452 - "collection", 1453 - "list_counter", 1454 - "flutter" 1455 - ] 1456 - }, 1457 - { 1458 - "name": "list_counter", 1459 - "version": "1.0.2", 1460 - "kind": "transitive", 1461 - "source": "hosted", 1462 - "dependencies": [] 1463 - }, 1464 - { 1465 - "name": "csslib", 1466 - "version": "0.17.3", 1467 - "kind": "transitive", 1468 - "source": "hosted", 1469 - "dependencies": [ 1470 - "source_span" 1471 - ] 1472 - }, 1473 - { 1474 - "name": "html", 1475 - "version": "0.15.4", 1476 - "kind": "transitive", 1477 - "source": "hosted", 1478 - "dependencies": [ 1479 - "csslib", 1480 - "source_span" 1481 1614 ] 1482 1615 } 1483 1616 ]
+160 -64
pkgs/os-specific/linux/firmware/firmware-updater/pubspec.lock
··· 53 53 dependency: transitive 54 54 description: 55 55 name: build 56 - sha256: "43865b79fbb78532e4bff7c33087aa43b1d488c4fdef014eaef568af6d8016dc" 56 + sha256: "80184af8b6cb3e5c1c4ec6d8544d27711700bc3e6d2efad04238c7b5290889f0" 57 57 url: "https://pub.dev" 58 58 source: hosted 59 - version: "2.4.0" 59 + version: "2.4.1" 60 60 build_config: 61 61 dependency: transitive 62 62 description: ··· 77 77 dependency: transitive 78 78 description: 79 79 name: build_resolvers 80 - sha256: db49b8609ef8c81cca2b310618c3017c00f03a92af44c04d310b907b2d692d95 80 + sha256: "6c4dd11d05d056e76320b828a1db0fc01ccd376922526f8e9d6c796a5adbac20" 81 81 url: "https://pub.dev" 82 82 source: hosted 83 - version: "2.2.0" 83 + version: "2.2.1" 84 84 build_runner: 85 85 dependency: "direct dev" 86 86 description: 87 87 name: build_runner 88 - sha256: "5e1929ad37d48bd382b124266cb8e521de5548d406a45a5ae6656c13dab73e37" 88 + sha256: "10c6bcdbf9d049a0b666702cf1cee4ddfdc38f02a19d35ae392863b47519848b" 89 89 url: "https://pub.dev" 90 90 source: hosted 91 - version: "2.4.5" 91 + version: "2.4.6" 92 92 build_runner_core: 93 93 dependency: transitive 94 94 description: ··· 109 109 dependency: transitive 110 110 description: 111 111 name: built_value 112 - sha256: "598a2a682e2a7a90f08ba39c0aaa9374c5112340f0a2e275f61b59389543d166" 112 + sha256: ff627b645b28fb8bdb69e645f910c2458fd6b65f6585c3a53e0626024897dedf 113 113 url: "https://pub.dev" 114 114 source: hosted 115 - version: "8.6.1" 115 + version: "8.6.2" 116 116 characters: 117 117 dependency: transitive 118 118 description: ··· 173 173 dependency: "direct main" 174 174 description: 175 175 name: collection 176 - sha256: "4a07be6cb69c84d677a6c3096fcf960cc3285a8330b4603e0d463d15d9bd934c" 176 + sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687 177 177 url: "https://pub.dev" 178 178 source: hosted 179 - version: "1.17.1" 179 + version: "1.17.2" 180 180 conventional_commit: 181 181 dependency: transitive 182 182 description: ··· 213 213 dependency: transitive 214 214 description: 215 215 name: dart_style 216 - sha256: f4f1f73ab3fd2afcbcca165ee601fe980d966af6a21b5970c6c9376955c528ad 216 + sha256: "1efa911ca7086affd35f463ca2fc1799584fb6aa89883cf0af8e3664d6a02d55" 217 217 url: "https://pub.dev" 218 218 source: hosted 219 - version: "2.3.1" 219 + version: "2.3.2" 220 220 dbus: 221 221 dependency: "direct main" 222 222 description: ··· 225 225 url: "https://pub.dev" 226 226 source: hosted 227 227 version: "0.7.8" 228 + diacritic: 229 + dependency: transitive 230 + description: 231 + name: diacritic 232 + sha256: a84e03ec2779375fb86430dbe9d8fba62c68376f2499097a5f6e75556babe706 233 + url: "https://pub.dev" 234 + source: hosted 235 + version: "0.1.4" 228 236 dio: 229 237 dependency: "direct main" 230 238 description: ··· 245 253 dependency: transitive 246 254 description: 247 255 name: ffi 248 - sha256: ed5337a5660c506388a9f012be0288fb38b49020ce2b45fe1f8b8323fe429f99 256 + sha256: "7bf0adc28a23d395f19f3f1eb21dd7cfd1dd9f8e1c50051c069122e6853bc878" 249 257 url: "https://pub.dev" 250 258 source: hosted 251 - version: "2.0.2" 259 + version: "2.1.0" 252 260 file: 253 261 dependency: "direct main" 254 262 description: ··· 287 295 dependency: "direct dev" 288 296 description: 289 297 name: flutter_lints 290 - sha256: aeb0b80a8b3709709c9cc496cdc027c5b3216796bc0af0ce1007eaf24464fd4c 298 + sha256: "2118df84ef0c3ca93f96123a616ae8540879991b8b57af2f81b76a7ada49b2a4" 291 299 url: "https://pub.dev" 292 300 source: hosted 293 - version: "2.0.1" 301 + version: "2.0.2" 294 302 flutter_localizations: 295 303 dependency: "direct main" 296 304 description: flutter 297 305 source: sdk 298 306 version: "0.0.0" 307 + flutter_markdown: 308 + dependency: transitive 309 + description: 310 + name: flutter_markdown 311 + sha256: "2b206d397dd7836ea60035b2d43825c8a303a76a5098e66f42d55a753e18d431" 312 + url: "https://pub.dev" 313 + source: hosted 314 + version: "0.6.17+1" 315 + flutter_svg: 316 + dependency: transitive 317 + description: 318 + name: flutter_svg 319 + sha256: "8c5d68a82add3ca76d792f058b186a0599414f279f00ece4830b9b231b570338" 320 + url: "https://pub.dev" 321 + source: hosted 322 + version: "2.0.7" 299 323 flutter_test: 300 324 dependency: "direct dev" 301 325 description: flutter ··· 310 334 dependency: "direct dev" 311 335 description: 312 336 name: freezed 313 - sha256: a9520490532087cf38bf3f7de478ab6ebeb5f68bb1eb2641546d92719b224445 337 + sha256: "2df89855fe181baae3b6d714dc3c4317acf4fccd495a6f36e5e00f24144c6c3b" 314 338 url: "https://pub.dev" 315 339 source: hosted 316 - version: "2.3.5" 340 + version: "2.4.1" 317 341 freezed_annotation: 318 342 dependency: "direct main" 319 343 description: 320 344 name: freezed_annotation 321 - sha256: aeac15850ef1b38ee368d4c53ba9a847e900bb2c53a4db3f6881cbb3cb684338 345 + sha256: c3fd9336eb55a38cc1bbd79ab17573113a8deccd0ecbbf926cca3c62803b5c2d 322 346 url: "https://pub.dev" 323 347 source: hosted 324 - version: "2.2.0" 348 + version: "2.4.1" 325 349 frontend_server_client: 326 350 dependency: transitive 327 351 description: ··· 396 420 dependency: transitive 397 421 description: 398 422 name: http 399 - sha256: "5895291c13fa8a3bd82e76d5627f69e0d85ca6a30dcac95c4ea19a5d555879c2" 423 + sha256: "759d1a329847dd0f39226c688d3e06a6b8679668e350e2891a6474f8b4bb8525" 400 424 url: "https://pub.dev" 401 425 source: hosted 402 - version: "0.13.6" 426 + version: "1.1.0" 403 427 http_multi_server: 404 428 dependency: transitive 405 429 description: ··· 425 449 dependency: transitive 426 450 description: 427 451 name: intl 428 - sha256: a3715e3bc90294e971cb7dc063fbf3cd9ee0ebf8604ffeafabd9e6f16abbdbe6 452 + sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d" 429 453 url: "https://pub.dev" 430 454 source: hosted 431 - version: "0.18.0" 455 + version: "0.18.1" 432 456 io: 433 457 dependency: transitive 434 458 description: ··· 485 509 url: "https://pub.dev" 486 510 source: hosted 487 511 version: "1.0.2" 512 + markdown: 513 + dependency: transitive 514 + description: 515 + name: markdown 516 + sha256: acf35edccc0463a9d7384e437c015a3535772e09714cf60e07eeef3a15870dcd 517 + url: "https://pub.dev" 518 + source: hosted 519 + version: "7.1.1" 488 520 matcher: 489 521 dependency: transitive 490 522 description: 491 523 name: matcher 492 - sha256: "6501fbd55da300384b768785b83e5ce66991266cec21af89ab9ae7f5ce1c4cbb" 524 + sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e" 493 525 url: "https://pub.dev" 494 526 source: hosted 495 - version: "0.12.15" 527 + version: "0.12.16" 496 528 material_color_utilities: 497 529 dependency: transitive 498 530 description: 499 531 name: material_color_utilities 500 - sha256: d92141dc6fe1dad30722f9aa826c7fbc896d021d792f80678280601aff8cf724 532 + sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41" 501 533 url: "https://pub.dev" 502 534 source: hosted 503 - version: "0.2.0" 535 + version: "0.5.0" 504 536 melos: 505 537 dependency: "direct dev" 506 538 description: 507 539 name: melos 508 - sha256: ccbb6ecd8bb3f08ae8f9ce22920d816bff325a98940c845eda0257cd395503ac 540 + sha256: "3f22f6cc629d72acf3acc8a7f8563384550290fa30790efa328c9cf606aa17d7" 509 541 url: "https://pub.dev" 510 542 source: hosted 511 - version: "3.1.0" 543 + version: "3.1.1" 512 544 meta: 513 545 dependency: "direct main" 514 546 description: ··· 529 561 dependency: "direct dev" 530 562 description: 531 563 name: mockito 532 - sha256: dd61809f04da1838a680926de50a9e87385c1de91c6579629c3d1723946e8059 564 + sha256: "7d5b53bcd556c1bc7ffbe4e4d5a19c3e112b7e925e9e172dd7c6ad0630812616" 533 565 url: "https://pub.dev" 534 566 source: hosted 535 - version: "5.4.0" 567 + version: "5.4.2" 536 568 mustache_template: 537 569 dependency: transitive 538 570 description: ··· 565 597 url: "https://pub.dev" 566 598 source: hosted 567 599 version: "1.8.3" 600 + path_parsing: 601 + dependency: transitive 602 + description: 603 + name: path_parsing 604 + sha256: e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf 605 + url: "https://pub.dev" 606 + source: hosted 607 + version: "1.0.1" 568 608 petitparser: 569 609 dependency: transitive 570 610 description: ··· 585 625 dependency: transitive 586 626 description: 587 627 name: plugin_platform_interface 588 - sha256: "6a2128648c854906c53fa8e33986fc0247a1116122f9534dd20e3ab9e16a32bc" 628 + sha256: "43798d895c929056255600343db8f049921cbec94d31ec87f1dc5c16c01935dd" 589 629 url: "https://pub.dev" 590 630 source: hosted 591 - version: "2.1.4" 631 + version: "2.1.5" 592 632 pool: 593 633 dependency: transitive 594 634 description: ··· 633 673 dependency: transitive 634 674 description: 635 675 name: pub_updater 636 - sha256: "42890302ab2672adf567dc2b20e55b4ecc29d7e19c63b6b98143ab68dd717d3a" 676 + sha256: b06600619c8c219065a548f8f7c192b3e080beff95488ed692780f48f69c0625 637 677 url: "https://pub.dev" 638 678 source: hosted 639 - version: "0.2.4" 679 + version: "0.3.1" 640 680 pubspec: 641 681 dependency: transitive 642 682 description: ··· 673 713 dependency: transitive 674 714 description: 675 715 name: screen_retriever 676 - sha256: "4931f226ca158123ccd765325e9fbf360bfed0af9b460a10f960f9bb13d58323" 716 + sha256: "6ee02c8a1158e6dae7ca430da79436e3b1c9563c8cf02f524af997c201ac2b90" 677 717 url: "https://pub.dev" 678 718 source: hosted 679 - version: "0.1.6" 719 + version: "0.1.9" 680 720 shelf: 681 721 dependency: transitive 682 722 description: ··· 702 742 dependency: transitive 703 743 description: 704 744 name: source_gen 705 - sha256: "373f96cf5a8744bc9816c1ff41cf5391bbdbe3d7a96fe98c622b6738a8a7bd33" 745 + sha256: fc0da689e5302edb6177fdd964efcb7f58912f43c28c2047a808f5bfff643d16 706 746 url: "https://pub.dev" 707 747 source: hosted 708 - version: "1.3.2" 748 + version: "1.4.0" 709 749 source_span: 710 750 dependency: transitive 711 751 description: 712 752 name: source_span 713 - sha256: dd904f795d4b4f3b870833847c461801f6750a9fa8e61ea5ac53f9422b31f250 753 + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" 714 754 url: "https://pub.dev" 715 755 source: hosted 716 - version: "1.9.1" 756 + version: "1.10.0" 717 757 stack_trace: 718 758 dependency: transitive 719 759 description: ··· 763 803 source: hosted 764 804 version: "1.2.1" 765 805 test_api: 766 - dependency: transitive 806 + dependency: "direct overridden" 767 807 description: 768 808 name: test_api 769 - sha256: eb6ac1540b26de412b3403a163d919ba86f6a973fe6cc50ae3541b80092fdcfb 809 + sha256: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b" 770 810 url: "https://pub.dev" 771 811 source: hosted 772 - version: "0.5.1" 812 + version: "0.6.1" 773 813 timing: 774 814 dependency: transitive 775 815 description: ··· 786 826 url: "https://pub.dev" 787 827 source: hosted 788 828 version: "1.3.2" 829 + ubuntu_localizations: 830 + dependency: transitive 831 + description: 832 + name: ubuntu_localizations 833 + sha256: a75e87b9f1c3dc678f69a943eb4cee8ccbd5b0db64d491750325950e311adab0 834 + url: "https://pub.dev" 835 + source: hosted 836 + version: "0.3.4" 789 837 ubuntu_logger: 790 838 dependency: "direct main" 791 839 description: ··· 798 846 dependency: "direct main" 799 847 description: 800 848 name: ubuntu_service 801 - sha256: f90582494cddd4c7325637930497f38598a7ec567f4f86f88fe1ac40a53832a1 849 + sha256: f6ad4dfb099af41e750c59aad00d67a96e22df00f4962d2e25d56ae3db78be49 802 850 url: "https://pub.dev" 803 851 source: hosted 804 - version: "0.2.3" 852 + version: "0.2.4" 805 853 ubuntu_session: 806 854 dependency: "direct main" 807 855 description: ··· 810 858 url: "https://pub.dev" 811 859 source: hosted 812 860 version: "0.0.4" 861 + ubuntu_test: 862 + dependency: "direct main" 863 + description: 864 + name: ubuntu_test 865 + sha256: "2361b741808a11d95c64a50666151d536133e75cade17b8feccca1e67364be88" 866 + url: "https://pub.dev" 867 + source: hosted 868 + version: "0.1.0-beta.6" 813 869 upower: 814 870 dependency: "direct main" 815 871 description: ··· 826 882 url: "https://pub.dev" 827 883 source: hosted 828 884 version: "1.0.0" 885 + vector_graphics: 886 + dependency: transitive 887 + description: 888 + name: vector_graphics 889 + sha256: "670f6e07aca990b4a2bcdc08a784193c4ccdd1932620244c3a86bb72a0eac67f" 890 + url: "https://pub.dev" 891 + source: hosted 892 + version: "1.1.7" 893 + vector_graphics_codec: 894 + dependency: transitive 895 + description: 896 + name: vector_graphics_codec 897 + sha256: "7451721781d967db9933b63f5733b1c4533022c0ba373a01bdd79d1a5457f69f" 898 + url: "https://pub.dev" 899 + source: hosted 900 + version: "1.1.7" 901 + vector_graphics_compiler: 902 + dependency: transitive 903 + description: 904 + name: vector_graphics_compiler 905 + sha256: "80a13c613c8bde758b1464a1755a7b3a8f2b6cec61fbf0f5a53c94c30f03ba2e" 906 + url: "https://pub.dev" 907 + source: hosted 908 + version: "1.1.7" 829 909 vector_math: 830 910 dependency: transitive 831 911 description: ··· 838 918 dependency: transitive 839 919 description: 840 920 name: vm_service 841 - sha256: f6deed8ed625c52864792459709183da231ebf66ff0cf09e69b573227c377efe 921 + sha256: c620a6f783fa22436da68e42db7ebbf18b8c44b9a46ab911f666ff09ffd9153f 842 922 url: "https://pub.dev" 843 923 source: hosted 844 - version: "11.3.0" 924 + version: "11.7.1" 845 925 watcher: 846 926 dependency: transitive 847 927 description: ··· 850 930 url: "https://pub.dev" 851 931 source: hosted 852 932 version: "1.1.0" 933 + web: 934 + dependency: transitive 935 + description: 936 + name: web 937 + sha256: dc8ccd225a2005c1be616fe02951e2e342092edf968cf0844220383757ef8f10 938 + url: "https://pub.dev" 939 + source: hosted 940 + version: "0.1.4-beta" 853 941 web_socket_channel: 854 942 dependency: transitive 855 943 description: ··· 870 958 dependency: transitive 871 959 description: 872 960 name: window_manager 873 - sha256: "95096fede562cbb65f30d38b62d819a458f59ba9fe4a317f6cee669710f6676b" 961 + sha256: "6ee795be9124f90660ea9d05e581a466de19e1c89ee74fc4bf528f60c8600edd" 874 962 url: "https://pub.dev" 875 963 source: hosted 876 - version: "0.3.4" 964 + version: "0.3.6" 877 965 xml: 878 966 dependency: transitive 879 967 description: ··· 902 990 dependency: "direct main" 903 991 description: 904 992 name: yaru 905 - sha256: "1d1fb60359a92f91cc7e6a76fd3046474b9734d2fb97b7a7189bb1e2ca66929f" 993 + sha256: "24047f0de452784840a326874192d26cb5ebd8cf5eac7864086e5bc9272a28db" 906 994 url: "https://pub.dev" 907 995 source: hosted 908 - version: "0.6.2" 996 + version: "1.1.0" 909 997 yaru_color_generator: 910 998 dependency: transitive 911 999 description: ··· 926 1014 dependency: "direct main" 927 1015 description: 928 1016 name: yaru_icons 929 - sha256: "8ddd40522c882de898a493094f2f41687f7a0faaf3434b9c854a7605a53a2477" 1017 + sha256: cbb0b5945f407116fd8a1fbe7265e7ffa0d568249d496343a69cb5c55360bba1 930 1018 url: "https://pub.dev" 931 1019 source: hosted 932 - version: "1.0.4" 1020 + version: "2.2.1" 1021 + yaru_test: 1022 + dependency: transitive 1023 + description: 1024 + name: yaru_test 1025 + sha256: "9396269fbe026bb9c398b9d4308c76982090ddeca102e4846bd4ba595333ff0a" 1026 + url: "https://pub.dev" 1027 + source: hosted 1028 + version: "0.1.4" 933 1029 yaru_widgets: 934 1030 dependency: "direct main" 935 1031 description: 936 1032 name: yaru_widgets 937 - sha256: "2fd284afe8c8c8104ea18b963d5db68f780ec65048be7ac0624d0dbb7176c55f" 1033 + sha256: "482a71ef5566c6cb4135272f0041bf8a9c35729bf9079b0d304eedfa2fa0cc0c" 938 1034 url: "https://pub.dev" 939 1035 source: hosted 940 - version: "2.3.1" 1036 + version: "3.1.0" 941 1037 yaru_window: 942 1038 dependency: transitive 943 1039 description: 944 1040 name: yaru_window 945 - sha256: "2effc86bfe7aae870384655c029e3bc36bf5dd32727474e502832a1edaeff75d" 1041 + sha256: "55c8f039d13aaa1b211a8cf0b7731ae2fdcac9b1be1e0994eb14ad1d17fecaf7" 946 1042 url: "https://pub.dev" 947 1043 source: hosted 948 - version: "0.1.2" 1044 + version: "0.1.3" 949 1045 yaru_window_linux: 950 1046 dependency: transitive 951 1047 description: 952 1048 name: yaru_window_linux 953 - sha256: "9a813227137d1aafbc786d6455edc24c5febd17d6da04fe7ba2109c02bb60e69" 1049 + sha256: c45606cf75880ae6427bbe176dc5313356f16c876c7013a19aeee782882c40c2 954 1050 url: "https://pub.dev" 955 1051 source: hosted 956 - version: "0.1.2" 1052 + version: "0.1.3" 957 1053 yaru_window_manager: 958 1054 dependency: transitive 959 1055 description: ··· 966 1062 dependency: transitive 967 1063 description: 968 1064 name: yaru_window_platform_interface 969 - sha256: "7845d7db91e1c1acbc0f8b2f9ba6082c00a98f06cabda1732bdb7c267edc5c89" 1065 + sha256: e9f8cd34e207d7f7b771ae70dee347ed974cee06b981819c4181b3e474e52254 970 1066 url: "https://pub.dev" 971 1067 source: hosted 972 - version: "0.1.1" 1068 + version: "0.1.2" 973 1069 yaru_window_web: 974 1070 dependency: transitive 975 1071 description: ··· 979 1075 source: hosted 980 1076 version: "0.0.3" 981 1077 sdks: 982 - dart: ">=3.0.0 <4.0.0" 1078 + dart: ">=3.1.0-185.0.dev <4.0.0" 983 1079 flutter: ">=3.10.0"
+2 -2
pkgs/servers/onlyoffice-documentserver/default.nix
··· 15 15 # var/www/onlyoffice/documentserver/server/DocService/docservice 16 16 onlyoffice-documentserver = stdenv.mkDerivation rec { 17 17 pname = "onlyoffice-documentserver"; 18 - version = "7.4.0"; 18 + version = "7.4.1"; 19 19 20 20 src = fetchurl { 21 21 url = "https://github.com/ONLYOFFICE/DocumentServer/releases/download/v${lib.concatStringsSep "." (lib.take 3 (lib.splitVersion version))}/onlyoffice-documentserver_amd64.deb"; 22 - sha256 = "sha256-FL09EXxQlUZuJMMHYu9tSOH8ARPgzoqAKmQYV6225PU="; 22 + sha256 = "sha256-60S8M1Y9BxuMxXGxEaxW82Va5lSnZZPfQnPq2ivTXdU="; 23 23 }; 24 24 25 25 preferLocalBuild = true;
+2 -2
pkgs/servers/samba/4.x.nix
··· 51 51 52 52 stdenv.mkDerivation rec { 53 53 pname = "samba"; 54 - version = "4.18.5"; 54 + version = "4.18.6"; 55 55 56 56 src = fetchurl { 57 57 url = "mirror://samba/pub/samba/stable/${pname}-${version}.tar.gz"; 58 - hash = "sha256-CVJWrDMuHZ+/m3/3gj+SoyM9PtZYzn/JszkFwiQ/RH8="; 58 + hash = "sha256-KEyKmUzpich81oCMOQ/LnQDDayGg3BqKdUdLZ8nnFec="; 59 59 }; 60 60 61 61 outputs = [ "out" "dev" "man" ];
+2 -2
pkgs/servers/ser2net/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "ser2net"; 13 - version = "4.4.0"; 13 + version = "4.5.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "cminyard"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - hash = "sha256-g+im3WH8ddE4jxKKbb/klkqlmPegKRv1r10HjFIHnQw="; 19 + hash = "sha256-AmTJfjLpnPHtPMKP9djKTZozNPkojPqRJ3eoypY53bA="; 20 20 }; 21 21 22 22 passthru = {
+3 -3
pkgs/tools/admin/coldsnap/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "coldsnap"; 12 - version = "0.5.1"; 12 + version = "0.6.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "awslabs"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - hash = "sha256-WqNGajtezhBDYmgUayKjdNAZSyKirIYeYOnozMCIya4="; 18 + hash = "sha256-zXLt16ffqbExU23uRI7U99nUwpSKTIf039dDq+k2KAA="; 19 19 }; 20 - cargoHash = "sha256-av9hsvY8xsB+HlIRLYNFDJc9eyBfOyBZ347vWoVsDmM="; 20 + cargoHash = "sha256-RRyAzD9eiscZ9kB5tFh5vUnGk6XYYKy0/TAjcaygmG4="; 21 21 22 22 buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ]; 23 23 nativeBuildInputs = [ pkg-config ];
+2 -2
pkgs/tools/admin/qovery-cli/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "qovery-cli"; 11 - version = "0.66.1"; 11 + version = "0.67.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "Qovery"; 15 15 repo = pname; 16 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-vWfwoOxs8scIJchQ+dDfyHZvU88YKaMH/wCWwVTwtyU="; 17 + hash = "sha256-mVn+Q4XZ+jJjHR+V5Rl/rPUZN/Tv7vVX7u6IDuJNdO0="; 18 18 }; 19 19 20 20 vendorHash = "sha256-Fcm/f54zGgA742yhIVJxjv7Y2T8DblC71+hw5HTmOf0=";
+2 -2
pkgs/tools/admin/simplotask/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "simplotask"; 5 - version = "1.11.3"; 5 + version = "1.11.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "umputun"; 9 9 repo = "spot"; 10 10 rev = "v${version}"; 11 - hash = "sha256-sNYC8QQmVdBjHU3/pDD4TGLDxKsMLyMmZa7wBVlWnGM="; 11 + hash = "sha256-G/T7LF8ujlCSbK1Lv2h43OZVx52yrLDr+6e/WxhaHOo="; 12 12 }; 13 13 14 14 vendorHash = null;
+3 -3
pkgs/tools/graphics/textplots/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "textplots"; 5 - version = "0.8.1"; 5 + version = "0.8.2"; 6 6 7 7 src = fetchCrate { 8 8 inherit pname version; 9 - hash = "sha256-fzuvJwxU6Vi9hWW0IcRAHUeSoOBpGyebzvgjKiYxAbs="; 9 + hash = "sha256-NBUp5kFiODqoJrg/JBPhtaVsOikppqt2jbd3C3RQ7qg="; 10 10 }; 11 11 12 - cargoHash = "sha256-QH27BjS75jZOQBBflGapAjg49LpG12DxWZo8TjLoXmI="; 12 + cargoHash = "sha256-hHj3Da399gbRbgHgHcBE53HJusWoPbRA184tcCSJ4fc="; 13 13 14 14 meta = with lib; { 15 15 description = "Terminal plotting written in Rust";
+3 -3
pkgs/tools/misc/goreleaser/default.nix
··· 7 7 }: 8 8 buildGoModule rec { 9 9 pname = "goreleaser"; 10 - version = "1.19.2"; 10 + version = "1.20.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "goreleaser"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-T8mLbEJ0fGm+rxwFVHziQyq+JcXC0OrThwyDPxcPHB0="; 16 + sha256 = "iZqX/03+0koxLTbeUOxpQoEita6S/eszB8kMe/NtDcc="; 17 17 }; 18 18 19 - vendorHash = "sha256-2m81ELHWbF9WKEMXmr5E8QReClWdVhPRJ+ZstrM6qY0="; 19 + vendorHash = "sha256-YYFCoLwgx8OBfI4VcWO6AUqNZU2JdgGAJm26koJAzWA="; 20 20 21 21 ldflags = 22 22 [ "-s" "-w" "-X main.version=${version}" "-X main.builtBy=nixpkgs" ];
+2 -2
pkgs/tools/misc/moar/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "moar"; 5 - version = "1.15.3"; 5 + version = "1.15.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "walles"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-ppaBO+qgjHPCQysTiB3nCXa8zUuEyLOK5iR2VwSyXRM="; 11 + hash = "sha256-jZ5CqTs38WotATYyptje3oVszD5ztHbAFRzUMchyK+U="; 12 12 }; 13 13 14 14 vendorHash = "sha256-aFCv6VxHD1bOLhCHXhy4ubik8Z9uvU6AeqcMqIZI2Oo=";
+2 -2
pkgs/tools/misc/tgpt/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "tgpt"; 8 - version = "1.7.2"; 8 + version = "1.7.4"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "aandrew-me"; 12 12 repo = "tgpt"; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-e1OPDhZuRbm6DqvmB1ZiXVRSnjaZEFi2gSIMnfIIHKE="; 14 + hash = "sha256-JOCoyGSIdHWa7/4fwSoaTFLqk5EE9Ni4UFCD7BvFeoQ="; 15 15 }; 16 16 17 17 vendorHash = "sha256-2I5JJWxM6aZx0eZu7taUTL11Y/5HIrXYC5aezrTbbsM=";
+3 -3
pkgs/tools/networking/httplz/default.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "httplz"; 15 - version = "1.13.1"; 15 + version = "1.13.2"; 16 16 17 17 src = fetchCrate { 18 18 inherit version; 19 19 pname = "https"; 20 - hash = "sha256-KjkUIAo2CAfVNjC0Vq3Pd8qDN9g1+K/ZRs+sGcc8bCg="; 20 + hash = "sha256-uxEMgSrcxMZD/3GQuH9S/oYtMUPzgMR61ZzLcb65zXU="; 21 21 }; 22 22 23 - cargoHash = "sha256-liRCdFg1wUPIURffSJVYG9nf1UEsvSH/krglBeluvlQ="; 23 + cargoHash = "sha256-8cH8QrnkfPF0Di7+Ns/P/8cFe0jej/v7m4fkkfTFdvs="; 24 24 25 25 nativeBuildInputs = [ 26 26 installShellFiles
+2 -2
pkgs/tools/networking/lxi-tools/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "lxi-tools"; 13 - version = "2.6"; 13 + version = "2.7"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "lxi-tools"; 17 17 repo = "lxi-tools"; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-THtMSiGlBes9OujFEZL88Twx+etYiQRJSk9DFYeGFhY="; 19 + sha256 = "sha256-69B3wW4lg6GxSpEKhuFYKTuAyd+QYb4WNbNVdZnRUt8="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+7 -6
pkgs/tools/security/ipscan/default.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "ipscan"; 14 - version = "3.9.0"; 14 + version = "3.9.1"; 15 15 16 16 src = fetchurl { 17 - url = "https://github.com/angryip/ipscan/releases/download/${version}/ipscan_${version}_all.deb"; 18 - sha256 = "sha256-HpsEp5XSz118cbV2wT81hzQT4cgDEBnpUbpl45ZVvlg="; 17 + url = "https://github.com/angryip/ipscan/releases/download/${version}/ipscan_${version}_amd64.deb"; 18 + hash = "sha256-UPkUwZV3NIeVfL3yYvqOhm4X5xW+40GOlZGy8WGhYmk="; 19 19 }; 20 20 21 21 sourceRoot = "."; ··· 27 27 28 28 installPhase = '' 29 29 mkdir -p $out/share 30 - cp usr/lib/ipscan/ipscan-any-${version}.jar $out/share/${pname}-${version}.jar 30 + cp usr/lib/ipscan/ipscan-linux64-${version}.jar $out/share/${pname}-${version}.jar 31 31 32 32 makeWrapper ${jre}/bin/java $out/bin/ipscan \ 33 33 --prefix LD_LIBRARY_PATH : "$out/lib/:${lib.makeLibraryPath [ swt xorg.libXtst ]}" \ ··· 42 42 ''; 43 43 44 44 meta = with lib; { 45 - description = "Fast and friendly network scanner"; 45 + description = "Angry IP Scanner - fast and friendly network scanner"; 46 46 homepage = "https://angryip.org"; 47 + downloadPage = "https://github.com/angryip/ipscan/releases/tag/${version}"; 47 48 changelog = "https://github.com/angryip/ipscan/blob/${version}/CHANGELOG"; 48 49 sourceProvenance = with sourceTypes; [ binaryBytecode ]; 49 50 license = licenses.gpl2Only; 50 51 platforms = [ "x86_64-linux" ]; 51 - maintainers = with maintainers; [ kylesferrazza ]; 52 + maintainers = with maintainers; [ kylesferrazza totoroot ]; 52 53 }; 53 54 }
+2 -2
pkgs/tools/security/ospd-openvas/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "ospd-openvas"; 8 - version = "22.5.4"; 8 + version = "22.6.0"; 9 9 format = "pyproject"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "greenbone"; 13 13 repo = "ospd-openvas"; 14 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-T/MKx8yjRZ+r0ypnWzASGIQPKOAvzznWvaP7gwP+24M="; 15 + hash = "sha256-1538XMNnerhfV3xQ8/TyoztCfWnkRvy0p6QtKMQb2p4="; 16 16 }; 17 17 18 18 pythonRelaxDeps = [
+3 -3
pkgs/tools/text/mdbook-i18n-helpers/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "mdbook-i18n-helpers"; 8 - version = "0.2.0"; 8 + version = "0.2.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "google"; 12 12 repo = "mdbook-i18n-helpers"; 13 13 rev = "refs/tags/${version}"; 14 - hash = "sha256-j5nbAgbCuz8urvdYPTTtGDnWwY/FxKNnwbeSTcuyIKw="; 14 + hash = "sha256-ea/z5+QAvQVacP2Yxz9hGh8REjsNbp/rfkDV0f9KyPg="; 15 15 }; 16 16 17 - cargoHash = "sha256-lDHq4KRYIeCddhFGQDWOx9olcOASjOke/h22Qm4wv6Q="; 17 + cargoHash = "sha256-4Bf6R8sVwJCFiF+j+WePxWy43KuArIuMCzXKc58+TAw="; 18 18 19 19 meta = with lib; { 20 20 description = "Helpers for a mdbook i18n workflow based on Gettext";
+31
pkgs/tools/text/yx/default.nix
··· 1 + { lib, stdenv, fetchFromGitLab, libyaml }: 2 + stdenv.mkDerivation rec { 3 + pname = "yx"; 4 + version = "1.0.0"; 5 + 6 + src = fetchFromGitLab { 7 + owner = "tomalok"; 8 + repo = pname; 9 + rev = version; 10 + sha256 = "sha256-oY61V9xP0DwRooabzi0XtaFsQa2GwYbuvxfERXQtYcA="; 11 + }; 12 + 13 + makeFlags = [ 14 + "PREFIX=${placeholder "out"}" 15 + ]; 16 + 17 + strictDeps = true; 18 + 19 + buildInputs = [ libyaml ]; 20 + 21 + doCheck = true; 22 + 23 + meta = with lib; { 24 + description = "YAML Data Extraction Tool"; 25 + homepage = "https://gitlab.com/tomalok/yx"; 26 + license = licenses.mit; 27 + platforms = platforms.all; 28 + maintainers = with maintainers; [ twz123 ]; 29 + mainProgram = pname; 30 + }; 31 + }
+41 -41
pkgs/tools/typesetting/typstfmt/Cargo.lock
··· 4 4 5 5 [[package]] 6 6 name = "aho-corasick" 7 - version = "1.0.2" 7 + version = "1.0.4" 8 8 source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" 9 + checksum = "6748e8def348ed4d14996fa801f4122cd763fff530258cdc03f64b25f89d3a5a" 10 10 dependencies = [ 11 11 "memchr", 12 12 ] ··· 73 73 74 74 [[package]] 75 75 name = "ecow" 76 - version = "0.1.1" 76 + version = "0.1.2" 77 77 source = "registry+https://github.com/rust-lang/crates.io-index" 78 - checksum = "c5c5051925c54d9a42c8652313b5358a7432eed209466b443ed5220431243a14" 78 + checksum = "1d1990d053cf6edf3f030682dba3b0eb65ef01fabb2686072765d8a17d6728e8" 79 79 dependencies = [ 80 80 "serde", 81 81 ] 82 82 83 83 [[package]] 84 84 name = "either" 85 - version = "1.8.1" 85 + version = "1.9.0" 86 86 source = "registry+https://github.com/rust-lang/crates.io-index" 87 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 87 + checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 88 88 89 89 [[package]] 90 90 name = "encode_unicode" ··· 106 106 107 107 [[package]] 108 108 name = "globmatch" 109 - version = "0.2.4" 109 + version = "0.2.5" 110 110 source = "registry+https://github.com/rust-lang/crates.io-index" 111 - checksum = "e0e82f77d5e36ce0c3941a39a6d8fff8ed9553ae13586b31640d6885f7376097" 111 + checksum = "3755076379cc2b2bbf53855fe718e1eed3093cfb769ebf5d290f617fa9cc09a0" 112 112 dependencies = [ 113 113 "globset", 114 114 "log", ··· 117 117 118 118 [[package]] 119 119 name = "globset" 120 - version = "0.4.11" 120 + version = "0.4.13" 121 121 source = "registry+https://github.com/rust-lang/crates.io-index" 122 - checksum = "1391ab1f92ffcc08911957149833e682aa3fe252b9f45f966d2ef972274c97df" 122 + checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d" 123 123 dependencies = [ 124 124 "aho-corasick", 125 125 "bstr 1.6.0", ··· 192 192 193 193 [[package]] 194 194 name = "log" 195 - version = "0.4.19" 195 + version = "0.4.20" 196 196 source = "registry+https://github.com/rust-lang/crates.io-index" 197 - checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 197 + checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 198 198 199 199 [[package]] 200 200 name = "memchr" 201 - version = "2.5.0" 201 + version = "2.6.0" 202 202 source = "registry+https://github.com/rust-lang/crates.io-index" 203 - checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 203 + checksum = "76fc44e2588d5b436dbc3c6cf62aef290f90dab6235744a93dfe1cc18f451e2c" 204 204 205 205 [[package]] 206 206 name = "nu-ansi-term" ··· 226 226 227 227 [[package]] 228 228 name = "pin-project-lite" 229 - version = "0.2.10" 229 + version = "0.2.13" 230 230 source = "registry+https://github.com/rust-lang/crates.io-index" 231 - checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57" 231 + checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 232 232 233 233 [[package]] 234 234 name = "proc-macro2" ··· 241 241 242 242 [[package]] 243 243 name = "quote" 244 - version = "1.0.31" 244 + version = "1.0.33" 245 245 source = "registry+https://github.com/rust-lang/crates.io-index" 246 - checksum = "5fe8a65d69dd0808184ebb5f836ab526bb259db23c657efa38711b1072ee47f0" 246 + checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 247 247 dependencies = [ 248 248 "proc-macro2", 249 249 ] 250 250 251 251 [[package]] 252 252 name = "regex" 253 - version = "1.9.1" 253 + version = "1.9.4" 254 254 source = "registry+https://github.com/rust-lang/crates.io-index" 255 - checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575" 255 + checksum = "12de2eff854e5fa4b1295edd650e227e9d8fb0c9e90b12e7f36d6a6811791a29" 256 256 dependencies = [ 257 257 "aho-corasick", 258 258 "memchr", 259 - "regex-automata 0.3.3", 259 + "regex-automata 0.3.7", 260 260 "regex-syntax", 261 261 ] 262 262 ··· 268 268 269 269 [[package]] 270 270 name = "regex-automata" 271 - version = "0.3.3" 271 + version = "0.3.7" 272 272 source = "registry+https://github.com/rust-lang/crates.io-index" 273 - checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310" 273 + checksum = "49530408a136e16e5b486e883fbb6ba058e8e4e8ae6621a77b048b314336e629" 274 274 dependencies = [ 275 275 "aho-corasick", 276 276 "memchr", ··· 279 279 280 280 [[package]] 281 281 name = "regex-syntax" 282 - version = "0.7.4" 282 + version = "0.7.5" 283 283 source = "registry+https://github.com/rust-lang/crates.io-index" 284 - checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" 284 + checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" 285 285 286 286 [[package]] 287 287 name = "same-file" ··· 294 294 295 295 [[package]] 296 296 name = "serde" 297 - version = "1.0.171" 297 + version = "1.0.188" 298 298 source = "registry+https://github.com/rust-lang/crates.io-index" 299 - checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9" 299 + checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e" 300 300 dependencies = [ 301 301 "serde_derive", 302 302 ] 303 303 304 304 [[package]] 305 305 name = "serde_derive" 306 - version = "1.0.171" 306 + version = "1.0.188" 307 307 source = "registry+https://github.com/rust-lang/crates.io-index" 308 - checksum = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682" 308 + checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" 309 309 dependencies = [ 310 310 "proc-macro2", 311 311 "quote", 312 - "syn 2.0.26", 312 + "syn 2.0.29", 313 313 ] 314 314 315 315 [[package]] ··· 342 342 343 343 [[package]] 344 344 name = "similar-asserts" 345 - version = "1.4.2" 345 + version = "1.5.0" 346 346 source = "registry+https://github.com/rust-lang/crates.io-index" 347 - checksum = "bbf644ad016b75129f01a34a355dcb8d66a5bc803e417c7a77cc5d5ee9fa0f18" 347 + checksum = "e041bb827d1bfca18f213411d51b665309f1afb37a04a5d1464530e13779fc0f" 348 348 dependencies = [ 349 349 "console", 350 350 "similar", ··· 352 352 353 353 [[package]] 354 354 name = "siphasher" 355 - version = "0.3.10" 355 + version = "0.3.11" 356 356 source = "registry+https://github.com/rust-lang/crates.io-index" 357 - checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 357 + checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 358 358 359 359 [[package]] 360 360 name = "smallvec" ··· 375 375 376 376 [[package]] 377 377 name = "syn" 378 - version = "2.0.26" 378 + version = "2.0.29" 379 379 source = "registry+https://github.com/rust-lang/crates.io-index" 380 - checksum = "45c3457aacde3c65315de5031ec191ce46604304d2446e803d71ade03308d970" 380 + checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a" 381 381 dependencies = [ 382 382 "proc-macro2", 383 383 "quote", ··· 448 448 dependencies = [ 449 449 "proc-macro2", 450 450 "quote", 451 - "syn 2.0.26", 451 + "syn 2.0.29", 452 452 ] 453 453 454 454 [[package]] ··· 504 504 505 505 [[package]] 506 506 name = "typstfmt" 507 - version = "0.1.0" 507 + version = "0.2.0" 508 508 dependencies = [ 509 509 "lexopt", 510 510 "typstfmt_lib", ··· 512 512 513 513 [[package]] 514 514 name = "typstfmt_lib" 515 - version = "0.1.0" 515 + version = "0.2.0" 516 516 dependencies = [ 517 517 "globmatch", 518 518 "insta", ··· 666 666 667 667 [[package]] 668 668 name = "winnow" 669 - version = "0.5.0" 669 + version = "0.5.15" 670 670 source = "registry+https://github.com/rust-lang/crates.io-index" 671 - checksum = "81fac9742fd1ad1bd9643b991319f72dd031016d44b77039a26977eb667141e7" 671 + checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc" 672 672 dependencies = [ 673 673 "memchr", 674 674 ]
+4 -4
pkgs/tools/typesetting/typstfmt/default.nix
··· 1 1 { lib, rustPlatform, fetchFromGitHub }: 2 2 3 - rustPlatform.buildRustPackage { 3 + rustPlatform.buildRustPackage rec { 4 4 pname = "typstfmt"; 5 - version = "unstable-2023-08-22"; 5 + version = "0.2.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "astrale-sharp"; 9 9 repo = "typstfmt"; 10 - rev = "578d39fb304020d0c26118e4eeab272868c9d525"; 11 - hash = "sha256-pF0i3yqGOzbN3CMELhZ7JElOUdBZCnp3cLqa9VONHhI="; 10 + rev = version; 11 + hash = "sha256-tLkb9KmjkevjGdqqlbcz0jRyBpB079VgqWI81qNPCUw="; 12 12 }; 13 13 14 14 cargoLock = {
+2
pkgs/top-level/aliases.nix
··· 81 81 amuleGui = throw "amuleGui was renamed to amule-gui"; # Added 2022-02-11 82 82 amsn = throw "amsn has been removed due to being unmaintained"; # Added 2020-12-09 83 83 angelfish = libsForQt5.kdeGear.angelfish; # Added 2021-10-06 84 + angryipscanner = ipscan; # Added 2023-08-30 84 85 ansible_2_12 = throw "Ansible 2.12 goes end of life in 2023/05 and can't be supported throughout the 23.05 release cycle"; # Added 2023-05-16 85 86 ansible_2_11 = throw "Ansible 2.11 goes end of life in 2022/11 and can't be supported throughout the 22.05 release cycle"; # Added 2022-03-30 86 87 ansible_2_10 = throw "Ansible 2.10 went end of life in 2022/05 and has subsequently been dropped"; # Added 2022-03-30 ··· 533 534 flutter-beta = throw "Non-stable versions of Flutter have been removed. You can use flutterPackages.mkFlutter to generate a package for other Flutter versions"; # Added 2020-01-15 534 535 flutter-dev = throw "Non-stable versions of Flutter have been removed. You can use flutterPackages.mkFlutter to generate a package for other Flutter versions"; # Added 2020-01-15 535 536 flutter2 = throw "flutter2 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2023-07-03 537 + flutter37 = throw "flutter37 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2023-07-03 536 538 flvtool2 = throw "flvtool2 has been removed"; # Added 2020-11-03 537 539 fme = throw "fme was removed, because it is old and uses Glade, a discontinued library"; # Added 2022-01-26 538 540 foldingathome = fahclient; # Added 2020-09-03
+6 -4
pkgs/top-level/all-packages.nix
··· 15082 15082 inherit (darwin.apple_sdk.frameworks) Security; 15083 15083 }; 15084 15084 15085 + yx = callPackage ../tools/text/yx { }; 15086 + 15085 15087 zarchive = callPackage ../tools/archivers/zarchive { }; 15086 15088 15087 15089 zprint = callPackage ../development/tools/zprint { }; ··· 15507 15509 colmap = libsForQt5.callPackage ../applications/science/misc/colmap { inherit (config) cudaSupport; }; 15508 15510 colmapWithCuda = colmap.override { cudaSupport = true; }; 15509 15511 15510 - chickenPackages_4 = callPackage ../development/compilers/chicken/4 { }; 15511 - chickenPackages_5 = callPackage ../development/compilers/chicken/5 { }; 15512 + chickenPackages_4 = recurseIntoAttrs (callPackage ../development/compilers/chicken/4 { }); 15513 + chickenPackages_5 = recurseIntoAttrs (callPackage ../development/compilers/chicken/5 { }); 15512 15514 chickenPackages = dontRecurseIntoAttrs chickenPackages_5; 15513 15515 15514 15516 inherit (chickenPackages_5) ··· 15732 15734 flutterPackages = 15733 15735 recurseIntoAttrs (callPackage ../development/compilers/flutter { }); 15734 15736 flutter-unwrapped = flutterPackages.stable; 15735 - flutter37-unwrapped = flutterPackages.v37; 15736 15737 flutter = flutterPackages.wrapFlutter flutter-unwrapped; 15737 - flutter37 = flutterPackages.wrapFlutter flutter37-unwrapped; 15738 15738 15739 15739 fnm = callPackage ../development/tools/fnm { 15740 15740 inherit (darwin.apple_sdk.frameworks) DiskArbitration Foundation Security; ··· 24963 24963 rqlite = callPackage ../servers/sql/rqlite { }; 24964 24964 24965 24965 rshell = python3.pkgs.callPackage ../development/embedded/rshell { }; 24966 + 24967 + rtlcss = callPackage ../development/libraries/rtlcss { }; 24966 24968 24967 24969 rttr = callPackage ../development/libraries/rttr { }; 24968 24970