Merge remote-tracking branch 'origin/staging-next' into staging

K900 85b2817d 507782c3

+1754 -1362
+2
nixos/doc/manual/release-notes/rl-2505.section.md
··· 227 227 228 228 - `pkgs.nextcloud28` has been removed since it's out of support upstream. 229 229 230 + - `services.cloudflare-dyndns.apiTokenFile` now must be just your Cloudflare api token. Previously it was supposed to be a file of the form `CLOUDFLARE_API_TOKEN=...`. 231 + 230 232 - Emacs lisp build helpers, such as `emacs.pkgs.melpaBuild`, now enables `__structuredAttrs` by default. 231 233 Environment variables have to be passed via the `env` attribute. 232 234
+1 -1
nixos/modules/config/fonts/fontconfig.nix
··· 58 58 <fontconfig> 59 59 <!-- Font directories --> 60 60 ${lib.concatStringsSep "\n" (map (font: "<dir>${font}</dir>") config.fonts.packages)} 61 - ${lib.optionalString (pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform) '' 61 + ${lib.optionalString (pkgs.stdenv.hostPlatform.emulatorAvailable pkgs.buildPackages) '' 62 62 <!-- Pre-generated font caches --> 63 63 <cachedir>${cache}</cachedir> 64 64 ${lib.optionalString (pkgs.stdenv.hostPlatform.isx86_64 && cfg.cache32Bit) ''
+32 -15
nixos/modules/services/networking/cloudflare-dyndns.nix
··· 15 15 package = lib.mkPackageOption pkgs "cloudflare-dyndns" { }; 16 16 17 17 apiTokenFile = lib.mkOption { 18 - type = lib.types.nullOr lib.types.str; 19 - default = null; 18 + type = lib.types.pathWith { 19 + absolute = true; 20 + inStore = false; 21 + }; 22 + 20 23 description = '' 21 24 The path to a file containing the CloudFlare API token. 22 - 23 - The file must have the form `CLOUDFLARE_API_TOKEN=...` 24 25 ''; 25 26 }; 26 27 ··· 91 92 Type = "simple"; 92 93 DynamicUser = true; 93 94 StateDirectory = "cloudflare-dyndns"; 94 - EnvironmentFile = cfg.apiTokenFile; 95 95 Environment = [ "XDG_CACHE_HOME=%S/cloudflare-dyndns/.cache" ]; 96 - ExecStart = 97 - let 98 - args = 99 - [ "--cache-file /var/lib/cloudflare-dyndns/ip.cache" ] 100 - ++ (if cfg.ipv4 then [ "-4" ] else [ "-no-4" ]) 101 - ++ (if cfg.ipv6 then [ "-6" ] else [ "-no-6" ]) 102 - ++ lib.optional cfg.deleteMissing "--delete-missing" 103 - ++ lib.optional cfg.proxied "--proxied"; 104 - in 105 - "${lib.getExe cfg.package} ${toString args}"; 96 + LoadCredential = [ 97 + "apiToken:${cfg.apiTokenFile}" 98 + ]; 106 99 }; 100 + 101 + script = 102 + let 103 + args = 104 + [ "--cache-file /var/lib/cloudflare-dyndns/ip.cache" ] 105 + ++ (if cfg.ipv4 then [ "-4" ] else [ "-no-4" ]) 106 + ++ (if cfg.ipv6 then [ "-6" ] else [ "-no-6" ]) 107 + ++ lib.optional cfg.deleteMissing "--delete-missing" 108 + ++ lib.optional cfg.proxied "--proxied"; 109 + in 110 + '' 111 + export CLOUDFLARE_API_TOKEN=$(< "''${CREDENTIALS_DIRECTORY}/apiToken") 112 + 113 + # Added 2025-03-10: `cfg.apiTokenFile` used to be passed as an 114 + # `EnvironmentFile` to the service, which required it to be of 115 + # the form "CLOUDFLARE_API_TOKEN=" rather than just the secret. 116 + # If we detect this legacy usage, error out. 117 + if [[ $CLOUDFLARE_API_TOKEN == CLOUDFLARE_API_TOKEN* ]]; then 118 + echo "Error: your api token starts with 'CLOUDFLARE_API_TOKEN='. Remove that, and instead specify just the token." >&2 119 + exit 1 120 + fi 121 + 122 + exec ${lib.getExe cfg.package} ${toString args} 123 + ''; 107 124 } 108 125 // lib.optionalAttrs (cfg.frequency != null) { 109 126 startAt = cfg.frequency;
+7 -4
pkgs/applications/editors/emacs/make-emacs.nix
··· 460 460 NATIVE_FULL_AOT = "1"; 461 461 LIBRARY_PATH = lib.concatStringsSep ":" libGccJitLibraryPaths; 462 462 } 463 - // lib.optionalAttrs (variant == "macport") { 464 - # Fixes intermittent segfaults when compiled with LLVM >= 7.0. 465 - # See https://github.com/NixOS/nixpkgs/issues/127902 466 - NIX_CFLAGS_COMPILE = "-include ${./macport_noescape_noop.h}"; 463 + // { 464 + NIX_CFLAGS_COMPILE = lib.concatStringsSep " " [ 465 + # Fixes intermittent segfaults when compiled with LLVM >= 7.0. 466 + # See https://github.com/NixOS/nixpkgs/issues/127902 467 + (lib.optionalString (variant == "macport") "-include ${./macport_noescape_noop.h}") 468 + (lib.optionalString stdenv.hostPlatform.isDarwin "-DFD_SETSIZE=10000 -DDARWIN_UNLIMITED_SELECT") 469 + ]; 467 470 }; 468 471 469 472 enableParallelBuilding = true;
-177
pkgs/applications/emulators/dolphin-emu/default.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchFromGitHub 4 - , cmake 5 - , pkg-config 6 - , wrapQtAppsHook 7 - , alsa-lib 8 - , bluez 9 - , bzip2 10 - , cubeb 11 - , curl 12 - , enet 13 - , ffmpeg 14 - , fmt_10 15 - , gtest 16 - , hidapi 17 - , libevdev 18 - , libGL 19 - , libiconv 20 - , libpulseaudio 21 - , libspng 22 - , libusb1 23 - , libXdmcp 24 - , libXext 25 - , libXrandr 26 - , lz4 27 - , lzo 28 - , mbedtls_2 29 - , miniupnpc 30 - , minizip-ng 31 - , openal 32 - , pugixml 33 - , qtbase 34 - , qtsvg 35 - , SDL2 36 - , sfml 37 - , udev 38 - , vulkan-loader 39 - , xxHash 40 - , xz 41 - 42 - # Used in passthru 43 - , testers 44 - 45 - # Darwin-only dependencies 46 - , CoreBluetooth 47 - , ForceFeedback 48 - , IOBluetooth 49 - , IOKit 50 - , moltenvk 51 - , OpenGL 52 - , VideoToolbox 53 - , xcbuild 54 - }: 55 - 56 - stdenv.mkDerivation (finalAttrs: { 57 - pname = "dolphin-emu"; 58 - version = "2503"; 59 - 60 - src = fetchFromGitHub { 61 - owner = "dolphin-emu"; 62 - repo = "dolphin"; 63 - tag = finalAttrs.version; 64 - hash = "sha256-oqJKXFcsFgoYjUqdk3Z/CIFhOa8w0drcF4JwtHRI1Hs="; 65 - fetchSubmodules = true; 66 - }; 67 - 68 - strictDeps = true; 69 - 70 - nativeBuildInputs = [ 71 - cmake 72 - pkg-config 73 - wrapQtAppsHook 74 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 75 - xcbuild # for plutil 76 - ]; 77 - 78 - buildInputs = [ 79 - bzip2 80 - cubeb 81 - curl 82 - enet 83 - ffmpeg 84 - fmt_10 85 - gtest 86 - hidapi 87 - libiconv 88 - libpulseaudio 89 - libspng 90 - libusb1 91 - libXdmcp 92 - lz4 93 - lzo 94 - mbedtls_2 95 - miniupnpc 96 - minizip-ng 97 - openal 98 - pugixml 99 - qtbase 100 - qtsvg 101 - SDL2 102 - sfml 103 - xxHash 104 - xz 105 - # Causes linker errors with minizip-ng, prefer vendored. Possible reason why: https://github.com/dolphin-emu/dolphin/pull/12070#issuecomment-1677311838 106 - #zlib-ng 107 - ] ++ lib.optionals stdenv.hostPlatform.isLinux [ 108 - alsa-lib 109 - bluez 110 - libevdev 111 - libGL 112 - libXext 113 - libXrandr 114 - # FIXME: Vendored version is newer than mgba's stable release, remove the comment on next mgba's version 115 - #mgba # Derivation doesn't support Darwin 116 - udev 117 - vulkan-loader 118 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 119 - CoreBluetooth 120 - ForceFeedback 121 - IOBluetooth 122 - IOKit 123 - moltenvk 124 - OpenGL 125 - VideoToolbox 126 - ]; 127 - 128 - cmakeFlags = [ 129 - "-DDISTRIBUTOR=NixOS" 130 - "-DDOLPHIN_WC_REVISION=${finalAttrs.src.rev}" 131 - "-DDOLPHIN_WC_DESCRIBE=${finalAttrs.version}" 132 - "-DDOLPHIN_WC_BRANCH=master" 133 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 134 - "-DOSX_USE_DEFAULT_SEARCH_PATH=True" 135 - "-DUSE_BUNDLED_MOLTENVK=OFF" 136 - "-DMACOS_CODE_SIGNING=OFF" 137 - # Bundles the application folder into a standalone executable, so we cannot devendor libraries 138 - "-DSKIP_POSTPROCESS_BUNDLE=ON" 139 - # Needs xcode so compilation fails with it enabled. We would want the version to be fixed anyways. 140 - # Note: The updater isn't available on linux, so we don't need to disable it there. 141 - "-DENABLE_AUTOUPDATE=OFF" 142 - ]; 143 - 144 - qtWrapperArgs = lib.optionals stdenv.hostPlatform.isLinux [ 145 - "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ vulkan-loader ]}" 146 - # https://bugs.dolphin-emu.org/issues/11807 147 - # The .desktop file should already set this, but Dolphin may be launched in other ways 148 - "--set QT_QPA_PLATFORM xcb" 149 - ]; 150 - 151 - postInstall = lib.optionalString stdenv.hostPlatform.isLinux '' 152 - install -D $src/Data/51-usb-device.rules $out/etc/udev/rules.d/51-usb-device.rules 153 - '' + lib.optionalString stdenv.hostPlatform.isDarwin '' 154 - # Only gets installed automatically if the standalone executable is used 155 - mkdir -p $out/Applications 156 - cp -r ./Binaries/Dolphin.app $out/Applications 157 - ln -s $out/Applications/Dolphin.app/Contents/MacOS/Dolphin $out/bin 158 - ''; 159 - 160 - passthru = { 161 - tests.version = testers.testVersion { 162 - package = finalAttrs.finalPackage; 163 - command = "dolphin-emu-nogui --version"; 164 - inherit (finalAttrs) version; 165 - }; 166 - }; 167 - 168 - meta = with lib; { 169 - homepage = "https://dolphin-emu.org"; 170 - description = "Gamecube/Wii/Triforce emulator for x86_64 and ARMv8"; 171 - mainProgram = if stdenv.hostPlatform.isDarwin then "Dolphin" else "dolphin-emu"; 172 - branch = "master"; 173 - license = licenses.gpl2Plus; 174 - platforms = platforms.unix; 175 - maintainers = with maintainers; [ pbsds ]; 176 - }; 177 - })
+96 -80
pkgs/applications/emulators/dolphin-emu/primehack.nix pkgs/by-name/do/dolphin-emu-primehack/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromGitHub, 5 + 6 + # nativeBuildInputs 5 7 pkg-config, 6 8 cmake, 7 - wrapQtAppsHook, 8 - qtbase, 9 - qtsvg, 10 - bluez, 9 + qt6, 10 + 11 + # buildInputs 12 + curl, 13 + enet, 11 14 ffmpeg, 12 - libao, 13 - libGLU, 14 - libGL, 15 - pcre, 15 + fmt, 16 16 gettext, 17 - libXrandr, 18 - libusb1, 19 - libpthreadstubs, 20 - libXext, 21 - libXxf86vm, 22 - libXinerama, 17 + libGL, 18 + libGLU, 23 19 libSM, 24 20 libXdmcp, 25 - readline, 21 + libXext, 22 + libXinerama, 23 + libXrandr, 24 + libXxf86vm, 25 + libao, 26 + libpthreadstubs, 27 + libpulseaudio, 28 + libusb1, 29 + mbedtls_2, 30 + miniupnpc, 26 31 openal, 27 - udev, 28 - libevdev, 32 + pcre, 29 33 portaudio, 30 - curl, 31 - alsa-lib, 32 - miniupnpc, 33 - enet, 34 - mbedtls_2, 35 - soundtouch, 34 + readline, 36 35 sfml, 37 - fmt, 36 + soundtouch, 38 37 xz, 38 + # linux-only 39 + alsa-lib, 40 + bluez, 41 + libevdev, 42 + udev, 39 43 vulkan-loader, 40 - libpulseaudio, 41 - 42 - # - Inputs used for Darwin 43 - CoreBluetooth, 44 - ForceFeedback, 45 - IOKit, 46 - OpenGL, 44 + # darwin-only 45 + hidapi, 47 46 libpng, 48 - hidapi, 47 + 48 + # passthru 49 + testers, 50 + nix-update-script, 49 51 }: 50 52 51 - stdenv.mkDerivation rec { 53 + stdenv.mkDerivation (finalAttrs: { 52 54 pname = "dolphin-emu-primehack"; 53 55 version = "1.0.7a"; 54 56 55 57 src = fetchFromGitHub { 56 58 owner = "shiiion"; 57 59 repo = "dolphin"; 58 - rev = version; 59 - hash = "sha256-vuTSXQHnR4HxAGGiPg5tUzfiXROU3+E9kyjH+T6zVmc="; 60 + tag = finalAttrs.version; 60 61 fetchSubmodules = true; 62 + hash = "sha256-vuTSXQHnR4HxAGGiPg5tUzfiXROU3+E9kyjH+T6zVmc="; 61 63 }; 62 64 63 - nativeBuildInputs = [ 64 - pkg-config 65 - cmake 66 - ] ++ lib.optional stdenv.hostPlatform.isLinux wrapQtAppsHook; 65 + nativeBuildInputs = 66 + [ 67 + pkg-config 68 + cmake 69 + ] 70 + ++ lib.optionals stdenv.hostPlatform.isLinux [ 71 + qt6.wrapQtAppsHook 72 + ]; 67 73 68 74 buildInputs = 69 75 [ 70 76 curl 77 + enet 71 78 ffmpeg 72 - libao 73 - libGLU 74 - libGL 75 - pcre 79 + fmt 76 80 gettext 77 - libpthreadstubs 78 - libpulseaudio 79 - libXrandr 80 - libXext 81 - libXxf86vm 82 - libXinerama 81 + libGL 82 + libGLU 83 83 libSM 84 - readline 85 - openal 86 84 libXdmcp 87 - portaudio 85 + libXext 86 + libXinerama 87 + libXrandr 88 + libXxf86vm 89 + libao 90 + libpthreadstubs 91 + libpulseaudio 88 92 libusb1 89 - libpng 90 - hidapi 93 + mbedtls_2 91 94 miniupnpc 92 - enet 93 - mbedtls_2 94 - soundtouch 95 + openal 96 + pcre 97 + portaudio 98 + qt6.qtbase 99 + qt6.qtsvg 100 + readline 95 101 sfml 96 - fmt 102 + soundtouch 97 103 xz 98 - qtbase 99 - qtsvg 100 104 ] 101 105 ++ lib.optionals stdenv.hostPlatform.isLinux [ 106 + alsa-lib 102 107 bluez 108 + libevdev 103 109 udev 104 - libevdev 105 - alsa-lib 106 110 vulkan-loader 107 111 ] 108 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 109 - CoreBluetooth 110 - OpenGL 111 - ForceFeedback 112 - IOKit 112 + ++ lib.optionals stdenv.hostPlatform.isLinux [ 113 + hidapi 114 + libpng 113 115 ]; 114 116 115 117 cmakeFlags = 116 118 [ 117 - "-DUSE_SHARED_ENET=ON" 118 - "-DENABLE_LTO=ON" 119 + (lib.cmakeBool "USE_SHARED_ENET" true) 120 + (lib.cmakeBool "ENABLE_LTO" true) 119 121 ] 120 122 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 121 - "-DOSX_USE_DEFAULT_SEARCH_PATH=True" 123 + (lib.cmakeBool "OSX_USE_DEFAULT_SEARCH_PATH" true) 122 124 ]; 123 125 124 126 qtWrapperArgs = lib.optionals stdenv.hostPlatform.isLinux [ ··· 131 133 # - Allow Dolphin to use nix-provided libraries instead of building them 132 134 postPatch = 133 135 '' 134 - substituteInPlace CMakeLists.txt --replace 'DISTRIBUTOR "None"' 'DISTRIBUTOR "NixOS"' 136 + substituteInPlace CMakeLists.txt \ 137 + --replace-fail 'DISTRIBUTOR "None"' 'DISTRIBUTOR "NixOS"' 135 138 '' 136 139 + lib.optionalString stdenv.hostPlatform.isDarwin '' 137 - substituteInPlace CMakeLists.txt --replace 'if(NOT APPLE)' 'if(true)' 138 - substituteInPlace CMakeLists.txt --replace 'if(LIBUSB_FOUND AND NOT APPLE)' 'if(LIBUSB_FOUND)' 140 + substituteInPlace CMakeLists.txt \ 141 + --replace-fail 'if(NOT APPLE)' 'if(true)' \ 142 + --replace-fail 'if(LIBUSB_FOUND AND NOT APPLE)' 'if(LIBUSB_FOUND)' 139 143 ''; 140 144 141 145 postInstall = ··· 144 148 mv $out/bin/dolphin-emu-nogui $out/bin/dolphin-emu-primehack-nogui 145 149 mv $out/share/applications/dolphin-emu.desktop $out/share/applications/dolphin-emu-primehack.desktop 146 150 mv $out/share/icons/hicolor/256x256/apps/dolphin-emu.png $out/share/icons/hicolor/256x256/apps/dolphin-emu-primehack.png 147 - substituteInPlace $out/share/applications/dolphin-emu-primehack.desktop --replace 'dolphin-emu' 'dolphin-emu-primehack' 148 - substituteInPlace $out/share/applications/dolphin-emu-primehack.desktop --replace 'Dolphin Emulator' 'PrimeHack' 151 + substituteInPlace $out/share/applications/dolphin-emu-primehack.desktop \ 152 + --replace-fail 'dolphin-emu' 'dolphin-emu-primehack' \ 153 + --replace-fail 'Dolphin Emulator' 'PrimeHack' 149 154 '' 150 155 + lib.optionalString stdenv.hostPlatform.isLinux '' 151 156 install -D $src/Data/51-usb-device.rules $out/etc/udev/rules.d/51-usb-device.rules 152 157 ''; 153 158 154 - meta = with lib; { 159 + passthru = { 160 + tests = { 161 + version = testers.testVersion { 162 + package = finalAttrs.finalPackage; 163 + command = "dolphin-emu-primehack-nogui --version"; 164 + version = "v${finalAttrs.version}"; 165 + }; 166 + }; 167 + updateScript = nix-update-script { }; 168 + }; 169 + 170 + meta = { 155 171 homepage = "https://github.com/shiiion/dolphin"; 156 172 description = "Gamecube/Wii/Triforce emulator for x86_64 and ARMv8"; 157 - license = licenses.gpl2Plus; 158 - maintainers = with maintainers; [ Madouura ]; 173 + license = lib.licenses.gpl2Plus; 174 + maintainers = with lib.maintainers; [ Madouura ]; 159 175 broken = stdenv.hostPlatform.isDarwin; 160 - platforms = platforms.unix; 176 + platforms = lib.platforms.unix; 161 177 }; 162 - } 178 + })
+2 -2
pkgs/applications/misc/ausweisapp/default.nix
··· 16 16 }: 17 17 stdenv.mkDerivation (finalAttrs: { 18 18 pname = "ausweisapp"; 19 - version = "2.3.0"; 19 + version = "2.3.1"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "Governikus"; 23 23 repo = "AusweisApp2"; 24 24 rev = finalAttrs.version; 25 - hash = "sha256-/X+S91EA7jrjSYb/jafmRhbbZJUQyg1DoTkzd4ZRjWY="; 25 + hash = "sha256-1G9H+1YBoIgSE8GO8UuUaG9gbVtY+gCp0oPNSNw0oO8="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+2 -2
pkgs/applications/misc/zettlr/default.nix
··· 2 2 3 3 builtins.mapAttrs (pname: attrs: callPackage ./generic.nix (attrs // { inherit pname; })) { 4 4 zettlr = { 5 - version = "3.2.0"; 6 - hash = "sha256-gttDGWFJ/VmOyqgOSKnCqqPtNTKJd1fmDpa0ZAX3xc8="; 5 + version = "3.4.3"; 6 + hash = "sha256-Xb9zszbkHWAaIcu74EGQH0PVbuXIZXH/dja1F1Hkx1c="; 7 7 }; 8 8 }
+1
pkgs/applications/networking/cluster/terraform-landscape/Gemfile
··· 1 1 source 'https://rubygems.org' 2 2 gem 'terraform_landscape' 3 + gem 'abbrev'
+9 -7
pkgs/applications/networking/cluster/terraform-landscape/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 + abbrev (0.1.2) 4 5 colorize (0.8.1) 5 - commander (4.4.6) 6 - highline (~> 1.7.2) 7 - diffy (3.2.1) 8 - highline (1.7.10) 6 + commander (4.6.0) 7 + highline (~> 2.0.0) 8 + diffy (3.4.3) 9 + highline (2.0.3) 9 10 polyglot (0.3.5) 10 - terraform_landscape (0.2.1) 11 + terraform_landscape (0.3.4) 11 12 colorize (~> 0.7) 12 13 commander (~> 4.4) 13 14 diffy (~> 3.0) 14 15 treetop (~> 1.6) 15 - treetop (1.6.10) 16 + treetop (1.6.14) 16 17 polyglot (~> 0.3) 17 18 18 19 PLATFORMS 19 20 ruby 20 21 21 22 DEPENDENCIES 23 + abbrev 22 24 terraform_landscape 23 25 24 26 BUNDLED WITH 25 - 2.1.4 27 + 2.6.2
+24 -10
pkgs/applications/networking/cluster/terraform-landscape/gemset.nix
··· 1 1 { 2 2 colorize = { 3 + groups = [ "default" ]; 4 + platforms = [ ]; 3 5 source = { 4 6 remotes = [ "https://rubygems.org" ]; 5 7 sha256 = "133rqj85n400qk6g3dhf2bmfws34mak1wqihvh3bgy9jhajw580b"; ··· 9 11 }; 10 12 commander = { 11 13 dependencies = [ "highline" ]; 14 + groups = [ "default" ]; 15 + platforms = [ ]; 12 16 source = { 13 17 remotes = [ "https://rubygems.org" ]; 14 - sha256 = "11sd2sb0id2dbxkv4pvymdiia1xxhms45kh4nr8mryqybad0fwwf"; 18 + sha256 = "1n8k547hqq9hvbyqbx2qi08g0bky20bbjca1df8cqq5frhzxq7bx"; 15 19 type = "gem"; 16 20 }; 17 - version = "4.4.6"; 21 + version = "4.6.0"; 18 22 }; 19 23 diffy = { 24 + groups = [ "default" ]; 25 + platforms = [ ]; 20 26 source = { 21 27 remotes = [ "https://rubygems.org" ]; 22 - sha256 = "119imrkn01agwhx5raxhknsi331y5i4yda7r0ws0an6905ximzjg"; 28 + sha256 = "19xaz5qmw0kg1rdsjh13vk7674bpcmjy6cnddx1cvl80vgkvjr22"; 23 29 type = "gem"; 24 30 }; 25 - version = "3.2.1"; 31 + version = "3.4.3"; 26 32 }; 27 33 highline = { 34 + groups = [ "default" ]; 35 + platforms = [ ]; 28 36 source = { 29 37 remotes = [ "https://rubygems.org" ]; 30 - sha256 = "01ib7jp85xjc4gh4jg0wyzllm46hwv8p0w1m4c75pbgi41fps50y"; 38 + sha256 = "0yclf57n2j3cw8144ania99h1zinf8q3f5zrhqa754j6gl95rp9d"; 31 39 type = "gem"; 32 40 }; 33 - version = "1.7.10"; 41 + version = "2.0.3"; 34 42 }; 35 43 polyglot = { 44 + groups = [ "default" ]; 45 + platforms = [ ]; 36 46 source = { 37 47 remotes = [ "https://rubygems.org" ]; 38 48 sha256 = "1bqnxwyip623d8pr29rg6m8r0hdg08fpr2yb74f46rn1wgsnxmjr"; ··· 47 57 "diffy" 48 58 "treetop" 49 59 ]; 60 + groups = [ "default" ]; 61 + platforms = [ ]; 50 62 source = { 51 63 remotes = [ "https://rubygems.org" ]; 52 - sha256 = "1i93pih7r6zcqpjhsmvkpfkgbh0l66c60i6fkiymq7vy2xd6wnns"; 64 + sha256 = "1lcsqasn8k2i6kxy9sv76mvf8s60qkdg3a3sb5shj6lvh2dk8n8s"; 53 65 type = "gem"; 54 66 }; 55 - version = "0.2.1"; 67 + version = "0.3.4"; 56 68 }; 57 69 treetop = { 58 70 dependencies = [ "polyglot" ]; 71 + groups = [ "default" ]; 72 + platforms = [ ]; 59 73 source = { 60 74 remotes = [ "https://rubygems.org" ]; 61 - sha256 = "0g31pijhnv7z960sd09lckmw9h8rs3wmc8g4ihmppszxqm99zpv7"; 75 + sha256 = "1m5fqy7vq6y7bgxmw7jmk7y6pla83m16p7lb41lbqgg53j8x2cds"; 62 76 type = "gem"; 63 77 }; 64 - version = "1.6.10"; 78 + version = "1.6.14"; 65 79 }; 66 80 }
+265 -265
pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
··· 1 1 { 2 - version = "128.8.0esr"; 2 + version = "128.8.1esr"; 3 3 sources = [ 4 4 { 5 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/af/thunderbird-128.8.0esr.tar.bz2"; 5 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/af/thunderbird-128.8.1esr.tar.bz2"; 6 6 locale = "af"; 7 7 arch = "linux-x86_64"; 8 - sha256 = "9588d0fe6fd2368bb0fb509364e57fc03438992da3d73928f533d9f1fe4d0023"; 8 + sha256 = "1013fceb548167ca90b7125291eb85bca2d2e9a3ae4f414f6c7d2a6848bc1b45"; 9 9 } 10 10 { 11 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/ar/thunderbird-128.8.0esr.tar.bz2"; 11 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/ar/thunderbird-128.8.1esr.tar.bz2"; 12 12 locale = "ar"; 13 13 arch = "linux-x86_64"; 14 - sha256 = "9eea4ca2f14295953006e95163b9311a4d466520b46b7bef1ce9fcdc1215ab4d"; 14 + sha256 = "a1c1ec155cdf1ca9ce1e56202da91fb7c6f30ed3f6db7ad1971ac4fdbd4bbb6b"; 15 15 } 16 16 { 17 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/ast/thunderbird-128.8.0esr.tar.bz2"; 17 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/ast/thunderbird-128.8.1esr.tar.bz2"; 18 18 locale = "ast"; 19 19 arch = "linux-x86_64"; 20 - sha256 = "afbf4ef8c79c6f70b3c3a41caf1dc25a6531de855e3729859f06c62159e63d1a"; 20 + sha256 = "a85e37acbbdf1c3361b35bb5ab38b49124322923836feb937a7acdbb61e16cf6"; 21 21 } 22 22 { 23 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/be/thunderbird-128.8.0esr.tar.bz2"; 23 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/be/thunderbird-128.8.1esr.tar.bz2"; 24 24 locale = "be"; 25 25 arch = "linux-x86_64"; 26 - sha256 = "7eb6f634aaa165533d023e3b948457139c32d10305c76470e7670ce4e2e94d08"; 26 + sha256 = "3db91b4244478bc98a160b45a9d26069f35cf128a7552b3ea036c8998f28ee24"; 27 27 } 28 28 { 29 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/bg/thunderbird-128.8.0esr.tar.bz2"; 29 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/bg/thunderbird-128.8.1esr.tar.bz2"; 30 30 locale = "bg"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "008ea5f4e6f045848dcef59d054bb09b354f6954536fe99885afe6070266a504"; 32 + sha256 = "7c70e78e6e5bc46466a01921dc7341724752211a59201d07933c20d0f0343991"; 33 33 } 34 34 { 35 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/br/thunderbird-128.8.0esr.tar.bz2"; 35 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/br/thunderbird-128.8.1esr.tar.bz2"; 36 36 locale = "br"; 37 37 arch = "linux-x86_64"; 38 - sha256 = "0a57171647f6715dd5f585cec30dfe6b02b98dc5c4ed5127357b84d4eb086b82"; 38 + sha256 = "e3c187dbaa095b046a0797d4448c717416c457312abeef910595940638f0450e"; 39 39 } 40 40 { 41 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/ca/thunderbird-128.8.0esr.tar.bz2"; 41 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/ca/thunderbird-128.8.1esr.tar.bz2"; 42 42 locale = "ca"; 43 43 arch = "linux-x86_64"; 44 - sha256 = "2b1cbdc07b1365ba05fd6f9562bdf93ef2e078a42e3a54ae28871e9399673ca7"; 44 + sha256 = "dc5fb1457bff9ca89d96472d5bed05150e6968dec081f3ecf83db7fd77b672e5"; 45 45 } 46 46 { 47 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/cak/thunderbird-128.8.0esr.tar.bz2"; 47 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/cak/thunderbird-128.8.1esr.tar.bz2"; 48 48 locale = "cak"; 49 49 arch = "linux-x86_64"; 50 - sha256 = "4aa28604aacdcb2af30a166bd96fba5b3e41b088bae36056bc80a4f1d0a0053c"; 50 + sha256 = "db0cf8c9769d1f43dd10d9981837bc9eee8d561c0caa3170f76caef5e8de8cf3"; 51 51 } 52 52 { 53 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/cs/thunderbird-128.8.0esr.tar.bz2"; 53 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/cs/thunderbird-128.8.1esr.tar.bz2"; 54 54 locale = "cs"; 55 55 arch = "linux-x86_64"; 56 - sha256 = "6250f19ef04adfcaeac9af92745cf984c004497da887de8148b0f60bfbba3b24"; 56 + sha256 = "ffed1d03587b43b8f91bf1ae951faec6b504f782a79ce157318858a385492d7b"; 57 57 } 58 58 { 59 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/cy/thunderbird-128.8.0esr.tar.bz2"; 59 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/cy/thunderbird-128.8.1esr.tar.bz2"; 60 60 locale = "cy"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "5c240616a175162ccfbb657acfd6ee8d542a5b1e3d11340e491513cb66f4daea"; 62 + sha256 = "fc47f033c0c2978cec6bbe8b17cd5d3d6be40262c5ca99b868b0ffc35d5b8a72"; 63 63 } 64 64 { 65 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/da/thunderbird-128.8.0esr.tar.bz2"; 65 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/da/thunderbird-128.8.1esr.tar.bz2"; 66 66 locale = "da"; 67 67 arch = "linux-x86_64"; 68 - sha256 = "f668e62471429afb72264dac9b903c74b8f457af4370307bdaaf3d1ffdc2ac1b"; 68 + sha256 = "57f0e2016573fed49e1240a19a94c46d7707b646c0d61b9ddf5c8649d89a435a"; 69 69 } 70 70 { 71 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/de/thunderbird-128.8.0esr.tar.bz2"; 71 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/de/thunderbird-128.8.1esr.tar.bz2"; 72 72 locale = "de"; 73 73 arch = "linux-x86_64"; 74 - sha256 = "c71591b9064b7aa3d983e7adfb4be5b6de5ceb5ab22dc5481ad77b8e2f56ab69"; 74 + sha256 = "cb5267e7f41b8ccec5105e0602ddd75f912d0627416bd29c0211121aab6e4dfd"; 75 75 } 76 76 { 77 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/dsb/thunderbird-128.8.0esr.tar.bz2"; 77 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/dsb/thunderbird-128.8.1esr.tar.bz2"; 78 78 locale = "dsb"; 79 79 arch = "linux-x86_64"; 80 - sha256 = "9ea0d07f1f1825054a0e0297df2379dbc37e0fc81d063f787e21c6fd60935adc"; 80 + sha256 = "c9123f5f024a150fb26e8155e405d73649f2b8f384114c6e437514a1df59856c"; 81 81 } 82 82 { 83 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/el/thunderbird-128.8.0esr.tar.bz2"; 83 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/el/thunderbird-128.8.1esr.tar.bz2"; 84 84 locale = "el"; 85 85 arch = "linux-x86_64"; 86 - sha256 = "8197597e8ca4cfc29ed18991715ac45ab6c4d189d3bdff5736f323e9599ab1e1"; 86 + sha256 = "5bfdb2b5136cb792cd6ec027ee3b4c099172fe38e555867f954c408d689a18ff"; 87 87 } 88 88 { 89 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/en-CA/thunderbird-128.8.0esr.tar.bz2"; 89 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/en-CA/thunderbird-128.8.1esr.tar.bz2"; 90 90 locale = "en-CA"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "366b649b46f1a6020045fa55a9191908208854dc8a37b04a37003efde55319c9"; 92 + sha256 = "3295ccf7957a21a44987dce3af0aeedb6c3b743060eb7223740829c819a04071"; 93 93 } 94 94 { 95 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/en-GB/thunderbird-128.8.0esr.tar.bz2"; 95 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/en-GB/thunderbird-128.8.1esr.tar.bz2"; 96 96 locale = "en-GB"; 97 97 arch = "linux-x86_64"; 98 - sha256 = "c9146a918e88758ec3681ea067adee2cc993b3c7a9118cb6e06cdbb231187a3b"; 98 + sha256 = "4213003e05d7e25638e2064dcdd1d869e35662ad288070fd321fe2b60e254004"; 99 99 } 100 100 { 101 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/en-US/thunderbird-128.8.0esr.tar.bz2"; 101 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/en-US/thunderbird-128.8.1esr.tar.bz2"; 102 102 locale = "en-US"; 103 103 arch = "linux-x86_64"; 104 - sha256 = "1a154cf1af7044817b61405a9ed2582a029c5a90a12dbd1df22b99328f789564"; 104 + sha256 = "2df2b8fab412eb3dbe6a2f3bb0547af5fa66d2c2dbc7f78c0201bbe255fa779d"; 105 105 } 106 106 { 107 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/es-AR/thunderbird-128.8.0esr.tar.bz2"; 107 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/es-AR/thunderbird-128.8.1esr.tar.bz2"; 108 108 locale = "es-AR"; 109 109 arch = "linux-x86_64"; 110 - sha256 = "73e21e28d213070b9eb5792ac494d77167708419388bd42eb51096e7400e57b9"; 110 + sha256 = "f0e3980d7771b3ab3d82e352f333cb9ef182e2005b634ef904710bd74de3503f"; 111 111 } 112 112 { 113 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/es-ES/thunderbird-128.8.0esr.tar.bz2"; 113 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/es-ES/thunderbird-128.8.1esr.tar.bz2"; 114 114 locale = "es-ES"; 115 115 arch = "linux-x86_64"; 116 - sha256 = "0fe24ced84d5dea9cf847c545a5ff4399b1e81b8f58ac8c17ef7d15d91eca247"; 116 + sha256 = "8fe833d918e46a4717ea3539200dedd1e712fa89bf9427a983eb3f4dcc8f067e"; 117 117 } 118 118 { 119 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/es-MX/thunderbird-128.8.0esr.tar.bz2"; 119 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/es-MX/thunderbird-128.8.1esr.tar.bz2"; 120 120 locale = "es-MX"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "534c94a1d5f5078292a6838d2fd9887e65464ed845ad4da4a45cb7ac8a0fb6c9"; 122 + sha256 = "00426c67a097968ef0ef876532b1ddaecbcc4d8635dc8805e1a282cefc59ccd7"; 123 123 } 124 124 { 125 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/et/thunderbird-128.8.0esr.tar.bz2"; 125 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/et/thunderbird-128.8.1esr.tar.bz2"; 126 126 locale = "et"; 127 127 arch = "linux-x86_64"; 128 - sha256 = "f7eea1df70f2f4ec456202e281b2e0291a10b0f86bfa3491bff6fdac5b680e40"; 128 + sha256 = "1453ef45e4a8d1bb6c74dc91150d3a4f895dd5220b4be33f428845d13417b6bc"; 129 129 } 130 130 { 131 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/eu/thunderbird-128.8.0esr.tar.bz2"; 131 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/eu/thunderbird-128.8.1esr.tar.bz2"; 132 132 locale = "eu"; 133 133 arch = "linux-x86_64"; 134 - sha256 = "8d13b74989508963cd29bb01048755fcf98ade7cdd2c271a6f801b7ea82377f7"; 134 + sha256 = "bb258a3b54aab7661bfa35be0bc2e3c9de833663dae87df64dc61465f4e4d75e"; 135 135 } 136 136 { 137 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/fi/thunderbird-128.8.0esr.tar.bz2"; 137 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/fi/thunderbird-128.8.1esr.tar.bz2"; 138 138 locale = "fi"; 139 139 arch = "linux-x86_64"; 140 - sha256 = "98d387f97b69ffc2171720fb6d37b738d2fc376dda9e57fc6b39b7bbc9bbe655"; 140 + sha256 = "9c2ea3244de9763164fb17626cb0a3f40757f86cdee76b5d63ed251fd149f59c"; 141 141 } 142 142 { 143 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/fr/thunderbird-128.8.0esr.tar.bz2"; 143 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/fr/thunderbird-128.8.1esr.tar.bz2"; 144 144 locale = "fr"; 145 145 arch = "linux-x86_64"; 146 - sha256 = "41ec309f7b3a9d4e2d071e68f8e4b503fcbbd554f3e312af7d7dfc93b750a1d2"; 146 + sha256 = "aa0dc1e0adb9fc5928c4594de763becb41e8423fc3adeec5f6f27a643cd9fbfb"; 147 147 } 148 148 { 149 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/fy-NL/thunderbird-128.8.0esr.tar.bz2"; 149 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/fy-NL/thunderbird-128.8.1esr.tar.bz2"; 150 150 locale = "fy-NL"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "8cfbee2cc94f11b2b53e6075688974b0233227fc83634ca5721ff9664e2eb46c"; 152 + sha256 = "b20065b2e2cc571b02b90e85c7e61c4db76c27ed86f12efc57ddfc3f53ebee31"; 153 153 } 154 154 { 155 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/ga-IE/thunderbird-128.8.0esr.tar.bz2"; 155 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/ga-IE/thunderbird-128.8.1esr.tar.bz2"; 156 156 locale = "ga-IE"; 157 157 arch = "linux-x86_64"; 158 - sha256 = "54677c9563f37ed0f56b3b8d20f6125f67ea864ef98d07dc865d47239f0002f7"; 158 + sha256 = "c2a0f4c18c88cec7bfdef86069014cdba89ef969dbecc00605be18ba6a5c4495"; 159 159 } 160 160 { 161 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/gd/thunderbird-128.8.0esr.tar.bz2"; 161 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/gd/thunderbird-128.8.1esr.tar.bz2"; 162 162 locale = "gd"; 163 163 arch = "linux-x86_64"; 164 - sha256 = "94b4db949d642e14e9f6ec055f455f8bc8b3cbe231d6348cc359fd751002b69e"; 164 + sha256 = "f702d1931310215a3f091f560ce34086e1864a7d2a981b6890182d1f6b817c68"; 165 165 } 166 166 { 167 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/gl/thunderbird-128.8.0esr.tar.bz2"; 167 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/gl/thunderbird-128.8.1esr.tar.bz2"; 168 168 locale = "gl"; 169 169 arch = "linux-x86_64"; 170 - sha256 = "ec28d6276a01ca6a1aa8b6038fa47dd2f434487a1f90eedd25ad4c80122d2cb2"; 170 + sha256 = "ac1c1996ec521a6c59d2e55fa5af1f9a71ec1a40fa71aef1de2fa87f30400dc0"; 171 171 } 172 172 { 173 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/he/thunderbird-128.8.0esr.tar.bz2"; 173 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/he/thunderbird-128.8.1esr.tar.bz2"; 174 174 locale = "he"; 175 175 arch = "linux-x86_64"; 176 - sha256 = "2ae7a156e9eb0156176488d6181f99cc8646a4998dca30dd452bae27cb2c22dc"; 176 + sha256 = "5bd1242155f000a9e1c3eff3ae1df0900208613f085ecff42ccbf6d2dcc8e673"; 177 177 } 178 178 { 179 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/hr/thunderbird-128.8.0esr.tar.bz2"; 179 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/hr/thunderbird-128.8.1esr.tar.bz2"; 180 180 locale = "hr"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "7462960417715330cc164fd2a716ceb25305fb641e3e258ed6796c6508b4c394"; 182 + sha256 = "16ae5be658966d5ba8b90dd2a970cbc9c04f5037312b283fd2b7b3b26fcd40ab"; 183 183 } 184 184 { 185 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/hsb/thunderbird-128.8.0esr.tar.bz2"; 185 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/hsb/thunderbird-128.8.1esr.tar.bz2"; 186 186 locale = "hsb"; 187 187 arch = "linux-x86_64"; 188 - sha256 = "2cdf6e8e1f022023c5496aaa6ef228ea40d77ead81486754bd650a22e45751af"; 188 + sha256 = "3fd7eb3258053f88498dfb1138f157e7d0d501cb9e2815145e6a11a48dbb1b59"; 189 189 } 190 190 { 191 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/hu/thunderbird-128.8.0esr.tar.bz2"; 191 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/hu/thunderbird-128.8.1esr.tar.bz2"; 192 192 locale = "hu"; 193 193 arch = "linux-x86_64"; 194 - sha256 = "e7390e18f16b71fa10428c23fb84f50b559685598c8b0bb5dfb46628cb44e4dd"; 194 + sha256 = "9cfb8919c62a73aa3940d2ada6bd9d43c1bff3841d1ede8b6d65ea36b9fec255"; 195 195 } 196 196 { 197 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/hy-AM/thunderbird-128.8.0esr.tar.bz2"; 197 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/hy-AM/thunderbird-128.8.1esr.tar.bz2"; 198 198 locale = "hy-AM"; 199 199 arch = "linux-x86_64"; 200 - sha256 = "6a2d4439cbe650d9648db4783bf5a434da3077aed5244c0cd5bd9867c045744f"; 200 + sha256 = "743d74587977da860f566b82cca1af36920f3a11e4c6f8cb6c388276e105632a"; 201 201 } 202 202 { 203 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/id/thunderbird-128.8.0esr.tar.bz2"; 203 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/id/thunderbird-128.8.1esr.tar.bz2"; 204 204 locale = "id"; 205 205 arch = "linux-x86_64"; 206 - sha256 = "a2a753d99147a3793c8f01bd3b7a02da8777c54cbec3e406451176a4f6cd7585"; 206 + sha256 = "1b550d116c2174f478d13fba988bc070165507a61a0ed341a8fbb551cfa2777d"; 207 207 } 208 208 { 209 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/is/thunderbird-128.8.0esr.tar.bz2"; 209 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/is/thunderbird-128.8.1esr.tar.bz2"; 210 210 locale = "is"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "afb66adbe8e8f5c41ec3e2482d710c0defae5a1d398611768ad7119f3b5adcc1"; 212 + sha256 = "44f80b2b0358c18e5d5810d59aa9dca376485c12fc4c2da4786d41e979286a7f"; 213 213 } 214 214 { 215 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/it/thunderbird-128.8.0esr.tar.bz2"; 215 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/it/thunderbird-128.8.1esr.tar.bz2"; 216 216 locale = "it"; 217 217 arch = "linux-x86_64"; 218 - sha256 = "802ea9a7051008cc288c0ea7db029939524d106ef816195726889bf1ae147de2"; 218 + sha256 = "981b59ba68471132f2529512d2f922c43e4cdc62fe1c8eff5d9e135443e1be89"; 219 219 } 220 220 { 221 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/ja/thunderbird-128.8.0esr.tar.bz2"; 221 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/ja/thunderbird-128.8.1esr.tar.bz2"; 222 222 locale = "ja"; 223 223 arch = "linux-x86_64"; 224 - sha256 = "9b5f4529726b08c25222808fb388b47801355325b931c5b50c552efec2540154"; 224 + sha256 = "5095d5ef27963ac2da3cb017c30dff3409ef1e8932b8faa5a8b58b9005a136ab"; 225 225 } 226 226 { 227 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/ka/thunderbird-128.8.0esr.tar.bz2"; 227 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/ka/thunderbird-128.8.1esr.tar.bz2"; 228 228 locale = "ka"; 229 229 arch = "linux-x86_64"; 230 - sha256 = "1d32e3d11e026719c49933a75b0c654beb02fa42fb59114285945a83a07e417c"; 230 + sha256 = "bba448d866c26bf7c545ce72db99d72f4743e3e0b5b26e5dc234d934a75d6f60"; 231 231 } 232 232 { 233 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/kab/thunderbird-128.8.0esr.tar.bz2"; 233 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/kab/thunderbird-128.8.1esr.tar.bz2"; 234 234 locale = "kab"; 235 235 arch = "linux-x86_64"; 236 - sha256 = "d6a82905ce033298b9b069cb71f9d1314b3114c78a91b432404a0a80d29666dd"; 236 + sha256 = "6406fb5dd20ad88a71fc412f95e54d3219299830dd665680beec30c96624a95a"; 237 237 } 238 238 { 239 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/kk/thunderbird-128.8.0esr.tar.bz2"; 239 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/kk/thunderbird-128.8.1esr.tar.bz2"; 240 240 locale = "kk"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "5f2a79864551f5f1e9ef1598d2d654123e1506915958d8f9e0144ed186a469c3"; 242 + sha256 = "bab3729c2efcf5642fe7db4d3ca182788a4e3e76472f03c481fb95c749047f04"; 243 243 } 244 244 { 245 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/ko/thunderbird-128.8.0esr.tar.bz2"; 245 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/ko/thunderbird-128.8.1esr.tar.bz2"; 246 246 locale = "ko"; 247 247 arch = "linux-x86_64"; 248 - sha256 = "17a521c722f9adaba473e24ee5127bf7afc51e6d015694a2c67ff06e7506de42"; 248 + sha256 = "ef6120480f99b42cd2b748391e7ebb9d0242e25e9b5878ffc3c617ba10a85aab"; 249 249 } 250 250 { 251 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/lt/thunderbird-128.8.0esr.tar.bz2"; 251 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/lt/thunderbird-128.8.1esr.tar.bz2"; 252 252 locale = "lt"; 253 253 arch = "linux-x86_64"; 254 - sha256 = "0f523e80a96e3ce460992eb4ad62bc864171c5e603181e638e03d07bbdd042e8"; 254 + sha256 = "0aab7f17137b9db634f6f8112715825488b5847e9deb6ff1fdb2618046caafe1"; 255 255 } 256 256 { 257 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/lv/thunderbird-128.8.0esr.tar.bz2"; 257 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/lv/thunderbird-128.8.1esr.tar.bz2"; 258 258 locale = "lv"; 259 259 arch = "linux-x86_64"; 260 - sha256 = "ddca006e3c88266da806d672f4a63e4a6a5e9fc7feee6fd7189cc86269e3e5b4"; 260 + sha256 = "706071eaa2cce1446080d7ef4c768fcb405f439d1bc0ca4da7a3fab8f36fdac7"; 261 261 } 262 262 { 263 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/ms/thunderbird-128.8.0esr.tar.bz2"; 263 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/ms/thunderbird-128.8.1esr.tar.bz2"; 264 264 locale = "ms"; 265 265 arch = "linux-x86_64"; 266 - sha256 = "beed3a3e60b085d2ba77b5efbdc5c96c602d5494c8e7826d33b6a8153bfc5d7d"; 266 + sha256 = "89886f05fe1aef90349c9b7141fd22137d8558cc3d7b3dd99ff3519e74b6c795"; 267 267 } 268 268 { 269 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/nb-NO/thunderbird-128.8.0esr.tar.bz2"; 269 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/nb-NO/thunderbird-128.8.1esr.tar.bz2"; 270 270 locale = "nb-NO"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "acdd4df71cb59511d4487be975c07ec6afad2711e91e51d881f6a15f25e7d011"; 272 + sha256 = "915fc851b73e6555d2fcefd17a0b96cd410f03014fe97f6f678d6c98f9c1926d"; 273 273 } 274 274 { 275 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/nl/thunderbird-128.8.0esr.tar.bz2"; 275 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/nl/thunderbird-128.8.1esr.tar.bz2"; 276 276 locale = "nl"; 277 277 arch = "linux-x86_64"; 278 - sha256 = "993a168d50dfc3525e6c5d1f3395c462a5196524618df74d096ad454804b5670"; 278 + sha256 = "4a82daffc2bd00a66bdcfdb8aecc1e3cda51bd3b71b249a55400c4f16b5db5a4"; 279 279 } 280 280 { 281 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/nn-NO/thunderbird-128.8.0esr.tar.bz2"; 281 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/nn-NO/thunderbird-128.8.1esr.tar.bz2"; 282 282 locale = "nn-NO"; 283 283 arch = "linux-x86_64"; 284 - sha256 = "1ff1ae6d49f22cc09caf48b43297bb156aa1875e12ba2da1d2a8bb31cabaa76c"; 284 + sha256 = "fc2a46f1ba379a379f5840964bf42f35298371b109a4fc880720c324c5ce6b48"; 285 285 } 286 286 { 287 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/pa-IN/thunderbird-128.8.0esr.tar.bz2"; 287 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/pa-IN/thunderbird-128.8.1esr.tar.bz2"; 288 288 locale = "pa-IN"; 289 289 arch = "linux-x86_64"; 290 - sha256 = "c0c37e8a27d1e8b6fe954821b3fc22ced28904224ec493f735eccf573187ca42"; 290 + sha256 = "2968d0233af502cf1a1e82b51039208be05f11e31f1bf01a410841464fa65eb7"; 291 291 } 292 292 { 293 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/pl/thunderbird-128.8.0esr.tar.bz2"; 293 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/pl/thunderbird-128.8.1esr.tar.bz2"; 294 294 locale = "pl"; 295 295 arch = "linux-x86_64"; 296 - sha256 = "b2b5c897d8faf2b5c64ba52891cdf8414de3e04b348727d93ad00752c9e419ec"; 296 + sha256 = "c2acdaf2418654558f35e524daefe206320c8f4d27c388ae1322fa92f4a8cb53"; 297 297 } 298 298 { 299 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/pt-BR/thunderbird-128.8.0esr.tar.bz2"; 299 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/pt-BR/thunderbird-128.8.1esr.tar.bz2"; 300 300 locale = "pt-BR"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "0ce70dd79cb78d48999ea5161123618c333d647a5036e4e55edd48c96f7fd766"; 302 + sha256 = "0c67de7e9501c1e497da49f9001b8b08f5dbed321e435322015a5b5c69b8c0ff"; 303 303 } 304 304 { 305 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/pt-PT/thunderbird-128.8.0esr.tar.bz2"; 305 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/pt-PT/thunderbird-128.8.1esr.tar.bz2"; 306 306 locale = "pt-PT"; 307 307 arch = "linux-x86_64"; 308 - sha256 = "6b14610b364c3fa9181bc129c59d2342f8791ad6c05077c064db8dc3dbbdf504"; 308 + sha256 = "09e2a9f011cdf67135bb527c5ad1c856b5f2227e411e711d16ec02cb88208981"; 309 309 } 310 310 { 311 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/rm/thunderbird-128.8.0esr.tar.bz2"; 311 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/rm/thunderbird-128.8.1esr.tar.bz2"; 312 312 locale = "rm"; 313 313 arch = "linux-x86_64"; 314 - sha256 = "966c4ff91819318a7f252406688f921c9edce8bb98117e784818a6e7e775fcb1"; 314 + sha256 = "b5d298e135f5143cef392447754874d2e847f8e46eb914789f352fca5894d26b"; 315 315 } 316 316 { 317 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/ro/thunderbird-128.8.0esr.tar.bz2"; 317 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/ro/thunderbird-128.8.1esr.tar.bz2"; 318 318 locale = "ro"; 319 319 arch = "linux-x86_64"; 320 - sha256 = "a5faf488b80ba04bdccdbbda0602dfb640ca48fbe2e9c5a8cff53ba0c4763c00"; 320 + sha256 = "35c67e8bc6b4b472e40dedf05034cc923198767ba0cc1e356c5badbd00edaa77"; 321 321 } 322 322 { 323 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/ru/thunderbird-128.8.0esr.tar.bz2"; 323 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/ru/thunderbird-128.8.1esr.tar.bz2"; 324 324 locale = "ru"; 325 325 arch = "linux-x86_64"; 326 - sha256 = "aa0af6116771ed02bad3e6bcab5977ebcfab1bff74f7b806caaacc4429f510e4"; 326 + sha256 = "373307b2ff24b1e9d484e4b22a7bf185482753c986bda0e2b952fe25a882ca75"; 327 327 } 328 328 { 329 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/sk/thunderbird-128.8.0esr.tar.bz2"; 329 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/sk/thunderbird-128.8.1esr.tar.bz2"; 330 330 locale = "sk"; 331 331 arch = "linux-x86_64"; 332 - sha256 = "ec92c634d954dd7eff05dbea2fab7ed118c5db88742d15fd1bcca4c4008e44a8"; 332 + sha256 = "8267535b2778242133ba229970f49cf9a7036531fe3e2d83835e5cc13f70a7f6"; 333 333 } 334 334 { 335 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/sl/thunderbird-128.8.0esr.tar.bz2"; 335 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/sl/thunderbird-128.8.1esr.tar.bz2"; 336 336 locale = "sl"; 337 337 arch = "linux-x86_64"; 338 - sha256 = "367ea27becf9f044f00fbd454bbcdb8578f99e42b56c2ad73c709b183911abf8"; 338 + sha256 = "e7091b7c2350c360e2f26e65fba645dbab48628d975e205dacb92dd9dd5c5cdf"; 339 339 } 340 340 { 341 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/sq/thunderbird-128.8.0esr.tar.bz2"; 341 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/sq/thunderbird-128.8.1esr.tar.bz2"; 342 342 locale = "sq"; 343 343 arch = "linux-x86_64"; 344 - sha256 = "a649b75a0750fd3e11074023877314add6b941e25c8741bf697bbba48301a219"; 344 + sha256 = "52ce1a83eba397ae34b09b3759183cdab32b3d40ac0751c0984f9fdd6842740b"; 345 345 } 346 346 { 347 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/sr/thunderbird-128.8.0esr.tar.bz2"; 347 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/sr/thunderbird-128.8.1esr.tar.bz2"; 348 348 locale = "sr"; 349 349 arch = "linux-x86_64"; 350 - sha256 = "b1a12748f3f9a87f757b6b854b912768c2c9a53671b0f3d62aef8b399c6194f8"; 350 + sha256 = "ec2dc3a96d11e0bf514f2ec1087ab05cd7513af6a64804f3655ea5adfd17226e"; 351 351 } 352 352 { 353 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/sv-SE/thunderbird-128.8.0esr.tar.bz2"; 353 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/sv-SE/thunderbird-128.8.1esr.tar.bz2"; 354 354 locale = "sv-SE"; 355 355 arch = "linux-x86_64"; 356 - sha256 = "58f2a293a2757128cc5dc0bf6299b4687cb3f728bbbd2b6ad85678702c1a7eb1"; 356 + sha256 = "93a0b09b23e97503222db4daea393843626b151e496ba68ae04460b649fae72d"; 357 357 } 358 358 { 359 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/th/thunderbird-128.8.0esr.tar.bz2"; 359 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/th/thunderbird-128.8.1esr.tar.bz2"; 360 360 locale = "th"; 361 361 arch = "linux-x86_64"; 362 - sha256 = "411dab56cd9962a89c42e4bb10bb58dd1c7f5413b58c115f9ee74acc32c67d64"; 362 + sha256 = "252058b29a9012a55b48757bff728ce11810ebe4e3d41cacb264aff5e18a839d"; 363 363 } 364 364 { 365 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/tr/thunderbird-128.8.0esr.tar.bz2"; 365 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/tr/thunderbird-128.8.1esr.tar.bz2"; 366 366 locale = "tr"; 367 367 arch = "linux-x86_64"; 368 - sha256 = "44cc10105689efd49f47cd9476fd2c579605daa2295bf336910fa2596afa19c6"; 368 + sha256 = "00f006c00b7b585bac99ef3ad1fdcebe0d44405b793cf963ef7ea8e4cdf41253"; 369 369 } 370 370 { 371 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/uk/thunderbird-128.8.0esr.tar.bz2"; 371 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/uk/thunderbird-128.8.1esr.tar.bz2"; 372 372 locale = "uk"; 373 373 arch = "linux-x86_64"; 374 - sha256 = "3ed67c60a1ac64c84a20950c740b0a015ec1499f3b4980c0435555579933571c"; 374 + sha256 = "21af80c8d76000967f204d9ebe7298d4501b98fe350cac0f3b6b04b2bb44d8e5"; 375 375 } 376 376 { 377 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/uz/thunderbird-128.8.0esr.tar.bz2"; 377 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/uz/thunderbird-128.8.1esr.tar.bz2"; 378 378 locale = "uz"; 379 379 arch = "linux-x86_64"; 380 - sha256 = "e0e064197e595478761f210f8bd951f720be9fac342776c7c4e1e510e95c8e85"; 380 + sha256 = "d54696821cc28b860702a98b869a74e7ba5f74c00718b5bbd62912231823ca31"; 381 381 } 382 382 { 383 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/vi/thunderbird-128.8.0esr.tar.bz2"; 383 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/vi/thunderbird-128.8.1esr.tar.bz2"; 384 384 locale = "vi"; 385 385 arch = "linux-x86_64"; 386 - sha256 = "78b681c882a117338e7666dd0b483952e70a115ea281e472ff5c551feecf9b81"; 386 + sha256 = "35545cd2fbc4a76603192c8dd93378e4a7ab65fcb292fc3625d8ef5fc7ac57fb"; 387 387 } 388 388 { 389 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/zh-CN/thunderbird-128.8.0esr.tar.bz2"; 389 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/zh-CN/thunderbird-128.8.1esr.tar.bz2"; 390 390 locale = "zh-CN"; 391 391 arch = "linux-x86_64"; 392 - sha256 = "87c62ff9f0f312cf790e8a6292076b559df52cf7b1449163d9c83da8d9eda873"; 392 + sha256 = "8347af59e572a4dd2a3e38ee6385bdeebdfd9ca589d258d230ef2ef9f042b0c7"; 393 393 } 394 394 { 395 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-x86_64/zh-TW/thunderbird-128.8.0esr.tar.bz2"; 395 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-x86_64/zh-TW/thunderbird-128.8.1esr.tar.bz2"; 396 396 locale = "zh-TW"; 397 397 arch = "linux-x86_64"; 398 - sha256 = "dd9d9ab103fc41ef2319b0a54c34e0ec2aca8b76796d8fe36b765e1252130b47"; 398 + sha256 = "262b3086e15bc43b91ba609b74e6f53d678bcb5edaf64d66f592508fcfe99b1d"; 399 399 } 400 400 { 401 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/af/thunderbird-128.8.0esr.tar.bz2"; 401 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/af/thunderbird-128.8.1esr.tar.bz2"; 402 402 locale = "af"; 403 403 arch = "linux-i686"; 404 - sha256 = "6ee7604d646e6847cb17b646c7e7c892d6afc3cd96a379ae21384b8b6c788e92"; 404 + sha256 = "930f42ae5aa3b8f85cb801724060024729143e889e2ac59d8d37a70d962360c0"; 405 405 } 406 406 { 407 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/ar/thunderbird-128.8.0esr.tar.bz2"; 407 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/ar/thunderbird-128.8.1esr.tar.bz2"; 408 408 locale = "ar"; 409 409 arch = "linux-i686"; 410 - sha256 = "0c02a13c9f0da42a23d106dc2a071b75f5db19ca3fafe5357247eddab51eae4b"; 410 + sha256 = "c4733b184c1dbcf2e8eab86dba07770512a0a579d512b027efae0bd853a8440d"; 411 411 } 412 412 { 413 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/ast/thunderbird-128.8.0esr.tar.bz2"; 413 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/ast/thunderbird-128.8.1esr.tar.bz2"; 414 414 locale = "ast"; 415 415 arch = "linux-i686"; 416 - sha256 = "9caaecb9c84f499e8828a2a6eec22d6164248d93e69a8f8607d3558d05a741d2"; 416 + sha256 = "e92d681785cc4e7445f913cbcba0590bdc777081b15f54da3df3f0e97b9576bc"; 417 417 } 418 418 { 419 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/be/thunderbird-128.8.0esr.tar.bz2"; 419 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/be/thunderbird-128.8.1esr.tar.bz2"; 420 420 locale = "be"; 421 421 arch = "linux-i686"; 422 - sha256 = "328fd7af7a8d675f5058842361dc8d5e29f50d19a56658da13b25e96499469da"; 422 + sha256 = "2e83b8a276e57b2b6cbef4815c2aaaf5bda18a7607a9cf372feb08c2b84bbded"; 423 423 } 424 424 { 425 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/bg/thunderbird-128.8.0esr.tar.bz2"; 425 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/bg/thunderbird-128.8.1esr.tar.bz2"; 426 426 locale = "bg"; 427 427 arch = "linux-i686"; 428 - sha256 = "f04dc9f990d0e828d62786ff954c40d74bdc0922a9660fd27861d514493b032f"; 428 + sha256 = "cac015b5f0a949af81278830ef3f31177c1488f28f1724fcd0f5af7943fc7da8"; 429 429 } 430 430 { 431 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/br/thunderbird-128.8.0esr.tar.bz2"; 431 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/br/thunderbird-128.8.1esr.tar.bz2"; 432 432 locale = "br"; 433 433 arch = "linux-i686"; 434 - sha256 = "f356ea134619ea796051a62f7eaaaa2ac58134e286c771576de3b8fefae17b7e"; 434 + sha256 = "3250ed40c32e88e34f8bb08cd98afa80761cf1659acbaa7d13cbea0b5f4285b0"; 435 435 } 436 436 { 437 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/ca/thunderbird-128.8.0esr.tar.bz2"; 437 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/ca/thunderbird-128.8.1esr.tar.bz2"; 438 438 locale = "ca"; 439 439 arch = "linux-i686"; 440 - sha256 = "1171a2b0d63ff9c9c3e3c0cd7918b5d4fa3bdaa86b3b97817a79180f6c00263d"; 440 + sha256 = "007f19df18a04a1d132d9013df6e749fed1248d09ce66bb7514e13c393e338bf"; 441 441 } 442 442 { 443 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/cak/thunderbird-128.8.0esr.tar.bz2"; 443 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/cak/thunderbird-128.8.1esr.tar.bz2"; 444 444 locale = "cak"; 445 445 arch = "linux-i686"; 446 - sha256 = "150ae2063d7b7675d4b2c969d973f28fc76855c114e8c8707ffff59b07d6aa33"; 446 + sha256 = "37ca027a41d337c7f7ca933dd789850a6ee8f978754af7ae0e77c450e36735d7"; 447 447 } 448 448 { 449 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/cs/thunderbird-128.8.0esr.tar.bz2"; 449 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/cs/thunderbird-128.8.1esr.tar.bz2"; 450 450 locale = "cs"; 451 451 arch = "linux-i686"; 452 - sha256 = "1f621cdbb2f57ca97e5e16148b8f291a4de73ab19d42abf32d62ae1bc62158b5"; 452 + sha256 = "bb31b0a0db3a2b664fa0c2d0b1471e1ea1c9921ac9ade74c011497a1aa35064b"; 453 453 } 454 454 { 455 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/cy/thunderbird-128.8.0esr.tar.bz2"; 455 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/cy/thunderbird-128.8.1esr.tar.bz2"; 456 456 locale = "cy"; 457 457 arch = "linux-i686"; 458 - sha256 = "8c8e3d13e8963c599dd4fbb1cdbd851258ae898514750b66e93786874c90d43a"; 458 + sha256 = "5731c82e849aeeabf1efe223f026e715a5a84938dc530c5af47a33401f0cb045"; 459 459 } 460 460 { 461 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/da/thunderbird-128.8.0esr.tar.bz2"; 461 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/da/thunderbird-128.8.1esr.tar.bz2"; 462 462 locale = "da"; 463 463 arch = "linux-i686"; 464 - sha256 = "5e29eb1e57542dd161fe78539998ef7ec750e83cb5152e833cc04ac38ec46770"; 464 + sha256 = "36dbd8f9b33a82f30bfa64130a4a8eaa3fd411c0e04ffe3e8b22f1d2797756a4"; 465 465 } 466 466 { 467 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/de/thunderbird-128.8.0esr.tar.bz2"; 467 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/de/thunderbird-128.8.1esr.tar.bz2"; 468 468 locale = "de"; 469 469 arch = "linux-i686"; 470 - sha256 = "9ce32575c6b42942817fd7b0aa0f43a1f5950eb0e509780d71bb917e965ca3e3"; 470 + sha256 = "d026c72e97890974f59887768419f52230306f79b70d2e1551d7582e20b6cabb"; 471 471 } 472 472 { 473 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/dsb/thunderbird-128.8.0esr.tar.bz2"; 473 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/dsb/thunderbird-128.8.1esr.tar.bz2"; 474 474 locale = "dsb"; 475 475 arch = "linux-i686"; 476 - sha256 = "e4f4a7f18e38f60b06d92e47106d00bd6589ca7d0e7b989fcc21cc4d32d1811f"; 476 + sha256 = "4ed5855cf55679b5139d4b701fc10c8bab6c2d25dfcac876f8f2f1e22e6afd33"; 477 477 } 478 478 { 479 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/el/thunderbird-128.8.0esr.tar.bz2"; 479 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/el/thunderbird-128.8.1esr.tar.bz2"; 480 480 locale = "el"; 481 481 arch = "linux-i686"; 482 - sha256 = "788cb80d20f3cd2fcb4de1f4771424fe53f6330f559d6c4046d7626407c0db84"; 482 + sha256 = "9f6b006ced02883b7806d6338c0263afcae9da2ea61a9a95d44a08879ef66977"; 483 483 } 484 484 { 485 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/en-CA/thunderbird-128.8.0esr.tar.bz2"; 485 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/en-CA/thunderbird-128.8.1esr.tar.bz2"; 486 486 locale = "en-CA"; 487 487 arch = "linux-i686"; 488 - sha256 = "8e6d7a469722746196e3d8561bf36abfb8f6ca8cf9c5662537486672453f2609"; 488 + sha256 = "b4ed296be204307fd6da4f48ef2f500a936d599b08535ef25c72b7be291f63dd"; 489 489 } 490 490 { 491 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/en-GB/thunderbird-128.8.0esr.tar.bz2"; 491 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/en-GB/thunderbird-128.8.1esr.tar.bz2"; 492 492 locale = "en-GB"; 493 493 arch = "linux-i686"; 494 - sha256 = "27bac1ababa688a3a06eb91db015a6a9464ee1bfdaec26bb5cad80e11f71b69d"; 494 + sha256 = "db1a929bfb0498446e1925cba740441a6b359c5dbb4d7cc8896b2aec867f89b1"; 495 495 } 496 496 { 497 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/en-US/thunderbird-128.8.0esr.tar.bz2"; 497 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/en-US/thunderbird-128.8.1esr.tar.bz2"; 498 498 locale = "en-US"; 499 499 arch = "linux-i686"; 500 - sha256 = "2907e9b6847e21ccbc554b0df0bfda274639aca519cc7e34e0ef1a0db9fa97ef"; 500 + sha256 = "9261a06bcaa2c418333deb60ddef961894aab90409b7981b36e98a0fc18a7dba"; 501 501 } 502 502 { 503 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/es-AR/thunderbird-128.8.0esr.tar.bz2"; 503 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/es-AR/thunderbird-128.8.1esr.tar.bz2"; 504 504 locale = "es-AR"; 505 505 arch = "linux-i686"; 506 - sha256 = "c5fe849c7653a5f3c8114b5dd0351f1f785a04d66afb79469d76eeb6e3028d1d"; 506 + sha256 = "bd03068065aabd747be87f86e73c17ca93acab9efb6dcb243e587eb53a736dcc"; 507 507 } 508 508 { 509 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/es-ES/thunderbird-128.8.0esr.tar.bz2"; 509 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/es-ES/thunderbird-128.8.1esr.tar.bz2"; 510 510 locale = "es-ES"; 511 511 arch = "linux-i686"; 512 - sha256 = "0a54f085c0cb01649224d278521d106300a4e6b5c787612979d2bba0811e289a"; 512 + sha256 = "42d9656001b299d04e39061c4b1c4756e55a2fb5cc1652b77bfb755edac94ab8"; 513 513 } 514 514 { 515 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/es-MX/thunderbird-128.8.0esr.tar.bz2"; 515 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/es-MX/thunderbird-128.8.1esr.tar.bz2"; 516 516 locale = "es-MX"; 517 517 arch = "linux-i686"; 518 - sha256 = "b7aa1e5c2b5a9b8b70e0911dc7cb008d43a04da8cd48b1c9f54e5ec042faa38c"; 518 + sha256 = "e0c97af5388c3d44d27275f1e3dd16265906ae81d4e1afc2ca9a329b637b7915"; 519 519 } 520 520 { 521 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/et/thunderbird-128.8.0esr.tar.bz2"; 521 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/et/thunderbird-128.8.1esr.tar.bz2"; 522 522 locale = "et"; 523 523 arch = "linux-i686"; 524 - sha256 = "06c3c2934c7f716d22aa44fde42efdf2a40cbf2bb384e71b609ed4e98203b4a6"; 524 + sha256 = "e5e2f18051fca84dd44b2c5a3778ad4969965f2cac86aa4264149edf680edbec"; 525 525 } 526 526 { 527 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/eu/thunderbird-128.8.0esr.tar.bz2"; 527 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/eu/thunderbird-128.8.1esr.tar.bz2"; 528 528 locale = "eu"; 529 529 arch = "linux-i686"; 530 - sha256 = "d0c8e2226382568c9b7aaa2c18b9104c41706ab8d3ec6b89853ede0a77c4db7f"; 530 + sha256 = "a22ab6539a7e9572a7fb6913e9b976d570b67ff69ce585be5132cafd8ec86a52"; 531 531 } 532 532 { 533 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/fi/thunderbird-128.8.0esr.tar.bz2"; 533 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/fi/thunderbird-128.8.1esr.tar.bz2"; 534 534 locale = "fi"; 535 535 arch = "linux-i686"; 536 - sha256 = "4cbe90fa120c42cc202b4faed2cb282abd8cf0eac3a95efae0f423663331488e"; 536 + sha256 = "a0f2a030c8cce5f2c2969376813d39306a948752fe01c36b7dd81122ae3586ee"; 537 537 } 538 538 { 539 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/fr/thunderbird-128.8.0esr.tar.bz2"; 539 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/fr/thunderbird-128.8.1esr.tar.bz2"; 540 540 locale = "fr"; 541 541 arch = "linux-i686"; 542 - sha256 = "0cf4eb481d53cfa06c1c8a1f1a2e38730b076bf4e302bd01b7370e24e2480de2"; 542 + sha256 = "f76eab20e735637746a6980ad3c99d2d35b6b5985f0b9a65c4ef467abcea3d06"; 543 543 } 544 544 { 545 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/fy-NL/thunderbird-128.8.0esr.tar.bz2"; 545 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/fy-NL/thunderbird-128.8.1esr.tar.bz2"; 546 546 locale = "fy-NL"; 547 547 arch = "linux-i686"; 548 - sha256 = "a2aa822703030cb8ec722e9dfb87d66102094933a5869d6008a2a30cf8594f3d"; 548 + sha256 = "c40cf21e2f8c0e7ea73ea23b4f63dc61c16c1d83966a2754f5b9e7a751f3413a"; 549 549 } 550 550 { 551 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/ga-IE/thunderbird-128.8.0esr.tar.bz2"; 551 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/ga-IE/thunderbird-128.8.1esr.tar.bz2"; 552 552 locale = "ga-IE"; 553 553 arch = "linux-i686"; 554 - sha256 = "4608ba885d297ac95ee07fc3b8c2ccf9755851141fef6a39c4bc7369f3a6a338"; 554 + sha256 = "f9293a76a3fba4d952a06f689d51273876597213fdda5123c22e8c2749aef046"; 555 555 } 556 556 { 557 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/gd/thunderbird-128.8.0esr.tar.bz2"; 557 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/gd/thunderbird-128.8.1esr.tar.bz2"; 558 558 locale = "gd"; 559 559 arch = "linux-i686"; 560 - sha256 = "dcd93fcb4b0770cf91392eeacb1ed1e02732c628e89abc7fb1150671ed08cdc0"; 560 + sha256 = "1bcf521d0b4d8b3f878ae8361db92ed32f55a7355eaade166ddda37d8ee2f342"; 561 561 } 562 562 { 563 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/gl/thunderbird-128.8.0esr.tar.bz2"; 563 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/gl/thunderbird-128.8.1esr.tar.bz2"; 564 564 locale = "gl"; 565 565 arch = "linux-i686"; 566 - sha256 = "40face85eb1a4b73b38901bd0e803ebfed360e76b629f01902a8b643e430d45a"; 566 + sha256 = "b96b2db085fc1cdd1605cbab4f812d2ae1f6cee7d313a3559af470e9239c3b5b"; 567 567 } 568 568 { 569 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/he/thunderbird-128.8.0esr.tar.bz2"; 569 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/he/thunderbird-128.8.1esr.tar.bz2"; 570 570 locale = "he"; 571 571 arch = "linux-i686"; 572 - sha256 = "5d85a0e842d86026204b2380760ed322a28e9288095315874a7c8870a0b5216d"; 572 + sha256 = "4d997401092bf51594fbb85416fc0c3bc39de6f6904603ce2711937c7869b74b"; 573 573 } 574 574 { 575 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/hr/thunderbird-128.8.0esr.tar.bz2"; 575 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/hr/thunderbird-128.8.1esr.tar.bz2"; 576 576 locale = "hr"; 577 577 arch = "linux-i686"; 578 - sha256 = "35b6bdcc49fa4dd9b43cc0f3637b8a6901126ec3faa0a276dc2bbd08cf248e9b"; 578 + sha256 = "f18606396db272a32c5eac538b13ac96268a95162262b4672d85015b0b5a4721"; 579 579 } 580 580 { 581 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/hsb/thunderbird-128.8.0esr.tar.bz2"; 581 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/hsb/thunderbird-128.8.1esr.tar.bz2"; 582 582 locale = "hsb"; 583 583 arch = "linux-i686"; 584 - sha256 = "81c7e740bc5b1fb9b409460f8026ded7141c8fe6a07cd3eb2e1147fe6c0d367f"; 584 + sha256 = "647baf1093bb16e9649fca57df1a5dce55edf157de7720edc36fae94cd5c9188"; 585 585 } 586 586 { 587 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/hu/thunderbird-128.8.0esr.tar.bz2"; 587 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/hu/thunderbird-128.8.1esr.tar.bz2"; 588 588 locale = "hu"; 589 589 arch = "linux-i686"; 590 - sha256 = "e0616cc5706edb9e185e2b89a241d558b70a2563a3b224d956eea3b1eedcd393"; 590 + sha256 = "647dc9a3a4e7bb2c40832f5ad4703d19989b1f9f368ddfe450c2244ddd8a913c"; 591 591 } 592 592 { 593 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/hy-AM/thunderbird-128.8.0esr.tar.bz2"; 593 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/hy-AM/thunderbird-128.8.1esr.tar.bz2"; 594 594 locale = "hy-AM"; 595 595 arch = "linux-i686"; 596 - sha256 = "e745f1131e2e0959da4e912cda82f1045d95ff99d534df1041b81d027e296609"; 596 + sha256 = "9f7c2d861ad0126821748473dd0d157eeda187517bb69fd1d4e0f8a08a6c0e73"; 597 597 } 598 598 { 599 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/id/thunderbird-128.8.0esr.tar.bz2"; 599 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/id/thunderbird-128.8.1esr.tar.bz2"; 600 600 locale = "id"; 601 601 arch = "linux-i686"; 602 - sha256 = "1876cd1daf32f3e63ac7aba974b40cd24e3a273b1a0b041700a7fd7e742ec474"; 602 + sha256 = "3d13da114658f3205186cf66e55cebcc68ff2de4da2f1c1db0701420445691c2"; 603 603 } 604 604 { 605 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/is/thunderbird-128.8.0esr.tar.bz2"; 605 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/is/thunderbird-128.8.1esr.tar.bz2"; 606 606 locale = "is"; 607 607 arch = "linux-i686"; 608 - sha256 = "7d6936ccd345bd1171b3fa8f3433825fe7642cdf27fd606ba0569a4fabf0b019"; 608 + sha256 = "b177efd5a418b6d0c7552319e6051f8cc0b8d9ec5a393fa27a3bdd9b2821766b"; 609 609 } 610 610 { 611 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/it/thunderbird-128.8.0esr.tar.bz2"; 611 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/it/thunderbird-128.8.1esr.tar.bz2"; 612 612 locale = "it"; 613 613 arch = "linux-i686"; 614 - sha256 = "2e7f066928590934208a80d1509b92479cd59277af65782b867c4bbb5c5ee98e"; 614 + sha256 = "a20b753d2ddfb27af61636956c18937d730237af9b367b24ff88d79840fe8383"; 615 615 } 616 616 { 617 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/ja/thunderbird-128.8.0esr.tar.bz2"; 617 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/ja/thunderbird-128.8.1esr.tar.bz2"; 618 618 locale = "ja"; 619 619 arch = "linux-i686"; 620 - sha256 = "519c5002dfe234ba9ede21d1937c603a43077ef3de0e4a41e75a7982a91aa7cc"; 620 + sha256 = "e90bc454fa9d2d6c8edac68fe919f4ab449979a857fe51063a9109a6fbbe5b5d"; 621 621 } 622 622 { 623 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/ka/thunderbird-128.8.0esr.tar.bz2"; 623 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/ka/thunderbird-128.8.1esr.tar.bz2"; 624 624 locale = "ka"; 625 625 arch = "linux-i686"; 626 - sha256 = "e5918b0bbd7be4dde5dfcd8bba4d25163afe1ae91d5179cc8338b7cb40a4ed45"; 626 + sha256 = "82bbe2fa5a34bb4ad238b8b2c683322b7bc3d1ac3121ef4d231264196a7526be"; 627 627 } 628 628 { 629 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/kab/thunderbird-128.8.0esr.tar.bz2"; 629 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/kab/thunderbird-128.8.1esr.tar.bz2"; 630 630 locale = "kab"; 631 631 arch = "linux-i686"; 632 - sha256 = "9bd22a75faed090c6e277e3c125f46945df6123b4a8bd4d4b56d21e358c08f37"; 632 + sha256 = "5a999970c668dd7a6ab87f0e180a3991a6bf8778c704a12492507e46129e3cd4"; 633 633 } 634 634 { 635 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/kk/thunderbird-128.8.0esr.tar.bz2"; 635 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/kk/thunderbird-128.8.1esr.tar.bz2"; 636 636 locale = "kk"; 637 637 arch = "linux-i686"; 638 - sha256 = "42b1deca6cd6a432e5d8ef0c3201eaad7f07dd691a176b95b81af7b4a5ca6152"; 638 + sha256 = "d359db37616b5daef05712caeb7ee5132d01d59ac01ff2f583e591a4f6364d32"; 639 639 } 640 640 { 641 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/ko/thunderbird-128.8.0esr.tar.bz2"; 641 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/ko/thunderbird-128.8.1esr.tar.bz2"; 642 642 locale = "ko"; 643 643 arch = "linux-i686"; 644 - sha256 = "d7946d96e69d3df2caa77c987823115d0e250eb01916a56a6aaf350b2ff95329"; 644 + sha256 = "a99a4cc4659eaadb70ab51cb1172b8e97b1bd87dec87655247a5c828cbf2f1f2"; 645 645 } 646 646 { 647 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/lt/thunderbird-128.8.0esr.tar.bz2"; 647 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/lt/thunderbird-128.8.1esr.tar.bz2"; 648 648 locale = "lt"; 649 649 arch = "linux-i686"; 650 - sha256 = "4d2a2e8f04a2cdfbe90e38267d915e03e172a76ab1526e865d20baeb3d7f193f"; 650 + sha256 = "078bda43f06b5e6e3027542b8dfe4e58799e96557bdf29996aab5f25f8ca40ab"; 651 651 } 652 652 { 653 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/lv/thunderbird-128.8.0esr.tar.bz2"; 653 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/lv/thunderbird-128.8.1esr.tar.bz2"; 654 654 locale = "lv"; 655 655 arch = "linux-i686"; 656 - sha256 = "0d6728bfb6f333689cc2ae2a881e2847579877ead88ac8778e688dcf2ffbcf3e"; 656 + sha256 = "f15ee9402ecd9f11434f585446b3578fb2b93a0e4e5dca44826982e4b0a82d6c"; 657 657 } 658 658 { 659 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/ms/thunderbird-128.8.0esr.tar.bz2"; 659 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/ms/thunderbird-128.8.1esr.tar.bz2"; 660 660 locale = "ms"; 661 661 arch = "linux-i686"; 662 - sha256 = "89fb06ff7ef59cc9f42508c0428e030b1f266c48a9a7559aa95c4b77501d761d"; 662 + sha256 = "86004e8ce785f8fef61bf253f002fa9d7f5de04a4e7e09edd070c107888fb390"; 663 663 } 664 664 { 665 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/nb-NO/thunderbird-128.8.0esr.tar.bz2"; 665 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/nb-NO/thunderbird-128.8.1esr.tar.bz2"; 666 666 locale = "nb-NO"; 667 667 arch = "linux-i686"; 668 - sha256 = "4ba60571c2ecb6f22981714994e759ceb9cb483c3dd6bc041a8cc61998b40be4"; 668 + sha256 = "d483f4dcb1e0ead9be294f7f95b3f89669242511b87fce4a5ce4b95c70f21f99"; 669 669 } 670 670 { 671 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/nl/thunderbird-128.8.0esr.tar.bz2"; 671 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/nl/thunderbird-128.8.1esr.tar.bz2"; 672 672 locale = "nl"; 673 673 arch = "linux-i686"; 674 - sha256 = "9de5fdf33067b827e58c84318a2190492e59c21dc2a00e69cc18f37d0a83ad84"; 674 + sha256 = "b07a12fa9fe4f6df7e3ab079e03d812edcc617ad8ab7a359303dc8f25f613bb5"; 675 675 } 676 676 { 677 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/nn-NO/thunderbird-128.8.0esr.tar.bz2"; 677 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/nn-NO/thunderbird-128.8.1esr.tar.bz2"; 678 678 locale = "nn-NO"; 679 679 arch = "linux-i686"; 680 - sha256 = "44e4d3aaef8b88095de1936b613f3921525b7f519714116d8051766ea2efd033"; 680 + sha256 = "4128292d44d973421529200a69ea702e278363090b5bcd94c6c09d4e11edfa54"; 681 681 } 682 682 { 683 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/pa-IN/thunderbird-128.8.0esr.tar.bz2"; 683 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/pa-IN/thunderbird-128.8.1esr.tar.bz2"; 684 684 locale = "pa-IN"; 685 685 arch = "linux-i686"; 686 - sha256 = "f77d7bc8181ef537325eb5a6f22f60c2d40e2c8dcf15b02831b57203e276edcd"; 686 + sha256 = "c34f0f3d50ea007d82e107e4cb527890af8c3e544720b547c235d6ce0e5563f3"; 687 687 } 688 688 { 689 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/pl/thunderbird-128.8.0esr.tar.bz2"; 689 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/pl/thunderbird-128.8.1esr.tar.bz2"; 690 690 locale = "pl"; 691 691 arch = "linux-i686"; 692 - sha256 = "e948dfa022ea94d25762612e63c76e416dbe913aa1d47c5aa6cd358cc77c2ea3"; 692 + sha256 = "fa1a049f1164b313c10d91e207a642e5c0ecb9f03fbb777753acdd7e7dd004ce"; 693 693 } 694 694 { 695 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/pt-BR/thunderbird-128.8.0esr.tar.bz2"; 695 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/pt-BR/thunderbird-128.8.1esr.tar.bz2"; 696 696 locale = "pt-BR"; 697 697 arch = "linux-i686"; 698 - sha256 = "d472e41fd62b31a19af12e271fbce644a4d2d116635f3c64421858d1b51abe4a"; 698 + sha256 = "9f7e7cf6e2efa7af246ecb98f8c24a2458ab14b31552ca978f6a7030435a2084"; 699 699 } 700 700 { 701 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/pt-PT/thunderbird-128.8.0esr.tar.bz2"; 701 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/pt-PT/thunderbird-128.8.1esr.tar.bz2"; 702 702 locale = "pt-PT"; 703 703 arch = "linux-i686"; 704 - sha256 = "3fbf0a2b4434f5932f08578a3af14a49480d1930a1229edddeaa3336264ea0ad"; 704 + sha256 = "e668083cdce68fd2ad29aa87270944e5632bf0ad1ced7e005a95abfbb523bebb"; 705 705 } 706 706 { 707 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/rm/thunderbird-128.8.0esr.tar.bz2"; 707 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/rm/thunderbird-128.8.1esr.tar.bz2"; 708 708 locale = "rm"; 709 709 arch = "linux-i686"; 710 - sha256 = "d97bcf58c214e8465a51fb564f5c1b9e1aa9f2a17ff29234fb92196e8b9ee2ee"; 710 + sha256 = "7bfcedc109e5e2034f8647e79228e88b4375b613f41cbe8ddb45105146f64087"; 711 711 } 712 712 { 713 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/ro/thunderbird-128.8.0esr.tar.bz2"; 713 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/ro/thunderbird-128.8.1esr.tar.bz2"; 714 714 locale = "ro"; 715 715 arch = "linux-i686"; 716 - sha256 = "e8b6ca77aa53e2070246f224ce5dc29fd008d7c986b48eabdf69145470ce52b6"; 716 + sha256 = "a7c1e99b66cff5a3e5c2ba6131f93a7b6c551fb1e75e8b97b742d3c0b82e86d0"; 717 717 } 718 718 { 719 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/ru/thunderbird-128.8.0esr.tar.bz2"; 719 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/ru/thunderbird-128.8.1esr.tar.bz2"; 720 720 locale = "ru"; 721 721 arch = "linux-i686"; 722 - sha256 = "e489b69413451f6ddbf289bde34ad48e00db84ec37ff757001821b844b5c16e1"; 722 + sha256 = "3e851b9b7c831dcfd3fe1bce762df5ca518e85ed47a13a80220cae99c32752d2"; 723 723 } 724 724 { 725 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/sk/thunderbird-128.8.0esr.tar.bz2"; 725 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/sk/thunderbird-128.8.1esr.tar.bz2"; 726 726 locale = "sk"; 727 727 arch = "linux-i686"; 728 - sha256 = "c1d325a06b97cc4dd62408ff32709a51f5665f509d407347e1f243a59eeed698"; 728 + sha256 = "54d0d040a9b780a95306e7994e139292fb4cf135a0fa2c66a0bdbfb27dd5a9a1"; 729 729 } 730 730 { 731 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/sl/thunderbird-128.8.0esr.tar.bz2"; 731 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/sl/thunderbird-128.8.1esr.tar.bz2"; 732 732 locale = "sl"; 733 733 arch = "linux-i686"; 734 - sha256 = "e4519c0f7fdf2393d0bfa15fba9948e9efaa89c1e667a2d61903392b2f044594"; 734 + sha256 = "0398d487fbd0c5ecb57aac1510e26888577188afc28d075686aa78204b1bb02c"; 735 735 } 736 736 { 737 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/sq/thunderbird-128.8.0esr.tar.bz2"; 737 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/sq/thunderbird-128.8.1esr.tar.bz2"; 738 738 locale = "sq"; 739 739 arch = "linux-i686"; 740 - sha256 = "66296bbe89d276e62fea05138ea93b7b7a388ad1738e70b4814b76696ff1dd65"; 740 + sha256 = "b13870f6713eaf55661411e4aceef8079a270306be17301e49e8871a421d2d6e"; 741 741 } 742 742 { 743 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/sr/thunderbird-128.8.0esr.tar.bz2"; 743 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/sr/thunderbird-128.8.1esr.tar.bz2"; 744 744 locale = "sr"; 745 745 arch = "linux-i686"; 746 - sha256 = "c53049ce45ca361168b3370f1ee0f64fa16e8551747a86747684140028a67ca6"; 746 + sha256 = "16ef868a87edf38215d331d018e3c25909bb6e6d9cd0ea01545590e9fb73bfb7"; 747 747 } 748 748 { 749 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/sv-SE/thunderbird-128.8.0esr.tar.bz2"; 749 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/sv-SE/thunderbird-128.8.1esr.tar.bz2"; 750 750 locale = "sv-SE"; 751 751 arch = "linux-i686"; 752 - sha256 = "5a537a27653c7ecf7076253e5a1b72c16e1e3f75c28a88470e29bd347ced40a7"; 752 + sha256 = "4ef5386b75fabd2e42ca2cfceb8ef85c9278d4cd709f7878742ad4e6693e0483"; 753 753 } 754 754 { 755 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/th/thunderbird-128.8.0esr.tar.bz2"; 755 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/th/thunderbird-128.8.1esr.tar.bz2"; 756 756 locale = "th"; 757 757 arch = "linux-i686"; 758 - sha256 = "b4116e1f2d2aad6b7c864581921bf59055bc450673cec552f29897a3a1568d77"; 758 + sha256 = "ea09ac54c7fdc357d11cadf51ddc555235c6d3ad1ab713b884ca4ebb9ec14b0a"; 759 759 } 760 760 { 761 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/tr/thunderbird-128.8.0esr.tar.bz2"; 761 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/tr/thunderbird-128.8.1esr.tar.bz2"; 762 762 locale = "tr"; 763 763 arch = "linux-i686"; 764 - sha256 = "b2501fea5df377bb527c91e89361d92b289dac637617be11372d06c6d68f8f0b"; 764 + sha256 = "5c43584fbbaf34bceff32c9d98156f109ab1c67c9e0d18c612ab90f3f3675cd5"; 765 765 } 766 766 { 767 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/uk/thunderbird-128.8.0esr.tar.bz2"; 767 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/uk/thunderbird-128.8.1esr.tar.bz2"; 768 768 locale = "uk"; 769 769 arch = "linux-i686"; 770 - sha256 = "c7dbb9ae871c807cc670d1c3e9a034865f8000f5d5dece38f98a9022f206ca54"; 770 + sha256 = "a474ab35b1b7305fff98e512738e32cbdd50193a98c9e5c6eea1418054407218"; 771 771 } 772 772 { 773 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/uz/thunderbird-128.8.0esr.tar.bz2"; 773 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/uz/thunderbird-128.8.1esr.tar.bz2"; 774 774 locale = "uz"; 775 775 arch = "linux-i686"; 776 - sha256 = "8941fc3a641a0d883b43efb97480310f6772bcfe107026c39843255558c2296d"; 776 + sha256 = "79caad981fde8c0ffa13157ef64224ce5e27aae218a15370eb7b0c686f82aba5"; 777 777 } 778 778 { 779 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/vi/thunderbird-128.8.0esr.tar.bz2"; 779 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/vi/thunderbird-128.8.1esr.tar.bz2"; 780 780 locale = "vi"; 781 781 arch = "linux-i686"; 782 - sha256 = "ca123b7c755cd8d6021d9bf658313e33a3e2cb68ecfdb872dc0acc88fa3b8dd2"; 782 + sha256 = "225480794d385493ecc1beb84f84c8c9509d6ad306648902d03277b0cb33feb8"; 783 783 } 784 784 { 785 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/zh-CN/thunderbird-128.8.0esr.tar.bz2"; 785 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/zh-CN/thunderbird-128.8.1esr.tar.bz2"; 786 786 locale = "zh-CN"; 787 787 arch = "linux-i686"; 788 - sha256 = "3db69d00105d970c9cbf5daf6690f8d0325688627a9af9587b1e1a4a7680dcc8"; 788 + sha256 = "d6ab0c6c1a3171b3efd6c4684c9b6ef593fd4ba014e9ad77dd04691006027b64"; 789 789 } 790 790 { 791 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.0esr/linux-i686/zh-TW/thunderbird-128.8.0esr.tar.bz2"; 791 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.8.1esr/linux-i686/zh-TW/thunderbird-128.8.1esr.tar.bz2"; 792 792 locale = "zh-TW"; 793 793 arch = "linux-i686"; 794 - sha256 = "f9dd0043b71e59e34312f2dc53b19a42ecca8a1d3a223e07a73772723a3fba3d"; 794 + sha256 = "970b4015c12d149fb598abf585c5955944840dff254b3c4110d0c834161ceda2"; 795 795 } 796 796 ]; 797 797 }
+5 -5
pkgs/by-name/al/alist/package.nix
··· 11 11 }: 12 12 buildGoModule rec { 13 13 pname = "alist"; 14 - version = "3.42.0"; 15 - webVersion = "3.42.0"; 14 + version = "3.43.0"; 15 + webVersion = "3.43.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "AlistGo"; 19 19 repo = "alist"; 20 20 tag = "v${version}"; 21 - hash = "sha256-qUW9bA2TeAVve77i43+ITxClLaO3aqm5959itf+iFqs="; 21 + hash = "sha256-0+gt5S/eklSp8K4z1bXUVHaG7L3zKhi6TdVaxX/Y83w="; 22 22 # populate values that require us to use git. By doing this in postFetch we 23 23 # can delete .git afterwards and maintain better reproducibility of the src. 24 24 leaveDotGit = true; ··· 32 32 }; 33 33 web = fetchzip { 34 34 url = "https://github.com/AlistGo/alist-web/releases/download/${webVersion}/dist.tar.gz"; 35 - hash = "sha256-g2+qdLrxuyuqxlyVk32BKJCbMfXNs29KLEPxAkTQHjU="; 35 + hash = "sha256-uFa9V8DSHk0ET0BCdfT37qUNP2kLNjmt2S6fEk1muME="; 36 36 }; 37 37 38 38 proxyVendor = true; 39 - vendorHash = "sha256-uid+uT4eOtDsCNsKqGqPc4vMDnKUatG4V2n0Z7r6ccY="; 39 + vendorHash = "sha256-40YuarjrOvwHyXmHZoiqGMueN7dzu8zQ6hgInmsWVJg="; 40 40 41 41 buildInputs = [ fuse ]; 42 42
+3 -5
pkgs/by-name/bl/bluespec/package.nix
··· 85 85 src/comp/wrapper.sh 86 86 87 87 substituteInPlace src/comp/Makefile \ 88 - --replace-fail 'install-bsc install-bluetcl' 'install-bsc install-bluetcl $(UTILEXES) install-utils' 88 + --replace-fail 'install-bsc install-bluetcl' 'install-bsc install-bluetcl $(UTILEXES) $(SHOWRULESEXES) install-utils install-showrules' 89 89 90 90 # For darwin 91 91 # ld: library not found for -ltcl8.5 ··· 172 172 homepage = "https://github.com/B-Lang-org/bsc"; 173 173 license = lib.licenses.bsd3; 174 174 platforms = [ 175 + "aarch64-linux" 175 176 "x86_64-linux" 176 - "aarch64-darwin" 177 - ]; 177 + ] ++ lib.platforms.darwin; 178 178 mainProgram = "bsc"; 179 - # darwin fails at https://github.com/B-Lang-org/bsc/pull/35#issuecomment-583731562 180 - # aarch64 fails, as GHC fails with "ghc: could not execute: opt" 181 179 maintainers = with lib.maintainers; [ 182 180 jcumming 183 181 thoughtpolice
+3 -3
pkgs/by-name/co/codefresh/package.nix
··· 11 11 12 12 stdenv.mkDerivation (finalAttrs: { 13 13 pname = "codefresh"; 14 - version = "0.87.3"; 14 + version = "0.88.5"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "codefresh-io"; 18 18 repo = "cli"; 19 19 rev = "v${finalAttrs.version}"; 20 - hash = "sha256-SUwt0oWls823EeLxT4CW+LDdsjAtSxxxKkllhMJXCtM="; 20 + hash = "sha256-u0K3I65JDu6v4mE0EU6Rv6uJOmC6VuZbIVyreHPH9QE="; 21 21 }; 22 22 23 23 offlineCache = fetchYarnDeps { 24 24 yarnLock = "${finalAttrs.src}/yarn.lock"; 25 - hash = "sha256-tzsHbvoQ59MwE4TYdPweLaAv9r4V8oyTQyvdeyPCsHY="; 25 + hash = "sha256-cMCJ/ANpHsEuO0SNtvf7zlS0HXp328oBP5aXnHSbpDI="; 26 26 }; 27 27 nativeBuildInputs = [ 28 28 yarnConfigHook
+8 -8
pkgs/by-name/da/dash-mpd-cli/package.nix
··· 22 22 ''; 23 23 }; 24 24 in 25 - rustPlatform.buildRustPackage rec { 25 + rustPlatform.buildRustPackage (finalAttrs: { 26 26 pname = "dash-mpd-cli"; 27 - version = "0.2.24"; 27 + version = "0.2.25"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "emarsden"; 31 31 repo = "dash-mpd-cli"; 32 - tag = "v${version}"; 33 - hash = "sha256-Q4zzKdp8GROL8vHi8XETErqufSqgZH/zf/mqEH2lIzE="; 32 + tag = "v${finalAttrs.version}"; 33 + hash = "sha256-xC/U48QyVn9K8Do1909XS7j9aY+ia0gd5cMdfipIds4="; 34 34 }; 35 35 36 36 patches = [ ··· 38 38 ]; 39 39 40 40 useFetchCargoVendor = true; 41 - cargoHash = "sha256-yXLA/JVD/4jbeVWOhs74Rdlc/drFFjQ52x5IMwUg4jY="; 41 + cargoHash = "sha256-QHfon0795XNtG3jCVv56EIA1pPToWUiopKWI3cA7Vg0="; 42 42 43 43 nativeBuildInputs = [ 44 44 makeWrapper ··· 52 52 wrapProgram $out/bin/dash-mpd-cli \ 53 53 --prefix PATH : ${ 54 54 lib.makeBinPath [ 55 - ffmpeg.bin 56 - libxslt.bin 55 + (lib.getBin ffmpeg) 56 + (lib.getBin libxslt) 57 57 shaka-packager-wrapped 58 58 ] 59 59 } ··· 73 73 maintainers = with lib.maintainers; [ al3xtjames ]; 74 74 mainProgram = "dash-mpd-cli"; 75 75 }; 76 - } 76 + })
+1 -1
pkgs/by-name/dm/dmd/generic.nix
··· 86 86 hash = "sha256-N21mAPfaTo+zGCip4njejasraV5IsWVqlGR5eOdFZZE="; 87 87 }) 88 88 ] 89 - ++ lib.optionals (lib.versionOlder version "2.110.0") [ 89 + ++ [ 90 90 (fetchpatch { 91 91 url = "https://github.com/dlang/dmd/commit/fdd25893e0ac04893d6eba8652903d499b7b0dfc.patch"; 92 92 stripLen = 1;
+3 -3
pkgs/by-name/dm/dmd/package.nix
··· 1 1 import ./generic.nix { 2 - version = "2.109.1"; 3 - dmdHash = "sha256-3nCDPZnb4eQZmhYYxcH6qOmsP8or0KYuzAa5g/C9xdU="; 4 - phobosHash = "sha256-73I0k7tCBwe5tl4K6uMs3/nT2JTZ2SppFYzmokS4W5Y="; 2 + version = "2.110.0"; 3 + dmdHash = "sha256-icXp9xWF2AI2gp7z/lQFAChmXfQePe9b5pbpQ9Mn19Y="; 4 + phobosHash = "sha256-CmJpcHM+sIsaYBlpALCFoQFG+93s8gUyWmM0tYqjXkk="; 5 5 }
+185
pkgs/by-name/do/dolphin-emu/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + 6 + # nativeBuildInputs 7 + cmake, 8 + pkg-config, 9 + qt6, 10 + # darwin-only 11 + xcbuild, 12 + 13 + # buildInputs 14 + bzip2, 15 + cubeb, 16 + curl, 17 + enet, 18 + ffmpeg, 19 + fmt_10, 20 + gtest, 21 + hidapi, 22 + libXdmcp, 23 + libpulseaudio, 24 + libspng, 25 + libusb1, 26 + lz4, 27 + lzo, 28 + mbedtls_2, 29 + miniupnpc, 30 + minizip-ng, 31 + openal, 32 + pugixml, 33 + SDL2, 34 + sfml, 35 + xxHash, 36 + xz, 37 + # linux-only 38 + alsa-lib, 39 + bluez, 40 + libGL, 41 + libXext, 42 + libXrandr, 43 + libevdev, 44 + udev, 45 + vulkan-loader, 46 + # darwin-only 47 + moltenvk, 48 + 49 + # passthru 50 + testers, 51 + nix-update-script, 52 + }: 53 + 54 + stdenv.mkDerivation (finalAttrs: { 55 + pname = "dolphin-emu"; 56 + version = "2503"; 57 + 58 + src = fetchFromGitHub { 59 + owner = "dolphin-emu"; 60 + repo = "dolphin"; 61 + tag = finalAttrs.version; 62 + fetchSubmodules = true; 63 + hash = "sha256-oqJKXFcsFgoYjUqdk3Z/CIFhOa8w0drcF4JwtHRI1Hs="; 64 + }; 65 + 66 + strictDeps = true; 67 + 68 + nativeBuildInputs = 69 + [ 70 + cmake 71 + pkg-config 72 + qt6.wrapQtAppsHook 73 + ] 74 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 75 + xcbuild # for plutil 76 + ]; 77 + 78 + buildInputs = 79 + [ 80 + bzip2 81 + cubeb 82 + curl 83 + enet 84 + ffmpeg 85 + fmt_10 86 + gtest 87 + hidapi 88 + libXdmcp 89 + libpulseaudio 90 + libspng 91 + libusb1 92 + lz4 93 + lzo 94 + mbedtls_2 95 + miniupnpc 96 + minizip-ng 97 + openal 98 + pugixml 99 + qt6.qtbase 100 + qt6.qtsvg 101 + SDL2 102 + sfml 103 + xxHash 104 + xz 105 + # Causes linker errors with minizip-ng, prefer vendored. Possible reason why: https://github.com/dolphin-emu/dolphin/pull/12070#issuecomment-1677311838 106 + #zlib-ng 107 + ] 108 + ++ lib.optionals stdenv.hostPlatform.isLinux [ 109 + alsa-lib 110 + bluez 111 + libGL 112 + libXext 113 + libXrandr 114 + libevdev 115 + # FIXME: Vendored version is newer than mgba's stable release, remove the comment on next mgba's version 116 + #mgba # Derivation doesn't support Darwin 117 + udev 118 + vulkan-loader 119 + ] 120 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 121 + moltenvk 122 + ]; 123 + 124 + cmakeFlags = 125 + [ 126 + (lib.cmakeFeature "DISTRIBUTOR" "NixOS") 127 + (lib.cmakeFeature "DOLPHIN_WC_REVISION" finalAttrs.src.rev) 128 + (lib.cmakeFeature "DOLPHIN_WC_DESCRIBE" finalAttrs.version) 129 + (lib.cmakeFeature "DOLPHIN_WC_BRANCH" "master") 130 + ] 131 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 132 + (lib.cmakeBool "OSX_USE_DEFAULT_SEARCH_PATH" true) 133 + (lib.cmakeBool "USE_BUNDLED_MOLTENVK" false) 134 + (lib.cmakeBool "MACOS_CODE_SIGNING" false) 135 + # Bundles the application folder into a standalone executable, so we cannot devendor libraries 136 + (lib.cmakeBool "SKIP_POSTPROCESS_BUNDLE" true) 137 + # Needs xcode so compilation fails with it enabled. We would want the version to be fixed anyways. 138 + # Note: The updater isn't available on linux, so we don't need to disable it there. 139 + (lib.cmakeBool "ENABLE_AUTOUPDATE" false) 140 + ]; 141 + 142 + qtWrapperArgs = lib.optionals stdenv.hostPlatform.isLinux [ 143 + "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ vulkan-loader ]}" 144 + # https://bugs.dolphin-emu.org/issues/11807 145 + # The .desktop file should already set this, but Dolphin may be launched in other ways 146 + "--set QT_QPA_PLATFORM xcb" 147 + ]; 148 + 149 + postInstall = 150 + lib.optionalString stdenv.hostPlatform.isLinux '' 151 + install -D $src/Data/51-usb-device.rules $out/etc/udev/rules.d/51-usb-device.rules 152 + '' 153 + + lib.optionalString stdenv.hostPlatform.isDarwin '' 154 + # Only gets installed automatically if the standalone executable is used 155 + mkdir -p $out/Applications 156 + cp -r ./Binaries/Dolphin.app $out/Applications 157 + ln -s $out/Applications/Dolphin.app/Contents/MacOS/Dolphin $out/bin 158 + ''; 159 + 160 + passthru = { 161 + tests = { 162 + version = testers.testVersion { 163 + package = finalAttrs.finalPackage; 164 + command = "dolphin-emu-nogui --version"; 165 + inherit (finalAttrs) version; 166 + }; 167 + }; 168 + updateScript = nix-update-script { 169 + extraArgs = [ 170 + "--version-regex" 171 + "([0-9]+)" 172 + ]; 173 + }; 174 + }; 175 + 176 + meta = { 177 + homepage = "https://dolphin-emu.org"; 178 + description = "Gamecube/Wii/Triforce emulator for x86_64 and ARMv8"; 179 + mainProgram = if stdenv.hostPlatform.isDarwin then "Dolphin" else "dolphin-emu"; 180 + branch = "master"; 181 + license = lib.licenses.gpl2Plus; 182 + platforms = lib.platforms.unix; 183 + maintainers = with lib.maintainers; [ pbsds ]; 184 + }; 185 + })
+2 -2
pkgs/by-name/do/dosage-tracker/package.nix
··· 17 17 18 18 stdenv.mkDerivation (finalAttrs: { 19 19 pname = "dosage"; 20 - version = "1.9.3"; 20 + version = "1.9.4"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "diegopvlk"; 24 24 repo = "Dosage"; 25 25 tag = "v${finalAttrs.version}"; 26 - hash = "sha256-euGyTaufL8Ifsy1RT4jcqlz8XZfCN7GfvFFvo85f/3c="; 26 + hash = "sha256-EFcfkj0NOmQrWgLJpWHdIX7iitqfZwgTmkMvueJPS/c="; 27 27 }; 28 28 29 29 # https://github.com/NixOS/nixpkgs/issues/318830
+4 -4
pkgs/by-name/fl/fluxcd/package.nix
··· 8 8 }: 9 9 10 10 let 11 - version = "2.5.0"; 12 - srcHash = "sha256-PhApozD/oWmT4PjzDRKBitE23V3KC40o17AwbmzzPdI="; 13 - vendorHash = "sha256-J8tgcNRc2m+6wcBM/iRizyOTO7OvKinl4Ojc8InQoKk="; 14 - manifestsHash = "sha256-mU0rnbb63ATjf2Q7TzbsQJcbRBUb2QCeC8WKaKmpxOo="; 11 + version = "2.5.1"; 12 + srcHash = "sha256-BuFylOWR30aK7d1eN+9getR5amtAtkkhHNAPfdfASHs="; 13 + vendorHash = "sha256-2fThvz/5A1/EyS6VTUQQa5Unx1BzYfsVRE18xOHtLHE="; 14 + manifestsHash = "sha256-bIIK8igtx0gUcn3hlBohE0MG9PMhyThz4a71pkonBpE="; 15 15 16 16 manifests = fetchzip { 17 17 url = "https://github.com/fluxcd/flux2/releases/download/v${version}/manifests.tar.gz";
+6 -5
pkgs/by-name/fo/follow/package.nix
··· 12 12 stdenv.mkDerivation rec { 13 13 pname = "follow"; 14 14 15 - version = "0.2.0-beta.2"; 15 + version = "0.3.7"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "RSSNext"; 19 19 repo = "Follow"; 20 20 rev = "v${version}"; 21 - hash = "sha256-7KSPZj9QG6zksji/eY8jczBDHr/9tStlw26LKVqXTAw="; 21 + hash = "sha256-TPzrQo6214fXQmF45p5agQ1zqLYzpmMpYb89ASPsWio="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ ··· 30 30 31 31 pnpmDeps = pnpm_9.fetchDeps { 32 32 inherit pname version src; 33 - hash = "sha256-FzMjN0rIjYxexf6tix4qi3mnuPkadjKihhN0Pj5y2nU="; 33 + hash = "sha256-xNGLYzEz1G5sZSqmji+ItJ9D1vvZcwkkygnDeuypcIM="; 34 34 }; 35 35 36 36 env = { ··· 38 38 39 39 # This environment variables inject the production Vite config at build time. 40 40 # Copy from: 41 - # 1. https://github.com/RSSNext/Follow/blob/v0.2.0-beta.2/.github/workflows/build.yml#L18 41 + # 1. https://github.com/RSSNext/Follow/blob/v0.3.7/.github/workflows/build.yml#L18 42 42 # 2. And logs in the corresponding GitHub Actions: https://github.com/RSSNext/Follow/actions/workflows/build.yml 43 43 VITE_WEB_URL = "https://app.follow.is"; 44 44 VITE_API_URL = "https://api.follow.is"; 45 - VITE_IMGPROXY_URL = "https://thumbor.follow.is"; 46 45 VITE_SENTRY_DSN = "https://e5bccf7428aa4e881ed5cb713fdff181@o4507542488023040.ingest.us.sentry.io/4507570439979008"; 47 46 VITE_OPENPANEL_CLIENT_ID = "0e477ab4-d92d-4d6e-b889-b09d86ab908e"; 48 47 VITE_OPENPANEL_API_URL = "https://openpanel.follow.is/api"; ··· 56 55 measurementId = "G-SJE57D4F14"; 57 56 }; 58 57 }; 58 + 59 + dontCheckForBrokenSymlinks = true; 59 60 60 61 desktopItem = makeDesktopItem { 61 62 name = "follow";
+12 -6
pkgs/by-name/go/gopeed/package.nix
··· 8 8 }: 9 9 10 10 let 11 - version = "1.6.10"; 11 + version = "1.6.11"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "GopeedLab"; 15 15 repo = "gopeed"; 16 16 tag = "v${version}"; 17 - hash = "sha256-sTKPSgy1jDavEd/IM8F6dxojp8oOQTo3/w/YV21JR/Q="; 17 + hash = "sha256-ayPqLRWYSa0rSHqGFS4xp3wUVAl4tfsSPs/SQcUQD60="; 18 18 }; 19 19 20 20 metaCommon = { ··· 45 45 }; 46 46 in 47 47 flutter324.buildFlutterApplication { 48 - inherit version src libgopeed; 48 + inherit version src; 49 49 pname = "gopeed"; 50 50 51 51 sourceRoot = "${src.name}/ui/flutter"; 52 52 53 53 pubspecLock = lib.importJSON ./pubspec.lock.json; 54 54 55 - gitHashes.permission_handler_windows = "sha256-MRTmuH0MfhGaMEb9bRotimAPRlFyl3ovtJUJ2WK7+DA="; 55 + gitHashes = { 56 + install_plugin = "sha256-3FM08D2pbtWmitf8R4pAylVqum7IfbWh6pOIEhJdySk="; 57 + permission_handler_windows = "sha256-MRTmuH0MfhGaMEb9bRotimAPRlFyl3ovtJUJ2WK7+DA="; 58 + }; 56 59 57 60 nativeBuildInputs = [ autoPatchelfHook ]; 58 61 ··· 61 64 preBuild = '' 62 65 mkdir -p linux/bundle/lib 63 66 cp ${libgopeed}/lib/libgopeed.so linux/bundle/lib/libgopeed.so 64 - cp ${libgopeed}/bin/host assets/host/host 67 + cp ${libgopeed}/bin/host assets/exec/host 65 68 ''; 66 69 67 70 postInstall = '' ··· 75 78 --add-rpath $out/app/gopeed/lib $out/app/gopeed/gopeed 76 79 ''; 77 80 78 - passthru.updateScript = ./update.sh; 81 + passthru = { 82 + inherit libgopeed; 83 + updateScript = ./update.sh; 84 + }; 79 85 80 86 meta = metaCommon // { 81 87 mainProgram = "gopeed";
+12 -1
pkgs/by-name/go/gopeed/pubspec.lock.json
··· 337 337 "version": "0.3.4+2" 338 338 }, 339 339 "crypto": { 340 - "dependency": "transitive", 340 + "dependency": "direct main", 341 341 "description": { 342 342 "name": "crypto", 343 343 "sha256": "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855", ··· 679 679 }, 680 680 "source": "hosted", 681 681 "version": "4.3.0" 682 + }, 683 + "install_plugin": { 684 + "dependency": "direct main", 685 + "description": { 686 + "path": ".", 687 + "ref": "cf08af829f4a4145634f8a047108f505fdbe5eaa", 688 + "resolved-ref": "cf08af829f4a4145634f8a047108f505fdbe5eaa", 689 + "url": "https://github.com/hui-z/flutter_install_plugin.git" 690 + }, 691 + "source": "git", 692 + "version": "2.1.0" 682 693 }, 683 694 "intl": { 684 695 "dependency": "transitive",
+5 -5
pkgs/by-name/hu/hubstaff/package.nix
··· 1 1 { lib, stdenv, fetchurl, unzip, makeWrapper, libX11, zlib, libSM, libICE 2 - , libXext , freetype, libXrender, fontconfig, libXft, libXinerama 2 + , libXext , freetype, libXrender, fontconfig, libXft, libXinerama, libXcursor, cairo 3 3 , libXfixes, libXScrnSaver, libnotify, glib , gtk3, libappindicator-gtk3 4 4 , curl, writeShellScript, common-updater-scripts, xmlstarlet }: 5 5 6 6 let 7 - url = "https://app.hubstaff.com/download/8792-standard-linux-1-6-29-release/sh"; 8 - version = "1.6.29-7f771670"; 9 - sha256 = "sha256:09vdpsmaj26bmnbsyxp76g3677lzi8p86gz66qbdvxly6a4x1hq9"; 7 + url = "https://app.hubstaff.com/download/9353-standard-linux-1-6-31-release/sh"; 8 + version = "1.6.31-a6da06ad"; 9 + sha256 = "sha256:07x8di08ln15mv3x7vp01wgs8zcd1rrzvmzygrl9anhx9zhgsr3b"; 10 10 11 11 rpath = lib.makeLibraryPath 12 12 [ libX11 zlib libSM libICE libXext freetype libXrender fontconfig libXft 13 13 libXinerama stdenv.cc.cc libnotify glib gtk3 libappindicator-gtk3 14 - curl libXfixes libXScrnSaver ]; 14 + curl libXfixes libXScrnSaver libXcursor cairo ]; 15 15 16 16 in 17 17
+2 -2
pkgs/by-name/hy/hydralauncher/package.nix
··· 6 6 }: 7 7 let 8 8 pname = "hydralauncher"; 9 - version = "3.2.3"; 9 + version = "3.3.0"; 10 10 src = fetchurl { 11 11 url = "https://github.com/hydralauncher/hydra/releases/download/v${version}/hydralauncher-${version}.AppImage"; 12 - hash = "sha256-iQL/xEyVgNfAeiz41sos8nbrGRxzQWR618EikPLS/Ig="; 12 + hash = "sha256-5F/RcsRKMAMfXaPOmEkqTrJ4Zgp0+sQ36kPj0p5VUa0="; 13 13 }; 14 14 15 15 appimageContents = appimageTools.extractType2 { inherit pname src version; };
+6 -3
pkgs/by-name/io/iozone/package.nix
··· 21 21 22 22 stdenv.mkDerivation rec { 23 23 pname = "iozone"; 24 - version = "3.506"; 24 + version = "3.507"; 25 25 26 26 src = fetchurl { 27 27 url = "http://www.iozone.org/src/current/iozone${lib.replaceStrings [ "." ] [ "_" ] version}.tar"; 28 - hash = "sha256-EUzlwHGHO5ose6bnPQXV735mVkOSrL/NwLMmHbEPy+c="; 28 + hash = "sha256-HoCHraBW9dgBjuC8dmhtQW/CJR7QMDgFXb0K940eXOM="; 29 29 }; 30 30 31 31 license = fetchurl { ··· 38 38 39 39 buildFlags = target; 40 40 41 - enableParallelBuilding = true; 41 + # The makefile doesn't define a rule for e.g. libbif.o 42 + # Make will try to evaluate implicit built-in rules for these outputs if building in parallel 43 + # Build in serial so that the main rule builds everything before the implicit ones are attempted 44 + enableParallelBuilding = false; 42 45 43 46 installPhase = '' 44 47 mkdir -p $out/{bin,share/doc,libexec,share/man/man1}
+2 -2
pkgs/by-name/ir/irpf/package.nix
··· 13 13 14 14 stdenvNoCC.mkDerivation (finalAttrs: { 15 15 pname = "irpf"; 16 - version = "2024-1.6"; 16 + version = "2025-1.0"; 17 17 18 18 # https://www.gov.br/receitafederal/pt-br/centrais-de-conteudo/download/pgd/dirpf 19 19 # Para outros sistemas operacionais -> Multi ··· 23 23 in 24 24 fetchzip { 25 25 url = "https://downloadirpf.receita.fazenda.gov.br/irpf/${year}/irpf/arquivos/IRPF${finalAttrs.version}.zip"; 26 - hash = "sha256-wYSfU6tkYuSns+RnSy2c3yRR05t/8iXLhRMqPQR+oO0="; 26 + hash = "sha256-gDGDOthUbRmj68CHmHhaYlGs4tiQTNVlEmuyLZ5e0zY="; 27 27 }; 28 28 29 29 passthru.updateScript = writeScript "update-irpf" ''
+2 -2
pkgs/by-name/ir/irrd/package.nix
··· 6 6 , git 7 7 , postgresql 8 8 , postgresqlTestHook 9 - , redis 9 + , valkey 10 10 , redisTestHook 11 11 }: 12 12 ··· 85 85 86 86 nativeCheckInputs = [ 87 87 git 88 - redis 88 + valkey 89 89 redisTestHook 90 90 postgresql 91 91 postgresqlTestHook
+3 -15
pkgs/by-name/ki/kitty/package.nix
··· 56 56 with python3Packages; 57 57 buildPythonApplication rec { 58 58 pname = "kitty"; 59 - version = "0.40.0"; 59 + version = "0.40.1"; 60 60 format = "other"; 61 61 62 62 src = fetchFromGitHub { 63 63 owner = "kovidgoyal"; 64 64 repo = "kitty"; 65 65 tag = "v${version}"; 66 - hash = "sha256-c+u+lMuokDR8kWM0an3jFPC/qoK2RZTKqHZtfEnqtnM="; 66 + hash = "sha256-ta9MTbSkIkowkd5zBUbtauFNGVRDgxof1SSQXuEgFTQ="; 67 67 }; 68 68 69 69 goModules = 70 70 (buildGo123Module { 71 71 pname = "kitty-go-modules"; 72 72 inherit src version; 73 - vendorHash = "sha256-gBEzW2k1HDDmg1P1t6u90Lf1lLe1IKGpF2T9iCA31qs="; 73 + vendorHash = "sha256-wr5R2X+lV8vVVWsDYLLSaz7HRNOB7Zzk/a7knsdDlXs="; 74 74 }).goModules; 75 75 76 76 buildInputs = ··· 159 159 # Skip `test_ssh_bootstrap_with_different_launchers` when launcher is `zsh` since it causes: 160 160 # OSError: master_fd is in error condition 161 161 ./disable-test_ssh_bootstrap_with_different_launchers.patch 162 - 163 - # Remove after 0.40.1 164 - (fetchpatch { 165 - url = "https://github.com/kovidgoyal/kitty/commit/6171ca6.patch"; 166 - hash = "sha256-OBB0YcgEYgw3Jcg+Dgus6rwQ4gGL6GMr6pd7m9CGq9k="; 167 - }) 168 - 169 - (fetchpatch { 170 - url = "https://github.com/kovidgoyal/kitty/commit/8cbdd003e2.patch"; 171 - hash = "sha256-pKIJIqIdPfB4kQ6FtpYDumpgjJkMxoLT8fKzfgWYJnw="; 172 - }) 173 - 174 162 ]; 175 163 176 164 hardeningDisable = [
+3 -3
pkgs/by-name/li/lintspec/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "lintspec"; 9 - version = "0.4.0"; 9 + version = "0.4.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "beeb"; 13 13 repo = "lintspec"; 14 14 tag = "v${version}"; 15 - hash = "sha256-QLD2eGuMiNh4qlzGPJOS2VbwpNCQ8+l3qKj2hDNe1oA="; 15 + hash = "sha256-3+E0y3WxyjvIeIaAVhjXoBnS4+THv6L4Dj4LvpRYkog="; 16 16 }; 17 17 18 18 useFetchCargoVendor = true; 19 - cargoHash = "sha256-EECQpihj+N8TmbSLtheyRo/ZtuTvyLT32D0mVPRR2FI="; 19 + cargoHash = "sha256-TIGNToVqzRUV3/5RpbYpuMrefntft9qasCjOxmpE3lc="; 20 20 21 21 meta = { 22 22 description = "Blazingly fast linter for NatSpec comments in Solidity code";
+2 -1
pkgs/by-name/lu/lug-helper/package.nix
··· 62 62 unzip 63 63 libnotify 64 64 ] 65 - } 65 + } \ 66 + --prefix XDG_DATA_DIRS : "$out" 66 67 67 68 ''; 68 69 passthru.updateScript = nix-update-script { };
+4 -4
pkgs/by-name/ma/mago/package.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "mago"; 13 - version = "0.10.0"; 13 + version = "0.20.2"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "carthage-software"; 17 17 repo = "mago"; 18 18 tag = version; 19 - hash = "sha256-NYAlLJsKI+twrlryVumjsOnY3xvEeLTO/rAFTZtE+KU="; 19 + hash = "sha256-XRPP57ylTLodOCzRTLO1IXLq9Yuk/vkDovSlMcushy0="; 20 20 }; 21 21 22 22 useFetchCargoVendor = true; 23 - cargoHash = "sha256-0AnJIrA15WC3LPiokwuX9w9riaaL5s2vqwhj4XRa6LM="; 23 + cargoHash = "sha256-Mlxs0ApYOOHNYEt2AWuOixLqBJrJ/++Gy+EFGsb9wKM="; 24 24 25 25 env = { 26 26 # Get openssl-sys to use pkg-config ··· 35 35 tests.version = testers.testVersion { 36 36 package = mago; 37 37 command = "mago --version"; 38 - version = "mago-cli ${version}"; 38 + version = "mago ${version}"; 39 39 }; 40 40 }; 41 41
+3 -3
pkgs/by-name/ma/mautrix-gmessages/package.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "mautrix-gmessages"; 13 - version = "0.6.0"; 13 + version = "0.6.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "mautrix"; 17 17 repo = "gmessages"; 18 18 tag = "v${version}"; 19 - hash = "sha256-FNjFGO/4j3kLo79oU5fsYA2/yhc9cAsAGIAQ5OJ2VPE="; 19 + hash = "sha256-qpqFWQ4ZhgzG7SG6phW6LnS52Ve1S+Ky6YtjzfBkBmE="; 20 20 }; 21 21 22 - vendorHash = "sha256-QZ16R5i0I7uvQCDpa9/0Fh3jP6TEiheenRnRUXHvYIQ="; 22 + vendorHash = "sha256-Ps9I8WtTtrc3gSMxt4XZ/IUipZL2+kbgNfbY2PYFoa8="; 23 23 24 24 ldflags = [ 25 25 "-s"
+3 -3
pkgs/by-name/ma/mautrix-slack/package.nix
··· 13 13 withGoolm ? false, 14 14 }: 15 15 let 16 - version = "0.1.4"; 16 + version = "0.2.0"; 17 17 in 18 18 buildGoModule { 19 19 pname = "mautrix-slack"; ··· 23 23 owner = "mautrix"; 24 24 repo = "slack"; 25 25 tag = "v${version}"; 26 - hash = "sha256-MDbWvbEY8+CrUL1SnjdJ4SqyOH/5gPsEQkLnTHyJdOo="; 26 + hash = "sha256-y6DsojQQAQkAB4puhk3DLheVvjn0puoYvzoX1H7gBEM="; 27 27 }; 28 28 29 - vendorHash = "sha256-8U6ifMLRF7PJyG3hWKgBtj/noO/eCXXD60aeB4p2W54="; 29 + vendorHash = "sha256-1aYg6wDG2hzUshtHs9KiJDAFb4OM1oupUJAh3LR4KxY="; 30 30 31 31 buildInputs = lib.optional (!withGoolm) olm; 32 32 tags = lib.optional withGoolm "goolm";
+3 -3
pkgs/by-name/me/meowlnir/package.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "meowlnir"; 12 - version = "0.2.0"; 12 + version = "0.3.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "maunium"; 16 16 repo = "meowlnir"; 17 17 tag = "v${version}"; 18 - hash = "sha256-Fzi9KI6bPrmKMku176rAnLpfVcAjYlKUQ8MiSQB9hpU="; 18 + hash = "sha256-ig803e4onU3E4Nj5aJo2+QfwZt12iKIJ7fS/BjXsojc="; 19 19 }; 20 20 21 21 buildInputs = [ olm ]; 22 22 23 - vendorHash = "sha256-G1+KDssamPRFlGs/moBk0qJDT/IctiKgnM+mVfCDMwg="; 23 + vendorHash = "sha256-+P7tlpGTo9N+uSn22uAlzyB36hu3re+KfOe3a/uzLZE="; 24 24 25 25 doCheck = true; 26 26 doInstallCheck = true;
+22 -9
pkgs/by-name/mi/milu/package.nix
··· 5 5 unzip, 6 6 pkg-config, 7 7 glib, 8 + llvm, 8 9 llvmPackages, 9 10 }: 10 11 ··· 13 14 version = "2016-05-09"; 14 15 15 16 src = fetchFromGitHub { 16 - sha256 = "14cglw04cliwlpvw7qrs6rfm5sv6qa558d7iby5ng3wdjcwx43nk"; 17 - rev = "b5f2521859c0319d321ad3c1ad793b826ab5f6e1"; 18 - repo = "Milu"; 19 17 owner = "yuejia"; 18 + repo = "Milu"; 19 + rev = "b5f2521859c0319d321ad3c1ad793b826ab5f6e1"; 20 + hash = "sha256-0w7SOZONj2eLX/E0VIrCZutSXTY648P3pTxSRgCnj5E="; 20 21 }; 21 22 22 23 hardeningDisable = [ "format" ]; 23 24 24 25 preConfigure = '' 25 - sed -i 's#/usr/bin/##g' Makefile 26 - ''; 27 - 28 - installPhase = '' 29 - mkdir -p $out/bin 30 - cp bin/milu $out/bin 26 + substituteInPlace Makefile \ 27 + --replace-fail /usr/bin/ "" \ 28 + --replace-fail bin/milu $out/bin/milu 31 29 ''; 32 30 33 31 nativeBuildInputs = [ 34 32 pkg-config 35 33 unzip 36 34 ]; 35 + 37 36 buildInputs = [ 38 37 glib 38 + llvm.dev 39 39 llvmPackages.libclang 40 40 ]; 41 + 42 + preBuild = '' 43 + mkdir -p $out/bin 44 + ''; 45 + 46 + env.NIX_CFLAGS_COMPILE = toString [ 47 + "-Wno-incompatible-pointer-types" 48 + "-Wno-implicit-function-declaration" 49 + "-Wno-error=int-conversion" 50 + ]; 51 + 52 + # `make all` already installs the binaries 53 + dontInstall = true; 41 54 42 55 meta = { 43 56 description = "Higher Order Mutation Testing Tool for C and C++ programs";
+6 -4
pkgs/by-name/mq/mqttx/package.nix
··· 8 8 9 9 let 10 10 pname = "mqttx"; 11 - version = "1.10.1"; 11 + version = "1.11.1"; 12 12 13 13 suffixedUrl = 14 14 suffix: ··· 16 16 sources = { 17 17 "aarch64-linux" = fetchurl { 18 18 url = suffixedUrl "-arm64"; 19 - hash = "sha256-QumOqOOFXOXf0oqXWVaz0+69kHDk3HQKvNcQl8X7Fp8="; 19 + hash = "sha256-gRR0gFHqIPXOrSytqERAi7msfrrYXm2xP84Jy+UhrKg="; 20 20 }; 21 21 "x86_64-linux" = fetchurl { 22 22 url = suffixedUrl ""; 23 - hash = "sha256-+TyZnx3/qraoA3rcpIDKedGyTzFvdaAE/v4pzXrB0zU="; 23 + hash = "sha256-rqzh4whp8NaeQb98mKTu+hL3RXQBEOKgvJKwLhzu+hg="; 24 24 }; 25 25 }; 26 26 ··· 35 35 appimageTools.wrapType2 { 36 36 inherit pname version src; 37 37 38 + extraPkgs = pkgs: [ pkgs.xorg.libxshmfence ]; 39 + 38 40 extraInstallCommands = '' 39 41 install -m 444 -D ${appimageContents}/${pname}.desktop $out/share/applications/${pname}.desktop 40 42 install -m 444 -D ${appimageContents}/${pname}.png $out/share/icons/hicolor/1024x1024/apps/${pname}.png ··· 43 45 install -m 444 -D ${pname}_512.png $out/share/icons/hicolor/512x512/apps/${pname}.png 44 46 45 47 substituteInPlace $out/share/applications/${pname}.desktop \ 46 - --replace 'Exec=AppRun' 'Exec=${pname}' 48 + --replace-fail 'Exec=AppRun' 'Exec=${pname}' 47 49 ''; 48 50 49 51 meta = with lib; {
+6
pkgs/by-name/na/naev/package.nix
··· 77 77 78 78 postPatch = '' 79 79 patchShebangs --build dat/outfits/bioship/generate.py utils/build/*.py utils/*.py 80 + 81 + # Add a missing include to fix the build against luajit-2.1.1741730670. 82 + # Otherwise the build fails as: 83 + # src/lutf8lib.c:421:22: error: 'INT_MAX' undeclared (first use in this function) 84 + # TODO: drop after 0.12.3 release 85 + sed -i '1i#include <limits.h>' src/lutf8lib.c 80 86 ''; 81 87 82 88 meta = {
+4 -2
pkgs/by-name/ne/nestopia-ue/package.nix
··· 13 13 libepoxy, 14 14 makeWrapper, 15 15 pkg-config, 16 + libsamplerate, 16 17 stdenv, 17 18 unzip, 18 19 wrapGAppsHook3, ··· 21 22 22 23 stdenv.mkDerivation (finalAttrs: { 23 24 pname = "nestopia"; 24 - version = "1.52.1"; 25 + version = "1.53.0"; 25 26 26 27 src = fetchFromGitHub { 27 28 owner = "0ldsk00l"; 28 29 repo = "nestopia"; 29 30 rev = finalAttrs.version; 30 - hash = "sha256-r8Z0Ejf5vWcdvxkUkUKJtipQIRoiwoRj0Bx06Gnxd08="; 31 + hash = "sha256-C2uiC8zlleXQlThrRETJa9vu++mJy1ySJKAkgu5zuxc="; 31 32 }; 32 33 33 34 buildInputs = [ ··· 41 42 libarchive 42 43 libao 43 44 xdg-utils 45 + libsamplerate 44 46 ]; 45 47 46 48 nativeBuildInputs = [
+44
pkgs/by-name/ni/ninjavis/package.nix
··· 1 + { 2 + lib, 3 + python3Packages, 4 + fetchFromGitHub, 5 + }: 6 + 7 + python3Packages.buildPythonApplication rec { 8 + pname = "ninjavis"; 9 + version = "0.2.1"; 10 + pyproject = true; 11 + 12 + src = fetchFromGitHub { 13 + owner = "chagui"; 14 + repo = "ninjavis"; 15 + tag = "v${version}"; 16 + hash = "sha256-4MXU43noG0mKwiXWrLu1tW9YGkU1YjP/UoUKZzVer14="; 17 + }; 18 + 19 + build-system = [ 20 + python3Packages.poetry-core 21 + ]; 22 + 23 + pythonImportsCheck = [ 24 + "ninjavis" 25 + ]; 26 + 27 + doInstallCheck = true; 28 + installCheckPhase = '' 29 + runHook preInstallCheck 30 + 31 + env --ignore-environment $out/bin/ninjavis --help 32 + 33 + runHook postInstallCheck 34 + ''; 35 + 36 + meta = { 37 + description = "Generate visualization from Ninja build logs"; 38 + homepage = "https://github.com/chagui/ninjavis"; 39 + changelog = "https://github.com/chagui/ninjavis/releases/tag/v${version}"; 40 + license = lib.licenses.mit; 41 + maintainers = with lib.maintainers; [ pbsds ]; 42 + mainProgram = "ninjavis"; 43 + }; 44 + }
+10 -10
pkgs/by-name/op/opengamepadui/package.nix
··· 5 5 dbus, 6 6 fetchFromGitHub, 7 7 gamescope, 8 - godot_4_3, 8 + godot_4_4, 9 9 hwdata, 10 10 lib, 11 11 libGL, ··· 24 24 25 25 stdenv.mkDerivation (finalAttrs: { 26 26 pname = "opengamepadui"; 27 - version = "0.35.8"; 27 + version = "0.37.0"; 28 28 29 29 buildType = if withDebug then "debug" else "release"; 30 30 ··· 32 32 owner = "ShadowBlip"; 33 33 repo = "OpenGamepadUI"; 34 34 tag = "v${finalAttrs.version}"; 35 - hash = "sha256-vMb08Wqjt5j6IgMnXuZr6MGNk1CprVn2GTNDdOxnFG0="; 35 + hash = "sha256-kzGFyzOu4Pkj+a7kExFwxFu35qfoLoWz3uqd8COUTNA="; 36 36 }; 37 37 38 38 cargoDeps = rustPlatform.fetchCargoVendor { 39 39 inherit (finalAttrs) src; 40 40 sourceRoot = "source/${finalAttrs.cargoRoot}"; 41 - hash = "sha256-sTzMewIfKHbmVhSPZgUIzFFz1ahK+PMoQ5oB4GEt8nY="; 41 + hash = "sha256-T79G2bShJuFRfaCqG3IDHqW0s68yAdGyv58kdDYg6kg="; 42 42 }; 43 43 cargoRoot = "extensions"; 44 44 45 45 nativeBuildInputs = [ 46 46 autoPatchelfHook 47 47 cargo 48 - godot_4_3 49 - godot_4_3.export-templates-bin 48 + godot_4_4 49 + godot_4_4.export-templates-bin 50 50 pkg-config 51 51 rustPlatform.cargoSetupHook 52 52 ]; ··· 75 75 76 76 env = 77 77 let 78 - versionAndRelease = lib.splitString "-" godot_4_3.version; 78 + versionAndRelease = lib.splitString "-" godot_4_4.version; 79 79 in 80 80 { 81 - GODOT = lib.getExe godot_4_3; 81 + GODOT = lib.getExe godot_4_4; 82 82 GODOT_VERSION = lib.elemAt versionAndRelease 0; 83 83 GODOT_RELEASE = lib.elemAt versionAndRelease 1; 84 - EXPORT_TEMPLATE = "${godot_4_3.export-templates-bin}"; 84 + EXPORT_TEMPLATE = "${godot_4_4.export-templates-bin}"; 85 85 BUILD_TYPE = "${finalAttrs.buildType}"; 86 86 }; 87 87 ··· 93 93 # Godot looks for export templates in HOME 94 94 export HOME=$(mktemp -d) 95 95 mkdir -p $HOME/.local/share/godot/export_templates 96 - ln -s "${godot_4_3.export-templates-bin}" "$HOME/.local/share/godot/export_templates/$GODOT_VERSION.$GODOT_RELEASE" 96 + ln -s "${godot_4_4.export-templates-bin}" "$HOME/.local/share/godot/export_templates/$GODOT_VERSION.$GODOT_RELEASE" 97 97 ''; 98 98 99 99 postInstall = ''
+3 -3
pkgs/by-name/pi/pilipalax/package.nix
··· 11 11 12 12 flutter324.buildFlutterApplication rec { 13 13 pname = "pilipalax"; 14 - version = "1.1.0-beta.5"; 14 + version = "1.1.2-beta"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "orz12"; 18 18 repo = "PiliPalaX"; 19 - tag = "${version}+180"; 20 - hash = "sha256-bKs0EZjJCJvtVOZYl3GqXPE2MxX7DRjMwtmFUcNgrOQ="; 19 + tag = "${version}+187"; 20 + hash = "sha256-8GQtPYgeYM7yTw3i5H9REWfM5j3G0aQz3oHxz8i9p2Y="; 21 21 }; 22 22 23 23 pubspecLock = lib.importJSON ./pubspec.lock.json;
+12 -12
pkgs/by-name/pi/pilipalax/pubspec.lock.json
··· 1718 1718 "dependency": "direct overridden", 1719 1719 "description": { 1720 1720 "name": "screen_brightness", 1721 - "sha256": "a9a98666045ad4ea0d82bca09fe5f007b8440e315075dc948c1507a9b72ee41f", 1721 + "sha256": "99b898dae860ebe55fc872d8e300c6eafff3ee4ccb09301b90adb3f241f29874", 1722 1722 "url": "https://pub.dev" 1723 1723 }, 1724 1724 "source": "hosted", 1725 - "version": "2.0.1" 1725 + "version": "2.1.1" 1726 1726 }, 1727 1727 "screen_brightness_android": { 1728 1728 "dependency": "transitive", 1729 1729 "description": { 1730 1730 "name": "screen_brightness_android", 1731 - "sha256": "74455f9901ab8a1a45c9097b83855dbbb7498110cc2bc249cb5a86570dd1cf7c", 1731 + "sha256": "ff9141bed547db02233e7dd88f990ab01973a0c8a8c04ddb855c7b072f33409a", 1732 1732 "url": "https://pub.dev" 1733 1733 }, 1734 1734 "source": "hosted", 1735 - "version": "2.0.0" 1735 + "version": "2.1.0" 1736 1736 }, 1737 1737 "screen_brightness_ios": { 1738 1738 "dependency": "transitive", 1739 1739 "description": { 1740 1740 "name": "screen_brightness_ios", 1741 - "sha256": "caee02b34e0089b138a7aee35c461bd2d7c78446dd417f07613def192598ca08", 1741 + "sha256": "bfd9bfd0ac852e7aa170e7e356cc27195b2a75037b72c8c6336cf6fb2115cffb", 1742 1742 "url": "https://pub.dev" 1743 1743 }, 1744 1744 "source": "hosted", 1745 - "version": "2.0.0" 1745 + "version": "2.1.1" 1746 1746 }, 1747 1747 "screen_brightness_macos": { 1748 1748 "dependency": "transitive", 1749 1749 "description": { 1750 1750 "name": "screen_brightness_macos", 1751 - "sha256": "84fc8ffcbcf19c03d76b7673b0f2c2a2663c09aa2bc37c76ea83ab049294a97a", 1751 + "sha256": "4edf330ad21078686d8bfaf89413325fbaf571dcebe1e89254d675a3f288b5b9", 1752 1752 "url": "https://pub.dev" 1753 1753 }, 1754 1754 "source": "hosted", 1755 - "version": "2.0.0" 1755 + "version": "2.1.1" 1756 1756 }, 1757 1757 "screen_brightness_platform_interface": { 1758 1758 "dependency": "transitive", 1759 1759 "description": { 1760 1760 "name": "screen_brightness_platform_interface", 1761 - "sha256": "321e9455b0057e3647fd37700931e063739d94a8aa1b094f98133c01cb56c27b", 1761 + "sha256": "737bd47b57746bc4291cab1b8a5843ee881af499514881b0247ec77447ee769c", 1762 1762 "url": "https://pub.dev" 1763 1763 }, 1764 1764 "source": "hosted", 1765 - "version": "2.0.0" 1765 + "version": "2.1.0" 1766 1766 }, 1767 1767 "screen_brightness_windows": { 1768 1768 "dependency": "transitive", 1769 1769 "description": { 1770 1770 "name": "screen_brightness_windows", 1771 - "sha256": "5edbfb1dcaedf960f6858efac8ca45d6c18faae17df86e2c03137d3a563ea155", 1771 + "sha256": "d3518bf0f5d7a884cee2c14449ae0b36803802866de09f7ef74077874b6b2448", 1772 1772 "url": "https://pub.dev" 1773 1773 }, 1774 1774 "source": "hosted", 1775 - "version": "2.0.1" 1775 + "version": "2.1.0" 1776 1776 }, 1777 1777 "scrollable_positioned_list": { 1778 1778 "dependency": "direct main",
+2 -2
pkgs/by-name/pr/protonplus/package.nix
··· 20 20 }: 21 21 stdenv.mkDerivation (finalAttrs: { 22 22 pname = "protonplus"; 23 - version = "0.4.25"; 23 + version = "0.4.27"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "Vysp3r"; 27 27 repo = "protonplus"; 28 28 rev = "v${finalAttrs.version}"; 29 - hash = "sha256-IDEJ1/53fVq8FA58e3Fk/SPD8+xtXWLQr5IgNiim1jk="; 29 + hash = "sha256-y6fqn02Ui5RbBy5oMeX5HPRHQDUYD2MphoubZxIwQI8="; 30 30 }; 31 31 32 32 nativeBuildInputs = [
+3 -3
pkgs/by-name/pw/pwvucontrol/package.nix
··· 43 43 in 44 44 stdenv.mkDerivation (finalAttrs: { 45 45 pname = "pwvucontrol"; 46 - version = "0.4.8"; 46 + version = "0.4.9"; 47 47 48 48 src = fetchFromGitHub { 49 49 owner = "saivert"; 50 50 repo = "pwvucontrol"; 51 51 tag = finalAttrs.version; 52 - hash = "sha256-E3UfZO0R6WGeUffgGQ2ceHiG4hwIuFntTdCpojaWL8E="; 52 + hash = "sha256-fmEXVUz3SerVgWijT/CAoelSUzq861AkBVjP5qwS0ao="; 53 53 }; 54 54 55 55 cargoDeps = rustPlatform.fetchCargoVendor { 56 56 inherit (finalAttrs) pname version src; 57 - hash = "sha256-uaRpaiVjxc0j4oDbmmwt8SPS7O7hWzoYO62jLYzHl1c="; 57 + hash = "sha256-oQSH4P9WxvkXZ53KM5ZoRAZyQFt60Zz7guBbgT1iiBk="; 58 58 }; 59 59 60 60 nativeBuildInputs = [
+2 -3
pkgs/by-name/qu/quicktemplate/package.nix
··· 3 3 buildGoModule, 4 4 fetchFromGitHub, 5 5 }: 6 - 7 6 buildGoModule rec { 8 7 pname = "quicktemplate"; 9 - version = "1.7.0"; 8 + version = "1.8.0"; 10 9 11 10 src = fetchFromGitHub { 12 11 owner = "valyala"; 13 12 repo = "quicktemplate"; 14 13 rev = "v${version}"; 15 - sha256 = "0xzsvhpllmzmyfg8sj1dpp02826j1plmyrdvqbwryzhf2ci33nqr"; 14 + sha256 = "cra3LZ3Yq0KNQErQ2q0bVSy7rOLKdSkIryIgQsNRBHw="; 16 15 }; 17 16 18 17 vendorHash = null;
+3 -3
pkgs/by-name/ra/rainfrog/package.nix
··· 9 9 rainfrog, 10 10 }: 11 11 let 12 - version = "0.2.14"; 12 + version = "0.2.15"; 13 13 in 14 14 rustPlatform.buildRustPackage { 15 15 inherit version; ··· 19 19 owner = "achristmascarl"; 20 20 repo = "rainfrog"; 21 21 tag = "v${version}"; 22 - hash = "sha256-mN7xZs95bi+/wjmOZnOC6LRF7frF0xGJvTMseK2Uorc="; 22 + hash = "sha256-r+tual/ko8SjToMR9ek/Gf5GJieu2wPsMMkjKXw+cLk="; 23 23 }; 24 24 25 25 useFetchCargoVendor = true; 26 - cargoHash = "sha256-a5uMHiuxVyfRNdGBf7LW00qfQNqAyRnxMq/rMYz3dBg="; 26 + cargoHash = "sha256-JkH771cXGz8YcRy+zO/mB4hkFrA6l0Yg86cLCgsjbrE="; 27 27 28 28 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin ( 29 29 with darwin.apple_sdk.frameworks;
+4 -4
pkgs/by-name/re/readest/package.nix
··· 19 19 20 20 rustPlatform.buildRustPackage rec { 21 21 pname = "readest"; 22 - version = "0.9.19"; 22 + version = "0.9.23"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "readest"; 26 26 repo = "readest"; 27 27 tag = "v${version}"; 28 - hash = "sha256-Z84vH6vEtUMly++I+2AWBGl+3NXEAyjSIVJ57DnUS54="; 28 + hash = "sha256-MveWZ+9SSd6mPw580U8d8aP7c4rl4861VzCKHpOKiXU="; 29 29 fetchSubmodules = true; 30 30 }; 31 31 ··· 38 38 39 39 pnpmDeps = pnpm_9.fetchDeps { 40 40 inherit pname version src; 41 - hash = "sha256-gHYZpUQOznFIwH0w0tyWyQYyOwNwL8aRcDthx902h+4="; 41 + hash = "sha256-faLytJLMlWs80HZpN0TnCCEWPe9SPP9QH0bx3HLDO5o="; 42 42 }; 43 43 44 44 pnpmRoot = "../.."; 45 45 46 46 useFetchCargoVendor = true; 47 47 48 - cargoHash = "sha256-uAVYvyNKK0megsl3QEfN3vbuO1gJfwbOm9K0SohuGfg="; 48 + cargoHash = "sha256-5E+3Hpa6hiOORtZ5ykrXVOPucbppwO5KVVS1mb9mVXY="; 49 49 50 50 cargoRoot = "../.."; 51 51
+1
pkgs/by-name/re/redis/package.nix
··· 94 94 --timeout 2000 \ 95 95 --clients $NIX_BUILD_CORES \ 96 96 --tags -leaks \ 97 + --skipunit integration/aof-multi-part \ 97 98 --skipunit integration/failover # flaky and slow 98 99 99 100 runHook postCheck
+3 -3
pkgs/by-name/re/redisTestHook/package.nix
··· 2 2 lib, 3 3 callPackage, 4 4 makeSetupHook, 5 - redis, 5 + valkey, 6 6 }: 7 7 8 8 makeSetupHook { 9 9 name = "redis-test-hook"; 10 10 substitutions = { 11 - cli = lib.getExe' redis "redis-cli"; 12 - server = lib.getExe' redis "redis-server"; 11 + cli = lib.getExe' valkey "redis-cli"; 12 + server = lib.getExe' valkey "redis-server"; 13 13 }; 14 14 passthru.tests = { 15 15 simple = callPackage ./test.nix { };
+2 -2
pkgs/by-name/re/redisTestHook/test.nix
··· 1 1 { 2 - redis, 2 + valkey, 3 3 redisTestHook, 4 4 stdenv, 5 5 }: ··· 8 8 name = "redis-test-hook-test"; 9 9 10 10 nativeCheckInputs = [ 11 - redis 11 + valkey 12 12 redisTestHook 13 13 ]; 14 14
+2 -2
pkgs/by-name/re/refine/package.nix
··· 34 34 35 35 python3Packages.buildPythonApplication rec { 36 36 pname = "refine"; 37 - version = "0.5.2"; 37 + version = "0.5.5"; 38 38 pyproject = false; # uses meson 39 39 40 40 src = fetchFromGitLab { ··· 42 42 owner = "TheEvilSkeleton"; 43 43 repo = "Refine"; 44 44 tag = version; 45 - hash = "sha256-G1G9uuch7kdqWvSfCSOgb9o67da7spNKnnka47k4/rY="; 45 + hash = "sha256-b2dNhd5UJqH/l5BOEgcOUZrhCZa8ErdBzNw5g4VjtM8="; 46 46 }; 47 47 48 48 nativeBuildInputs = [
+2 -2
pkgs/by-name/sh/showtime/package.nix
··· 19 19 20 20 python3Packages.buildPythonApplication rec { 21 21 pname = "showtime"; 22 - version = "47.0"; 22 + version = "48.0"; 23 23 pyproject = false; 24 24 25 25 src = fetchFromGitLab { ··· 28 28 owner = "Incubator"; 29 29 repo = "showtime"; 30 30 rev = "refs/tags/${version}"; 31 - hash = "sha256-Bnz+LFyvwSjkrbePmoVZZqy2pNLqiyJTsZsSuUyDy+E="; 31 + hash = "sha256-w6ERJNBw+YgPHfm24KKYFS6T4EKEguHOeron0ofLxIg="; 32 32 }; 33 33 34 34 strictDeps = true;
+4 -4
pkgs/by-name/si/siyuan/package.nix
··· 35 35 in 36 36 stdenv.mkDerivation (finalAttrs: { 37 37 pname = "siyuan"; 38 - version = "3.1.24"; 38 + version = "3.1.25"; 39 39 40 40 src = fetchFromGitHub { 41 41 owner = "siyuan-note"; 42 42 repo = "siyuan"; 43 43 rev = "v${finalAttrs.version}"; 44 - hash = "sha256-BrFyMaxACkdjQy151vIYiJ9WotogEbEKWnFXNhyqKw4="; 44 + hash = "sha256-ZLhLuRj5gdqca9Sbty7BEUBB/+8SgPYhnhoSOR5j4YE="; 45 45 }; 46 46 47 47 kernel = buildGo123Module { 48 48 name = "${finalAttrs.pname}-${finalAttrs.version}-kernel"; 49 49 inherit (finalAttrs) src; 50 50 sourceRoot = "${finalAttrs.src.name}/kernel"; 51 - vendorHash = "sha256-2ryd+GciVGmvqLNgdvoHC1tjjnFZgWO2uObj8uNwu0E="; 51 + vendorHash = "sha256-pW52K3nvIdhpeBj2CtJwwsihcV10+FEf2mgAX61s5nM="; 52 52 53 53 patches = [ 54 54 (replaceVars ./set-pandoc-path.patch { ··· 89 89 src 90 90 sourceRoot 91 91 ; 92 - hash = "sha256-yfcgSCL78hGcq/QDvqx9jMLivW06oRVzI8iqQ7gCrlQ="; 92 + hash = "sha256-01UyupFLr82w0LmainA/7u6195Li/QoTzz/tVxXSVQE="; 93 93 }; 94 94 95 95 sourceRoot = "${finalAttrs.src.name}/app";
+3 -3
pkgs/by-name/st/stackit-cli/package.nix
··· 12 12 13 13 buildGoModule rec { 14 14 pname = "stackit-cli"; 15 - version = "0.24.0"; 15 + version = "0.26.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "stackitcloud"; 19 19 repo = "stackit-cli"; 20 20 rev = "v${version}"; 21 - hash = "sha256-n1F/DjGvNzU5aF05y3K6/vDuFa/ed2XZLfpafi5+NWg="; 21 + hash = "sha256-7XI5YkfLY/Jo1lVEQ2waN7/g8xN8LUTXIva8OzRdRSo="; 22 22 }; 23 23 24 - vendorHash = "sha256-EaHRYdP7w1PQFYNxAWiTYcCpfipuqvbtbBUYNXNM6nc="; 24 + vendorHash = "sha256-ZVDe28D2vw/p5i6MoBZ1KS9pjncOzul3/bLB4cGoY80="; 25 25 26 26 subPackages = [ "." ]; 27 27
+3
pkgs/by-name/st/stalwart-cli/package.nix
··· 22 22 nativeInstallCheckInputs = [ versionCheckHook ]; 23 23 versionCheckProgramArg = [ "--version" ]; 24 24 25 + # Prerelease reports incorrect version 26 + dontVersionCheck = true; 27 + 25 28 meta = { 26 29 inherit (stalwart-mail.meta) license homepage changelog; 27 30 description = "Stalwart Mail Server CLI";
+2 -2
pkgs/by-name/su/suricata/package.nix
··· 27 27 python3, 28 28 zlib, 29 29 redisSupport ? true, 30 - redis, 30 + valkey, 31 31 hiredis, 32 32 rustSupport ? true, 33 33 rustc, ··· 87 87 ] 88 88 ++ lib.optional hyperscanSupport hyperscan 89 89 ++ lib.optionals redisSupport [ 90 - redis 90 + valkey 91 91 hiredis 92 92 ]; 93 93
+4 -2
pkgs/by-name/sw/swayimg/package.nix
··· 22 22 libexif, 23 23 libavif, 24 24 libsixel, 25 + libraw, 25 26 openexr_3, 26 27 bash-completion, 27 28 testers, ··· 30 31 31 32 stdenv.mkDerivation (finalAttrs: { 32 33 pname = "swayimg"; 33 - version = "3.8"; 34 + version = "3.9"; 34 35 35 36 src = fetchFromGitHub { 36 37 owner = "artemsen"; 37 38 repo = "swayimg"; 38 39 tag = "v${finalAttrs.version}"; 39 - hash = "sha256-nPmVUJy5hlWk6Q+s6rRBEzlJvpDKLStKTRjLwj7iA/c="; 40 + hash = "sha256-QPTODuVVDQCP7Ix63F0J0tOzfg5Q9B4GXaxjuTerkI0="; 40 41 }; 41 42 42 43 strictDeps = true; ··· 74 75 libexif 75 76 libavif 76 77 libsixel 78 + libraw 77 79 openexr_3 78 80 ]; 79 81
+2
pkgs/by-name/ta/taskjuggler/Gemfile
··· 1 1 source 'https://rubygems.org' 2 2 gem 'taskjuggler' 3 3 gem 'webrick' 4 + gem 'base64' 5 + gem 'drb'
+18 -12
pkgs/by-name/ta/taskjuggler/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - date (3.3.3) 4 + base64 (0.2.0) 5 + bigdecimal (3.1.9) 6 + date (3.4.1) 7 + drb (2.2.1) 5 8 mail (2.8.1) 6 9 mini_mime (>= 0.1.1) 7 10 net-imap 8 11 net-pop 9 12 net-smtp 10 - mini_mime (1.1.2) 11 - net-imap (0.3.4) 13 + mini_mime (1.1.5) 14 + net-imap (0.5.6) 12 15 date 13 16 net-protocol 14 17 net-pop (0.1.2) 15 18 net-protocol 16 - net-protocol (0.2.1) 19 + net-protocol (0.2.2) 17 20 timeout 18 - net-smtp (0.3.3) 21 + net-smtp (0.5.1) 19 22 net-protocol 20 23 sync (0.5.0) 21 - taskjuggler (3.7.2) 24 + taskjuggler (3.8.1) 22 25 mail (~> 2.7, >= 2.7.1) 23 26 term-ansicolor (~> 1.7, >= 1.7.1) 24 - term-ansicolor (1.7.1) 27 + term-ansicolor (1.11.2) 25 28 tins (~> 1.0) 26 - timeout (0.3.2) 27 - tins (1.32.1) 29 + timeout (0.4.3) 30 + tins (1.38.0) 31 + bigdecimal 28 32 sync 29 - webrick (1.8.1) 33 + webrick (1.9.1) 30 34 31 35 PLATFORMS 32 - x86_64-linux 36 + ruby 33 37 34 38 DEPENDENCIES 39 + base64 40 + drb 35 41 taskjuggler 36 42 webrick 37 43 38 44 BUNDLED WITH 39 - 2.4.12 45 + 2.5.22
+54 -21
pkgs/by-name/ta/taskjuggler/gemset.nix
··· 1 1 { 2 + base64 = { 3 + groups = [ "default" ]; 4 + platforms = [ ]; 5 + source = { 6 + remotes = [ "https://rubygems.org" ]; 7 + sha256 = "01qml0yilb9basf7is2614skjp8384h2pycfx86cr8023arfj98g"; 8 + type = "gem"; 9 + }; 10 + version = "0.2.0"; 11 + }; 12 + bigdecimal = { 13 + groups = [ "default" ]; 14 + platforms = [ ]; 15 + source = { 16 + remotes = [ "https://rubygems.org" ]; 17 + sha256 = "1k6qzammv9r6b2cw3siasaik18i6wjc5m0gw5nfdc6jj64h79z1g"; 18 + type = "gem"; 19 + }; 20 + version = "3.1.9"; 21 + }; 2 22 date = { 3 23 groups = [ "default" ]; 4 24 platforms = [ ]; 5 25 source = { 6 26 remotes = [ "https://rubygems.org" ]; 7 - sha256 = "03skfikihpx37rc27vr3hwrb057gxnmdzxhmzd4bf4jpkl0r55w1"; 27 + sha256 = "0kz6mc4b9m49iaans6cbx031j9y7ldghpi5fzsdh0n3ixwa8w9mz"; 28 + type = "gem"; 29 + }; 30 + version = "3.4.1"; 31 + }; 32 + drb = { 33 + groups = [ "default" ]; 34 + platforms = [ ]; 35 + source = { 36 + remotes = [ "https://rubygems.org" ]; 37 + sha256 = "0h5kbj9hvg5hb3c7l425zpds0vb42phvln2knab8nmazg2zp5m79"; 8 38 type = "gem"; 9 39 }; 10 - version = "3.3.3"; 40 + version = "2.2.1"; 11 41 }; 12 42 mail = { 13 43 dependencies = [ ··· 30 60 platforms = [ ]; 31 61 source = { 32 62 remotes = [ "https://rubygems.org" ]; 33 - sha256 = "0lbim375gw2dk6383qirz13hgdmxlan0vc5da2l072j3qw6fqjm5"; 63 + sha256 = "1vycif7pjzkr29mfk4dlqv3disc5dn0va04lkwajlpr1wkibg0c6"; 34 64 type = "gem"; 35 65 }; 36 - version = "1.1.2"; 66 + version = "1.1.5"; 37 67 }; 38 68 net-imap = { 39 69 dependencies = [ ··· 44 74 platforms = [ ]; 45 75 source = { 46 76 remotes = [ "https://rubygems.org" ]; 47 - sha256 = "1d996zf3g8xz244791b0qsl9vr7zg4lqnnmf9k2kshr9lki5jam8"; 77 + sha256 = "1rgva7p9gvns2ndnqpw503mbd36i2skkggv0c0h192k8xr481phy"; 48 78 type = "gem"; 49 79 }; 50 - version = "0.3.4"; 80 + version = "0.5.6"; 51 81 }; 52 82 net-pop = { 53 83 dependencies = [ "net-protocol" ]; ··· 66 96 platforms = [ ]; 67 97 source = { 68 98 remotes = [ "https://rubygems.org" ]; 69 - sha256 = "0dxckrlw4q1lcn3qg4mimmjazmg9bma5gllv72f8js3p36fb3b91"; 99 + sha256 = "1a32l4x73hz200cm587bc29q8q9az278syw3x6fkc9d1lv5y0wxa"; 70 100 type = "gem"; 71 101 }; 72 - version = "0.2.1"; 102 + version = "0.2.2"; 73 103 }; 74 104 net-smtp = { 75 105 dependencies = [ "net-protocol" ]; ··· 77 107 platforms = [ ]; 78 108 source = { 79 109 remotes = [ "https://rubygems.org" ]; 80 - sha256 = "1c6md06hm5bf6rv53sk54dl2vg038pg8kglwv3rayx0vk2mdql9x"; 110 + sha256 = "0dh7nzjp0fiaqq1jz90nv4nxhc2w359d7c199gmzq965cfps15pd"; 81 111 type = "gem"; 82 112 }; 83 - version = "0.3.3"; 113 + version = "0.5.1"; 84 114 }; 85 115 sync = { 86 116 groups = [ "default" ]; ··· 101 131 platforms = [ ]; 102 132 source = { 103 133 remotes = [ "https://rubygems.org" ]; 104 - sha256 = "07fagka8nl29xwwzfhxx89gp34m5hih5vnq4sha1z814004md53j"; 134 + sha256 = "16d5vgz54all8vl3haqy6j69plny3np4kc3wq7wy3xa3i0h7v60z"; 105 135 type = "gem"; 106 136 }; 107 - version = "3.7.2"; 137 + version = "3.8.1"; 108 138 }; 109 139 term-ansicolor = { 110 140 dependencies = [ "tins" ]; ··· 112 142 platforms = [ ]; 113 143 source = { 114 144 remotes = [ "https://rubygems.org" ]; 115 - sha256 = "1xq5kci9215skdh27npyd3y55p812v4qb4x2hv3xsjvwqzz9ycwj"; 145 + sha256 = "10shkrl9sl1qhrzbmch2cn67w1yy63d0f2948m80b5nl44zwc02b"; 116 146 type = "gem"; 117 147 }; 118 - version = "1.7.1"; 148 + version = "1.11.2"; 119 149 }; 120 150 timeout = { 121 151 groups = [ "default" ]; 122 152 platforms = [ ]; 123 153 source = { 124 154 remotes = [ "https://rubygems.org" ]; 125 - sha256 = "1pfddf51n5fnj4f9ggwj3wbf23ynj0nbxlxqpz12y1gvl9g7d6r6"; 155 + sha256 = "03p31w5ghqfsbz5mcjzvwgkw3h9lbvbknqvrdliy8pxmn9wz02cm"; 126 156 type = "gem"; 127 157 }; 128 - version = "0.3.2"; 158 + version = "0.4.3"; 129 159 }; 130 160 tins = { 131 - dependencies = [ "sync" ]; 161 + dependencies = [ 162 + "bigdecimal" 163 + "sync" 164 + ]; 132 165 groups = [ "default" ]; 133 166 platforms = [ ]; 134 167 source = { 135 168 remotes = [ "https://rubygems.org" ]; 136 - sha256 = "0373zn7zkllcn2q4ylbjgjx9mvm8m73ll3jwjav48dx8myplsp5p"; 169 + sha256 = "0vc80cw3qbbdfiydv7bj7zvch189mh3ifbz7v0ninnrxnwwd3b4r"; 137 170 type = "gem"; 138 171 }; 139 - version = "1.32.1"; 172 + version = "1.38.0"; 140 173 }; 141 174 webrick = { 142 175 groups = [ "default" ]; 143 176 platforms = [ ]; 144 177 source = { 145 178 remotes = [ "https://rubygems.org" ]; 146 - sha256 = "13qm7s0gr2pmfcl7dxrmq38asaza4w0i2n9my4yzs499j731wh8r"; 179 + sha256 = "12d9n8hll67j737ym2zw4v23cn4vxyfkb6vyv1rzpwv6y6a3qbdl"; 147 180 type = "gem"; 148 181 }; 149 - version = "1.8.1"; 182 + version = "1.9.1"; 150 183 }; 151 184 }
+36 -36
pkgs/by-name/v2/v2rayn/deps.json
··· 11 11 }, 12 12 { 13 13 "pname": "Avalonia", 14 - "version": "11.2.4", 15 - "hash": "sha256-CcdWUxqd43A4KeY1K4T5M6R1M0zuwdwyd5Qh/BAlNT4=" 14 + "version": "11.2.5", 15 + "hash": "sha256-DGTMzInnfvJUJWu2SXiRBercxxe1/paQkSlBHMahp4g=" 16 16 }, 17 17 { 18 18 "pname": "Avalonia.Angle.Windows.Natives", ··· 31 31 }, 32 32 { 33 33 "pname": "Avalonia.Controls.ColorPicker", 34 - "version": "11.2.4", 35 - "hash": "sha256-21Wfb4p0dCevw8Iu/Fchngt1teAnBaxEWgiUpFkerTo=" 34 + "version": "11.2.5", 35 + "hash": "sha256-gWGIqXrac0fOnmGbovcFWv5Uj14hOyC+n0l45N7owMg=" 36 36 }, 37 37 { 38 38 "pname": "Avalonia.Controls.DataGrid", 39 - "version": "11.2.4", 40 - "hash": "sha256-fqQBKzHcL0CwuOQ90Gp+UUZZP9OQ9U6H41bvikxQJpo=" 39 + "version": "11.2.5", 40 + "hash": "sha256-eGKc+UnsO5nNiUd7+n3CQW6vIWq2qpazYvYXrVTQY7s=" 41 41 }, 42 42 { 43 43 "pname": "Avalonia.Desktop", 44 - "version": "11.2.4", 45 - "hash": "sha256-WKTOx7RNSb0fOMg5Za4j+u9DwKXDqVzHwQCEXSm7TFo=" 44 + "version": "11.2.5", 45 + "hash": "sha256-rDJ1NJM3tEqB7sRszj0AfplwkkvtE3Hvn7acrIsq+yw=" 46 46 }, 47 47 { 48 48 "pname": "Avalonia.Diagnostics", 49 - "version": "11.2.4", 50 - "hash": "sha256-MUSfRXeJ1bstO2rTqWWCQyVq2EpjM5b5bxe0KxVAEU4=" 49 + "version": "11.2.5", 50 + "hash": "sha256-WsAMBmNfUKMB2II3AfM8A0klfJR/vgEtRUTGpgC6F3A=" 51 51 }, 52 52 { 53 53 "pname": "Avalonia.FreeDesktop", 54 - "version": "11.2.4", 55 - "hash": "sha256-lw8YFXR/pn0awFvFW+OhjZ2LbHonL6zwqLIz+pQp+Sk=" 54 + "version": "11.2.5", 55 + "hash": "sha256-rLzsxUQS1LLLcLWkDR8SLLwLY53vUMqgiKoDWM6PjtM=" 56 56 }, 57 57 { 58 58 "pname": "Avalonia.Native", 59 - "version": "11.2.4", 60 - "hash": "sha256-MvxivGjYerXcr70JpWe9CCXO6MU9QQgCkmZfjZCFdJM=" 59 + "version": "11.2.5", 60 + "hash": "sha256-XQQgcfbRRHPzH432M1KzkSEtLQof40yCt+KIrQREBY0=" 61 61 }, 62 62 { 63 63 "pname": "Avalonia.ReactiveUI", 64 - "version": "11.2.4", 65 - "hash": "sha256-LqwLUDCIbJowol6BNTTsK7a7KjcLLbCM3y3KKvuHRGw=" 64 + "version": "11.2.5", 65 + "hash": "sha256-p3ELTiH4kYdcrUF87zZzRMsOU41Q3XBCBKRmQYWdLBs=" 66 66 }, 67 67 { 68 68 "pname": "Avalonia.Remote.Protocol", ··· 76 76 }, 77 77 { 78 78 "pname": "Avalonia.Remote.Protocol", 79 - "version": "11.2.4", 80 - "hash": "sha256-mKQVqtzxnZu6p64ZxIHXKSIw3AxAFjhmrxCc5/1VXfc=" 79 + "version": "11.2.5", 80 + "hash": "sha256-Mpml6U6Fl8FUvENGQxpxuw0+pOPvoWbZXV4V1bLUS9w=" 81 81 }, 82 82 { 83 83 "pname": "Avalonia.Skia", 84 - "version": "11.2.4", 85 - "hash": "sha256-82UQGuCl5hN5kdA3Uz7hptpNnG1EPlSB6k/a6XPSuXI=" 84 + "version": "11.2.5", 85 + "hash": "sha256-su1K1RmQ+syE6ufjrzpQR1yiUa6GEtY5QPlW0GOVKnU=" 86 86 }, 87 87 { 88 88 "pname": "Avalonia.Themes.Simple", 89 - "version": "11.2.4", 90 - "hash": "sha256-rnF2/bzN8AuOFlsuekOxlu+uLI7n1kIAmC36FFXMKak=" 89 + "version": "11.2.5", 90 + "hash": "sha256-EjQ2XA81SS91h8oGUwVxLYewm3Lp5Sa2Lmbj0c8y8BU=" 91 91 }, 92 92 { 93 93 "pname": "Avalonia.Win32", 94 - "version": "11.2.4", 95 - "hash": "sha256-LJSKiLbdof8qouQhN7pY1RkMOb09IiAu/nrJFR2OybY=" 94 + "version": "11.2.5", 95 + "hash": "sha256-ljgJgXDxmHOUQ+p8z62mtaK4FTmYAI+c+6gL2lczD/8=" 96 96 }, 97 97 { 98 98 "pname": "Avalonia.X11", 99 - "version": "11.2.4", 100 - "hash": "sha256-qty8D2/HlZz/7MiEhuagjlKlooDoW3fow5yJY5oX4Uk=" 99 + "version": "11.2.5", 100 + "hash": "sha256-wHEHcEvOUyIBgBtQZOIs330KajSv8DSEsJP7w4M9i4E=" 101 101 }, 102 102 { 103 103 "pname": "CliWrap", 104 - "version": "3.8.1", 105 - "hash": "sha256-9XmdodZ2Is+LkuMlc/BNFiBUNWA5tDwBl9kYnReJIhU=" 104 + "version": "3.8.2", 105 + "hash": "sha256-sZQqu03sJL0LlnLssXVXHTen9marNbC/G15mAKjhFJU=" 106 106 }, 107 107 { 108 108 "pname": "DialogHost.Avalonia", ··· 111 111 }, 112 112 { 113 113 "pname": "Downloader", 114 - "version": "3.3.3", 115 - "hash": "sha256-H8HJKL71qC+nHVmuhhPDEHy434/NXJNqPeitJOe856k=" 114 + "version": "3.3.4", 115 + "hash": "sha256-QbbWlP3IzDzPWuZcQCfqpKQZMPSMETL/+6AXlhcjVc8=" 116 116 }, 117 117 { 118 118 "pname": "DynamicData", ··· 196 196 }, 197 197 { 198 198 "pname": "Semi.Avalonia", 199 - "version": "11.2.1.4", 200 - "hash": "sha256-X1YIonqLNySnMMope2/+O2HfpArc8AhT/gNBOI+0Ts8=" 199 + "version": "11.2.1.5", 200 + "hash": "sha256-xomim/K3C6F0/105KCVc054AG80Z4cQw1bycHF9MD/U=" 201 201 }, 202 202 { 203 203 "pname": "Semi.Avalonia.DataGrid", 204 - "version": "11.2.1.4", 205 - "hash": "sha256-UDb+Gw8nDsuxbMlV8CJaGItfJ85k+p3XPGPuZrIl0KM=" 204 + "version": "11.2.1.5", 205 + "hash": "sha256-xebEht0T5hPSYhyuqbZEzHw3D7/9K920SZhnIXDrM3s=" 206 206 }, 207 207 { 208 208 "pname": "SkiaSharp", ··· 321 321 }, 322 322 { 323 323 "pname": "TaskScheduler", 324 - "version": "2.12.0", 325 - "hash": "sha256-zkaWlCHzUrexHMtXVitbNsgZrbgoLrJ4BBrhujvZr+4=" 324 + "version": "2.12.1", 325 + "hash": "sha256-eM4vgA+/ukoXCX3y4Ad5WPeIPiwLLDfhh4P0ukWf4lQ=" 326 326 }, 327 327 { 328 328 "pname": "Tmds.DBus.Protocol",
+2 -2
pkgs/by-name/v2/v2rayn/package.nix
··· 21 21 22 22 buildDotnetModule rec { 23 23 pname = "v2rayn"; 24 - version = "7.10.0"; 24 + version = "7.10.5"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "2dust"; 28 28 repo = "v2rayN"; 29 29 tag = version; 30 - hash = "sha256-j2s88MRyKcrNbUN+Ypewk+vRbhMtFwHpBy2xbabOe1w="; 30 + hash = "sha256-5tLO7KVHj0DXQdJg02Jxs6fgRLJSfFWPbARg9dqKcSI="; 31 31 fetchSubmodules = true; 32 32 }; 33 33
+3 -3
pkgs/by-name/va/vale/package.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "vale"; 14 - version = "3.9.6"; 14 + version = "3.10.0"; 15 15 16 16 subPackages = [ "cmd/vale" ]; 17 17 ··· 19 19 owner = "errata-ai"; 20 20 repo = "vale"; 21 21 rev = "v${version}"; 22 - hash = "sha256-KerHI0+0oHwKrAbE5JIi50+L20It9ubhhIaTJMKnh3I="; 22 + hash = "sha256-aZ+ihq4ft6HpKBZu7idq0m298WSxBubuEsIPNLvu1RU="; 23 23 }; 24 24 25 - vendorHash = "sha256-ivHOUkX9a4mRsw/ruYr3CzVbAovYMGQI+ExmaB+lP5E="; 25 + vendorHash = "sha256-Zhhp/qbwGTQEZ28S+p7GJodwQcnkFNqNU7WCZKdeoz0="; 26 26 27 27 ldflags = [ 28 28 "-s"
+4 -4
pkgs/by-name/ve/veryl/package.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "veryl"; 14 - version = "0.13.5"; 14 + version = "0.14.1"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "veryl-lang"; 18 18 repo = "veryl"; 19 19 rev = "v${version}"; 20 - hash = "sha256-rZ2Psbs3s5NfY1Mktr3RLGwQYciMh5FCs4d0I1zBaA8="; 20 + hash = "sha256-J1FYgVrpiczTTaMvE7IBdd4aqNI4XXXqvgR7SWaVen0="; 21 21 fetchSubmodules = true; 22 22 }; 23 23 24 24 useFetchCargoVendor = true; 25 - cargoHash = "sha256-syvW5Lm2ed/AXksDmIAEAbrw+mW1aA0FugJirBZLtLw="; 25 + cargoHash = "sha256-2AWVmdVQAA0+h9xegcWSAjnpa68A+2zazHwKzNKqaTo="; 26 26 27 27 nativeBuildInputs = [ 28 28 pkg-config ··· 73 73 meta = { 74 74 description = "Modern Hardware Description Language"; 75 75 homepage = "https://veryl-lang.org/"; 76 - changelog = "https://github.com/veryl-lang/veryl/blob/${src.rev}/CHANGELOG.md"; 76 + changelog = "https://github.com/veryl-lang/veryl/releases/tag/v${version}"; 77 77 license = with lib.licenses; [ 78 78 mit 79 79 asl20
+9 -9
pkgs/by-name/wi/windsurf/info.json
··· 1 1 { 2 2 "aarch64-darwin": { 3 - "version": "1.4.6", 3 + "version": "1.5.6", 4 4 "vscodeVersion": "1.94.0", 5 - "url": "https://windsurf-stable.codeiumdata.com/darwin-arm64/stable/724a915b3b4c73cea3d2c93fc85672d6aa3961e0/Windsurf-darwin-arm64-1.4.6.zip", 6 - "sha256": "156d4d4d54033e15fb0edd0c8f17a30ae26c622692cfcb915fd548a1596ec103" 5 + "url": "https://windsurf-stable.codeiumdata.com/darwin-arm64/stable/164066c0badcfdea724847b1a24fd88eb96f9510/Windsurf-darwin-arm64-1.5.6.zip", 6 + "sha256": "174fcd06dc73a760edf06105678af9b427303c8091cbe0f1454207107383076a" 7 7 }, 8 8 "x86_64-darwin": { 9 - "version": "1.4.6", 9 + "version": "1.5.6", 10 10 "vscodeVersion": "1.94.0", 11 - "url": "https://windsurf-stable.codeiumdata.com/darwin-x64/stable/724a915b3b4c73cea3d2c93fc85672d6aa3961e0/Windsurf-darwin-x64-1.4.6.zip", 12 - "sha256": "f41e4ab9d79062357765064993fdf993a05358aae675fdf511996fa3fdf01e55" 11 + "url": "https://windsurf-stable.codeiumdata.com/darwin-x64/stable/164066c0badcfdea724847b1a24fd88eb96f9510/Windsurf-darwin-x64-1.5.6.zip", 12 + "sha256": "a3891e831ab43452f791a6856f0fd3c63535348583ae673bfcdae4466f36f8df" 13 13 }, 14 14 "x86_64-linux": { 15 - "version": "1.4.6", 15 + "version": "1.5.6", 16 16 "vscodeVersion": "1.94.0", 17 - "url": "https://windsurf-stable.codeiumdata.com/linux-x64/stable/724a915b3b4c73cea3d2c93fc85672d6aa3961e0/Windsurf-linux-x64-1.4.6.tar.gz", 18 - "sha256": "116e1fcefe98321764f4d6a5e36a8e16282b20d994c385fd3e3826dd9945e8f4" 17 + "url": "https://windsurf-stable.codeiumdata.com/linux-x64/stable/164066c0badcfdea724847b1a24fd88eb96f9510/Windsurf-linux-x64-1.5.6.tar.gz", 18 + "sha256": "5b01ce09139d7d8932be5c297a1c71a891a299825b2d5304f3fed22367188ecb" 19 19 } 20 20 }
+12 -8
pkgs/by-name/wm/wmutils-libwm/package.nix
··· 3 3 stdenv, 4 4 fetchFromGitHub, 5 5 libxcb, 6 + xcb-util-cursor, 6 7 }: 7 8 8 9 stdenv.mkDerivation rec { 9 10 pname = "wmutils-libwm"; 10 - version = "1.0"; 11 + version = "1.3"; 11 12 12 13 src = fetchFromGitHub { 13 14 owner = "wmutils"; 14 15 repo = "libwm"; 15 - rev = "v${version}"; 16 - sha256 = "1lpbqrilhffpzc0b7vnp08jr1wr96lndwc7y0ck8hlbzlvm662l0"; 16 + tag = "v${version}"; 17 + hash = "sha256-ROWRgTn33c5gH4ZdkwZ05rRg/Z9e2NppAQSNExSGZ4s="; 17 18 }; 18 19 19 - buildInputs = [ libxcb ]; 20 + buildInputs = [ 21 + libxcb 22 + xcb-util-cursor 23 + ]; 20 24 21 25 installFlags = [ "PREFIX=$(out)" ]; 22 26 23 - meta = with lib; { 27 + meta = { 24 28 description = "Small library for X window manipulation"; 25 29 homepage = "https://github.com/wmutils/libwm"; 26 - license = licenses.isc; 27 - maintainers = with maintainers; [ bhougland ]; 28 - platforms = platforms.unix; 30 + license = lib.licenses.isc; 31 + maintainers = with lib.maintainers; [ bhougland ]; 32 + platforms = lib.platforms.unix; 29 33 }; 30 34 }
-30
pkgs/by-name/ya/yafc-ce/deps.json
··· 35 35 "hash": "sha256-1tHxDuJwwvJWZ3H9ooPFAKuaJIthSdTDlmjHlxH/euc=" 36 36 }, 37 37 { 38 - "pname": "Microsoft.AspNetCore.App.Runtime.osx-arm64", 39 - "version": "8.0.10", 40 - "hash": "sha256-GL7OjLalZPKLsoheVJAmVStJFpJ7zTDJtikCP7fB3jU=" 41 - }, 42 - { 43 - "pname": "Microsoft.AspNetCore.App.Runtime.osx-x64", 44 - "version": "8.0.10", 45 - "hash": "sha256-u6/4q54irXtyKSSi1bH6HYrvcod7yfs5YdYD0NXeYbs=" 46 - }, 47 - { 48 38 "pname": "Microsoft.CodeCoverage", 49 39 "version": "17.11.1", 50 40 "hash": "sha256-1dLlK3NGh88PuFYZiYpT+izA96etxhU3BSgixDgdtGA=" ··· 53 43 "pname": "Microsoft.NET.Test.Sdk", 54 44 "version": "17.11.1", 55 45 "hash": "sha256-0JUEucQ2lzaPgkrjm/NFLBTbqU1dfhvhN3Tl3moE6mI=" 56 - }, 57 - { 58 - "pname": "Microsoft.NETCore.App.Host.osx-arm64", 59 - "version": "8.0.10", 60 - "hash": "sha256-IZ59kjeU/mGHBVXtOO5AFK0ocxwFAkFqwtn99N+l0zw=" 61 - }, 62 - { 63 - "pname": "Microsoft.NETCore.App.Host.osx-x64", 64 - "version": "8.0.10", 65 - "hash": "sha256-B4aqUvMpyewAwquTRVh+bs2RG875ZsveYQU89+4VFxw=" 66 - }, 67 - { 68 - "pname": "Microsoft.NETCore.App.Runtime.osx-arm64", 69 - "version": "8.0.10", 70 - "hash": "sha256-0fH2KlzVL5ydblrVtBtAoHa5kNYY92Wzv8FCVqav3Mw=" 71 - }, 72 - { 73 - "pname": "Microsoft.NETCore.App.Runtime.osx-x64", 74 - "version": "8.0.10", 75 - "hash": "sha256-XKUQ0DDWWbZNtgGPKhdI7ufpd9Ki1EcOcK9ojiaWEVM=" 76 46 }, 77 47 { 78 48 "pname": "Microsoft.TestPlatform.ObjectModel",
+2 -2
pkgs/by-name/ya/yafc-ce/package.nix
··· 12 12 in 13 13 buildDotnetModule (finalAttrs: { 14 14 pname = "yafc-ce"; 15 - version = "2.8.0"; 15 + version = "2.10.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "shpaass"; 19 19 repo = "yafc-ce"; 20 20 rev = finalAttrs.version; 21 - hash = "sha256-d0LLwol68ywwFsUx7gC4S1MF+3HUTt7+F6rcL1j0Oj8="; 21 + hash = "sha256-AFFu4yqnBq0OD3XY1V97zxAIfZuXswT9KOJzU8GqQuU"; 22 22 }; 23 23 24 24 projectFile = [ "Yafc/Yafc.csproj" ];
+2 -2
pkgs/by-name/za/zammad/package.nix
··· 14 14 nodejs, 15 15 pnpm_9, 16 16 cacert, 17 - redis, 17 + valkey, 18 18 dataDir ? "/var/lib/zammad", 19 19 }: 20 20 ··· 68 68 ]; 69 69 70 70 nativeBuildInputs = [ 71 - redis 71 + valkey 72 72 postgresql 73 73 pnpm_9.configHook 74 74 nodejs
+6 -4
pkgs/by-name/zo/zoraxy/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "zoraxy"; 9 - version = "3.1.1"; 9 + version = "3.1.8"; 10 10 src = fetchFromGitHub { 11 11 owner = "tobychui"; 12 12 repo = "zoraxy"; 13 - tag = version; 14 - hash = "sha256-ZjsBGtY6M5jIXylzg4k8U4krwqx5d5VuMiVHAeUIbXY="; 13 + tag = "v${version}"; 14 + hash = "sha256-0BJuomRz/ZnvHQXPZBBrVv1nk2UFPGGdjsZ/FpUAtwk="; 15 15 }; 16 16 17 17 sourceRoot = "${src.name}/src"; 18 18 19 - vendorHash = "sha256-p2nczUMT3FfYX32yvbR0H5FyHV2v9I18yvn0lwUwy+A="; 19 + vendorHash = "sha256-gqDgM+xyvzrpQEQz0fju8GEtQhJOaL6FeuwYxgeSRmo="; 20 20 21 21 checkFlags = 22 22 let ··· 27 27 "TestReplaceLocationHostRelative" 28 28 "TestHandleTraceRoute" 29 29 "TestHandlePing" 30 + "TestListTable" 31 + "TestWriteAndRead" 30 32 ]; 31 33 in 32 34 [ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ];
+14 -4
pkgs/development/libraries/fontconfig/make-fonts-cache.nix
··· 1 1 { 2 + buildPackages, 3 + fontconfig, 4 + lib, 2 5 runCommand, 3 - lib, 4 - fontconfig, 6 + stdenv, 7 + }: 8 + let 9 + fontconfig' = fontconfig; 10 + in 11 + { 12 + fontconfig ? fontconfig', 5 13 fontDirectories, 6 14 }: 7 15 8 16 runCommand "fc-cache" 9 17 { 10 - nativeBuildInputs = [ fontconfig.bin ]; 11 18 preferLocalBuild = true; 12 19 allowSubstitutes = false; 13 20 passAsFile = [ "fontDirs" ]; ··· 29 36 cat "$fontDirsPath" >> fonts.conf 30 37 echo "</fontconfig>" >> fonts.conf 31 38 39 + # N.B.: fc-cache keys its cache entries by architecture. 40 + # We must invoke the host `fc-cache` (not the build fontconfig) if we want 41 + # the cache to be usable by the host. 32 42 mkdir -p $out 33 - fc-cache -sv 43 + ${stdenv.hostPlatform.emulator buildPackages} ${lib.getExe' fontconfig "fc-cache"} -sv 34 44 35 45 # This is not a cache dir in the normal sense -- it won't be automatically 36 46 # recreated.
+16 -1
pkgs/development/python-modules/betterproto/default.nix
··· 19 19 grpcio-tools, 20 20 }: 21 21 22 + let 23 + # using a older version of pytest-asyncio only for tests 24 + # https://github.com/pytest-dev/pytest-asyncio/issues/928 25 + pytest-asyncio_23_8 = ( 26 + pytest-asyncio.overridePythonAttrs (old: rec { 27 + version = "0.23.8"; 28 + src = fetchFromGitHub { 29 + inherit (old.src) owner repo; 30 + tag = "v${version}"; 31 + hash = "sha256-kMv0crYuYHi1LF+VlXizZkG87kSL7xzsKq9tP9LgFVY="; 32 + }; 33 + }) 34 + ); 35 + in 36 + 22 37 buildPythonPackage rec { 23 38 pname = "betterproto"; 24 39 version = "2.0.0b6"; ··· 55 70 nativeCheckInputs = [ 56 71 grpcio-tools 57 72 pydantic 58 - pytest-asyncio 73 + pytest-asyncio_23_8 59 74 pytest-mock 60 75 pytest7CheckHook 61 76 tomlkit
+1 -1
pkgs/development/python-modules/django-cacheops/default.nix
··· 53 53 jinja2 54 54 before-after 55 55 nettools 56 - pkgs.redis 56 + pkgs.valkey 57 57 redisTestHook 58 58 ]; 59 59
+1 -1
pkgs/development/python-modules/django-q2/default.nix
··· 65 65 pythonImportsCheck = [ "django_q" ]; 66 66 67 67 preCheck = '' 68 - ${pkgs.redis}/bin/redis-server & 68 + ${pkgs.valkey}/bin/redis-server & 69 69 REDIS_PID=$! 70 70 ''; 71 71
+1 -1
pkgs/development/python-modules/django-redis/default.nix
··· 52 52 preCheck = '' 53 53 export DJANGO_SETTINGS_MODULE=tests.settings.sqlite 54 54 55 - ${pkgs.redis}/bin/redis-server & 55 + ${pkgs.valkey}/bin/redis-server & 56 56 REDIS_PID=$! 57 57 ''; 58 58
+2 -2
pkgs/development/python-modules/logutils/default.nix
··· 6 6 pytestCheckHook, 7 7 pythonAtLeast, 8 8 pythonOlder, 9 - redis-server, 9 + valkey, 10 10 redis, 11 11 setuptools, 12 12 }: ··· 27 27 substituteInPlace tests/test_dictconfig.py \ 28 28 --replace-fail "assertEquals" "assertEqual" 29 29 substituteInPlace tests/test_redis.py \ 30 - --replace-fail "'redis-server'" "'${redis-server}/bin/redis-server'" 30 + --replace-fail "'redis-server'" "'${valkey}/bin/redis-server'" 31 31 ''; 32 32 33 33 build-system = [ setuptools ];
+1 -1
pkgs/development/python-modules/python-redis-lock/default.nix
··· 54 54 gevent 55 55 pytestCheckHook 56 56 process-tests 57 - pkgs.redis 57 + pkgs.valkey 58 58 ] ++ optional-dependencies.django; 59 59 60 60 # For Django tests
+2 -2
pkgs/development/tools/rufo/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - rufo (0.17.0) 4 + rufo (0.18.1) 5 5 6 6 PLATFORMS 7 7 ruby ··· 10 10 rufo 11 11 12 12 BUNDLED WITH 13 - 2.5.3 13 + 2.6.2
+2 -2
pkgs/development/tools/rufo/gemset.nix
··· 4 4 platforms = [ ]; 5 5 source = { 6 6 remotes = [ "https://rubygems.org" ]; 7 - sha256 = "1rqq6mf7fvwvc9m3d5w5ysch3h7z4ml1vvdvy26064fb6lrnn5ai"; 7 + sha256 = "0jcdkl9kpk96kby9qw46klgdy0nxswsbicxdq0dbdhhg7v00cc3r"; 8 8 type = "gem"; 9 9 }; 10 - version = "0.17.0"; 10 + version = "0.18.1"; 11 11 }; 12 12 }
+2
pkgs/development/tools/xcode-install/Gemfile
··· 1 1 source 'https://rubygems.org' 2 2 gem 'xcode-install' 3 + 4 + gem "abbrev", "~> 0.1.2"
+146 -121
pkgs/development/tools/xcode-install/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - CFPropertyList (3.0.3) 5 - addressable (2.7.0) 6 - public_suffix (>= 2.0.2, < 5.0) 7 - artifactory (3.0.15) 4 + CFPropertyList (3.0.7) 5 + base64 6 + nkf 7 + rexml 8 + abbrev (0.1.2) 9 + addressable (2.8.7) 10 + public_suffix (>= 2.0.2, < 7.0) 11 + artifactory (3.0.17) 8 12 atomos (0.1.3) 9 - aws-eventstream (1.1.0) 10 - aws-partitions (1.419.0) 11 - aws-sdk-core (3.111.2) 12 - aws-eventstream (~> 1, >= 1.0.2) 13 - aws-partitions (~> 1, >= 1.239.0) 14 - aws-sigv4 (~> 1.1) 15 - jmespath (~> 1.0) 16 - aws-sdk-kms (1.41.0) 17 - aws-sdk-core (~> 3, >= 3.109.0) 18 - aws-sigv4 (~> 1.1) 19 - aws-sdk-s3 (1.87.0) 20 - aws-sdk-core (~> 3, >= 3.109.0) 13 + aws-eventstream (1.3.2) 14 + aws-partitions (1.1068.0) 15 + aws-sdk-core (3.220.1) 16 + aws-eventstream (~> 1, >= 1.3.0) 17 + aws-partitions (~> 1, >= 1.992.0) 18 + aws-sigv4 (~> 1.9) 19 + base64 20 + jmespath (~> 1, >= 1.6.1) 21 + aws-sdk-kms (1.99.0) 22 + aws-sdk-core (~> 3, >= 3.216.0) 23 + aws-sigv4 (~> 1.5) 24 + aws-sdk-s3 (1.182.0) 25 + aws-sdk-core (~> 3, >= 3.216.0) 21 26 aws-sdk-kms (~> 1) 22 - aws-sigv4 (~> 1.1) 23 - aws-sigv4 (1.2.2) 27 + aws-sigv4 (~> 1.5) 28 + aws-sigv4 (1.11.0) 24 29 aws-eventstream (~> 1, >= 1.0.2) 25 30 babosa (1.0.4) 26 - claide (1.0.3) 31 + base64 (0.2.0) 32 + claide (1.1.0) 27 33 colored (1.2) 28 34 colored2 (3.1.2) 29 - commander-fastlane (4.4.6) 30 - highline (~> 1.7.2) 35 + commander (4.6.0) 36 + highline (~> 2.0.0) 31 37 declarative (0.0.20) 32 - declarative-option (0.1.0) 33 - digest-crc (0.6.3) 38 + digest-crc (0.7.0) 34 39 rake (>= 12.0.0, < 14.0.0) 35 - domain_name (0.5.20190701) 36 - unf (>= 0.0.5, < 1.0.0) 37 - dotenv (2.7.6) 38 - emoji_regex (3.2.1) 39 - excon (0.78.1) 40 - faraday (1.3.0) 40 + domain_name (0.6.20240107) 41 + dotenv (2.8.1) 42 + emoji_regex (3.2.3) 43 + excon (0.112.0) 44 + faraday (1.10.4) 45 + faraday-em_http (~> 1.0) 46 + faraday-em_synchrony (~> 1.0) 47 + faraday-excon (~> 1.1) 48 + faraday-httpclient (~> 1.0) 49 + faraday-multipart (~> 1.0) 41 50 faraday-net_http (~> 1.0) 42 - multipart-post (>= 1.2, < 3) 43 - ruby2_keywords 51 + faraday-net_http_persistent (~> 1.0) 52 + faraday-patron (~> 1.0) 53 + faraday-rack (~> 1.0) 54 + faraday-retry (~> 1.0) 55 + ruby2_keywords (>= 0.0.4) 44 56 faraday-cookie_jar (0.0.7) 45 57 faraday (>= 0.8.0) 46 58 http-cookie (~> 1.0.0) 47 - faraday-net_http (1.0.1) 48 - faraday_middleware (1.0.0) 59 + faraday-em_http (1.0.0) 60 + faraday-em_synchrony (1.0.0) 61 + faraday-excon (1.1.0) 62 + faraday-httpclient (1.0.1) 63 + faraday-multipart (1.1.0) 64 + multipart-post (~> 2.0) 65 + faraday-net_http (1.0.2) 66 + faraday-net_http_persistent (1.2.0) 67 + faraday-patron (1.0.0) 68 + faraday-rack (1.0.0) 69 + faraday-retry (1.0.3) 70 + faraday_middleware (1.2.1) 49 71 faraday (~> 1.0) 50 - fastimage (2.2.1) 51 - fastlane (2.172.0) 72 + fastimage (2.4.0) 73 + fastlane (2.227.0) 52 74 CFPropertyList (>= 2.3, < 4.0.0) 53 - addressable (>= 2.3, < 3.0.0) 75 + addressable (>= 2.8, < 3.0.0) 54 76 artifactory (~> 3.0) 55 77 aws-sdk-s3 (~> 1.0) 56 78 babosa (>= 1.0.3, < 2.0.0) 57 79 bundler (>= 1.12.0, < 3.0.0) 58 - colored 59 - commander-fastlane (>= 4.4.6, < 5.0.0) 80 + colored (~> 1.2) 81 + commander (~> 4.6) 60 82 dotenv (>= 2.1.1, < 3.0.0) 61 83 emoji_regex (>= 0.1, < 4.0) 62 84 excon (>= 0.71.0, < 1.0.0) ··· 64 86 faraday-cookie_jar (~> 0.0.6) 65 87 faraday_middleware (~> 1.0) 66 88 fastimage (>= 2.1.0, < 3.0.0) 89 + fastlane-sirp (>= 1.0.0) 67 90 gh_inspector (>= 1.1.2, < 2.0.0) 68 - google-api-client (>= 0.37.0, < 0.39.0) 69 - google-cloud-storage (>= 1.15.0, < 2.0.0) 70 - highline (>= 1.7.2, < 2.0.0) 91 + google-apis-androidpublisher_v3 (~> 0.3) 92 + google-apis-playcustomapp_v1 (~> 0.1) 93 + google-cloud-env (>= 1.6.0, < 2.0.0) 94 + google-cloud-storage (~> 1.31) 95 + highline (~> 2.0) 96 + http-cookie (~> 1.0.5) 71 97 json (< 3.0.0) 72 98 jwt (>= 2.1.0, < 3) 73 99 mini_magick (>= 4.9.4, < 5.0.0) 74 - multipart-post (~> 2.0.0) 100 + multipart-post (>= 2.0.0, < 3.0.0) 101 + naturally (~> 2.2) 102 + optparse (>= 0.1.1, < 1.0.0) 75 103 plist (>= 3.1.0, < 4.0.0) 76 104 rubyzip (>= 2.0.0, < 3.0.0) 77 - security (= 0.1.3) 105 + security (= 0.1.5) 78 106 simctl (~> 1.6.3) 79 - slack-notifier (>= 2.0.0, < 3.0.0) 80 107 terminal-notifier (>= 2.0.0, < 3.0.0) 81 - terminal-table (>= 1.4.5, < 2.0.0) 108 + terminal-table (~> 3) 82 109 tty-screen (>= 0.6.3, < 1.0.0) 83 110 tty-spinner (>= 0.8.0, < 1.0.0) 84 111 word_wrap (~> 1.0.0) 85 112 xcodeproj (>= 1.13.0, < 2.0.0) 86 - xcpretty (~> 0.3.0) 87 - xcpretty-travis-formatter (>= 0.0.3) 113 + xcpretty (~> 0.4.0) 114 + xcpretty-travis-formatter (>= 0.0.3, < 2.0.0) 115 + fastlane-sirp (1.0.0) 116 + sysrandom (~> 1.0) 88 117 gh_inspector (1.1.3) 89 - google-api-client (0.38.0) 118 + google-apis-androidpublisher_v3 (0.54.0) 119 + google-apis-core (>= 0.11.0, < 2.a) 120 + google-apis-core (0.11.3) 90 121 addressable (~> 2.5, >= 2.5.1) 91 - googleauth (~> 0.9) 92 - httpclient (>= 2.8.1, < 3.0) 122 + googleauth (>= 0.16.2, < 2.a) 123 + httpclient (>= 2.8.1, < 3.a) 93 124 mini_mime (~> 1.0) 94 125 representable (~> 3.0) 95 - retriable (>= 2.0, < 4.0) 96 - signet (~> 0.12) 97 - google-apis-core (0.2.1) 98 - addressable (~> 2.5, >= 2.5.1) 99 - googleauth (~> 0.14) 100 - httpclient (>= 2.8.1, < 3.0) 101 - mini_mime (~> 1.0) 102 - representable (~> 3.0) 103 - retriable (>= 2.0, < 4.0) 126 + retriable (>= 2.0, < 4.a) 104 127 rexml 105 - signet (~> 0.14) 106 - webrick 107 - google-apis-iamcredentials_v1 (0.1.0) 108 - google-apis-core (~> 0.1) 109 - google-apis-storage_v1 (0.1.0) 110 - google-apis-core (~> 0.1) 111 - google-cloud-core (1.5.0) 112 - google-cloud-env (~> 1.0) 128 + google-apis-iamcredentials_v1 (0.17.0) 129 + google-apis-core (>= 0.11.0, < 2.a) 130 + google-apis-playcustomapp_v1 (0.13.0) 131 + google-apis-core (>= 0.11.0, < 2.a) 132 + google-apis-storage_v1 (0.31.0) 133 + google-apis-core (>= 0.11.0, < 2.a) 134 + google-cloud-core (1.8.0) 135 + google-cloud-env (>= 1.0, < 3.a) 113 136 google-cloud-errors (~> 1.0) 114 - google-cloud-env (1.4.0) 115 - faraday (>= 0.17.3, < 2.0) 116 - google-cloud-errors (1.0.1) 117 - google-cloud-storage (1.30.0) 118 - addressable (~> 2.5) 137 + google-cloud-env (1.6.0) 138 + faraday (>= 0.17.3, < 3.0) 139 + google-cloud-errors (1.5.0) 140 + google-cloud-storage (1.47.0) 141 + addressable (~> 2.8) 119 142 digest-crc (~> 0.4) 120 143 google-apis-iamcredentials_v1 (~> 0.1) 121 - google-apis-storage_v1 (~> 0.1) 122 - google-cloud-core (~> 1.2) 123 - googleauth (~> 0.9) 144 + google-apis-storage_v1 (~> 0.31.0) 145 + google-cloud-core (~> 1.6) 146 + googleauth (>= 0.16.2, < 2.a) 124 147 mini_mime (~> 1.0) 125 - googleauth (0.15.0) 126 - faraday (>= 0.17.3, < 2.0) 148 + googleauth (1.8.1) 149 + faraday (>= 0.17.3, < 3.a) 127 150 jwt (>= 1.4, < 3.0) 128 - memoist (~> 0.16) 129 151 multi_json (~> 1.11) 130 152 os (>= 0.9, < 2.0) 131 - signet (~> 0.14) 132 - highline (1.7.10) 133 - http-cookie (1.0.3) 153 + signet (>= 0.16, < 2.a) 154 + highline (2.0.3) 155 + http-cookie (1.0.8) 134 156 domain_name (~> 0.5) 135 - httpclient (2.8.3) 136 - jmespath (1.4.0) 137 - json (2.5.1) 138 - jwt (2.2.2) 139 - memoist (0.16.2) 140 - mini_magick (4.11.0) 141 - mini_mime (1.0.2) 157 + httpclient (2.9.0) 158 + mutex_m 159 + jmespath (1.6.2) 160 + json (2.10.2) 161 + jwt (2.10.1) 162 + base64 163 + mini_magick (4.13.2) 164 + mini_mime (1.1.5) 142 165 multi_json (1.15.0) 143 - multipart-post (2.0.0) 144 - nanaimo (0.3.0) 166 + multipart-post (2.4.1) 167 + mutex_m (0.3.0) 168 + nanaimo (0.4.0) 145 169 naturally (2.2.1) 146 - os (1.1.1) 147 - plist (3.6.0) 148 - public_suffix (4.0.6) 149 - rake (13.0.3) 150 - representable (3.0.4) 170 + nkf (0.2.0) 171 + optparse (0.6.0) 172 + os (1.1.4) 173 + plist (3.7.2) 174 + public_suffix (6.0.1) 175 + rake (13.2.1) 176 + representable (3.2.0) 151 177 declarative (< 0.1.0) 152 - declarative-option (< 0.2.0) 178 + trailblazer-option (>= 0.1.1, < 0.2.0) 153 179 uber (< 0.2.0) 154 180 retriable (3.1.2) 155 - rexml (3.2.4) 156 - rouge (2.0.7) 157 - ruby2_keywords (0.0.4) 158 - rubyzip (2.3.0) 159 - security (0.1.3) 160 - signet (0.14.0) 161 - addressable (~> 2.3) 162 - faraday (>= 0.17.3, < 2.0) 181 + rexml (3.4.1) 182 + rouge (3.28.0) 183 + ruby2_keywords (0.0.5) 184 + rubyzip (2.4.1) 185 + security (0.1.5) 186 + signet (0.19.0) 187 + addressable (~> 2.8) 188 + faraday (>= 0.17.5, < 3.a) 163 189 jwt (>= 1.5, < 3.0) 164 190 multi_json (~> 1.10) 165 - simctl (1.6.8) 191 + simctl (1.6.10) 166 192 CFPropertyList 167 193 naturally 168 - slack-notifier (2.3.2) 194 + sysrandom (1.0.5) 169 195 terminal-notifier (2.0.0) 170 - terminal-table (1.8.0) 171 - unicode-display_width (~> 1.1, >= 1.1.1) 196 + terminal-table (3.0.2) 197 + unicode-display_width (>= 1.1.1, < 3) 198 + trailblazer-option (0.1.2) 172 199 tty-cursor (0.7.1) 173 - tty-screen (0.8.1) 200 + tty-screen (0.8.2) 174 201 tty-spinner (0.9.3) 175 202 tty-cursor (~> 0.7) 176 203 uber (0.1.0) 177 - unf (0.1.4) 178 - unf_ext 179 - unf_ext (0.0.7.7) 180 - unicode-display_width (1.7.0) 181 - webrick (1.7.0) 204 + unicode-display_width (2.6.0) 182 205 word_wrap (1.0.0) 183 - xcode-install (2.6.8) 184 - claide (>= 0.9.1, < 1.1.0) 206 + xcode-install (2.8.1) 207 + claide (>= 0.9.1) 185 208 fastlane (>= 2.1.0, < 3.0.0) 186 - xcodeproj (1.19.0) 209 + xcodeproj (1.27.0) 187 210 CFPropertyList (>= 2.3.3, < 4.0) 188 211 atomos (~> 0.1.3) 189 212 claide (>= 1.0.2, < 2.0) 190 213 colored2 (~> 3.1) 191 - nanaimo (~> 0.3.0) 192 - xcpretty (0.3.0) 193 - rouge (~> 2.0.7) 214 + nanaimo (~> 0.4.0) 215 + rexml (>= 3.3.6, < 4.0) 216 + xcpretty (0.4.0) 217 + rouge (~> 3.28.0) 194 218 xcpretty-travis-formatter (1.0.1) 195 219 xcpretty (~> 0.2, >= 0.0.7) 196 220 ··· 198 222 ruby 199 223 200 224 DEPENDENCIES 225 + abbrev (~> 0.1.2) 201 226 xcode-install 202 227 203 228 BUNDLED WITH 204 - 1.17.2 229 + 2.6.2
+3
pkgs/development/tools/xcode-install/default.nix
··· 1 1 { 2 2 lib, 3 3 bundlerApp, 4 + bundlerUpdateScript, 4 5 }: 5 6 6 7 bundlerApp { 7 8 pname = "xcode-install"; 8 9 gemdir = ./.; 9 10 exes = [ "xcversion" ]; 11 + 12 + passthru.updateScript = bundlerUpdateScript "xcode-install"; 10 13 11 14 meta = with lib; { 12 15 description = "Install and update your Xcodes automatically";
+321 -189
pkgs/development/tools/xcode-install/gemset.nix
··· 1 1 { 2 + abbrev = { 3 + groups = [ "default" ]; 4 + platforms = [ ]; 5 + source = { 6 + remotes = [ "https://rubygems.org" ]; 7 + sha256 = "0hj2qyx7rzpc7awhvqlm597x7qdxwi4kkml4aqnp5jylmsm4w6xd"; 8 + type = "gem"; 9 + }; 10 + version = "0.1.2"; 11 + }; 2 12 addressable = { 3 13 dependencies = [ "public_suffix" ]; 4 14 groups = [ "default" ]; 5 15 platforms = [ ]; 6 16 source = { 7 17 remotes = [ "https://rubygems.org" ]; 8 - sha256 = "1fvchp2rhp2rmigx7qglf69xvjqvzq7x0g49naliw29r2bz656sy"; 18 + sha256 = "0cl2qpvwiffym62z991ynks7imsm87qmgxf0yfsmlwzkgi9qcaa6"; 9 19 type = "gem"; 10 20 }; 11 - version = "2.7.0"; 21 + version = "2.8.7"; 12 22 }; 13 23 artifactory = { 14 24 groups = [ "default" ]; 15 25 platforms = [ ]; 16 26 source = { 17 27 remotes = [ "https://rubygems.org" ]; 18 - sha256 = "0wify8rhjwr5bw5y6ary61vba290vk766cxw9a9mg05yswmaisls"; 28 + sha256 = "0qzj389l2a3zig040h882mf6cxfa71pm2nk51l4p85n3ck4xa8rh"; 19 29 type = "gem"; 20 30 }; 21 - version = "3.0.15"; 31 + version = "3.0.17"; 22 32 }; 23 33 atomos = { 24 34 groups = [ "default" ]; ··· 35 45 platforms = [ ]; 36 46 source = { 37 47 remotes = [ "https://rubygems.org" ]; 38 - sha256 = "0r0pn66yqrdkrfdin7qdim0yj2x75miyg4wp6mijckhzhrjb7cv5"; 48 + sha256 = "1mvjjn8vh1c3nhibmjj9qcwxagj6m9yy961wblfqdmvhr9aklb3y"; 39 49 type = "gem"; 40 50 }; 41 - version = "1.1.0"; 51 + version = "1.3.2"; 42 52 }; 43 53 aws-partitions = { 44 54 groups = [ "default" ]; 45 55 platforms = [ ]; 46 56 source = { 47 57 remotes = [ "https://rubygems.org" ]; 48 - sha256 = "1vz0djj8w3ns0sz5gvkla5jml8xzx6skbcfj255m81fyww1x6ws8"; 58 + sha256 = "0lmnx4sa9wm9ffqsjbybxzlgz6h4clf96s694sdn2lz1qcx0fq2i"; 49 59 type = "gem"; 50 60 }; 51 - version = "1.419.0"; 61 + version = "1.1068.0"; 52 62 }; 53 63 aws-sdk-core = { 54 64 dependencies = [ 55 65 "aws-eventstream" 56 66 "aws-partitions" 57 67 "aws-sigv4" 68 + "base64" 58 69 "jmespath" 59 70 ]; 60 71 groups = [ "default" ]; 61 72 platforms = [ ]; 62 73 source = { 63 74 remotes = [ "https://rubygems.org" ]; 64 - sha256 = "0bfj1cnpp0ljr9jc44kljdwl5399cbqlvlqkz6fxq5i4r6ckggi4"; 75 + sha256 = "0cjdqmy5hjbgzc0iac1i143va76qgp7jc7hg1aviy1n8cgywq44y"; 65 76 type = "gem"; 66 77 }; 67 - version = "3.111.2"; 78 + version = "3.220.1"; 68 79 }; 69 80 aws-sdk-kms = { 70 81 dependencies = [ ··· 75 86 platforms = [ ]; 76 87 source = { 77 88 remotes = [ "https://rubygems.org" ]; 78 - sha256 = "02f70a4rr5h2na7navjhaf3n15ifq95zdl1avsryyxdvqzm5gzwm"; 89 + sha256 = "1a3mh89kfh6flqxw48wfv9wfwkj2zxazw096mqm56wnnzz1jyads"; 79 90 type = "gem"; 80 91 }; 81 - version = "1.41.0"; 92 + version = "1.99.0"; 82 93 }; 83 94 aws-sdk-s3 = { 84 95 dependencies = [ ··· 90 101 platforms = [ ]; 91 102 source = { 92 103 remotes = [ "https://rubygems.org" ]; 93 - sha256 = "0capqhvm08ngq74n33ym0khixkdj342jpikssw57avdmd8g6kaq7"; 104 + sha256 = "03a55dbihv6xvgfwhx0f35rwc7q3rr0555vfpxlwpdjw75wkbz6h"; 94 105 type = "gem"; 95 106 }; 96 - version = "1.87.0"; 107 + version = "1.182.0"; 97 108 }; 98 109 aws-sigv4 = { 99 110 dependencies = [ "aws-eventstream" ]; ··· 101 112 platforms = [ ]; 102 113 source = { 103 114 remotes = [ "https://rubygems.org" ]; 104 - sha256 = "1ll9382c1x2hp750cilh01h1cycgyhdr4cmmgx23k94hyyb8chv5"; 115 + sha256 = "1nx1il781qg58nwjkkdn9fw741cjjnixfsh389234qm8j5lpka2h"; 105 116 type = "gem"; 106 117 }; 107 - version = "1.2.2"; 118 + version = "1.11.0"; 108 119 }; 109 120 babosa = { 110 121 groups = [ "default" ]; ··· 116 127 }; 117 128 version = "1.0.4"; 118 129 }; 130 + base64 = { 131 + groups = [ "default" ]; 132 + platforms = [ ]; 133 + source = { 134 + remotes = [ "https://rubygems.org" ]; 135 + sha256 = "01qml0yilb9basf7is2614skjp8384h2pycfx86cr8023arfj98g"; 136 + type = "gem"; 137 + }; 138 + version = "0.2.0"; 139 + }; 119 140 CFPropertyList = { 141 + dependencies = [ 142 + "base64" 143 + "nkf" 144 + "rexml" 145 + ]; 120 146 groups = [ "default" ]; 121 147 platforms = [ ]; 122 148 source = { 123 149 remotes = [ "https://rubygems.org" ]; 124 - sha256 = "0ia09r8bj3bjhcfiyr3vlk9zx7vahfypbs2lyrxix9x1jx3lfzq4"; 150 + sha256 = "0k1w5i4lb1z941m7ds858nly33f3iv12wvr1zav5x3fa99hj2my4"; 125 151 type = "gem"; 126 152 }; 127 - version = "3.0.3"; 153 + version = "3.0.7"; 128 154 }; 129 155 claide = { 130 156 groups = [ "default" ]; 131 157 platforms = [ ]; 132 158 source = { 133 159 remotes = [ "https://rubygems.org" ]; 134 - sha256 = "0kasxsms24fgcdsq680nz99d5lazl9rmz1qkil2y5gbbssx89g0z"; 160 + sha256 = "0bpqhc0kqjp1bh9b7ffc395l9gfls0337rrhmab4v46ykl45qg3d"; 135 161 type = "gem"; 136 162 }; 137 - version = "1.0.3"; 163 + version = "1.1.0"; 138 164 }; 139 165 colored = { 140 166 groups = [ "default" ]; ··· 156 182 }; 157 183 version = "3.1.2"; 158 184 }; 159 - commander-fastlane = { 185 + commander = { 160 186 dependencies = [ "highline" ]; 161 187 groups = [ "default" ]; 162 188 platforms = [ ]; 163 189 source = { 164 190 remotes = [ "https://rubygems.org" ]; 165 - sha256 = "0y8d3ac9qwm1cg6rnpf8rcdsy1yxacrd2g2kl809xsp2vi973g65"; 191 + sha256 = "1n8k547hqq9hvbyqbx2qi08g0bky20bbjca1df8cqq5frhzxq7bx"; 166 192 type = "gem"; 167 193 }; 168 - version = "4.4.6"; 194 + version = "4.6.0"; 169 195 }; 170 196 declarative = { 171 197 groups = [ "default" ]; ··· 177 203 }; 178 204 version = "0.0.20"; 179 205 }; 180 - declarative-option = { 181 - groups = [ "default" ]; 182 - platforms = [ ]; 183 - source = { 184 - remotes = [ "https://rubygems.org" ]; 185 - sha256 = "1g4ibxq566f1frnhdymzi9hxxcm4g2gw4n21mpjk2mhwym4q6l0p"; 186 - type = "gem"; 187 - }; 188 - version = "0.1.0"; 189 - }; 190 206 digest-crc = { 191 207 dependencies = [ "rake" ]; 192 208 groups = [ "default" ]; 193 209 platforms = [ ]; 194 210 source = { 195 211 remotes = [ "https://rubygems.org" ]; 196 - sha256 = "118d5p02kdw6a5pi8af12dxma7q3b77zz5q5xjjf5kgp8qh1930a"; 212 + sha256 = "01wcsyhaadss4zzvqh12kvbq3hmkl5y4fck7pr608hd24qxc5bb4"; 197 213 type = "gem"; 198 214 }; 199 - version = "0.6.3"; 215 + version = "0.7.0"; 200 216 }; 201 217 domain_name = { 202 - dependencies = [ "unf" ]; 203 218 groups = [ "default" ]; 204 219 platforms = [ ]; 205 220 source = { 206 221 remotes = [ "https://rubygems.org" ]; 207 - sha256 = "0lcqjsmixjp52bnlgzh4lg9ppsk52x9hpwdjd53k8jnbah2602h0"; 222 + sha256 = "0cyr2xm576gqhqicsyqnhanni47408w2pgvrfi8pd13h2li3nsaz"; 208 223 type = "gem"; 209 224 }; 210 - version = "0.5.20190701"; 225 + version = "0.6.20240107"; 211 226 }; 212 227 dotenv = { 213 228 groups = [ "default" ]; 214 229 platforms = [ ]; 215 230 source = { 216 231 remotes = [ "https://rubygems.org" ]; 217 - sha256 = "0iym172c5337sm1x2ykc2i3f961vj3wdclbyg1x6sxs3irgfsl94"; 232 + sha256 = "1n0pi8x8ql5h1mijvm8lgn6bhq4xjb5a500p5r1krq4s6j9lg565"; 218 233 type = "gem"; 219 234 }; 220 - version = "2.7.6"; 235 + version = "2.8.1"; 221 236 }; 222 237 emoji_regex = { 223 238 groups = [ "default" ]; 224 239 platforms = [ ]; 225 240 source = { 226 241 remotes = [ "https://rubygems.org" ]; 227 - sha256 = "0qbzlracxw4xwyvrgr0qcl1alk4ijk6pv53ni6f43csi649y3n3s"; 242 + sha256 = "0jsnrkfy345v66jlm2xrz8znivfnamg3mfzkddn414bndf2vxn7c"; 228 243 type = "gem"; 229 244 }; 230 - version = "3.2.1"; 245 + version = "3.2.3"; 231 246 }; 232 247 excon = { 233 248 groups = [ "default" ]; 234 249 platforms = [ ]; 235 250 source = { 236 251 remotes = [ "https://rubygems.org" ]; 237 - sha256 = "16ij8617v3js03yj1zd32mmrf7kpi9l96bid5mpqk30c4mzai55r"; 252 + sha256 = "1w7098hnyby5sn2315qy26as6kxlxivxlcrs714amj9g9hxaryfs"; 238 253 type = "gem"; 239 254 }; 240 - version = "0.78.1"; 255 + version = "0.112.0"; 241 256 }; 242 257 faraday = { 243 258 dependencies = [ 259 + "faraday-em_http" 260 + "faraday-em_synchrony" 261 + "faraday-excon" 262 + "faraday-httpclient" 263 + "faraday-multipart" 244 264 "faraday-net_http" 245 - "multipart-post" 265 + "faraday-net_http_persistent" 266 + "faraday-patron" 267 + "faraday-rack" 268 + "faraday-retry" 246 269 "ruby2_keywords" 247 270 ]; 248 271 groups = [ "default" ]; 249 272 platforms = [ ]; 250 273 source = { 251 274 remotes = [ "https://rubygems.org" ]; 252 - sha256 = "1hmssd8pj4n7yq4kz834ylkla8ryyvhaap6q9nzymp93m1xq21kz"; 275 + sha256 = "069gmdh5j90v06rbwlqvlhzhq45lxhx74mahz25xd276rm0wb153"; 253 276 type = "gem"; 254 277 }; 255 - version = "1.3.0"; 278 + version = "1.10.4"; 256 279 }; 257 280 faraday-cookie_jar = { 258 281 dependencies = [ ··· 268 291 }; 269 292 version = "0.0.7"; 270 293 }; 294 + faraday-em_http = { 295 + groups = [ "default" ]; 296 + platforms = [ ]; 297 + source = { 298 + remotes = [ "https://rubygems.org" ]; 299 + sha256 = "12cnqpbak4vhikrh2cdn94assh3yxza8rq2p9w2j34bqg5q4qgbs"; 300 + type = "gem"; 301 + }; 302 + version = "1.0.0"; 303 + }; 304 + faraday-em_synchrony = { 305 + groups = [ "default" ]; 306 + platforms = [ ]; 307 + source = { 308 + remotes = [ "https://rubygems.org" ]; 309 + sha256 = "1vgrbhkp83sngv6k4mii9f2s9v5lmp693hylfxp2ssfc60fas3a6"; 310 + type = "gem"; 311 + }; 312 + version = "1.0.0"; 313 + }; 314 + faraday-excon = { 315 + groups = [ "default" ]; 316 + platforms = [ ]; 317 + source = { 318 + remotes = [ "https://rubygems.org" ]; 319 + sha256 = "0h09wkb0k0bhm6dqsd47ac601qiaah8qdzjh8gvxfd376x1chmdh"; 320 + type = "gem"; 321 + }; 322 + version = "1.1.0"; 323 + }; 324 + faraday-httpclient = { 325 + groups = [ "default" ]; 326 + platforms = [ ]; 327 + source = { 328 + remotes = [ "https://rubygems.org" ]; 329 + sha256 = "0fyk0jd3ks7fdn8nv3spnwjpzx2lmxmg2gh4inz3by1zjzqg33sc"; 330 + type = "gem"; 331 + }; 332 + version = "1.0.1"; 333 + }; 334 + faraday-multipart = { 335 + dependencies = [ "multipart-post" ]; 336 + groups = [ "default" ]; 337 + platforms = [ ]; 338 + source = { 339 + remotes = [ "https://rubygems.org" ]; 340 + sha256 = "0l87r9jg06nsh24gwwd1jdnxb1zq89ffybnxab0dd90nfcf0ysw5"; 341 + type = "gem"; 342 + }; 343 + version = "1.1.0"; 344 + }; 271 345 faraday-net_http = { 272 346 groups = [ "default" ]; 273 347 platforms = [ ]; 274 348 source = { 275 349 remotes = [ "https://rubygems.org" ]; 276 - sha256 = "1fi8sda5hc54v1w3mqfl5yz09nhx35kglyx72w7b8xxvdr0cwi9j"; 350 + sha256 = "10n6wikd442mfm15hd6gzm0qb527161w1wwch4h5m4iclkz2x6b3"; 351 + type = "gem"; 352 + }; 353 + version = "1.0.2"; 354 + }; 355 + faraday-net_http_persistent = { 356 + groups = [ "default" ]; 357 + platforms = [ ]; 358 + source = { 359 + remotes = [ "https://rubygems.org" ]; 360 + sha256 = "0dc36ih95qw3rlccffcb0vgxjhmipsvxhn6cw71l7ffs0f7vq30b"; 361 + type = "gem"; 362 + }; 363 + version = "1.2.0"; 364 + }; 365 + faraday-patron = { 366 + groups = [ "default" ]; 367 + platforms = [ ]; 368 + source = { 369 + remotes = [ "https://rubygems.org" ]; 370 + sha256 = "19wgsgfq0xkski1g7m96snv39la3zxz6x7nbdgiwhg5v82rxfb6w"; 371 + type = "gem"; 372 + }; 373 + version = "1.0.0"; 374 + }; 375 + faraday-rack = { 376 + groups = [ "default" ]; 377 + platforms = [ ]; 378 + source = { 379 + remotes = [ "https://rubygems.org" ]; 380 + sha256 = "1h184g4vqql5jv9s9im6igy00jp6mrah2h14py6mpf9bkabfqq7g"; 277 381 type = "gem"; 278 382 }; 279 - version = "1.0.1"; 383 + version = "1.0.0"; 384 + }; 385 + faraday-retry = { 386 + groups = [ "default" ]; 387 + platforms = [ ]; 388 + source = { 389 + remotes = [ "https://rubygems.org" ]; 390 + sha256 = "153i967yrwnswqgvnnajgwp981k9p50ys1h80yz3q94rygs59ldd"; 391 + type = "gem"; 392 + }; 393 + version = "1.0.3"; 280 394 }; 281 395 faraday_middleware = { 282 396 dependencies = [ "faraday" ]; ··· 284 398 platforms = [ ]; 285 399 source = { 286 400 remotes = [ "https://rubygems.org" ]; 287 - sha256 = "0jik2kgfinwnfi6fpp512vlvs0mlggign3gkbpkg5fw1jr9his0r"; 401 + sha256 = "1s990pnapb3vci9c00bklqc7jjix4i2zhxn2zf1lfk46xv47hnyl"; 288 402 type = "gem"; 289 403 }; 290 - version = "1.0.0"; 404 + version = "1.2.1"; 291 405 }; 292 406 fastimage = { 293 407 groups = [ "default" ]; 294 408 platforms = [ ]; 295 409 source = { 296 410 remotes = [ "https://rubygems.org" ]; 297 - sha256 = "1vqp53s9vgd28f4l17q0vs7xv32y64af0ny3wb1fgg4i534rzg6j"; 411 + sha256 = "1s67b9n7ki3iaycypq8sh02377gjkaxadg4dq53bpgfk4xg3gkjz"; 298 412 type = "gem"; 299 413 }; 300 - version = "2.2.1"; 414 + version = "2.4.0"; 301 415 }; 302 416 fastlane = { 303 417 dependencies = [ ··· 307 421 "aws-sdk-s3" 308 422 "babosa" 309 423 "colored" 310 - "commander-fastlane" 424 + "commander" 311 425 "dotenv" 312 426 "emoji_regex" 313 427 "excon" ··· 315 429 "faraday-cookie_jar" 316 430 "faraday_middleware" 317 431 "fastimage" 432 + "fastlane-sirp" 318 433 "gh_inspector" 319 - "google-api-client" 434 + "google-apis-androidpublisher_v3" 435 + "google-apis-playcustomapp_v1" 436 + "google-cloud-env" 320 437 "google-cloud-storage" 321 438 "highline" 439 + "http-cookie" 322 440 "json" 323 441 "jwt" 324 442 "mini_magick" 325 443 "multipart-post" 444 + "naturally" 445 + "optparse" 326 446 "plist" 327 447 "rubyzip" 328 448 "security" 329 449 "simctl" 330 - "slack-notifier" 331 450 "terminal-notifier" 332 451 "terminal-table" 333 452 "tty-screen" ··· 341 460 platforms = [ ]; 342 461 source = { 343 462 remotes = [ "https://rubygems.org" ]; 344 - sha256 = "0crr42qdgy9l409pffpfs7nq8ha18lp1nxngny2dc9hiq1xx4r5d"; 463 + sha256 = "12lqn70c3v5h2z2svn1gickyhkhny6rwnm2xfrs3gmjc6pvfrqhb"; 464 + type = "gem"; 465 + }; 466 + version = "2.227.0"; 467 + }; 468 + fastlane-sirp = { 469 + dependencies = [ "sysrandom" ]; 470 + groups = [ "default" ]; 471 + platforms = [ ]; 472 + source = { 473 + remotes = [ "https://rubygems.org" ]; 474 + sha256 = "0hg6ql3g25f96fsmwr9xlxpn8afa7wvjampnrh1fqffhphjqyiv6"; 345 475 type = "gem"; 346 476 }; 347 - version = "2.172.0"; 477 + version = "1.0.0"; 348 478 }; 349 479 gh_inspector = { 350 480 groups = [ "default" ]; ··· 356 486 }; 357 487 version = "1.1.3"; 358 488 }; 359 - google-api-client = { 360 - dependencies = [ 361 - "addressable" 362 - "googleauth" 363 - "httpclient" 364 - "mini_mime" 365 - "representable" 366 - "retriable" 367 - "signet" 368 - ]; 489 + google-apis-androidpublisher_v3 = { 490 + dependencies = [ "google-apis-core" ]; 369 491 groups = [ "default" ]; 370 492 platforms = [ ]; 371 493 source = { 372 494 remotes = [ "https://rubygems.org" ]; 373 - sha256 = "1jybks8i00rxrxx9mkx90dbdk6pczh2w757wchlavmrkrk0dp9s1"; 495 + sha256 = "046j100lrh5dhb8p3gr38fyqrw8vcif97pqb55ysipy874lafw49"; 374 496 type = "gem"; 375 497 }; 376 - version = "0.38.0"; 498 + version = "0.54.0"; 377 499 }; 378 500 google-apis-core = { 379 501 dependencies = [ ··· 384 506 "representable" 385 507 "retriable" 386 508 "rexml" 387 - "signet" 388 - "webrick" 389 509 ]; 390 510 groups = [ "default" ]; 391 511 platforms = [ ]; 392 512 source = { 393 513 remotes = [ "https://rubygems.org" ]; 394 - sha256 = "184pqw7z7s8mc1r5gj8f76xvp8z650xq50vdfj5gjwsbmzd99z2f"; 514 + sha256 = "15ycm7al9dizabbqmri5xmiz8mbcci343ygb64ndbmr9n49p08a3"; 395 515 type = "gem"; 396 516 }; 397 - version = "0.2.1"; 517 + version = "0.11.3"; 398 518 }; 399 519 google-apis-iamcredentials_v1 = { 400 520 dependencies = [ "google-apis-core" ]; ··· 402 522 platforms = [ ]; 403 523 source = { 404 524 remotes = [ "https://rubygems.org" ]; 405 - sha256 = "0xjlzq2fxpwvp9b6ajs8cpyjv8vs2d2npg9v23yj181hj2fnn82c"; 525 + sha256 = "0ysil0bkh755kmf9xvw5szhk1yyh3gqzwfsrbwsrl77gsv7jarcs"; 406 526 type = "gem"; 407 527 }; 408 - version = "0.1.0"; 528 + version = "0.17.0"; 529 + }; 530 + google-apis-playcustomapp_v1 = { 531 + dependencies = [ "google-apis-core" ]; 532 + groups = [ "default" ]; 533 + platforms = [ ]; 534 + source = { 535 + remotes = [ "https://rubygems.org" ]; 536 + sha256 = "1mlgwiid5lgg41y7qk8ca9lzhwx5njs25hz5fbf1mdal0kwm37lm"; 537 + type = "gem"; 538 + }; 539 + version = "0.13.0"; 409 540 }; 410 541 google-apis-storage_v1 = { 411 542 dependencies = [ "google-apis-core" ]; ··· 413 544 platforms = [ ]; 414 545 source = { 415 546 remotes = [ "https://rubygems.org" ]; 416 - sha256 = "0axycds5q20fqm6vqxa5r922021p0f8jhwvlgw8r1vq600ljribi"; 547 + sha256 = "13yvc9r8bhs16vq3fjc93qlffmq9p6zx97c9g1c3wh0jbrvwrs03"; 417 548 type = "gem"; 418 549 }; 419 - version = "0.1.0"; 550 + version = "0.31.0"; 420 551 }; 421 552 google-cloud-core = { 422 553 dependencies = [ ··· 427 558 platforms = [ ]; 428 559 source = { 429 560 remotes = [ "https://rubygems.org" ]; 430 - sha256 = "1qjn7vs8f85vxi1nkikbjfja6bv9snrj26vzscjii0cm8n4dy0i1"; 561 + sha256 = "1kw10897ardky1chwwsb8milygzcdi8qlqlhcnqwmkw9y75yswp5"; 431 562 type = "gem"; 432 563 }; 433 - version = "1.5.0"; 564 + version = "1.8.0"; 434 565 }; 435 566 google-cloud-env = { 436 567 dependencies = [ "faraday" ]; ··· 438 569 platforms = [ ]; 439 570 source = { 440 571 remotes = [ "https://rubygems.org" ]; 441 - sha256 = "0bjgxyvagy6hjj8yg7fqq24rwdjxb6hx7fdd1bmn4mwd846lci2i"; 572 + sha256 = "05gshdqscg4kil6ppfzmikyavsx449bxyj47j33r4n4p8swsqyb1"; 442 573 type = "gem"; 443 574 }; 444 - version = "1.4.0"; 575 + version = "1.6.0"; 445 576 }; 446 577 google-cloud-errors = { 447 578 groups = [ "default" ]; 448 579 platforms = [ ]; 449 580 source = { 450 581 remotes = [ "https://rubygems.org" ]; 451 - sha256 = "1hvs1x39g77hbdqjxmzcl6gq8160pv3kskvzbbch0ww1np6qwm67"; 582 + sha256 = "0jvv9w8s4dqc4ncfa6c6qpdypz2wj8dmgpjd44jq2qhhij5y4sxm"; 452 583 type = "gem"; 453 584 }; 454 - version = "1.0.1"; 585 + version = "1.5.0"; 455 586 }; 456 587 google-cloud-storage = { 457 588 dependencies = [ ··· 467 598 platforms = [ ]; 468 599 source = { 469 600 remotes = [ "https://rubygems.org" ]; 470 - sha256 = "17axi5gmy0g04801v11lww5mvqzffqdc3w6k1j7f95v90hy4yn6m"; 601 + sha256 = "0xpb3s7zr7g647xg66y2mavdargk5ixsfbfdmi4m2jc3khdd0hxm"; 471 602 type = "gem"; 472 603 }; 473 - version = "1.30.0"; 604 + version = "1.47.0"; 474 605 }; 475 606 googleauth = { 476 607 dependencies = [ 477 608 "faraday" 478 609 "jwt" 479 - "memoist" 480 610 "multi_json" 481 611 "os" 482 612 "signet" ··· 485 615 platforms = [ ]; 486 616 source = { 487 617 remotes = [ "https://rubygems.org" ]; 488 - sha256 = "1pwm0mzb5zffhk6yw4v3n1yj8qr6jla6f78vsv4g0bxh9z0ikc2z"; 618 + sha256 = "1ry9v23kndgx2pxq9v31l68k9lnnrcz1w4v75bkxq88jmbddljl1"; 489 619 type = "gem"; 490 620 }; 491 - version = "0.15.0"; 621 + version = "1.8.1"; 492 622 }; 493 623 highline = { 494 624 groups = [ "default" ]; 495 625 platforms = [ ]; 496 626 source = { 497 627 remotes = [ "https://rubygems.org" ]; 498 - sha256 = "01ib7jp85xjc4gh4jg0wyzllm46hwv8p0w1m4c75pbgi41fps50y"; 628 + sha256 = "0yclf57n2j3cw8144ania99h1zinf8q3f5zrhqa754j6gl95rp9d"; 499 629 type = "gem"; 500 630 }; 501 - version = "1.7.10"; 631 + version = "2.0.3"; 502 632 }; 503 633 http-cookie = { 504 634 dependencies = [ "domain_name" ]; ··· 506 636 platforms = [ ]; 507 637 source = { 508 638 remotes = [ "https://rubygems.org" ]; 509 - sha256 = "004cgs4xg5n6byjs7qld0xhsjq3n6ydfh897myr2mibvh6fjc49g"; 639 + sha256 = "19hsskzk5zpv14mnf07pq71hfk1fsjwfjcw616pgjjzjbi2f0kxi"; 510 640 type = "gem"; 511 641 }; 512 - version = "1.0.3"; 642 + version = "1.0.8"; 513 643 }; 514 644 httpclient = { 645 + dependencies = [ "mutex_m" ]; 515 646 groups = [ "default" ]; 516 647 platforms = [ ]; 517 648 source = { 518 649 remotes = [ "https://rubygems.org" ]; 519 - sha256 = "19mxmvghp7ki3klsxwrlwr431li7hm1lczhhj8z4qihl2acy8l99"; 650 + sha256 = "1j4qwj1nv66v3n9s4xqf64x2galvjm630bwa5xngicllwic5jr2b"; 520 651 type = "gem"; 521 652 }; 522 - version = "2.8.3"; 653 + version = "2.9.0"; 523 654 }; 524 655 jmespath = { 525 656 groups = [ "default" ]; 526 657 platforms = [ ]; 527 658 source = { 528 659 remotes = [ "https://rubygems.org" ]; 529 - sha256 = "1d4wac0dcd1jf6kc57891glih9w57552zgqswgy74d1xhgnk0ngf"; 660 + sha256 = "1cdw9vw2qly7q7r41s7phnac264rbsdqgj4l0h4nqgbjb157g393"; 530 661 type = "gem"; 531 662 }; 532 - version = "1.4.0"; 663 + version = "1.6.2"; 533 664 }; 534 665 json = { 535 666 groups = [ "default" ]; 536 667 platforms = [ ]; 537 668 source = { 538 669 remotes = [ "https://rubygems.org" ]; 539 - sha256 = "0lrirj0gw420kw71bjjlqkqhqbrplla61gbv1jzgsz6bv90qr3ci"; 670 + sha256 = "01lbdaizhkxmrw4y8j3wpvsryvnvzmg0pfs56c52laq2jgdfmq1l"; 540 671 type = "gem"; 541 672 }; 542 - version = "2.5.1"; 673 + version = "2.10.2"; 543 674 }; 544 675 jwt = { 676 + dependencies = [ "base64" ]; 545 677 groups = [ "default" ]; 546 678 platforms = [ ]; 547 679 source = { 548 680 remotes = [ "https://rubygems.org" ]; 549 - sha256 = "14ynyq1q483spj20ffl4xayfqx1a8qr761mqjfxczf8lwlap392n"; 681 + sha256 = "1i8wmzgb5nfhvkx1f6bhdwfm7v772172imh439v3xxhkv3hllhp6"; 550 682 type = "gem"; 551 683 }; 552 - version = "2.2.2"; 684 + version = "2.10.1"; 553 685 }; 554 - memoist = { 686 + mini_magick = { 555 687 groups = [ "default" ]; 556 688 platforms = [ ]; 557 689 source = { 558 690 remotes = [ "https://rubygems.org" ]; 559 - sha256 = "0i9wpzix3sjhf6d9zw60dm4371iq8kyz7ckh2qapan2vyaim6b55"; 691 + sha256 = "1nfxjpmka12ihbwd87d5k2hh7d2pv3aq95x0l2lh8gca1s72bmki"; 560 692 type = "gem"; 561 693 }; 562 - version = "0.16.2"; 694 + version = "4.13.2"; 563 695 }; 564 - mini_magick = { 696 + mini_mime = { 565 697 groups = [ "default" ]; 566 698 platforms = [ ]; 567 699 source = { 568 700 remotes = [ "https://rubygems.org" ]; 569 - sha256 = "1aj604x11d9pksbljh0l38f70b558rhdgji1s9i763hiagvvx2hs"; 701 + sha256 = "1vycif7pjzkr29mfk4dlqv3disc5dn0va04lkwajlpr1wkibg0c6"; 570 702 type = "gem"; 571 703 }; 572 - version = "4.11.0"; 704 + version = "1.1.5"; 573 705 }; 574 - mini_mime = { 706 + multi_json = { 575 707 groups = [ "default" ]; 576 708 platforms = [ ]; 577 709 source = { 578 710 remotes = [ "https://rubygems.org" ]; 579 - sha256 = "1axm0rxyx3ss93wbmfkm78a6x03l8y4qy60rhkkiq0aza0vwq3ha"; 711 + sha256 = "0pb1g1y3dsiahavspyzkdy39j4q377009f6ix0bh1ag4nqw43l0z"; 580 712 type = "gem"; 581 713 }; 582 - version = "1.0.2"; 714 + version = "1.15.0"; 583 715 }; 584 - multi_json = { 716 + multipart-post = { 585 717 groups = [ "default" ]; 586 718 platforms = [ ]; 587 719 source = { 588 720 remotes = [ "https://rubygems.org" ]; 589 - sha256 = "0pb1g1y3dsiahavspyzkdy39j4q377009f6ix0bh1ag4nqw43l0z"; 721 + sha256 = "1a5lrlvmg2kb2dhw3lxcsv6x276bwgsxpnka1752082miqxd0wlq"; 590 722 type = "gem"; 591 723 }; 592 - version = "1.15.0"; 724 + version = "2.4.1"; 593 725 }; 594 - multipart-post = { 726 + mutex_m = { 595 727 groups = [ "default" ]; 596 728 platforms = [ ]; 597 729 source = { 598 730 remotes = [ "https://rubygems.org" ]; 599 - sha256 = "09k0b3cybqilk1gwrwwain95rdypixb2q9w65gd44gfzsd84xi1x"; 731 + sha256 = "0l875dw0lk7b2ywa54l0wjcggs94vb7gs8khfw9li75n2sn09jyg"; 600 732 type = "gem"; 601 733 }; 602 - version = "2.0.0"; 734 + version = "0.3.0"; 603 735 }; 604 736 nanaimo = { 605 737 groups = [ "default" ]; 606 738 platforms = [ ]; 607 739 source = { 608 740 remotes = [ "https://rubygems.org" ]; 609 - sha256 = "0xi36h3f7nm8bc2k0b6svpda1lyank2gf872lxjbhw3h95hdrbma"; 741 + sha256 = "08q73nchv8cpk28h1sdnf5z6a862fcf4mxy1d58z25xb3dankw7s"; 610 742 type = "gem"; 611 743 }; 612 - version = "0.3.0"; 744 + version = "0.4.0"; 613 745 }; 614 746 naturally = { 615 747 groups = [ "default" ]; ··· 621 753 }; 622 754 version = "2.2.1"; 623 755 }; 756 + nkf = { 757 + groups = [ "default" ]; 758 + platforms = [ ]; 759 + source = { 760 + remotes = [ "https://rubygems.org" ]; 761 + sha256 = "09piyp2pd74klb9wcn0zw4mb5l0k9wzwppxggxi1yi95l2ym3hgv"; 762 + type = "gem"; 763 + }; 764 + version = "0.2.0"; 765 + }; 766 + optparse = { 767 + groups = [ "default" ]; 768 + platforms = [ ]; 769 + source = { 770 + remotes = [ "https://rubygems.org" ]; 771 + sha256 = "1306kdvq0xr333xma4452zvvvw6mx7fw20fwi6508i6dq5lh9s95"; 772 + type = "gem"; 773 + }; 774 + version = "0.6.0"; 775 + }; 624 776 os = { 625 777 groups = [ "default" ]; 626 778 platforms = [ ]; 627 779 source = { 628 780 remotes = [ "https://rubygems.org" ]; 629 - sha256 = "12fli64wz5j9868gpzv5wqsingk1jk457qyqksv9ksmq9b0zpc9x"; 781 + sha256 = "0gwd20smyhxbm687vdikfh1gpi96h8qb1x28s2pdcysf6dm6v0ap"; 630 782 type = "gem"; 631 783 }; 632 - version = "1.1.1"; 784 + version = "1.1.4"; 633 785 }; 634 786 plist = { 635 787 groups = [ "default" ]; 636 788 platforms = [ ]; 637 789 source = { 638 790 remotes = [ "https://rubygems.org" ]; 639 - sha256 = "1whhr897z6z6av85x2cipyjk46bwh6s4wx6nbrcd3iifnzvbqs7l"; 791 + sha256 = "0hlaf4b3d8grxm9fqbnam5gwd55wvghl0jyzjd1hc5hirhklaynk"; 640 792 type = "gem"; 641 793 }; 642 - version = "3.6.0"; 794 + version = "3.7.2"; 643 795 }; 644 796 public_suffix = { 645 797 groups = [ "default" ]; 646 798 platforms = [ ]; 647 799 source = { 648 800 remotes = [ "https://rubygems.org" ]; 649 - sha256 = "1xqcgkl7bwws1qrlnmxgh8g4g9m10vg60bhlw40fplninb3ng6d9"; 801 + sha256 = "0vqcw3iwby3yc6avs1vb3gfd0vcp2v7q310665dvxfswmcf4xm31"; 650 802 type = "gem"; 651 803 }; 652 - version = "4.0.6"; 804 + version = "6.0.1"; 653 805 }; 654 806 rake = { 655 807 groups = [ "default" ]; 656 808 platforms = [ ]; 657 809 source = { 658 810 remotes = [ "https://rubygems.org" ]; 659 - sha256 = "1iik52mf9ky4cgs38fp2m8r6skdkq1yz23vh18lk95fhbcxb6a67"; 811 + sha256 = "17850wcwkgi30p7yqh60960ypn7yibacjjha0av78zaxwvd3ijs6"; 660 812 type = "gem"; 661 813 }; 662 - version = "13.0.3"; 814 + version = "13.2.1"; 663 815 }; 664 816 representable = { 665 817 dependencies = [ 666 818 "declarative" 667 - "declarative-option" 819 + "trailblazer-option" 668 820 "uber" 669 821 ]; 670 822 groups = [ "default" ]; 671 823 platforms = [ ]; 672 824 source = { 673 825 remotes = [ "https://rubygems.org" ]; 674 - sha256 = "0qm9rgi1j5a6nv726ka4mmixivlxfsg91h8rpp72wwd4vqbkkm07"; 826 + sha256 = "1kms3r6w6pnryysnaqqa9fsn0v73zx1ilds9d1c565n3xdzbyafc"; 675 827 type = "gem"; 676 828 }; 677 - version = "3.0.4"; 829 + version = "3.2.0"; 678 830 }; 679 831 retriable = { 680 832 groups = [ "default" ]; ··· 691 843 platforms = [ ]; 692 844 source = { 693 845 remotes = [ "https://rubygems.org" ]; 694 - sha256 = "1mkvkcw9fhpaizrhca0pdgjcrbns48rlz4g6lavl5gjjq3rk2sq3"; 846 + sha256 = "1jmbf6lf7pcyacpb939xjjpn1f84c3nw83dy3p1lwjx0l2ljfif7"; 695 847 type = "gem"; 696 848 }; 697 - version = "3.2.4"; 849 + version = "3.4.1"; 698 850 }; 699 851 rouge = { 700 852 groups = [ "default" ]; 701 853 platforms = [ ]; 702 854 source = { 703 855 remotes = [ "https://rubygems.org" ]; 704 - sha256 = "0sfikq1q8xyqqx690iiz7ybhzx87am4w50w8f2nq36l3asw4x89d"; 856 + sha256 = "080fswzii68wnbsg7pgq55ba7p289sqjlxwp4vch0h32qy1f8v8d"; 705 857 type = "gem"; 706 858 }; 707 - version = "2.0.7"; 859 + version = "3.28.0"; 708 860 }; 709 861 ruby2_keywords = { 710 862 groups = [ "default" ]; 711 863 platforms = [ ]; 712 864 source = { 713 865 remotes = [ "https://rubygems.org" ]; 714 - sha256 = "15wfcqxyfgka05v2a7kpg64x57gl1y4xzvnc9lh60bqx5sf1iqrs"; 866 + sha256 = "1vz322p8n39hz3b4a9gkmz9y7a5jaz41zrm2ywf31dvkqm03glgz"; 715 867 type = "gem"; 716 868 }; 717 - version = "0.0.4"; 869 + version = "0.0.5"; 718 870 }; 719 871 rubyzip = { 720 872 groups = [ "default" ]; 721 873 platforms = [ ]; 722 874 source = { 723 875 remotes = [ "https://rubygems.org" ]; 724 - sha256 = "0590m2pr9i209pp5z4mx0nb1961ishdiqb28995hw1nln1d1b5ji"; 876 + sha256 = "05an0wz87vkmqwcwyh5rjiaavydfn5f4q1lixcsqkphzvj7chxw5"; 725 877 type = "gem"; 726 878 }; 727 - version = "2.3.0"; 879 + version = "2.4.1"; 728 880 }; 729 881 security = { 730 882 groups = [ "default" ]; 731 883 platforms = [ ]; 732 884 source = { 733 885 remotes = [ "https://rubygems.org" ]; 734 - sha256 = "1ryjxs0j66wrbky2c08yf0mllwalvpg12rpxzbdx2rdhj3cbrlxa"; 886 + sha256 = "1drkm2wgjazwzj09db1szrllkag036bdvc3dr42fh1kpr877m5rs"; 735 887 type = "gem"; 736 888 }; 737 - version = "0.1.3"; 889 + version = "0.1.5"; 738 890 }; 739 891 signet = { 740 892 dependencies = [ ··· 747 899 platforms = [ ]; 748 900 source = { 749 901 remotes = [ "https://rubygems.org" ]; 750 - sha256 = "10g2667fvxnc50hcd1aywgsbf8j7nrckg3n7zjvywmyz82pwmpqp"; 902 + sha256 = "0cfxa11wy1nv9slmnzjczkdgld0gqizajsb03rliy53zylwkjzsk"; 751 903 type = "gem"; 752 904 }; 753 - version = "0.14.0"; 905 + version = "0.19.0"; 754 906 }; 755 907 simctl = { 756 908 dependencies = [ ··· 761 913 platforms = [ ]; 762 914 source = { 763 915 remotes = [ "https://rubygems.org" ]; 764 - sha256 = "1v9rsdmg5c5kkf8ps47xnrfbvjnq11sbaifr186jwkh4npawz00x"; 916 + sha256 = "0sr3z4kmp6ym7synicyilj9vic7i9nxgaszqx6n1xn1ss7s7g45r"; 765 917 type = "gem"; 766 918 }; 767 - version = "1.6.8"; 919 + version = "1.6.10"; 768 920 }; 769 - slack-notifier = { 921 + sysrandom = { 770 922 groups = [ "default" ]; 771 923 platforms = [ ]; 772 924 source = { 773 925 remotes = [ "https://rubygems.org" ]; 774 - sha256 = "1pkfn99dhy5s526r6k8d87fwwb6j287ga9s7lxqmh60z28xqh3bv"; 926 + sha256 = "0x8yryf6migjnkfwr8dxgx1qyzhvajgha60hr5mgfkn65qyarhas"; 775 927 type = "gem"; 776 928 }; 777 - version = "2.3.2"; 929 + version = "1.0.5"; 778 930 }; 779 931 terminal-notifier = { 780 932 groups = [ "default" ]; ··· 792 944 platforms = [ ]; 793 945 source = { 794 946 remotes = [ "https://rubygems.org" ]; 795 - sha256 = "1512cngw35hsmhvw4c05rscihc59mnj09m249sm9p3pik831ydqk"; 947 + sha256 = "14dfmfjppmng5hwj7c5ka6qdapawm3h6k9lhn8zj001ybypvclgr"; 948 + type = "gem"; 949 + }; 950 + version = "3.0.2"; 951 + }; 952 + trailblazer-option = { 953 + groups = [ "default" ]; 954 + platforms = [ ]; 955 + source = { 956 + remotes = [ "https://rubygems.org" ]; 957 + sha256 = "18s48fndi2kfvrfzmq6rxvjfwad347548yby0341ixz1lhpg3r10"; 796 958 type = "gem"; 797 959 }; 798 - version = "1.8.0"; 960 + version = "0.1.2"; 799 961 }; 800 962 tty-cursor = { 801 963 groups = [ "default" ]; ··· 812 974 platforms = [ ]; 813 975 source = { 814 976 remotes = [ "https://rubygems.org" ]; 815 - sha256 = "18jr6s1cg8yb26wzkqa6874q0z93rq0y5aw092kdqazk71y6a235"; 977 + sha256 = "0l4vh6g333jxm9lakilkva2gn17j6gb052626r1pdbmy2lhnb460"; 816 978 type = "gem"; 817 979 }; 818 - version = "0.8.1"; 980 + version = "0.8.2"; 819 981 }; 820 982 tty-spinner = { 821 983 dependencies = [ "tty-cursor" ]; ··· 838 1000 }; 839 1001 version = "0.1.0"; 840 1002 }; 841 - unf = { 842 - dependencies = [ "unf_ext" ]; 843 - groups = [ "default" ]; 844 - platforms = [ ]; 845 - source = { 846 - remotes = [ "https://rubygems.org" ]; 847 - sha256 = "0bh2cf73i2ffh4fcpdn9ir4mhq8zi50ik0zqa1braahzadx536a9"; 848 - type = "gem"; 849 - }; 850 - version = "0.1.4"; 851 - }; 852 - unf_ext = { 853 - groups = [ "default" ]; 854 - platforms = [ ]; 855 - source = { 856 - remotes = [ "https://rubygems.org" ]; 857 - sha256 = "0wc47r23h063l8ysws8sy24gzh74mks81cak3lkzlrw4qkqb3sg4"; 858 - type = "gem"; 859 - }; 860 - version = "0.0.7.7"; 861 - }; 862 1003 unicode-display_width = { 863 1004 groups = [ "default" ]; 864 1005 platforms = [ ]; 865 1006 source = { 866 1007 remotes = [ "https://rubygems.org" ]; 867 - sha256 = "06i3id27s60141x6fdnjn5rar1cywdwy64ilc59cz937303q3mna"; 1008 + sha256 = "0nkz7fadlrdbkf37m0x7sw8bnz8r355q3vwcfb9f9md6pds9h9qj"; 868 1009 type = "gem"; 869 1010 }; 870 - version = "1.7.0"; 871 - }; 872 - webrick = { 873 - groups = [ "default" ]; 874 - platforms = [ ]; 875 - source = { 876 - remotes = [ "https://rubygems.org" ]; 877 - sha256 = "1d4cvgmxhfczxiq5fr534lmizkhigd15bsx5719r5ds7k7ivisc7"; 878 - type = "gem"; 879 - }; 880 - version = "1.7.0"; 1011 + version = "2.6.0"; 881 1012 }; 882 1013 word_wrap = { 883 1014 groups = [ "default" ]; ··· 898 1029 platforms = [ ]; 899 1030 source = { 900 1031 remotes = [ "https://rubygems.org" ]; 901 - sha256 = "1yhslanqw8r0mhls2hira05c8xjzzr7mnz1ab9p5qwg4z45ddjj8"; 1032 + sha256 = "11mkjyz5icxyskmchwh1vld9vdlhc794356nbla88dgjaqhjddvl"; 902 1033 type = "gem"; 903 1034 }; 904 - version = "2.6.8"; 1035 + version = "2.8.1"; 905 1036 }; 906 1037 xcodeproj = { 907 1038 dependencies = [ ··· 910 1041 "claide" 911 1042 "colored2" 912 1043 "nanaimo" 1044 + "rexml" 913 1045 ]; 914 1046 groups = [ "default" ]; 915 1047 platforms = [ ]; 916 1048 source = { 917 1049 remotes = [ "https://rubygems.org" ]; 918 - sha256 = "1411j6sfnz0cx4fiw52f0yqx4bgcn8cmpgi3i5rwmmahayyjz2fn"; 1050 + sha256 = "1lslz1kfb8jnd1ilgg02qx0p0y6yiq8wwk84mgg2ghh58lxsgiwc"; 919 1051 type = "gem"; 920 1052 }; 921 - version = "1.19.0"; 1053 + version = "1.27.0"; 922 1054 }; 923 1055 xcpretty = { 924 1056 dependencies = [ "rouge" ]; ··· 926 1058 platforms = [ ]; 927 1059 source = { 928 1060 remotes = [ "https://rubygems.org" ]; 929 - sha256 = "1xq47q2h5llj7b54rws4796904vnnjz7qqnacdv7wlp3gdbwrivm"; 1061 + sha256 = "1lbwk77g28jjhin3qjrh7ldfsgf7aszi9j60mp8yz10i3wyqgvqj"; 930 1062 type = "gem"; 931 1063 }; 932 - version = "0.3.0"; 1064 + version = "0.4.0"; 933 1065 }; 934 1066 xcpretty-travis-formatter = { 935 1067 dependencies = [ "xcpretty" ];
+4 -4
pkgs/development/tools/xcpretty/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - rouge (2.0.7) 5 - xcpretty (0.3.0) 6 - rouge (~> 2.0.7) 4 + rouge (3.28.0) 5 + xcpretty (0.4.0) 6 + rouge (~> 3.28.0) 7 7 8 8 PLATFORMS 9 9 ruby ··· 12 12 xcpretty 13 13 14 14 BUNDLED WITH 15 - 2.1.4 15 + 2.6.2
+8 -4
pkgs/development/tools/xcpretty/gemset.nix
··· 1 1 { 2 2 rouge = { 3 + groups = [ "default" ]; 4 + platforms = [ ]; 3 5 source = { 4 6 remotes = [ "https://rubygems.org" ]; 5 - sha256 = "0sfikq1q8xyqqx690iiz7ybhzx87am4w50w8f2nq36l3asw4x89d"; 7 + sha256 = "080fswzii68wnbsg7pgq55ba7p289sqjlxwp4vch0h32qy1f8v8d"; 6 8 type = "gem"; 7 9 }; 8 - version = "2.0.7"; 10 + version = "3.28.0"; 9 11 }; 10 12 xcpretty = { 11 13 dependencies = [ "rouge" ]; 14 + groups = [ "default" ]; 15 + platforms = [ ]; 12 16 source = { 13 17 remotes = [ "https://rubygems.org" ]; 14 - sha256 = "1xq47q2h5llj7b54rws4796904vnnjz7qqnacdv7wlp3gdbwrivm"; 18 + sha256 = "1lbwk77g28jjhin3qjrh7ldfsgf7aszi9j60mp8yz10i3wyqgvqj"; 15 19 type = "gem"; 16 20 }; 17 - version = "0.3.0"; 21 + version = "0.4.0"; 18 22 }; 19 23 }
+4
pkgs/servers/http/showoff/Gemfile
··· 1 1 source 'https://rubygems.org' 2 2 gem 'showoff' 3 + 4 + gem "rexml", "~> 3.4" 5 + 6 + gem "pdfkit", "~> 0.8.7"
+6 -26
pkgs/servers/http/showoff/Gemfile.lock
··· 20 20 concurrent-ruby (~> 1.0) 21 21 iso-639 (0.3.8) 22 22 csv 23 - json (2.10.1) 23 + json (2.10.2) 24 24 mini_portile2 (2.8.8) 25 25 mustermann (2.0.2) 26 26 ruby2_keywords (~> 0.0.1) 27 - nokogiri (1.18.3) 27 + nokogiri (1.18.5) 28 28 mini_portile2 (~> 2.8.2) 29 29 racc (~> 1.4) 30 - nokogiri (1.18.3-aarch64-linux-gnu) 31 - racc (~> 1.4) 32 - nokogiri (1.18.3-aarch64-linux-musl) 33 - racc (~> 1.4) 34 - nokogiri (1.18.3-arm-linux-gnu) 35 - racc (~> 1.4) 36 - nokogiri (1.18.3-arm-linux-musl) 37 - racc (~> 1.4) 38 - nokogiri (1.18.3-arm64-darwin) 39 - racc (~> 1.4) 40 - nokogiri (1.18.3-x86_64-darwin) 41 - racc (~> 1.4) 42 - nokogiri (1.18.3-x86_64-linux-gnu) 43 - racc (~> 1.4) 44 - nokogiri (1.18.3-x86_64-linux-musl) 45 - racc (~> 1.4) 46 30 ostruct (0.6.1) 47 31 parslet (2.0.0) 32 + pdfkit (0.8.7.3) 48 33 public_suffix (6.0.1) 49 34 racc (1.8.1) 50 35 rack (2.2.13) ··· 53 38 rack-protection (2.2.4) 54 39 rack 55 40 redcarpet (3.6.1) 41 + rexml (3.4.1) 56 42 ruby-dbus (0.14.1) 57 43 ruby2_keywords (0.0.5) 58 44 showoff (0.20.4) ··· 86 72 tilt (2.6.0) 87 73 88 74 PLATFORMS 89 - aarch64-linux-gnu 90 - aarch64-linux-musl 91 - arm-linux-gnu 92 - arm-linux-musl 93 - arm64-darwin 94 75 ruby 95 - x86_64-darwin 96 - x86_64-linux-gnu 97 - x86_64-linux-musl 98 76 99 77 DEPENDENCIES 78 + pdfkit (~> 0.8.7) 79 + rexml (~> 3.4) 100 80 showoff 101 81 102 82 BUNDLED WITH
+36 -4
pkgs/servers/http/showoff/gemset.nix
··· 55 55 "addressable" 56 56 "eventmachine" 57 57 ]; 58 + groups = [ "default" ]; 59 + platforms = [ ]; 58 60 source = { 59 61 remotes = [ "https://rubygems.org" ]; 60 62 sha256 = "0xkb1rc6dd3y5s7qsp4wqrri3n9gwsbvnwwv6xwgp241jxdpp4iq"; ··· 63 65 version = "0.3.8"; 64 66 }; 65 67 eventmachine = { 68 + groups = [ "default" ]; 69 + platforms = [ ]; 66 70 source = { 67 71 remotes = [ "https://rubygems.org" ]; 68 72 sha256 = "0wh9aqb0skz80fhfn66lbpr4f86ya2z5rx6gm5xlfhd05bj1ch4r"; ··· 72 76 }; 73 77 fidget = { 74 78 dependencies = [ "ruby-dbus" ]; 79 + groups = [ "default" ]; 80 + platforms = [ ]; 75 81 source = { 76 82 remotes = [ "https://rubygems.org" ]; 77 83 sha256 = "04g2846wjlb8ms5041lv37aqs4jzsziwv58bxg7yzc61pdvi4ksb"; ··· 91 97 version = "2.22.2"; 92 98 }; 93 99 htmlentities = { 100 + groups = [ "default" ]; 101 + platforms = [ ]; 94 102 source = { 95 103 remotes = [ "https://rubygems.org" ]; 96 104 sha256 = "1nkklqsn8ir8wizzlakncfv42i32wc0w9hxp00hvdlgjr7376nhj"; ··· 125 133 platforms = [ ]; 126 134 source = { 127 135 remotes = [ "https://rubygems.org" ]; 128 - sha256 = "1p4l5ycdxfsr8b51gnvlvhq6s21vmx9z4x617003zbqv3bcqmj6x"; 136 + sha256 = "01lbdaizhkxmrw4y8j3wpvsryvnvzmg0pfs56c52laq2jgdfmq1l"; 129 137 type = "gem"; 130 138 }; 131 - version = "2.10.1"; 139 + version = "2.10.2"; 132 140 }; 133 141 mini_portile2 = { 134 142 groups = [ "default" ]; ··· 160 168 platforms = [ ]; 161 169 source = { 162 170 remotes = [ "https://rubygems.org" ]; 163 - sha256 = "0npx535cs8qc33n0lpbbwl0p9fi3a5bczn6ayqhxvknh9yqw77vb"; 171 + sha256 = "1p1nl5gqs56wlv2gwzdj0px3dw018ywpkg14a4s23b0qjkdgi9n8"; 164 172 type = "gem"; 165 173 }; 166 - version = "1.18.3"; 174 + version = "1.18.5"; 167 175 }; 168 176 ostruct = { 169 177 groups = [ "default" ]; ··· 185 193 }; 186 194 version = "2.0.0"; 187 195 }; 196 + pdfkit = { 197 + groups = [ "default" ]; 198 + platforms = [ ]; 199 + source = { 200 + remotes = [ "https://rubygems.org" ]; 201 + sha256 = "1nmp0csvkh99x1ii6pq29j8424g40lfb7k9ajfkkpzgwygpfk6fd"; 202 + type = "gem"; 203 + }; 204 + version = "0.8.7.3"; 205 + }; 188 206 public_suffix = { 189 207 groups = [ "default" ]; 190 208 platforms = [ ]; ··· 247 265 }; 248 266 version = "3.6.1"; 249 267 }; 268 + rexml = { 269 + groups = [ "default" ]; 270 + platforms = [ ]; 271 + source = { 272 + remotes = [ "https://rubygems.org" ]; 273 + sha256 = "1jmbf6lf7pcyacpb939xjjpn1f84c3nw83dy3p1lwjx0l2ljfif7"; 274 + type = "gem"; 275 + }; 276 + version = "3.4.1"; 277 + }; 250 278 ruby-dbus = { 279 + groups = [ "default" ]; 280 + platforms = [ ]; 251 281 source = { 252 282 remotes = [ "https://rubygems.org" ]; 253 283 sha256 = "16lsqdwas6ngyyvq51l7lynj5ayis17zm5hpsg5x3m3n6r5k2gv4"; ··· 313 343 "eventmachine" 314 344 "thin" 315 345 ]; 346 + groups = [ "default" ]; 347 + platforms = [ ]; 316 348 source = { 317 349 remotes = [ "https://rubygems.org" ]; 318 350 sha256 = "0as52mfw34z3ba6qjab009h2rdn0za0iwrc42kw948hbb8qzcm5m";
+2
pkgs/tools/admin/fastlane/Gemfile
··· 1 1 source 'https://rubygems.org' 2 2 gem 'fastlane' 3 + 4 + gem "abbrev", "~> 0.1.2"
+53 -46
pkgs/tools/admin/fastlane/Gemfile.lock
··· 5 5 base64 6 6 nkf 7 7 rexml 8 - addressable (2.8.6) 9 - public_suffix (>= 2.0.2, < 6.0) 8 + addressable (2.8.7) 9 + public_suffix (>= 2.0.2, < 7.0) 10 10 artifactory (3.0.17) 11 11 atomos (0.1.3) 12 - aws-eventstream (1.3.0) 13 - aws-partitions (1.909.0) 14 - aws-sdk-core (3.191.6) 12 + aws-eventstream (1.3.2) 13 + aws-partitions (1.1068.0) 14 + aws-sdk-core (3.220.1) 15 15 aws-eventstream (~> 1, >= 1.3.0) 16 - aws-partitions (~> 1, >= 1.651.0) 17 - aws-sigv4 (~> 1.8) 16 + aws-partitions (~> 1, >= 1.992.0) 17 + aws-sigv4 (~> 1.9) 18 + base64 18 19 jmespath (~> 1, >= 1.6.1) 19 - aws-sdk-kms (1.78.0) 20 - aws-sdk-core (~> 3, >= 3.191.0) 21 - aws-sigv4 (~> 1.1) 22 - aws-sdk-s3 (1.146.1) 23 - aws-sdk-core (~> 3, >= 3.191.0) 20 + aws-sdk-kms (1.99.0) 21 + aws-sdk-core (~> 3, >= 3.216.0) 22 + aws-sigv4 (~> 1.5) 23 + aws-sdk-s3 (1.182.0) 24 + aws-sdk-core (~> 3, >= 3.216.0) 24 25 aws-sdk-kms (~> 1) 25 - aws-sigv4 (~> 1.8) 26 - aws-sigv4 (1.8.0) 26 + aws-sigv4 (~> 1.5) 27 + aws-sigv4 (1.11.0) 27 28 aws-eventstream (~> 1, >= 1.0.2) 28 29 babosa (1.0.4) 29 30 base64 (0.2.0) ··· 33 34 commander (4.6.0) 34 35 highline (~> 2.0.0) 35 36 declarative (0.0.20) 36 - digest-crc (0.6.5) 37 + digest-crc (0.7.0) 37 38 rake (>= 12.0.0, < 14.0.0) 38 39 domain_name (0.6.20240107) 39 40 dotenv (2.8.1) 40 41 emoji_regex (3.2.3) 41 - excon (0.110.0) 42 - faraday (1.10.3) 42 + excon (0.112.0) 43 + faraday (1.10.4) 43 44 faraday-em_http (~> 1.0) 44 45 faraday-em_synchrony (~> 1.0) 45 46 faraday-excon (~> 1.1) ··· 58 59 faraday-em_synchrony (1.0.0) 59 60 faraday-excon (1.1.0) 60 61 faraday-httpclient (1.0.1) 61 - faraday-multipart (1.0.4) 62 - multipart-post (~> 2) 63 - faraday-net_http (1.0.1) 62 + faraday-multipart (1.1.0) 63 + multipart-post (~> 2.0) 64 + faraday-net_http (1.0.2) 64 65 faraday-net_http_persistent (1.2.0) 65 66 faraday-patron (1.0.0) 66 67 faraday-rack (1.0.0) 67 68 faraday-retry (1.0.3) 68 - faraday_middleware (1.2.0) 69 + faraday_middleware (1.2.1) 69 70 faraday (~> 1.0) 70 - fastimage (2.3.1) 71 - fastlane (2.220.0) 71 + fastimage (2.4.0) 72 + fastlane (2.227.0) 72 73 CFPropertyList (>= 2.3, < 4.0.0) 73 74 addressable (>= 2.8, < 3.0.0) 74 75 artifactory (~> 3.0) ··· 84 85 faraday-cookie_jar (~> 0.0.6) 85 86 faraday_middleware (~> 1.0) 86 87 fastimage (>= 2.1.0, < 3.0.0) 88 + fastlane-sirp (>= 1.0.0) 87 89 gh_inspector (>= 1.1.2, < 2.0.0) 88 90 google-apis-androidpublisher_v3 (~> 0.3) 89 91 google-apis-playcustomapp_v1 (~> 0.1) ··· 107 109 tty-spinner (>= 0.8.0, < 1.0.0) 108 110 word_wrap (~> 1.0.0) 109 111 xcodeproj (>= 1.13.0, < 2.0.0) 110 - xcpretty (~> 0.3.0) 112 + xcpretty (~> 0.4.0) 111 113 xcpretty-travis-formatter (>= 0.0.3, < 2.0.0) 114 + fastlane-sirp (1.0.0) 115 + sysrandom (~> 1.0) 112 116 gh_inspector (1.1.3) 113 117 google-apis-androidpublisher_v3 (0.54.0) 114 118 google-apis-core (>= 0.11.0, < 2.a) ··· 126 130 google-apis-core (>= 0.11.0, < 2.a) 127 131 google-apis-storage_v1 (0.31.0) 128 132 google-apis-core (>= 0.11.0, < 2.a) 129 - google-cloud-core (1.7.0) 133 + google-cloud-core (1.8.0) 130 134 google-cloud-env (>= 1.0, < 3.a) 131 135 google-cloud-errors (~> 1.0) 132 136 google-cloud-env (1.6.0) 133 137 faraday (>= 0.17.3, < 3.0) 134 - google-cloud-errors (1.4.0) 138 + google-cloud-errors (1.5.0) 135 139 google-cloud-storage (1.47.0) 136 140 addressable (~> 2.8) 137 141 digest-crc (~> 0.4) ··· 147 151 os (>= 0.9, < 2.0) 148 152 signet (>= 0.16, < 2.a) 149 153 highline (2.0.3) 150 - http-cookie (1.0.5) 154 + http-cookie (1.0.8) 151 155 domain_name (~> 0.5) 152 - httpclient (2.8.3) 156 + httpclient (2.9.0) 157 + mutex_m 153 158 jmespath (1.6.2) 154 - json (2.7.2) 155 - jwt (2.8.1) 159 + json (2.10.2) 160 + jwt (2.10.1) 156 161 base64 157 - mini_magick (4.12.0) 162 + mini_magick (4.13.2) 158 163 mini_mime (1.1.5) 159 164 multi_json (1.15.0) 160 - multipart-post (2.4.0) 161 - nanaimo (0.3.0) 165 + multipart-post (2.4.1) 166 + mutex_m (0.3.0) 167 + nanaimo (0.4.0) 162 168 naturally (2.2.1) 163 169 nkf (0.2.0) 164 - optparse (0.4.0) 170 + optparse (0.6.0) 165 171 os (1.1.4) 166 - plist (3.7.1) 167 - public_suffix (5.0.5) 172 + plist (3.7.2) 173 + public_suffix (6.0.1) 168 174 rake (13.2.1) 169 175 representable (3.2.0) 170 176 declarative (< 0.1.0) 171 177 trailblazer-option (>= 0.1.1, < 0.2.0) 172 178 uber (< 0.2.0) 173 179 retriable (3.1.2) 174 - rexml (3.2.6) 175 - rouge (2.0.7) 180 + rexml (3.4.1) 181 + rouge (3.28.0) 176 182 ruby2_keywords (0.0.5) 177 - rubyzip (2.3.2) 183 + rubyzip (2.4.1) 178 184 security (0.1.5) 179 185 signet (0.19.0) 180 186 addressable (~> 2.8) ··· 184 190 simctl (1.6.10) 185 191 CFPropertyList 186 192 naturally 193 + sysrandom (1.0.5) 187 194 terminal-notifier (2.0.0) 188 195 terminal-table (3.0.2) 189 196 unicode-display_width (>= 1.1.1, < 3) ··· 193 200 tty-spinner (0.9.3) 194 201 tty-cursor (~> 0.7) 195 202 uber (0.1.0) 196 - unicode-display_width (2.5.0) 203 + unicode-display_width (2.6.0) 197 204 word_wrap (1.0.0) 198 - xcodeproj (1.24.0) 205 + xcodeproj (1.27.0) 199 206 CFPropertyList (>= 2.3.3, < 4.0) 200 207 atomos (~> 0.1.3) 201 208 claide (>= 1.0.2, < 2.0) 202 209 colored2 (~> 3.1) 203 - nanaimo (~> 0.3.0) 204 - rexml (~> 3.2.4) 205 - xcpretty (0.3.0) 206 - rouge (~> 2.0.7) 210 + nanaimo (~> 0.4.0) 211 + rexml (>= 3.3.6, < 4.0) 212 + xcpretty (0.4.0) 213 + rouge (~> 3.28.0) 207 214 xcpretty-travis-formatter (1.0.1) 208 215 xcpretty (~> 0.2, >= 0.0.7) 209 216 ··· 214 221 fastlane 215 222 216 223 BUNDLED WITH 217 - 2.5.6 224 + 2.6.2
+100 -66
pkgs/tools/admin/fastlane/gemset.nix
··· 5 5 platforms = [ ]; 6 6 source = { 7 7 remotes = [ "https://rubygems.org" ]; 8 - sha256 = "0irbdwkkjwzajq1ip6ba46q49sxnrl2cw7ddkdhsfhb6aprnm3vr"; 8 + sha256 = "0cl2qpvwiffym62z991ynks7imsm87qmgxf0yfsmlwzkgi9qcaa6"; 9 9 type = "gem"; 10 10 }; 11 - version = "2.8.6"; 11 + version = "2.8.7"; 12 12 }; 13 13 artifactory = { 14 14 groups = [ "default" ]; ··· 35 35 platforms = [ ]; 36 36 source = { 37 37 remotes = [ "https://rubygems.org" ]; 38 - sha256 = "0gvdg4yx4p9av2glmp7vsxhs0n8fj1ga9kq2xdb8f95j7b04qhzi"; 38 + sha256 = "1mvjjn8vh1c3nhibmjj9qcwxagj6m9yy961wblfqdmvhr9aklb3y"; 39 39 type = "gem"; 40 40 }; 41 - version = "1.3.0"; 41 + version = "1.3.2"; 42 42 }; 43 43 aws-partitions = { 44 44 groups = [ "default" ]; 45 45 platforms = [ ]; 46 46 source = { 47 47 remotes = [ "https://rubygems.org" ]; 48 - sha256 = "00iknq94smbskgmxqmlxlcgpq5famd968l12nvv8bxi7gk1hagsk"; 48 + sha256 = "0lmnx4sa9wm9ffqsjbybxzlgz6h4clf96s694sdn2lz1qcx0fq2i"; 49 49 type = "gem"; 50 50 }; 51 - version = "1.909.0"; 51 + version = "1.1068.0"; 52 52 }; 53 53 aws-sdk-core = { 54 54 dependencies = [ 55 55 "aws-eventstream" 56 56 "aws-partitions" 57 57 "aws-sigv4" 58 + "base64" 58 59 "jmespath" 59 60 ]; 60 61 groups = [ "default" ]; 61 62 platforms = [ ]; 62 63 source = { 63 64 remotes = [ "https://rubygems.org" ]; 64 - sha256 = "08h9apxdn2aflkg751j4i56ks4750znfbj56w4zlxf4jk7jxkbyk"; 65 + sha256 = "0cjdqmy5hjbgzc0iac1i143va76qgp7jc7hg1aviy1n8cgywq44y"; 65 66 type = "gem"; 66 67 }; 67 - version = "3.191.6"; 68 + version = "3.220.1"; 68 69 }; 69 70 aws-sdk-kms = { 70 71 dependencies = [ ··· 75 76 platforms = [ ]; 76 77 source = { 77 78 remotes = [ "https://rubygems.org" ]; 78 - sha256 = "0fbp2vw5qnyiya63hlmwiqkbh30lipyqplancmhm84ad7i98ambb"; 79 + sha256 = "1a3mh89kfh6flqxw48wfv9wfwkj2zxazw096mqm56wnnzz1jyads"; 79 80 type = "gem"; 80 81 }; 81 - version = "1.78.0"; 82 + version = "1.99.0"; 82 83 }; 83 84 aws-sdk-s3 = { 84 85 dependencies = [ ··· 90 91 platforms = [ ]; 91 92 source = { 92 93 remotes = [ "https://rubygems.org" ]; 93 - sha256 = "1al80phz4x9wwfnr07q1l8h5f0qxgfrrycbg8jvznhxm3zhrakrq"; 94 + sha256 = "03a55dbihv6xvgfwhx0f35rwc7q3rr0555vfpxlwpdjw75wkbz6h"; 94 95 type = "gem"; 95 96 }; 96 - version = "1.146.1"; 97 + version = "1.182.0"; 97 98 }; 98 99 aws-sigv4 = { 99 100 dependencies = [ "aws-eventstream" ]; ··· 101 102 platforms = [ ]; 102 103 source = { 103 104 remotes = [ "https://rubygems.org" ]; 104 - sha256 = "1g3w27wzjy4si6kp49w10as6ml6g6zl3xrfqs5ikpfciidv9kpc4"; 105 + sha256 = "1nx1il781qg58nwjkkdn9fw741cjjnixfsh389234qm8j5lpka2h"; 105 106 type = "gem"; 106 107 }; 107 - version = "1.8.0"; 108 + version = "1.11.0"; 108 109 }; 109 110 babosa = { 110 111 groups = [ "default" ]; ··· 198 199 platforms = [ ]; 199 200 source = { 200 201 remotes = [ "https://rubygems.org" ]; 201 - sha256 = "09114ndpnnyamc2q07bmpzw7kp3rbbfv7plmxcbzzi9d6prmd92w"; 202 + sha256 = "01wcsyhaadss4zzvqh12kvbq3hmkl5y4fck7pr608hd24qxc5bb4"; 202 203 type = "gem"; 203 204 }; 204 - version = "0.6.5"; 205 + version = "0.7.0"; 205 206 }; 206 207 domain_name = { 207 208 groups = [ "default" ]; ··· 238 239 platforms = [ ]; 239 240 source = { 240 241 remotes = [ "https://rubygems.org" ]; 241 - sha256 = "1m3gzvp1wqki0yh4b7761qhdy4pyr4phy429b7s9w25nrkhp4lsz"; 242 + sha256 = "1w7098hnyby5sn2315qy26as6kxlxivxlcrs714amj9g9hxaryfs"; 242 243 type = "gem"; 243 244 }; 244 - version = "0.110.0"; 245 + version = "0.112.0"; 245 246 }; 246 247 faraday = { 247 248 dependencies = [ ··· 261 262 platforms = [ ]; 262 263 source = { 263 264 remotes = [ "https://rubygems.org" ]; 264 - sha256 = "1c760q0ks4vj4wmaa7nh1dgvgqiwaw0mjr7v8cymy7i3ffgjxx90"; 265 + sha256 = "069gmdh5j90v06rbwlqvlhzhq45lxhx74mahz25xd276rm0wb153"; 265 266 type = "gem"; 266 267 }; 267 - version = "1.10.3"; 268 + version = "1.10.4"; 268 269 }; 269 270 faraday-cookie_jar = { 270 271 dependencies = [ ··· 326 327 platforms = [ ]; 327 328 source = { 328 329 remotes = [ "https://rubygems.org" ]; 329 - sha256 = "09871c4hd7s5ws1wl4gs7js1k2wlby6v947m2bbzg43pnld044lh"; 330 + sha256 = "0l87r9jg06nsh24gwwd1jdnxb1zq89ffybnxab0dd90nfcf0ysw5"; 330 331 type = "gem"; 331 332 }; 332 - version = "1.0.4"; 333 + version = "1.1.0"; 333 334 }; 334 335 faraday-net_http = { 335 336 groups = [ "default" ]; 336 337 platforms = [ ]; 337 338 source = { 338 339 remotes = [ "https://rubygems.org" ]; 339 - sha256 = "1fi8sda5hc54v1w3mqfl5yz09nhx35kglyx72w7b8xxvdr0cwi9j"; 340 + sha256 = "10n6wikd442mfm15hd6gzm0qb527161w1wwch4h5m4iclkz2x6b3"; 340 341 type = "gem"; 341 342 }; 342 - version = "1.0.1"; 343 + version = "1.0.2"; 343 344 }; 344 345 faraday-net_http_persistent = { 345 346 groups = [ "default" ]; ··· 387 388 platforms = [ ]; 388 389 source = { 389 390 remotes = [ "https://rubygems.org" ]; 390 - sha256 = "1bw8mfh4yin2xk7138rg3fhb2p5g2dlmdma88k82psah9mbmvlfy"; 391 + sha256 = "1s990pnapb3vci9c00bklqc7jjix4i2zhxn2zf1lfk46xv47hnyl"; 391 392 type = "gem"; 392 393 }; 393 - version = "1.2.0"; 394 + version = "1.2.1"; 394 395 }; 395 396 fastimage = { 396 397 groups = [ "default" ]; 397 398 platforms = [ ]; 398 399 source = { 399 400 remotes = [ "https://rubygems.org" ]; 400 - sha256 = "1sfc7svf7h1ja6zmsq9f3ps6pg0q4hymphh6rk7ipmp7ygqjkii3"; 401 + sha256 = "1s67b9n7ki3iaycypq8sh02377gjkaxadg4dq53bpgfk4xg3gkjz"; 401 402 type = "gem"; 402 403 }; 403 - version = "2.3.1"; 404 + version = "2.4.0"; 404 405 }; 405 406 fastlane = { 406 407 dependencies = [ ··· 418 419 "faraday-cookie_jar" 419 420 "faraday_middleware" 420 421 "fastimage" 422 + "fastlane-sirp" 421 423 "gh_inspector" 422 424 "google-apis-androidpublisher_v3" 423 425 "google-apis-playcustomapp_v1" ··· 448 450 platforms = [ ]; 449 451 source = { 450 452 remotes = [ "https://rubygems.org" ]; 451 - sha256 = "14ywmlipmryzdxzn4235ah67hy06wh5hf32jbs3a9j7byc2x1kx3"; 453 + sha256 = "12lqn70c3v5h2z2svn1gickyhkhny6rwnm2xfrs3gmjc6pvfrqhb"; 454 + type = "gem"; 455 + }; 456 + version = "2.227.0"; 457 + }; 458 + fastlane-sirp = { 459 + dependencies = [ "sysrandom" ]; 460 + groups = [ "default" ]; 461 + platforms = [ ]; 462 + source = { 463 + remotes = [ "https://rubygems.org" ]; 464 + sha256 = "0hg6ql3g25f96fsmwr9xlxpn8afa7wvjampnrh1fqffhphjqyiv6"; 452 465 type = "gem"; 453 466 }; 454 - version = "2.220.0"; 467 + version = "1.0.0"; 455 468 }; 456 469 gh_inspector = { 457 470 groups = [ "default" ]; ··· 535 548 platforms = [ ]; 536 549 source = { 537 550 remotes = [ "https://rubygems.org" ]; 538 - sha256 = "0dagdfx3rnk9xplnj19gqpqn41fd09xfn8lp2p75psihhnj2i03l"; 551 + sha256 = "1kw10897ardky1chwwsb8milygzcdi8qlqlhcnqwmkw9y75yswp5"; 539 552 type = "gem"; 540 553 }; 541 - version = "1.7.0"; 554 + version = "1.8.0"; 542 555 }; 543 556 google-cloud-env = { 544 557 dependencies = [ "faraday" ]; ··· 556 569 platforms = [ ]; 557 570 source = { 558 571 remotes = [ "https://rubygems.org" ]; 559 - sha256 = "056yw9cg771c1xqvw15wpdfdw9lz3m13fh5b6a3p1c9xaq7jwkhb"; 572 + sha256 = "0jvv9w8s4dqc4ncfa6c6qpdypz2wj8dmgpjd44jq2qhhij5y4sxm"; 560 573 type = "gem"; 561 574 }; 562 - version = "1.4.0"; 575 + version = "1.5.0"; 563 576 }; 564 577 google-cloud-storage = { 565 578 dependencies = [ ··· 613 626 platforms = [ ]; 614 627 source = { 615 628 remotes = [ "https://rubygems.org" ]; 616 - sha256 = "13rilvlv8kwbzqfb644qp6hrbsj82cbqmnzcvqip1p6vqx36sxbk"; 629 + sha256 = "19hsskzk5zpv14mnf07pq71hfk1fsjwfjcw616pgjjzjbi2f0kxi"; 617 630 type = "gem"; 618 631 }; 619 - version = "1.0.5"; 632 + version = "1.0.8"; 620 633 }; 621 634 httpclient = { 635 + dependencies = [ "mutex_m" ]; 622 636 groups = [ "default" ]; 623 637 platforms = [ ]; 624 638 source = { 625 639 remotes = [ "https://rubygems.org" ]; 626 - sha256 = "19mxmvghp7ki3klsxwrlwr431li7hm1lczhhj8z4qihl2acy8l99"; 640 + sha256 = "1j4qwj1nv66v3n9s4xqf64x2galvjm630bwa5xngicllwic5jr2b"; 627 641 type = "gem"; 628 642 }; 629 - version = "2.8.3"; 643 + version = "2.9.0"; 630 644 }; 631 645 jmespath = { 632 646 groups = [ "default" ]; ··· 643 657 platforms = [ ]; 644 658 source = { 645 659 remotes = [ "https://rubygems.org" ]; 646 - sha256 = "0b4qsi8gay7ncmigr0pnbxyb17y3h8kavdyhsh7nrlqwr35vb60q"; 660 + sha256 = "01lbdaizhkxmrw4y8j3wpvsryvnvzmg0pfs56c52laq2jgdfmq1l"; 647 661 type = "gem"; 648 662 }; 649 - version = "2.7.2"; 663 + version = "2.10.2"; 650 664 }; 651 665 jwt = { 652 666 dependencies = [ "base64" ]; ··· 654 668 platforms = [ ]; 655 669 source = { 656 670 remotes = [ "https://rubygems.org" ]; 657 - sha256 = "02m3vza49pb9dirwpn8vmzbcypi3fc6l3a9dh253jwm1121g7ajb"; 671 + sha256 = "1i8wmzgb5nfhvkx1f6bhdwfm7v772172imh439v3xxhkv3hllhp6"; 658 672 type = "gem"; 659 673 }; 660 - version = "2.8.1"; 674 + version = "2.10.1"; 661 675 }; 662 676 mini_magick = { 663 677 groups = [ "default" ]; 664 678 platforms = [ ]; 665 679 source = { 666 680 remotes = [ "https://rubygems.org" ]; 667 - sha256 = "0slh78f9z6n0l1i2km7m48yz7l4fjrk88sj1f4mh1wb39sl2yc37"; 681 + sha256 = "1nfxjpmka12ihbwd87d5k2hh7d2pv3aq95x0l2lh8gca1s72bmki"; 668 682 type = "gem"; 669 683 }; 670 - version = "4.12.0"; 684 + version = "4.13.2"; 671 685 }; 672 686 mini_mime = { 673 687 groups = [ "default" ]; ··· 694 708 platforms = [ ]; 695 709 source = { 696 710 remotes = [ "https://rubygems.org" ]; 697 - sha256 = "1033p35166d9p97y4vajbbvr13pmkk9zwn7sylxpmk9jrpk8ri67"; 711 + sha256 = "1a5lrlvmg2kb2dhw3lxcsv6x276bwgsxpnka1752082miqxd0wlq"; 698 712 type = "gem"; 699 713 }; 700 - version = "2.4.0"; 714 + version = "2.4.1"; 715 + }; 716 + mutex_m = { 717 + groups = [ "default" ]; 718 + platforms = [ ]; 719 + source = { 720 + remotes = [ "https://rubygems.org" ]; 721 + sha256 = "0l875dw0lk7b2ywa54l0wjcggs94vb7gs8khfw9li75n2sn09jyg"; 722 + type = "gem"; 723 + }; 724 + version = "0.3.0"; 701 725 }; 702 726 nanaimo = { 703 727 groups = [ "default" ]; 704 728 platforms = [ ]; 705 729 source = { 706 730 remotes = [ "https://rubygems.org" ]; 707 - sha256 = "0xi36h3f7nm8bc2k0b6svpda1lyank2gf872lxjbhw3h95hdrbma"; 731 + sha256 = "08q73nchv8cpk28h1sdnf5z6a862fcf4mxy1d58z25xb3dankw7s"; 708 732 type = "gem"; 709 733 }; 710 - version = "0.3.0"; 734 + version = "0.4.0"; 711 735 }; 712 736 naturally = { 713 737 groups = [ "default" ]; ··· 734 758 platforms = [ ]; 735 759 source = { 736 760 remotes = [ "https://rubygems.org" ]; 737 - sha256 = "1pmsn1g1q5fpkjrc4h1wlw6lxlqp165sdcd951xyl47n6k0az17m"; 761 + sha256 = "1306kdvq0xr333xma4452zvvvw6mx7fw20fwi6508i6dq5lh9s95"; 738 762 type = "gem"; 739 763 }; 740 - version = "0.4.0"; 764 + version = "0.6.0"; 741 765 }; 742 766 os = { 743 767 groups = [ "default" ]; ··· 754 778 platforms = [ ]; 755 779 source = { 756 780 remotes = [ "https://rubygems.org" ]; 757 - sha256 = "0b643i5b7b7galvlb2fc414ifmb78b5lsq47gnvhzl8m27dl559z"; 781 + sha256 = "0hlaf4b3d8grxm9fqbnam5gwd55wvghl0jyzjd1hc5hirhklaynk"; 758 782 type = "gem"; 759 783 }; 760 - version = "3.7.1"; 784 + version = "3.7.2"; 761 785 }; 762 786 public_suffix = { 763 787 groups = [ "default" ]; 764 788 platforms = [ ]; 765 789 source = { 766 790 remotes = [ "https://rubygems.org" ]; 767 - sha256 = "14y4vzjwf5gp0mqgs880kis0k7n2biq8i6ci6q2n315kichl1hvj"; 791 + sha256 = "0vqcw3iwby3yc6avs1vb3gfd0vcp2v7q310665dvxfswmcf4xm31"; 768 792 type = "gem"; 769 793 }; 770 - version = "5.0.5"; 794 + version = "6.0.1"; 771 795 }; 772 796 rake = { 773 797 groups = [ "default" ]; ··· 809 833 platforms = [ ]; 810 834 source = { 811 835 remotes = [ "https://rubygems.org" ]; 812 - sha256 = "05i8518ay14kjbma550mv0jm8a6di8yp5phzrd8rj44z9qnrlrp0"; 836 + sha256 = "1jmbf6lf7pcyacpb939xjjpn1f84c3nw83dy3p1lwjx0l2ljfif7"; 813 837 type = "gem"; 814 838 }; 815 - version = "3.2.6"; 839 + version = "3.4.1"; 816 840 }; 817 841 rouge = { 818 842 groups = [ "default" ]; 819 843 platforms = [ ]; 820 844 source = { 821 845 remotes = [ "https://rubygems.org" ]; 822 - sha256 = "0sfikq1q8xyqqx690iiz7ybhzx87am4w50w8f2nq36l3asw4x89d"; 846 + sha256 = "080fswzii68wnbsg7pgq55ba7p289sqjlxwp4vch0h32qy1f8v8d"; 823 847 type = "gem"; 824 848 }; 825 - version = "2.0.7"; 849 + version = "3.28.0"; 826 850 }; 827 851 ruby2_keywords = { 828 852 groups = [ "default" ]; ··· 839 863 platforms = [ ]; 840 864 source = { 841 865 remotes = [ "https://rubygems.org" ]; 842 - sha256 = "0grps9197qyxakbpw02pda59v45lfgbgiyw48i0mq9f2bn9y6mrz"; 866 + sha256 = "05an0wz87vkmqwcwyh5rjiaavydfn5f4q1lixcsqkphzvj7chxw5"; 843 867 type = "gem"; 844 868 }; 845 - version = "2.3.2"; 869 + version = "2.4.1"; 846 870 }; 847 871 security = { 848 872 groups = [ "default" ]; ··· 884 908 }; 885 909 version = "1.6.10"; 886 910 }; 911 + sysrandom = { 912 + groups = [ "default" ]; 913 + platforms = [ ]; 914 + source = { 915 + remotes = [ "https://rubygems.org" ]; 916 + sha256 = "0x8yryf6migjnkfwr8dxgx1qyzhvajgha60hr5mgfkn65qyarhas"; 917 + type = "gem"; 918 + }; 919 + version = "1.0.5"; 920 + }; 887 921 terminal-notifier = { 888 922 groups = [ "default" ]; 889 923 platforms = [ ]; ··· 961 995 platforms = [ ]; 962 996 source = { 963 997 remotes = [ "https://rubygems.org" ]; 964 - sha256 = "1d0azx233nags5jx3fqyr23qa2rhgzbhv8pxp46dgbg1mpf82xky"; 998 + sha256 = "0nkz7fadlrdbkf37m0x7sw8bnz8r355q3vwcfb9f9md6pds9h9qj"; 965 999 type = "gem"; 966 1000 }; 967 - version = "2.5.0"; 1001 + version = "2.6.0"; 968 1002 }; 969 1003 word_wrap = { 970 1004 groups = [ "default" ]; ··· 989 1023 platforms = [ ]; 990 1024 source = { 991 1025 remotes = [ "https://rubygems.org" ]; 992 - sha256 = "1wpg4n7b8571j2h8h7v2kk8pr141rgf6m8mhk221k990fissrq56"; 1026 + sha256 = "1lslz1kfb8jnd1ilgg02qx0p0y6yiq8wwk84mgg2ghh58lxsgiwc"; 993 1027 type = "gem"; 994 1028 }; 995 - version = "1.24.0"; 1029 + version = "1.27.0"; 996 1030 }; 997 1031 xcpretty = { 998 1032 dependencies = [ "rouge" ]; ··· 1000 1034 platforms = [ ]; 1001 1035 source = { 1002 1036 remotes = [ "https://rubygems.org" ]; 1003 - sha256 = "1xq47q2h5llj7b54rws4796904vnnjz7qqnacdv7wlp3gdbwrivm"; 1037 + sha256 = "1lbwk77g28jjhin3qjrh7ldfsgf7aszi9j60mp8yz10i3wyqgvqj"; 1004 1038 type = "gem"; 1005 1039 }; 1006 - version = "0.3.0"; 1040 + version = "0.4.0"; 1007 1041 }; 1008 1042 xcpretty-travis-formatter = { 1009 1043 dependencies = [ "xcpretty" ];
+3 -3
pkgs/tools/security/bundler-audit/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - bundler-audit (0.9.1) 4 + bundler-audit (0.9.2) 5 5 bundler (>= 1.2.0, < 3) 6 6 thor (~> 1.0) 7 - thor (1.2.1) 7 + thor (1.3.2) 8 8 9 9 PLATFORMS 10 10 ruby ··· 13 13 bundler-audit 14 14 15 15 BUNDLED WITH 16 - 2.3.9 16 + 2.6.2
+4 -4
pkgs/tools/security/bundler-audit/gemset.nix
··· 5 5 platforms = [ ]; 6 6 source = { 7 7 remotes = [ "https://rubygems.org" ]; 8 - sha256 = "0gdx0019vj04n1512shhdx7hwphzqmdpw4vva2k551nd47y1dixx"; 8 + sha256 = "0j0h5cgnzk0ms17ssjkzfzwz65ggrs3lsp53a1j46p4616m1s1bk"; 9 9 type = "gem"; 10 10 }; 11 - version = "0.9.1"; 11 + version = "0.9.2"; 12 12 }; 13 13 thor = { 14 14 groups = [ "default" ]; 15 15 platforms = [ ]; 16 16 source = { 17 17 remotes = [ "https://rubygems.org" ]; 18 - sha256 = "0inl77jh4ia03jw3iqm5ipr76ghal3hyjrd6r8zqsswwvi9j2xdi"; 18 + sha256 = "1nmymd86a0vb39pzj2cwv57avdrl6pl3lf5bsz58q594kqxjkw7f"; 19 19 type = "gem"; 20 20 }; 21 - version = "1.2.1"; 21 + version = "1.3.2"; 22 22 }; 23 23 }
+1 -17
pkgs/top-level/all-packages.nix
··· 1431 1431 zsnes = pkgsi686Linux.callPackage ../applications/emulators/zsnes { }; 1432 1432 zsnes2 = pkgsi686Linux.callPackage ../applications/emulators/zsnes/2.x.nix { }; 1433 1433 1434 - ### APPLICATIONS/EMULATORS/BSNES 1435 - 1436 - ### APPLICATIONS/EMULATORS/DOLPHIN-EMU 1437 - 1438 - dolphin-emu = qt6Packages.callPackage ../applications/emulators/dolphin-emu { 1439 - stdenv = if stdenv.hostPlatform.isDarwin then overrideSDK stdenv "11.0" else stdenv; 1440 - inherit (darwin.apple_sdk_11_0.frameworks) CoreBluetooth ForceFeedback IOBluetooth IOKit OpenGL VideoToolbox; 1441 - }; 1442 - 1443 - dolphin-emu-primehack = qt6.callPackage ../applications/emulators/dolphin-emu/primehack.nix { 1444 - inherit (darwin.apple_sdk.frameworks) CoreBluetooth ForceFeedback IOKit OpenGL; 1445 - }; 1446 - 1447 1434 ### APPLICATIONS/EMULATORS/RETROARCH 1448 1435 1449 1436 libretro = recurseIntoAttrs (callPackage ../applications/emulators/libretro { }); ··· 8753 8740 8754 8741 makeFontsConf = callPackage ../development/libraries/fontconfig/make-fonts-conf.nix { }; 8755 8742 8756 - makeFontsCache = let fontconfig_ = fontconfig; in {fontconfig ? fontconfig_, fontDirectories}: 8757 - callPackage ../development/libraries/fontconfig/make-fonts-cache.nix { 8758 - inherit fontconfig fontDirectories; 8759 - }; 8743 + makeFontsCache = callPackage ../development/libraries/fontconfig/make-fonts-cache.nix { }; 8760 8744 8761 8745 freenect = callPackage ../development/libraries/freenect { 8762 8746 inherit (darwin.apple_sdk.frameworks) Cocoa GLUT;
+1 -3
pkgs/top-level/python-packages.nix
··· 7911 7911 7912 7912 loguru-logging-intercept = callPackage ../development/python-modules/loguru-logging-intercept { }; 7913 7913 7914 - logutils = callPackage ../development/python-modules/logutils { 7915 - redis-server = pkgs.redis; 7916 - }; 7914 + logutils = callPackage ../development/python-modules/logutils { }; 7917 7915 7918 7916 logzero = callPackage ../development/python-modules/logzero { }; 7919 7917