lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
465f68a5 6eba0985

+795 -510
+3 -3
doc/languages-frameworks/coq.section.md
··· 31 31 * `releaseRev` (optional, defaults to `(v: v)`), provides a default mapping from release names to revision hashes/branch names/tags, 32 32 * `displayVersion` (optional), provides a way to alter the computation of `name` from `pname`, by explaining how to display version numbers, 33 33 * `namePrefix` (optional, defaults to `[ "coq" ]`), provides a way to alter the computation of `name` from `pname`, by explaining which dependencies must occur in `name`, 34 - * `nativeBuildInputs` (optional), is a list of executables that are required to build the current derivation, in addition to the default ones (namely `which`, `dune` and `ocaml` depending on whether `useDune2`, `useDune2ifVersion` and `mlPlugin` are set). 34 + * `nativeBuildInputs` (optional), is a list of executables that are required to build the current derivation, in addition to the default ones (namely `which`, `dune` and `ocaml` depending on whether `useDune`, `useDuneifVersion` and `mlPlugin` are set). 35 35 * `extraNativeBuildInputs` (optional, deprecated), an additional list of derivation to add to `nativeBuildInputs`, 36 36 * `overrideNativeBuildInputs` (optional) replaces the default list of derivation to which `nativeBuildInputs` and `extraNativeBuildInputs` adds extra elements, 37 37 * `buildInputs` (optional), is a list of libraries and dependencies that are required to build and run the current derivation, in addition to the default one `[ coq ]`, ··· 39 39 * `overrideBuildInputs` (optional) replaces the default list of derivation to which `buildInputs` and `extraBuildInputs` adds extras elements, 40 40 * `propagatedBuildInputs` (optional) is passed as is to `mkDerivation`, we recommend to use this for Coq libraries and Coq plugin dependencies, as this makes sure the paths of the compiled libraries and plugins will always be added to the build environements of subsequent derivation, which is necessary for Coq packages to work correctly, 41 41 * `mlPlugin` (optional, defaults to `false`). Some extensions (plugins) might require OCaml and sometimes other OCaml packages. Standard dependencies can be added by setting the current option to `true`. For a finer grain control, the `coq.ocamlPackages` attribute can be used in `nativeBuildInputs`, `buildInputs`, and `propagatedBuildInputs` to depend on the same package set Coq was built against. 42 - * `useDune2ifVersion` (optional, default to `(x: false)` uses Dune2 to build the package if the provided predicate evaluates to true on the version, e.g. `useDune2ifVersion = versions.isGe "1.1"` will use dune if the version of the package is greater or equal to `"1.1"`, 43 - * `useDune2` (optional, defaults to `false`) uses Dune2 to build the package if set to true, the presence of this attribute overrides the behavior of the previous one. 42 + * `useDuneifVersion` (optional, default to `(x: false)` uses Dune to build the package if the provided predicate evaluates to true on the version, e.g. `useDuneifVersion = versions.isGe "1.1"` will use dune if the version of the package is greater or equal to `"1.1"`, 43 + * `useDune` (optional, defaults to `false`) uses Dune to build the package if set to true, the presence of this attribute overrides the behavior of the previous one. 44 44 * `opam-name` (optional, defaults to concatenating with a dash separator the components of `namePrefix` and `pname`), name of the Dune package to build. 45 45 * `enableParallelBuilding` (optional, defaults to `true`), since it is activated by default, we provide a way to disable it. 46 46 * `extraInstallFlags` (optional), allows to extend `installFlags` which initializes the variable `COQMF_COQLIB` so as to install in the proper subdirectory. Indeed Coq libraries should be installed in `$(out)/lib/coq/${coq.coq-version}/user-contrib/`. Such directories are automatically added to the `$COQPATH` environment variable by the hook defined in the Coq derivation.
-8
nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
··· 505 505 </listitem> 506 506 <listitem> 507 507 <para> 508 - The (previously undocumented) Nixpkgs configuration option 509 - <literal>checkMeta</literal> now defaults to 510 - <literal>true</literal>. This may cause evaluation failures 511 - for packages with incorrect <literal>meta</literal> attribute. 512 - </para> 513 - </listitem> 514 - <listitem> 515 - <para> 516 508 xow package removed along with the 517 509 <literal>hardware.xow</literal> module, due to the project 518 510 being deprecated in favor of <literal>xone</literal>, which is
-3
nixos/doc/manual/release-notes/rl-2211.section.md
··· 172 172 173 173 - riak package removed along with `services.riak` module, due to lack of maintainer to update the package. 174 174 175 - - The (previously undocumented) Nixpkgs configuration option `checkMeta` now defaults to `true`. This may cause evaluation 176 - failures for packages with incorrect `meta` attribute. 177 - 178 175 - xow package removed along with the `hardware.xow` module, due to the project being deprecated in favor of `xone`, which is available via the `hardware.xone` module. 179 176 180 177 - dd-agent package removed along with the `services.dd-agent` module, due to the project being deprecated in favor of `datadog-agent`, which is available via the `services.datadog-agent` module.
+11 -2
nixos/modules/services/security/fail2ban.nix
··· 91 91 example = "nftables-multiport"; 92 92 description = lib.mdDoc '' 93 93 Default banning action (e.g. iptables, iptables-new, iptables-multiport, 94 - shorewall, etc) It is used to define action_* variables. Can be overridden 95 - globally or per section within jail.local file 94 + iptables-ipset-proto6-allports, shorewall, etc) It is used to 95 + define action_* variables. Can be overridden globally or per 96 + section within jail.local file 96 97 ''; 97 98 }; 98 99 ··· 212 213 filter = apache-nohome 213 214 action = iptables-multiport[name=HTTP, port="http,https"] 214 215 logpath = /var/log/httpd/error_log* 216 + backend = auto 215 217 findtime = 600 216 218 bantime = 600 217 219 maxretry = 5 218 220 '''; 221 + dovecot = ''' 222 + # block IPs which failed to log-in 223 + # aggressive mode add blocking for aborted connections 224 + enabled = true 225 + filter = dovecot[mode=aggressive] 226 + maxretry = 3 227 + '''; 219 228 } 220 229 ''; 221 230 type = types.attrsOf types.lines;
+1 -3
nixos/tests/vengi-tools.nix
··· 20 20 machine.wait_for_x() 21 21 machine.execute("vengi-voxedit >&2 &") 22 22 machine.wait_for_window("voxedit") 23 - # OCR on voxedit's window is very expensive, so we avoid wasting a try 24 - # by letting the window load fully first 23 + # Let the window load fully 25 24 machine.sleep(15) 26 - machine.wait_for_text("Solid") 27 25 machine.screenshot("screen") 28 26 ''; 29 27 })
+1 -1
pkgs/applications/audio/tauon/default.nix
··· 132 132 description = "The Linux desktop music player from the future"; 133 133 homepage = "https://tauonmusicbox.rocks/"; 134 134 license = licenses.gpl3; 135 - maintainers = with maintainers; [ SuperSandro2000 ]; 135 + maintainers = with maintainers; [ jansol ]; 136 136 platforms = platforms.linux; 137 137 }; 138 138 }
+1
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 1087 1087 https://github.com/mickael-menu/zk-nvim/,HEAD, 1088 1088 https://github.com/troydm/zoomwintab.vim/,, 1089 1089 https://github.com/nanotee/zoxide.vim/,, 1090 + https://github.com/anuvyklack/windows.nvim/,,
+25
pkgs/applications/file-managers/felix-fm/default.nix
··· 1 + { lib, rustPlatform, fetchFromGitHub, zoxide }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "felix"; 5 + version = "1.2.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "kyoheiu"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-7WeikYd/mADsp9DQ0jelhuZo5ZiyJrHG9HBg/YLpjZY="; 12 + }; 13 + 14 + cargoSha256 = "sha256-IUiyDk+TRfODXQ+45ARcFximkLVk32pqvJfn23H0kAw="; 15 + 16 + checkInputs = [ zoxide ]; 17 + 18 + meta = with lib; { 19 + description = "A tui file manager with vim-like key mapping"; 20 + homepage = "https://github.com/kyoheiu/felix"; 21 + license = licenses.mit; 22 + maintainers = with maintainers; [ figsoda ]; 23 + mainProgram = "fx"; 24 + }; 25 + }
+2 -2
pkgs/applications/graphics/vengi-tools/default.nix
··· 29 29 30 30 stdenv.mkDerivation rec { 31 31 pname = "vengi-tools"; 32 - version = "0.0.20"; 32 + version = "0.0.21"; 33 33 34 34 src = fetchFromGitHub { 35 35 owner = "mgerhardy"; 36 36 repo = "vengi"; 37 37 rev = "v${version}"; 38 - sha256 = "sha256-WsG6mjO90QQNsAarxdupZvXubdy06JjQmVYUzygl8l4="; 38 + sha256 = "sha256-T9YBU/YhhOASdKnzLcwQGBLc4HcQspiOV9VRgotfq3c="; 39 39 }; 40 40 41 41 nativeBuildInputs = [
+1 -1
pkgs/applications/misc/etesync-dav/default.nix
··· 62 62 homepage = "https://www.etesync.com/"; 63 63 description = "Secure, end-to-end encrypted, and privacy respecting sync for contacts, calendars and tasks"; 64 64 license = licenses.gpl3; 65 - maintainers = with maintainers; [ valodim ]; 65 + maintainers = with maintainers; [ thyol valodim ]; 66 66 broken = stdenv.isDarwin; # pyobjc-framework-Cocoa is missing 67 67 }; 68 68 }
+9 -6
pkgs/applications/networking/cluster/hadoop/default.nix
··· 10 10 , which 11 11 , bzip2 12 12 , cyrus_sasl 13 - , protobuf3_7 13 + , protobuf 14 14 , snappy 15 15 , zlib 16 16 , zstd ··· 92 92 pname = "hadoop"; 93 93 platformAttrs = rec { 94 94 x86_64-linux = { 95 - version = "3.3.3"; 96 - hash = "sha256-+nHGG7qkJxKa7wn+wCizTdVCxlrZD9zOxefvk9g7h2Q="; 95 + version = "3.3.4"; 96 + hash = "sha256-akg9GgsSNJDr2N8/cbZOs58zP3i5XwkK61jkM8vCQW0="; 97 97 }; 98 98 x86_64-darwin = x86_64-linux; 99 99 aarch64-linux = { ··· 107 107 jdk = jdk11_headless; 108 108 inherit openssl; 109 109 # TODO: Package and add Intel Storage Acceleration Library 110 - nativeLibs = [ stdenv.cc.cc.lib protobuf3_7 zlib snappy ]; 110 + nativeLibs = [ stdenv.cc.cc.lib protobuf zlib snappy ]; 111 111 libPatches = '' 112 112 ln -s ${getLib cyrus_sasl}/lib/libsasl2.so $out/lib/${untarDir}/lib/native/libsasl2.so.2 113 113 ln -s ${getLib openssl}/lib/libcrypto.so $out/lib/${untarDir}/lib/native/ ··· 119 119 patchelf --add-rpath ${jdk.home}/lib/server $out/lib/${untarDir}/lib/native/libnativetask.so.1.0.0 120 120 # Java 8 has libjvm.so at a different path 121 121 patchelf --add-rpath ${jdk.home}/jre/lib/amd64/server $out/lib/${untarDir}/lib/native/libnativetask.so.1.0.0 122 + # NixOS/nixpkgs#193370 123 + # This workaround is needed to use protobuf 3.19 124 + patchelf --replace-needed libprotobuf.so.18 libprotobuf.so $out/lib/${untarDir}/lib/native/libhdfspp.so 122 125 ''; 123 126 tests = nixosTests.hadoop; 124 127 }; 125 128 hadoop_3_2 = common rec { 126 129 pname = "hadoop"; 127 130 platformAttrs.x86_64-linux = { 128 - version = "3.2.3"; 129 - hash = "sha256-Q2/a1LcKutpJoGySB0qlCcYE2bvC/HoG/dp9nBikuNU="; 131 + version = "3.2.4"; 132 + hash = "sha256-qt2gpMr+NHuiVR+/zFRzRyRKG725/ZNBIM69z9J9wNw="; 130 133 }; 131 134 jdk = jdk8_headless; 132 135 # not using native libs because of broken openssl_1_0_2 dependency
+2 -2
pkgs/applications/terminal-emulators/xterm/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "xterm"; 7 - version = "372"; 7 + version = "373"; 8 8 9 9 src = fetchurl { 10 10 urls = [ 11 11 "ftp://ftp.invisible-island.net/xterm/${pname}-${version}.tgz" 12 12 "https://invisible-mirror.net/archives/xterm/${pname}-${version}.tgz" 13 13 ]; 14 - sha256 = "xtCBJ8skCcOgS8rlWbcCUZbtdwu3vyZjCry0XZX2CrE="; 14 + sha256 = "sha256-3rCYlHOmOQi1qNRN/uqDAchxD2zgH7V86MMAAjdXRrY="; 15 15 }; 16 16 17 17 strictDeps = true;
+2 -1
pkgs/applications/video/vlc/default.nix
··· 64 64 , systemd 65 65 , taglib 66 66 , unzip 67 + , xlibsWrapper 67 68 , xorg 68 69 , zlib 69 70 , chromecastSupport ? true, libmicrodns, protobuf ··· 149 150 srt 150 151 systemd 151 152 taglib 153 + xlibsWrapper 152 154 zlib 153 155 ] 154 156 ++ (with xorg; [ ··· 156 158 libXv 157 159 libXvMC 158 160 xcbutilkeysyms 159 - xlibsWrapper 160 161 ]) 161 162 ++ optional (!stdenv.hostPlatform.isAarch && !onlyLibVLC) live555 162 163 ++ optional jackSupport libjack2
+2 -1
pkgs/applications/video/xine-ui/default.nix
··· 12 12 , readline 13 13 , shared-mime-info 14 14 , xine-lib 15 + , xlibsWrapper 15 16 , xorg 16 17 }: 17 18 ··· 46 47 ncurses 47 48 readline 48 49 xine-lib 50 + xlibsWrapper 49 51 ] ++ (with xorg; [ 50 52 libXext 51 53 libXft ··· 54 56 libXtst 55 57 libXv 56 58 libXxf86vm 57 - xlibsWrapper 58 59 xorgproto 59 60 ]); 60 61
+7 -7
pkgs/build-support/coq/default.nix
··· 30 30 dropAttrs ? [], 31 31 keepAttrs ? [], 32 32 dropDerivationAttrs ? [], 33 - useDune2ifVersion ? (x: false), 34 - useDune2 ? false, 33 + useDuneifVersion ? (x: false), 34 + useDune ? false, 35 35 opam-name ? (concatStringsSep "-" (namePrefix ++ [ pname ])), 36 36 ... 37 37 }@args: ··· 44 44 "extraBuildInputs" "extraNativeBuildInputs" 45 45 "overrideBuildInputs" "overrideNativeBuildInputs" 46 46 "namePrefix" 47 - "meta" "useDune2ifVersion" "useDune2" "opam-name" 47 + "meta" "useDuneifVersion" "useDune" "opam-name" 48 48 "extraInstallFlags" "setCOQBIN" "mlPlugin" 49 49 "dropAttrs" "dropDerivationAttrs" "keepAttrs" ] ++ dropAttrs) keepAttrs; 50 50 fetch = import ../coq/meta-fetch/default.nix ··· 65 65 ] "") + optionalString (v == null) "-broken"; 66 66 append-version = p: n: p + display-pkg n "" coqPackages.${n}.version + "-"; 67 67 prefix-name = foldl append-version "" namePrefix; 68 - useDune2 = args.useDune2 or (useDune2ifVersion fetched.version); 68 + useDune = args.useDune or (useDuneifVersion fetched.version); 69 69 coqlib-flags = switch coq.coq-version [ 70 70 { case = v: versions.isLe "8.6" v && v != "dev" ; 71 71 out = [ "COQLIB=$(out)/lib/coq/${coq.coq-version}/" ]; } ··· 85 85 86 86 nativeBuildInputs = args.overrideNativeBuildInputs 87 87 or ([ which coq.ocamlPackages.findlib ] 88 - ++ optional useDune2 coq.ocamlPackages.dune_2 89 - ++ optional (useDune2 || mlPlugin) coq.ocamlPackages.ocaml 88 + ++ optional useDune coq.ocamlPackages.dune_3 89 + ++ optional (useDune || mlPlugin) coq.ocamlPackages.ocaml 90 90 ++ (args.nativeBuildInputs or []) ++ extraNativeBuildInputs); 91 91 buildInputs = args.overrideBuildInputs 92 92 or ([ coq ] ++ (args.buildInputs or []) ++ extraBuildInputs); ··· 107 107 coqlib-flags ++ docdir-flags ++ 108 108 extraInstallFlags; 109 109 }) 110 - // (optionalAttrs useDune2 { 110 + // (optionalAttrs useDune { 111 111 buildPhase = '' 112 112 runHook preBuild 113 113 dune build -p ${opam-name} ''${enableParallelBuilding:+-j $NIX_BUILD_CORES}
+16 -12
pkgs/data/fonts/ubuntu-font-family/default.nix
··· 1 - { lib, fetchzip }: 1 + { lib, stdenv, fetchzip }: 2 2 3 - fetchzip { 4 - name = "ubuntu-font-family-0.83"; 3 + stdenv.mkDerivation rec { 4 + pname = "ubuntu-font-family"; 5 + version = "0.83"; 5 6 6 - url = "https://assets.ubuntu.com/v1/fad7939b-ubuntu-font-family-0.83.zip"; 7 + src = fetchzip { 8 + url = "https://assets.ubuntu.com/v1/fad7939b-${pname}-${version}.zip"; 9 + hash = "sha256-FAg1xn8Gcbwmuvqtg9SquSet4oTT9nqE+Izeq7ZMVcA="; 10 + }; 7 11 8 - postFetch = '' 9 - mkdir -p $out/share/fonts 10 - unzip -j $downloadedFile \*.ttf -d $out/share/fonts/ubuntu 12 + installPhase = '' 13 + install -D -m 644 -t "$out/share/fonts/truetype" *.ttf 11 14 ''; 12 15 13 - sha256 = "090y665h4kf2bi623532l6wiwkwnpd0xds0jr7560xwfwys1hiqh"; 16 + outputHashMode = "recursive"; 17 + outputHash = "sha256-EEcYtOeOd2DKyRLo1kG7lk8euaFilCFMXMJNAosxHiQ="; 14 18 15 - meta = { 19 + meta = with lib; { 16 20 description = "Ubuntu Font Family"; 17 21 longDescription = "The Ubuntu typeface has been specially 18 22 created to complement the Ubuntu tone of voice. It has a 19 23 contemporary style and contains characteristics unique to 20 24 the Ubuntu brand that convey a precise, reliable and free attitude."; 21 25 homepage = "http://font.ubuntu.com/"; 22 - license = lib.licenses.free; 23 - platforms = lib.platforms.all; 24 - maintainers = [ lib.maintainers.antono ]; 26 + license = licenses.free; 27 + platforms = platforms.all; 28 + maintainers = with maintainers; [ antono ]; 25 29 }; 26 30 }
+2 -2
pkgs/desktops/gnome-2/platform/libgnomeui/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch, pkg-config, libxml2, xorg, glib, pango 1 + { lib, stdenv, fetchurl, fetchpatch, pkg-config, libxml2, xlibsWrapper, glib, pango 2 2 , intltool, libgnome, libgnomecanvas, libbonoboui, GConf, libtool 3 3 , gnome_vfs, libgnome-keyring, libglade }: 4 4 ··· 23 23 24 24 nativeBuildInputs = [ pkg-config intltool ]; 25 25 buildInputs = 26 - [ xorg.xlibsWrapper libxml2 GConf pango glib libgnome-keyring libglade libtool ]; 26 + [ xlibsWrapper libxml2 GConf pango glib libgnome-keyring libglade libtool ]; 27 27 28 28 propagatedBuildInputs = [ libgnome libbonoboui libgnomecanvas gnome_vfs ]; 29 29 }
+7 -10
pkgs/development/compilers/dale/default.nix
··· 3 3 , cmake 4 4 , pkg-config 5 5 , libffi 6 - , llvm_6 7 - , doCheck ? false 6 + , llvm_13 8 7 , perl 9 8 }: 10 9 11 10 stdenv.mkDerivation { 12 11 pname = "dale"; 13 - version = "20181024"; 12 + version = "20220411"; 14 13 15 14 src = fetchFromGitHub { 16 15 owner = "tomhrr"; 17 16 repo = "dale"; 18 - rev = "f5db8b486f4e7c423fc25941a8315f1209bc0e54"; 19 - sha256 = "0v4ajrzrqvf279kd7wsd9flrpsav57lzxlwwimk9vnfwh7xpzf9v"; 17 + rev = "7386ef2d8912c60c6fb157a1e5cd772e15eaf658"; 18 + sha256 = "sha256-LNWqrFuEjtL7zuPTBfe4qQWr8IrT/ldQWSeDTK3Wqmo="; 20 19 }; 21 20 22 - nativeBuildInputs = [ cmake pkg-config llvm_6.dev ]; 23 - buildInputs = [ libffi llvm_6 ]; 21 + nativeBuildInputs = [ cmake pkg-config llvm_13.dev ]; 22 + buildInputs = [ libffi llvm_13 ]; 24 23 25 - inherit doCheck; 26 24 checkInputs = [ perl ]; 27 25 28 26 checkTarget = "tests"; ··· 36 34 homepage = "https://github.com/tomhrr/dale"; 37 35 license = licenses.bsd3; 38 36 maintainers = with maintainers; [ amiloradovsky ]; 39 - platforms = [ "i686-linux" "x86_64-linux" ]; 37 + platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ]; 40 38 # failed on Darwin: linker couldn't find the FFI lib 41 - # failed on AArch64: because LLVM 3.5 is failed there 42 39 }; 43 40 }
+17 -4
pkgs/development/compilers/go-jsonnet/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, testers }: 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + , fetchpatch 5 + , testers 6 + }: 2 7 3 8 let self = buildGoModule rec { 4 9 pname = "go-jsonnet"; ··· 6 11 7 12 src = fetchFromGitHub { 8 13 owner = "google"; 9 - repo = "go-jsonnet"; 14 + repo = pname; 10 15 rev = "v${version}"; 11 - sha256 = "sha256-o/IjXskGaMhvQmTsAS745anGBMI2bwHf/EOEp57H8LU="; 16 + hash = "sha256-o/IjXskGaMhvQmTsAS745anGBMI2bwHf/EOEp57H8LU="; 12 17 }; 13 18 14 - vendorSha256 = "sha256-fZBhlZrLcC4xj5uvb862lBOczGnJa9CceS3D8lUhBQo="; 19 + patches = [ 20 + (fetchpatch { 21 + name = "update-x-sys-for-go-1.18-on-aarch64-darwin.patch"; 22 + url = "https://github.com/google/go-jsonnet/commit/7032dd729f7e684dcfb2574f4fe99499165ef9cb.patch"; 23 + hash = "sha256-emUcuE9Q4qkXFXLyLvLHjzrKAaQhjcSWLNafABvHxhM="; 24 + }) 25 + ]; 26 + 27 + vendorHash = "sha256-H4vLVXpuPkECB15LHoS9N9IwUD7Fzccshwbo5hjeXXc="; 15 28 16 29 doCheck = false; 17 30
+2 -2
pkgs/development/compilers/p4c/default.nix
··· 27 27 in 28 28 stdenv.mkDerivation rec { 29 29 pname = "p4c"; 30 - version = "1.2.3.1"; 30 + version = "1.2.3.2"; 31 31 32 32 src = fetchFromGitHub { 33 33 owner = "p4lang"; 34 34 repo = "p4c"; 35 35 rev = "v${version}"; 36 - sha256 = "sha256-mOswMUvr7LGN4GmczPUqNMUjs0c1Pc8SiC5k2Ou52Iw="; 36 + sha256 = "sha256-EeTYH7CsmPPBL05zJ+g4aM677n0NqDD+H40lBuKpY6M="; 37 37 fetchSubmodules = true; 38 38 }; 39 39
+1 -1
pkgs/development/coq-modules/addition-chains/default.nix
··· 19 19 20 20 propagatedBuildInputs = [ mathcomp-ssreflect mathcomp-algebra mathcomp-fingroup paramcoq ]; 21 21 22 - useDune2 = true; 22 + useDune = true; 23 23 24 24 meta = { 25 25 description = "Exponentiation algorithms following addition chains";
+1 -1
pkgs/development/coq-modules/coqide/default.nix
··· 22 22 ''; 23 23 prefixKey = "-prefix "; 24 24 25 - useDune2 = true; 25 + useDune = true; 26 26 27 27 buildInputs = [ 28 28 copyDesktopItems
+1 -1
pkgs/development/coq-modules/gaia-hydras/default.nix
··· 21 21 mathcomp-zify 22 22 ]; 23 23 24 - useDune2 = true; 24 + useDune = true; 25 25 26 26 meta = { 27 27 description = "Comparison between ordinals in Gaia and Hydra battles";
+1 -1
pkgs/development/coq-modules/hydra-battles/default.nix
··· 16 16 { case = range "8.11" "8.12"; out = "0.4"; } 17 17 ] null; 18 18 19 - useDune2 = true; 19 + useDune = true; 20 20 21 21 meta = { 22 22 description = "Exploration of some properties of Kirby and Paris' hydra battles, with the help of Coq";
+1 -1
pkgs/development/coq-modules/mathcomp-word/default.nix
··· 6 6 pname = "word"; 7 7 owner = "jasmin-lang"; 8 8 repo = "coqword"; 9 - useDune2 = true; 9 + useDune = true; 10 10 11 11 releaseRev = v: "v${v}"; 12 12
+3 -3
pkgs/development/coq-modules/multinomials/default.nix
··· 1 1 { coq, mkCoqDerivation, mathcomp, mathcomp-finmap, mathcomp-bigenough, 2 - lib, version ? null, useDune2 ? false }@args: 2 + lib, version ? null, useDune ? false }@args: 3 3 with lib; mkCoqDerivation { 4 4 5 5 namePrefix = [ "coq" "mathcomp" ]; ··· 31 31 "1.0".sha256 = "1qmbxp1h81cy3imh627pznmng0kvv37k4hrwi2faa101s6bcx55m"; 32 32 }; 33 33 34 - useDune2ifVersion = v: versions.isGe "1.5.3" v || v == "dev"; 34 + useDuneifVersion = v: versions.isGe "1.5.3" v || v == "dev"; 35 35 36 36 preConfigure = '' 37 37 patchShebangs configure || true ··· 45 45 license = licenses.cecill-c; 46 46 }; 47 47 } 48 - // optionalAttrs (args?useDune2) { inherit useDune2; } 48 + // optionalAttrs (args?useDune) { inherit useDune; }
+1 -1
pkgs/development/coq-modules/serapi/default.nix
··· 27 27 { case = isEq "8.10"; out = "8.10.0+0.7.2"; } 28 28 ] null; 29 29 30 - useDune2 = true; 30 + useDune = true; 31 31 32 32 patches = [ ./janestreet-0.15.patch ]; 33 33
+1 -1
pkgs/development/coq-modules/topology/default.nix
··· 25 25 26 26 propagatedBuildInputs = [ zorns-lemma ]; 27 27 28 - useDune2ifVersion = versions.isGe "9.0"; 28 + useDuneifVersion = versions.isGe "9.0"; 29 29 30 30 meta = { 31 31 description = "General topology in Coq";
+1 -1
pkgs/development/coq-modules/zorns-lemma/default.nix
··· 25 25 { case = "8.5"; out = "8.5.0"; } 26 26 ] null; 27 27 28 - useDune2ifVersion = versions.isGe "9.0"; 28 + useDuneifVersion = versions.isGe "9.0"; 29 29 30 30 meta = { 31 31 description = "Development of basic set theory";
+2 -2
pkgs/development/interpreters/angelscript/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "angelscript"; 10 - version = "2.35.1"; 10 + version = "2.36.0"; 11 11 12 12 src = fetchurl { 13 13 url = "https://www.angelcode.com/angelscript/sdk/files/angelscript_${version}.zip"; 14 - sha256 = "12x12fs2bjkbh73n2w84wnqhg6xn6mnp6g79gbkwfl6gssv9c42w"; 14 + sha256 = "sha256-M/lfdZe8DYiwl9NeexMg0VQZ/8V3mFHZ0qbMzsV4EbM="; 15 15 }; 16 16 17 17 nativeBuildInputs = [ unzip cmake ];
+18 -2
pkgs/development/libraries/packr/default.nix
··· 1 - { buildGoModule 1 + { stdenv 2 + , buildGoModule 2 3 , fetchFromGitHub 3 4 , lib 4 - 5 5 , symlinkJoin 6 6 }: 7 7 ··· 27 27 homepage = "https://github.com/gobuffalo/packr"; 28 28 license = licenses.mit; 29 29 maintainers = with maintainers; [ mmahut ]; 30 + 31 + # golang.org/x/sys needs to be updated due to: 32 + # 33 + # https://github.com/golang/go/issues/49219 34 + # 35 + # but this package is no longer maintained. 36 + # 37 + broken = stdenv.isDarwin; 30 38 }; 31 39 }; 32 40 p1 = buildGoModule rec { ··· 51 59 homepage = "https://github.com/gobuffalo/packr"; 52 60 license = licenses.mit; 53 61 maintainers = with maintainers; [ mmahut ]; 62 + 63 + # golang.org/x/sys needs to be updated due to: 64 + # 65 + # https://github.com/golang/go/issues/49219 66 + # 67 + # but this package is no longer maintained. 68 + # 69 + broken = stdenv.isDarwin; 54 70 }; 55 71 }; 56 72 in
+4 -2
pkgs/development/libraries/science/astronomy/indilib/default.nix
··· 6 6 , libusb1 7 7 , zlib 8 8 , boost 9 + , libev 9 10 , libnova 10 11 , curl 11 12 , libjpeg ··· 15 16 16 17 stdenv.mkDerivation rec { 17 18 pname = "indilib"; 18 - version = "1.9.6"; 19 + version = "1.9.8"; 19 20 20 21 src = fetchFromGitHub { 21 22 owner = "indilib"; 22 23 repo = "indi"; 23 24 rev = "v${version}"; 24 - sha256 = "sha256-rElxc9q4i8FjjPmLXhu6GnHps6t3NWkfxtqAAeRq77M="; 25 + sha256 = "sha256-+KFuZgM/Bl6Oezq3WXjWCHefc1wvR3wOKXejmT0pw1U="; 25 26 }; 26 27 27 28 nativeBuildInputs = [ ··· 31 32 buildInputs = [ 32 33 curl 33 34 cfitsio 35 + libev 34 36 libusb1 35 37 zlib 36 38 boost
+1 -1
pkgs/development/libraries/science/astronomy/indilib/indi-firmware.nix
··· 45 45 ]; 46 46 47 47 postPatch = '' 48 - for f in libfishcamp/CMakeLists.txt libsbig/CMakeLists.txt 48 + for f in {libfishcamp,libsbig,libqhy}/CMakeLists.txt 49 49 do 50 50 substituteInPlace $f --replace "/lib/firmware" "lib/firmware" 51 51 done
+2 -2
pkgs/development/libraries/science/astronomy/indilib/indi-full.nix
··· 1 1 { stdenv, lib, callPackage, fetchFromGitHub, indilib }: 2 2 3 3 let 4 - indi-version = "1.9.3"; 4 + indi-version = "1.9.8"; 5 5 indi-3rdparty-src = fetchFromGitHub { 6 6 owner = "indilib"; 7 7 repo = "indi-3rdparty"; 8 8 rev = "v${indi-version}"; 9 - sha256 = "sha256-TBccdheBEO48uIXd6tya6dytkzxaHg2+YancBkcL3bw="; 9 + sha256 = "sha256-ZFbMyjMvAWcdsl+1TyX5/v5nY1DqvhZ2ckFBDe8gdQg="; 10 10 }; 11 11 indi-firmware = callPackage ./indi-firmware.nix { 12 12 version = indi-version;
+2 -2
pkgs/development/libraries/simgear/default.nix
··· 4 4 , curl 5 5 }: 6 6 let 7 - version = "2020.3.13"; 7 + version = "2020.3.14"; 8 8 shortVersion = builtins.substring 0 6 version; 9 9 in 10 10 stdenv.mkDerivation rec { ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://sourceforge/flightgear/release-${shortVersion}/${pname}-${version}.tar.bz2"; 16 - sha256 = "sha256-3AmQb9qLGBD+LLIrX1Fx0gi6kBxbnTkLrW0fP9ZsUeg="; 16 + sha256 = "sha256-NbpHn1e9+TD+9/iSFBw16/CQMXYx3D/aSDhkSGdBT3Q="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ cmake ];
-13
pkgs/development/perl-modules/mod_perl2-PL_hash_seed.patch
··· 1 - From https://github.com/Perl/perl5/issues/18617#issuecomment-822056978 by Leont 2 - 3 - --- a/src/modules/perl/modperl_perl.c 4 - +++ a/src/modules/perl/modperl_perl.c 5 - @@ -268,7 +268,7 @@ 6 - #ifdef MP_NEED_HASH_SEED_FIXUP 7 - if (MP_init_hash_seed_set) { 8 - #if MP_PERL_VERSION_AT_LEAST(5, 17, 6) 9 - - memcpy(&PL_hash_seed, &MP_init_hash_seed, 10 - + memcpy(PL_hash_seed, &MP_init_hash_seed, 11 - sizeof(PL_hash_seed) > sizeof(MP_init_hash_seed) ? 12 - sizeof(MP_init_hash_seed) : sizeof(PL_hash_seed)); 13 - PL_hash_seed_set = MP_init_hash_seed_set;
+3 -3
pkgs/development/python-modules/google-cloud-logging/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "google-cloud-logging"; 22 - version = "3.2.2"; 22 + version = "3.2.3"; 23 23 format = "setuptools"; 24 24 25 - disabled = pythonOlder "3.6"; 25 + disabled = pythonOlder "3.7"; 26 26 27 27 src = fetchPypi { 28 28 inherit pname version; 29 - hash = "sha256-cZEhSRzDSe4/hGAPPCkWtbuV1oYLlNkNNPj2PZedEiA="; 29 + hash = "sha256-fWPl2SY0+NtnX70ErdiIf5B0qB/ULpuBn7py3YtSS2M="; 30 30 }; 31 31 32 32 propagatedBuildInputs = [
+4 -2
pkgs/development/python-modules/mypy/default.nix
··· 18 18 , typed-ast 19 19 , typing-extensions 20 20 , tomli 21 + , types-setuptools 21 22 , types-typed-ast 22 23 , virtualenv 23 24 }: 24 25 25 26 buildPythonPackage rec { 26 27 pname = "mypy"; 27 - version = "0.971"; 28 + version = "0.981"; 28 29 format = "pyproject"; 29 30 disabled = pythonOlder "3.7"; 30 31 ··· 32 33 owner = "python"; 33 34 repo = "mypy"; 34 35 rev = "refs/tags/v${version}"; 35 - hash = "sha256-J1lUnJco9rLYgFpJkfujGfVq1CfC4pdvvDzoan3jGkU="; 36 + hash = "sha256-CkRK/j5DRUZU2enpZtqX4l+89E7ODDG9MeRYFQp9kSs="; 36 37 }; 37 38 38 39 nativeBuildInputs = [ 39 40 setuptools 40 41 types-typed-ast 42 + types-setuptools 41 43 ]; 42 44 43 45 propagatedBuildInputs = [
+4
pkgs/development/python-modules/tensorboardx/default.nix
··· 33 33 substituteInPlace tensorboardX/pytorch_graph.py --replace \ 34 34 "torch.onnx.set_training(model, False)" \ 35 35 "torch.onnx.select_model_mode_for_export(model, torch.onnx.TrainingMode.EVAL)" 36 + 37 + # Version detection seems broken here, the version reported by python is 38 + # newer than the protobuf package itself. 39 + sed -i -e "s/'protobuf[^']*'/'protobuf'/" setup.py 36 40 ''; 37 41 38 42 # Wanted protobuf version is mentioned here:
+35 -28
pkgs/development/tools/devpi-server/default.nix
··· 1 - { lib, fetchFromGitHub, python3, nginx }: 1 + { lib, fetchFromGitHub, buildPythonApplication, isPy27 2 + , aiohttp 3 + , appdirs 4 + , beautifulsoup4 5 + , defusedxml 6 + , devpi-common 7 + , execnet 8 + , itsdangerous 9 + , nginx 10 + , packaging 11 + , passlib 12 + , platformdirs 13 + , pluggy 14 + , pyramid 15 + , pytest-flake8 16 + , pytestCheckHook 17 + , repoze_lru 18 + , setuptools 19 + , strictyaml 20 + , waitress 21 + , webtest 22 + }: 2 23 3 - let 4 - py = python3.override { 5 - packageOverrides = self: super: { 6 - # pyramid 2.0 no longer has a 'pyramid.compat' module 7 - pyramid = super.pyramid.overridePythonAttrs (oldAttrs: rec { 8 - version = "1.10.8"; 9 - src = oldAttrs.src.override { 10 - inherit version; 11 - sha256 = "sha256-t81mWVvvkvgXZLl23d4rL6jk9fMl4C9l9ux/NwiynPY="; 12 - }; 13 - }); 14 - }; 15 - }; 16 24 17 - in with py.pkgs; 18 25 buildPythonApplication rec { 19 26 pname = "devpi-server"; 20 - version = "6.2.0"; 27 + version = "6.7.0"; 28 + 29 + disabled = isPy27; 21 30 22 31 src = fetchFromGitHub { 23 32 owner = "devpi"; 24 33 repo = "devpi"; 25 - rev = "68ee291ef29a93f6d921d4927aec8d13919b4a4c"; 26 - sha256 = "1ivd5dy9f2gq07w8n2gywa0n0d9wv8644l53ni9fz7i69jf8q2fm"; 34 + rev = "server-${version}"; 35 + hash = "sha256-tevQ/Ocusz2PythGnedP6r4xARgetVosAc8uTD49H3M="; 27 36 }; 28 37 29 38 sourceRoot = "source/server"; 30 39 31 - postPatch = '' 32 - substituteInPlace setup.py \ 33 - --replace "pluggy>=0.6.0,<1.0" "pluggy>=0.6.0,<2.0" 34 - ''; 35 - 36 40 propagatedBuildInputs = [ 37 - py 41 + aiohttp 38 42 appdirs 39 - devpi-common 40 43 defusedxml 44 + devpi-common 41 45 execnet 42 46 itsdangerous 43 - repoze_lru 47 + packaging 44 48 passlib 49 + platformdirs 45 50 pluggy 46 51 pyramid 52 + repoze_lru 53 + setuptools 47 54 strictyaml 48 55 waitress 49 56 ] ++ passlib.optional-dependencies.argon2; ··· 51 58 checkInputs = [ 52 59 beautifulsoup4 53 60 nginx 61 + pytest-flake8 54 62 pytestCheckHook 55 - pytest-flake8 56 63 webtest 57 - ] ++ lib.optionals isPy27 [ mock ]; 64 + ]; 58 65 59 66 # root_passwd_hash tries to write to store 60 67 # TestMirrorIndexThings tries to write to /var through ngnix
+22
pkgs/development/tools/fblog/default.nix
··· 1 + { lib, rustPlatform, fetchFromGitHub }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "fblog"; 5 + version = "4.1.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "brocode"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "1lj0cv1rmcqg36rxnnjh1dazn0sdggfc9kigjg3id6h0y8k7d9b3"; 12 + }; 13 + 14 + cargoSha256 = "sha256-xHvnxRPxe09EmxUK9j7+V2AA1xJFP3ibwbkSs3FBgcw="; 15 + 16 + meta = with lib; { 17 + description = "A small command-line JSON log viewer"; 18 + homepage = "https://github.com/brocode/fblog"; 19 + license = licenses.wtfpl; 20 + maintainers = with maintainers; [ figsoda ]; 21 + }; 22 + }
+3 -3
pkgs/development/tools/rust/cargo-public-api/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "cargo-public-api"; 11 - version = "0.19.0"; 11 + version = "0.20.0"; 12 12 13 13 src = fetchCrate { 14 14 inherit pname version; 15 - sha256 = "sha256-gtqPt59jA4NhbaE9ij45oFEaAJ+l984lWEjloQtBSSE="; 15 + sha256 = "sha256-59A3RPdltDfMDPTFbBHcnJoFEp718xvYgg6v4MvsxaQ="; 16 16 }; 17 17 18 - cargoSha256 = "sha256-j0bsuu+A5oCf+0pFM4PAQ3oqq9POc5rrzt5UR0RDnAw="; 18 + cargoSha256 = "sha256-GEttxHtdOYMijv1xxK7U0d8WNwJcpqJNgDYKgCV/zVw="; 19 19 20 20 nativeBuildInputs = [ pkg-config ]; 21 21
+2 -7
pkgs/servers/http/apache-modules/mod_perl/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "mod_perl"; 5 - version = "2.0.11"; 5 + version = "2.0.12"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://apache/perl/${pname}-${version}.tar.gz"; 9 - sha256 = "0x3gq4nz96y202cymgrf56n8spm7bffkd1p74dh9q3zrrlc9wana"; 9 + sha256 = "sha256-9bghtZsP3JZw5G7Q/PMtiRHyUSYYmotowWUvkiHu4mk="; 10 10 }; 11 - 12 - patches = [ 13 - # Fix build on perl-5.34.0, https://github.com/Perl/perl5/issues/18617 14 - ../../../../development/perl-modules/mod_perl2-PL_hash_seed.patch 15 - ]; 16 11 17 12 buildInputs = [ apacheHttpd perl ]; 18 13 buildPhase = ''
+2 -2
pkgs/servers/http/darkhttpd/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "darkhttpd"; 8 - version = "1.13"; 8 + version = "1.14"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "emikulic"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "0w11xq160q9yyffv4mw9ncp1n0dl50d9plmwxb0yijaaxls9i4sk"; 14 + sha256 = "sha256-J/tjT3Rfhk5++jbmLBrZu9O4GgTBqeycuz82NliCBxw="; 15 15 }; 16 16 17 17 enableParallelBuilding = true;
+3 -3
pkgs/servers/monitoring/grafana-agent/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "grafana-agent"; 5 - version = "0.24.1"; 5 + version = "0.25.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 rev = "v${version}"; 9 9 owner = "grafana"; 10 10 repo = "agent"; 11 - sha256 = "sha256-WxULVtqKxYXMWNY4l0wvTkqcDkPrlHcS70NgQhe8nzU="; 11 + sha256 = "sha256-VbcWYH3eSKfYlSoN9HpxvhtvW36M1aYn9nLDfEbIzTY="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-hdo8uiVJAMMPo1N8kLDFPSbyTr5WxNKtq8E7pj6Plak="; 14 + vendorSha256 = "sha256-VFTz9+nf4qH8bbFijpT1uIHSAhJy/aMMlIjkvnzzAD4="; 15 15 16 16 tags = [ 17 17 "nonetwork"
+2 -2
pkgs/servers/pulseaudio/default.nix
··· 1 1 { lib, stdenv, fetchurl, fetchpatch, pkg-config 2 2 , libsndfile, libtool, makeWrapper, perlPackages 3 - , xorg, libcap, alsa-lib, glib, dconf 3 + , xlibsWrapper, xorg, libcap, alsa-lib, glib, dconf 4 4 , avahi, libjack2, libasyncns, lirc, dbus 5 5 , sbc, bluez5, udev, openssl, fftwFloat 6 6 , soxr, speexdsp, systemd, webrtc-audio-processing ··· 76 76 ++ lib.optionals (!libOnly) ( 77 77 [ libasyncns webrtc-audio-processing ] 78 78 ++ lib.optional jackaudioSupport libjack2 79 - ++ lib.optionals x11Support [ xorg.xlibsWrapper xorg.libXtst xorg.libXi ] 79 + ++ lib.optionals x11Support [ xlibsWrapper xorg.libXtst xorg.libXi ] 80 80 ++ lib.optional useSystemd systemd 81 81 ++ lib.optionals stdenv.isLinux [ alsa-lib udev ] 82 82 ++ lib.optional airtunesSupport openssl
+17
pkgs/servers/squid/default.nix
··· 1 1 { lib, stdenv, fetchurl, perl, openldap, pam, db, cyrus_sasl, libcap 2 2 , expat, libxml2, openssl, pkg-config, systemd 3 + , cppunit 3 4 }: 4 5 5 6 stdenv.mkDerivation rec { ··· 31 32 "--enable-htcp" 32 33 ] ++ lib.optional (stdenv.isLinux && !stdenv.hostPlatform.isMusl) 33 34 "--enable-linux-netfilter"; 35 + 36 + doCheck = true; 37 + checkInputs = [ cppunit ]; 38 + preCheck = '' 39 + # tests attempt to copy around "/bin/true" to make some things 40 + # no-ops but this doesn't work if our "true" is a multi-call 41 + # binary, so make our own fake "true" which will work when used 42 + # this way 43 + echo "#!$SHELL" > fake-true 44 + chmod +x fake-true 45 + grep -rlF '/bin/true' test-suite/ | while read -r filename ; do 46 + substituteInPlace "$filename" \ 47 + --replace "$(type -P true)" "$(realpath fake-true)" \ 48 + --replace "/bin/true" "$(realpath fake-true)" 49 + done 50 + ''; 34 51 35 52 meta = with lib; { 36 53 description = "A caching proxy for the Web supporting HTTP, HTTPS, FTP, and more";
+470 -303
pkgs/tools/admin/google-cloud-sdk/components.json
··· 5 5 "checksum": "5a65179c291bc480696ca323d2f8c4874985458303eff8f233e16cdca4e88e6f", 6 6 "contents_checksum": "038c999c7a7d70d5133eab7dc5868c4c3d0358431dad250f9833306af63016c8", 7 7 "size": 800, 8 - "source": "components/google-cloud-sdk-alpha-20220826172526.tar.gz", 8 + "source": "components/google-cloud-sdk-alpha-20220923141408.tar.gz", 9 9 "type": "tar" 10 10 }, 11 11 "dependencies": [ ··· 22 22 "platform": {}, 23 23 "platform_required": false, 24 24 "version": { 25 - "build_number": 20220826172526, 26 - "version_string": "2022.08.26" 25 + "build_number": 20220923141408, 26 + "version_string": "2022.09.23" 27 27 } 28 28 }, 29 29 { ··· 56 56 "platform_required": false, 57 57 "version": { 58 58 "build_number": 0, 59 - "version_string": "1.4.3" 59 + "version_string": "1.4.4" 60 60 } 61 61 }, 62 62 { 63 63 "data": { 64 - "checksum": "9a11f7c85ffff2fd7ad4946b5c1ea97a1162e687b559244ee21228c8154d90dd", 65 - "contents_checksum": "2cd31930d0f1326c8f3e0be44bb9ab3c5335ed38c170090f7105ba7accccb4a1", 66 - "size": 19054806, 67 - "source": "components/google-cloud-sdk-anthos-auth-darwin-arm-20220729144039.tar.gz", 64 + "checksum": "f197d04a40be89731ecd7a653f83900dcc4dcd84e54e0833c529f9f8dfa4395c", 65 + "contents_checksum": "fa1d4910c1ce188c5c450d655c5d15e59a146364ec46e3fda0791db76c2edd17", 66 + "size": 20108065, 67 + "source": "components/google-cloud-sdk-anthos-auth-darwin-arm-20220923141408.tar.gz", 68 68 "type": "tar" 69 69 }, 70 70 "dependencies": [ ··· 88 88 }, 89 89 "platform_required": false, 90 90 "version": { 91 - "build_number": 20220729144039, 92 - "version_string": "1.4.3" 91 + "build_number": 20220923141408, 92 + "version_string": "1.4.4" 93 93 } 94 94 }, 95 95 { 96 96 "data": { 97 - "checksum": "e04c7143047fd26430e26e3e67fa1768413d8ed1d6e014a0d96c6075559ce3aa", 98 - "contents_checksum": "f7b242bfa64f2c78d388ce361a829f6d0bfd53e8f0fabfc6b4b14fa6e3ef4682", 99 - "size": 19911349, 100 - "source": "components/google-cloud-sdk-anthos-auth-darwin-x86_64-20220729144039.tar.gz", 97 + "checksum": "5417a11523868f36d6b7c3199e3029cf9f43c8cb99c57dba016942db4141c939", 98 + "contents_checksum": "06a661642cbd20bcb9965c7a4b505d4d72944c48c30b8ada71db7e53c898d505", 99 + "size": 21183974, 100 + "source": "components/google-cloud-sdk-anthos-auth-darwin-x86_64-20220923141408.tar.gz", 101 101 "type": "tar" 102 102 }, 103 103 "dependencies": [ ··· 121 121 }, 122 122 "platform_required": false, 123 123 "version": { 124 - "build_number": 20220729144039, 125 - "version_string": "1.4.3" 124 + "build_number": 20220923141408, 125 + "version_string": "1.4.4" 126 126 } 127 127 }, 128 128 { 129 129 "data": { 130 - "checksum": "030fa3615f5a7833a642047bdf531936c8d8fa827f5dbc44384de1a9e85df254", 131 - "contents_checksum": "5119864e84d03d45dc0c00713072a8c34ecf95f18ac4633c938b581dbad86a28", 132 - "size": 18716150, 133 - "source": "components/google-cloud-sdk-anthos-auth-linux-arm-20220729144039.tar.gz", 130 + "checksum": "c9dee264071d169de081880019f2f6fdb14edc22cbd20c19de76bb7cfa196eae", 131 + "contents_checksum": "80ae98f1bfd1bd5cce9cddd642a1505d5401908d8890a22afa723490132b4342", 132 + "size": 19755666, 133 + "source": "components/google-cloud-sdk-anthos-auth-linux-arm-20220923141408.tar.gz", 134 134 "type": "tar" 135 135 }, 136 136 "dependencies": [ ··· 154 154 }, 155 155 "platform_required": false, 156 156 "version": { 157 - "build_number": 20220729144039, 158 - "version_string": "1.4.3" 157 + "build_number": 20220923141408, 158 + "version_string": "1.4.4" 159 159 } 160 160 }, 161 161 { 162 162 "data": { 163 - "checksum": "b3377c443f135a112ace343bb6ab6c20bf763e29512947f95bb239a381ee9b86", 164 - "contents_checksum": "4543d98cd25e05c6bfb9e36d89b7b34a226218e5ce3feee07276377fde8f5967", 165 - "size": 20095013, 166 - "source": "components/google-cloud-sdk-anthos-auth-linux-x86_64-20220729144039.tar.gz", 163 + "checksum": "b5efe7e9cd17f44905186242e663b97734183e14c66daed35553bc59bbf07a3a", 164 + "contents_checksum": "57b753ecbde456973bed97af69aa7d1696694c1d30e9756d57658f79689fd925", 165 + "size": 21362894, 166 + "source": "components/google-cloud-sdk-anthos-auth-linux-x86_64-20220923141408.tar.gz", 167 167 "type": "tar" 168 168 }, 169 169 "dependencies": [ ··· 187 187 }, 188 188 "platform_required": false, 189 189 "version": { 190 - "build_number": 20220729144039, 191 - "version_string": "1.4.3" 190 + "build_number": 20220923141408, 191 + "version_string": "1.4.4" 192 192 } 193 193 }, 194 194 { 195 195 "data": { 196 - "checksum": "29c9c078662d94e48a601c2916ca9030e0d81f8f442e3e11a654c90ff0816838", 197 - "contents_checksum": "78662933c423257a0aaafd07a1bcbf1eed864015a5e42ffbfb0d4caa30d9b5f0", 198 - "size": 20093409, 199 - "source": "components/google-cloud-sdk-anthos-auth-windows-x86_64-20220729144039.tar.gz", 196 + "checksum": "ab73e4c82e95a7b707f2298906a7a5fb9a2c1fe741c4584ab16e507bcf7b6d5b", 197 + "contents_checksum": "38d10a97aa0e5fbf2c927acda1c853c25a2b729615bebd2ac8fce4eb77c2466a", 198 + "size": 21470866, 199 + "source": "components/google-cloud-sdk-anthos-auth-windows-x86_64-20220923141408.tar.gz", 200 200 "type": "tar" 201 201 }, 202 202 "dependencies": [ ··· 220 220 }, 221 221 "platform_required": false, 222 222 "version": { 223 - "build_number": 20220729144039, 224 - "version_string": "1.4.3" 223 + "build_number": 20220923141408, 224 + "version_string": "1.4.4" 225 225 } 226 226 }, 227 227 { ··· 1020 1020 }, 1021 1021 { 1022 1022 "data": { 1023 - "checksum": "e650804080d747f02c46b8b96d7e47aaa1aeed762da10725a558a3c9226f57b4", 1024 - "contents_checksum": "6c4ec2d67682d146f06aaddaafd1f568b3aacba413f0fd42b83cf41e1c8616ed", 1025 - "size": 53827944, 1026 - "source": "components/google-cloud-sdk-app-engine-java-20220819155753.tar.gz", 1023 + "checksum": "f4aebdd247726881bb16c12d2b33ff09574282653ec6a39c6dfd41508351ed8d", 1024 + "contents_checksum": "8a2e935650c2dbc309e1f6fa72ec964fb80bfc2f8fa5164916fcce00dbc7eb47", 1025 + "size": 76738516, 1026 + "source": "components/google-cloud-sdk-app-engine-java-20220923141408.tar.gz", 1027 1027 "type": "tar" 1028 1028 }, 1029 1029 "dependencies": [ ··· 1041 1041 "platform": {}, 1042 1042 "platform_required": false, 1043 1043 "version": { 1044 - "build_number": 20220819155753, 1045 - "version_string": "1.9.98.1" 1044 + "build_number": 20220923141408, 1045 + "version_string": "2.0.8" 1046 1046 } 1047 1047 }, 1048 1048 { ··· 1432 1432 "checksum": "707d412854a14450b4fddee199d258e75946fe51b44eb2980c8cd7e274c15760", 1433 1433 "contents_checksum": "0b4e9d8e6394dc841aece07ca4da91920a460cbd7ec22495be4a2b4f46635b4d", 1434 1434 "size": 797, 1435 - "source": "components/google-cloud-sdk-beta-20220826172526.tar.gz", 1435 + "source": "components/google-cloud-sdk-beta-20220923141408.tar.gz", 1436 1436 "type": "tar" 1437 1437 }, 1438 1438 "dependencies": [ ··· 1449 1449 "platform": {}, 1450 1450 "platform_required": false, 1451 1451 "version": { 1452 - "build_number": 20220826172526, 1453 - "version_string": "2022.08.26" 1452 + "build_number": 20220923141408, 1453 + "version_string": "2022.09.23" 1454 1454 } 1455 1455 }, 1456 1456 { ··· 1765 1765 }, 1766 1766 { 1767 1767 "data": { 1768 - "checksum": "81e8b301e5f04c691ccc32b422bd5b515f58a83c61ffcc02eb0f727368ab74af", 1769 - "contents_checksum": "de1b4b7eb575cc2af80471030289edae18d4fbdda140df61864c4f85ec97f656", 1770 - "size": 1649904, 1771 - "source": "components/google-cloud-sdk-bq-20220826172526.tar.gz", 1768 + "checksum": "32c61f28a7ca91e20d33e5bb69df23a4e0d845583e77e7d2eaa2fd4443c6d573", 1769 + "contents_checksum": "f9a4cd505db656f70848c44b3c7198c06543bdcaffe5168b0af2ca868e909750", 1770 + "size": 1660964, 1771 + "source": "components/google-cloud-sdk-bq-20220923141408.tar.gz", 1772 1772 "type": "tar" 1773 1773 }, 1774 1774 "dependencies": [ ··· 1787 1787 "platform": {}, 1788 1788 "platform_required": false, 1789 1789 "version": { 1790 - "build_number": 20220826172526, 1791 - "version_string": "2.0.75" 1790 + "build_number": 20220923141408, 1791 + "version_string": "2.0.78" 1792 1792 } 1793 1793 }, 1794 1794 { 1795 1795 "data": { 1796 - "checksum": "31be1877239d6dcb9113966dbeea4ff62f2526f0e39a860c34f141a150ef78c5", 1797 - "contents_checksum": "73f7b6b5d91c4b7ec7cd49116af97ac4e806c983850dadf9ac5b9c5364068d78", 1798 - "size": 1816, 1799 - "source": "components/google-cloud-sdk-bq-nix-20220805142045.tar.gz", 1796 + "checksum": "f1417d278b3814ed9e70fa6af25835a18228a10dca6482a91bf650584463e7d8", 1797 + "contents_checksum": "c27a1e54bd9a2e2a7005fc771294fadd88850b3f7f69ee9bc239a1468eb0f79b", 1798 + "size": 1837, 1799 + "source": "components/google-cloud-sdk-bq-nix-20220920185015.tar.gz", 1800 1800 "type": "tar" 1801 1801 }, 1802 1802 "dependencies": [ ··· 1821 1821 }, 1822 1822 "platform_required": false, 1823 1823 "version": { 1824 - "build_number": 20220805142045, 1825 - "version_string": "2.0.75" 1824 + "build_number": 20220920185015, 1825 + "version_string": "2.0.77" 1826 1826 } 1827 1827 }, 1828 1828 { ··· 2818 2818 "platform_required": false, 2819 2819 "version": { 2820 2820 "build_number": 0, 2821 - "version_string": "1.4.3" 2821 + "version_string": "1.4.5" 2822 2822 } 2823 2823 }, 2824 2824 { 2825 2825 "data": { 2826 - "checksum": "70917c386da1adc19e650b58285b73e5c0ae487748b926edb68e506f3be27c33", 2827 - "contents_checksum": "78a0616222d1caca2dae4ccec6f0f030af2c70b49b2369b002bfbe265b6e5399", 2828 - "size": 28519205, 2829 - "source": "components/google-cloud-sdk-cloud-spanner-emulator-linux-x86_64-20220719210002.tar.gz", 2826 + "checksum": "f2e205c542b4ec2225791878a7fc350b33118b4d42183ca1103f0e392593a8e4", 2827 + "contents_checksum": "8101181c7cff6d3ffb98d2cc209f151dfc64944470957161129740ca1c9b00e2", 2828 + "size": 29784440, 2829 + "source": "components/google-cloud-sdk-cloud-spanner-emulator-linux-x86_64-20220923141408.tar.gz", 2830 2830 "type": "tar" 2831 2831 }, 2832 2832 "dependencies": [ ··· 2851 2851 }, 2852 2852 "platform_required": false, 2853 2853 "version": { 2854 - "build_number": 20220719210002, 2855 - "version_string": "1.4.3" 2854 + "build_number": 20220923141408, 2855 + "version_string": "1.4.5" 2856 2856 } 2857 2857 }, 2858 2858 { ··· 3152 3152 "platform_required": false, 3153 3153 "version": { 3154 3154 "build_number": 0, 3155 - "version_string": "1.92.0" 3155 + "version_string": "1.93.0" 3156 3156 } 3157 3157 }, 3158 3158 { 3159 3159 "data": { 3160 - "checksum": "e69ad0ad6158e75c1a5e50cbd6e47712ae1333466e98fa0e38360388a7741397", 3161 - "contents_checksum": "887b9e9f94fb330ce38b71e63563b43a2b3625090ca97df01c395f1a170f1f0b", 3162 - "size": 58031942, 3163 - "source": "components/google-cloud-sdk-config-connector-darwin-arm-20220826172526.tar.gz", 3160 + "checksum": "dd20420980225726c0bb881fdcfb935bf8d25aad84f0bb315e4d5b0ce51cf0fa", 3161 + "contents_checksum": "8dc4d4419a866c0aaa33fd0d4e0fde885aa926dcf9b8025a580e060b916ca599", 3162 + "size": 58308273, 3163 + "source": "components/google-cloud-sdk-config-connector-darwin-arm-20220912133630.tar.gz", 3164 3164 "type": "tar" 3165 3165 }, 3166 3166 "dependencies": [ ··· 3184 3184 }, 3185 3185 "platform_required": false, 3186 3186 "version": { 3187 - "build_number": 20220826172526, 3188 - "version_string": "1.92.0" 3187 + "build_number": 20220912133630, 3188 + "version_string": "1.93.0" 3189 3189 } 3190 3190 }, 3191 3191 { 3192 3192 "data": { 3193 - "checksum": "9bd57dfb4397c571345f275ade22db8bfbf0c7ce1f0766be04033a8d5108d129", 3194 - "contents_checksum": "e03b352e55adc4f2e70452569f3513e8661cb309cffd804f670c42c8d11b90e7", 3195 - "size": 59628145, 3196 - "source": "components/google-cloud-sdk-config-connector-darwin-x86_64-20220826172526.tar.gz", 3193 + "checksum": "541307135cc5c06430cf1368a5a6f9dfe050031aedf1b7e7497362505f81074b", 3194 + "contents_checksum": "d234dc236ff1c4d88fb4caebd61955df9d3ee5b3db094472dce64f031d646e97", 3195 + "size": 59915703, 3196 + "source": "components/google-cloud-sdk-config-connector-darwin-x86_64-20220912133630.tar.gz", 3197 3197 "type": "tar" 3198 3198 }, 3199 3199 "dependencies": [ ··· 3217 3217 }, 3218 3218 "platform_required": false, 3219 3219 "version": { 3220 - "build_number": 20220826172526, 3221 - "version_string": "1.92.0" 3220 + "build_number": 20220912133630, 3221 + "version_string": "1.93.0" 3222 3222 } 3223 3223 }, 3224 3224 { 3225 3225 "data": { 3226 - "checksum": "6819e1c06d7cee23dee7f278908a2ade370fd3c862c0c3f975d368e6e4face8d", 3227 - "contents_checksum": "b4f2a75282db97fd5a04fee33d770588ec86e914bb1ac7ef65cabc33c48b028f", 3228 - "size": 54427844, 3229 - "source": "components/google-cloud-sdk-config-connector-linux-arm-20220826172526.tar.gz", 3226 + "checksum": "693e9b1fdb2b8958388dca7abc405891d481c5973a5a622da8fa54920114af2c", 3227 + "contents_checksum": "b29263faa92ec2b3a2780f837c14d991c570914d7a9df10940325fab9e6cbe4d", 3228 + "size": 54695578, 3229 + "source": "components/google-cloud-sdk-config-connector-linux-arm-20220912133630.tar.gz", 3230 3230 "type": "tar" 3231 3231 }, 3232 3232 "dependencies": [ ··· 3250 3250 }, 3251 3251 "platform_required": false, 3252 3252 "version": { 3253 - "build_number": 20220826172526, 3254 - "version_string": "1.92.0" 3253 + "build_number": 20220912133630, 3254 + "version_string": "1.93.0" 3255 3255 } 3256 3256 }, 3257 3257 { 3258 3258 "data": { 3259 - "checksum": "16fbc19aa9b3b8d8d9ddffc346f6d7ffe7d20d1ea8a6e3f3f9bab43b2d6e0a11", 3260 - "contents_checksum": "d40df11cbe34f661b57f9743c7c9bef8a43232ea3b37568debe1fdc5a3c4ab51", 3261 - "size": 59183027, 3262 - "source": "components/google-cloud-sdk-config-connector-linux-x86_64-20220826172526.tar.gz", 3259 + "checksum": "62babd72829ff1e9c0ee92ee5fcf0052b19780ff028014871ab73d34aeff4021", 3260 + "contents_checksum": "29127a962616825f78276a0143a3b75239c66d7df4f582aee85b3801e9590a8d", 3261 + "size": 59462846, 3262 + "source": "components/google-cloud-sdk-config-connector-linux-x86_64-20220912133630.tar.gz", 3263 3263 "type": "tar" 3264 3264 }, 3265 3265 "dependencies": [ ··· 3283 3283 }, 3284 3284 "platform_required": false, 3285 3285 "version": { 3286 - "build_number": 20220826172526, 3287 - "version_string": "1.92.0" 3286 + "build_number": 20220912133630, 3287 + "version_string": "1.93.0" 3288 3288 } 3289 3289 }, 3290 3290 { 3291 3291 "data": { 3292 - "checksum": "fe8328a8e56d137d50b2db1ddadb5db24fa1b2ce940373556f98d918f2e94f57", 3293 - "contents_checksum": "1ab0f32fc5cb49579dcd8fa5cdfd525fada6f67817d364a277908c3bac80c963", 3294 - "size": 59356188, 3295 - "source": "components/google-cloud-sdk-config-connector-windows-x86_64-20220826172526.tar.gz", 3292 + "checksum": "e2b541bcbbfcdcd359bc828c7d51538cda3ef0fc4f90ad7ca274792b643bd74f", 3293 + "contents_checksum": "5221ebb5c2a0cc2c8752806c680382f21366c87cda41f5aa0e009da0d73e9bce", 3294 + "size": 59649780, 3295 + "source": "components/google-cloud-sdk-config-connector-windows-x86_64-20220912133630.tar.gz", 3296 3296 "type": "tar" 3297 3297 }, 3298 3298 "dependencies": [ ··· 3316 3316 }, 3317 3317 "platform_required": false, 3318 3318 "version": { 3319 - "build_number": 20220826172526, 3320 - "version_string": "1.92.0" 3319 + "build_number": 20220912133630, 3320 + "version_string": "1.93.0" 3321 3321 } 3322 3322 }, 3323 3323 { 3324 3324 "data": { 3325 - "checksum": "67ea11d36e9538cab9ca073ba009e4f4d8bdc74e27417b0833ce49042a268b31", 3326 - "contents_checksum": "513f4f9f2de029c8056b85991065c9cc55a94244d54dab53427ab86d782a22ed", 3327 - "size": 25728101, 3328 - "source": "components/google-cloud-sdk-core-20220826172526.tar.gz", 3325 + "checksum": "9f400edfce1cdaed0c64868bf07c766a37c16586b8c562d1e4998b718779c736", 3326 + "contents_checksum": "1e78cf08ebac768823adaf54ad0079cc22c75da881f34d09f9fb8f9e81ddcce2", 3327 + "size": 26095678, 3328 + "source": "components/google-cloud-sdk-core-20220923141408.tar.gz", 3329 3329 "type": "tar" 3330 3330 }, 3331 3331 "dependencies": [ 3332 + "bundled-python3-unix", 3332 3333 "core-nix", 3333 3334 "core-win", 3334 3335 "gcloud-deps", ··· 3345 3346 "platform": {}, 3346 3347 "platform_required": false, 3347 3348 "version": { 3348 - "build_number": 20220826172526, 3349 - "version_string": "2022.08.26" 3349 + "build_number": 20220923141408, 3350 + "version_string": "2022.09.23" 3350 3351 } 3351 3352 }, 3352 3353 { 3353 3354 "data": { 3354 - "checksum": "8b588bd281f23c083d797c5144da4f856edf23c86131efbabc8ab389ce740fdc", 3355 - "contents_checksum": "8f1c24d273122da4020ac2106e439187e5d1d2769c75ccff72359fd4e892746f", 3356 - "size": 2202, 3357 - "source": "components/google-cloud-sdk-core-nix-20220805142045.tar.gz", 3355 + "checksum": "6db75a8f57486ed49afbd2866643bd21e77e08aa7aaf04bd9ee1713acad7b3bf", 3356 + "contents_checksum": "5ab83e0028ef523ae3eab59b05b6f2f3d340be750385dc66bd1127c75d7a6d4b", 3357 + "size": 2221, 3358 + "source": "components/google-cloud-sdk-core-nix-20220920185015.tar.gz", 3358 3359 "type": "tar" 3359 3360 }, 3360 3361 "dependencies": [ 3362 + "bundled-python3-unix", 3361 3363 "core", 3362 3364 "gcloud-deps", 3363 3365 "ssh-tools" ··· 3380 3382 }, 3381 3383 "platform_required": false, 3382 3384 "version": { 3383 - "build_number": 20220805142045, 3384 - "version_string": "2022.08.05" 3385 + "build_number": 20220920185015, 3386 + "version_string": "2022.09.20" 3385 3387 } 3386 3388 }, 3387 3389 { ··· 3393 3395 "type": "tar" 3394 3396 }, 3395 3397 "dependencies": [ 3398 + "bundled-python3-unix", 3396 3399 "core", 3397 3400 "gcloud-deps", 3398 3401 "ssh-tools" ··· 3449 3452 }, 3450 3453 { 3451 3454 "data": { 3452 - "checksum": "ede6475214e26c5237656f3381b267609bb1470303bea118bd4d85025105da25", 3453 - "contents_checksum": "e15062374974a0b422807965f10d3599cfe3caf0643d62aee2d0cc5e46bc96cf", 3454 - "size": 1832, 3455 - "source": "components/google-cloud-sdk-datalab-nix-20220805142045.tar.gz", 3455 + "checksum": "6afdc65013c2389a52d6b8b6c7ea043b19822f31a6d3bf696e128a9bd3f8fd61", 3456 + "contents_checksum": "3fb8b295ae8fecb0ea685d8f6acd1cd9517f26b037a343767b21fd48ec84edc1", 3457 + "size": 1854, 3458 + "source": "components/google-cloud-sdk-datalab-nix-20220920185015.tar.gz", 3456 3459 "type": "tar" 3457 3460 }, 3458 3461 "dependencies": [ ··· 3480 3483 }, 3481 3484 "platform_required": false, 3482 3485 "version": { 3483 - "build_number": 20220805142045, 3486 + "build_number": 20220920185015, 3484 3487 "version_string": "20190610" 3485 3488 } 3486 3489 }, ··· 3807 3810 { 3808 3811 "dependencies": [ 3809 3812 "gcloud-crc32c-darwin-arm", 3810 - "gcloud-crc32c-darwin-x86", 3811 3813 "gcloud-crc32c-darwin-x86_64", 3812 3814 "gcloud-crc32c-linux-arm", 3813 3815 "gcloud-crc32c-linux-x86", ··· 3876 3878 }, 3877 3879 { 3878 3880 "data": { 3879 - "checksum": "1921da0b8ce346094cf85d30c76fe8dcdc49a2c1a7024e2b92fc921f1e8f4ae6", 3880 - "contents_checksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", 3881 - "size": 104, 3882 - "source": "components/google-cloud-sdk-gcloud-crc32c-darwin-x86-20220729144039.tar.gz", 3883 - "type": "tar" 3884 - }, 3885 - "dependencies": [ 3886 - "gcloud-crc32c" 3887 - ], 3888 - "details": { 3889 - "description": "Command line tool that calculates CRC32C hashes on local files.", 3890 - "display_name": "Google Cloud CRC32C Hash Tool" 3891 - }, 3892 - "id": "gcloud-crc32c-darwin-x86", 3893 - "is_configuration": false, 3894 - "is_hidden": true, 3895 - "is_required": false, 3896 - "platform": { 3897 - "architectures": [ 3898 - "x86" 3899 - ], 3900 - "operating_systems": [ 3901 - "MACOSX" 3902 - ] 3903 - }, 3904 - "platform_required": false, 3905 - "version": { 3906 - "build_number": 20220729144039, 3907 - "version_string": "1.0.0" 3908 - } 3909 - }, 3910 - { 3911 - "data": { 3912 3881 "checksum": "766f6271d8ad1de1b2b803e7aca680abc445344e30dbb448ead0b98b041ad70a", 3913 3882 "contents_checksum": "b8e4eee009bbb6e2d521353569e20f32a66a9f5decd79915baee05eb64b2ac1a", 3914 3883 "size": 1250758, ··· 4107 4076 }, 4108 4077 { 4109 4078 "data": { 4110 - "checksum": "ecc87f105076886c96fa5c3fa0a585c02dad5fc1ee7b3057c77d7734345a89ed", 4111 - "contents_checksum": "70e95c8c5184e7f15e8806f70d450dec7f5dd34b93254128a3505e78fdaeb0d5", 4112 - "size": 11787976, 4113 - "source": "components/google-cloud-sdk-gcloud-deps-20220819155753.tar.gz", 4079 + "checksum": "2ed9abf269d41558e85a748916225d14eb9a61ad3fa181b1c644a2d53219941b", 4080 + "contents_checksum": "7d0c3959b707eedc156cbdb6d6e1b2e75a69637d5efc36268639f9addf73c626", 4081 + "size": 11801890, 4082 + "source": "components/google-cloud-sdk-gcloud-deps-20220912133630.tar.gz", 4114 4083 "type": "tar" 4115 4084 }, 4116 4085 "dependencies": [ ··· 4133 4102 "platform": {}, 4134 4103 "platform_required": false, 4135 4104 "version": { 4136 - "build_number": 20220819155753, 4137 - "version_string": "2022.08.19" 4105 + "build_number": 20220912133630, 4106 + "version_string": "2022.09.12" 4138 4107 } 4139 4108 }, 4140 4109 { ··· 4370 4339 }, 4371 4340 { 4372 4341 "data": { 4373 - "checksum": "51bdccd26675d35f001e8cc4559ce94d37c0d40533a3f7510efbbb8a45f3d033", 4374 - "contents_checksum": "fae4b5a2357238e46e5fb51f936bbc351a7af6871d0c40dfd6138d12c72f6535", 4375 - "size": 5092288, 4376 - "source": "components/google-cloud-sdk-gcloud-man-pages-nix-20220826172526.tar.gz", 4342 + "checksum": "9c53b485c9da6befa0f4edc4e822fa33b78aee0918c768e6491d540c1eef9cc8", 4343 + "contents_checksum": "e0e0264b5a04d814ca438ccf03c5712ad6288198a29edd7ee1ae2ba3d1249d61", 4344 + "size": 5175748, 4345 + "source": "components/google-cloud-sdk-gcloud-man-pages-nix-20220923141408.tar.gz", 4377 4346 "type": "tar" 4378 4347 }, 4379 4348 "dependencies": [ ··· 4398 4367 }, 4399 4368 "platform_required": false, 4400 4369 "version": { 4401 - "build_number": 20220826172526, 4370 + "build_number": 20220923141408, 4402 4371 "version_string": "" 4403 4372 } 4404 4373 }, ··· 4671 4640 }, 4672 4641 { 4673 4642 "data": { 4674 - "checksum": "0d5a788c9a2ce8afa11df39ca92395b896c75abc6613aeaa5bf26f11cf500000", 4675 - "contents_checksum": "c018a70eda52d4d450c0df6d4d0a85cc63b356c6459d0e75ae3154118d0bcda7", 4676 - "size": 16238934, 4677 - "source": "components/google-cloud-sdk-gsutil-20220812141601.tar.gz", 4643 + "checksum": "86455168929ba37f0d6446aabc883fbc6bf9c7317776940f2ee4708660ddba73", 4644 + "contents_checksum": "f3ff13f8c1b4347fb0be3a943d10539f19b482dab150e95cc6c4cefc55b8d39c", 4645 + "size": 16281930, 4646 + "source": "components/google-cloud-sdk-gsutil-20220923141408.tar.gz", 4678 4647 "type": "tar" 4679 4648 }, 4680 4649 "dependencies": [ ··· 4693 4662 "platform": {}, 4694 4663 "platform_required": false, 4695 4664 "version": { 4696 - "build_number": 20220812141601, 4697 - "version_string": "5.12" 4665 + "build_number": 20220923141408, 4666 + "version_string": "5.14" 4698 4667 } 4699 4668 }, 4700 4669 { 4701 4670 "data": { 4702 - "checksum": "8dedc4501d4c44664dbe4bf403e7ca33d772eb92fe31622e1b0100fd7333eb06", 4703 - "contents_checksum": "cfed152cbb1c3bd59b818004578584d95049de6ae963f0ecfda786b7feca12f3", 4704 - "size": 1831, 4705 - "source": "components/google-cloud-sdk-gsutil-nix-20220805142045.tar.gz", 4671 + "checksum": "43435ae1c5c1570a279aa7ba79345a4121a040f5ae732968ce6e2802fa91cf7d", 4672 + "contents_checksum": "5368c71d19578ae4e3b2c2e44ef794040d45cfefcaad8137454ee1fcc75069ea", 4673 + "size": 1851, 4674 + "source": "components/google-cloud-sdk-gsutil-nix-20220920185015.tar.gz", 4706 4675 "type": "tar" 4707 4676 }, 4708 4677 "dependencies": [ ··· 4727 4696 }, 4728 4697 "platform_required": false, 4729 4698 "version": { 4730 - "build_number": 20220805142045, 4731 - "version_string": "5.11" 4699 + "build_number": 20220920185015, 4700 + "version_string": "5.13" 4732 4701 } 4733 4702 }, 4734 4703 { 4735 4704 "data": { 4736 - "checksum": "d8619ff9a346685d60cb3c9092cecc640bc3b426079454ba78d5a57f6001006c", 4737 - "contents_checksum": "9dce4185b8d842133a744c2582b9d1910d358cc4b9f7b2699cbd56ea65f81c94", 4738 - "size": 3898, 4739 - "source": "components/google-cloud-sdk-gsutil-win-20220805142045.tar.gz", 4705 + "checksum": "e9fa362ebfd166fcd02a4a0b2be6cb1bc8070b78bc95aa6412cef27e014800a0", 4706 + "contents_checksum": "268fc5137f56690b853b7d9c606cf48bcc168555d8d24f02e1bb5bcdd4678305", 4707 + "size": 3915, 4708 + "source": "components/google-cloud-sdk-gsutil-win-20220920185015.tar.gz", 4740 4709 "type": "tar" 4741 4710 }, 4742 4711 "dependencies": [ ··· 4758 4727 }, 4759 4728 "platform_required": false, 4760 4729 "version": { 4761 - "build_number": 20220805142045, 4762 - "version_string": "5.11" 4730 + "build_number": 20220920185015, 4731 + "version_string": "5.13" 4763 4732 } 4764 4733 }, 4765 4734 { ··· 4986 4955 }, 4987 4956 { 4988 4957 "data": { 4989 - "checksum": "9de67dcca25d9fe988f7bb50d51f469f15f94a18448baf324836e967ab33f00a", 4990 - "contents_checksum": "727cf52bb3893c60b77edd5989e9febe5445381d1a5ffeb4f9dbdbf3d1ca33ca", 4958 + "checksum": "7856f8122d27e23899e913ba4fad9700ee6c2abafc9abcf487248ba2db57321c", 4959 + "contents_checksum": "8bc4e63305e3309718a8f77c23552d310b167cb9e636e42b69c2b44f7b3657dd", 4991 4960 "size": 48204, 4992 - "source": "components/google-cloud-sdk-kubectl-20220826172526.tar.gz", 4961 + "source": "components/google-cloud-sdk-kubectl-20220923141408.tar.gz", 4993 4962 "type": "tar" 4994 4963 }, 4995 4964 "dependencies": [ ··· 5013 4982 "platform": {}, 5014 4983 "platform_required": true, 5015 4984 "version": { 5016 - "build_number": 20220826172526, 5017 - "version_string": "1.22.12" 4985 + "build_number": 20220923141408, 4986 + "version_string": "1.22.14" 5018 4987 } 5019 4988 }, 5020 4989 { 5021 4990 "data": { 5022 - "checksum": "183a93dc2868f125fd74ac0907d8314806af95bcdee7dfedd2a0d6693e38220a", 5023 - "contents_checksum": "5cc81a6770bf326c6f9dce82a620a6a6210319969e3a4de91d567eab2b21acb8", 5024 - "size": 68347897, 5025 - "source": "components/google-cloud-sdk-kubectl-darwin-arm-20220722145557.tar.gz", 4991 + "checksum": "21d6b384830db24c47ad84eed130e0ac43c5092cafbfe64a5c2b1f767a2d3bdd", 4992 + "contents_checksum": "7030de0f4f7c209f9db17e0926b19bb665f81977082e1c75359235f00eabafe9", 4993 + "size": 82321843, 4994 + "source": "components/google-cloud-sdk-kubectl-darwin-arm-20220923141408.tar.gz", 5026 4995 "type": "tar" 5027 4996 }, 5028 4997 "dependencies": [ ··· 5047 5016 }, 5048 5017 "platform_required": true, 5049 5018 "version": { 5050 - "build_number": 20220722145557, 5051 - "version_string": "1.22.12" 5019 + "build_number": 20220923141408, 5020 + "version_string": "1.22.14" 5052 5021 } 5053 5022 }, 5054 5023 { 5055 5024 "data": { 5056 - "checksum": "f08c5e917c04dce420d4fb5fc98e4f0dbb234ed00ba81c11c7dcf6ba05da1c71", 5057 - "contents_checksum": "4f1cdd27d68a22e9fd4bc762f6d8d4ab6a079b2c6e52c3c2ba8f9de82b099b0d", 5058 - "size": 95973956, 5059 - "source": "components/google-cloud-sdk-kubectl-darwin-x86_64-20220722145557.tar.gz", 5025 + "checksum": "1e3068a62f3afa8e46782e22880ae35f6358e4b637956a7cb6116cd08aa4ff71", 5026 + "contents_checksum": "f217554c39fdf2744df60e20e1b3da9fa384e1f8ffc2b813ee3fdbd138f6e9b4", 5027 + "size": 97570066, 5028 + "source": "components/google-cloud-sdk-kubectl-darwin-x86_64-20220923141408.tar.gz", 5060 5029 "type": "tar" 5061 5030 }, 5062 5031 "dependencies": [ ··· 5081 5050 }, 5082 5051 "platform_required": true, 5083 5052 "version": { 5084 - "build_number": 20220722145557, 5085 - "version_string": "1.22.12" 5053 + "build_number": 20220923141408, 5054 + "version_string": "1.22.14" 5086 5055 } 5087 5056 }, 5088 5057 { 5089 5058 "data": { 5090 - "checksum": "68a90b93bcc95518e57f627fd3db2d949ac290ba457645633c6c92f22d5a02aa", 5091 - "contents_checksum": "e023599a6381690ffdf61952d8183b1010d0c445b5ca3f5543650cb56b31bd43", 5092 - "size": 84739879, 5093 - "source": "components/google-cloud-sdk-kubectl-linux-arm-20220722145557.tar.gz", 5059 + "checksum": "52e38b9e2ae7a948af11d9fc4bf4d355ef15fbbcd74226710ab01f7da32ac35a", 5060 + "contents_checksum": "831a4170256641069a14fdfae161c780b1210938b3fa7881819cea3b3bea7c4f", 5061 + "size": 86262197, 5062 + "source": "components/google-cloud-sdk-kubectl-linux-arm-20220923141408.tar.gz", 5094 5063 "type": "tar" 5095 5064 }, 5096 5065 "dependencies": [ ··· 5115 5084 }, 5116 5085 "platform_required": true, 5117 5086 "version": { 5118 - "build_number": 20220722145557, 5119 - "version_string": "1.22.12" 5087 + "build_number": 20220923141408, 5088 + "version_string": "1.22.14" 5120 5089 } 5121 5090 }, 5122 5091 { 5123 5092 "data": { 5124 - "checksum": "dbb20121a8590ae23b9b4570d9bbe1ed4ef75c0301fb5c82ba8f39d8204e3dc9", 5125 - "contents_checksum": "c164f5f80d3d6a6fb34faefa4a5e2f30203870fe258de483ff9da2daa636bba6", 5126 - "size": 85216084, 5127 - "source": "components/google-cloud-sdk-kubectl-linux-x86-20220722145557.tar.gz", 5093 + "checksum": "71a1963cbeb19cfe29b65bfc50f1cf9c2468fe13632a4325160b81ecb01c6aa9", 5094 + "contents_checksum": "92480f7feaa3e8cda1a573eebfdca4109fb64df5f759dd3ae266a64b03cbdd26", 5095 + "size": 86774419, 5096 + "source": "components/google-cloud-sdk-kubectl-linux-x86-20220923141408.tar.gz", 5128 5097 "type": "tar" 5129 5098 }, 5130 5099 "dependencies": [ ··· 5149 5118 }, 5150 5119 "platform_required": true, 5151 5120 "version": { 5152 - "build_number": 20220722145557, 5153 - "version_string": "1.22.12" 5121 + "build_number": 20220923141408, 5122 + "version_string": "1.22.14" 5154 5123 } 5155 5124 }, 5156 5125 { 5157 5126 "data": { 5158 - "checksum": "cad7f2a1e918a582f849e2a7680a901f844b67fc13185ab81ddf0df644d73a2e", 5159 - "contents_checksum": "ce7711c4e5f89e79ce85cfe25e733911a67a8e20de9ac19794f4a84d083f754d", 5160 - "size": 91318082, 5161 - "source": "components/google-cloud-sdk-kubectl-linux-x86_64-20220722145557.tar.gz", 5127 + "checksum": "ae520fa71535f79bcc12515c6f1421fca9ece08b0ed59f7ee406756ba48561dd", 5128 + "contents_checksum": "0b465529d9e1674a10fc52ab12fb2db1253572ca020e9e57f2bb56be7edb14ca", 5129 + "size": 92944406, 5130 + "source": "components/google-cloud-sdk-kubectl-linux-x86_64-20220923141408.tar.gz", 5162 5131 "type": "tar" 5163 5132 }, 5164 5133 "dependencies": [ ··· 5183 5152 }, 5184 5153 "platform_required": true, 5185 5154 "version": { 5186 - "build_number": 20220722145557, 5187 - "version_string": "1.22.12" 5155 + "build_number": 20220923141408, 5156 + "version_string": "1.22.14" 5188 5157 } 5189 5158 }, 5190 5159 { ··· 5217 5186 "platform_required": false, 5218 5187 "version": { 5219 5188 "build_number": 0, 5220 - "version_string": "1.4.3" 5189 + "version_string": "1.4.4" 5221 5190 } 5222 5191 }, 5223 5192 { 5224 5193 "data": { 5225 - "checksum": "2ec95a80a5c1c165488702eecfe84a17f51c8dd0ea96e5b5b10e805bb45f61a5", 5226 - "contents_checksum": "2d1d1a849782dcf64e1b187387e2335277cb6801cf657e91eebd2d8582f2fe19", 5227 - "size": 19054821, 5228 - "source": "components/google-cloud-sdk-kubectl-oidc-darwin-arm-20220729144039.tar.gz", 5194 + "checksum": "a7d9d1a977856dc342b82936bedfda0032e27ec4657fd380048cd7dc5de05039", 5195 + "contents_checksum": "2d656b34043e23ff6a98a7fb432efa86d251eb0b14c4452d17c537dc02e04eaf", 5196 + "size": 20108100, 5197 + "source": "components/google-cloud-sdk-kubectl-oidc-darwin-arm-20220923141408.tar.gz", 5229 5198 "type": "tar" 5230 5199 }, 5231 5200 "dependencies": [ ··· 5249 5218 }, 5250 5219 "platform_required": false, 5251 5220 "version": { 5252 - "build_number": 20220729144039, 5253 - "version_string": "1.4.3" 5221 + "build_number": 20220923141408, 5222 + "version_string": "1.4.4" 5254 5223 } 5255 5224 }, 5256 5225 { 5257 5226 "data": { 5258 - "checksum": "f9f5fba90117efb21a256ced62d431d1c1257855052ca53066cb52dbaf76c960", 5259 - "contents_checksum": "72cdd4ed404e24c506ddddaaff6c5ea19a222dac673a21ac4a288bedc267a2f3", 5260 - "size": 19911397, 5261 - "source": "components/google-cloud-sdk-kubectl-oidc-darwin-x86_64-20220729144039.tar.gz", 5227 + "checksum": "1d6d08431d911928ef8500d1979720278f8116e86ae52afc32ce0b76ec4a5fb0", 5228 + "contents_checksum": "497465b1a0c3a6781d2bb0b68a951af0a4d2230ae67caa84288d38b853800a53", 5229 + "size": 21183987, 5230 + "source": "components/google-cloud-sdk-kubectl-oidc-darwin-x86_64-20220923141408.tar.gz", 5262 5231 "type": "tar" 5263 5232 }, 5264 5233 "dependencies": [ ··· 5282 5251 }, 5283 5252 "platform_required": false, 5284 5253 "version": { 5285 - "build_number": 20220729144039, 5286 - "version_string": "1.4.3" 5254 + "build_number": 20220923141408, 5255 + "version_string": "1.4.4" 5287 5256 } 5288 5257 }, 5289 5258 { 5290 5259 "data": { 5291 - "checksum": "b75f04ad05de495342265e6b3b65d9146cd6a0c32aa8d3c8af9cdf29ef9396a3", 5292 - "contents_checksum": "bd186ff699cd4a85dea551e3b2a98f9bc6b17f3c1bde5ab26de3a8013cd1b48f", 5293 - "size": 18716163, 5294 - "source": "components/google-cloud-sdk-kubectl-oidc-linux-arm-20220729144039.tar.gz", 5260 + "checksum": "87550a6e878b3091c8da5df8380c65f9e2579f012b7cbddc3e64fb637906fc38", 5261 + "contents_checksum": "2c33c85c5826938f014a33c21d28289676cccc09d7ffb87368fd94faf43b6cc1", 5262 + "size": 19755678, 5263 + "source": "components/google-cloud-sdk-kubectl-oidc-linux-arm-20220923141408.tar.gz", 5295 5264 "type": "tar" 5296 5265 }, 5297 5266 "dependencies": [ ··· 5315 5284 }, 5316 5285 "platform_required": false, 5317 5286 "version": { 5318 - "build_number": 20220729144039, 5319 - "version_string": "1.4.3" 5287 + "build_number": 20220923141408, 5288 + "version_string": "1.4.4" 5320 5289 } 5321 5290 }, 5322 5291 { 5323 5292 "data": { 5324 - "checksum": "a961eb557b60f2b4f85efaf1178bb2b2c00dc76aad4428e52e4675ac433b39f9", 5325 - "contents_checksum": "02d55ba02e330737d36b164642c351579a90d96a2618b313a36b069f3dc9eb62", 5326 - "size": 20095032, 5327 - "source": "components/google-cloud-sdk-kubectl-oidc-linux-x86_64-20220729144039.tar.gz", 5293 + "checksum": "cd6945af71ecfdf94c693ee22b7629ad62dc650cf0c19d58761fe260f792e36f", 5294 + "contents_checksum": "c2092312910a7e7e86adcd8d72c9e97d7d9757d6dce2f3e24124d9bcadd0d9eb", 5295 + "size": 21362894, 5296 + "source": "components/google-cloud-sdk-kubectl-oidc-linux-x86_64-20220923141408.tar.gz", 5328 5297 "type": "tar" 5329 5298 }, 5330 5299 "dependencies": [ ··· 5348 5317 }, 5349 5318 "platform_required": false, 5350 5319 "version": { 5351 - "build_number": 20220729144039, 5352 - "version_string": "1.4.3" 5320 + "build_number": 20220923141408, 5321 + "version_string": "1.4.4" 5353 5322 } 5354 5323 }, 5355 5324 { 5356 5325 "data": { 5357 - "checksum": "58504d03cb89202ae39a199cd099d52bd370698a231dcc69636c583d58cda6f0", 5358 - "contents_checksum": "61fea21e4e483439b865217a3d6cffc20ece1e596415d1ed2fe5cf0157873332", 5359 - "size": 20093462, 5360 - "source": "components/google-cloud-sdk-kubectl-oidc-windows-x86_64-20220729144039.tar.gz", 5326 + "checksum": "2cf3f2460446692a81c888ec16ac7cbd838fd83acdec46e99bd9225ed49a5d67", 5327 + "contents_checksum": "6477f1e7ad0e16d891b1b47c201c2bf0e4409789893be60e1697593c58f74025", 5328 + "size": 21470876, 5329 + "source": "components/google-cloud-sdk-kubectl-oidc-windows-x86_64-20220923141408.tar.gz", 5361 5330 "type": "tar" 5362 5331 }, 5363 5332 "dependencies": [ ··· 5381 5350 }, 5382 5351 "platform_required": false, 5383 5352 "version": { 5384 - "build_number": 20220729144039, 5385 - "version_string": "1.4.3" 5353 + "build_number": 20220923141408, 5354 + "version_string": "1.4.4" 5386 5355 } 5387 5356 }, 5388 5357 { 5389 5358 "data": { 5390 - "checksum": "a4ab96118718d8deb17e4a6366e710016cd724e0f9aa748b12337f692f2a3560", 5391 - "contents_checksum": "4ef9d705ffbbe3a250f977e96144284b6eb5de741022baf9cf891b3701f3b1ae", 5392 - "size": 89788788, 5393 - "source": "components/google-cloud-sdk-kubectl-windows-x86-20220722145557.tar.gz", 5359 + "checksum": "28440941a732c6dfda5f05efc0cba74023c913f825871c90ae3c06b14ad2bdda", 5360 + "contents_checksum": "95a17b296f14a9d7d0dfced9ad0a55c941fccc83c99b168b3ba9853e3adba360", 5361 + "size": 91332851, 5362 + "source": "components/google-cloud-sdk-kubectl-windows-x86-20220923141408.tar.gz", 5394 5363 "type": "tar" 5395 5364 }, 5396 5365 "dependencies": [ ··· 5417 5386 }, 5418 5387 "platform_required": true, 5419 5388 "version": { 5420 - "build_number": 20220722145557, 5421 - "version_string": "1.22.12" 5389 + "build_number": 20220923141408, 5390 + "version_string": "1.22.14" 5422 5391 } 5423 5392 }, 5424 5393 { 5425 5394 "data": { 5426 - "checksum": "a6b1959aebd022162d6fdbc83c98112a7a7fd8fc1a9d753c8c76720b94e44875", 5427 - "contents_checksum": "3159a9b26c49fd74a95e88235d7d0ce4c9424639121557870161d94ae4c1cc91", 5428 - "size": 92776963, 5429 - "source": "components/google-cloud-sdk-kubectl-windows-x86_64-20220722145557.tar.gz", 5395 + "checksum": "b21d319af27d9765f51be9c3b44807c3ca1769beec3674568dc81409f6334186", 5396 + "contents_checksum": "a87f48bab704f3f53d9d7b7ea2280a60c793963387d24b0db227e8502ea2995a", 5397 + "size": 94323359, 5398 + "source": "components/google-cloud-sdk-kubectl-windows-x86_64-20220923141408.tar.gz", 5430 5399 "type": "tar" 5431 5400 }, 5432 5401 "dependencies": [ ··· 5453 5422 }, 5454 5423 "platform_required": true, 5455 5424 "version": { 5456 - "build_number": 20220722145557, 5457 - "version_string": "1.22.12" 5425 + "build_number": 20220923141408, 5426 + "version_string": "1.22.14" 5458 5427 } 5459 5428 }, 5460 5429 { ··· 5785 5754 }, 5786 5755 { 5787 5756 "dependencies": [ 5757 + "log-streaming-darwin-arm", 5758 + "log-streaming-darwin-x86_64", 5759 + "log-streaming-linux-arm", 5760 + "log-streaming-linux-x86_64", 5761 + "log-streaming-windows-x86_64" 5762 + ], 5763 + "details": { 5764 + "description": "Provides log streaming services.", 5765 + "display_name": "Log Streaming" 5766 + }, 5767 + "id": "log-streaming", 5768 + "is_configuration": false, 5769 + "is_hidden": false, 5770 + "is_required": false, 5771 + "platform": { 5772 + "architectures": [ 5773 + "arm", 5774 + "x86_64" 5775 + ], 5776 + "operating_systems": [ 5777 + "LINUX", 5778 + "MACOSX", 5779 + "WINDOWS" 5780 + ] 5781 + }, 5782 + "platform_required": false, 5783 + "version": { 5784 + "build_number": 0, 5785 + "version_string": "0.1.0" 5786 + } 5787 + }, 5788 + { 5789 + "data": { 5790 + "checksum": "2d038a49773005dbca959451cb68376ee7350d5ef6ef203da00238bbc92ba3ba", 5791 + "contents_checksum": "43a1da489e8b9c536778d69bbcca31c3e26ac8e8adee8305c25b5ccd9d5bcfb5", 5792 + "size": 12250253, 5793 + "source": "components/google-cloud-sdk-log-streaming-darwin-arm-20220923141408.tar.gz", 5794 + "type": "tar" 5795 + }, 5796 + "dependencies": [ 5797 + "log-streaming" 5798 + ], 5799 + "details": { 5800 + "description": "Provides log streaming services.", 5801 + "display_name": "Log Streaming" 5802 + }, 5803 + "id": "log-streaming-darwin-arm", 5804 + "is_configuration": false, 5805 + "is_hidden": true, 5806 + "is_required": false, 5807 + "platform": { 5808 + "architectures": [ 5809 + "arm" 5810 + ], 5811 + "operating_systems": [ 5812 + "MACOSX" 5813 + ] 5814 + }, 5815 + "platform_required": false, 5816 + "version": { 5817 + "build_number": 20220923141408, 5818 + "version_string": "0.1.0" 5819 + } 5820 + }, 5821 + { 5822 + "data": { 5823 + "checksum": "2e24ef158bf59bc13e64305464923e34a3c5a22eebed42994fd8bd2262c8de4e", 5824 + "contents_checksum": "14a71125b30e23301f0a52ec57ecf1fa8cd84f0c972bcec5d8ab53fbd5bb2b82", 5825 + "size": 12632972, 5826 + "source": "components/google-cloud-sdk-log-streaming-darwin-x86_64-20220923141408.tar.gz", 5827 + "type": "tar" 5828 + }, 5829 + "dependencies": [ 5830 + "log-streaming" 5831 + ], 5832 + "details": { 5833 + "description": "Provides log streaming services.", 5834 + "display_name": "Log Streaming" 5835 + }, 5836 + "id": "log-streaming-darwin-x86_64", 5837 + "is_configuration": false, 5838 + "is_hidden": true, 5839 + "is_required": false, 5840 + "platform": { 5841 + "architectures": [ 5842 + "x86_64" 5843 + ], 5844 + "operating_systems": [ 5845 + "MACOSX" 5846 + ] 5847 + }, 5848 + "platform_required": false, 5849 + "version": { 5850 + "build_number": 20220923141408, 5851 + "version_string": "0.1.0" 5852 + } 5853 + }, 5854 + { 5855 + "data": { 5856 + "checksum": "eb647953fb3921dbe63f2b5d642a524d4cca2212ef4235ac037d7622b6686521", 5857 + "contents_checksum": "8a83ad4a79e8269b11fc4f8b279f8e97c7a6318d4236663e166219fb76e7ae8d", 5858 + "size": 12118626, 5859 + "source": "components/google-cloud-sdk-log-streaming-linux-arm-20220923141408.tar.gz", 5860 + "type": "tar" 5861 + }, 5862 + "dependencies": [ 5863 + "log-streaming" 5864 + ], 5865 + "details": { 5866 + "description": "Provides log streaming services.", 5867 + "display_name": "Log Streaming" 5868 + }, 5869 + "id": "log-streaming-linux-arm", 5870 + "is_configuration": false, 5871 + "is_hidden": true, 5872 + "is_required": false, 5873 + "platform": { 5874 + "architectures": [ 5875 + "arm" 5876 + ], 5877 + "operating_systems": [ 5878 + "LINUX" 5879 + ] 5880 + }, 5881 + "platform_required": false, 5882 + "version": { 5883 + "build_number": 20220923141408, 5884 + "version_string": "0.1.0" 5885 + } 5886 + }, 5887 + { 5888 + "data": { 5889 + "checksum": "c422d2a99e2354b6cf57717eeb33c39af64d458ea023909aeac65d8cf3a35991", 5890 + "contents_checksum": "bfecc7629c23e684ac4638b9ea54b887f31c5ffbbf62f42153915e133085da23", 5891 + "size": 14329668, 5892 + "source": "components/google-cloud-sdk-log-streaming-linux-x86_64-20220923141408.tar.gz", 5893 + "type": "tar" 5894 + }, 5895 + "dependencies": [ 5896 + "log-streaming" 5897 + ], 5898 + "details": { 5899 + "description": "Provides log streaming services.", 5900 + "display_name": "Log Streaming" 5901 + }, 5902 + "id": "log-streaming-linux-x86_64", 5903 + "is_configuration": false, 5904 + "is_hidden": true, 5905 + "is_required": false, 5906 + "platform": { 5907 + "architectures": [ 5908 + "x86_64" 5909 + ], 5910 + "operating_systems": [ 5911 + "LINUX" 5912 + ] 5913 + }, 5914 + "platform_required": false, 5915 + "version": { 5916 + "build_number": 20220923141408, 5917 + "version_string": "0.1.0" 5918 + } 5919 + }, 5920 + { 5921 + "data": { 5922 + "checksum": "4f183757d5f71b19f2894dd357ead27a5cfc2463912e6fa2221521844e235cf4", 5923 + "contents_checksum": "10e1197c43d20fb5b3a53fa79b04323f7eaa42afb6e15fac35799f7de00be2eb", 5924 + "size": 12777192, 5925 + "source": "components/google-cloud-sdk-log-streaming-windows-x86_64-20220923141408.tar.gz", 5926 + "type": "tar" 5927 + }, 5928 + "dependencies": [ 5929 + "log-streaming" 5930 + ], 5931 + "details": { 5932 + "description": "Provides log streaming services.", 5933 + "display_name": "Log Streaming" 5934 + }, 5935 + "id": "log-streaming-windows-x86_64", 5936 + "is_configuration": false, 5937 + "is_hidden": true, 5938 + "is_required": false, 5939 + "platform": { 5940 + "architectures": [ 5941 + "x86_64" 5942 + ], 5943 + "operating_systems": [ 5944 + "WINDOWS" 5945 + ] 5946 + }, 5947 + "platform_required": false, 5948 + "version": { 5949 + "build_number": 20220923141408, 5950 + "version_string": "0.1.0" 5951 + } 5952 + }, 5953 + { 5954 + "dependencies": [ 5788 5955 "minikube-darwin-arm", 5789 5956 "minikube-darwin-x86_64", 5790 5957 "minikube-linux-arm", ··· 5813 5980 "platform_required": false, 5814 5981 "version": { 5815 5982 "build_number": 0, 5816 - "version_string": "1.26.1" 5983 + "version_string": "1.27.0" 5817 5984 } 5818 5985 }, 5819 5986 { 5820 5987 "data": { 5821 - "checksum": "27a35a1156344d63a44e376956e024a8031b1eeaf8adc0c1833b10d838bf7afe", 5822 - "contents_checksum": "e4101d218a7ce1f361ebffa3b2940dc45e496796e29415ad8f6913b8d2c06ab4", 5823 - "size": 30786798, 5824 - "source": "components/google-cloud-sdk-minikube-darwin-arm-20220805142045.tar.gz", 5988 + "checksum": "5a63b4052f5892e5723d62b812eea09d4bb20218e1c8986527c218b7e0e5b2b2", 5989 + "contents_checksum": "98639bbd563712ce9ac35a72de5382da64af64783a8adc5986dfd01367928015", 5990 + "size": 31131878, 5991 + "source": "components/google-cloud-sdk-minikube-darwin-arm-20220923141408.tar.gz", 5825 5992 "type": "tar" 5826 5993 }, 5827 5994 "dependencies": [ ··· 5845 6012 }, 5846 6013 "platform_required": false, 5847 6014 "version": { 5848 - "build_number": 20220805142045, 5849 - "version_string": "1.26.1" 6015 + "build_number": 20220923141408, 6016 + "version_string": "1.27.0" 5850 6017 } 5851 6018 }, 5852 6019 { 5853 6020 "data": { 5854 - "checksum": "e851e190b2a4747d32f72ba2caaf9cda7bbf6a67b1c357a221598ee9af04eb52", 5855 - "contents_checksum": "40b12f79e6446f3d5cbbc3133069cd7349e0ce7744959362b235345329aae84e", 5856 - "size": 31814476, 5857 - "source": "components/google-cloud-sdk-minikube-darwin-x86_64-20220805142045.tar.gz", 6021 + "checksum": "1f58909a020d0a8a1ff3aa20dd71cd0148cf16adf323230ddb35e91421945afc", 6022 + "contents_checksum": "847392870c71810c7f038f2da223e5162cd58a2e4b277e04b03839cd89f12d55", 6023 + "size": 32365761, 6024 + "source": "components/google-cloud-sdk-minikube-darwin-x86_64-20220923141408.tar.gz", 5858 6025 "type": "tar" 5859 6026 }, 5860 6027 "dependencies": [ ··· 5878 6045 }, 5879 6046 "platform_required": false, 5880 6047 "version": { 5881 - "build_number": 20220805142045, 5882 - "version_string": "1.26.1" 6048 + "build_number": 20220923141408, 6049 + "version_string": "1.27.0" 5883 6050 } 5884 6051 }, 5885 6052 { 5886 6053 "data": { 5887 - "checksum": "793a34c028e32ed307023aed42012f89bf1677e8ef004b785b10816bd3c1347d", 5888 - "contents_checksum": "eeea49fc6d42b8b6aca0b5cbcc18e594042d24bdda142e530b7b4ca5b250c100", 5889 - "size": 30251095, 5890 - "source": "components/google-cloud-sdk-minikube-linux-arm-20220805142045.tar.gz", 6054 + "checksum": "e4d3268beb0091f8431d85b260381cd5204c891b54feba5410dcc6738f767a12", 6055 + "contents_checksum": "f217a95d3c5ebb18055d48b9b7aa278a0211914591bc01366a53b6eb4bcaddc2", 6056 + "size": 30626509, 6057 + "source": "components/google-cloud-sdk-minikube-linux-arm-20220923141408.tar.gz", 5891 6058 "type": "tar" 5892 6059 }, 5893 6060 "dependencies": [ ··· 5911 6078 }, 5912 6079 "platform_required": false, 5913 6080 "version": { 5914 - "build_number": 20220805142045, 5915 - "version_string": "1.26.1" 6081 + "build_number": 20220923141408, 6082 + "version_string": "1.27.0" 5916 6083 } 5917 6084 }, 5918 6085 { 5919 6086 "data": { 5920 - "checksum": "f8018c1c90f3aaa7d6d16ebdd6fc9f9f4fe1278278257dc8baedbea8faaea055", 5921 - "contents_checksum": "c9a2f9ed229eab8c0bae77fd9eaa2bd1c287383db3f4395cf5131a8bb20abbe2", 5922 - "size": 32405345, 5923 - "source": "components/google-cloud-sdk-minikube-linux-x86_64-20220805142045.tar.gz", 6087 + "checksum": "c41f2b5b94a91b4d712fe68bb9ee84a81c0afc862b71c71cd68c55b822781faa", 6088 + "contents_checksum": "89cff2f8b843db2a4b411cc8593e4bf623a9c2fdd89fc63f1e42eb9dd2bc9263", 6089 + "size": 32992037, 6090 + "source": "components/google-cloud-sdk-minikube-linux-x86_64-20220923141408.tar.gz", 5924 6091 "type": "tar" 5925 6092 }, 5926 6093 "dependencies": [ ··· 5944 6111 }, 5945 6112 "platform_required": false, 5946 6113 "version": { 5947 - "build_number": 20220805142045, 5948 - "version_string": "1.26.1" 6114 + "build_number": 20220923141408, 6115 + "version_string": "1.27.0" 5949 6116 } 5950 6117 }, 5951 6118 { 5952 6119 "data": { 5953 - "checksum": "1b3a3552de1ec3cf7b23b4add0a225272122953bc1588f24022fc68fbb331bed", 5954 - "contents_checksum": "1e5745e14161ac8df58286ceab2412c42ba9612b7ca689c5175b32c49384bc04", 5955 - "size": 32246442, 5956 - "source": "components/google-cloud-sdk-minikube-windows-x86_64-20220805142045.tar.gz", 6120 + "checksum": "4461b0d6dce2ad476d7c40c3bd55a13855a6f3cffb21b4dc22728f36cb6fce13", 6121 + "contents_checksum": "b05dcba039ce63ec98e9a42da93f262246e7d0b775f87b5823a37a78dc937305", 6122 + "size": 32922362, 6123 + "source": "components/google-cloud-sdk-minikube-windows-x86_64-20220923141408.tar.gz", 5957 6124 "type": "tar" 5958 6125 }, 5959 6126 "dependencies": [ ··· 5977 6144 }, 5978 6145 "platform_required": false, 5979 6146 "version": { 5980 - "build_number": 20220805142045, 5981 - "version_string": "1.26.1" 6147 + "build_number": 20220923141408, 6148 + "version_string": "1.27.0" 5982 6149 } 5983 6150 }, 5984 6151 { ··· 6006 6173 "platform_required": false, 6007 6174 "version": { 6008 6175 "build_number": 0, 6009 - "version_string": "1.12.2-rc.2" 6176 + "version_string": "1.13.0-rc.7" 6010 6177 } 6011 6178 }, 6012 6179 { 6013 6180 "data": { 6014 - "checksum": "3d68d8a604dcf4123f7e52b839ab67909956cbee8bef9f592ae31173a0c77e59", 6015 - "contents_checksum": "72b328cc2cd63d282976b31e57b9391789a45e629d114c5bfa701fb1b20bc6df", 6016 - "size": 25577195, 6017 - "source": "components/google-cloud-sdk-nomos-darwin-x86_64-20220826172526.tar.gz", 6181 + "checksum": "e3b8394db81bd917f498d4c64f3002a1e462a2176503c9780406e2bfcb2c0764", 6182 + "contents_checksum": "6ca04e9e59fc7f84e1cc154b1e502f1503b10c3965a0208140fa405d6167ab62", 6183 + "size": 25595518, 6184 + "source": "components/google-cloud-sdk-nomos-darwin-x86_64-20220920185015.tar.gz", 6018 6185 "type": "tar" 6019 6186 }, 6020 6187 "dependencies": [ ··· 6038 6205 }, 6039 6206 "platform_required": false, 6040 6207 "version": { 6041 - "build_number": 20220826172526, 6042 - "version_string": "1.12.2-rc.2" 6208 + "build_number": 20220920185015, 6209 + "version_string": "1.13.0-rc.7" 6043 6210 } 6044 6211 }, 6045 6212 { 6046 6213 "data": { 6047 - "checksum": "6ffb0aaa5b7d76ce29a8460da26014eef438d077bfecf440198df041c17cedfe", 6048 - "contents_checksum": "bb0711b94470949df670ebedd6dccad98334276aab1547750be9b73ba31f9079", 6049 - "size": 26179434, 6050 - "source": "components/google-cloud-sdk-nomos-linux-x86_64-20220826172526.tar.gz", 6214 + "checksum": "04542a9dbdb94a0cc4f28a7c61d1f8883a9918366fa2b7449458431c8eed78e2", 6215 + "contents_checksum": "e916b7982d9ac6827821d0d020976818ce85438cf1a5dd0a8d5daf0610101bbc", 6216 + "size": 26198140, 6217 + "source": "components/google-cloud-sdk-nomos-linux-x86_64-20220920185015.tar.gz", 6051 6218 "type": "tar" 6052 6219 }, 6053 6220 "dependencies": [ ··· 6071 6238 }, 6072 6239 "platform_required": false, 6073 6240 "version": { 6074 - "build_number": 20220826172526, 6075 - "version_string": "1.12.2-rc.2" 6241 + "build_number": 20220920185015, 6242 + "version_string": "1.13.0-rc.7" 6076 6243 } 6077 6244 }, 6078 6245 { ··· 6764 6931 }, 6765 6932 { 6766 6933 "data": { 6767 - "checksum": "a070114060f948bdfd1ed7f1947098b042aa260d5123f0d60fa0e145795619c9", 6768 - "contents_checksum": "2089133ad95150f0c960621fbd43ce19e12550bf9fc1e83af6f53e08ba99807b", 6769 - "size": 36344281, 6770 - "source": "components/google-cloud-sdk-tests-20220826172526.tar.gz", 6934 + "checksum": "6e094c6fb35304bded5f23069152591bfeff44a53e263a09f2412dd193b86844", 6935 + "contents_checksum": "55b77011bbfe6163f84c590d8ae3b8f122a640024aa6c872ced74d0bdcc2f1e7", 6936 + "size": 36483380, 6937 + "source": "components/google-cloud-sdk-tests-20220923141408.tar.gz", 6771 6938 "type": "tar" 6772 6939 }, 6773 6940 "dependencies": [ ··· 6784 6951 "platform": {}, 6785 6952 "platform_required": false, 6786 6953 "version": { 6787 - "build_number": 20220826172526, 6788 - "version_string": "2022.08.26" 6954 + "build_number": 20220923141408, 6955 + "version_string": "2022.09.23" 6789 6956 } 6790 6957 } 6791 6958 ], ··· 6804 6971 ], 6805 6972 "post_processing_command": "components post-process", 6806 6973 "release_notes_url": "RELEASE_NOTES", 6807 - "revision": 20220826172526, 6974 + "revision": 20220923141408, 6808 6975 "schema_version": { 6809 6976 "no_update": false, 6810 6977 "url": "https://dl.google.com/dl/cloudsdk/channels/rapid/google-cloud-sdk.tar.gz", 6811 6978 "version": 3 6812 6979 }, 6813 - "version": "400.0.0" 6980 + "version": "404.0.0" 6814 6981 }
+11 -11
pkgs/tools/admin/google-cloud-sdk/data.nix
··· 1 1 # DO NOT EDIT! This file is generated automatically by update.sh 2 2 { }: 3 3 { 4 - version = "400.0.0"; 4 + version = "404.0.0"; 5 5 googleCloudSdkPkgs = { 6 6 x86_64-linux = 7 7 { 8 - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-400.0.0-linux-x86_64.tar.gz"; 9 - sha256 = "0i9xvg26d4rl3nas49rmxbmbwq127nwvgp0di7rszddj63wj7py9"; 8 + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-404.0.0-linux-x86_64.tar.gz"; 9 + sha256 = "0s2qr7krzd9z6s2i00qksxnxd1fcp318gxg8fm46rgh2r482k2k5"; 10 10 }; 11 11 x86_64-darwin = 12 12 { 13 - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-400.0.0-darwin-x86_64.tar.gz"; 14 - sha256 = "0ajywp16105yhxs5hv4cz7vg3jr9wqggb0fcimb23qpvn3xqh6xw"; 13 + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-404.0.0-darwin-x86_64.tar.gz"; 14 + sha256 = "11kzzny8a3xs1lijwwkv60qnmcxbfgzpmrdcqbcf6957b5ml6rsl"; 15 15 }; 16 16 aarch64-linux = 17 17 { 18 - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-400.0.0-linux-arm.tar.gz"; 19 - sha256 = "0dpl7cd1z05q0mgp5qxn23jjsvjhbfxhpjbd4pmhl62qp8x4m5mm"; 18 + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-404.0.0-linux-arm.tar.gz"; 19 + sha256 = "11yzs4cc9cn8xwv51mc2qmx84nbvv1zragsdy38wrmfpd5m27jx3"; 20 20 }; 21 21 aarch64-darwin = 22 22 { 23 - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-400.0.0-darwin-arm.tar.gz"; 24 - sha256 = "16lxw3vrydzn36zwvl74akfgxx6m7mrjfd3dc8kvl1wvbbdqqz3j"; 23 + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-404.0.0-darwin-arm.tar.gz"; 24 + sha256 = "03bc1hk3blky9x8wf3lhpblxv1zyq23wimzwd7bb00h35935x449"; 25 25 }; 26 26 i686-linux = 27 27 { 28 - url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-400.0.0-linux-x86.tar.gz"; 29 - sha256 = "09mn21ii17h8rfcmkwgmm3wpkiykgw9kc1dxjpaazxvxbmx0bi2y"; 28 + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-404.0.0-linux-x86.tar.gz"; 29 + sha256 = "0zhx9xbp090acdxlii7m94j792nlbvl4agjy35q1z8pi45hc7nl9"; 30 30 }; 31 31 }; 32 32 }
+1 -1
pkgs/tools/admin/google-cloud-sdk/update.sh
··· 6 6 7 7 # Version of Google Cloud SDK from 8 8 # https://cloud.google.com/sdk/docs/release-notes 9 - VERSION="400.0.0" 9 + VERSION="404.0.0" 10 10 11 11 function genMainSrc() { 12 12 local url="${BASE_URL}-${VERSION}-${1}-${2}.tar.gz"
+3 -3
pkgs/tools/backup/kopia/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kopia"; 5 - version = "0.12.0"; 5 + version = "0.12.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = pname; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-HiM9rEdC9q3MxU6TugnyMOefakFY47HhbCdJG83m+C8="; 11 + sha256 = "sha256-5zocfkNHsTFl3Sjwkr7dGnDY+4WO20F5AMgjfFulNd0="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-7eT2HeYxyUb3MUhdjZoAFs+6GzAyTUbvE0QlXnt06uU="; 14 + vendorSha256 = "sha256-Xmd4Q2X0cur4XGEjy1ysEEQkNqch4G+jGkPnrepgP6g="; 15 15 16 16 doCheck = false; 17 17
+27
pkgs/tools/misc/lazycli/default.nix
··· 1 + { lib, rustPlatform, fetchFromGitHub }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "lazycli"; 5 + version = "0.1.15"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "jesseduffield"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "1qq167hc7pp9l0m40ysphfljakmm8hjjnhpldvb0kbc825h0z8z5"; 12 + }; 13 + 14 + cargoSha256 = "sha256-1BIUXepR7ppEkTLDOCZz9RBv+RazNMXnCnH1rvzVFgs="; 15 + 16 + checkFlags = [ 17 + # currently broken: https://github.com/jesseduffield/lazycli/pull/20 18 + "--skip=command::test_run_command_fail" 19 + ]; 20 + 21 + meta = with lib; { 22 + description = "A tool to static turn CLI commands into TUIs"; 23 + homepage = "https://github.com/jesseduffield/lazycli"; 24 + license = licenses.mit; 25 + maintainers = with maintainers; [ figsoda ]; 26 + }; 27 + }
+2 -2
pkgs/tools/misc/remind/default.nix
··· 16 16 in 17 17 tcl.mkTclDerivation rec { 18 18 pname = "remind"; 19 - version = "04.00.03"; 19 + version = "04.01.00"; 20 20 21 21 src = fetchurl { 22 22 url = "https://dianne.skoll.ca/projects/remind/download/remind-${version}.tar.gz"; 23 - sha256 = "sha256-slTeBD7zk3aUxaRYBwrOtNz4cbWL0q57Me8SWwB3eHk="; 23 + sha256 = "sha256-P0aDmEHkxMGk3gwgDwFIlNNoLOfSZfOHU1VYQkOLQGE="; 24 24 }; 25 25 26 26 propagatedBuildInputs = tclLibraries;
+3 -3
pkgs/tools/misc/wayshot/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "wayshot"; 5 - version = "1.1.9"; 5 + version = "1.2.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "waycrate"; 9 9 repo = pname; 10 10 rev = version; 11 - hash = "sha256-4tzL/9p/qBCSWX+O7wZlKi9qb7mIt+hoxcQY7cWlFoU="; 11 + hash = "sha256-/uZ98ICdPTilUD3vBEbJ4AxGWY1xIbkK6O+bkhqIUKA="; 12 12 }; 13 13 14 - cargoHash = "sha256-/FAI2VUoyQ1+3CuA7sEpeF5oeJdGB9CRZEp1leLnTh4="; 14 + cargoHash = "sha256-j/gSrXY5n/zW3IogHewyrupTKtEm5EtOzfOzglyTP9A="; 15 15 16 16 meta = with lib; { 17 17 description = "A native, blazing-fast screenshot tool for wlroots based compositors such as sway and river";
+2 -2
pkgs/tools/misc/xdaliclock/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "xdaliclock"; 8 - version = "2.45"; 8 + version = "2.47"; 9 9 10 10 src = fetchurl { 11 11 url = "https://www.jwz.org/xdaliclock/${pname}-${version}.tar.gz"; 12 - hash = "sha256-GHjSUuRHCAVwWcDMRb2ng1aNbheu+xnUBNLqSpPkZeQ="; 12 + hash = "sha256-1Jkv9iulvyY+b5KryDr8s+v8LU95hcVi7PJQsL1rUL4="; 13 13 }; 14 14 15 15 # Note: don't change this to set sourceRoot, or updateAutotoolsGnuConfigScriptsHook
+2 -2
pkgs/tools/misc/yutto/default.nix
··· 14 14 15 15 buildPythonApplication rec { 16 16 pname = "yutto"; 17 - version = "2.0.0b13"; 17 + version = "2.0.0b15"; 18 18 format = "pyproject"; 19 19 20 20 disabled = pythonOlder "3.9"; 21 21 22 22 src = fetchPypi { 23 23 inherit pname version; 24 - sha256 = "sha256-XqfbvlaJoRPpwnaUA52KloOsEOIt3YM0cq36DZN6lR8="; 24 + hash = "sha256-TOFApMwY2WRYg2H2N0PIjylYFKnTHdszdU+AFgLYYwc="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+3 -3
pkgs/tools/security/fulcio/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "fulcio"; 5 - version = "0.5.3"; 5 + version = "0.6.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "sigstore"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-X943wqbgFX4Y15kCf+bxQP7OOTWksmmYghlAWPC2zVs="; 11 + sha256 = "sha256-ZWDvFSx+zH/P0ZfdqxAe+c4jFUH8mfY1vpUXlIxw1sI="; 12 12 # populate values that require us to use git. By doing this in postFetch we 13 13 # can delete .git afterwards and maintain better reproducibility of the src. 14 14 leaveDotGit = true; ··· 20 20 find "$out" -name .git -print0 | xargs -0 rm -rf 21 21 ''; 22 22 }; 23 - vendorSha256 = "sha256-1BsnNDZAIdLj13e/qL//bPrhYKrTIBvtC1C65WmGHY0="; 23 + vendorSha256 = "sha256-LLvaaOZzp9b99eYOsfvbPRwZqSNfoinVUfYDmPiw5Mk="; 24 24 25 25 nativeBuildInputs = [ installShellFiles ]; 26 26
+3 -3
pkgs/tools/security/quill/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "quill"; 5 - version = "0.2.7"; 5 + version = "0.2.17"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "dfinity"; 9 9 repo = "quill"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-3OlsCRpxRDKlfC0sa9MlFCupyRbDuqJQzDb9SQob1O0="; 11 + sha256 = "sha256-0DHTtnQU26l4DXUVDeHF+hkavlVY7rQykXxgWGSUc/k="; 12 12 }; 13 13 14 14 ic = fetchFromGitHub { ··· 30 30 export OPENSSL_LIB_DIR=${lib.getLib openssl}/lib 31 31 ''; 32 32 33 - cargoSha256 = "sha256-YxuBABGaZ+ti31seEYR6bB+OMgrSvl1lZyu4bqdxPIk="; 33 + cargoSha256 = "sha256-QgvQ0ptfb4L465hn/aBpVAUwSvm4MkpZlBQaVrinkq4="; 34 34 35 35 nativeBuildInputs = [ pkg-config protobuf ]; 36 36 buildInputs = [ openssl ]
+3 -3
pkgs/tools/system/consul-template/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "consul-template"; 5 - version = "0.29.2"; 5 + version = "0.29.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "hashicorp"; 9 9 repo = "consul-template"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-wvnOKbxS1j+MhmOs9INPusA1whLDo1sLGNxmzBQWPWc="; 11 + sha256 = "sha256-jFj5iVUS7qpH4Aq35KS8IDKA7PzGgire+flBpkCgwuA="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-uR1hzP17hFo9DUNCeKcwepZSxJJoV8WBsX9l+1CR4Ek="; 14 + vendorSha256 = "sha256-GKohljwH4/kBPoI3/RfxYsvzISv1WmVAo96sjKJrnHk="; 15 15 16 16 # consul-template tests depend on vault and consul services running to 17 17 # execute tests so we skip them here
+2 -2
pkgs/tools/system/stress-ng/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "stress-ng"; 7 - version = "0.14.03"; 7 + version = "0.14.06"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "ColinIanKing"; 11 11 repo = pname; 12 12 rev = "V${version}"; 13 - hash = "sha256-6aA0dWP6q6SJ8TYGctDE2rhDCO5QuAO4cx4J9id9hjY="; 13 + hash = "sha256-akWvX22oJT/V5Zvsk7AXXIFK1AjfWEzMZXAwpJCc0M0="; 14 14 }; 15 15 16 16 postPatch = ''
+2 -2
pkgs/tools/typesetting/ted/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, zlib, pcre, xorg, libjpeg, libtiff, libpng, gtk2, libpaper, makeWrapper, ghostscript }: 1 + { lib, stdenv, fetchurl, pkg-config, zlib, pcre, xlibsWrapper, xorg, libjpeg, libtiff, libpng, gtk2, libpaper, makeWrapper, ghostscript }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "ted"; ··· 59 59 ''; 60 60 61 61 nativeBuildInputs = [ pkg-config makeWrapper ]; 62 - buildInputs = [ zlib pcre xorg.xlibsWrapper xorg.libXpm libjpeg libtiff libpng gtk2 libpaper ]; 62 + buildInputs = [ zlib pcre xlibsWrapper xorg.libXpm libjpeg libtiff libpng gtk2 libpaper ]; 63 63 64 64 meta = with lib; { 65 65 description = "An easy rich text processor";
+9 -6
pkgs/top-level/all-packages.nix
··· 1749 1749 inherit (qt5) wrapQtAppsHook; 1750 1750 }; 1751 1751 1752 + felix-fm = callPackage ../applications/file-managers/felix-fm { }; 1753 + 1752 1754 joshuto = callPackage ../applications/file-managers/joshuto { 1753 1755 inherit (darwin.apple_sdk.frameworks) SystemConfiguration Foundation; 1754 1756 }; ··· 3917 3919 }; 3918 3920 3919 3921 faudio = callPackage ../development/libraries/faudio { }; 3922 + 3923 + fblog = callPackage ../development/tools/fblog { }; 3920 3924 3921 3925 fd = callPackage ../tools/misc/fd { }; 3922 3926 ··· 8589 8593 8590 8594 latexrun = callPackage ../tools/typesetting/tex/latexrun { }; 8591 8595 8596 + lazycli = callPackage ../tools/misc/lazycli { }; 8597 + 8592 8598 lcdf-typetools = callPackage ../tools/misc/lcdf-typetools { }; 8593 8599 8594 8600 ldapmonitor = callPackage ../tools/security/ldapmonitor { }; ··· 13379 13385 13380 13386 devpi-client = python3Packages.callPackage ../development/tools/devpi-client {}; 13381 13387 13382 - devpi-server = callPackage ../development/tools/devpi-server {}; 13388 + devpi-server = python3Packages.callPackage ../development/tools/devpi-server {}; 13383 13389 13384 13390 dictu = callPackage ../development/compilers/dictu { }; 13385 13391 ··· 23112 23118 grafana = callPackage ../servers/monitoring/grafana { }; 23113 23119 grafanaPlugins = callPackages ../servers/monitoring/grafana/plugins { }; 23114 23120 23115 - grafana-agent = callPackage ../servers/monitoring/grafana-agent { 23116 - # pinned due to build failure or vendoring problems. When unpinning double check with: nix-build -A $name.go-modules --rebuild 23117 - buildGoModule = buildGo117Module; 23118 - }; 23121 + grafana-agent = callPackage ../servers/monitoring/grafana-agent { }; 23119 23122 23120 23123 grafana-loki = callPackage ../servers/monitoring/loki { }; 23121 23124 ··· 24118 24121 libdrm = if stdenv.isLinux then libdrm else null; 24119 24122 abiCompat = config.xorg.abiCompat # `config` because we have no `xorg.override` 24120 24123 or (if stdenv.isDarwin then "1.18" else null); # 1.19 needs fixing on Darwin 24121 - }) // { inherit xlibsWrapper; } ); 24124 + })); 24122 24125 24123 24126 xorg-autoconf = callPackage ../development/tools/misc/xorg-autoconf { }; 24124 24127
+1 -1
pkgs/top-level/config.nix
··· 130 130 131 131 checkMeta = mkOption { 132 132 type = types.bool; 133 - default = true; 133 + default = false; 134 134 description = '' 135 135 Whether to check that the `meta` attribute of derivations are correct during evaluation time. 136 136 '';
+3 -8
pkgs/top-level/perl-packages.nix
··· 15733 15733 15734 15734 mod_perl2 = buildPerlPackage { 15735 15735 pname = "mod_perl"; 15736 - version = "2.0.11"; 15736 + version = "2.0.12"; 15737 15737 src = fetchurl { 15738 - url = "mirror://cpan/authors/id/S/SH/SHAY/mod_perl-2.0.11.tar.gz"; 15739 - hash = "sha256-yiqeGM35D5xgI+eGNp1bp16NrCkuv+qZAMKb9C3Bb3Q="; 15738 + url = "mirror://cpan/authors/id/S/SH/SHAY/mod_perl-2.0.12.tar.gz"; 15739 + hash = "sha256-9bghtZsP3JZw5G7Q/PMtiRHyUSYYmotowWUvkiHu4mk="; 15740 15740 }; 15741 - 15742 - patches = [ 15743 - # Fix build on perl-5.34.0, https://github.com/Perl/perl5/issues/18617 15744 - ../development/perl-modules/mod_perl2-PL_hash_seed.patch 15745 - ]; 15746 15741 15747 15742 makeMakerFlags = "MP_AP_DESTDIR=$out"; 15748 15743 buildInputs = [ pkgs.apacheHttpd ];