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