Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
83e7490b 920fac70

+799 -567
-4
.github/CODEOWNERS
··· 58 /maintainers/scripts/db-to-md.sh @jtojnar @ryantm 59 /maintainers/scripts/doc @jtojnar @ryantm 60 61 - /doc/* @fricklerhandwerk 62 /doc/build-aux/pandoc-filters @jtojnar 63 - /doc/builders/trivial-builders.chapter.md @fricklerhandwerk 64 /doc/contributing/ @fricklerhandwerk 65 /doc/contributing/contributing-to-documentation.chapter.md @jtojnar @fricklerhandwerk 66 - /doc/stdenv @fricklerhandwerk 67 - /doc/using @fricklerhandwerk 68 69 # NixOS Internals 70 /nixos/default.nix @infinisil
··· 58 /maintainers/scripts/db-to-md.sh @jtojnar @ryantm 59 /maintainers/scripts/doc @jtojnar @ryantm 60 61 /doc/build-aux/pandoc-filters @jtojnar 62 /doc/contributing/ @fricklerhandwerk 63 /doc/contributing/contributing-to-documentation.chapter.md @jtojnar @fricklerhandwerk 64 65 # NixOS Internals 66 /nixos/default.nix @infinisil
+12
maintainers/maintainer-list.nix
··· 9390 githubId = 59375051; 9391 name = "Lucas Ransan"; 9392 }; 9393 lucasew = { 9394 email = "lucas59356@gmail.com"; 9395 github = "lucasew"; ··· 16746 email = "nix.victor@0x23.dk"; 16747 github = "vdot0x23"; 16748 githubId = 40716069; 16749 }; 16750 veehaitch = { 16751 name = "Vincent Haupert";
··· 9390 githubId = 59375051; 9391 name = "Lucas Ransan"; 9392 }; 9393 + LucaGuerra = { 9394 + email = "luca@guerra.sh"; 9395 + github = "LucaGuerra"; 9396 + githubId = 35580196; 9397 + name = "Luca Guerra"; 9398 + }; 9399 lucasew = { 9400 email = "lucas59356@gmail.com"; 9401 github = "lucasew"; ··· 16752 email = "nix.victor@0x23.dk"; 16753 github = "vdot0x23"; 16754 githubId = 40716069; 16755 + }; 16756 + vector1dev = { 16757 + name = "vector1dev"; 16758 + matrix = "@vector1dev:vector1.dev"; 16759 + github = "vector1dev"; 16760 + githubId = 127302590; 16761 }; 16762 veehaitch = { 16763 name = "Vincent Haupert";
+2
nixos/doc/manual/release-notes/rl-2311.section.md
··· 24 25 - `python3.pkgs.fetchPypi` (and `python3Packages.fetchPypi`) has been deprecated in favor of top-level `fetchPypi`. 26 27 - `etcd` has been updated to 3.5, you will want to read the [3.3 to 3.4](https://etcd.io/docs/v3.5/upgrades/upgrade_3_4/) and [3.4 to 3.5](https://etcd.io/docs/v3.5/upgrades/upgrade_3_5/) upgrade guides 28 29 - `util-linux` is now supported on Darwin and is no longer an alias to `unixtools`. Use the `unixtools.util-linux` package for access to the Apple variants of the utilities.
··· 24 25 - `python3.pkgs.fetchPypi` (and `python3Packages.fetchPypi`) has been deprecated in favor of top-level `fetchPypi`. 26 27 + - `mariadb` now defaults to `mariadb_1011` instead of `mariadb_106`, meaning the default version was upgraded from 10.6.x to 10.11.x. See the [upgrade notes](https://mariadb.com/kb/en/upgrading-from-mariadb-10-6-to-mariadb-10-11/) for potential issues. 28 + 29 - `etcd` has been updated to 3.5, you will want to read the [3.3 to 3.4](https://etcd.io/docs/v3.5/upgrades/upgrade_3_4/) and [3.4 to 3.5](https://etcd.io/docs/v3.5/upgrades/upgrade_3_5/) upgrade guides 30 31 - `util-linux` is now supported on Darwin and is no longer an alias to `unixtools`. Use the `unixtools.util-linux` package for access to the Apple variants of the utilities.
+7 -7
pkgs/applications/audio/carla/default.nix
··· 24 assert withQt -> qtbase != null; 25 assert withQt -> wrapQtAppsHook != null; 26 27 - stdenv.mkDerivation rec { 28 pname = "carla"; 29 - version = "2.5.4"; 30 31 src = fetchFromGitHub { 32 owner = "falkTX"; 33 - repo = pname; 34 - rev = "v${version}"; 35 - hash = "sha256-St0+avF9/UzQj8T1eZq5HSmxnaK9+BXSuufyX0NJYbU="; 36 }; 37 38 nativeBuildInputs = [ ··· 49 ++ lib.optional withGtk2 gtk2 50 ++ lib.optional withGtk3 gtk3; 51 52 - propagatedBuildInputs = pythonPath; 53 54 enableParallelBuilding = true; 55 ··· 100 maintainers = [ maintainers.minijackson ]; 101 platforms = platforms.linux; 102 }; 103 - }
··· 24 assert withQt -> qtbase != null; 25 assert withQt -> wrapQtAppsHook != null; 26 27 + stdenv.mkDerivation (finalAttrs: { 28 pname = "carla"; 29 + version = "2.5.5"; 30 31 src = fetchFromGitHub { 32 owner = "falkTX"; 33 + repo = finalAttrs.pname; 34 + rev = "v${finalAttrs.version}"; 35 + hash = "sha256-kXQ0dv4KrwvfxdP73zimof9XKpAz5E6hQrFOjLG4hKU="; 36 }; 37 38 nativeBuildInputs = [ ··· 49 ++ lib.optional withGtk2 gtk2 50 ++ lib.optional withGtk3 gtk3; 51 52 + propagatedBuildInputs = finalAttrs.pythonPath; 53 54 enableParallelBuilding = true; 55 ··· 100 maintainers = [ maintainers.minijackson ]; 101 platforms = platforms.linux; 102 }; 103 + })
+5 -5
pkgs/applications/audio/zrythm/default.nix
··· 76 # only available on Carla unstable as of 2023-02-24. 77 carla-unstable = carla.overrideAttrs (oldAttrs: rec { 78 pname = "carla"; 79 - version = "unstable-2023-02-24"; 80 81 src = fetchFromGitHub { 82 owner = "falkTX"; 83 repo = pname; 84 - rev = "33a142f447925f55d00532933a1f28e9745c13eb"; 85 - hash = "sha256-hQj0HlcOYfwsxG05pq/qcuKcOwDMV1ED+YdxBToBzvk="; 86 }; 87 }); 88 in stdenv.mkDerivation rec { 89 pname = "zrythm"; 90 - version = "1.0.0-beta.4.6.3"; 91 92 src = fetchFromSourcehut { 93 owner = "~alextee"; 94 repo = pname; 95 rev = "v${version}"; 96 - hash = "sha256-5GBr8N+GzbptrvP/NisBXT0dsl9vn537B4InB00/N+A="; 97 }; 98 99 nativeBuildInputs = [
··· 76 # only available on Carla unstable as of 2023-02-24. 77 carla-unstable = carla.overrideAttrs (oldAttrs: rec { 78 pname = "carla"; 79 + version = "unstable-2023-05-12"; 80 81 src = fetchFromGitHub { 82 owner = "falkTX"; 83 repo = pname; 84 + rev = "0175570f1d41285f39efe0ee32234458e0ed941c"; 85 + hash = "sha256-yfVzZV8G4AUDM8+yS9finzobpOb1PUEPgBWFhEY4nFQ="; 86 }; 87 }); 88 in stdenv.mkDerivation rec { 89 pname = "zrythm"; 90 + version = "1.0.0-beta.4.9.1"; 91 92 src = fetchFromSourcehut { 93 owner = "~alextee"; 94 repo = pname; 95 rev = "v${version}"; 96 + hash = "sha256-U3IUqNbHu20uyWfkTsLOOlUZjcUL4QdHilB3srSsebw="; 97 }; 98 99 nativeBuildInputs = [
+4
pkgs/applications/blockchains/masari/default.nix
··· 15 postPatch = '' 16 # remove vendored libraries 17 rm -r external/{miniupnpc,rapidjson} 18 ''; 19 20 nativeBuildInputs = [ cmake pkg-config git ];
··· 15 postPatch = '' 16 # remove vendored libraries 17 rm -r external/{miniupnpc,rapidjson} 18 + 19 + # include missing headers 20 + sed -i "1i #include <map>" src/device/device_default.hpp 21 + sed -i "1i #include <boost/mpl/contains.hpp>" contrib/epee/include/storages/portable_storage.h 22 ''; 23 24 nativeBuildInputs = [ cmake pkg-config git ];
+14 -12
pkgs/applications/editors/emacs/elisp-packages/manual-packages/lsp-bridge/default.nix
··· 10 , go 11 , gopls 12 , pyright 13 , tempel 14 , writeText 15 , unstableGitUpdater 16 }: 17 18 let 19 - rev = "8de85f9967fec6a8e447e5b5f3021e5e1f95b445"; 20 python = python3.withPackages (ps: with ps; [ 21 epc 22 orjson ··· 26 in 27 melpaBuild { 28 pname = "lsp-bridge"; 29 - version = "20230603.345"; # 3:45 UTC 30 31 src = fetchFromGitHub { 32 owner = "manateelazycat"; 33 repo = "lsp-bridge"; 34 inherit rev; 35 - sha256 = "sha256-08DFgZaYdlz9f9eqZuG760vpmO3D4QN9V66YqVyVsV4="; 36 }; 37 38 commit = rev; 39 40 - # Hardcode the python dependencies needed for lsp-bridge, so users 41 - # don't have to modify their global environment 42 - postPatch = '' 43 - substituteInPlace lsp-bridge.el --replace \ 44 - '(defcustom lsp-bridge-python-command (if (memq system-type '"'"'(cygwin windows-nt ms-dos)) "python.exe" "python3")' \ 45 - '(defcustom lsp-bridge-python-command "${python.interpreter}"' 46 - ''; 47 48 packageRequires = [ 49 acm ··· 51 posframe 52 ]; 53 54 - buildInputs = [ python ]; 55 - 56 checkInputs = [ 57 git 58 go 59 gopls 60 pyright 61 tempel 62 ]; 63
··· 10 , go 11 , gopls 12 , pyright 13 + , ruff 14 , tempel 15 , writeText 16 , unstableGitUpdater 17 }: 18 19 let 20 + rev = "6f93deb32ebb3799dfedd896a17a0428a9b461bb"; 21 python = python3.withPackages (ps: with ps; [ 22 epc 23 orjson ··· 27 in 28 melpaBuild { 29 pname = "lsp-bridge"; 30 + version = "20230607.135"; # 1:35 UTC 31 32 src = fetchFromGitHub { 33 owner = "manateelazycat"; 34 repo = "lsp-bridge"; 35 inherit rev; 36 + hash = "sha256-4AKKsU+yuLA9qv6mhYPpjBJ8wrbGPMuzN98JXcVPAHg="; 37 }; 38 39 commit = rev; 40 41 + patches = [ 42 + # Hardcode the python dependencies needed for lsp-bridge, so users 43 + # don't have to modify their global environment 44 + (substituteAll { 45 + src = ./hardcode-dependencies.patch; 46 + python = python.interpreter; 47 + }) 48 + ]; 49 50 packageRequires = [ 51 acm ··· 53 posframe 54 ]; 55 56 checkInputs = [ 57 git 58 go 59 gopls 60 pyright 61 + python 62 + ruff 63 tempel 64 ]; 65
+19
pkgs/applications/editors/emacs/elisp-packages/manual-packages/lsp-bridge/hardcode-dependencies.patch
···
··· 1 + diff --git a/lsp-bridge.el b/lsp-bridge.el 2 + index 3a7ff0b..ea5e496 100644 3 + --- a/lsp-bridge.el 4 + +++ b/lsp-bridge.el 5 + @@ -326,13 +326,7 @@ Setting this to nil or 0 will turn off the indicator." 6 + "Name of LSP-Bridge buffer." 7 + :type 'string) 8 + 9 + -(defcustom lsp-bridge-python-command (cond ((memq system-type '(cygwin windows-nt ms-dos)) 10 + - (if (executable-find "pypy3.exe") 11 + - "pypy3.exe" 12 + - "python3.exe")) 13 + - (t (if (executable-find "pypy3") 14 + - "pypy3" 15 + - "python3"))) 16 + +(defcustom lsp-bridge-python-command "@python@" 17 + "The Python interpreter used to run lsp_bridge.py." 18 + :type 'string) 19 +
+12
pkgs/applications/editors/vim/plugins/generated.nix
··· 10626 meta.homepage = "https://github.com/mhinz/vim-crates/"; 10627 }; 10628 10629 vim-csharp = buildVimPluginFrom2Nix { 10630 pname = "vim-csharp"; 10631 version = "2017-03-29";
··· 10626 meta.homepage = "https://github.com/mhinz/vim-crates/"; 10627 }; 10628 10629 + vim-crystal = buildVimPluginFrom2Nix { 10630 + pname = "vim-crystal"; 10631 + version = "2023-03-15"; 10632 + src = fetchFromGitHub { 10633 + owner = "vim-crystal"; 10634 + repo = "vim-crystal"; 10635 + rev = "dc21188ec8c2ee77bb81dffca02e1a29d87cfd9f"; 10636 + sha256 = "1r7nr1g471h875p97yhz29z0w9kngf7vxs8b943cvyid0cr4ysxq"; 10637 + }; 10638 + meta.homepage = "https://github.com/vim-crystal/vim-crystal/"; 10639 + }; 10640 + 10641 vim-csharp = buildVimPluginFrom2Nix { 10642 pname = "vim-csharp"; 10643 version = "2017-03-29";
+1
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 897 https://github.com/romainl/vim-cool/,, 898 https://github.com/octol/vim-cpp-enhanced-highlight/,, 899 https://github.com/mhinz/vim-crates/,, 900 https://github.com/OrangeT/vim-csharp/,, 901 https://github.com/ap/vim-css-color/,, 902 https://github.com/jjo/vim-cue/,,
··· 897 https://github.com/romainl/vim-cool/,, 898 https://github.com/octol/vim-cpp-enhanced-highlight/,, 899 https://github.com/mhinz/vim-crates/,, 900 + https://github.com/vim-crystal/vim-crystal/,HEAD, 901 https://github.com/OrangeT/vim-csharp/,, 902 https://github.com/ap/vim-css-color/,, 903 https://github.com/jjo/vim-cue/,,
+20 -11
pkgs/applications/file-managers/tuifimanager/default.nix
··· 1 - { lib, python3Packages, fetchFromGitHub }: 2 3 - python3Packages.buildPythonApplication rec { 4 - pname = "tuifimanager"; 5 - version = "2.3.4"; 6 - format = "setuptools"; 7 8 src = fetchFromGitHub { 9 - repo = pname; 10 owner = "GiorgosXou"; 11 rev = "v.${version}"; 12 - hash = "sha256-KJYPpeBALyg6Gd1GQgJbvGdJbAT47qO9FnSH7GhO4oQ="; 13 }; 14 15 postPatch = '' ··· 17 --replace "Send2Trash == 1.8.0" "Send2Trash >= 1.8.0" 18 ''; 19 20 - propagatedBuildInputs = with python3Packages; [ unicurses send2trash ]; 21 pythonImportsCheck = [ "TUIFIManager" ]; 22 - 23 - # Tests currently cause build to fail 24 - doCheck = false; 25 26 meta = with lib; { 27 description = "A cross-platform terminal-based termux-oriented file manager"; ··· 31 attempt to get more attention to the Uni-Curses project. 32 ''; 33 homepage = "https://github.com/GiorgosXou/TUIFIManager"; 34 license = licenses.gpl3Only; 35 maintainers = with maintainers; [ michaelBelsanti ]; 36 mainProgram = "tuifi";
··· 1 + { lib 2 + , python3 3 + , fetchFromGitHub 4 + }: 5 6 + python3.pkgs.buildPythonApplication rec { 7 + pname = "tuifi-manager"; 8 + version = "3.0.0"; 9 + format = "pyproject"; 10 11 src = fetchFromGitHub { 12 owner = "GiorgosXou"; 13 + repo = "TUIFIManager"; 14 rev = "v.${version}"; 15 + hash = "sha256-ahZUm+FkAaM4I6FfSa/Oej+lMux8avw8LxzzGqTpuH8="; 16 }; 17 18 postPatch = '' ··· 20 --replace "Send2Trash == 1.8.0" "Send2Trash >= 1.8.0" 21 ''; 22 23 + nativeBuildInputs = [ 24 + python3.pkgs.setuptools 25 + python3.pkgs.setuptools-scm 26 + ]; 27 + 28 + propagatedBuildInputs = with python3.pkgs; [ 29 + send2trash 30 + unicurses 31 + ]; 32 pythonImportsCheck = [ "TUIFIManager" ]; 33 34 meta = with lib; { 35 description = "A cross-platform terminal-based termux-oriented file manager"; ··· 39 attempt to get more attention to the Uni-Curses project. 40 ''; 41 homepage = "https://github.com/GiorgosXou/TUIFIManager"; 42 + changelog = "https://github.com/GiorgosXou/TUIFIManager/blob/${src.rev}/CHANGELOG.md"; 43 license = licenses.gpl3Only; 44 maintainers = with maintainers; [ michaelBelsanti ]; 45 mainProgram = "tuifi";
+2 -2
pkgs/applications/misc/spicetify-cli/default.nix
··· 2 3 buildGoModule rec { 4 pname = "spicetify-cli"; 5 - version = "2.19.0"; 6 7 src = fetchFromGitHub { 8 owner = "spicetify"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-ax1e4M+BReVjudcmR1fatMzH/zTNCPG4BWoSNJPQFts="; 12 }; 13 14 vendorHash = "sha256-g0SuXDzYjg0mGzeDuB2tQnVnDmTiL5vw0r9QWSgIs3Q=";
··· 2 3 buildGoModule rec { 4 pname = "spicetify-cli"; 5 + version = "2.20.0"; 6 7 src = fetchFromGitHub { 8 owner = "spicetify"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-6pOFDQqzxA1eHI66BHL9Yst1PtGyJzhmFveCErBA2pU="; 12 }; 13 14 vendorHash = "sha256-g0SuXDzYjg0mGzeDuB2tQnVnDmTiL5vw0r9QWSgIs3Q=";
+5 -4
pkgs/applications/misc/ttyper/default.nix
··· 1 - { fetchFromGitHub, lib, rustPlatform }: 2 3 rustPlatform.buildRustPackage rec { 4 pname = "ttyper"; 5 - version = "1.2.1"; 6 7 src = fetchFromGitHub { 8 owner = "max-niederman"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-1frm41Vbo4t1BELq0rNGb1hY7RQLt8IJaEhtyNfNNdU="; 12 }; 13 14 - cargoSha256 = "sha256-UyO8oX54qVQA7nFx6Y/cSgb33Cz3M0kFeiYqUrSbCe0="; 15 16 meta = with lib; { 17 description = "Terminal-based typing test"; 18 homepage = "https://github.com/max-niederman/ttyper"; 19 license = licenses.mit; 20 maintainers = with maintainers; [ figsoda max-niederman ]; 21 };
··· 1 + { lib, rustPlatform, fetchFromGitHub }: 2 3 rustPlatform.buildRustPackage rec { 4 pname = "ttyper"; 5 + version = "1.2.2"; 6 7 src = fetchFromGitHub { 8 owner = "max-niederman"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-5U6+16gy5s+1zDSxy6rMheZFAbpiya3uxvr21VaHDZQ="; 12 }; 13 14 + cargoHash = "sha256-O5fPV20OSEMv7Yw982ZorhN7y3NTzrprS79n2ID0LwU="; 15 16 meta = with lib; { 17 description = "Terminal-based typing test"; 18 homepage = "https://github.com/max-niederman/ttyper"; 19 + changelog = "https://github.com/max-niederman/ttyper/releases/tag/${src.rev}"; 20 license = licenses.mit; 21 maintainers = with maintainers; [ figsoda max-niederman ]; 22 };
+2 -2
pkgs/applications/networking/browsers/brave/default.nix
··· 90 91 stdenv.mkDerivation rec { 92 pname = "brave"; 93 - version = "1.52.117"; 94 95 src = fetchurl { 96 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; 97 - sha256 = "sha256-oI/KRAfPGS5WEjLmTF6CQBjXLxv4vvpFMqPmh+O51QY="; 98 }; 99 100 dontConfigure = true;
··· 90 91 stdenv.mkDerivation rec { 92 pname = "brave"; 93 + version = "1.52.122"; 94 95 src = fetchurl { 96 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; 97 + sha256 = "sha256-TX/wbsfIv1Ymk7pnn2GcurEulZbnIkiNRnvrqnRBRVw="; 98 }; 99 100 dontConfigure = true;
+29
pkgs/applications/networking/cluster/falcoctl/default.nix
···
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "falcoctl"; 5 + version = "0.5.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "falcosecurity"; 9 + repo = "falcoctl"; 10 + rev = "v${version}"; 11 + hash = "sha256-+6q7U/ipyIuoOPVo+yFuj2r3WAA2AozSqxjj4f5of68="; 12 + }; 13 + 14 + vendorHash = "sha256-12n5OZtrPSl+XUm+wsaTI5SVfJz/aGEhNQdMyEOGhkw="; 15 + 16 + 17 + ldflags = [ 18 + "-s" 19 + "-w" 20 + "-X github.com/falcosecurity/falcoctl/cmd/version.semVersion=${version}" 21 + ]; 22 + 23 + meta = with lib; { 24 + description = "Administrative tooling for Falco"; 25 + homepage = "https://github.com/falcosecurity/falcoctl"; 26 + license = licenses.asl20; 27 + maintainers = with maintainers; [ developer-guy kranurag7 LucaGuerra ]; 28 + }; 29 + }
+3 -3
pkgs/applications/networking/cluster/rke2/default.nix
··· 2 3 buildGoModule rec { 4 pname = "rke2"; 5 - version = "1.27.1+rke2r1"; 6 7 src = fetchFromGitHub { 8 owner = "rancher"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-MPhE4dkFDLMG/Zxn9UqUMmbV95wfNDJU9C5CT8Ap5iA="; 12 }; 13 14 - vendorHash = "sha256-STpM7GxLdEhe7tfa6n6jyUSQsE9D91pCBvw1n7Q9qMc="; 15 16 subPackages = [ "." ]; 17
··· 2 3 buildGoModule rec { 4 pname = "rke2"; 5 + version = "1.27.2+rke2r1"; 6 7 src = fetchFromGitHub { 8 owner = "rancher"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-jzm2tYwsomLifAfmb0w1+/FpCgtOk+O8DRmy1OgzfmE="; 12 }; 13 14 + vendorHash = "sha256-VVc1IgeR+LWEexTyIXtCcF6TtdDzsgP4U4kqArIKdU4="; 15 16 subPackages = [ "." ]; 17
+3 -3
pkgs/applications/networking/dnscontrol/default.nix
··· 2 3 buildGoModule rec { 4 pname = "dnscontrol"; 5 - version = "4.1.0"; 6 7 src = fetchFromGitHub { 8 owner = "StackExchange"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-v7ED66CQ1DHfsrOXFJDlH80xL/U9ROn7fpGxPOm2WY4="; 12 }; 13 14 - vendorHash = "sha256-4tYtqsi8b7jfd3rxr7HY6XXRVROne6mN0hLVkPZdmCs="; 15 16 subPackages = [ "." ]; 17
··· 2 3 buildGoModule rec { 4 pname = "dnscontrol"; 5 + version = "4.1.1"; 6 7 src = fetchFromGitHub { 8 owner = "StackExchange"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-gdR9Dfzvf/OR+SDFLzN5GMNyrkuqm6z7cF8QR/L+Bh8="; 12 }; 13 14 + vendorHash = "sha256-DURAWzJDkI2Q/3d6FFx+EbMFkUr6evcbtXZzkh1HG1Y="; 15 16 subPackages = [ "." ]; 17
+2 -2
pkgs/applications/networking/instant-messengers/signalbackup-tools/default.nix
··· 2 3 (if stdenv.isDarwin then darwin.apple_sdk_11_0.llvmPackages_14.stdenv else stdenv).mkDerivation rec { 4 pname = "signalbackup-tools"; 5 - version = "20230603-2"; 6 7 src = fetchFromGitHub { 8 owner = "bepaald"; 9 repo = pname; 10 rev = version; 11 - hash = "sha256-BcvC50K5yt2aoStyoJ2XZYs3hb2YnVDL3kRpU/Y23Z4="; 12 }; 13 14 postPatch = ''
··· 2 3 (if stdenv.isDarwin then darwin.apple_sdk_11_0.llvmPackages_14.stdenv else stdenv).mkDerivation rec { 4 pname = "signalbackup-tools"; 5 + version = "20230607"; 6 7 src = fetchFromGitHub { 8 owner = "bepaald"; 9 repo = pname; 10 rev = version; 11 + hash = "sha256-K38rrwTfKq2JG3jeFUV+yRNEXovf5Ucz8aSx2B8buEQ="; 12 }; 13 14 postPatch = ''
+265 -265
pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
··· 1 { 2 - version = "102.10.1"; 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/af/thunderbird-102.10.1.tar.bz2"; 5 locale = "af"; 6 arch = "linux-x86_64"; 7 - sha256 = "73b8e966520b97e26adcc038350e885ddf007da10d63cfd77f364866b13dc8e8"; 8 } 9 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/ar/thunderbird-102.10.1.tar.bz2"; 10 locale = "ar"; 11 arch = "linux-x86_64"; 12 - sha256 = "e728d573e544b2762faf8578172c315130240241751b619b1c169c53147d478b"; 13 } 14 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/ast/thunderbird-102.10.1.tar.bz2"; 15 locale = "ast"; 16 arch = "linux-x86_64"; 17 - sha256 = "58e0e20f3a972eeea13c28e3de75618fe7d6c092cc04def5967225d973d2f118"; 18 } 19 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/be/thunderbird-102.10.1.tar.bz2"; 20 locale = "be"; 21 arch = "linux-x86_64"; 22 - sha256 = "9bb22d6974e7303531a9a15cedb4ff7894e0b5617d7a476f57341cc96f2d7077"; 23 } 24 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/bg/thunderbird-102.10.1.tar.bz2"; 25 locale = "bg"; 26 arch = "linux-x86_64"; 27 - sha256 = "01fa1caaf23eeef6f0af0064baace255b64bffc37f3e5a842851d3733db4cfc2"; 28 } 29 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/br/thunderbird-102.10.1.tar.bz2"; 30 locale = "br"; 31 arch = "linux-x86_64"; 32 - sha256 = "9e75528f1e474de9173bc4458aa69518566aaabff339edfc221d7fd448fe13c7"; 33 } 34 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/ca/thunderbird-102.10.1.tar.bz2"; 35 locale = "ca"; 36 arch = "linux-x86_64"; 37 - sha256 = "aa26a313230ea3071e7339a3f40e137edb95560fb2f55686439cf216b220a40a"; 38 } 39 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/cak/thunderbird-102.10.1.tar.bz2"; 40 locale = "cak"; 41 arch = "linux-x86_64"; 42 - sha256 = "1fc586c61482f2c8da48248ca49a6c30bf4e8d5583493fd7a7784592d0eed63c"; 43 } 44 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/cs/thunderbird-102.10.1.tar.bz2"; 45 locale = "cs"; 46 arch = "linux-x86_64"; 47 - sha256 = "7a5008f7c4904a712626794f84c34afc3cd6292d4897eb83051bca3cc2486f04"; 48 } 49 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/cy/thunderbird-102.10.1.tar.bz2"; 50 locale = "cy"; 51 arch = "linux-x86_64"; 52 - sha256 = "5a28327c351651df132b2c63f8d1542f2d4e22ff142b0923d3ee550aa1e21472"; 53 } 54 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/da/thunderbird-102.10.1.tar.bz2"; 55 locale = "da"; 56 arch = "linux-x86_64"; 57 - sha256 = "a74e2a4e7aa358361ad086633eb56a4008f0100eba023bdfdc4973c574dd86b3"; 58 } 59 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/de/thunderbird-102.10.1.tar.bz2"; 60 locale = "de"; 61 arch = "linux-x86_64"; 62 - sha256 = "5c8ddca14e6ca40da03f73c36d6db9c55c68b5891c3331577b8e351e8af1b931"; 63 } 64 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/dsb/thunderbird-102.10.1.tar.bz2"; 65 locale = "dsb"; 66 arch = "linux-x86_64"; 67 - sha256 = "dcac4da43fcdd76b3d9c59a7986837edb0b1332ab5d3622f197f570dd80725ac"; 68 } 69 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/el/thunderbird-102.10.1.tar.bz2"; 70 locale = "el"; 71 arch = "linux-x86_64"; 72 - sha256 = "8b54249738c6151405d8c14e06fb963cb0e198a722c6cbb6f420a9398172920b"; 73 } 74 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/en-CA/thunderbird-102.10.1.tar.bz2"; 75 locale = "en-CA"; 76 arch = "linux-x86_64"; 77 - sha256 = "00d6fce0e2484f91d1e1d3af6a653c2a5eb91d6fcae1d4f18d9f190945d5990d"; 78 } 79 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/en-GB/thunderbird-102.10.1.tar.bz2"; 80 locale = "en-GB"; 81 arch = "linux-x86_64"; 82 - sha256 = "b6dfa72c24149f1fbef0ae8d901dd00c7bb4b2e1506383b887f72e86748e2f88"; 83 } 84 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/en-US/thunderbird-102.10.1.tar.bz2"; 85 locale = "en-US"; 86 arch = "linux-x86_64"; 87 - sha256 = "3a35d01b7be6d39edd0a5d90e1f3d52c9f0bc16b9a63033e9a54c12c6f4b82c3"; 88 } 89 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/es-AR/thunderbird-102.10.1.tar.bz2"; 90 locale = "es-AR"; 91 arch = "linux-x86_64"; 92 - sha256 = "0f60dc0787afd30418e93de5deac5438a66b4061a5e364029d99f4197aa73d2f"; 93 } 94 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/es-ES/thunderbird-102.10.1.tar.bz2"; 95 locale = "es-ES"; 96 arch = "linux-x86_64"; 97 - sha256 = "e916cc49fa5d7475ecd9e4af4278a2afdde86ca373574b691706208d7f47d343"; 98 } 99 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/es-MX/thunderbird-102.10.1.tar.bz2"; 100 locale = "es-MX"; 101 arch = "linux-x86_64"; 102 - sha256 = "a30cc1019a408796951d0b0782eb2c0243a2cb3d4d8c824c19694f339de36c97"; 103 } 104 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/et/thunderbird-102.10.1.tar.bz2"; 105 locale = "et"; 106 arch = "linux-x86_64"; 107 - sha256 = "d7acbe83a3f8af90ce852e6e44774a4aee0a91f9aa06f34a2bf06b20c76d16dc"; 108 } 109 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/eu/thunderbird-102.10.1.tar.bz2"; 110 locale = "eu"; 111 arch = "linux-x86_64"; 112 - sha256 = "ae2887329c145ec9a3acc4a6af0f21f7373e4b90934485bfa8ddfa0df8361f34"; 113 } 114 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/fi/thunderbird-102.10.1.tar.bz2"; 115 locale = "fi"; 116 arch = "linux-x86_64"; 117 - sha256 = "2ba1f5dc9a5a54f50cce007956df06582bde0b701ba442673e98a8209f78a44f"; 118 } 119 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/fr/thunderbird-102.10.1.tar.bz2"; 120 locale = "fr"; 121 arch = "linux-x86_64"; 122 - sha256 = "43fbfab62341e5eea34c55ae614cdadb8cc2e5b1f37457df553fb3c300498824"; 123 } 124 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/fy-NL/thunderbird-102.10.1.tar.bz2"; 125 locale = "fy-NL"; 126 arch = "linux-x86_64"; 127 - sha256 = "d730bdd17f06f0380327aaf85bf9d3024f12a4c5eccb4c195a713711ba8e459a"; 128 } 129 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/ga-IE/thunderbird-102.10.1.tar.bz2"; 130 locale = "ga-IE"; 131 arch = "linux-x86_64"; 132 - sha256 = "b3a58769fee8c92d09534db47ffde7fb9f8bbfe70f3e380258f8648768a0a4bf"; 133 } 134 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/gd/thunderbird-102.10.1.tar.bz2"; 135 locale = "gd"; 136 arch = "linux-x86_64"; 137 - sha256 = "e14c12b3ac06348aad2c524ca924151bf6aeefd3c8f2f715c9d6fd75d99283eb"; 138 } 139 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/gl/thunderbird-102.10.1.tar.bz2"; 140 locale = "gl"; 141 arch = "linux-x86_64"; 142 - sha256 = "135f1eb01ac3659e0a0e1da31bbddfff3437a9946507f10351d74bf31be4b7fc"; 143 } 144 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/he/thunderbird-102.10.1.tar.bz2"; 145 locale = "he"; 146 arch = "linux-x86_64"; 147 - sha256 = "a1dc1732ca55f396f0e2721f0108264da3bc297ab8157c933314ab3fa92ac239"; 148 } 149 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/hr/thunderbird-102.10.1.tar.bz2"; 150 locale = "hr"; 151 arch = "linux-x86_64"; 152 - sha256 = "936557484d6d5c2a34a1c50ab9456068c065a9b14b73f8061118616eaa9bd3e7"; 153 } 154 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/hsb/thunderbird-102.10.1.tar.bz2"; 155 locale = "hsb"; 156 arch = "linux-x86_64"; 157 - sha256 = "f64f7ef0245b394b9afb79dd63da0d80c74871a72ac9c5b067c5294b40eea385"; 158 } 159 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/hu/thunderbird-102.10.1.tar.bz2"; 160 locale = "hu"; 161 arch = "linux-x86_64"; 162 - sha256 = "a47c42bf77983ebd10b484db449a18ce5b0e308f2d30338279477b5da9619000"; 163 } 164 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/hy-AM/thunderbird-102.10.1.tar.bz2"; 165 locale = "hy-AM"; 166 arch = "linux-x86_64"; 167 - sha256 = "ebf1a8a54498ea2b112098b3147db75f73c6eda397e7d79f21ca9409073d1361"; 168 } 169 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/id/thunderbird-102.10.1.tar.bz2"; 170 locale = "id"; 171 arch = "linux-x86_64"; 172 - sha256 = "a36a381f13a907bd6de6aef59af58cb2f6fb8a21213378fd1b1e8b20fff379f5"; 173 } 174 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/is/thunderbird-102.10.1.tar.bz2"; 175 locale = "is"; 176 arch = "linux-x86_64"; 177 - sha256 = "0793a1ef38a207693ebe8f4f0dc029e603259c76f1354adb8e33d30239ac57d1"; 178 } 179 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/it/thunderbird-102.10.1.tar.bz2"; 180 locale = "it"; 181 arch = "linux-x86_64"; 182 - sha256 = "ca1a1b0e68bcf00864a5d12d3c9d6795484c25888d32f1c39b0da47d597806a5"; 183 } 184 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/ja/thunderbird-102.10.1.tar.bz2"; 185 locale = "ja"; 186 arch = "linux-x86_64"; 187 - sha256 = "187c01a6ac71eb80d0a377511736b4ffdd38a5a267703c037c229a44c23c3a3a"; 188 } 189 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/ka/thunderbird-102.10.1.tar.bz2"; 190 locale = "ka"; 191 arch = "linux-x86_64"; 192 - sha256 = "512c309f9d358bb2ab372a0f4dbec95e3d86d0a1a319782992d41e3dc44d3874"; 193 } 194 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/kab/thunderbird-102.10.1.tar.bz2"; 195 locale = "kab"; 196 arch = "linux-x86_64"; 197 - sha256 = "47608bcb311b0c18822746cb391a4b187ddaf4173d591b2b486245e24ded28f9"; 198 } 199 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/kk/thunderbird-102.10.1.tar.bz2"; 200 locale = "kk"; 201 arch = "linux-x86_64"; 202 - sha256 = "84f2ab70467ad2dd1271516abdefc400bfdd2b8b89ab239baf4d1493b02f574f"; 203 } 204 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/ko/thunderbird-102.10.1.tar.bz2"; 205 locale = "ko"; 206 arch = "linux-x86_64"; 207 - sha256 = "3f1db229a170b4d958e56cf9cc2933dfe0b514e2bda0e8d5e57fadf48e76e45f"; 208 } 209 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/lt/thunderbird-102.10.1.tar.bz2"; 210 locale = "lt"; 211 arch = "linux-x86_64"; 212 - sha256 = "56e940239008b1bc3a75b37771490e863a6426187a3057402b69e03258c4fbfa"; 213 } 214 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/lv/thunderbird-102.10.1.tar.bz2"; 215 locale = "lv"; 216 arch = "linux-x86_64"; 217 - sha256 = "2c5b8617c13ab4967b3cec469b15f41ca1ec7c8ea14771743c98ec25e51a62f1"; 218 } 219 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/ms/thunderbird-102.10.1.tar.bz2"; 220 locale = "ms"; 221 arch = "linux-x86_64"; 222 - sha256 = "969ae6554b0185f8d7ed718df3a32d023d25ef9249e92e419ae6d33a7a4c0d9b"; 223 } 224 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/nb-NO/thunderbird-102.10.1.tar.bz2"; 225 locale = "nb-NO"; 226 arch = "linux-x86_64"; 227 - sha256 = "c277f0ae932513604a01ddf5a13a0da4ba18792de0b70d5c4432c52b0668ee22"; 228 } 229 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/nl/thunderbird-102.10.1.tar.bz2"; 230 locale = "nl"; 231 arch = "linux-x86_64"; 232 - sha256 = "bca0b266e0f6b71ba37e623d806a9454d605b7aa1c518cef2faf095a686794c3"; 233 } 234 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/nn-NO/thunderbird-102.10.1.tar.bz2"; 235 locale = "nn-NO"; 236 arch = "linux-x86_64"; 237 - sha256 = "57b30209d3a73715dea2420723045f2d7c582cb1aabcfbfa2a5f43aee49c0f95"; 238 } 239 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/pa-IN/thunderbird-102.10.1.tar.bz2"; 240 locale = "pa-IN"; 241 arch = "linux-x86_64"; 242 - sha256 = "52a5a27b8f21c3b1c3057a149cf36364eb6dc147c20ba49b6429bac1cc21b56b"; 243 } 244 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/pl/thunderbird-102.10.1.tar.bz2"; 245 locale = "pl"; 246 arch = "linux-x86_64"; 247 - sha256 = "60f462102532129e4f9f222694c4bbd0e34bd667cc59655d3642fdd3babbcbee"; 248 } 249 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/pt-BR/thunderbird-102.10.1.tar.bz2"; 250 locale = "pt-BR"; 251 arch = "linux-x86_64"; 252 - sha256 = "ef9a48719216f05c6501f83772dbfec78339784d6171c742ee860a2f4733346b"; 253 } 254 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/pt-PT/thunderbird-102.10.1.tar.bz2"; 255 locale = "pt-PT"; 256 arch = "linux-x86_64"; 257 - sha256 = "fee818a3faae6080e6afced1fa8d620c634db3a93050f855d8f75e1af5a47eb3"; 258 } 259 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/rm/thunderbird-102.10.1.tar.bz2"; 260 locale = "rm"; 261 arch = "linux-x86_64"; 262 - sha256 = "f589be258081d07f7478a14df9b14587e3c63f9582c3bac2a30da4e510023353"; 263 } 264 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/ro/thunderbird-102.10.1.tar.bz2"; 265 locale = "ro"; 266 arch = "linux-x86_64"; 267 - sha256 = "2158080414c49ffc93a020693b8c43eff9f16e238968e81227b05f0d0b781d91"; 268 } 269 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/ru/thunderbird-102.10.1.tar.bz2"; 270 locale = "ru"; 271 arch = "linux-x86_64"; 272 - sha256 = "5415271e8590c1a29dfcd26d77d056261af2a48f5c0c91116ef3a73ccdf26871"; 273 } 274 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/sk/thunderbird-102.10.1.tar.bz2"; 275 locale = "sk"; 276 arch = "linux-x86_64"; 277 - sha256 = "962dfdff730e1c882a53f6233d3b1941bb8b4ca396fd6f1cf75331c4b7e1e828"; 278 } 279 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/sl/thunderbird-102.10.1.tar.bz2"; 280 locale = "sl"; 281 arch = "linux-x86_64"; 282 - sha256 = "c3707fa653c5cced8b8c649fe2c5ea78bca17f8103a8dc05ff7ea40522745f96"; 283 } 284 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/sq/thunderbird-102.10.1.tar.bz2"; 285 locale = "sq"; 286 arch = "linux-x86_64"; 287 - sha256 = "75723c91958247709ea307178a5b4f7e4afac0e7f5535f413d36ccae61602cd7"; 288 } 289 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/sr/thunderbird-102.10.1.tar.bz2"; 290 locale = "sr"; 291 arch = "linux-x86_64"; 292 - sha256 = "2be25fe2af7d54780dbcacdac96a5b97972cd9eb2eac23faf0b5b567587bc48d"; 293 } 294 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/sv-SE/thunderbird-102.10.1.tar.bz2"; 295 locale = "sv-SE"; 296 arch = "linux-x86_64"; 297 - sha256 = "72d9890a86beca762a523052983f36bdcf7a18037ffd370ed003bbb399a9ccc5"; 298 } 299 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/th/thunderbird-102.10.1.tar.bz2"; 300 locale = "th"; 301 arch = "linux-x86_64"; 302 - sha256 = "e6a1ec941536e459aedb2605cb93c362e75c10018b53cdce2e3792dc9579bbdc"; 303 } 304 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/tr/thunderbird-102.10.1.tar.bz2"; 305 locale = "tr"; 306 arch = "linux-x86_64"; 307 - sha256 = "ed891f3c767cc71e6cdb7f1f6d532cf579f988a2c6d031bafcf0c6c24ec9a9c1"; 308 } 309 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/uk/thunderbird-102.10.1.tar.bz2"; 310 locale = "uk"; 311 arch = "linux-x86_64"; 312 - sha256 = "7b9bdc92fb4fa0790720dcdba8ac206c137f14771b2896af74f4d60e962d179f"; 313 } 314 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/uz/thunderbird-102.10.1.tar.bz2"; 315 locale = "uz"; 316 arch = "linux-x86_64"; 317 - sha256 = "a196da0b9f01be0c30d9ce86f535079bd832d28ed08a5f3fb5fcbe7e7340cca9"; 318 } 319 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/vi/thunderbird-102.10.1.tar.bz2"; 320 locale = "vi"; 321 arch = "linux-x86_64"; 322 - sha256 = "7eef87bdd38580b9ee654b1022c253c29233931b1f4b69681acfa3a12f2d10b8"; 323 } 324 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/zh-CN/thunderbird-102.10.1.tar.bz2"; 325 locale = "zh-CN"; 326 arch = "linux-x86_64"; 327 - sha256 = "688fe7d46b26de80c8a57351bf1b4cc79067c49c416e13399b518e9a075d503f"; 328 } 329 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-x86_64/zh-TW/thunderbird-102.10.1.tar.bz2"; 330 locale = "zh-TW"; 331 arch = "linux-x86_64"; 332 - sha256 = "6883580f9d46830743003a35d349d1c1c272de3f2f14a22ef4c508a35cd69657"; 333 } 334 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/af/thunderbird-102.10.1.tar.bz2"; 335 locale = "af"; 336 arch = "linux-i686"; 337 - sha256 = "bf775ea0097888a7bf1741a04add04da02bda2a16b05cc5c502e623ff32a9389"; 338 } 339 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/ar/thunderbird-102.10.1.tar.bz2"; 340 locale = "ar"; 341 arch = "linux-i686"; 342 - sha256 = "412af76b10bba00d52b62488e44ad60b9942a42910890b766d1c9698e61a7dec"; 343 } 344 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/ast/thunderbird-102.10.1.tar.bz2"; 345 locale = "ast"; 346 arch = "linux-i686"; 347 - sha256 = "c9a6692230a7a7aec204372b01491304eb31278b35ba3d116d2fdc988a0fafd8"; 348 } 349 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/be/thunderbird-102.10.1.tar.bz2"; 350 locale = "be"; 351 arch = "linux-i686"; 352 - sha256 = "5d058d519ac236d5593deb896b82c504211a273785abd601e220c8e75eff3298"; 353 } 354 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/bg/thunderbird-102.10.1.tar.bz2"; 355 locale = "bg"; 356 arch = "linux-i686"; 357 - sha256 = "829b66530eb852335cbbcf564c30a9198d1cd8a2b7aaae4e10b9d159a15c23c9"; 358 } 359 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/br/thunderbird-102.10.1.tar.bz2"; 360 locale = "br"; 361 arch = "linux-i686"; 362 - sha256 = "889002e33d36166c84eaa04a651d64e9ee758da86c4f3cb6616e4cef94a84395"; 363 } 364 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/ca/thunderbird-102.10.1.tar.bz2"; 365 locale = "ca"; 366 arch = "linux-i686"; 367 - sha256 = "425ac0812ca40eb70d8e2e35c3b4ae5a1e0cb567d5a4a1884e10c17f260d7892"; 368 } 369 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/cak/thunderbird-102.10.1.tar.bz2"; 370 locale = "cak"; 371 arch = "linux-i686"; 372 - sha256 = "cd54e16435e35098a7984de4da9ce452ada004b02d98f56f7d3dee5cb8054ac3"; 373 } 374 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/cs/thunderbird-102.10.1.tar.bz2"; 375 locale = "cs"; 376 arch = "linux-i686"; 377 - sha256 = "9a3f40a692fd15bf5ffe2f376b0c40d44c3b7105edae1bc79f6acdd180821b57"; 378 } 379 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/cy/thunderbird-102.10.1.tar.bz2"; 380 locale = "cy"; 381 arch = "linux-i686"; 382 - sha256 = "5970c037bc01d8788ff78b278a546a42e824f308ca06b759783166ebe236768f"; 383 } 384 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/da/thunderbird-102.10.1.tar.bz2"; 385 locale = "da"; 386 arch = "linux-i686"; 387 - sha256 = "5c81deb88ede5a86e77b0c6010fd6a949eb60292d8c758629819747abb297af3"; 388 } 389 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/de/thunderbird-102.10.1.tar.bz2"; 390 locale = "de"; 391 arch = "linux-i686"; 392 - sha256 = "5c5b722ba9be457ae47932e3c27ad6bd6070d19f38ee83f8429521c80ef7a4e6"; 393 } 394 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/dsb/thunderbird-102.10.1.tar.bz2"; 395 locale = "dsb"; 396 arch = "linux-i686"; 397 - sha256 = "238f73f9f587d5f8c1ae97ab841d1e60f120583e5ca5acc1c75344a00faae23e"; 398 } 399 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/el/thunderbird-102.10.1.tar.bz2"; 400 locale = "el"; 401 arch = "linux-i686"; 402 - sha256 = "249e5060b3c594768b27176557b919aa1ffe397510445487e7c956207e13fe10"; 403 } 404 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/en-CA/thunderbird-102.10.1.tar.bz2"; 405 locale = "en-CA"; 406 arch = "linux-i686"; 407 - sha256 = "d6dcd8f72c9f4edb552d608f6954996a6c77a04d34490d7a2775ce9c92fe0ae8"; 408 } 409 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/en-GB/thunderbird-102.10.1.tar.bz2"; 410 locale = "en-GB"; 411 arch = "linux-i686"; 412 - sha256 = "a12394a77f597343cd6923135c771721a71c7154daafa26175c187a02b855bce"; 413 } 414 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/en-US/thunderbird-102.10.1.tar.bz2"; 415 locale = "en-US"; 416 arch = "linux-i686"; 417 - sha256 = "482348e2847c5040b629349ebf5d2c5baacb518a81b8baa8515987dfda805814"; 418 } 419 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/es-AR/thunderbird-102.10.1.tar.bz2"; 420 locale = "es-AR"; 421 arch = "linux-i686"; 422 - sha256 = "88b787bf9371615bc42acd98728841d9cb65bf8127414fecef87238846d5b862"; 423 } 424 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/es-ES/thunderbird-102.10.1.tar.bz2"; 425 locale = "es-ES"; 426 arch = "linux-i686"; 427 - sha256 = "384d7ea5e6fc5c5786a513ae1a6ddf3b054f4ca679afe8c75de69b8d134f4c41"; 428 } 429 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/es-MX/thunderbird-102.10.1.tar.bz2"; 430 locale = "es-MX"; 431 arch = "linux-i686"; 432 - sha256 = "40d6d3fd0099f59f34a881514d2bdc6131f51902cdc8bab6735ad6ea17212fd4"; 433 } 434 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/et/thunderbird-102.10.1.tar.bz2"; 435 locale = "et"; 436 arch = "linux-i686"; 437 - sha256 = "5596450252878c4f3da032a3663ab02fd177509417ca0fb7baeb855059d0bdcf"; 438 } 439 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/eu/thunderbird-102.10.1.tar.bz2"; 440 locale = "eu"; 441 arch = "linux-i686"; 442 - sha256 = "a8d64bd83718befdfb849a32f250f12936624d7e22cdc3d2ec5da76b60ac9f74"; 443 } 444 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/fi/thunderbird-102.10.1.tar.bz2"; 445 locale = "fi"; 446 arch = "linux-i686"; 447 - sha256 = "f0547393cbb12e4c2a270c20a42fbdac6bb086fbfbfc0bacfa306f40ba63c9e6"; 448 } 449 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/fr/thunderbird-102.10.1.tar.bz2"; 450 locale = "fr"; 451 arch = "linux-i686"; 452 - sha256 = "dba0e011545a3d8f2b03f5c8c4ab46f141c6309239a250f43c9b2ff912004f85"; 453 } 454 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/fy-NL/thunderbird-102.10.1.tar.bz2"; 455 locale = "fy-NL"; 456 arch = "linux-i686"; 457 - sha256 = "3fa52cf636b57937a3fa280012677bdfcb0a9847aa5201eaea1aa39480a9656e"; 458 } 459 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/ga-IE/thunderbird-102.10.1.tar.bz2"; 460 locale = "ga-IE"; 461 arch = "linux-i686"; 462 - sha256 = "7e6c465a3ac27e56dc4db689967debc61d8672dd529ae4e309ef186a9c7c86e1"; 463 } 464 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/gd/thunderbird-102.10.1.tar.bz2"; 465 locale = "gd"; 466 arch = "linux-i686"; 467 - sha256 = "64e00180bd08fd48f332dea7dcf16044b17a1206016ac0fa31bc5cdbf9d7965e"; 468 } 469 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/gl/thunderbird-102.10.1.tar.bz2"; 470 locale = "gl"; 471 arch = "linux-i686"; 472 - sha256 = "8e9893ff4ac8de44e91d5e64a2d8b3f6aa5e328dae7c28e36b93d37ddf686c58"; 473 } 474 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/he/thunderbird-102.10.1.tar.bz2"; 475 locale = "he"; 476 arch = "linux-i686"; 477 - sha256 = "f28c19a24f23feea1fb481e9915a9ba1c71cb044f693df1c5dbc408743920f5e"; 478 } 479 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/hr/thunderbird-102.10.1.tar.bz2"; 480 locale = "hr"; 481 arch = "linux-i686"; 482 - sha256 = "0a9940f2904cb60979bf660a1d9f78cb8d94a8db25a3a18216bb7e0a52d0a923"; 483 } 484 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/hsb/thunderbird-102.10.1.tar.bz2"; 485 locale = "hsb"; 486 arch = "linux-i686"; 487 - sha256 = "0512a78927b2659f3bc174e6a0481fd87592bfd4047db0afb9c7508a255ed0c0"; 488 } 489 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/hu/thunderbird-102.10.1.tar.bz2"; 490 locale = "hu"; 491 arch = "linux-i686"; 492 - sha256 = "ddb2f8f717cdc6acd763e7ff2542c02e334b1f3be3857ef32829ee1510e63cee"; 493 } 494 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/hy-AM/thunderbird-102.10.1.tar.bz2"; 495 locale = "hy-AM"; 496 arch = "linux-i686"; 497 - sha256 = "32b45e82890e31468917dc90554c9f1de01dfce02cdcb6f0a4d4a3316a44f7e9"; 498 } 499 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/id/thunderbird-102.10.1.tar.bz2"; 500 locale = "id"; 501 arch = "linux-i686"; 502 - sha256 = "00120a049d18ed16d119198a83d96737827837f452651a1979e81b0667348a54"; 503 } 504 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/is/thunderbird-102.10.1.tar.bz2"; 505 locale = "is"; 506 arch = "linux-i686"; 507 - sha256 = "62f92271dc699c333748e4525e7f76abbabdbff31ea3e892c3971b0f8a2a80a4"; 508 } 509 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/it/thunderbird-102.10.1.tar.bz2"; 510 locale = "it"; 511 arch = "linux-i686"; 512 - sha256 = "849ccba38e5e69ca2062cf9cda7589d846572908270c0a7d261e7df9bac4fb90"; 513 } 514 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/ja/thunderbird-102.10.1.tar.bz2"; 515 locale = "ja"; 516 arch = "linux-i686"; 517 - sha256 = "2f39aa926dba6f34212a6f3640d016ed16689aa22a4161d4f59589ba14ec59d9"; 518 } 519 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/ka/thunderbird-102.10.1.tar.bz2"; 520 locale = "ka"; 521 arch = "linux-i686"; 522 - sha256 = "767f07632d1760621e0091aa75d43dc0205e4718c7c854c0f1b98c367a15de25"; 523 } 524 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/kab/thunderbird-102.10.1.tar.bz2"; 525 locale = "kab"; 526 arch = "linux-i686"; 527 - sha256 = "85a6bddbd8351f233ee60ca33a797f5fe54a3f485dee39bdb04ce8ca30f5bb41"; 528 } 529 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/kk/thunderbird-102.10.1.tar.bz2"; 530 locale = "kk"; 531 arch = "linux-i686"; 532 - sha256 = "cbc0736000b9ddeb89bda31e4c059617a7cf069103f52dba906d5e492ca2f984"; 533 } 534 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/ko/thunderbird-102.10.1.tar.bz2"; 535 locale = "ko"; 536 arch = "linux-i686"; 537 - sha256 = "19b40a87f5634cfb19652ad0f1dac84e89f15391179ee8232ec2c6a299f63ad0"; 538 } 539 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/lt/thunderbird-102.10.1.tar.bz2"; 540 locale = "lt"; 541 arch = "linux-i686"; 542 - sha256 = "9f8a47c491c5f8e9b855363261594c3ca2db2e21c70be97d0d3ca0f370d79377"; 543 } 544 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/lv/thunderbird-102.10.1.tar.bz2"; 545 locale = "lv"; 546 arch = "linux-i686"; 547 - sha256 = "3aee9d8a827c57f78f58104cf7ffc53d114aa139ef79036f604c7b5421e82050"; 548 } 549 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/ms/thunderbird-102.10.1.tar.bz2"; 550 locale = "ms"; 551 arch = "linux-i686"; 552 - sha256 = "1ae647947a711517afbe05cfb0dee6868fc5468d910c9ecfd157e036cfadebca"; 553 } 554 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/nb-NO/thunderbird-102.10.1.tar.bz2"; 555 locale = "nb-NO"; 556 arch = "linux-i686"; 557 - sha256 = "09e7228934a13efe6d007c25cfa5d2f5848a7e390b1661b97f89038caa9f67c4"; 558 } 559 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/nl/thunderbird-102.10.1.tar.bz2"; 560 locale = "nl"; 561 arch = "linux-i686"; 562 - sha256 = "0cc1119d80d663f866dfc067515eef13ac9f18818c9caf6eef1e9a5d3dbdf4a9"; 563 } 564 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/nn-NO/thunderbird-102.10.1.tar.bz2"; 565 locale = "nn-NO"; 566 arch = "linux-i686"; 567 - sha256 = "8e453b4f19095a72ed3bc058b00e1dba2b62b514cf5731257ae842fdd9991739"; 568 } 569 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/pa-IN/thunderbird-102.10.1.tar.bz2"; 570 locale = "pa-IN"; 571 arch = "linux-i686"; 572 - sha256 = "e48991d2fc988ff59ed5f3f90baea89f00a836f74cbffd3d9fc0aa5be3b78ce3"; 573 } 574 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/pl/thunderbird-102.10.1.tar.bz2"; 575 locale = "pl"; 576 arch = "linux-i686"; 577 - sha256 = "866506e11dcacf9bdada42a4958b565ef182d1d1ac6cbb12113b1cfbccdfd4da"; 578 } 579 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/pt-BR/thunderbird-102.10.1.tar.bz2"; 580 locale = "pt-BR"; 581 arch = "linux-i686"; 582 - sha256 = "9226c5ef933e4ea859cd3ff63ea3e010d1ec13932f4486a6a3c3886749d29cac"; 583 } 584 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/pt-PT/thunderbird-102.10.1.tar.bz2"; 585 locale = "pt-PT"; 586 arch = "linux-i686"; 587 - sha256 = "2d54a2bf0de7b8e76550b97feab2a0bee017643702d78e7adb34c1a2593d3018"; 588 } 589 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/rm/thunderbird-102.10.1.tar.bz2"; 590 locale = "rm"; 591 arch = "linux-i686"; 592 - sha256 = "d1905898d87eb4e86b6844675b410fef1e2c2a2b5cfba4c4eee1348958ed6068"; 593 } 594 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/ro/thunderbird-102.10.1.tar.bz2"; 595 locale = "ro"; 596 arch = "linux-i686"; 597 - sha256 = "b782b98e254933fea8a91398eb146409e1d90dcadf2a0559d9bc9f5e5f54ae57"; 598 } 599 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/ru/thunderbird-102.10.1.tar.bz2"; 600 locale = "ru"; 601 arch = "linux-i686"; 602 - sha256 = "efb6b88de7558778f348215d030a39d0f975a64a79f63ab2d81c801c19ac905f"; 603 } 604 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/sk/thunderbird-102.10.1.tar.bz2"; 605 locale = "sk"; 606 arch = "linux-i686"; 607 - sha256 = "ff9602f22668448c269bf406d1003d0aefedf1b4eef3152e50e205ca90dddfd3"; 608 } 609 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/sl/thunderbird-102.10.1.tar.bz2"; 610 locale = "sl"; 611 arch = "linux-i686"; 612 - sha256 = "828d1cd30733065adb481377a4d0a6c0b0d235f7d5d30b97ce24573fd72c3111"; 613 } 614 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/sq/thunderbird-102.10.1.tar.bz2"; 615 locale = "sq"; 616 arch = "linux-i686"; 617 - sha256 = "debe4956b9aaea292beadc7efb16a95f306b3e240122862224d07044991f0d14"; 618 } 619 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/sr/thunderbird-102.10.1.tar.bz2"; 620 locale = "sr"; 621 arch = "linux-i686"; 622 - sha256 = "d528b00f24164a28bf4ca74399dbfd420c3240ebb4aebb0183ec85907320dabd"; 623 } 624 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/sv-SE/thunderbird-102.10.1.tar.bz2"; 625 locale = "sv-SE"; 626 arch = "linux-i686"; 627 - sha256 = "95820f7dc9716c64e1ed1addd373b9e20c567b51c00a6dfa1188d84204669a8f"; 628 } 629 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/th/thunderbird-102.10.1.tar.bz2"; 630 locale = "th"; 631 arch = "linux-i686"; 632 - sha256 = "eb69acbc99231eddfa1471886473523acaee241072adf85bbdb2eb7d8f0b5c53"; 633 } 634 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/tr/thunderbird-102.10.1.tar.bz2"; 635 locale = "tr"; 636 arch = "linux-i686"; 637 - sha256 = "92efdc11fba78fafe215b1d4de21ebc9bc872249daeb976251ad712be5c141fb"; 638 } 639 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/uk/thunderbird-102.10.1.tar.bz2"; 640 locale = "uk"; 641 arch = "linux-i686"; 642 - sha256 = "c909cdd11eb96a5c955c1fe69dd5d59513ff0ea005c35fc8d6d5b3c8d7ecd4cd"; 643 } 644 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/uz/thunderbird-102.10.1.tar.bz2"; 645 locale = "uz"; 646 arch = "linux-i686"; 647 - sha256 = "044874cbf18ea1474f5e1fe6b14e9d6ee61cf98f45d1ab4ad4faa8641663829d"; 648 } 649 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/vi/thunderbird-102.10.1.tar.bz2"; 650 locale = "vi"; 651 arch = "linux-i686"; 652 - sha256 = "f9d6864e26973d07fb22fa0fdd8d8081cc4a776c2524fe54a80dc10190c094ef"; 653 } 654 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/zh-CN/thunderbird-102.10.1.tar.bz2"; 655 locale = "zh-CN"; 656 arch = "linux-i686"; 657 - sha256 = "f1fdb97dfc15759c6365ba196d2ab3e08ee90834d47edd565b11a110490c4359"; 658 } 659 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.10.1/linux-i686/zh-TW/thunderbird-102.10.1.tar.bz2"; 660 locale = "zh-TW"; 661 arch = "linux-i686"; 662 - sha256 = "03c350f928bc04df567e134b805dc685ac867182cab1aaf6091bc0e2f31f4822"; 663 } 664 ]; 665 }
··· 1 { 2 + version = "102.11.2"; 3 sources = [ 4 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/af/thunderbird-102.11.2.tar.bz2"; 5 locale = "af"; 6 arch = "linux-x86_64"; 7 + sha256 = "06657b0dab9a29c67778434d5dae8318322818391ff0f295c189a1a4f7d66534"; 8 } 9 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/ar/thunderbird-102.11.2.tar.bz2"; 10 locale = "ar"; 11 arch = "linux-x86_64"; 12 + sha256 = "cb0136de2e08acea594b96c5e5b78dfee360fc3b15343ebba0d9da86a8e23e94"; 13 } 14 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/ast/thunderbird-102.11.2.tar.bz2"; 15 locale = "ast"; 16 arch = "linux-x86_64"; 17 + sha256 = "df9f19a08c7e16f2a140086fa4592f5d184c73dbcfeff478790f5d59543b94b6"; 18 } 19 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/be/thunderbird-102.11.2.tar.bz2"; 20 locale = "be"; 21 arch = "linux-x86_64"; 22 + sha256 = "d1610e03d86b05c72e0725a781384a9f3584db52fcbba5c6e4b1d7a7a1a01e80"; 23 } 24 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/bg/thunderbird-102.11.2.tar.bz2"; 25 locale = "bg"; 26 arch = "linux-x86_64"; 27 + sha256 = "7cc0e959caaac9d2b7982c80c9df27467b4959f65e2674879e9c075980d89ac1"; 28 } 29 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/br/thunderbird-102.11.2.tar.bz2"; 30 locale = "br"; 31 arch = "linux-x86_64"; 32 + sha256 = "0d5be52f0d9ed94cf0f6bbda72b7b53d74ffcbdf14235d3c50dc6bafa8e704ab"; 33 } 34 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/ca/thunderbird-102.11.2.tar.bz2"; 35 locale = "ca"; 36 arch = "linux-x86_64"; 37 + sha256 = "044fd058e8afa89c325376937a7d18652ddc9244ed11d9341dbfdd7645c35d59"; 38 } 39 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/cak/thunderbird-102.11.2.tar.bz2"; 40 locale = "cak"; 41 arch = "linux-x86_64"; 42 + sha256 = "829cbeea7a5f0666456961cde904abd5c7f8157fe9f25853359cb577ea085ffd"; 43 } 44 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/cs/thunderbird-102.11.2.tar.bz2"; 45 locale = "cs"; 46 arch = "linux-x86_64"; 47 + sha256 = "02197c9a51abd6938c22a41309f10e713064fa7cb149095dc0f61327916713c9"; 48 } 49 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/cy/thunderbird-102.11.2.tar.bz2"; 50 locale = "cy"; 51 arch = "linux-x86_64"; 52 + sha256 = "fd037542beab8c9c3396f2530296b63e646ab2de0a1bc91f68efc7b271e2e4de"; 53 } 54 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/da/thunderbird-102.11.2.tar.bz2"; 55 locale = "da"; 56 arch = "linux-x86_64"; 57 + sha256 = "991a46e772289a699720a3e0f10e6ec82b2a7b4a3e5c3e66af1e0b266e893199"; 58 } 59 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/de/thunderbird-102.11.2.tar.bz2"; 60 locale = "de"; 61 arch = "linux-x86_64"; 62 + sha256 = "92b5de1b2ff2ebd8541b86295e382393261d0485dca8bdf17a6ba4287af98679"; 63 } 64 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/dsb/thunderbird-102.11.2.tar.bz2"; 65 locale = "dsb"; 66 arch = "linux-x86_64"; 67 + sha256 = "86d5ef98137468ba2b78603b2a06cbd474c8314dc37a92759bcd948a9bffdd5c"; 68 } 69 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/el/thunderbird-102.11.2.tar.bz2"; 70 locale = "el"; 71 arch = "linux-x86_64"; 72 + sha256 = "1df3a70d2ecb6430bf7052428c9603a86d0052a4370843fe7e6771c1c2ca033c"; 73 } 74 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/en-CA/thunderbird-102.11.2.tar.bz2"; 75 locale = "en-CA"; 76 arch = "linux-x86_64"; 77 + sha256 = "5707c6f5aeeb6fa030237f4bb45b5b73b4c9e64f2912ea4d2ab28af55bb3a6e3"; 78 } 79 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/en-GB/thunderbird-102.11.2.tar.bz2"; 80 locale = "en-GB"; 81 arch = "linux-x86_64"; 82 + sha256 = "0d98d3acc5d046ddb4cc2ef149fa180d005a77f7eb91bbbb10a188d562a65546"; 83 } 84 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/en-US/thunderbird-102.11.2.tar.bz2"; 85 locale = "en-US"; 86 arch = "linux-x86_64"; 87 + sha256 = "311cf498bcbeb56f45a53492498c4a094b3f30edbd11594498712997aff530b1"; 88 } 89 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/es-AR/thunderbird-102.11.2.tar.bz2"; 90 locale = "es-AR"; 91 arch = "linux-x86_64"; 92 + sha256 = "83e15b8babde61707d1833b3806fc626adc4e30a4d9ce7aaa9d788348de23b31"; 93 } 94 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/es-ES/thunderbird-102.11.2.tar.bz2"; 95 locale = "es-ES"; 96 arch = "linux-x86_64"; 97 + sha256 = "67487065d864346bb6dd7504cf77a0cd5382b26ff1cdce02765b9f4bd26eb4f4"; 98 } 99 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/es-MX/thunderbird-102.11.2.tar.bz2"; 100 locale = "es-MX"; 101 arch = "linux-x86_64"; 102 + sha256 = "3485c3695b27b13bf6024f776524b2d8e26d09ace4773392c71ea6d22e911ce4"; 103 } 104 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/et/thunderbird-102.11.2.tar.bz2"; 105 locale = "et"; 106 arch = "linux-x86_64"; 107 + sha256 = "932b812b3149a6286d606b58b13211c52a2d832fd68f2081c090c1902cd144e0"; 108 } 109 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/eu/thunderbird-102.11.2.tar.bz2"; 110 locale = "eu"; 111 arch = "linux-x86_64"; 112 + sha256 = "0f17272832d393df25a705a0a9938e346bf9f19408110f370a56ae4d0e46a249"; 113 } 114 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/fi/thunderbird-102.11.2.tar.bz2"; 115 locale = "fi"; 116 arch = "linux-x86_64"; 117 + sha256 = "dd6886fd89e9512276033ddd6de95aec29ec6d51aa92db4e5887d5e0eba37c3f"; 118 } 119 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/fr/thunderbird-102.11.2.tar.bz2"; 120 locale = "fr"; 121 arch = "linux-x86_64"; 122 + sha256 = "df81ad12712cf75ca3572e0afbad252dd18512e081744fa12b9734561d6a9509"; 123 } 124 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/fy-NL/thunderbird-102.11.2.tar.bz2"; 125 locale = "fy-NL"; 126 arch = "linux-x86_64"; 127 + sha256 = "6704b2be50f3e00998b26fe48a42d38fb58d3d2fc3bc7aa30bc274f82b813559"; 128 } 129 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/ga-IE/thunderbird-102.11.2.tar.bz2"; 130 locale = "ga-IE"; 131 arch = "linux-x86_64"; 132 + sha256 = "87c3671056d947c7616f622ab060d99803bc81234ad394140eb92f8977fa93a2"; 133 } 134 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/gd/thunderbird-102.11.2.tar.bz2"; 135 locale = "gd"; 136 arch = "linux-x86_64"; 137 + sha256 = "46334a92360359c2d7af7d6ad315baee8ff750fe73def115e30651251676720d"; 138 } 139 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/gl/thunderbird-102.11.2.tar.bz2"; 140 locale = "gl"; 141 arch = "linux-x86_64"; 142 + sha256 = "e31ec9437c5c0dac3459668ae8011d2e016931b369c577dbe2bbc60b25d7f3e8"; 143 } 144 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/he/thunderbird-102.11.2.tar.bz2"; 145 locale = "he"; 146 arch = "linux-x86_64"; 147 + sha256 = "ac0fb328c19521b83d34aed77ba507cb44dd2cf19e128c19eee25c59718ae9ec"; 148 } 149 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/hr/thunderbird-102.11.2.tar.bz2"; 150 locale = "hr"; 151 arch = "linux-x86_64"; 152 + sha256 = "7db4ff99ceab888d279f7083744afd88ce334244c577da1ca6e6433043d140fb"; 153 } 154 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/hsb/thunderbird-102.11.2.tar.bz2"; 155 locale = "hsb"; 156 arch = "linux-x86_64"; 157 + sha256 = "3db57f4ab334eebea1ba4da57633a1556ac0fc969adb0e363188b09d93771471"; 158 } 159 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/hu/thunderbird-102.11.2.tar.bz2"; 160 locale = "hu"; 161 arch = "linux-x86_64"; 162 + sha256 = "403f4f7bde69d6a3654b6f6a964e7e1aa9a3e4a29810d118c8df4f61da4059a5"; 163 } 164 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/hy-AM/thunderbird-102.11.2.tar.bz2"; 165 locale = "hy-AM"; 166 arch = "linux-x86_64"; 167 + sha256 = "55ef72c23f436862002afddcc5030cf2a1e96b85d531ef233c66796fbfaeee9d"; 168 } 169 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/id/thunderbird-102.11.2.tar.bz2"; 170 locale = "id"; 171 arch = "linux-x86_64"; 172 + sha256 = "73314109c10d6a96d2c8c0ad93ed910bb95e0952172128754a2d3127a30f0553"; 173 } 174 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/is/thunderbird-102.11.2.tar.bz2"; 175 locale = "is"; 176 arch = "linux-x86_64"; 177 + sha256 = "f6b731ee5938236bb28472790d5b07718ff26dba3a78081da53b04b1130c3f4b"; 178 } 179 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/it/thunderbird-102.11.2.tar.bz2"; 180 locale = "it"; 181 arch = "linux-x86_64"; 182 + sha256 = "17903b5e43413a7d80ceed35f60402c2de2c95d9916080930756446b65fe02d2"; 183 } 184 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/ja/thunderbird-102.11.2.tar.bz2"; 185 locale = "ja"; 186 arch = "linux-x86_64"; 187 + sha256 = "34f009819fc3d8fbd780896ae4ad734da8829ab808f8b9a726644fcf72633750"; 188 } 189 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/ka/thunderbird-102.11.2.tar.bz2"; 190 locale = "ka"; 191 arch = "linux-x86_64"; 192 + sha256 = "73570b411f2d9e6bddd41c95b67869635414e14d32d511d0dc6e79b38a9c9b70"; 193 } 194 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/kab/thunderbird-102.11.2.tar.bz2"; 195 locale = "kab"; 196 arch = "linux-x86_64"; 197 + sha256 = "7178cb42412530a67612453cf527774c3cce792f626e2dde9db229b8515f2fca"; 198 } 199 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/kk/thunderbird-102.11.2.tar.bz2"; 200 locale = "kk"; 201 arch = "linux-x86_64"; 202 + sha256 = "d642b392a87ba0370a3c6c8a785aa5defb9d904f45632ab804484b62dcfb2e96"; 203 } 204 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/ko/thunderbird-102.11.2.tar.bz2"; 205 locale = "ko"; 206 arch = "linux-x86_64"; 207 + sha256 = "a6f19bf0bf8c926acf5c08b48eeaf311c7a371d90b1e0c7c5b7664f0f4f33fc1"; 208 } 209 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/lt/thunderbird-102.11.2.tar.bz2"; 210 locale = "lt"; 211 arch = "linux-x86_64"; 212 + sha256 = "31f5833520473062179948d14f04e8ab8ca412b6d581cdc6b8f53fc66fab92de"; 213 } 214 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/lv/thunderbird-102.11.2.tar.bz2"; 215 locale = "lv"; 216 arch = "linux-x86_64"; 217 + sha256 = "b4c92ede4839cb715672cd79c08092c4e68822104662fb5f21eb2f7082a8efb9"; 218 } 219 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/ms/thunderbird-102.11.2.tar.bz2"; 220 locale = "ms"; 221 arch = "linux-x86_64"; 222 + sha256 = "8b277a80d59f5230352964ed0b4a59afc39a54bce527aa7d4e75ffe885180ff2"; 223 } 224 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/nb-NO/thunderbird-102.11.2.tar.bz2"; 225 locale = "nb-NO"; 226 arch = "linux-x86_64"; 227 + sha256 = "ffb1ab2d17175fd49c66e13d36173f4edf6ea827088ba194cb384d2a216d6548"; 228 } 229 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/nl/thunderbird-102.11.2.tar.bz2"; 230 locale = "nl"; 231 arch = "linux-x86_64"; 232 + sha256 = "9b9bd1ee90090bbb84161fac47224107705f9f2fa257d5e9cb16f4e7ddc8a530"; 233 } 234 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/nn-NO/thunderbird-102.11.2.tar.bz2"; 235 locale = "nn-NO"; 236 arch = "linux-x86_64"; 237 + sha256 = "80f78ce4721869b781e96509a1ebb695305aeddd3034a8166c3c1bde6a41a6a2"; 238 } 239 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/pa-IN/thunderbird-102.11.2.tar.bz2"; 240 locale = "pa-IN"; 241 arch = "linux-x86_64"; 242 + sha256 = "2b51a64672a05449da2c8440a5e4742fa5898479bccdd26cbab9d634704026e1"; 243 } 244 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/pl/thunderbird-102.11.2.tar.bz2"; 245 locale = "pl"; 246 arch = "linux-x86_64"; 247 + sha256 = "a8fba5214d99a7449842f2107bd6b93a574fb051f67d24d1545d653c78a03f6e"; 248 } 249 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/pt-BR/thunderbird-102.11.2.tar.bz2"; 250 locale = "pt-BR"; 251 arch = "linux-x86_64"; 252 + sha256 = "00a0890145d6d07f174e5791d8a4f7efa03da40b897b916f96da2d716e911b5a"; 253 } 254 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/pt-PT/thunderbird-102.11.2.tar.bz2"; 255 locale = "pt-PT"; 256 arch = "linux-x86_64"; 257 + sha256 = "8321a8e2f7c08dd333860f3be037aed5f49d902add98c31827fe17d41c23e499"; 258 } 259 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/rm/thunderbird-102.11.2.tar.bz2"; 260 locale = "rm"; 261 arch = "linux-x86_64"; 262 + sha256 = "e17dbf00538d807cfd0a0c473cefc0b8ca944fa829368a85f966da419c809a53"; 263 } 264 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/ro/thunderbird-102.11.2.tar.bz2"; 265 locale = "ro"; 266 arch = "linux-x86_64"; 267 + sha256 = "d62f90d3531227c388d100763c121b2557c72722e4caf830e1e73741b1a42cb0"; 268 } 269 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/ru/thunderbird-102.11.2.tar.bz2"; 270 locale = "ru"; 271 arch = "linux-x86_64"; 272 + sha256 = "8db65e38f4860eda39cdaa40ecc48967987f5ffdf66c38b4dd7198ffeb355e01"; 273 } 274 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/sk/thunderbird-102.11.2.tar.bz2"; 275 locale = "sk"; 276 arch = "linux-x86_64"; 277 + sha256 = "6c06dc997db44cb7b737177316180c3c827ab11cfe140cdf70d964a0117f0da0"; 278 } 279 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/sl/thunderbird-102.11.2.tar.bz2"; 280 locale = "sl"; 281 arch = "linux-x86_64"; 282 + sha256 = "86a4cb37c1f10fd6dec910204320b2e8f875d74e7a4b82819bd51d6148446543"; 283 } 284 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/sq/thunderbird-102.11.2.tar.bz2"; 285 locale = "sq"; 286 arch = "linux-x86_64"; 287 + sha256 = "7993c175bb55460f5c425b35e36295e6a6c1133c2c6f423591fa1f4524957347"; 288 } 289 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/sr/thunderbird-102.11.2.tar.bz2"; 290 locale = "sr"; 291 arch = "linux-x86_64"; 292 + sha256 = "4066c7404822fd2f36e5cafc417f669e731f9dd430b590de15023904bdcb3a78"; 293 } 294 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/sv-SE/thunderbird-102.11.2.tar.bz2"; 295 locale = "sv-SE"; 296 arch = "linux-x86_64"; 297 + sha256 = "f179450d28db9a234224afe95200ff329ecf56497a93e2e95064ab9f90d65944"; 298 } 299 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/th/thunderbird-102.11.2.tar.bz2"; 300 locale = "th"; 301 arch = "linux-x86_64"; 302 + sha256 = "ce1909b8d733c4a2eb5f7d217b05fa6fce8e036e4561e52078e5ddaa723d1d68"; 303 } 304 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/tr/thunderbird-102.11.2.tar.bz2"; 305 locale = "tr"; 306 arch = "linux-x86_64"; 307 + sha256 = "45ab9d4d14ecf590064d37282c02e8e1c95a5a4b27ee6a04919791ce0f876bf6"; 308 } 309 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/uk/thunderbird-102.11.2.tar.bz2"; 310 locale = "uk"; 311 arch = "linux-x86_64"; 312 + sha256 = "aab8145419c3346a48143b1d02a97d08e96cc23bca6fd04ad1ee8c4c4e885a70"; 313 } 314 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/uz/thunderbird-102.11.2.tar.bz2"; 315 locale = "uz"; 316 arch = "linux-x86_64"; 317 + sha256 = "4ea4a65878bc3e9336164d46fa9d546ad411aeeb3ae4095036ad35422a278d85"; 318 } 319 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/vi/thunderbird-102.11.2.tar.bz2"; 320 locale = "vi"; 321 arch = "linux-x86_64"; 322 + sha256 = "22baebada536992fc23d621b8aee58b845484cd1fda3a38d7b172a78e0ac1d6a"; 323 } 324 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/zh-CN/thunderbird-102.11.2.tar.bz2"; 325 locale = "zh-CN"; 326 arch = "linux-x86_64"; 327 + sha256 = "ea3c42846b9eefe08b6944a816b28aa50dcc116354b59f5360f3e6c0340d406f"; 328 } 329 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-x86_64/zh-TW/thunderbird-102.11.2.tar.bz2"; 330 locale = "zh-TW"; 331 arch = "linux-x86_64"; 332 + sha256 = "207c364f50ce57259134259c903844705339f4f25d1468ba565727254a179c79"; 333 } 334 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/af/thunderbird-102.11.2.tar.bz2"; 335 locale = "af"; 336 arch = "linux-i686"; 337 + sha256 = "a78eedffe820f56374ccd80827b90e08b85cd1697b778474bb37fded8dfd4771"; 338 } 339 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/ar/thunderbird-102.11.2.tar.bz2"; 340 locale = "ar"; 341 arch = "linux-i686"; 342 + sha256 = "5fe656dedc66b1cb928f33a1a8993cb946a869846eeeececabae7972ad786c79"; 343 } 344 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/ast/thunderbird-102.11.2.tar.bz2"; 345 locale = "ast"; 346 arch = "linux-i686"; 347 + sha256 = "d3f10468b757add94a3f97ba2293767e54373a615559b45f0c9598cc0abc4bc7"; 348 } 349 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/be/thunderbird-102.11.2.tar.bz2"; 350 locale = "be"; 351 arch = "linux-i686"; 352 + sha256 = "245ba014e247e4a328ab5b05a4edd3d4394e8214e444ff55bd0d3a5ba51b2a85"; 353 } 354 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/bg/thunderbird-102.11.2.tar.bz2"; 355 locale = "bg"; 356 arch = "linux-i686"; 357 + sha256 = "474d471395d9284852c647eab1fddc4db2269c819931edfb788a5580ac999d0a"; 358 } 359 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/br/thunderbird-102.11.2.tar.bz2"; 360 locale = "br"; 361 arch = "linux-i686"; 362 + sha256 = "e5e9f42b1a8975b276558046f7b90cb3c57fae4fe95f95f92e7e209f7ee5bfcb"; 363 } 364 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/ca/thunderbird-102.11.2.tar.bz2"; 365 locale = "ca"; 366 arch = "linux-i686"; 367 + sha256 = "09faad4fb6472f21dc825ba496853848978be42dcf3aa66927f4ccb2b0b84d59"; 368 } 369 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/cak/thunderbird-102.11.2.tar.bz2"; 370 locale = "cak"; 371 arch = "linux-i686"; 372 + sha256 = "c169b412dad7f8c341b941491bb81d23646855488523fbc5e5ec676c47db2a02"; 373 } 374 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/cs/thunderbird-102.11.2.tar.bz2"; 375 locale = "cs"; 376 arch = "linux-i686"; 377 + sha256 = "b1342ff7c1c19c7e45eb12055ce4063376d2651da195333431d60e5fa4b17adb"; 378 } 379 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/cy/thunderbird-102.11.2.tar.bz2"; 380 locale = "cy"; 381 arch = "linux-i686"; 382 + sha256 = "ceecb82902badc017405af3a0c9f6eafcb3748b7746bf7d25dd2f7fc716e5126"; 383 } 384 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/da/thunderbird-102.11.2.tar.bz2"; 385 locale = "da"; 386 arch = "linux-i686"; 387 + sha256 = "f2c9cae1c78995ad3e27b92c3f3eee998415b141883def9742d296be6e62a302"; 388 } 389 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/de/thunderbird-102.11.2.tar.bz2"; 390 locale = "de"; 391 arch = "linux-i686"; 392 + sha256 = "653bdd0f67b784fc078bdd1cd75f0d307b30d6c027b0e5fd7148d5e4cea2adcd"; 393 } 394 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/dsb/thunderbird-102.11.2.tar.bz2"; 395 locale = "dsb"; 396 arch = "linux-i686"; 397 + sha256 = "98384b95001ec5e82fc8f53c76f5644ffe1f6624deefd3cf4d8bf6c4492619e4"; 398 } 399 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/el/thunderbird-102.11.2.tar.bz2"; 400 locale = "el"; 401 arch = "linux-i686"; 402 + sha256 = "ab7efc3b98f24a14e488dda8cb8206cbe83f49384352154fc20353c697201d6e"; 403 } 404 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/en-CA/thunderbird-102.11.2.tar.bz2"; 405 locale = "en-CA"; 406 arch = "linux-i686"; 407 + sha256 = "d9c9fcf684aba3322bc7c386c48ae30bdf56c48a20902ec298e95be362c11c37"; 408 } 409 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/en-GB/thunderbird-102.11.2.tar.bz2"; 410 locale = "en-GB"; 411 arch = "linux-i686"; 412 + sha256 = "49c80b30b66b675de13f3a1adfedfd0794dee6762c56967775665961bcd3959d"; 413 } 414 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/en-US/thunderbird-102.11.2.tar.bz2"; 415 locale = "en-US"; 416 arch = "linux-i686"; 417 + sha256 = "0ce97d2b043907467d54cca44c85681f37d2a3b34a9575082d0b3ee05a82447c"; 418 } 419 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/es-AR/thunderbird-102.11.2.tar.bz2"; 420 locale = "es-AR"; 421 arch = "linux-i686"; 422 + sha256 = "6fea0ae72690c33c9cbf6cf4721afc16974d72f9fc287bd44e02e5e06cc7d2c8"; 423 } 424 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/es-ES/thunderbird-102.11.2.tar.bz2"; 425 locale = "es-ES"; 426 arch = "linux-i686"; 427 + sha256 = "add0932c8bb9356ac8cf67a57a2aaa3d93fc3f9a2357832f472935acbfe1f25d"; 428 } 429 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/es-MX/thunderbird-102.11.2.tar.bz2"; 430 locale = "es-MX"; 431 arch = "linux-i686"; 432 + sha256 = "3aad7a26e7444751647e794c031218f6850f711494dc5b24e25d2848b9cf56f0"; 433 } 434 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/et/thunderbird-102.11.2.tar.bz2"; 435 locale = "et"; 436 arch = "linux-i686"; 437 + sha256 = "4bf21ba093b2d98a507f63fbb8a3c8c1bf790f0c4811bc664aa4475fcc8f1d3b"; 438 } 439 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/eu/thunderbird-102.11.2.tar.bz2"; 440 locale = "eu"; 441 arch = "linux-i686"; 442 + sha256 = "f01b207c5b35af66542e5961e63cc3734eecdabaa543c0ee693add78862e3508"; 443 } 444 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/fi/thunderbird-102.11.2.tar.bz2"; 445 locale = "fi"; 446 arch = "linux-i686"; 447 + sha256 = "e29744181614b98bf2c6dfb46da2f339eddd1d17f1ffe7499236442b5104a9b0"; 448 } 449 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/fr/thunderbird-102.11.2.tar.bz2"; 450 locale = "fr"; 451 arch = "linux-i686"; 452 + sha256 = "02708ed7bb7b83f058160f28524506f13f5c661f967e0cf8908f7d1b72965a45"; 453 } 454 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/fy-NL/thunderbird-102.11.2.tar.bz2"; 455 locale = "fy-NL"; 456 arch = "linux-i686"; 457 + sha256 = "156940765e41e34c3f05f7f56c8634dd41e9e2194c3fe14d3d8e04af0d266a5a"; 458 } 459 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/ga-IE/thunderbird-102.11.2.tar.bz2"; 460 locale = "ga-IE"; 461 arch = "linux-i686"; 462 + sha256 = "2f5089a6f152efba12eac5a5096b91f360bccf99a061ea8145767807499d6e45"; 463 } 464 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/gd/thunderbird-102.11.2.tar.bz2"; 465 locale = "gd"; 466 arch = "linux-i686"; 467 + sha256 = "004cdf4b0db59ffd5463a543b6ee5859f96eef31d16a6e0bbce892e7bdfb3481"; 468 } 469 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/gl/thunderbird-102.11.2.tar.bz2"; 470 locale = "gl"; 471 arch = "linux-i686"; 472 + sha256 = "c3d72bb143913728198c73f0dbec8933e791ead4d5b46d2bd2bbfdf9faa2a3db"; 473 } 474 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/he/thunderbird-102.11.2.tar.bz2"; 475 locale = "he"; 476 arch = "linux-i686"; 477 + sha256 = "c120e4dde2fcbcabb383732512e455eb74c5b56e42edc1ffa91a6b513c369ceb"; 478 } 479 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/hr/thunderbird-102.11.2.tar.bz2"; 480 locale = "hr"; 481 arch = "linux-i686"; 482 + sha256 = "156e3fe8927961aef8353d896c20fa78b237c3a2a40cd73b4f216c7893a69750"; 483 } 484 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/hsb/thunderbird-102.11.2.tar.bz2"; 485 locale = "hsb"; 486 arch = "linux-i686"; 487 + sha256 = "2a1a8f996815b7a57ba62f589393f7ecab7918a5acb9cbd54d901e014a9de730"; 488 } 489 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/hu/thunderbird-102.11.2.tar.bz2"; 490 locale = "hu"; 491 arch = "linux-i686"; 492 + sha256 = "c7d541bbefeecc9cf1eaaa975205d7c8c9530a26746a3e8e9e4a9faea95fd99d"; 493 } 494 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/hy-AM/thunderbird-102.11.2.tar.bz2"; 495 locale = "hy-AM"; 496 arch = "linux-i686"; 497 + sha256 = "41e1620345bbc30555e5a09459937ad5bd0ca0198aeab0065ade133f71aea34c"; 498 } 499 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/id/thunderbird-102.11.2.tar.bz2"; 500 locale = "id"; 501 arch = "linux-i686"; 502 + sha256 = "3ad8a34d3d92a83832135618158a93624e6063a4593237ebc94623c45a71b9bb"; 503 } 504 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/is/thunderbird-102.11.2.tar.bz2"; 505 locale = "is"; 506 arch = "linux-i686"; 507 + sha256 = "15d378b909c271d87137aca66ac9e697b7b7de2fa17d24914873cd42af3c1613"; 508 } 509 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/it/thunderbird-102.11.2.tar.bz2"; 510 locale = "it"; 511 arch = "linux-i686"; 512 + sha256 = "8a761bf97c76d30e860a4cba1e2b3dcda550c20e87953f5b3903f2b859f2f41f"; 513 } 514 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/ja/thunderbird-102.11.2.tar.bz2"; 515 locale = "ja"; 516 arch = "linux-i686"; 517 + sha256 = "2c9e60e49694770dd13493c3fd7f61e61a8ecc3d1e3521c3df4f5e403a0cb4da"; 518 } 519 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/ka/thunderbird-102.11.2.tar.bz2"; 520 locale = "ka"; 521 arch = "linux-i686"; 522 + sha256 = "8f6aa7f110e435eb21b80b43545c4bebc83d78c3524b58c9b2b9fdb7576a1caf"; 523 } 524 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/kab/thunderbird-102.11.2.tar.bz2"; 525 locale = "kab"; 526 arch = "linux-i686"; 527 + sha256 = "0aca25c9f560c967352452f584857ec1670bbeef93cb5126a5a369fa2e2bfbb3"; 528 } 529 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/kk/thunderbird-102.11.2.tar.bz2"; 530 locale = "kk"; 531 arch = "linux-i686"; 532 + sha256 = "b3fd7ad0219c0d7cccd6e8d1ff6d57bb9ee9454982390a5eb1c25da0362e6a04"; 533 } 534 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/ko/thunderbird-102.11.2.tar.bz2"; 535 locale = "ko"; 536 arch = "linux-i686"; 537 + sha256 = "878550b8d1b6b702969e1f44b11335581b74f49cda275128b5e888b1bb1c65c6"; 538 } 539 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/lt/thunderbird-102.11.2.tar.bz2"; 540 locale = "lt"; 541 arch = "linux-i686"; 542 + sha256 = "4adb4e7fb9e2858d08ba07ac0c45c39f19ea607454350406b66a7b8119d47eac"; 543 } 544 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/lv/thunderbird-102.11.2.tar.bz2"; 545 locale = "lv"; 546 arch = "linux-i686"; 547 + sha256 = "6de09c4e8d7d59a6d3397b42225a506820fd7270e0ee9397987ff8c1b39a9647"; 548 } 549 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/ms/thunderbird-102.11.2.tar.bz2"; 550 locale = "ms"; 551 arch = "linux-i686"; 552 + sha256 = "0c35682230d3250e3be1aad81d39507f814f701e3495b4eb6d4c044081848f82"; 553 } 554 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/nb-NO/thunderbird-102.11.2.tar.bz2"; 555 locale = "nb-NO"; 556 arch = "linux-i686"; 557 + sha256 = "af75db1085dcf182c5570b47530685413e4ba425cd05c94c0280ae65dc4a54f4"; 558 } 559 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/nl/thunderbird-102.11.2.tar.bz2"; 560 locale = "nl"; 561 arch = "linux-i686"; 562 + sha256 = "9ed4e326655f19d2bd9f373a3f0f0211a9c44a1d12ebb0bf84afe1a40d65c7cf"; 563 } 564 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/nn-NO/thunderbird-102.11.2.tar.bz2"; 565 locale = "nn-NO"; 566 arch = "linux-i686"; 567 + sha256 = "2736a80c98790bab8a83bdf6dd0c8d627b5605f723d4625a90a8923c905cea5b"; 568 } 569 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/pa-IN/thunderbird-102.11.2.tar.bz2"; 570 locale = "pa-IN"; 571 arch = "linux-i686"; 572 + sha256 = "1145f7b27c3472461c36312598e8e2fb97f0287571ab487a5faa72a55cb67cd8"; 573 } 574 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/pl/thunderbird-102.11.2.tar.bz2"; 575 locale = "pl"; 576 arch = "linux-i686"; 577 + sha256 = "f620e69104a461f0376279f5e67164ee153ece99230e5f3f8607dffc3830c8ca"; 578 } 579 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/pt-BR/thunderbird-102.11.2.tar.bz2"; 580 locale = "pt-BR"; 581 arch = "linux-i686"; 582 + sha256 = "45410c053ee09fbe9eb669951cdc1aea923327134e8f6149a57157bad7980dc8"; 583 } 584 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/pt-PT/thunderbird-102.11.2.tar.bz2"; 585 locale = "pt-PT"; 586 arch = "linux-i686"; 587 + sha256 = "606e06996c137d5100fb41cfed3eb64f0d133412119d1dd9a0ac77c69dd3a9bd"; 588 } 589 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/rm/thunderbird-102.11.2.tar.bz2"; 590 locale = "rm"; 591 arch = "linux-i686"; 592 + sha256 = "0c56f5bbcd93ebcf719211b745655bdd12c804e797a61a35725aefc9330ec039"; 593 } 594 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/ro/thunderbird-102.11.2.tar.bz2"; 595 locale = "ro"; 596 arch = "linux-i686"; 597 + sha256 = "2fa1770ba6c0f48565cdaa1a380f1a02d7c5bbf399a8e8733d534974496fc5fd"; 598 } 599 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/ru/thunderbird-102.11.2.tar.bz2"; 600 locale = "ru"; 601 arch = "linux-i686"; 602 + sha256 = "5e163f9d577fa6b9ac90c68332f987627da0eddac178477fe2bc6086fe1b350b"; 603 } 604 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/sk/thunderbird-102.11.2.tar.bz2"; 605 locale = "sk"; 606 arch = "linux-i686"; 607 + sha256 = "2fafac4b35aca28cdc0d5cb8052a7235586ab5c8c6b8407386586e395fee41dd"; 608 } 609 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/sl/thunderbird-102.11.2.tar.bz2"; 610 locale = "sl"; 611 arch = "linux-i686"; 612 + sha256 = "e8eb2687ef4600143bf1a6174ddc01c9e12a33d82ceb479b4924704862ce5b44"; 613 } 614 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/sq/thunderbird-102.11.2.tar.bz2"; 615 locale = "sq"; 616 arch = "linux-i686"; 617 + sha256 = "22d546d1b351894bd6e9b37570c32daf631e43f5cf1ba12783ba4c8b8b0f80b1"; 618 } 619 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/sr/thunderbird-102.11.2.tar.bz2"; 620 locale = "sr"; 621 arch = "linux-i686"; 622 + sha256 = "4f3005db6f7ecf49f41e38a23af1d10d87b1df2f83e004137ba5a7ea4eb554b3"; 623 } 624 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/sv-SE/thunderbird-102.11.2.tar.bz2"; 625 locale = "sv-SE"; 626 arch = "linux-i686"; 627 + sha256 = "fc3dc64402a0ee3eeb0704480af026c4204eba64630ba8d47ca6a4bc003c05af"; 628 } 629 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/th/thunderbird-102.11.2.tar.bz2"; 630 locale = "th"; 631 arch = "linux-i686"; 632 + sha256 = "02850d8dbb41dd178fe6ae6ec5e0fdaf35c7afdda5c07801b03ba2594d89e76d"; 633 } 634 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/tr/thunderbird-102.11.2.tar.bz2"; 635 locale = "tr"; 636 arch = "linux-i686"; 637 + sha256 = "bdc704b6ab1d9061140ba6e8083ddc77eac69284455920c451151fb3a27a35d8"; 638 } 639 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/uk/thunderbird-102.11.2.tar.bz2"; 640 locale = "uk"; 641 arch = "linux-i686"; 642 + sha256 = "5fbd2f2a2426c6994fc4aa1f32c59fa3b5f3dc5d0157407119f0033fb5f6277e"; 643 } 644 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/uz/thunderbird-102.11.2.tar.bz2"; 645 locale = "uz"; 646 arch = "linux-i686"; 647 + sha256 = "bd4bcdbbf474e0edd1d76757603826f52f95eb082f3aae11c0df85a8c6602ad4"; 648 } 649 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/vi/thunderbird-102.11.2.tar.bz2"; 650 locale = "vi"; 651 arch = "linux-i686"; 652 + sha256 = "2c72cbabe914af118c6e29acb035a983884f629aa3bf9047a4e17c8329ced1a7"; 653 } 654 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/zh-CN/thunderbird-102.11.2.tar.bz2"; 655 locale = "zh-CN"; 656 arch = "linux-i686"; 657 + sha256 = "2c83f1997030cd94b020568d1678b96118a108979b4fbe5bc87a0b1cf27d19b9"; 658 } 659 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.11.2/linux-i686/zh-TW/thunderbird-102.11.2.tar.bz2"; 660 locale = "zh-TW"; 661 arch = "linux-i686"; 662 + sha256 = "c054c4762bb6e78a80d610020c1eaf10b0139d85b153157f083a28af652fb531"; 663 } 664 ]; 665 }
+2 -2
pkgs/applications/networking/mailreaders/thunderbird/packages.nix
··· 5 6 thunderbird-102 = (buildMozillaMach rec { 7 pname = "thunderbird"; 8 - version = "102.10.1"; 9 application = "comm/mail"; 10 applicationName = "Mozilla Thunderbird"; 11 binaryName = pname; 12 src = fetchurl { 13 url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz"; 14 - sha512 = "dfe62f0d8b7750e54793e32e78fb0784c7c8e39b95dc4c03ac393e51195ec8883edc2536afc2cf2011005312a40805f7dc617c90bfb4a77d22393f1d9b719b23"; 15 }; 16 extraPatches = [ 17 # The file to be patched is different from firefox's `no-buildconfig-ffx90.patch`.
··· 5 6 thunderbird-102 = (buildMozillaMach rec { 7 pname = "thunderbird"; 8 + version = "102.11.2"; 9 application = "comm/mail"; 10 applicationName = "Mozilla Thunderbird"; 11 binaryName = pname; 12 src = fetchurl { 13 url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz"; 14 + sha512 = "631e2fd8f9ce3b480ad6ea820c684a039b3de17f475acbba35ea4d3229223b81081a7f09b4a7c4ae64cf3f58a50dba58a72fe591f6e42ef6bac7c402db3d8558"; 15 }; 16 extraPatches = [ 17 # The file to be patched is different from firefox's `no-buildconfig-ffx90.patch`.
+2 -2
pkgs/applications/office/qownnotes/default.nix
··· 18 let 19 pname = "qownnotes"; 20 appname = "QOwnNotes"; 21 - version = "23.5.3"; 22 in 23 stdenv.mkDerivation { 24 inherit pname appname version; 25 26 src = fetchurl { 27 url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz"; 28 - hash = "sha256-keNR+RMFVlHMeyT1Ngtuu2jWMDwFyLbZAVUk7c0Ed38="; 29 }; 30 31 nativeBuildInputs = [
··· 18 let 19 pname = "qownnotes"; 20 appname = "QOwnNotes"; 21 + version = "23.6.0"; 22 in 23 stdenv.mkDerivation { 24 inherit pname appname version; 25 26 src = fetchurl { 27 url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz"; 28 + hash = "sha256-g8sWnc0b+DciEu6ZtQsPTUUfcudWKCNSQc6K67tLsYg="; 29 }; 30 31 nativeBuildInputs = [
+21 -2
pkgs/applications/search/recoll/default.nix
··· 33 , xapian 34 , zlib 35 , withGui ? true 36 }: 37 38 mkDerivation rec { ··· 48 "--enable-recollq" 49 "--disable-webkit" 50 "--without-systemd" 51 ] ++ lib.optionals (!withGui) [ 52 "--disable-qtgui" 53 "--disable-x11mon" ··· 64 ./fix-datadir.patch 65 ]; 66 67 - nativeBuildInputs = [ 68 - file 69 pkg-config 70 python3Packages.setuptools 71 makeWrapper 72 which 73 ]; ··· 75 buildInputs = [ 76 bison 77 chmlib 78 python3Packages.python 79 python3Packages.mutagen 80 xapian 81 zlib 82 ] ++ lib.optionals withGui [ 83 qtbase 84 ] ++ lib.optionals stdenv.isDarwin [ ··· 139 license = licenses.gpl2Plus; 140 platforms = platforms.unix; 141 maintainers = with maintainers; [ jcumming ehmry ]; 142 }; 143 }
··· 33 , xapian 34 , zlib 35 , withGui ? true 36 + , withPython ? with stdenv; buildPlatform.canExecute hostPlatform 37 }: 38 39 mkDerivation rec { ··· 49 "--enable-recollq" 50 "--disable-webkit" 51 "--without-systemd" 52 + 53 + # this leaks into the final `librecoll-*.so` binary, so we need 54 + # to be sure it is taken from `pkgs.file` rather than `stdenv`, 55 + # especially when cross-compiling 56 + "--with-file-command=${file}/bin/file" 57 + 58 + ] ++ lib.optionals (!withPython) [ 59 + "--disable-python-module" 60 + "--disable-python-chm" 61 ] ++ lib.optionals (!withGui) [ 62 "--disable-qtgui" 63 "--disable-x11mon" ··· 74 ./fix-datadir.patch 75 ]; 76 77 + nativeBuildInputs = lib.optionals withGui [ 78 + qtbase 79 + ] ++ [ 80 pkg-config 81 + ] ++ lib.optionals withPython [ 82 python3Packages.setuptools 83 + ] ++ [ 84 makeWrapper 85 which 86 ]; ··· 88 buildInputs = [ 89 bison 90 chmlib 91 + ] ++ lib.optionals withPython [ 92 python3Packages.python 93 python3Packages.mutagen 94 + ] ++ [ 95 xapian 96 zlib 97 + file 98 ] ++ lib.optionals withGui [ 99 qtbase 100 ] ++ lib.optionals stdenv.isDarwin [ ··· 155 license = licenses.gpl2Plus; 156 platforms = platforms.unix; 157 maintainers = with maintainers; [ jcumming ehmry ]; 158 + 159 + # `Makefile.am` assumes the ability to run the hostPlatform's python binary at build time 160 + broken = withPython && (with stdenv; !buildPlatform.canExecute hostPlatform); 161 }; 162 }
+73
pkgs/applications/video/vivictpp/default.nix
···
··· 1 + { lib, stdenv, fetchFromGitHub 2 + , meson, cmake, ninja, pkg-config 3 + , python3, git 4 + , SDL2, SDL2_ttf 5 + , freetype, harfbuzz 6 + , ffmpeg 7 + , cacert }: 8 + 9 + let 10 + version = "0.3.1"; 11 + withSubprojects = stdenv.mkDerivation { 12 + name = "sources-with-subprojects"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "vivictorg"; 16 + repo = "vivictpp"; 17 + rev = "v${version}"; 18 + hash = "sha256-6YfYeUrM7cq8hnOPMq0Uq/HToFBDri0N/r0SU0LeT/Y="; 19 + }; 20 + 21 + nativeBuildInputs = [ 22 + meson 23 + cacert 24 + git 25 + ]; 26 + 27 + buildCommand = '' 28 + cp -r --no-preserve=mode $src $out 29 + cd $out 30 + 31 + meson subprojects download 32 + find subprojects -type d -name .git -prune -execdir rm -r {} + 33 + ''; 34 + 35 + outputHashMode = "recursive"; 36 + outputHash = "sha256-lIm2Bwy61St9d1e6QSm5ZpSIDR9ucaQKBPHATTDEgW4="; 37 + }; 38 + in stdenv.mkDerivation rec { 39 + pname = "vivictpp"; 40 + inherit version; 41 + 42 + src = withSubprojects; 43 + 44 + nativeBuildInputs = [ 45 + meson 46 + cmake 47 + ninja 48 + pkg-config 49 + 50 + python3 51 + git 52 + ]; 53 + 54 + buildInputs = [ 55 + SDL2 56 + SDL2_ttf 57 + freetype 58 + harfbuzz 59 + ffmpeg 60 + ]; 61 + 62 + preConfigure = '' 63 + patchShebangs . 64 + ''; 65 + 66 + meta = with lib; { 67 + description = "An easy to use tool for subjective comparison of the visual quality of different encodings of the same video source"; 68 + homepage = "https://github.com/vivictorg/vivictpp"; 69 + license = licenses.gpl2Plus; 70 + platforms = platforms.unix; 71 + maintainers = with maintainers; [ tilpner ]; 72 + }; 73 + }
+2 -2
pkgs/build-support/cc-wrapper/default.nix
··· 301 ''; 302 303 strictDeps = true; 304 - propagatedBuildInputs = [ bintools ] ++ extraTools ++ optionals cc.langD or false [ zlib ]; 305 depsTargetTargetPropagated = optional (libcxx != null) libcxx ++ extraPackages; 306 307 setupHooks = [ ··· 464 + optionalString propagateDoc '' 465 ln -s ${cc.man} $man 466 ln -s ${cc.info} $info 467 - '' + optionalString (cc.langD or false) '' 468 echo "-B${zlib}${zlib.libdir or "/lib/"}" >> $out/nix-support/libc-cflags 469 '' 470
··· 301 ''; 302 303 strictDeps = true; 304 + propagatedBuildInputs = [ bintools ] ++ extraTools ++ optionals cc.langD or cc.langJava or false [ zlib ]; 305 depsTargetTargetPropagated = optional (libcxx != null) libcxx ++ extraPackages; 306 307 setupHooks = [ ··· 464 + optionalString propagateDoc '' 465 ln -s ${cc.man} $man 466 ln -s ${cc.info} $info 467 + '' + optionalString (cc.langD or cc.langJava or false) '' 468 echo "-B${zlib}${zlib.libdir or "/lib/"}" >> $out/nix-support/libc-cflags 469 '' 470
+40
pkgs/development/compilers/cairo/default.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , rustfmt 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "cairo"; 9 + version = "1.1.0"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "starkware-libs"; 13 + repo = "cairo"; 14 + rev = "v${version}"; 15 + hash = "sha256-8dzDe4Kw9OASD0i3bMooqEclStxS/Ta/tOVCcFhvwSI="; 16 + }; 17 + 18 + cargoHash = "sha256-IY3RE+EeNRhUSZX+bqojhPl6y8qm+i9C0zQmNApmat8="; 19 + 20 + nativeCheckInputs = [ 21 + rustfmt 22 + ]; 23 + 24 + checkFlags = [ 25 + # Requires a mythical rustfmt 2.0 or a nightly compiler 26 + "--skip=golden_test::sourcegen_ast" 27 + ]; 28 + 29 + postInstall = '' 30 + # The core library is needed for compilation. 31 + cp -r corelib $out/ 32 + ''; 33 + 34 + meta = with lib; { 35 + description = "Turing-complete language for creating provable programs for general computation"; 36 + homepage = "https://github.com/starkware-libs/cairo"; 37 + license = licenses.asl20; 38 + maintainers = with maintainers; [ raitobezarius ]; 39 + }; 40 + }
+2 -2
pkgs/development/libraries/cimg/default.nix
··· 7 8 stdenv.mkDerivation (finalAttrs: { 9 pname = "cimg"; 10 - version = "3.2.4"; 11 12 src = fetchFromGitHub { 13 owner = "GreycLab"; 14 repo = "CImg"; 15 rev = "v.${finalAttrs.version}"; 16 - hash = "sha256-CQYY5aKRDe6F7GrBJfqt0t/rjjdZnr/c/cqhr6yVACA="; 17 }; 18 19 outputs = [ "out" "doc" ];
··· 7 8 stdenv.mkDerivation (finalAttrs: { 9 pname = "cimg"; 10 + version = "3.2.5"; 11 12 src = fetchFromGitHub { 13 owner = "GreycLab"; 14 repo = "CImg"; 15 rev = "v.${finalAttrs.version}"; 16 + hash = "sha256-1S48Ex44OKdpf6bsXZes7AFA1cAJZELGJqvC4V9sHdA="; 17 }; 18 19 outputs = [ "out" "doc" ];
-28
pkgs/development/libraries/openimagedenoise/1_2_x.nix
··· 1 - { lib, stdenv, fetchzip, cmake, tbb, python3, ispc }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "openimagedenoise"; 5 - version = "1.2.2"; 6 - 7 - # The release tarballs include pretrained weights, which would otherwise need to be fetched with git-lfs 8 - src = fetchzip { 9 - url = "https://github.com/OpenImageDenoise/oidn/releases/download/v${version}/oidn-${version}.src.tar.gz"; 10 - sha256 = "0wyaarjxkzlvljmpnr7qm06ma2wl1aik3z664gwpzhizswygk6yp"; 11 - }; 12 - 13 - nativeBuildInputs = [ cmake python3 ispc ]; 14 - buildInputs = [ tbb ]; 15 - 16 - cmakeFlags = [ 17 - "-DTBB_ROOT=${tbb}" 18 - "-DTBB_INCLUDE_DIR=${tbb.dev}/include" 19 - ]; 20 - 21 - meta = with lib; { 22 - homepage = "https://openimagedenoise.github.io"; 23 - description = "High-Performance Denoising Library for Ray Tracing"; 24 - license = licenses.asl20; 25 - maintainers = [ maintainers.leshainc ]; 26 - platforms = platforms.unix; 27 - }; 28 - }
···
+9
pkgs/development/node-packages/overrides.nix
··· 137 meta = oldAttrs.meta // { broken = since "12"; }; 138 }); 139 140 eask = prev."@emacs-eask/cli".override { 141 name = "eask"; 142 };
··· 137 meta = oldAttrs.meta // { broken = since "12"; }; 138 }); 139 140 + castnow = prev.castnow.override { 141 + nativeBuildInputs = [ pkgs.makeWrapper ]; 142 + 143 + postInstall = '' 144 + wrapProgram "$out/bin/castnow" \ 145 + --prefix PATH : ${pkgs.lib.makeBinPath [ pkgs.ffmpeg ]} 146 + ''; 147 + }; 148 + 149 eask = prev."@emacs-eask/cli".override { 150 name = "eask"; 151 };
+10
pkgs/development/python-modules/fenics/default.nix
··· 164 url = "https://bitbucket.org/josef_kemetmueller/dolfin/commits/328e94acd426ebaf2243c072b806be3379fd4340/raw"; 165 sha256 = "1zj7k3y7vsx0hz3gwwlxhq6gdqamqpcw90d4ishwx5ps5ckcsb9r"; 166 }) 167 ]; 168 propagatedBuildInputs = [ 169 dijitso 170 fiat
··· 164 url = "https://bitbucket.org/josef_kemetmueller/dolfin/commits/328e94acd426ebaf2243c072b806be3379fd4340/raw"; 165 sha256 = "1zj7k3y7vsx0hz3gwwlxhq6gdqamqpcw90d4ishwx5ps5ckcsb9r"; 166 }) 167 + (fetchpatch { 168 + url = "https://bitbucket.org/fenics-project/dolfin/issues/attachments/1116/fenics-project/dolfin/1602778118.04/1116/0001-Use-__BYTE_ORDER__-instead-of-removed-Boost-endian.h.patch"; 169 + hash = "sha256-wPaDmPU+jaD3ce3nNEbvM5p8e3zBdLozamLTJ/0ai2c="; 170 + }) 171 ]; 172 + # https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=dolfin&id=a965ad934f7b3d49a5e77fa6fb5e3c710ec2163e 173 + postPatch = '' 174 + sed -i '20 a #include <algorithm>' dolfin/geometry/IntersectionConstruction.cpp 175 + sed -i '26 a #include <algorithm>' dolfin/mesh/MeshFunction.h 176 + sed -i '25 a #include <cstdint>' dolfin/mesh/MeshConnectivity.h 177 + ''; 178 propagatedBuildInputs = [ 179 dijitso 180 fiat
+2 -2
pkgs/development/python-modules/miniaudio/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "miniaudio"; 15 - version = "1.58"; 16 17 disabled = pythonOlder "3.6"; 18 ··· 22 owner = "irmen"; 23 repo = "pyminiaudio"; 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-uIjQerxMU4hMCJtpqYPt2kicql3s7jyho9r6/kRHTbk="; 26 }; 27 28 postPatch = ''
··· 12 13 buildPythonPackage rec { 14 pname = "miniaudio"; 15 + version = "1.59"; 16 17 disabled = pythonOlder "3.6"; 18 ··· 22 owner = "irmen"; 23 repo = "pyminiaudio"; 24 rev = "refs/tags/v${version}"; 25 + hash = "sha256-tMQOGqEThtownW3cnNpCzWye0Uo/Es7E8abVySo1QnQ="; 26 }; 27 28 postPatch = ''
+14
pkgs/development/python-modules/oauthlib/default.nix
··· 7 , pyjwt 8 , pytestCheckHook 9 , pythonOlder 10 }: 11 12 buildPythonPackage rec { ··· 37 pythonImportsCheck = [ 38 "oauthlib" 39 ]; 40 41 meta = with lib; { 42 description = "Generic, spec-compliant, thorough implementation of the OAuth request-signing logic";
··· 7 , pyjwt 8 , pytestCheckHook 9 , pythonOlder 10 + 11 + # for passthru.tests 12 + , django-allauth 13 + , django-oauth-toolkit 14 + , google-auth-oauthlib 15 + , requests-oauthlib 16 }: 17 18 buildPythonPackage rec { ··· 43 pythonImportsCheck = [ 44 "oauthlib" 45 ]; 46 + 47 + passthru.tests = { 48 + inherit 49 + django-allauth 50 + django-oauth-toolkit 51 + google-auth-oauthlib 52 + requests-oauthlib; 53 + }; 54 55 meta = with lib; { 56 description = "Generic, spec-compliant, thorough implementation of the OAuth request-signing logic";
+3 -3
pkgs/development/tools/go-migrate/default.nix
··· 2 3 buildGoModule rec { 4 pname = "go-migrate"; 5 - version = "4.15.2"; 6 7 src = fetchFromGitHub { 8 owner = "golang-migrate"; 9 repo = "migrate"; 10 rev = "v${version}"; 11 - sha256 = "sha256-nVR6zMG/a4VbGgR9a/6NqMNYwFTifAZW3F6rckvOEJM="; 12 }; 13 14 - vendorSha256 = "sha256-lPNPl6fqBT3XLQie9z93j91FLtrMjKbHnXUQ6b4lDb4="; 15 16 subPackages = [ "cmd/migrate" ]; 17
··· 2 3 buildGoModule rec { 4 pname = "go-migrate"; 5 + version = "4.16.0"; 6 7 src = fetchFromGitHub { 8 owner = "golang-migrate"; 9 repo = "migrate"; 10 rev = "v${version}"; 11 + sha256 = "sha256-4e5aLeA9c17rOh73dZL7TDQSdP/RuTSTF8DISMagmIg="; 12 }; 13 14 + vendorHash = "sha256-dOd5aYV7h5Bma32btEa0UpA3dnIIhwM/rl7hWrPvgMM="; 15 16 subPackages = [ "cmd/migrate" ]; 17
+3 -3
pkgs/development/tools/lightningcss/default.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "lightningcss"; 9 - version = "1.20.0"; 10 11 src = fetchFromGitHub { 12 owner = "parcel-bundler"; 13 repo = "lightningcss"; 14 rev = "refs/tags/v${version}"; 15 - sha256 = "zy1kV53ZvgMbQL5skBCmqRezooyzvv90YAIAkLmuMKc="; 16 }; 17 18 - cargoHash = "sha256-QL7O84Y6yaHL4UEbnfL8jLXH/Q6Ba4RC1NLq40Y3XDk="; 19 20 buildFeatures = [ 21 "cli"
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "lightningcss"; 9 + version = "1.21.0"; 10 11 src = fetchFromGitHub { 12 owner = "parcel-bundler"; 13 repo = "lightningcss"; 14 rev = "refs/tags/v${version}"; 15 + sha256 = "ECBW0fXX7RrsnBrClwbFIa1i9GfqaYJXIP0zm68Ds84="; 16 }; 17 18 + cargoHash = "sha256-Y7aLtsnInNnh5p5keBHrfFlIi7F1tRasDmX4BFLLicU="; 19 20 buildFeatures = [ 21 "cli"
+5 -11
pkgs/development/tools/rust/cargo-bisect-rustc/default.nix
··· 1 { stdenv 2 , lib 3 , fetchFromGitHub 4 - , fetchpatch 5 , rustPlatform 6 , pkg-config 7 , openssl ··· 13 14 rustPlatform.buildRustPackage rec { 15 pname = "cargo-bisect-rustc"; 16 - version = "0.6.5"; 17 18 src = fetchFromGitHub { 19 owner = "rust-lang"; 20 repo = pname; 21 rev = "v${version}"; 22 - hash = "sha256-E9birF4HmyDZKmwuTb5K4AMmvZQFTmnhFGSxD5bS2qQ="; 23 }; 24 25 patches = ··· 38 --subst-var libPath 39 ''; 40 in 41 - lib.optionals stdenv.isLinux [ patchelfPatch ] ++ [ 42 - (fetchpatch { 43 - name = "fix-cli-date-bounds-checking.patch"; 44 - url = "https://github.com/rust-lang/cargo-bisect-rustc/commit/baffa98e1a1ae53f6f3605303e0d765015d9d3ae.patch"; 45 - hash = "sha256-IQlwQvaPUzPK5T4Mbsrdt7Ea3elaPCw2pBCCdBhjtzM="; 46 - }) 47 - ]; 48 49 nativeBuildInputs = [ pkg-config ]; 50 buildInputs = [ 51 openssl 52 ] ++ lib.optionals stdenv.isDarwin [ 53 Security 54 ]; 55 56 - cargoHash = "sha256-7tqo8cxAzoDfTU372uW1qUhm+qqyRhz8bQ7oMiRU528="; 57 58 checkFlags = [ 59 "--skip test_github" # requires internet
··· 1 { stdenv 2 , lib 3 , fetchFromGitHub 4 , rustPlatform 5 , pkg-config 6 , openssl ··· 12 13 rustPlatform.buildRustPackage rec { 14 pname = "cargo-bisect-rustc"; 15 + version = "0.6.6"; 16 17 src = fetchFromGitHub { 18 owner = "rust-lang"; 19 repo = pname; 20 rev = "v${version}"; 21 + hash = "sha256-i/MZslGbv72MZmd31SQFc2QdDRigs8edyN2/T5V5r4k="; 22 }; 23 24 patches = ··· 37 --subst-var libPath 38 ''; 39 in 40 + lib.optionals stdenv.isLinux [ patchelfPatch ]; 41 42 nativeBuildInputs = [ pkg-config ]; 43 + 44 buildInputs = [ 45 openssl 46 ] ++ lib.optionals stdenv.isDarwin [ 47 Security 48 ]; 49 50 + cargoHash = "sha256-dnR0V2MvW4Z3jtsjXSboCRFNb22fDGu01fC40N2Deho="; 51 52 checkFlags = [ 53 "--skip test_github" # requires internet
+5 -2
pkgs/development/tools/rust/cargo-msrv/default.nix
··· 1 { lib 2 , rustPlatform 3 , fetchFromGitHub 4 - , nix-update-script 5 , pkg-config 6 , rustup 7 , openssl ··· 9 , libiconv 10 , Security 11 , makeWrapper 12 }: 13 14 rustPlatform.buildRustPackage rec { ··· 25 cargoSha256 = "sha256-/Bspy94uIP/e4uJY8qo+UPK1tnPjglxiMWeYWx2qoHk="; 26 27 passthru = { 28 - updateScript = nix-update-script { }; 29 }; 30 31 # Integration tests fail
··· 1 { lib 2 , rustPlatform 3 , fetchFromGitHub 4 , pkg-config 5 , rustup 6 , openssl ··· 8 , libiconv 9 , Security 10 , makeWrapper 11 + , gitUpdater 12 }: 13 14 rustPlatform.buildRustPackage rec { ··· 25 cargoSha256 = "sha256-/Bspy94uIP/e4uJY8qo+UPK1tnPjglxiMWeYWx2qoHk="; 26 27 passthru = { 28 + updateScript = gitUpdater { 29 + rev-prefix = "v"; 30 + ignoredVersions = ".(rc|beta).*"; 31 + }; 32 }; 33 34 # Integration tests fail
+4 -5
pkgs/development/tools/wizer/default.nix
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "wizer"; 11 - version = "1.6.0"; 12 13 # the crate does not contain files which are necessary for the tests 14 # see https://github.com/bytecodealliance/wizer/commit/3a95e27ce42f1fdaef07b52988e4699eaa221e04 15 src = fetchFromGitHub { 16 owner = "bytecodealliance"; 17 repo = "wizer"; 18 - # see https://github.com/bytecodealliance/wizer/pull/62 19 - rev = "e74c6e59562c4b7edcda506674db8aead878a893"; 20 - sha256 = "sha256-bVxjcb231Ygz+z+8D1U2YQqEdIKsostxISgYt2KecXc="; 21 }; 22 23 - cargoSha256 = "sha256-S9h47aGG5UhwNoOnUHFrtEyByg8iCMC88Cspb/6tb8c="; 24 25 cargoBuildFlags = [ "--bin" pname ]; 26
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "wizer"; 11 + version = "3.0.1"; 12 13 # the crate does not contain files which are necessary for the tests 14 # see https://github.com/bytecodealliance/wizer/commit/3a95e27ce42f1fdaef07b52988e4699eaa221e04 15 src = fetchFromGitHub { 16 owner = "bytecodealliance"; 17 repo = "wizer"; 18 + rev = "refs/tags/v${version}"; 19 + hash = "sha256-/4VkGvXlWU1jZztBCWCsJDQXTV8krIHaoyqmoXwjGIM="; 20 }; 21 22 + cargoHash = "sha256-M0EhyZH2maZCr4tWDo9ppKBM3CXEfwjUfnVksqVWKgU="; 23 24 cargoBuildFlags = [ "--bin" pname ]; 25
+27
pkgs/games/minesweep-rs/default.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "minesweep-rs"; 8 + version = "6.0.11"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "cpcloud"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + hash = "sha256-jGg6GrPDPOWvIQiZ9UJbGHLaxTxSV7EvqIcEoGrfRZ0="; 15 + }; 16 + 17 + cargoHash = "sha256-IKf44wCCzXcasuimnAwnEhJGmag67rGxQE7+rBEUVOI="; 18 + 19 + meta = with lib; { 20 + description = "Sweep some mines for fun, and probably not for profit"; 21 + homepage = "https://github.com/cpcloud/minesweep-rs"; 22 + license = licenses.asl20; 23 + mainProgram = "minesweep"; 24 + maintainers = with maintainers; [ aleksana ]; 25 + platforms = platforms.all; 26 + }; 27 + }
+4 -3
pkgs/os-specific/linux/criu/default.nix
··· 1 { stdenv, lib, fetchFromGitHub, fetchpatch, protobuf, protobufc, asciidoc, iptables 2 - , xmlto, docbook_xsl, libpaper, libnl, libcap, libnet, pkg-config, iproute2 3 - , which, python3, makeWrapper, docbook_xml_dtd_45, perl, nftables, libbsd 4 , buildPackages 5 }: 6 ··· 107 postFixup = '' 108 wrapProgram $out/bin/criu \ 109 --set-default CR_IPTABLES ${iptables}/bin/iptables \ 110 - --set-default CR_IP_TOOL ${iproute2}/bin/ip 111 wrapPythonPrograms 112 ''; 113
··· 1 { stdenv, lib, fetchFromGitHub, fetchpatch, protobuf, protobufc, asciidoc, iptables 2 + , xmlto, docbook_xsl, libpaper, libnl, libcap, libnet, pkg-config, iproute2, gzip 3 + , which, python3, makeWrapper, docbook_xml_dtd_45, perl, nftables, libbsd, gnutar 4 , buildPackages 5 }: 6 ··· 107 postFixup = '' 108 wrapProgram $out/bin/criu \ 109 --set-default CR_IPTABLES ${iptables}/bin/iptables \ 110 + --set-default CR_IP_TOOL ${iproute2}/bin/ip \ 111 + --prefix PATH : ${lib.makeBinPath [ gnutar gzip ]} 112 wrapPythonPrograms 113 ''; 114
+4 -4
pkgs/servers/invidious/versions.json
··· 4 "sha256": "sha256-EU6T9yQCdOLx98Io8o01rEsgxDFF/Xoy42LgPopD2/A=" 5 }, 6 "invidious": { 7 - "rev": "381a0e326d413daba1418bfca820bbfe2b7829a3", 8 - "sha256": "sha256-WKEp7PotbdY0Vkdc8cHYsa4XmAO1dsz72ibEgxs2r7o=", 9 - "version": "unstable-2023-05-25" 10 }, 11 "lsquic": { 12 "sha256": "sha256-hG8cUvhbCNeMOsKkaJlgGpzUrIx47E/WhmPIdI5F3qM=", 13 "version": "2.18.1" 14 }, 15 "videojs": { 16 - "sha256": "0m09pc9acpzhfwwvc9dayl60nn28skmmglgvmlp48dlkqgfbgc27" 17 } 18 }
··· 4 "sha256": "sha256-EU6T9yQCdOLx98Io8o01rEsgxDFF/Xoy42LgPopD2/A=" 5 }, 6 "invidious": { 7 + "rev": "545a5937d87d31622e87bb2ba8151f8aecd66c81", 8 + "sha256": "sha256-1Ra3nLO2DsnTvyovteF0cOIl07GHbJyPbTYBRIyKuAs=", 9 + "version": "unstable-2023-06-06" 10 }, 11 "lsquic": { 12 "sha256": "sha256-hG8cUvhbCNeMOsKkaJlgGpzUrIx47E/WhmPIdI5F3qM=", 13 "version": "2.18.1" 14 }, 15 "videojs": { 16 + "sha256": "0zj8fgxdg6jsllaxn795xipa6yxh4yf08hb8x0idyg74q37gfh4c" 17 } 18 }
+35
pkgs/servers/lenpaste/default.nix
···
··· 1 + { lib, buildGoModule, fetchFromGitea }: 2 + 3 + buildGoModule rec { 4 + pname = "lenpaste"; 5 + version = "1.3"; 6 + 7 + src = fetchFromGitea { 8 + domain = "git.lcomrade.su"; 9 + owner = "root"; 10 + repo = pname; 11 + rev = "v${version}"; 12 + sha256 = "sha256-d+FjfEbInlxUllWIoVLwQRdRWjxBLTpNHYn+oYU3fBc="; 13 + }; 14 + 15 + vendorSha256 = "sha256-PL0dysBn1+1BpZWFW/EUFJtqkabt+XN00YkAz8Yf2LQ="; 16 + 17 + ldflags = [ 18 + "-w" 19 + "-s" 20 + "-X main.Version=${version}" 21 + ]; 22 + 23 + subPackages = [ "cmd" ]; 24 + 25 + postInstall = '' 26 + mv $out/bin/cmd $out/bin/lenpaste 27 + ''; 28 + 29 + meta = with lib; { 30 + description = "A web service that allows you to share notes anonymously, an alternative to pastebin.com"; 31 + homepage = "https://git.lcomrade.su/root/lenpaste"; 32 + license = licenses.agpl3Plus; 33 + maintainers = with maintainers; [ vector1dev ]; 34 + }; 35 + }
+1 -1
pkgs/servers/matrix-synapse/matrix-hookshot/package.json
··· 1 { 2 "name": "matrix-hookshot", 3 - "version": "4.1.0", 4 "description": "A bridge between Matrix and multiple project management services, such as GitHub, GitLab and JIRA.", 5 "main": "lib/app.js", 6 "repository": "https://github.com/matrix-org/matrix-hookshot",
··· 1 { 2 "name": "matrix-hookshot", 3 + "version": "4.2.0", 4 "description": "A bridge between Matrix and multiple project management services, such as GitHub, GitLab and JIRA.", 5 "main": "lib/app.js", 6 "repository": "https://github.com/matrix-org/matrix-hookshot",
+3 -3
pkgs/servers/matrix-synapse/matrix-hookshot/pin.json
··· 1 { 2 - "version": "4.1.0", 3 - "srcHash": "TcLdZ9pSZ5T2sI6q1c+BpIFR647HUrwvamuQZ333NOg=", 4 "yarnHash": "1ydxjmr241kwhsacg4cx05951nijy6ch687xgqw4515islpb89v3", 5 - "cargoHash": "s7NOZ2fKp6i2m4HbbcIWZcZgP8n45nGZqWGG9cV+FWw=" 6 }
··· 1 { 2 + "version": "4.2.0", 3 + "srcHash": "Vdp2hLF8Sr1HZRfqzQPKbyMsaXy3TwJ5ATbOA4cK2NY=", 4 "yarnHash": "1ydxjmr241kwhsacg4cx05951nijy6ch687xgqw4515islpb89v3", 5 + "cargoHash": "32UuE5D5mNt9N2e2+nE0CoqlhcYdX7OOCT2FbkQGd/M=" 6 }
+5 -5
pkgs/servers/sql/dolt/default.nix
··· 2 3 buildGoModule rec { 4 pname = "dolt"; 5 - version = "0.40.28"; 6 7 src = fetchFromGitHub { 8 owner = "dolthub"; 9 repo = "dolt"; 10 rev = "v${version}"; 11 - sha256 = "sha256-ROwOe3/D9f8+n4S35kGiSTv2sQ8nurdSL5t1zhRnTkQ="; 12 }; 13 14 modRoot = "./go"; 15 - subPackages = [ "cmd/dolt" "cmd/git-dolt" "cmd/git-dolt-smudge" ]; 16 - vendorSha256 = "sha256-hr3PotsHk/BpOm4QLM84Jd5ZBGaj/xp/qWPfbBpKF00="; 17 - 18 doCheck = false; 19 20 meta = with lib; {
··· 2 3 buildGoModule rec { 4 pname = "dolt"; 5 + version = "1.2.2"; 6 7 src = fetchFromGitHub { 8 owner = "dolthub"; 9 repo = "dolt"; 10 rev = "v${version}"; 11 + sha256 = "sha256-4WnHJzHxd3wK1kEN2fvnp6PPnTnL28TTnOD0th2UK1U="; 12 }; 13 14 modRoot = "./go"; 15 + subPackages = [ "cmd/dolt" ]; 16 + vendorSha256 = "sha256-hzhAuM6xPKl0KTlf02hAs7+jKX93JWe6aLfBwHWV8Eg="; 17 + proxyVendor = true; 18 doCheck = false; 19 20 meta = with lib; {
+8 -1
pkgs/servers/sql/mariadb/default.nix
··· 270 inherit (self.darwin.apple_sdk.frameworks) CoreServices; 271 }; 272 mariadb_1011 = self.callPackage generic { 273 - # Supported until 2028-02-16. TODO: make this the default, at some point 274 version = "10.11.3"; 275 hash = "sha256-sGWw8ypun9R55Wb9ZnFFA3mIbY3aLZp++TCvHlwmwMc="; 276 inherit (self.darwin) cctools; 277 inherit (self.darwin.apple_sdk.frameworks) CoreServices; 278 };
··· 270 inherit (self.darwin.apple_sdk.frameworks) CoreServices; 271 }; 272 mariadb_1011 = self.callPackage generic { 273 + # Supported until 2028-02-16 274 version = "10.11.3"; 275 hash = "sha256-sGWw8ypun9R55Wb9ZnFFA3mIbY3aLZp++TCvHlwmwMc="; 276 + inherit (self.darwin) cctools; 277 + inherit (self.darwin.apple_sdk.frameworks) CoreServices; 278 + }; 279 + mariadb_110 = self.callPackage generic { 280 + # Supported until 2024-06-07 281 + version = "11.0.2"; 282 + hash = "sha256-PHFXbK0OpBaIInDjg/lMyJaTt/vM4fpPMG/j6THkZK4="; 283 inherit (self.darwin) cctools; 284 inherit (self.darwin.apple_sdk.frameworks) CoreServices; 285 };
+1 -1
pkgs/servers/web-apps/lemmy/package.json
··· 1 { 2 "name": "lemmy-ui", 3 "description": "An isomorphic UI for lemmy", 4 - "version": "0.17.2", 5 "author": "Dessalines <tyhou13@gmx.com>", 6 "license": "AGPL-3.0", 7 "scripts": {
··· 1 { 2 "name": "lemmy-ui", 3 "description": "An isomorphic UI for lemmy", 4 + "version": "0.17.3", 5 "author": "Dessalines <tyhou13@gmx.com>", 6 "license": "AGPL-3.0", 7 "scripts": {
+4 -4
pkgs/servers/web-apps/lemmy/pin.json
··· 1 { 2 - "version": "0.17.2", 3 - "serverSha256": "sha256-fkpMVm52XLyrk9RfzJpthT8fctIilawAIgfK+4TXHvU=", 4 - "serverCargoSha256": "sha256-AC6EP612uaeGfqHbrHrz89h0tsNlMceEg6GxEsm1QMA=", 5 - "uiSha256": "sha256-0Zhm6Jgc6rlN4c7ryRnR45+fZEdzQhuOXSwU8Wz0D5g=", 6 "uiYarnDepsSha256": "sha256-aZAclSaFZJvuK+FpCBWboGaVEOEJTxq2jnWk0A6iAFw=" 7 }
··· 1 { 2 + "version": "0.17.3", 3 + "serverSha256": "sha256-BOYJQLxamzfHKzfbzJEL3BEwPAlJegc+BBi0eSxuTW4=", 4 + "serverCargoSha256": "sha256-gYWcaSIPR8FXk6blzEnuN27v5fushwk4LJEl6g3W+W8=", 5 + "uiSha256": "sha256-MsQjfX0hS1eZMQql7xWQZKAM2H4EzbbLKZcAw4mfiCE=", 6 "uiYarnDepsSha256": "sha256-aZAclSaFZJvuK+FpCBWboGaVEOEJTxq2jnWk0A6iAFw=" 7 }
+2 -1
pkgs/servers/web-apps/lemmy/update.sh
··· 14 jq -r '.tag_name') 15 const latest_version = $(echo $latest_rev) 16 const current_version = $(jq -r '.version' $directory/pin.json) 17 - if (latest_version === $current_version) { 18 echo "lemmy is already up-to-date" 19 return 0 20 } else {
··· 14 jq -r '.tag_name') 15 const latest_version = $(echo $latest_rev) 16 const current_version = $(jq -r '.version' $directory/pin.json) 17 + echo "latest version: $latest_version, current version: $current_version" 18 + if ("$latest_version" === "$current_version") { 19 echo "lemmy is already up-to-date" 20 return 0 21 } else {
+3 -3
pkgs/shells/nushell/default.nix
··· 24 25 rustPlatform.buildRustPackage ( 26 let 27 - version = "0.80.0"; 28 pname = "nushell"; 29 in { 30 inherit version pname; ··· 33 owner = pname; 34 repo = pname; 35 rev = version; 36 - hash = "sha256-XPN2ziwQNOilYei9SQ+e8w7g90e7/qGXgU8Gb28c5Wc="; 37 }; 38 39 - cargoHash = "sha256-j3YYKEGB/fDQVQIsGx+/gjPQggtQ+7YcmGi1V7bJJqM="; 40 41 nativeBuildInputs = [ pkg-config ] 42 ++ lib.optionals (withDefaultFeatures && stdenv.isLinux) [ python3 ]
··· 24 25 rustPlatform.buildRustPackage ( 26 let 27 + version = "0.81.0"; 28 pname = "nushell"; 29 in { 30 inherit version pname; ··· 33 owner = pname; 34 repo = pname; 35 rev = version; 36 + hash = "sha256-Hcr4mSx5qSMNe7/UTR6iXV3IyTBiRgfWS7vYf3FIxQA="; 37 }; 38 39 + cargoHash = "sha256-Xa8mQVz3uOw212aLlRfM4GmA0vjjt/5SjQ5biOLcqEc="; 40 41 nativeBuildInputs = [ pkg-config ] 42 ++ lib.optionals (withDefaultFeatures && stdenv.isLinux) [ python3 ]
+3 -3
pkgs/tools/admin/pgadmin/default.nix
··· 14 15 let 16 pname = "pgadmin"; 17 - version = "7.2"; 18 - yarnSha256 = "sha256-9iuD0cy0PEtx9Jc626LtE0sAOtP451TGlFKGtC8Tjs4="; 19 20 src = fetchFromGitHub { 21 owner = "pgadmin-org"; 22 repo = "pgadmin4"; 23 rev = "REL-${lib.versions.major version}_${lib.versions.minor version}"; 24 - hash = "sha256-RefEuP/Oh4X6knnIBnPrlITXFHbbL2U9yfvc4Ng6VJ4="; 25 }; 26 27 # keep the scope, as it is used throughout the derivation and tests
··· 14 15 let 16 pname = "pgadmin"; 17 + version = "7.3"; 18 + yarnSha256 = "sha256-gbFAeTB24EU0SWSAMnPus1rcgQmHcPySb6wXX3xKnvg="; 19 20 src = fetchFromGitHub { 21 owner = "pgadmin-org"; 22 repo = "pgadmin4"; 23 rev = "REL-${lib.versions.major version}_${lib.versions.minor version}"; 24 + hash = "sha256-7qdM/CkrSy9g85WhaG57O9uqHIwQIpOThHKxGs+U0dQ="; 25 }; 26 27 # keep the scope, as it is used throughout the derivation and tests
+19 -39
pkgs/tools/admin/pgadmin/yarn.lock
··· 1360 "@jridgewell/resolve-uri" "3.1.0" 1361 "@jridgewell/sourcemap-codec" "1.4.14" 1362 1363 - "@material-ui/core@4.11.0": 1364 - version "4.11.0" 1365 - resolved "https://registry.npmjs.org/@material-ui/core/-/core-4.11.0.tgz#b69b26e4553c9e53f2bfaf1053e216a0af9be15a" 1366 - integrity sha512-bYo9uIub8wGhZySHqLQ833zi4ZML+XCBE1XwJ8EuUVSpTWWG57Pm+YugQToJNFsEyiKFhPh8DPD0bgupz8n01g== 1367 dependencies: 1368 "@babel/runtime" "^7.4.4" 1369 - "@material-ui/styles" "^4.10.0" 1370 - "@material-ui/system" "^4.9.14" 1371 - "@material-ui/types" "^5.1.0" 1372 - "@material-ui/utils" "^4.10.2" 1373 "@types/react-transition-group" "^4.2.0" 1374 clsx "^1.0.4" 1375 hoist-non-react-statics "^3.3.2" 1376 popper.js "1.16.1-lts" 1377 prop-types "^15.7.2" 1378 - react-is "^16.8.0" 1379 react-transition-group "^4.4.0" 1380 1381 "@material-ui/icons@^4.11.2": ··· 1408 react-transition-group "^4.0.0" 1409 rifm "^0.7.0" 1410 1411 - "@material-ui/styles@^4.10.0": 1412 version "4.11.5" 1413 resolved "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.5.tgz#19f84457df3aafd956ac863dbe156b1d88e2bbfb" 1414 integrity sha512-o/41ot5JJiUsIETME9wVLAJrmIWL3j0R0Bj2kCOLbSfqEkKf0fmaPt+5vtblUh5eXr2S+J/8J3DaCb10+CzPGA== ··· 1430 jss-plugin-vendor-prefixer "^10.5.1" 1431 prop-types "^15.7.2" 1432 1433 - "@material-ui/system@^4.9.14": 1434 version "4.12.2" 1435 resolved "https://registry.npmjs.org/@material-ui/system/-/system-4.12.2.tgz#f5c389adf3fce4146edd489bf4082d461d86aa8b" 1436 integrity sha512-6CSKu2MtmiJgcCGf6nBQpM8fLkuB9F55EKfbdTC80NND5wpTmKzwdhLYLH3zL4cLlK0gVaaltW7/wMuyTnN0Lw== ··· 1445 resolved "https://registry.npmjs.org/@material-ui/types/-/types-5.1.0.tgz#efa1c7a0b0eaa4c7c87ac0390445f0f88b0d88f2" 1446 integrity sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A== 1447 1448 - "@material-ui/types@^5.1.0": 1449 - version "5.1.8" 1450 - resolved "https://registry.npmjs.org/@material-ui/types/-/types-5.1.8.tgz#1fd3ceeab7d87da2a35e50991b715408140397a9" 1451 - integrity sha512-+1zGA2Vn8TaYxk7xe2iou3N68uPkjeR/tVmSI8RCybtzz0BxRGiG8hLJahxZAhPC3gGYCLkqgIEnMa015pLQ7Q== 1452 - 1453 - "@material-ui/utils@^4.10.2", "@material-ui/utils@^4.11.2", "@material-ui/utils@^4.11.3": 1454 version "4.11.3" 1455 resolved "https://registry.npmjs.org/@material-ui/utils/-/utils-4.11.3.tgz#232bd86c4ea81dab714f21edad70b7fdf0253942" 1456 integrity sha512-ZuQPV4rBK/V1j2dIkSSEcH5uT6AaHuKWFfotADHsC0wVL1NLd2WkFCm4ZZbX33iO4ydl6V0GPngKm8HZQ2oujg== ··· 7187 resolved "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" 7188 integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== 7189 7190 - mini-css-extract-plugin@^1.3.5: 7191 - version "1.6.2" 7192 - resolved "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz#83172b4fd812f8fc4a09d6f6d16f924f53990ca8" 7193 - integrity sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q== 7194 dependencies: 7195 - loader-utils "^2.0.0" 7196 - schema-utils "^3.0.0" 7197 - webpack-sources "^1.1.0" 7198 7199 "minimalistic-assert@^1.0.0", "minimalistic-assert@^1.0.1": 7200 version "1.0.1" ··· 8739 resolved "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" 8740 integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== 8741 8742 - "react-is@^16.12.0", "react-is@^16.13.1", "react-is@^16.7.0", "react-is@^16.8.0": 8743 version "16.13.1" 8744 resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 8745 integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== ··· 9515 resolved "https://registry.npmjs.org/source-list-map/-/source-list-map-1.1.2.tgz#9889019d1024cce55cdc069498337ef6186a11a1" 9516 integrity sha512-FqR2O+cX+toUD3ULVIgTtiqYIqPnA62ehJD47mf4LG1PZCB+xmIa3gcTEhegGbP22aRPh88dJSdgDIolrvSxBQ== 9517 9518 - source-list-map@^2.0.0: 9519 - version "2.0.1" 9520 - resolved "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" 9521 - integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== 9522 - 9523 "source-map-js@>=0.6.2 <2.0.0", "source-map-js@^1.0.2": 9524 version "1.0.2" 9525 resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" ··· 9538 resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 9539 integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== 9540 9541 - "source-map@^0.6.0", "source-map@^0.6.1", "source-map@~0.6.1": 9542 version "0.6.1" 9543 resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 9544 integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== ··· 10545 dependencies: 10546 source-list-map "^1.1.1" 10547 source-map "~0.5.3" 10548 - 10549 - webpack-sources@^1.1.0: 10550 - version "1.4.3" 10551 - resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" 10552 - integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ== 10553 - dependencies: 10554 - source-list-map "^2.0.0" 10555 - source-map "~0.6.1" 10556 10557 webpack-sources@^3.2.3: 10558 version "3.2.3"
··· 1360 "@jridgewell/resolve-uri" "3.1.0" 1361 "@jridgewell/sourcemap-codec" "1.4.14" 1362 1363 + "@material-ui/core@4.12.4": 1364 + version "4.12.4" 1365 + resolved "https://registry.npmjs.org/@material-ui/core/-/core-4.12.4.tgz#4ac17488e8fcaf55eb6a7f5efb2a131e10138a73" 1366 + integrity sha512-tr7xekNlM9LjA6pagJmL8QCgZXaubWUwkJnoYcMKd4gw/t4XiyvnTkjdGrUVicyB2BsdaAv1tvow45bPM4sSwQ== 1367 dependencies: 1368 "@babel/runtime" "^7.4.4" 1369 + "@material-ui/styles" "^4.11.5" 1370 + "@material-ui/system" "^4.12.2" 1371 + "@material-ui/types" "5.1.0" 1372 + "@material-ui/utils" "^4.11.3" 1373 "@types/react-transition-group" "^4.2.0" 1374 clsx "^1.0.4" 1375 hoist-non-react-statics "^3.3.2" 1376 popper.js "1.16.1-lts" 1377 prop-types "^15.7.2" 1378 + react-is "^16.8.0 || ^17.0.0" 1379 react-transition-group "^4.4.0" 1380 1381 "@material-ui/icons@^4.11.2": ··· 1408 react-transition-group "^4.0.0" 1409 rifm "^0.7.0" 1410 1411 + "@material-ui/styles@^4.11.5": 1412 version "4.11.5" 1413 resolved "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.5.tgz#19f84457df3aafd956ac863dbe156b1d88e2bbfb" 1414 integrity sha512-o/41ot5JJiUsIETME9wVLAJrmIWL3j0R0Bj2kCOLbSfqEkKf0fmaPt+5vtblUh5eXr2S+J/8J3DaCb10+CzPGA== ··· 1430 jss-plugin-vendor-prefixer "^10.5.1" 1431 prop-types "^15.7.2" 1432 1433 + "@material-ui/system@^4.12.2": 1434 version "4.12.2" 1435 resolved "https://registry.npmjs.org/@material-ui/system/-/system-4.12.2.tgz#f5c389adf3fce4146edd489bf4082d461d86aa8b" 1436 integrity sha512-6CSKu2MtmiJgcCGf6nBQpM8fLkuB9F55EKfbdTC80NND5wpTmKzwdhLYLH3zL4cLlK0gVaaltW7/wMuyTnN0Lw== ··· 1445 resolved "https://registry.npmjs.org/@material-ui/types/-/types-5.1.0.tgz#efa1c7a0b0eaa4c7c87ac0390445f0f88b0d88f2" 1446 integrity sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A== 1447 1448 + "@material-ui/utils@^4.11.2", "@material-ui/utils@^4.11.3": 1449 version "4.11.3" 1450 resolved "https://registry.npmjs.org/@material-ui/utils/-/utils-4.11.3.tgz#232bd86c4ea81dab714f21edad70b7fdf0253942" 1451 integrity sha512-ZuQPV4rBK/V1j2dIkSSEcH5uT6AaHuKWFfotADHsC0wVL1NLd2WkFCm4ZZbX33iO4ydl6V0GPngKm8HZQ2oujg== ··· 7182 resolved "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" 7183 integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== 7184 7185 + mini-css-extract-plugin@^2.7.6: 7186 + version "2.7.6" 7187 + resolved "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz#282a3d38863fddcd2e0c220aaed5b90bc156564d" 7188 + integrity sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw== 7189 dependencies: 7190 + schema-utils "^4.0.0" 7191 7192 "minimalistic-assert@^1.0.0", "minimalistic-assert@^1.0.1": 7193 version "1.0.1" ··· 8732 resolved "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" 8733 integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== 8734 8735 + "react-is@^16.12.0", "react-is@^16.13.1", "react-is@^16.7.0": 8736 version "16.13.1" 8737 resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 8738 integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== ··· 9508 resolved "https://registry.npmjs.org/source-list-map/-/source-list-map-1.1.2.tgz#9889019d1024cce55cdc069498337ef6186a11a1" 9509 integrity sha512-FqR2O+cX+toUD3ULVIgTtiqYIqPnA62ehJD47mf4LG1PZCB+xmIa3gcTEhegGbP22aRPh88dJSdgDIolrvSxBQ== 9510 9511 "source-map-js@>=0.6.2 <2.0.0", "source-map-js@^1.0.2": 9512 version "1.0.2" 9513 resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" ··· 9526 resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 9527 integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== 9528 9529 + "source-map@^0.6.0", "source-map@^0.6.1": 9530 version "0.6.1" 9531 resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 9532 integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== ··· 10533 dependencies: 10534 source-list-map "^1.1.1" 10535 source-map "~0.5.3" 10536 10537 webpack-sources@^3.2.3: 10538 version "3.2.3"
-81
pkgs/tools/graphics/luxcorerender/default.nix
··· 1 - { lib, config, stdenv, fetchFromGitHub, symlinkJoin, wrapGAppsHook, cmake, boost172 2 - , pkg-config, flex, bison, libpng, libtiff, zlib, python3, embree, openexr 3 - , openimagedenoise, openimageio_1, tbb, c-blosc, gtk3, pcre, doxygen 4 - # OpenCL Support 5 - , withOpenCL ? true, ocl-icd 6 - # Cuda Support 7 - , withCuda ? config.cudaSupport or false, cudatoolkit }: 8 - 9 - let 10 - boostWithPython = boost172.override { 11 - enablePython = true; 12 - enableNumpy = true; 13 - python = python3; 14 - }; 15 - 16 - # Requires a version number like "<MAJOR><MINOR>" 17 - pythonVersion = (lib.versions.major python3.version) 18 - + (lib.versions.minor python3.version); 19 - 20 - in stdenv.mkDerivation rec { 21 - pname = "luxcorerender"; 22 - version = "2.4"; 23 - 24 - src = fetchFromGitHub { 25 - owner = "LuxCoreRender"; 26 - repo = "LuxCore"; 27 - rev = "luxcorerender_v${version}"; 28 - sha256 = "0xvivw79719fa1q762b76nyvzawfd3hmp8y5j04bax8a7f8mfa9k"; 29 - }; 30 - 31 - nativeBuildInputs = [ pkg-config cmake flex bison doxygen wrapGAppsHook ]; 32 - 33 - buildInputs = [ 34 - libpng 35 - libtiff 36 - zlib 37 - boostWithPython.dev 38 - python3 39 - embree 40 - openexr 41 - openimagedenoise 42 - tbb 43 - c-blosc 44 - gtk3 45 - pcre 46 - openimageio_1.dev 47 - openimageio_1.out 48 - ] ++ lib.optionals withOpenCL [ ocl-icd ] 49 - ++ lib.optionals withCuda [ cudatoolkit ]; 50 - 51 - cmakeFlags = [ "-DPYTHON_V=${pythonVersion}" ] 52 - ++ lib.optional (!withOpenCL) "-DLUXRAYS_DISABLE_OPENCL=1" 53 - ++ lib.optional (!withCuda) "-DLUXRAYS_DISABLE_CUDA=1"; 54 - 55 - preConfigure = '' 56 - NIX_LDFLAGS+=" -lpython3" 57 - ''; 58 - 59 - installPhase = '' 60 - mkdir -p $out/bin 61 - mkdir -p $out/lib 62 - cp -va bin/* $out/bin 63 - cp -va lib/* $out/lib 64 - ''; 65 - 66 - meta = with lib; { 67 - description = "Open source, physically based, unbiased rendering engine"; 68 - homepage = "https://luxcorerender.org/"; 69 - maintainers = with maintainers; [ hodapp ]; 70 - license = licenses.asl20; 71 - platforms = platforms.linux; 72 - }; 73 - } 74 - 75 - # TODO (might not be necessary): 76 - # 77 - # luxcoreui still gives warnings like: "failed to commit changes to 78 - # dconf: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The 79 - # name ca.desrt.dconf was not provided by any .service files" 80 - 81 - # CMake complains of the FindOpenGL/GLVND preference
···
+20 -13
pkgs/tools/graphics/vulkan-cts/default.nix
··· 35 amber = fetchFromGitHub { 36 owner = "google"; 37 repo = "amber"; 38 - rev = "8b145a6c89dcdb4ec28173339dd176fb7b6f43ed"; 39 - hash = "sha256-+xFYlUs13khT6r475eJJ+XS875h2sb+YbJ8ZN4MOSAA="; 40 }; 41 jsoncpp = fetchFromGitHub { 42 owner = "open-source-parsers"; ··· 47 glslang = fetchFromGitHub { 48 owner = "KhronosGroup"; 49 repo = "glslang"; 50 - rev = "a0ad0d7067521fff880e36acfb8ce453421c3f25"; 51 - hash = "sha256-ZKkFHGitLjw5LPJW1TswIJ+KulkrS8C4G3dUF5U/F2c="; 52 }; 53 spirv-tools = fetchFromGitHub { 54 owner = "KhronosGroup"; 55 repo = "SPIRV-Tools"; 56 - rev = "f98473ceeb1d33700d01e20910433583e5256030"; 57 - hash = "sha256-RSUmfp9QZ7yRbLdFygz9mDfrgUUT8og+ZD9/6VkghMo="; 58 }; 59 spirv-headers = fetchFromGitHub { 60 owner = "KhronosGroup"; 61 repo = "SPIRV-Headers"; 62 - rev = "87d5b782bec60822aa878941e6b13c0a9a954c9b"; 63 - hash = "sha256-Bv10LM6YXaH2V64oqAcrps23higHzCjlIYYBob5zS4A="; 64 }; 65 video-parser = fetchFromGitHub { 66 owner = "nvpro-samples"; ··· 71 vulkan-docs = fetchFromGitHub { 72 owner = "KhronosGroup"; 73 repo = "Vulkan-Docs"; 74 - rev = "9a2e576a052a1e65a5d41b593e693ff02745604b"; 75 - hash = "sha256-DBA2FeV0G/HI8GUMtGYO52jk7wM4HMlKLDA4b+Wmo+k="; 76 }; 77 in 78 stdenv.mkDerivation (finalAttrs: { 79 pname = "vulkan-cts"; 80 - version = "1.3.5.2"; 81 82 src = fetchFromGitHub { 83 owner = "KhronosGroup"; 84 repo = "VK-GL-CTS"; 85 rev = "${finalAttrs.pname}-${finalAttrs.version}"; 86 - hash = "sha256-79N0DX+yQhTuAhspBmeqM/iFQpJ1LabKyFfzHoLLbeg="; 87 }; 88 89 outputs = [ "out" "lib" ]; 90 91 prePatch = '' 92 - mkdir -p external/renderdoc/src external/spirv-headers external/video-parser external/vulkan-docs 93 94 cp -r ${renderdoc} external/renderdoc/src/renderdoc_app.h 95 96 cp -r ${amber} external/amber/src 97 cp -r ${jsoncpp} external/jsoncpp/src 98 cp -r ${glslang} external/glslang/src 99 cp -r ${spirv-tools} external/spirv-tools/src
··· 35 amber = fetchFromGitHub { 36 owner = "google"; 37 repo = "amber"; 38 + rev = "933ecb4d6288675a92eb1650e0f52b1d7afe8273"; 39 + hash = "sha256-v9z4gv/mTjaCkByZn6uDpMteQuIf0FzZXeKyoXfFjXo="; 40 + }; 41 + esextractor = fetchFromGitHub { 42 + owner = "Igalia"; 43 + repo = "ESExtractor"; 44 + rev = "v0.2.5"; 45 + hash = "sha256-A3lyTTarR1ZJrXcrLDR5D7H1kBwJNyrPPjEklRM9YBY="; 46 }; 47 jsoncpp = fetchFromGitHub { 48 owner = "open-source-parsers"; ··· 53 glslang = fetchFromGitHub { 54 owner = "KhronosGroup"; 55 repo = "glslang"; 56 + rev = "cd2082e0584d4e39d11e3f401184e0d558ab304f"; 57 + hash = "sha256-j7O0j4E8lQ9tqAiuhnD/t6VL45OUvntsoKlhiuCXet4="; 58 }; 59 spirv-tools = fetchFromGitHub { 60 owner = "KhronosGroup"; 61 repo = "SPIRV-Tools"; 62 + rev = "01828dac778d08f4ebafd2e06bd419f6c84e5984"; 63 + hash = "sha256-i1rDMVpUiNdacDe20DsN67/rzK5V434EzfSv97y+xGU="; 64 }; 65 spirv-headers = fetchFromGitHub { 66 owner = "KhronosGroup"; 67 repo = "SPIRV-Headers"; 68 + rev = "1feaf4414eb2b353764d01d88f8aa4bcc67b60db"; 69 + hash = "sha256-VOq3r6ZcbDGGxjqC4IoPMGC5n1APUPUAs9xcRzxdyfk="; 70 }; 71 video-parser = fetchFromGitHub { 72 owner = "nvpro-samples"; ··· 77 vulkan-docs = fetchFromGitHub { 78 owner = "KhronosGroup"; 79 repo = "Vulkan-Docs"; 80 + rev = "9fff8b252a3688c0231fa78709084bbe677d3bf7"; 81 + hash = "sha256-KpKsKTY5xCSZ5Y92roa0fq/iqc1hVJNS7l87RFcxyRQ="; 82 }; 83 in 84 stdenv.mkDerivation (finalAttrs: { 85 pname = "vulkan-cts"; 86 + version = "1.3.6.0"; 87 88 src = fetchFromGitHub { 89 owner = "KhronosGroup"; 90 repo = "VK-GL-CTS"; 91 rev = "${finalAttrs.pname}-${finalAttrs.version}"; 92 + hash = "sha256-PWkY5PFoxKosteRgbo6aRqGFHBkoEPFcg6NN8EquD8U="; 93 }; 94 95 outputs = [ "out" "lib" ]; 96 97 prePatch = '' 98 + mkdir -p external/ESExtractor external/renderdoc/src external/spirv-headers external/video-parser external/vulkan-docs 99 100 cp -r ${renderdoc} external/renderdoc/src/renderdoc_app.h 101 102 cp -r ${amber} external/amber/src 103 + cp -r ${esextractor} external/ESExtractor/src 104 cp -r ${jsoncpp} external/jsoncpp/src 105 cp -r ${glslang} external/glslang/src 106 cp -r ${spirv-tools} external/spirv-tools/src
+4 -4
pkgs/tools/networking/nexttrace/default.nix
··· 2 3 buildGoModule rec { 4 pname = "nexttrace"; 5 - version = "1.1.6"; 6 7 src = fetchFromGitHub { 8 owner = "sjlleo"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-nANxqASwvYYoTTZeQpHyJfldS58rmKga+I5QYMRgvQA="; 12 }; 13 - vendorHash = "sha256-1geVqj4W9HoMCM1OkGqpYqHj2jGoGEU9Zv6fkaHBzpk="; 14 15 doCheck = false; # Tests require a network connection. 16 17 ldflags = [ 18 "-s" 19 "-w" 20 - "-X github.com/xgadget-lab/nexttrace/printer.version=v${version}" 21 ]; 22 23 meta = with lib; {
··· 2 3 buildGoModule rec { 4 pname = "nexttrace"; 5 + version = "1.1.7-1"; 6 7 src = fetchFromGitHub { 8 owner = "sjlleo"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-ZMbX37gi9aGamDtoTdfUMiCPieP4DhjBSE5CIJLK6Z0="; 12 }; 13 + vendorHash = "sha256-u5EIzYWr81tmMmImoRH0wT7aD3/0tx+W3CXeymWVACM="; 14 15 doCheck = false; # Tests require a network connection. 16 17 ldflags = [ 18 "-s" 19 "-w" 20 + "-X github.com/xgadget-lab/nexttrace/config.Version=v${version}" 21 ]; 22 23 meta = with lib; {
+2 -2
pkgs/tools/package-management/dpkg/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "dpkg"; 7 - version = "1.21.21ubuntu1"; 8 9 src = fetchgit { 10 url = "https://git.launchpad.net/ubuntu/+source/dpkg"; 11 rev = "applied/${version}"; 12 - hash = "sha256-ZrJdf4oEvNeSMVHB8/TJgz5+YqLhih70ktLdnDurhUc="; 13 }; 14 15 configureFlags = [
··· 4 5 stdenv.mkDerivation rec { 6 pname = "dpkg"; 7 + version = "1.21.22"; 8 9 src = fetchgit { 10 url = "https://git.launchpad.net/ubuntu/+source/dpkg"; 11 rev = "applied/${version}"; 12 + hash = "sha256-tP2PNUrq90CXVDJZM7TG42dSEUVW2iQjaOVRjF7leSc="; 13 }; 14 15 configureFlags = [
+3 -2
pkgs/tools/security/exploitdb/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "exploitdb"; 9 - version = "2023-06-05"; 10 11 src = fetchFromGitLab { 12 owner = "exploit-database"; 13 repo = pname; 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-OhcYBct+ADyEk3VszQr/A+igB4mI/1BBedNzAfuHQ+k="; 16 }; 17 18 nativeBuildInputs = [ ··· 33 license = with licenses; [ gpl2Plus gpl3Plus mit ]; 34 maintainers = with maintainers; [ applePrincess fab ]; 35 mainProgram = "searchsploit"; 36 }; 37 }
··· 6 7 stdenv.mkDerivation rec { 8 pname = "exploitdb"; 9 + version = "2023-06-07"; 10 11 src = fetchFromGitLab { 12 owner = "exploit-database"; 13 repo = pname; 14 rev = "refs/tags/${version}"; 15 + hash = "sha256-1MWmIBPRwQtwkR0dR47RqgWyn3WhWy5eXzA/3pxf2MM="; 16 }; 17 18 nativeBuildInputs = [ ··· 33 license = with licenses; [ gpl2Plus gpl3Plus mit ]; 34 maintainers = with maintainers; [ applePrincess fab ]; 35 mainProgram = "searchsploit"; 36 + platforms = platforms.unix; 37 }; 38 }
+26
pkgs/tools/text/jotdown/default.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "jotdown"; 8 + version = "0.3.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "hellux"; 12 + repo = "jotdown"; 13 + rev = version; 14 + hash = "sha256-SdMj2/r/QhmgS1T3Ve4ypQ2nDjoSRkEtWzQCcbFWP5A="; 15 + }; 16 + 17 + cargoHash = "sha256-OzLPlWZwDEO8TPk79LHCRLtMFxZigaIAbLM75KDqyj4="; 18 + 19 + meta = with lib; { 20 + description = "A minimal Djot CLI"; 21 + homepage = "https://github.com/hellux/jotdown"; 22 + changelog = "https://github.com/hellux/jotdown/blob/${src.rev}/CHANGELOG.md"; 23 + license = licenses.mit; 24 + maintainers = with maintainers; [ figsoda ]; 25 + }; 26 + }
+3 -3
pkgs/tools/text/repgrep/default.nix
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "repgrep"; 12 - version = "0.12.4"; 13 14 src = fetchFromGitHub { 15 owner = "acheronfail"; 16 repo = "repgrep"; 17 rev = version; 18 - hash = "sha256-tMv0MdFlDEYx8lNINfnhX6WgcpVLm1fTlaUddej5KRc="; 19 }; 20 21 - cargoHash = "sha256-NjPFoVPHjwG74ZNStYaNMzwdX488xDjGJu92+UWC2z8="; 22 23 nativeBuildInputs = [ 24 asciidoctor
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "repgrep"; 12 + version = "0.13.0"; 13 14 src = fetchFromGitHub { 15 owner = "acheronfail"; 16 repo = "repgrep"; 17 rev = version; 18 + hash = "sha256-B286fU25GwDB7oqm5sbCoznzm71eKWJuUP8I7BEi7Hs="; 19 }; 20 21 + cargoHash = "sha256-TWu/TQsv8FM60kNPIxn6TiTHgHlKtSjubnfbg6IfS10="; 22 23 nativeBuildInputs = [ 24 asciidoctor
+2
pkgs/top-level/aliases.nix
··· 1003 lua5_sec = throw "'lua5_sec' has been renamed to/replaced by 'luaPackages.luasec'"; # Converted to throw 2022-02-22 1004 lumo = throw "lumo has been removed: abandoned by upstream"; # Added 2022-04-25 1005 lumpy = throw "lumpy has been removed from nixpkgs, as it is stuck on python2"; # Added 2022-01-12 1006 lxappearance-gtk3 = throw "lxappearance-gtk3 has been removed. Use lxappearance instead, which now defaults to Gtk3"; # Added 2020-06-03 1007 lzma = xz; # moved from top-level 2021-03-14 1008 ··· 1188 openconnect_unstable = throw "openconnect_unstable was removed from nixpkgs as it was not being updated"; # Added 2023-06-01 1189 openelec-dvb-firmware = libreelec-dvb-firmware; # Added 2021-05-10 1190 openexr_ctl = throw "'openexr_ctl' has been renamed to/replaced by 'ctl'"; # Converted to throw 2022-02-22 1191 openimageio2 = openimageio; # Added 2023-01-05 1192 openisns = open-isns; # Added 2020-01-28 1193 openjpeg_1 = throw "openjpeg_1 has been removed, use openjpeg_2 instead"; # Added 2021-01-24
··· 1003 lua5_sec = throw "'lua5_sec' has been renamed to/replaced by 'luaPackages.luasec'"; # Converted to throw 2022-02-22 1004 lumo = throw "lumo has been removed: abandoned by upstream"; # Added 2022-04-25 1005 lumpy = throw "lumpy has been removed from nixpkgs, as it is stuck on python2"; # Added 2022-01-12 1006 + luxcorerender = throw "'luxcorerender' has been removed as it's unmaintained and broken in nixpkgs since a while ago"; # Added 2023-06-07 1007 lxappearance-gtk3 = throw "lxappearance-gtk3 has been removed. Use lxappearance instead, which now defaults to Gtk3"; # Added 2020-06-03 1008 lzma = xz; # moved from top-level 2021-03-14 1009 ··· 1189 openconnect_unstable = throw "openconnect_unstable was removed from nixpkgs as it was not being updated"; # Added 2023-06-01 1190 openelec-dvb-firmware = libreelec-dvb-firmware; # Added 2021-05-10 1191 openexr_ctl = throw "'openexr_ctl' has been renamed to/replaced by 'ctl'"; # Converted to throw 2022-02-22 1192 + openimagedenoise_1_2_x = throw "'openimagedenoise_1_2_x' has been renamed to/replaced by 'openimagedenoise'"; # Added 2023-06-07 1193 openimageio2 = openimageio; # Added 2023-01-05 1194 openisns = open-isns; # Added 2020-01-28 1195 openjpeg_1 = throw "openjpeg_1 has been removed, use openjpeg_2 instead"; # Added 2021-01-24
+16 -9
pkgs/top-level/all-packages.nix
··· 5386 5387 lexicon = callPackage ../tools/admin/lexicon { }; 5388 5389 lief = callPackage ../development/libraries/lief { 5390 python = python3; 5391 }; ··· 9000 9001 jot = callPackage ../applications/misc/jot { }; 9002 9003 journaldriver = callPackage ../tools/misc/journaldriver { }; 9004 9005 jp = callPackage ../development/tools/jp { }; ··· 10005 10006 lziprecover = callPackage ../tools/compression/lziprecover { }; 10007 10008 - luxcorerender = callPackage ../tools/graphics/luxcorerender { 10009 - openimagedenoise = openimagedenoise_1_2_x; 10010 - }; 10011 - 10012 xz = callPackage ../tools/compression/xz { }; 10013 10014 lz4 = callPackage ../tools/compression/lz4 { }; ··· 10872 openhantek6022 = libsForQt5.callPackage ../applications/science/electronics/openhantek6022 { }; 10873 10874 openimagedenoise = callPackage ../development/libraries/openimagedenoise { }; 10875 - 10876 - openimagedenoise_1_2_x = callPackage ../development/libraries/openimagedenoise/1_2_x.nix { }; 10877 10878 openmvg = callPackage ../applications/science/misc/openmvg { 10879 inherit (llvmPackages) openmp; ··· 21027 21028 cairo = callPackage ../development/libraries/cairo { }; 21029 21030 cairomm = callPackage ../development/libraries/cairomm { }; 21031 21032 cairomm_1_16 = callPackage ../development/libraries/cairomm/1.16.nix { ··· 25657 }; 25658 25659 lemmy-ui = callPackage ../servers/web-apps/lemmy/ui.nix { 25660 - nodejs = nodejs_14; 25661 }; 25662 25663 lightgbm = callPackage ../development/libraries/lightgbm { }; ··· 25985 mariadb_106 25986 mariadb_1010 25987 mariadb_1011 25988 ; 25989 - mariadb = mariadb_106; 25990 mariadb-embedded = mariadb.override { withEmbedded = true; }; 25991 25992 mongodb = hiPrio mongodb-6_0; ··· 30462 exrtools = callPackage ../applications/graphics/exrtools { }; 30463 30464 f1viewer = callPackage ../applications/video/f1viewer { }; 30465 30466 faircamp = callPackage ../applications/misc/faircamp { }; 30467 ··· 35119 else null; 35120 }; 35121 35122 vpcs = callPackage ../applications/virtualization/vpcs { }; 35123 35124 primusLib = callPackage ../tools/X11/primus/lib.nix { ··· 36020 oxen = callPackage ../applications/blockchains/oxen 36021 { stdenv = gcc10StdenvCompat; boost = boost17x; }; 36022 36023 - masari = callPackage ../applications/blockchains/masari { boost = boost174; }; 36024 36025 napari = with python3Packages; toPythonApplication napari; 36026 ··· 36846 36847 minecraftServers = import ../games/minecraft-servers { inherit callPackage lib javaPackages; }; 36848 minecraft-server = minecraftServers.vanilla; # backwards compatibility 36849 36850 moon-buggy = callPackage ../games/moon-buggy { }; 36851
··· 5386 5387 lexicon = callPackage ../tools/admin/lexicon { }; 5388 5389 + lenpaste = callPackage ../servers/lenpaste { }; 5390 + 5391 lief = callPackage ../development/libraries/lief { 5392 python = python3; 5393 }; ··· 9002 9003 jot = callPackage ../applications/misc/jot { }; 9004 9005 + jotdown = callPackage ../tools/text/jotdown { }; 9006 + 9007 journaldriver = callPackage ../tools/misc/journaldriver { }; 9008 9009 jp = callPackage ../development/tools/jp { }; ··· 10009 10010 lziprecover = callPackage ../tools/compression/lziprecover { }; 10011 10012 xz = callPackage ../tools/compression/xz { }; 10013 10014 lz4 = callPackage ../tools/compression/lz4 { }; ··· 10872 openhantek6022 = libsForQt5.callPackage ../applications/science/electronics/openhantek6022 { }; 10873 10874 openimagedenoise = callPackage ../development/libraries/openimagedenoise { }; 10875 10876 openmvg = callPackage ../applications/science/misc/openmvg { 10877 inherit (llvmPackages) openmp; ··· 21025 21026 cairo = callPackage ../development/libraries/cairo { }; 21027 21028 + cairo-lang = callPackage ../development/compilers/cairo { }; 21029 + 21030 cairomm = callPackage ../development/libraries/cairomm { }; 21031 21032 cairomm_1_16 = callPackage ../development/libraries/cairomm/1.16.nix { ··· 25657 }; 25658 25659 lemmy-ui = callPackage ../servers/web-apps/lemmy/ui.nix { 25660 + nodejs = nodejs_18; 25661 }; 25662 25663 lightgbm = callPackage ../development/libraries/lightgbm { }; ··· 25985 mariadb_106 25986 mariadb_1010 25987 mariadb_1011 25988 + mariadb_110 25989 ; 25990 + mariadb = mariadb_1011; 25991 mariadb-embedded = mariadb.override { withEmbedded = true; }; 25992 25993 mongodb = hiPrio mongodb-6_0; ··· 30463 exrtools = callPackage ../applications/graphics/exrtools { }; 30464 30465 f1viewer = callPackage ../applications/video/f1viewer { }; 30466 + 30467 + falcoctl = callPackage ../applications/networking/cluster/falcoctl { }; 30468 30469 faircamp = callPackage ../applications/misc/faircamp { }; 30470 ··· 35122 else null; 35123 }; 35124 35125 + vivictpp = callPackage ../applications/video/vivictpp { }; 35126 + 35127 vpcs = callPackage ../applications/virtualization/vpcs { }; 35128 35129 primusLib = callPackage ../tools/X11/primus/lib.nix { ··· 36025 oxen = callPackage ../applications/blockchains/oxen 36026 { stdenv = gcc10StdenvCompat; boost = boost17x; }; 36027 36028 + masari = callPackage ../applications/blockchains/masari { }; 36029 36030 napari = with python3Packages; toPythonApplication napari; 36031 ··· 36851 36852 minecraftServers = import ../games/minecraft-servers { inherit callPackage lib javaPackages; }; 36853 minecraft-server = minecraftServers.vanilla; # backwards compatibility 36854 + 36855 + minesweep-rs = callPackage ../games/minesweep-rs { }; 36856 36857 moon-buggy = callPackage ../games/moon-buggy { }; 36858
-1
pkgs/top-level/python-packages.nix
··· 3530 3531 fenics = callPackage ../development/python-modules/fenics { 3532 hdf5 = pkgs.hdf5_1_10; 3533 - boost = pkgs.boost172; 3534 }; 3535 3536 ffcv = callPackage ../development/python-modules/ffcv { };
··· 3530 3531 fenics = callPackage ../development/python-modules/fenics { 3532 hdf5 = pkgs.hdf5_1_10; 3533 }; 3534 3535 ffcv = callPackage ../development/python-modules/ffcv { };