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