From 5309164a9632bbe971a3b8915f6e0164962d9be0 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Sat, 17 May 2025 19:55:04 +0200 Subject: [PATCH 01/96] makeHardcodeGsettingsPatch: Fix `schemaExistsFunction` w/o stdbool.h If project uses C and does not include `stdbool.h`, it will not have available lowercase booleans. However, since this tool targets GLib programs, we can rely on uppercase constants defined by GLib. --- .../make-hardcode-gsettings-patch/hardcode-gsettings.cocci | 2 +- .../fixtures/example-project-patched-with-exists-fn/main.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/build-support/make-hardcode-gsettings-patch/hardcode-gsettings.cocci b/pkgs/build-support/make-hardcode-gsettings-patch/hardcode-gsettings.cocci index ceee9a657610..a7374a117262 100644 --- a/pkgs/build-support/make-hardcode-gsettings-patch/hardcode-gsettings.cocci +++ b/pkgs/build-support/make-hardcode-gsettings-patch/hardcode-gsettings.cocci @@ -162,4 +162,4 @@ expression SCHEMA_ID; identifier schema_exists_fn.fn; @@ -fn(SCHEMA_ID) -+true ++TRUE diff --git a/pkgs/test/make-hardcode-gsettings-patch/fixtures/example-project-patched-with-exists-fn/main.c b/pkgs/test/make-hardcode-gsettings-patch/fixtures/example-project-patched-with-exists-fn/main.c index f99324cd9c64..3ad87f34b42a 100644 --- a/pkgs/test/make-hardcode-gsettings-patch/fixtures/example-project-patched-with-exists-fn/main.c +++ b/pkgs/test/make-hardcode-gsettings-patch/fixtures/example-project-patched-with-exists-fn/main.c @@ -74,7 +74,7 @@ void schema_id_with_path() { } void exists_fn_guard() { - if (!true) { + if (!TRUE) { return; } @@ -89,7 +89,7 @@ void exists_fn_guard() { } void exists_fn_nested() { - if (true) { + if (TRUE) { g_autoptr(GSettings) settings = NULL; { g_autoptr(GSettingsSchemaSource) schema_source; @@ -102,7 +102,7 @@ void exists_fn_nested() { } void exists_fn_unknown() { - if (true) { + if (TRUE) { g_autoptr(GSettings) settings = NULL; { g_autoptr(GSettingsSchemaSource) schema_source; From e34cf51ccc6bbf75883326f8420d6c5f583f6cfb Mon Sep 17 00:00:00 2001 From: AmanSe Date: Sun, 18 May 2025 15:54:35 +0530 Subject: [PATCH 02/96] game-rs: 0.2.0 -> 5 --- pkgs/by-name/ga/game-rs/package.nix | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/ga/game-rs/package.nix b/pkgs/by-name/ga/game-rs/package.nix index 2c22af0be73b..58ae136135e4 100644 --- a/pkgs/by-name/ga/game-rs/package.nix +++ b/pkgs/by-name/ga/game-rs/package.nix @@ -2,26 +2,24 @@ lib, rustPlatform, fetchFromGitHub, - steam-run, + umu-launcher, }: rustPlatform.buildRustPackage rec { pname = "game-rs"; - version = "0.2.0"; + version = "5"; src = fetchFromGitHub { owner = "amanse"; repo = "game-rs"; - rev = "v${version}"; - hash = "sha256-FuZl2yNre5jNSfHqF3tjiGwg5mRKbYer2FOPpLy0OrA="; + rev = "z${version}"; + hash = "sha256-+LQxU4jWBAOk+qHNvGxYXudX5dG6szQt3PiPI41Zxlo="; }; useFetchCargoVendor = true; - cargoHash = "sha256-klgcHNZ0vwy2iOYpwbdR37++WLAPx1ARNadfYTTqePw="; + cargoHash = "sha256-X9dWIeDKy3qLmFwUevN8ZUcwNVtt7Wnecbg7M6zUXFU="; - buildFeatures = [ "nixos" ]; - - propagatedBuildInputs = [ steam-run ]; + propagatedBuildInputs = [ umu-launcher ]; meta = with lib; { description = "Minimal CLI game launcher for linux"; From fe667695f5ac6c61412f73f8c073397cb31fd829 Mon Sep 17 00:00:00 2001 From: Alex James Date: Thu, 28 Nov 2024 01:55:37 -0600 Subject: [PATCH 03/96] =?UTF-8?q?vapoursynth-bestsource:=206=20=E2=86=92?= =?UTF-8?q?=2011?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changelog: https://github.com/vapoursynth/bestsource/releases/tag/R11 --- pkgs/by-name/va/vapoursynth-bestsource/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/va/vapoursynth-bestsource/package.nix b/pkgs/by-name/va/vapoursynth-bestsource/package.nix index 843baf11eaa2..db4623d88ff0 100644 --- a/pkgs/by-name/va/vapoursynth-bestsource/package.nix +++ b/pkgs/by-name/va/vapoursynth-bestsource/package.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "vapoursynth-bestsource"; - version = "6"; + version = "11"; outputs = [ "out" @@ -25,7 +25,7 @@ stdenv.mkDerivation (finalAttrs: { owner = "vapoursynth"; repo = "bestsource"; tag = "R${finalAttrs.version}"; - hash = "sha256-ICkdIomlkHUdK6kMeui45fvUn4OMxSrP8svB2IN+GCg="; + hash = "sha256-/hRjo7MQhm/ANUC38p9btOO5ek4Q6IaeKtcSbTzD3BQ="; }; nativeBuildInputs = [ From 3d81d6ba8d997e318e7df02e55e2653d1639b1f9 Mon Sep 17 00:00:00 2001 From: Alex James Date: Thu, 28 Nov 2024 01:59:39 -0600 Subject: [PATCH 04/96] vapoursynth-bestsource: remove cmake from `buildInputs` This doesn't seem to be needed for the build to succeed. --- pkgs/by-name/va/vapoursynth-bestsource/package.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/by-name/va/vapoursynth-bestsource/package.nix b/pkgs/by-name/va/vapoursynth-bestsource/package.nix index db4623d88ff0..2a79c16d77ef 100644 --- a/pkgs/by-name/va/vapoursynth-bestsource/package.nix +++ b/pkgs/by-name/va/vapoursynth-bestsource/package.nix @@ -4,7 +4,6 @@ fetchFromGitHub, meson, ninja, - cmake, pkg-config, vapoursynth, ffmpeg, @@ -31,7 +30,6 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ meson ninja - cmake pkg-config ]; From 635d6d7a4a3d91ab9189a2f9f9d46f4e099675ab Mon Sep 17 00:00:00 2001 From: Alex James Date: Sun, 19 Jan 2025 22:46:55 -0600 Subject: [PATCH 05/96] vapoursynth-bestsource: depend on ffmpeg with Little CMS2 support https://github.com/vapoursynth/bestsource?tab=readme-ov-file#known-issues-and-limitations --- pkgs/by-name/va/vapoursynth-bestsource/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/va/vapoursynth-bestsource/package.nix b/pkgs/by-name/va/vapoursynth-bestsource/package.nix index 2a79c16d77ef..a2bdd21365d4 100644 --- a/pkgs/by-name/va/vapoursynth-bestsource/package.nix +++ b/pkgs/by-name/va/vapoursynth-bestsource/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = [ vapoursynth - ffmpeg + (ffmpeg.override { withLcms2 = true; }) xxHash ]; From 7256dc7bc3ddd09328df073ccb432528633ae9bb Mon Sep 17 00:00:00 2001 From: Alex James Date: Sun, 18 May 2025 17:09:11 -0500 Subject: [PATCH 06/96] vapoursynth-bestsource: set `passthru.updateScript` --- pkgs/by-name/va/vapoursynth-bestsource/package.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/by-name/va/vapoursynth-bestsource/package.nix b/pkgs/by-name/va/vapoursynth-bestsource/package.nix index a2bdd21365d4..965f7aa071a3 100644 --- a/pkgs/by-name/va/vapoursynth-bestsource/package.nix +++ b/pkgs/by-name/va/vapoursynth-bestsource/package.nix @@ -8,6 +8,7 @@ vapoursynth, ffmpeg, xxHash, + gitUpdater, }: stdenv.mkDerivation (finalAttrs: { @@ -44,6 +45,11 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail "vapoursynth_dep.get_variable(pkgconfig: 'libdir')" "get_option('libdir')" ''; + passthru.updateScript = gitUpdater { + rev-prefix = "R"; + ignoredVersions = "*-RC*"; + }; + meta = { description = "Wrapper library around FFmpeg that ensures sample and frame accurate access to audio and video"; homepage = "https://github.com/vapoursynth/bestsource"; From 3d4647f6f578efbea300848cd3b7cb98256de802 Mon Sep 17 00:00:00 2001 From: Jost Alemann Date: Sat, 7 Jun 2025 06:29:28 +0200 Subject: [PATCH 07/96] maple-font: 7.2 -> 7.3 Changelog: https://github.com/subframe7536/maple-font/releases/tag/v7.3 --- pkgs/data/fonts/maple-font/default.nix | 2 +- pkgs/data/fonts/maple-font/hashes.json | 88 +++++++++++++------------- pkgs/data/fonts/maple-font/update.py | 1 + 3 files changed, 46 insertions(+), 45 deletions(-) diff --git a/pkgs/data/fonts/maple-font/default.nix b/pkgs/data/fonts/maple-font/default.nix index 735c86fb8bd5..8d1846819a7f 100644 --- a/pkgs/data/fonts/maple-font/default.nix +++ b/pkgs/data/fonts/maple-font/default.nix @@ -17,7 +17,7 @@ let }: stdenv.mkDerivation rec { inherit pname; - version = "7.2"; + version = "7.3"; src = fetchurl { url = "https://github.com/subframe7536/Maple-font/releases/download/v${version}/${pname}.zip"; inherit hash; diff --git a/pkgs/data/fonts/maple-font/hashes.json b/pkgs/data/fonts/maple-font/hashes.json index 64e5245f99ce..98aac1bb2e4e 100644 --- a/pkgs/data/fonts/maple-font/hashes.json +++ b/pkgs/data/fonts/maple-font/hashes.json @@ -1,46 +1,46 @@ { - "MapleMono-CN-unhinted": "sha256-+OBpkxboDvvjP5Rh8xoFUH76a237nilG0Ko1Me/Ygw4=", - "MapleMono-CN": "sha256-PVmtJLV9tyojaM5CIbQ9M2gOQPhx4Tjvam4vVO1/UqM=", - "MapleMono-NF-CN-unhinted": "sha256-qT77eUeq9Uept1AJuz4KvbJlfqvUtooJSekVoJUphD0=", - "MapleMono-NF-CN": "sha256-w7j1UI8OE4CbNzeY4n0g3WKtVgkJ07uMpRnRCVRIo8M=", - "MapleMono-NF-unhinted": "sha256-g2XHcy1zqZ/M5Fw6JQD2ifWmNijWZzcvQ5LdsAQJQWA=", - "MapleMono-NF": "sha256-E6hYxVShsP+QrgM1w6hjCiiArvQfcIHAEvG7WGOcpds=", - "MapleMono-OTF": "sha256-LnNxiGLtqO2H01O25N36ML9Kwxop9fH+4IvXk1VJFvs=", - "MapleMono-TTF-AutoHint": "sha256-K3oj/ik/9dkpH7sp1EgX12Ts/zsTWFOOulGwE2k+eno=", - "MapleMono-TTF": "sha256-1wQ97Tm2BN+ba2Oxonyeovl5UlLooYrYfkrA85CQZmM=", - "MapleMono-Variable": "sha256-qvph60EzXkkgDN+rvx8qH3IPAH9s/IIl3W8lb6cSN50=", - "MapleMono-Woff2": "sha256-eUHj2NOjsVvwFnh2/chauGEGfBXe5f7xeN2DLm9j5ko=", - "MapleMonoNL-CN-unhinted": "sha256-gqgd25Zkp1g/A5d1NTkawb8pnFv7ITTwdK1JQMzie9w=", - "MapleMonoNL-CN": "sha256-fZTMr9SGtaUJJ7GwILQ0anNMsS6XLDFoYqbF12aD7N0=", - "MapleMonoNL-NF-CN-unhinted": "sha256-r1+8h0Tosdgum02mDXQQtoxwbyVD+WjtAkdPXT74Yd0=", - "MapleMonoNL-NF-CN": "sha256-RubqDmNtgtuzFFTD8p5EV1PIE4zUFtOqsbT84ed+oTc=", - "MapleMonoNL-NF-unhinted": "sha256-QLyTquz5Xfd/DZ9NEWqNmAcOzDyiXV4KzePLhzZKL60=", - "MapleMonoNL-NF": "sha256-zo/voGFI/8wTzeXj+STzOPK8xEV5Tnmpg0LYbeJ3vgI=", - "MapleMonoNL-OTF": "sha256-iK1XlhFlMy8UnjYbntOhvZtL3BlQmGDk5YIAxfaaUKA=", - "MapleMonoNL-TTF-AutoHint": "sha256-KZRI7INinrg3yHrIcfFo/Za36d569z2fXjKsGXBXmV8=", - "MapleMonoNL-TTF": "sha256-4G61jgVY2PcjS4RRB/tDKujZ7rDdG44o5OYSJKQbboE=", - "MapleMonoNL-Variable": "sha256-6lxd8bdREW7loOUznAQUIvjhs7p/LDsD6pJbk4JmNpU=", - "MapleMonoNL-Woff2": "sha256-Ovh6++Bz8Cib9BcHxg5SYm6NHgKHuX9MW6HbmPH/LJw=", - "MapleMonoNormal-CN-unhinted": "sha256-BRRISfA21EQvNUlCGwNiVBkZpDAF+iCV99LsYJsuv9Q=", - "MapleMonoNormal-CN": "sha256-SXG2nlBpyuiFMLUClyl5ZzoPxVF5w33JjCaC5tPG/8s=", - "MapleMonoNormal-NF-CN-unhinted": "sha256-0EZzl2Cddqh2tLsfDd5VNhJweueZJK/KaqO9VUkGLIk=", - "MapleMonoNormal-NF-CN": "sha256-/nQhsf7AyoJ+xkUujY8z5p/xWyPLROIGtpSQgMvmlYc=", - "MapleMonoNormal-NF-unhinted": "sha256-2LlrEYI92GHRICLfYbUl9U+EbdAbCjiZSXD7z5vRC4w=", - "MapleMonoNormal-NF": "sha256-UJAXFD4KVm8lbZzPMaEwrH0divRf7HxixDxurPGkU44=", - "MapleMonoNormal-OTF": "sha256-98NGP7arvw1W2akNWweKK+OfW14VtbF/fy8olRXcAPA=", - "MapleMonoNormal-TTF-AutoHint": "sha256-j9mG3VM4DP82ynw0UFuMDXjcbMnuVKOfJ9HMBFrrvDk=", - "MapleMonoNormal-TTF": "sha256-mEJJ/y5amhMBt+MroSUMuaTqGg3LUeYTiAn/vAMfy5U=", - "MapleMonoNormal-Variable": "sha256-LwW94IJAfdltG2wmJiv6JmB8fNdddb//yHsZvMvlSTo=", - "MapleMonoNormal-Woff2": "sha256-HuHcNeCw/AEsScKGciTK5O5Rz7eCS0hlzfz5ZYcqLyU=", - "MapleMonoNormalNL-CN-unhinted": "sha256-u7QqDoWt+NZgBxFH4D/U+SyiCKEObKPOh89A9fINoUk=", - "MapleMonoNormalNL-CN": "sha256-K30io0S/kqpLD3aBZcTvVKy5IGbzq43uiTzKmxEgpW8=", - "MapleMonoNormalNL-NF-CN-unhinted": "sha256-RYQR301tnCD85t5f5E7wpTXrg6NDw3drJ85Z6z/Xo68=", - "MapleMonoNormalNL-NF-CN": "sha256-UDgWMxBzZajs0p6lBtAW2jbZEvMLb4GpvmdKhKWU+W4=", - "MapleMonoNormalNL-NF-unhinted": "sha256-vf7pXN7N+/HA1gia4mFGJNJOsrBdUf5lNKi/BlLoNN0=", - "MapleMonoNormalNL-NF": "sha256-VqKI6pICNlUZ/5cpgNRRKNgeA3xgUNYEVDjUDb006Ss=", - "MapleMonoNormalNL-OTF": "sha256-uQjt6K5s6+1sIxRnI51PgDxlyRi7xIsiNZbIP3hauNw=", - "MapleMonoNormalNL-TTF-AutoHint": "sha256-0zS5NdpnIeOwcaz8Rv1sCWeUdjWZE8SoF54myIQKAFE=", - "MapleMonoNormalNL-TTF": "sha256-Oqa2CPuXqqemxUR37Z98KOz2EWDXbxLSGZUpsQpMdGA=", - "MapleMonoNormalNL-Variable": "sha256-kWh6n9lFShmnLME0+1M2aKOrc64WrZk6SkQTT2AkEDU=", - "MapleMonoNormalNL-Woff2": "sha256-/Dl6B5Ya6BWHZqzOH7wcuJmTOUtO3jJXiW83+vWJpgM=" + "MapleMono-CN-unhinted": "sha256-nosTiax/1OyMgwYwuLD1JVdbIrCFvzGtmVDjS+++r/s=", + "MapleMono-CN": "sha256-qcFZRcJ7QrNzKKaGxTUTjMQ+Xd4qfInc9INSBsitoCU=", + "MapleMono-NF-CN-unhinted": "sha256-FY78c6nECHj0gsfNm0uh1yL2j5ycJ8sq+TfhyF9PmV0=", + "MapleMono-NF-CN": "sha256-Tjrrh1SQjvFunCprnvu2CgQDH25TQWpeviVAQJgf80E=", + "MapleMono-NF-unhinted": "sha256-hkO9ggZE8hm3HUHtKN2G0o8lFa45sp0LyL1HclcLh0k=", + "MapleMono-NF": "sha256-JN9nZiLnLBrHW/F19Fi4IjAFm6Nz/oPePnD/yW5AwCM=", + "MapleMono-OTF": "sha256-k2Xd3ugE7/U1N2o1fHGseer1L66Ue8v+yWSAuCd5c10=", + "MapleMono-TTF-AutoHint": "sha256-Ebj3dHZnk2kHD43xmwpinG5tWRiBZDTdrpdZ64LVKds=", + "MapleMono-TTF": "sha256-BVrsTby/vViK22sASOQ6+Xq0a+Yvmq7EsSqhaeYkjKE=", + "MapleMono-Variable": "sha256-4JuyVR0iMQL4qgRJ7EGfSUHq9pJmdR/vFRNna+Nzz/E=", + "MapleMono-Woff2": "sha256-GMKxWEz/Ftpg/Ra7wasUPap1xx8Eb9g9l7l2i+4NJ54=", + "MapleMonoNL-CN-unhinted": "sha256-nLD9KaJz3sqhNzakJRtm1FeTaMPp+c11Ck/W3WAstlc=", + "MapleMonoNL-CN": "sha256-ynPraDGK2XMrw5E9X1SjJDxiTy0bqTFzI5BQ9lGM+7U=", + "MapleMonoNL-NF-CN-unhinted": "sha256-SWnpaWFxfpL/gtchtgm3qa6DhoibyVwrbpTI/wvaakM=", + "MapleMonoNL-NF-CN": "sha256-Sq9RpXVKrBBdINx6McnI+W9quvNGzh5cGldjxAZ6CVA=", + "MapleMonoNL-NF-unhinted": "sha256-v1yjsw8vkmX6NuoGjdhexZW9vVGwXItXyn5DhL4cYWE=", + "MapleMonoNL-NF": "sha256-isHZkRdPkMefmnaUT2jpSmoFW407F74pEpMY9BuRb2w=", + "MapleMonoNL-OTF": "sha256-LNkZa5cmYVj9XQwtO7PyGscTzr7+Ea7bAuoVHAMikvw=", + "MapleMonoNL-TTF-AutoHint": "sha256-AcrjjmchY0XCF/hjukWMDei2T5WLVkNZ8Uk+fzs2faY=", + "MapleMonoNL-TTF": "sha256-RJqAqNcZKDFwW6XnQxdbD+MP6L+tl1b21N1p9yprff4=", + "MapleMonoNL-Variable": "sha256-FhuSl1BQq8+XP5OjZXo8jO9t4G6/RiHr6ajpcVfVZsc=", + "MapleMonoNL-Woff2": "sha256-Wu4muqZEN54dcvH1k9Mebzi3+tOwSdB3j+kDWW4TcZw=", + "MapleMonoNormal-CN-unhinted": "sha256-90B2L4B/M736RnwhybqxarHmhUrYBrcEIYW/89nwr0M=", + "MapleMonoNormal-CN": "sha256-MzL7ASbw2qJZHYO6xiq7k0Ra3tFv9yGlS8SCzJMzJxY=", + "MapleMonoNormal-NF-CN-unhinted": "sha256-bLOixVjpHCvz9k4U+kQ3BcbYAfM3LkAb/06FSVQ+Kws=", + "MapleMonoNormal-NF-CN": "sha256-R8nzvkvJ78bsySObab1u4fYpYJi488xLVTRon0C8yhQ=", + "MapleMonoNormal-NF-unhinted": "sha256-O9ckFmBNHlR3iq+u6utqvEWUe3oeYrEGIQdoyX85v28=", + "MapleMonoNormal-NF": "sha256-q+FVRPWyq5myRck3kUoEm//pHM5qIiClhjgNCtP7f/k=", + "MapleMonoNormal-OTF": "sha256-RbH/TZp0L52UCp8Jbit05XHYg+KESER11hjmgHcm7lg=", + "MapleMonoNormal-TTF-AutoHint": "sha256-+A2zjecqeoU9e6iaAn6NQ5aU86C6wE688QJ7RjGvbxE=", + "MapleMonoNormal-TTF": "sha256-cUC9uty0iudym1r3LNR+hYoWIevyIiXC0MbK1Epl6S4=", + "MapleMonoNormal-Variable": "sha256-ldpHiADkA58hrRxnzLJtsJimcicwPn6CSTD9ki4c5js=", + "MapleMonoNormal-Woff2": "sha256-YJEk8THUDhFZ+meCJvgIwz0x0ZXCr87m3NCjjyS8lHc=", + "MapleMonoNormalNL-CN-unhinted": "sha256-LlLUVTMz2XCVRiDfDv26UJydPpRJAJPwDz+WAyvW60k=", + "MapleMonoNormalNL-CN": "sha256-ZvkjswX9QPJR8cAM1z6HqQfZKgpgidvpvAlGRlRySP8=", + "MapleMonoNormalNL-NF-CN-unhinted": "sha256-d4tgn9SxiMVJCxZoIWzJiqGJNB2xEfhFS6uJdGfyJpM=", + "MapleMonoNormalNL-NF-CN": "sha256-2U7FHEH2DsScpDTCU/CImh98JZFuw8GoXoFDaRuB3pM=", + "MapleMonoNormalNL-NF-unhinted": "sha256-wzVJuWXlizZ20aONXUiLhXhtj1w/eo+4T3aQfFPhLTY=", + "MapleMonoNormalNL-NF": "sha256-IvkYGRGONZ8+3aF/8pdea104lF83kGbeiAArLMwkazY=", + "MapleMonoNormalNL-OTF": "sha256-+JlNkdLOOLTraV+XQnqUUkweSrSBTsjwx3vveHUCdcA=", + "MapleMonoNormalNL-TTF-AutoHint": "sha256-AN3VyA11zwEodjVpFYkHWomEHjONWnY+rNTjxmAgzA8=", + "MapleMonoNormalNL-TTF": "sha256-a0lXS7wGK7QCxTbsWjf8pj4k0B1l6/OPs8VCbZSFa68=", + "MapleMonoNormalNL-Variable": "sha256-c3jUo+8ICZZRA0OLsOGhciplOet4JithmyJ6prnQllI=", + "MapleMonoNormalNL-Woff2": "sha256-8F7L+5RiDxVjK+gtj6gfEgTK55Cfrf+8F2r74nXpvsk=" } diff --git a/pkgs/data/fonts/maple-font/update.py b/pkgs/data/fonts/maple-font/update.py index bc0335dcdbe9..1d3b2f87b4cd 100644 --- a/pkgs/data/fonts/maple-font/update.py +++ b/pkgs/data/fonts/maple-font/update.py @@ -1,3 +1,4 @@ +import sys import re import json import base64 From 89ce0665497a3f1efe671e966ea0a25438408b14 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 12 Jun 2025 07:41:05 +0000 Subject: [PATCH 08/96] nushellPlugins.semver: 0.11.4 -> 0.11.5 --- pkgs/shells/nushell/plugins/semver.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/shells/nushell/plugins/semver.nix b/pkgs/shells/nushell/plugins/semver.nix index b7b263ec54c1..b8ab22fc1772 100644 --- a/pkgs/shells/nushell/plugins/semver.nix +++ b/pkgs/shells/nushell/plugins/semver.nix @@ -7,16 +7,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "nu_plugin_semver"; - version = "0.11.4"; + version = "0.11.5"; src = fetchFromGitHub { owner = "abusch"; repo = "nu_plugin_semver"; tag = "v${finalAttrs.version}"; - hash = "sha256-VTMaZUYgb7wZqiZmd5IVxQsjbHx3QC75VQQdJqaCvfY="; + hash = "sha256-2H30cWUk7JGFwl/v5NRO9BlkEQ+hek4UfuirzuFECKo="; }; - cargoHash = "sha256-oPP4lwXe4jJLfTjUWfaHxQX6CfHbXO5DajyK4r/l6bo="; + cargoHash = "sha256-GWZYHlkRYLHbEDruKpviOP8PMEbwlyor/pDbRJs7IDk="; passthru.update-script = nix-update-script { }; From 92f3179408aa568563eb965fe8afde5fc382748a Mon Sep 17 00:00:00 2001 From: misilelab Date: Tue, 20 May 2025 11:11:07 +0900 Subject: [PATCH 09/96] docker-compose: 2.36.0 -> 2.37.1 https://github.com/docker/compose/releases/tag/v2.36.1 https://github.com/docker/compose/releases/tag/v2.36.2 https://github.com/docker/compose/releases/tag/v2.37.0 https://github.com/docker/compose/releases/tag/v2.37.1 Signed-off-by: misilelab --- pkgs/applications/virtualization/docker/compose.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/virtualization/docker/compose.nix b/pkgs/applications/virtualization/docker/compose.nix index 8c337284d3a3..4754450d205d 100644 --- a/pkgs/applications/virtualization/docker/compose.nix +++ b/pkgs/applications/virtualization/docker/compose.nix @@ -6,13 +6,13 @@ buildGoModule rec { pname = "docker-compose"; - version = "2.36.0"; + version = "2.37.1"; src = fetchFromGitHub { owner = "docker"; repo = "compose"; rev = "v${version}"; - hash = "sha256-3WaTUylmXk2urn9Pe76AdnckJvFBJBSccXCvFSRotyo="; + hash = "sha256-jz5ve9VzmsRMv05fGrxSUUg0mGRbtQzpWrs4jyAnubI="; }; postPatch = '' @@ -20,7 +20,7 @@ buildGoModule rec { rm -rf pkg/e2e/ ''; - vendorHash = "sha256-AcBBtetOuTnCA6ZQVUta+6lJQoSJhBXifEoToUhrpAk="; + vendorHash = "sha256-i23na2J4XTsHFZZO5ASY7XVsd/rOZPkAMEH0HWzr+0s="; ldflags = [ "-X github.com/docker/compose/v2/internal.Version=${version}" From 6ad4c1dd312a806d08aabdfd7d0dc90392506b04 Mon Sep 17 00:00:00 2001 From: Serg Date: Sat, 14 Jun 2025 18:11:56 +0000 Subject: [PATCH 10/96] phpExtensions.ioncube-loader: 13.0.2 -> 14.4.1 - x86_64-darwin is no longer supported by upstream - added support for Zend Thread Safety --- .../php-packages/ioncube-loader/default.nix | 61 ++++++++----------- 1 file changed, 27 insertions(+), 34 deletions(-) diff --git a/pkgs/development/php-packages/ioncube-loader/default.nix b/pkgs/development/php-packages/ioncube-loader/default.nix index 4c691a913ddd..8d3f6a3bb914 100644 --- a/pkgs/development/php-packages/ioncube-loader/default.nix +++ b/pkgs/development/php-packages/ioncube-loader/default.nix @@ -1,51 +1,45 @@ { stdenv, lib, - fetchzip, + fetchurl, php, }: let - phpVersion = lib.versions.majorMinor php.version; + source = + { + "aarch64-darwin" = { + url = "https://web.archive.org/web/20250614103627/https://downloads.ioncube.com/loader_downloads/ioncube_loaders_dar_arm64.tar.gz"; + sha256 = "sha256-Dji4PIX5GqU6mOC7ZrSEu3dAZtsiVVuvKQ9Z5aGiuQ4="; + }; + "aarch64-linux" = { + url = "https://web.archive.org/web/20250614103715/https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_aarch64.tar.gz"; + sha256 = "sha256-zushkH7g3L62bDdjgTZamWcxOp35xQisOjSG6e2EEHg="; + }; + "x86_64-linux" = { + url = "https://web.archive.org/web/20250614103238/https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz"; + sha256 = "sha256-W8AXulfQx2nkT9nznCCx2lrayKA3R+n2TyhU1ScNjMg="; + }; + } + .${stdenv.hostPlatform.system}; - variant = { - "aarch64-darwin" = { - url = "https://web.archive.org/web/20240209234707/https://downloads.ioncube.com/loader_downloads/ioncube_loaders_dar_arm64.tar.gz"; - sha256 = "sha256-J6+bOXX9uRdrGouMAxt7nROjjfH4P2txb1hmPoHUmdM="; - prefix = "dar"; - }; - "aarch64-linux" = { - url = "https://web.archive.org/web/20240209234617/https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_aarch64.tar.gz"; - sha256 = "sha256-oOO4zr0CssxVGIUIfmAujILqOfQf8dJPADkr03a8HAs="; - prefix = "lin"; - }; - "x86_64-linux" = { - url = "https://web.archive.org/web/20240209052345if_/https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz"; - sha256 = "sha256-rsXKgxKHldBKDjJTsOdJP4SxfxLmMPDY+GizBpuDeyw="; - prefix = "lin"; - }; - "x86_64-darwin" = { - url = "https://web.archive.org/web/20240209234406/https://downloads.ioncube.com/loader_downloads/ioncube_loaders_mac_x86-64.tar.gz"; - sha256 = "sha256-bz2hQOaFbXePa8MhAZHESpZMRjjBH51IgvbR2EfBYMg="; - prefix = "mac"; - }; - }; + phpVersion = lib.versions.majorMinor php.version; + systemPrefix = lib.substring 0 3 stdenv.hostPlatform.parsed.kernel.name; # lin, dar, fre + + filename = "ioncube_loader_${systemPrefix}_${phpVersion}${lib.optionalString php.ztsSupport "_ts"}.so"; in stdenv.mkDerivation { - version = "13.0.2"; pname = "ioncube-loader"; + version = "14.4.1"; + extensionName = "ioncube-loader"; - src = fetchzip { - url = variant.${stdenv.hostPlatform.system}.url; - sha256 = variant.${stdenv.hostPlatform.system}.sha256; - }; + src = fetchurl source; installPhase = '' - mkdir -p $out/lib/php/extensions - cp $src/ioncube_loader_${ - variant.${stdenv.hostPlatform.system}.prefix - }_${phpVersion}.so $out/lib/php/extensions/ioncube-loader.so + runHook preInstall + install -Dm755 '${filename}' $out/lib/php/extensions/ioncube-loader.so + runHook postInstall ''; meta = with lib; { @@ -58,7 +52,6 @@ stdenv.mkDerivation { platforms = [ "x86_64-linux" "aarch64-linux" - "x86_64-darwin" "aarch64-darwin" ]; }; From 0b3faba1eb50a01ec92e029b5f46bc847b054e47 Mon Sep 17 00:00:00 2001 From: Karun Sandhu <129101708+MrSom3body@users.noreply.github.com> Date: Mon, 16 Jun 2025 22:47:09 +0200 Subject: [PATCH 11/96] vpnc: unstable-2024-12-20 -> unstable-2025-06-16 --- pkgs/by-name/vp/vpnc/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/vp/vpnc/package.nix b/pkgs/by-name/vp/vpnc/package.nix index d6b8630984a5..e38018db7aeb 100644 --- a/pkgs/by-name/vp/vpnc/package.nix +++ b/pkgs/by-name/vp/vpnc/package.nix @@ -16,13 +16,13 @@ stdenv.mkDerivation { pname = "vpnc"; - version = "unstable-2024-12-20"; + version = "unstable-2025-06-16"; src = fetchFromGitHub { owner = "streambinder"; repo = "vpnc"; - rev = "d58afaaafb6a43cb21bb08282b54480d7b2cc6ab"; - sha256 = "sha256-79DaK1s+YmROKbcWIXte+GZh0qq9LAQlSmczooR86H8="; + rev = "6a70db13f6e9201101e1c4890393566be6000e6a"; + sha256 = "sha256-8XgEoQn7hz/eU7w+jqxYUBuOpAQlc+2qTj1mcDMHK30="; fetchSubmodules = true; }; From eb5f9a4ff939a1d9983a70a2b5187a48063aeb9e Mon Sep 17 00:00:00 2001 From: Keegan Carruthers-Smith Date: Wed, 18 Jun 2025 12:25:04 +0200 Subject: [PATCH 12/96] src-cli: avoid need for networking in passthru.tests The -client-only will just print the local version. Additionally it won't fail if the binary is out of date. --- pkgs/by-name/sr/src-cli/package.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/by-name/sr/src-cli/package.nix b/pkgs/by-name/sr/src-cli/package.nix index d7e80f91e5a0..f7df125984b8 100644 --- a/pkgs/by-name/sr/src-cli/package.nix +++ b/pkgs/by-name/sr/src-cli/package.nix @@ -35,12 +35,10 @@ buildGoModule rec { "-X=github.com/sourcegraph/src-cli/internal/version.BuildTag=${version}" ]; - __darwinAllowLocalNetworking = true; - passthru.tests = { version = testers.testVersion { package = src-cli; - command = "src version || true"; + command = "src version -client-only"; }; }; From 9664103c069690fc844831a66657e381d6d4cfed Mon Sep 17 00:00:00 2001 From: Keegan Carruthers-Smith Date: Wed, 18 Jun 2025 12:30:29 +0200 Subject: [PATCH 13/96] src-cli: remove xorg.libX11 from buildInputs I'm not sure why this is here, I don't remember src-cli ever having this dependency. --- pkgs/by-name/sr/src-cli/package.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/by-name/sr/src-cli/package.nix b/pkgs/by-name/sr/src-cli/package.nix index f7df125984b8..0f84a15a6ea3 100644 --- a/pkgs/by-name/sr/src-cli/package.nix +++ b/pkgs/by-name/sr/src-cli/package.nix @@ -25,10 +25,6 @@ buildGoModule rec { "cmd/src" ]; - buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ - xorg.libX11 - ]; - ldflags = [ "-s" "-w" From 20607c08a132de3ef86c2a63ae42af3a2e8e59a7 Mon Sep 17 00:00:00 2001 From: Keegan Carruthers-Smith Date: Wed, 18 Jun 2025 12:32:45 +0200 Subject: [PATCH 14/96] src-cli: 6.3.0 -> 6.4.0 --- pkgs/by-name/sr/src-cli/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/sr/src-cli/package.nix b/pkgs/by-name/sr/src-cli/package.nix index 0f84a15a6ea3..2e0d217a2553 100644 --- a/pkgs/by-name/sr/src-cli/package.nix +++ b/pkgs/by-name/sr/src-cli/package.nix @@ -10,7 +10,7 @@ buildGoModule rec { pname = "src-cli"; - version = "6.3.0"; + version = "6.4.0"; src = fetchFromGitHub { owner = "sourcegraph"; From e8a26068500150634aa7d9be1ee14a4b9f593558 Mon Sep 17 00:00:00 2001 From: Keegan Carruthers-Smith Date: Wed, 18 Jun 2025 12:33:52 +0200 Subject: [PATCH 15/96] src-cli: add keegancsmith as a maintainer Note: I work at Sourcegraph. --- pkgs/by-name/sr/src-cli/package.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/sr/src-cli/package.nix b/pkgs/by-name/sr/src-cli/package.nix index 2e0d217a2553..5ff1cee38c90 100644 --- a/pkgs/by-name/sr/src-cli/package.nix +++ b/pkgs/by-name/sr/src-cli/package.nix @@ -43,7 +43,10 @@ buildGoModule rec { homepage = "https://github.com/sourcegraph/src-cli"; changelog = "https://github.com/sourcegraph/src-cli/blob/${src.rev}/CHANGELOG.md"; license = licenses.asl20; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ + figsoda + keegancsmith + ]; mainProgram = "src"; }; } From 3a691497ab86b7c876718cad8c211a4c6e712d62 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 20 Jun 2025 23:47:51 +0000 Subject: [PATCH 16/96] qsv: 4.0.0 -> 5.1.0 --- pkgs/by-name/qs/qsv/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/qs/qsv/package.nix b/pkgs/by-name/qs/qsv/package.nix index ee71ee3cd512..9e417f43c411 100644 --- a/pkgs/by-name/qs/qsv/package.nix +++ b/pkgs/by-name/qs/qsv/package.nix @@ -11,7 +11,7 @@ let pname = "qsv"; - version = "4.0.0"; + version = "5.1.0"; in rustPlatform.buildRustPackage { inherit pname version; @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage { owner = "dathere"; repo = "qsv"; rev = version; - hash = "sha256-rMqDn2Dw64xxAVE3ZslKzpyNfgRMrLIALHjVtcq0vqU="; + hash = "sha256-AQ7vpxrGa0CtFvKzT2iHmeoafpaWOVLqEL9eO3QeBEM="; }; useFetchCargoVendor = true; - cargoHash = "sha256-/hkFIM7grcyMYNdM5UP2Mx+hBuw7zk8R2KbUYp2UkTg="; + cargoHash = "sha256-Kmcl7ifAFf7dJ3LESdH1xm7M3Wl/wMKUjN2ZcLkvUHE="; buildInputs = [ file From 73bbdbfeba1ea65f6244f420d13a06600dfde50a Mon Sep 17 00:00:00 2001 From: Alex James Date: Sun, 22 Jun 2025 13:57:58 -0700 Subject: [PATCH 17/96] =?UTF-8?q?dash-mpd-cli:=200.2.26=20=E2=86=92=200.2.?= =?UTF-8?q?27?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changelog: https://github.com/emarsden/dash-mpd-cli/blob/main/CHANGELOG.md#0227---2025-06-22 --- pkgs/by-name/da/dash-mpd-cli/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/da/dash-mpd-cli/package.nix b/pkgs/by-name/da/dash-mpd-cli/package.nix index 37d5168f8741..ef18875c2360 100644 --- a/pkgs/by-name/da/dash-mpd-cli/package.nix +++ b/pkgs/by-name/da/dash-mpd-cli/package.nix @@ -25,13 +25,13 @@ let in rustPlatform.buildRustPackage (finalAttrs: { pname = "dash-mpd-cli"; - version = "0.2.26"; + version = "0.2.27"; src = fetchFromGitHub { owner = "emarsden"; repo = "dash-mpd-cli"; tag = "v${finalAttrs.version}"; - hash = "sha256-PMzHWY129Bddl1RQQyEPstqvDLAqXxGv9I3fw1AylBo="; + hash = "sha256-s8Wu9DOjfQDm4OONtocJCiklEZ775tFyzKIbKm3WfDc="; }; patches = [ @@ -39,7 +39,7 @@ rustPlatform.buildRustPackage (finalAttrs: { ]; useFetchCargoVendor = true; - cargoHash = "sha256-qy8X9DoBD5MIUQ6akalqtyasst0ZKJJLZTEz+6Hp6EI="; + cargoHash = "sha256-ycHKgQFgl8THoXT+3ccV8AC56VudHzObyTCu333MmT4="; nativeBuildInputs = [ makeWrapper From 44dd50960de83e7fe0137eea13415a72d035e617 Mon Sep 17 00:00:00 2001 From: Mikael Fangel <34864484+MikaelFangel@users.noreply.github.com> Date: Sun, 22 Jun 2025 23:44:19 +0200 Subject: [PATCH 18/96] nwjs: 0.90.0 -> 0.100.1 --- pkgs/development/tools/nwjs/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/nwjs/default.nix b/pkgs/development/tools/nwjs/default.nix index 6dc8515d52ed..99a560c34ae0 100644 --- a/pkgs/development/tools/nwjs/default.nix +++ b/pkgs/development/tools/nwjs/default.nix @@ -91,7 +91,7 @@ let ]; }; - version = "0.90.0"; + version = "0.100.1"; in stdenv.mkDerivation { pname = "nwjs"; @@ -105,10 +105,10 @@ stdenv.mkDerivation { url = "https://dl.nwjs.io/v${version}/nwjs-${flavor}v${version}-linux-${bits}.tar.gz"; hash = { - "sdk-ia32" = "sha256-dETXtOdJ9/1wZ47l/j/K5moN4m+KNc7vu7wVGql8NXQ="; - "sdk-x64" = "sha256-mRIKIrFIdXQ+tLled3ygJvMCBDKP08bl3IlqTbQmYq0="; - "ia32" = "sha256-+nGIQuWdPfctPNzDu7mkEUOmLx1cwcJoVCAk6ImNBxQ="; - "x64" = "sha256-uEb0GTONaR58nhjGAan1HCOqQKtQ2JDrTaSL+SfRY6E="; + "sdk-ia32" = "sha256-8T3lyQi5tvXhThapng/l+wEbmXdUQBqPT7HHDBpEk5Y="; + "sdk-x64" = "sha256-nD1MYEm+4sq4MHkiOI46IgM6oDWpcyVWl3Yis0beEIg="; + "ia32" = "sha256-TfAw7+z/I3eYRn20DN0sR9moqD23UG7nvQbeXQDNDcg="; + "x64" = "sha256-EqLESL4zVdBzFvhPgXfcIwSVNNBVIMy1SdCu6eNU96Q="; } ."${flavor + bits}"; }; From e0e6662c9ace75c0cc5096fc423738b87f1358b0 Mon Sep 17 00:00:00 2001 From: Muhammad Falak R Wani Date: Mon, 23 Jun 2025 12:06:13 +0530 Subject: [PATCH 19/96] skim: 0.18.0 -> 0.20.1 Diff: https://github.com/skim-rs/skim/compare/refs/tags/v0.18.0...v0.20.1 Changelog: https://github.com/skim-rs/skim/releases/tag/v0.20.1 Signed-off-by: Muhammad Falak R Wani --- pkgs/by-name/sk/skim/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sk/skim/package.nix b/pkgs/by-name/sk/skim/package.nix index aee7240ff1ae..81e8dd3276df 100644 --- a/pkgs/by-name/sk/skim/package.nix +++ b/pkgs/by-name/sk/skim/package.nix @@ -12,7 +12,7 @@ rustPlatform.buildRustPackage rec { pname = "skim"; - version = "0.18.0"; + version = "0.20.1"; outputs = [ "out" @@ -24,7 +24,7 @@ rustPlatform.buildRustPackage rec { owner = "skim-rs"; repo = "skim"; tag = "v${version}"; - hash = "sha256-79HHJeAP3pnM/KAdGsGw31MRXl3Qz2ttTvXX+oBCcow="; + hash = "sha256-6pvvZnhvju8JvRy93/128+6AH935UK5NbMx2kxzCjqY="; }; postPatch = '' @@ -32,7 +32,7 @@ rustPlatform.buildRustPackage rec { ''; useFetchCargoVendor = true; - cargoHash = "sha256-N1s6Kf6iy28QcrLQy6TVbXjfSb9KtzJeaKksW4wXsMw="; + cargoHash = "sha256-Hg7MWz0QAeI8l9if4QHUcUqU+5UI+H+dYw+ryCuRe/Y="; nativeBuildInputs = [ installShellFiles ]; From 38454e145b3a65d3e6025083ffe5f82e92c12370 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 23 Jun 2025 07:20:35 +0000 Subject: [PATCH 20/96] infrastructure-agent: 1.64.0 -> 1.65.0 --- pkgs/by-name/in/infrastructure-agent/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/in/infrastructure-agent/package.nix b/pkgs/by-name/in/infrastructure-agent/package.nix index b559fddd63a2..c44c788ed35c 100644 --- a/pkgs/by-name/in/infrastructure-agent/package.nix +++ b/pkgs/by-name/in/infrastructure-agent/package.nix @@ -6,13 +6,13 @@ }: buildGoModule rec { pname = "infrastructure-agent"; - version = "1.64.0"; + version = "1.65.0"; src = fetchFromGitHub { owner = "newrelic"; repo = "infrastructure-agent"; rev = version; - hash = "sha256-kIp5it/3erPUFH22qFs8/KrFOttgrYwAT2uyHwJKHd8="; + hash = "sha256-Rc4pQQNlWXJuSVxgnzZYllEPV1/D+XgefukDPTBITnU="; }; vendorHash = "sha256-eZtO+RFw+yUjIQ03y0NOiHIFLcwEwWu5A+7wsaraCCQ="; From d6859b38d11f6118723a3ab074ca6dae1dd03a19 Mon Sep 17 00:00:00 2001 From: Gongqi Huang Date: Tue, 24 Jun 2025 01:41:12 -0400 Subject: [PATCH 21/96] typst: Update typst packages as of 06-24-2025 --- .../typst/typst-packages-from-universe.toml | 2802 ++++++++++++++++- 1 file changed, 2796 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/ty/typst/typst-packages-from-universe.toml b/pkgs/by-name/ty/typst/typst-packages-from-universe.toml index 46d7c4dba3e0..183c00c244c4 100644 --- a/pkgs/by-name/ty/typst/typst-packages-from-universe.toml +++ b/pkgs/by-name/ty/typst/typst-packages-from-universe.toml @@ -58,6 +58,18 @@ license = [ ] homepage = "https://git.sr.ht/~slowjo/typst-abbr" +[abiding-ifacconf."0.2.0"] +url = "https://packages.typst.org/preview/abiding-ifacconf-0.2.0.tar.gz" +hash = "sha256-AxEtfnFBgRjYgn+PIw6uMES+VtXjDmfnH4NaGDdkFy8=" +typstDeps = [ + "ctheorems_1_1_3", +] +description = "An IFAC-style paper template to publish at conferences for International Federation of Automatic Control" +license = [ + "MIT-0", +] +homepage = "https://github.com/avonmoll/ifacconf-typst" + [abiding-ifacconf."0.1.0"] url = "https://packages.typst.org/preview/abiding-ifacconf-0.1.0.tar.gz" hash = "sha256-Vmx78w1m78eX0tIoHZsyR/Kh61cP/l5YqlhSeWjwG28=" @@ -106,6 +118,22 @@ license = [ ] homepage = "https://github.com/roaldarbol/academicv" +[accelerated-jacow."0.1.4"] +url = "https://packages.typst.org/preview/accelerated-jacow-0.1.4.tar.gz" +hash = "sha256-VQ6n3x5GFa/SHglDNlkN09xBoOYYrwTkfVeRSgjmt0I=" +typstDeps = [ + "glossy_0_7_0", + "lilaq_0_1_0", + "physica_0_9_5", + "unify_0_7_1", +] +description = "Paper template for conference proceedings in accelerator physics" +license = [ + "GPL-3.0-only", + "MIT-0", +] +homepage = "https://github.com/eltos/accelerated-jacow/" + [accelerated-jacow."0.1.3"] url = "https://packages.typst.org/preview/accelerated-jacow-0.1.3.tar.gz" hash = "sha256-rdamQ3duwAyaQNJqdZ7QdOJ22fTs5l0aSVu5Ykv78bQ=" @@ -162,6 +190,16 @@ license = [ ] homepage = "https://github.com/eltos/accelerated-jacow/" +[acrostiche."0.5.2"] +url = "https://packages.typst.org/preview/acrostiche-0.5.2.tar.gz" +hash = "sha256-49mE2p7lh6AfiMcXQuPctfPoKuvN4f9/KMnUXe/o4uA=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Grisely/packages" + [acrostiche."0.5.1"] url = "https://packages.typst.org/preview/acrostiche-0.5.1.tar.gz" hash = "sha256-Zh/Q9tMunWN6X4jU47r/c7WPafIHA/9lBtuGJSumGO8=" @@ -300,6 +338,18 @@ license = [ ] homepage = "https://github.com/Julian702/typst-packages" +[adaptable-pset."0.2.0"] +url = "https://packages.typst.org/preview/adaptable-pset-0.2.0.tar.gz" +hash = "sha256-KmqIP2i8j9URZfKgTq4f1M91yeAfwJ4QXTrwUdHGsxE=" +typstDeps = [ + "showybox_2_0_2", +] +description = "A flexible problem set template, perfect for technical courses" +license = [ + "Unlicense", +] +homepage = "https://github.com/stuxf/adaptable-pset" + [adaptable-pset."0.1.1"] url = "https://packages.typst.org/preview/adaptable-pset-0.1.1.tar.gz" hash = "sha256-DAb7eSgVZe5gW92GB5byfOn4qUuzMOTmMotJtWjxR/c=" @@ -344,6 +394,16 @@ license = [ ] homepage = "https://github.com/TomVer99/Typst-checklist-template" +[aero-navigator."0.1.0"] +url = "https://packages.typst.org/preview/aero-navigator-0.1.0.tar.gz" +hash = "sha256-dL1ZqZsWcAOuPIS2bVl94XqEEYIdX7RfM97lyhl/29g=" +typstDeps = [] +description = "A Navigation Log, developed to replace multiple pages of notes and provide a succinct template to manage all the information needed as a Cross Country Pilot" +license = [ + "Unlicense", +] +homepage = "https://github.com/tristanduncombe/aero-navigator" + [ailab-isetbz."0.1.0"] url = "https://packages.typst.org/preview/ailab-isetbz-0.1.0.tar.gz" hash = "sha256-1VmymGotEYdX/RuIncMg7c61E3uC/KTgUNzFr0TWo7Q=" @@ -384,6 +444,18 @@ license = [ ] homepage = "https://github.com/fuchs-fabian/typst-template-aio-studi-and-thesis" +[alchemist."0.1.6"] +url = "https://packages.typst.org/preview/alchemist-0.1.6.tar.gz" +hash = "sha256-+P34Ok62beVlxLq86Do3PWl7ispM4k3VvNxpEMEB/Ts=" +typstDeps = [ + "cetz_0_3_4", +] +description = "A package to render skeletal formulas using CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/Typsium/alchemist" + [alchemist."0.1.5"] url = "https://packages.typst.org/preview/alchemist-0.1.5.tar.gz" hash = "sha256-2gwsoRkHkcKr6Skvi41yq5y53kD8vRMAyvzBS1NRWZY=" @@ -577,6 +649,16 @@ license = [ ] homepage = "https://github.com/platformer/typst-algorithms" +[algorithmic."1.0.0"] +url = "https://packages.typst.org/preview/algorithmic-1.0.0.tar.gz" +hash = "sha256-PANFP/4IuLSVMn6SbECdEvSsyYc9KHJn7Ztqfl6DA4c=" +typstDeps = [] +description = "Algorithm pseudocode typesetting for Typst, inspired by algorithmicx in LaTeX" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/typst-algorithmic" + [algorithmic."0.1.0"] url = "https://packages.typst.org/preview/algorithmic-0.1.0.tar.gz" hash = "sha256-oN5Yl0cWJ5QgzdNIePdQd2hD+uFL+DWcAdPilQ+oM6U=" @@ -603,7 +685,7 @@ homepage = "https://github.com/Raunak12775/aloecius-aip" [amlos."0.2.1"] url = "https://packages.typst.org/preview/amlos-0.2.1.tar.gz" -hash = "sha256-8fo8mYIedny52OXlJ5M2ops8fTBRXOJ9auT27CWFPME=" +hash = "sha256-dKIik7BOkCBjAphoTnO+cz/+HBLaaLu8mPrs/41AoS0=" typstDeps = [] description = "Amlos makes list of symbols" license = [ @@ -674,6 +756,16 @@ license = [ "MIT", ] +[anr-aapg-fanmade."0.1.0"] +url = "https://packages.typst.org/preview/anr-aapg-fanmade-0.1.0.tar.gz" +hash = "sha256-wUiQczOQwvzZtXHd6uPuezMRyuF6mXQEYWs6TBtmBn0=" +typstDeps = [] +description = "Typst templates for ANR AAPG: grant proposals for the French National Research Agency" +license = [ + "ISC", +] +homepage = "https://gitlab.com/gasche/anr-aapg-fanmade-typst-template/" + [ansi-render."0.8.0"] url = "https://packages.typst.org/preview/ansi-render-0.8.0.tar.gz" hash = "sha256-JAtWsp1lvhY+J9OIf5x+4ihEN2kcCoXg2R5HFI9r0nY=" @@ -842,6 +934,26 @@ license = [ ] homepage = "https://github.com/tingerrr/typst-anti-matter" +[apa7-ish."0.2.2"] +url = "https://packages.typst.org/preview/apa7-ish-0.2.2.tar.gz" +hash = "sha256-o/iWSpiCWnJwtPhNkkWAoLK+NrHRR//RoHI30PP6RI4=" +typstDeps = [] +description = "Manuscript template that (mostly) complies with APA7 Style (Work in Progress" +license = [ + "MIT", +] +homepage = "https://github.com/mrwunderbar666/typst-apa7ish" + +[apa7-ish."0.2.1"] +url = "https://packages.typst.org/preview/apa7-ish-0.2.1.tar.gz" +hash = "sha256-yvVrefdVGh8S4CCIs64SQxUDzulLcZAlWGIvzhif0dE=" +typstDeps = [] +description = "Typst Template that (mostly) complies with APA7 Style (Work in Progress" +license = [ + "MIT", +] +homepage = "https://github.com/mrwunderbar666/typst-apa7ish" + [apa7-ish."0.2.0"] url = "https://packages.typst.org/preview/apa7-ish-0.2.0.tar.gz" hash = "sha256-v9wA1y7hwjfF3yxwaSETM7ifymTT/HasN02vE+0dMFo=" @@ -862,6 +974,18 @@ license = [ ] homepage = "https://github.com/mrwunderbar666/typst-apa7ish" +[ape."0.4.0"] +url = "https://packages.typst.org/preview/ape-0.4.0.tar.gz" +hash = "sha256-rlOMgzE9+1OrwLA4ng6gZQoa/oceq4IUKF8TbgOnPVc=" +typstDeps = [ + "cetz_0_3_2", + "cetz-plot_0_1_1", +] +description = "Stop monkeying around with your layouts! Get sophisticated with Ape for Typst" +license = [ + "MIT", +] + [ape."0.3.2"] url = "https://packages.typst.org/preview/ape-0.3.2.tar.gz" hash = "sha256-XY+eBfWembY260n2YHH6xS+Nv/O2Z/XQNNafOXkinmg=" @@ -932,6 +1056,18 @@ license = [ ] homepage = "https://github.com/typst/templates" +[arborly."0.3.1"] +url = "https://packages.typst.org/preview/arborly-0.3.1.tar.gz" +hash = "sha256-c+7milmTqT1pjCkWvXY9vOZ1M7ZhOn25uHESzWo7NqY=" +typstDeps = [ + "mantys_1_0_1", +] +description = "A library for producing beautiful syntax tree graphs" +license = [ + "MIT", +] +homepage = "https://github.com/pearcebasmanm/arborly" + [arborly."0.3.0"] url = "https://packages.typst.org/preview/arborly-0.3.0.tar.gz" hash = "sha256-/5uZL6VbHbNkof5ffFuqnzl1EALCaZ4wdxrYn+IjdSU=" @@ -1237,6 +1373,21 @@ license = [ ] homepage = "https://github.com/avonmoll/bamdone-rebuttal" +[barcala."0.1.2"] +url = "https://packages.typst.org/preview/barcala-0.1.2.tar.gz" +hash = "sha256-TrQa+i1lZP7CF7pHLF1BvTIzaYGimIiyVp5/S8/ZCYo=" +typstDeps = [ + "fancy-units_0_1_1", + "lilaq_0_2_0", + "physica_0_9_5", + "valkyrie_0_2_2", +] +description = "A report template for UNLP students, specially for engineering" +license = [ + "MIT", +] +homepage = "https://github.com/JuanM04/barcala" + [barcala."0.1.1"] url = "https://packages.typst.org/preview/barcala-0.1.1.tar.gz" hash = "sha256-CrtqR7G1X0Uert3ZILtxBn50feB6VtgyR3DoJFvDkok=" @@ -1284,6 +1435,16 @@ license = [ ] homepage = "https://github.com/GabrielDTB/basalt-backlinks" +[basalt-lib."1.1.0"] +url = "https://packages.typst.org/preview/basalt-lib-1.1.0.tar.gz" +hash = "sha256-iB6KV62vA6IAl8r5LuKohUOVc35oyyhsMrLUeU/H21A=" +typstDeps = [] +description = "Note taking utilities / Zettelkasten framework" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/GabrielDTB/basalt-lib" + [basalt-lib."1.0.0"] url = "https://packages.typst.org/preview/basalt-lib-1.0.0.tar.gz" hash = "sha256-zZg+aIQ+7lEVlRfa8Twi+lOzkgaDJ4lwUl+IY+1UyIg=" @@ -1336,6 +1497,18 @@ license = [ ] homepage = "https://github.com/polylux-typ/basic" +[basic-report."0.3.0"] +url = "https://packages.typst.org/preview/basic-report-0.3.0.tar.gz" +hash = "sha256-AMmfXmqp4ckLYl4tF0Rm9C5AqYuWSq5jQw6xqo20xNc=" +typstDeps = [ + "hydra_0_6_1", +] +description = "A simple template for reports" +license = [ + "MIT", +] +homepage = "https://github.com/roland-KA/basic-report-typst-template" + [basic-report."0.2.0"] url = "https://packages.typst.org/preview/basic-report-0.2.0.tar.gz" hash = "sha256-WXemvfXuIw/fBgJ9adUjcbovK797F1lPXvcKLELrs00=" @@ -1384,6 +1557,18 @@ license = [ ] homepage = "https://github.com/roland-KA/basic-report-typst-template" +[basic-resume."0.2.8"] +url = "https://packages.typst.org/preview/basic-resume-0.2.8.tar.gz" +hash = "sha256-L2+gbjKcciwj/2xAGiKhkU6Uj8cXahP1ZrX+um1RgmA=" +typstDeps = [ + "scienceicons_0_1_0", +] +description = "A simple, standard resume, designed to work well with ATS" +license = [ + "Unlicense", +] +homepage = "https://github.com/stuxf/basic-typst-resume-template" + [basic-resume."0.2.7"] url = "https://packages.typst.org/preview/basic-resume-0.2.7.tar.gz" hash = "sha256-qKv8c853nKkPEzW04MEoa4wK0/6dm0lDG6rKU+f6OpI=" @@ -1690,6 +1875,16 @@ license = [ ] homepage = "https://github.com/MDLC01/board-n-pieces" +[bob-draw."0.1.1"] +url = "https://packages.typst.org/preview/bob-draw-0.1.1.tar.gz" +hash = "sha256-NVQEcDtCTA3ZjuzhYJX3syWWnAfPDlY3Qusk3ipehR0=" +typstDeps = [] +description = "svgbob for typst, powered by wasm" +license = [ + "MIT", +] +homepage = "https://github.com/LucaCiucci/bob-typ" + [bob-draw."0.1.0"] url = "https://packages.typst.org/preview/bob-draw-0.1.0.tar.gz" hash = "sha256-cIMRYn4olOWSMeG7Y7YuF28jx0J1HJv8ZocJ8GJiygc=" @@ -1700,9 +1895,20 @@ license = [ ] homepage = "https://github.com/LucaCiucci/bob-typ" +[bone-resume."0.3.1"] +url = "https://packages.typst.org/preview/bone-resume-0.3.1.tar.gz" +hash = "sha256-ExZTdl1lFzyqLs8hyV55awurZ7ITRo5bHuc++YpYM7A=" +typstDeps = [ + "oxifmt_0_2_1", +] +description = "A colorful resume template for chinese" +license = [ + "Apache-2.0", +] + [bone-resume."0.3.0"] url = "https://packages.typst.org/preview/bone-resume-0.3.0.tar.gz" -hash = "sha256-K7aEUrw64QqZrxgjWhpEk/bf0lpC0BJ+0uVBhfduxkk=" +hash = "sha256-xZHJwcR0HZxwHBIntpc1IXChrpKZ1faDV6U6IEgdhio=" typstDeps = [ "oxifmt_0_2_1", ] @@ -1758,6 +1964,16 @@ license = [ "Apache-2.0", ] +[boxed-sheet."0.1.0"] +url = "https://packages.typst.org/preview/boxed-sheet-0.1.0.tar.gz" +hash = "sha256-Es5jOwqOPhtbE3vZJKEoH2W/WFJyRdOLVS/fJ7pVcMc=" +typstDeps = [] +description = "A automatical colored and well organised cheatsheet template for writing daily notes with colored bounding box and line titles" +license = [ + "MIT", +] +homepage = "https://github.com/LZHMS/CheatSheet.git" + [boxr."0.1.0"] url = "https://packages.typst.org/preview/boxr-0.1.0.tar.gz" hash = "sha256-7/BI8so0a2VnjP99d7FR9SiMKN2MXrcH8gPX8UvV6Gg=" @@ -2021,6 +2237,34 @@ license = [ ] homepage = "https://github.com/cu1ch3n/caidan" +[callisto."0.2.4"] +url = "https://packages.typst.org/preview/callisto-0.2.4.tar.gz" +hash = "sha256-tXrlQemxWFQlIdr6Hv4wn74gZz+kkohFhafosxGfi0c=" +typstDeps = [ + "based_0_2_0", + "cmarker_0_1_3", + "mitex_0_2_5", +] +description = "Import Jupyter notebooks" +license = [ + "MIT", +] +homepage = "https://github.com/knuesel/callisto" + +[callisto."0.2.3"] +url = "https://packages.typst.org/preview/callisto-0.2.3.tar.gz" +hash = "sha256-E68idAY+E49HaOV11V0C/AiSVms2OU9/vm8Sp1A40Yo=" +typstDeps = [ + "based_0_2_0", + "cmarker_0_1_3", + "mitex_0_2_5", +] +description = "Import Jupyter notebooks" +license = [ + "MIT", +] +homepage = "https://github.com/knuesel/callisto" + [callisto."0.2.2"] url = "https://packages.typst.org/preview/callisto-0.2.2.tar.gz" hash = "sha256-uX1REI/dk8FlXAE7mGGOI6IuJQh73gWNd5ZOhjrd/gw=" @@ -2069,6 +2313,15 @@ license = [ ] homepage = "https://codeberg.org/kotatsuyaki/canonical-nthu-thesis" +[cartao."0.2.0"] +url = "https://packages.typst.org/preview/cartao-0.2.0.tar.gz" +hash = "sha256-EN47shdewOszij89m1kqWciX9C27PGTIfpJsV29zA+s=" +typstDeps = [] +description = "Dead simple, printable, flashcards with Typst" +license = [ + "MIT", +] + [cartao."0.1.0"] url = "https://packages.typst.org/preview/cartao-0.1.0.tar.gz" hash = "sha256-x1KHuXZo1e1OX3ZjGSVwnQmjSUGeOsaq37gywsUP0wY=" @@ -2078,6 +2331,18 @@ license = [ "MIT", ] +[casson-uom-thesis."0.1.1"] +url = "https://packages.typst.org/preview/casson-uom-thesis-0.1.1.tar.gz" +hash = "sha256-K7J3knhLJtA7SZzC7KWCTksBps9B9sxRVkEuAQbb0sU=" +typstDeps = [ + "wordometer_0_1_4", +] +description = "Typst template based upon The University of Manchester Presentation of Theses Policy which relates to the examination of doctoral and MPhil degrees at The University of Manchester and applies to full-time and part-time postgraduate research students of the following degrees: Doctoral degrees: Doctor of Philosophy (PhD); Doctor of Medicine (MD) Doctor of Business Administration (DBA); Professional, Engineering and Enterprise Doctorates; Master of Philosophy (MPhil). This template has been checked to be compliant with the 2024 requirements. Responsibility for ensuring compliance with the University of Manchester Presentation of Theses Policy remains with the candidate" +license = [ + "MIT-0", +] +homepage = "https://github.com/ALEX-CASSON-LAB/uom_phd_thesis_typst_template" + [casson-uom-thesis."0.1.0"] url = "https://packages.typst.org/preview/casson-uom-thesis-0.1.0.tar.gz" hash = "sha256-MskcdQvh8V3WhwTvKkm9rRKJ5fsvn8JoJwbCjLgMaVQ=" @@ -2100,6 +2365,19 @@ license = [ ] homepage = "https://github.com/jiang131072/casual-szu-report" +[catppuccin."1.0.0"] +url = "https://packages.typst.org/preview/catppuccin-1.0.0.tar.gz" +hash = "sha256-/CwHqCb4TTtto9NNn7SqKtC2L/L1ZqqRkczOGTFkxeg=" +typstDeps = [ + "tidy_0_4_3", + "valkyrie_0_2_2", +] +description = "🪶 Soothing pastel theme for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/catppuccin/typst" + [ccicons."1.0.1"] url = "https://packages.typst.org/preview/ccicons-1.0.1.tar.gz" hash = "sha256-A0ANuek+bbtQKOlW39RVvTonfum33Cl3KEhhlWwRwmw=" @@ -2120,6 +2398,15 @@ license = [ ] homepage = "https://github.com/jneug/typst-ccicons" +[celluloid."0.1.0"] +url = "https://packages.typst.org/preview/celluloid-0.1.0.tar.gz" +hash = "sha256-MIR1y575oBcufXUDNL4I8D1LwHLqBVLW5iU+1QbU4PM=" +typstDeps = [] +description = "A template for writting screenplays based on AMPAS guidelines" +license = [ + "Apache-2.0", +] + [cereal-words."0.1.0"] url = "https://packages.typst.org/preview/cereal-words-0.1.0.tar.gz" hash = "sha256-nfAUTurQid40lvLFmAZzEbVOaCLYVzcH32nEidrMTpU=" @@ -2130,6 +2417,30 @@ license = [ ] homepage = "https://github.com/typst/templates" +[cetramed-polylux."0.1.0"] +url = "https://packages.typst.org/preview/cetramed-polylux-0.1.0.tar.gz" +hash = "sha256-Dk1efofj8t49L2j751VYLviTJ0TX8FJCfGRFphz3iwQ=" +typstDeps = [ + "polylux_0_4_0", +] +description = "CeTraMed template for Polylux" +license = [ + "Unlicense", +] +homepage = "https://github.com/andreasKroepelin/cetramed-polylux" + +[cetz."0.4.0"] +url = "https://packages.typst.org/preview/cetz-0.4.0.tar.gz" +hash = "sha256-f4x0/Bm2ivGu17hsYcly2K7R00gJNhbYckAjbczqM8I=" +typstDeps = [ + "oxifmt_1_0_0", +] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/cetz-package/cetz" + [cetz."0.3.4"] url = "https://packages.typst.org/preview/cetz-0.3.4.tar.gz" hash = "sha256-UvHEY4klR5Wi0Pk8DYVcfUmLsOnxEGOcjNu6B9/Nr9s=" @@ -2278,6 +2589,18 @@ license = [ ] homepage = "https://github.com/johannes-wolf/typst-canvas" +[cetz-plot."0.1.2"] +url = "https://packages.typst.org/preview/cetz-plot-0.1.2.tar.gz" +hash = "sha256-k1spRdo3xHv7NZfFzeXqCQz6lUGogFEkE33LwsYZmuU=" +typstDeps = [ + "cetz_0_4_0", +] +description = "Plotting module for CeTZ" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/cetz-package/cetz-plot" + [cetz-plot."0.1.1"] url = "https://packages.typst.org/preview/cetz-plot-0.1.1.tar.gz" hash = "sha256-Avs6kQAhaxY2OfnJgBx1Ywyo26Y+MUiE6/7aVd/12Ic=" @@ -2302,6 +2625,18 @@ license = [ ] homepage = "https://github.com/cetz-package/cetz-plot" +[cetz-venn."0.1.4"] +url = "https://packages.typst.org/preview/cetz-venn-0.1.4.tar.gz" +hash = "sha256-opsDdUB3F5mpo3185Zyt20bCT0Qb/t8zWRg+PFa/Xk4=" +typstDeps = [ + "cetz_0_4_0", +] +description = "CeTZ library for drawing venn diagrams for two or three sets" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/johannes-wolf/cetz-venn" + [cetz-venn."0.1.3"] url = "https://packages.typst.org/preview/cetz-venn-0.1.3.tar.gz" hash = "sha256-eoVVTVaKLn3qiRngQ4RYIE0yrDLawVr7KMx3NPqdfv4=" @@ -2400,6 +2735,21 @@ license = [ ] homepage = "https://github.com/sylvanfranklin/chatter" +[cheda-seu-thesis."0.3.4"] +url = "https://packages.typst.org/preview/cheda-seu-thesis-0.3.4.tar.gz" +hash = "sha256-PguusfcdtPd1RZ0cLORjsLaPGDFpD7z/GqEaPqbShNw=" +typstDeps = [ + "a2c-nums_0_0_1", + "codelst_2_0_2", + "cuti_0_3_0", + "i-figured_0_2_4", +] +description = "东南大学本科毕设与研究生学位论文模板。UNOFFICIAL Southeast University Thesis Template" +license = [ + "MIT", +] +homepage = "https://github.com/csimide/SEU-Typst-Template" + [cheda-seu-thesis."0.3.3"] url = "https://packages.typst.org/preview/cheda-seu-thesis-0.3.3.tar.gz" hash = "sha256-AkY3KcLDVSODiFyCFCFbC7PiUTYyqL2j8PBvvKTFj0U=" @@ -2878,6 +3228,18 @@ license = [ ] homepage = "https://github.com/alexanderkoller/typst-citegeist" +[cjk-unbreak."0.1.1"] +url = "https://packages.typst.org/preview/cjk-unbreak-0.1.1.tar.gz" +hash = "sha256-if3e285Aj86MpsgHI0tyS4NlRH3W5A4VhLl/Yp+vTpc=" +typstDeps = [ + "touying_0_6_1", +] +description = "Remove spaces caused by line breaks around CJK" +license = [ + "MIT", +] +homepage = "https://github.com/KZNS/cjk-unbreak" + [cjk-unbreak."0.1.0"] url = "https://packages.typst.org/preview/cjk-unbreak-0.1.0.tar.gz" hash = "sha256-i4Rql1otEyJZW1ib987ZACP9u8fx7S8wvMlrZFvLLrI=" @@ -3045,6 +3407,34 @@ license = [ ] homepage = "https://github.com/matisiekpl/agh-typst" +[clean-dhbw."0.3.1"] +url = "https://packages.typst.org/preview/clean-dhbw-0.3.1.tar.gz" +hash = "sha256-aJkpx80Hh56YvrPHSpPW1hYP8UZsbPBwJvq9vlROROM=" +typstDeps = [ + "codelst_2_0_2", + "glossarium_0_5_6", + "hydra_0_6_1", +] +description = "A Typst Template for DHBW" +license = [ + "MIT", +] +homepage = "https://github.com/roland-KA/clean-dhbw-typst-template" + +[clean-dhbw."0.3.0"] +url = "https://packages.typst.org/preview/clean-dhbw-0.3.0.tar.gz" +hash = "sha256-LlBM2JdHYtjYaca9aAIuHAlbYl9YvbrNxeuLi/waUhE=" +typstDeps = [ + "codelst_2_0_2", + "glossarium_0_5_6", + "hydra_0_6_1", +] +description = "A Typst Template for DHBW" +license = [ + "MIT", +] +homepage = "https://github.com/roland-KA/clean-dhbw-typst-template" + [clean-dhbw."0.2.1"] url = "https://packages.typst.org/preview/clean-dhbw-0.2.1.tar.gz" hash = "sha256-JAF0qUnqAlKzVU2g8XYrRJRDX2whTeS5rq8Jfo/upk4=" @@ -3084,6 +3474,34 @@ license = [ ] homepage = "https://github.com/roland-KA/clean-dhbw-typst-template" +[clean-hwr."0.1.0"] +url = "https://packages.typst.org/preview/clean-hwr-0.1.0.tar.gz" +hash = "sha256-on5VP/Qrk2rpn2t3YoEhcs9qgaG/Dyu4S7pkqFvvd1c=" +typstDeps = [ + "acrostiche_0_5_2", + "glossarium_0_5_6", + "wordometer_0_1_4", +] +description = "A simple and good looking template for the Berlin School for Economics and Law" +license = [ + "MIT", +] +homepage = "https://github.com/testspieler09/clean-hwr-template" + +[clean-math-paper."0.2.1"] +url = "https://packages.typst.org/preview/clean-math-paper-0.2.1.tar.gz" +hash = "sha256-DyXu46y/WFZPZeCLkrX/piFhy6lmZZm0ZuTB6CHf6iE=" +typstDeps = [ + "great-theorems_0_1_2", + "i-figured_0_2_4", + "rich-counters_0_2_2", +] +description = "A simple and good looking template for mathematical papers" +license = [ + "MIT", +] +homepage = "https://github.com/JoshuaLampert/clean-math-paper" + [clean-math-paper."0.2.0"] url = "https://packages.typst.org/preview/clean-math-paper-0.2.0.tar.gz" hash = "sha256-c3pc80WKoTPUmavlZ8BLg/iU89wvuwiI4d0ousSY7oM=" @@ -3221,6 +3639,16 @@ license = [ ] homepage = "https://github.com/daskol/typst-templates" +[cmarker."0.1.6"] +url = "https://packages.typst.org/preview/cmarker-0.1.6.tar.gz" +hash = "sha256-L/lp2Skb/MUxNYmLL1D2MXW/pkQK8Rw6WgkmBIfnc74=" +typstDeps = [] +description = "Transpile CommonMark Markdown to Typst, from within Typst" +license = [ + "MIT", +] +homepage = "https://github.com/SabrinaJewson/cmarker.typ" + [cmarker."0.1.5"] url = "https://packages.typst.org/preview/cmarker-0.1.5.tar.gz" hash = "sha256-5Y9ucv5QfjvrHG8ZxypW88XjjjB8XWqxm5Y2pwFgQDA=" @@ -3377,6 +3805,15 @@ license = [ ] homepage = "https://github.com/jneug/typst-codetastic" +[codex-woltiensis."0.2.0"] +url = "https://packages.typst.org/preview/codex-woltiensis-0.2.0.tar.gz" +hash = "sha256-GTw6eEMD27YS1vU1AolE7Jax2Dip4fm6m79WmmJXkws=" +typstDeps = [] +description = "Create student song books like the Codex Woltiensis. Full layout of classical songbook" +license = [ + "MIT", +] + [codex-woltiensis."0.1.0"] url = "https://packages.typst.org/preview/codex-woltiensis-0.1.0.tar.gz" hash = "sha256-lNBYW8K+UDCKtLTkjg/WZ0AqGJEB+CKZiZpJVRJGvTE=" @@ -3582,6 +4019,18 @@ license = [ ] homepage = "https://codeberg.org/foxy/color-my-agda" +[colorful-boxes."1.4.3"] +url = "https://packages.typst.org/preview/colorful-boxes-1.4.3.tar.gz" +hash = "sha256-PVZcbkfRfHU5lgU2K9RNCJqfF+z/qY5JfGget+OTCd4=" +typstDeps = [ + "showybox_2_0_3", +] +description = "Predefined colorful boxes to spice up your document" +license = [ + "MIT", +] +homepage = "https://github.com/lkoehl/typst-boxes" + [colorful-boxes."1.4.2"] url = "https://packages.typst.org/preview/colorful-boxes-1.4.2.tar.gz" hash = "sha256-vX93MQBxkyIzL+lkR+GEEiVQqT7Bxd0RsY66KfRRnHM=" @@ -3742,6 +4191,28 @@ license = [ ] homepage = "https://github.com/sitandr/conchord" +[conjak."0.2.3"] +url = "https://packages.typst.org/preview/conjak-0.2.3.tar.gz" +hash = "sha256-fkmBeHJwFg9GFov7/H3bco1UqNMZxq4sTkt9Ovx7MLE=" +typstDeps = [] +description = "Format numbers in ConJaK conventions" +license = [ + "MIT", +] +homepage = "https://github.com/wensimehrp/conjak" + +[consketcher."0.1.0"] +url = "https://packages.typst.org/preview/consketcher-0.1.0.tar.gz" +hash = "sha256-vKgtYoXFkZcAq4n8sGhTP+WR0o+/DAorlttKMwHObZI=" +typstDeps = [ + "fletcher_0_5_7", +] +description = "Draws control blocks using fletcher and CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/ivaquero/typst-consketcher" + [cram-snap."0.2.2"] url = "https://packages.typst.org/preview/cram-snap-0.2.2.tar.gz" hash = "sha256-jnIWn0RjxOFLvh0TNJ/GBDr8YJGCq7gV6RCgFw3uZJY=" @@ -4145,6 +4616,19 @@ license = [ "MIT", ] +[cyberschool-errorteaplate."0.1.5"] +url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.5.tar.gz" +hash = "sha256-byWzwRm13Vqd1c/bJ/1yZdm1dw+wfg9QwIpTOZSBuJg=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", +] +description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" +license = [ + "MIT", +] +homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" + [cyberschool-errorteaplate."0.1.4"] url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.4.tar.gz" hash = "sha256-BHJNjdvj53BHDhvqjkSRk0bLBUzlbYazd+ZXzgj0FSo=" @@ -4221,6 +4705,16 @@ license = [ ] homepage = "https://github.com/Otto-AA/dashy-todo" +[datify."0.1.4"] +url = "https://packages.typst.org/preview/datify-0.1.4.tar.gz" +hash = "sha256-L4Ke+165ukcmBoWilOeBm0Jvx2vtbMLH+uyUxFyvdF0=" +typstDeps = [] +description = "Datify is a simple date package that allows users to format dates in new ways and addresses the issue of lacking date formats in different languages" +license = [ + "MIT", +] +homepage = "https://github.com/Jeomhps/datify" + [datify."0.1.3"] url = "https://packages.typst.org/preview/datify-0.1.3.tar.gz" hash = "sha256-mKkhBH3GiqoQ39/LcWOCrzPqZlaT1JUbXbmCST7f9N4=" @@ -4417,6 +4911,16 @@ license = [ ] homepage = "https://github.com/0rphee/derive-it" +[diagraph."0.3.4"] +url = "https://packages.typst.org/preview/diagraph-0.3.4.tar.gz" +hash = "sha256-xhvuq7xva0vIRdxYFrMcQTfcZATfxN+SBbV7ofAx58I=" +typstDeps = [] +description = "Draw graphs with Graphviz. Use mathematical formulas as labels" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + [diagraph."0.3.3"] url = "https://packages.typst.org/preview/diagraph-0.3.3.tar.gz" hash = "sha256-RwNjmzaTCjMmBMeSd8WPRIQu44IkN+cYW27P18tqN+4=" @@ -4547,6 +5051,18 @@ license = [ ] homepage = "https://github.com/Robotechnic/diagraph.git" +[diatypst."0.6.0"] +url = "https://packages.typst.org/preview/diatypst-0.6.0.tar.gz" +hash = "sha256-mBIH+lXGlFoeEfAHKuHoklrg0DT2UxMEjYlfnmx/g+E=" +typstDeps = [ + "diatypst_0_2_0", +] +description = "easy slides in typst - sensible defaults, easy syntax, well styled" +license = [ + "MIT-0", +] +homepage = "https://github.com/skriptum/Diatypst" + [diatypst."0.5.0"] url = "https://packages.typst.org/preview/diatypst-0.5.0.tar.gz" hash = "sha256-OVbxSP8JMJAZXlVi+Sky5S7o66nImHPXW7/lDn0qVwk=" @@ -4634,6 +5150,16 @@ license = [ ] homepage = "https://github.com/tedius-git/divine-words" +[dovenv."0.1.0"] +url = "https://packages.typst.org/preview/dovenv-0.1.0.tar.gz" +hash = "sha256-H0yY6dW6FwFTkTE6K8A0UmjSbPbIFuh+RH2ggD6JbZw=" +typstDeps = [] +description = "Smoothly loads environment variables from dotenv (.env) files" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/Myriad-Dreamin/dotenv-typ" + [down."0.1.0"] url = "https://packages.typst.org/preview/down-0.1.0.tar.gz" hash = "sha256-GA9mB7xmY68E8058uZ1RsNv1qJ+fhm6zaULfcAfd76A=" @@ -4902,6 +5428,18 @@ license = [ ] homepage = "https://github.com/jmigual/typst-efilrst" +[eggs."0.1.0"] +url = "https://packages.typst.org/preview/eggs-0.1.0.tar.gz" +hash = "sha256-e+giwCf/rFnzqeI/aSKh/oMZILsPUn2Wdrb5UCdQoD8=" +typstDeps = [ + "tidy_0_4_3", +] +description = "Linguistic examples with minimalist syntax" +license = [ + "MIT", +] +homepage = "https://github.com/retroflexivity/typst-eggs" + [electify."0.1.1"] url = "https://packages.typst.org/preview/electify-0.1.1.tar.gz" hash = "sha256-THxg8Rvy08WCwrOBAjAgyZXsxWtwr1QNgx5mZ3HZob0=" @@ -4922,6 +5460,55 @@ license = [ ] homepage = "https://github.com/G0STG0D/typst-packages" +[elegant-paper."0.1.0"] +url = "https://packages.typst.org/preview/elegant-paper-0.1.0.tar.gz" +hash = "sha256-wZrzTcTsXAB4imihHMcViaUUT6KGa8PBJAe00Hg28l8=" +typstDeps = [ + "zh-kit_0_1_0", +] +description = "A Typst template for elegant papers" +license = [ + "LGPL-3.0-only", +] +homepage = "https://github.com/ctypst/elegant-paper-typst" + +[elegant-polimi-thesis."0.1.0"] +url = "https://packages.typst.org/preview/elegant-polimi-thesis-0.1.0.tar.gz" +hash = "sha256-oacgSwj6UWnvlkibSYHpru0mCCAhw5ES9HprqnRlzbc=" +typstDeps = [ + "algo_0_3_6", + "lovelace_0_3_0", + "metalogo_1_2_0", + "subpar_0_2_2", +] +description = "An unofficial thesis template for the Polytechnic University of Milan" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/VictuarVi/PoliMi-PhD-Thesis" + +[elembic."1.1.0"] +url = "https://packages.typst.org/preview/elembic-1.1.0.tar.gz" +hash = "sha256-O8V0/e1fWZh1UdIHlJM2IU6SGpqvWBwbzkCqyBn91Gg=" +typstDeps = [] +description = "Framework for custom elements and types in Typst" +license = [ + "MIT", + "Apache-2.0", +] +homepage = "https://github.com/PgBiel/elembic" + +[elembic."1.0.0"] +url = "https://packages.typst.org/preview/elembic-1.0.0.tar.gz" +hash = "sha256-0Fq4/TtbUCRyBJQIBIrwyN5sI1WQuqk0+JE318crR4k=" +typstDeps = [] +description = "Framework for custom elements and types in Typst" +license = [ + "MIT", + "Apache-2.0", +] +homepage = "https://github.com/PgBiel/elembic" + [elsearticle."0.4.2"] url = "https://packages.typst.org/preview/elsearticle-0.4.2.tar.gz" hash = "sha256-QlnOgnxC5dBlFtBVKlgbdE/QnC3yeIUpT7Kn445HrXI=" @@ -5059,6 +5646,16 @@ license = [ ] homepage = "https://github.com/bkorecic/enunciado-facil-fcfm" +[epsilon."0.1.0"] +url = "https://packages.typst.org/preview/epsilon-0.1.0.tar.gz" +hash = "sha256-kdvynZ4VwCz7ejJ4vCp3l5OlPP7Gw8mE0zfrN6JEpCE=" +typstDeps = [] +description = "Numerical root-finding" +license = [ + "MIT", +] +homepage = "https://gitlab.com/netzwerk2/epsilon" + [eqalc."0.1.3"] url = "https://packages.typst.org/preview/eqalc-0.1.3.tar.gz" hash = "sha256-8m31R/YQmCJTp3QC7czxIHvELcocZWLkcLgaZw5aYAk=" @@ -5099,6 +5696,16 @@ license = [ ] homepage = "https://github.com/7ijme/eqalc" +[equate."0.3.2"] +url = "https://packages.typst.org/preview/equate-0.3.2.tar.gz" +hash = "sha256-WogaNLFpCsysRfkwnxph0OVFJGs9CTKQYYAG9+7xKhA=" +typstDeps = [] +description = "Various enhancements for mathematical expressions" +license = [ + "MIT", +] +homepage = "https://github.com/EpicEricEE/typst-equate" + [equate."0.3.1"] url = "https://packages.typst.org/preview/equate-0.3.1.tar.gz" hash = "sha256-nEUnNszy1cVaemsqdAmjvj34obYPH3fGfWHX6Rb7ajE=" @@ -5191,6 +5798,16 @@ license = [ ] homepage = "https://github.com/tarunjana/examify" +[examine-ib."0.1.1"] +url = "https://packages.typst.org/preview/examine-ib-0.1.1.tar.gz" +hash = "sha256-ETq7Oh6yUjasgA/Z4TtuxWw2fVJtOn/vgDa1wBhBQkc=" +typstDeps = [] +description = "Template for creating exams, tests, quizzes, based on the IB exam formatting" +license = [ + "Unlicense", +] +homepage = "https://github.com/nycrat/typst-ib-exam-template" + [examit."0.1.1"] url = "https://packages.typst.org/preview/examit-0.1.1.tar.gz" hash = "sha256-vm0p0uFU943pCQqpAWZI3bIBruQr/ELNzrO5b/NRv3A=" @@ -5202,6 +5819,22 @@ license = [ "MIT", ] +[examora."0.1.0"] +url = "https://packages.typst.org/preview/examora-0.1.0.tar.gz" +hash = "sha256-9Rmduuom0ed3YwKXdl68xVGZz8mTfOxUah8UBP6/qJM=" +typstDeps = [ + "a2c-nums_0_0_1", + "cetz_0_4_0", + "cetz-plot_0_1_2", + "cuti_0_3_0", + "suiji_0_4_0", +] +description = "Template for examination paper: 考试试题模板" +license = [ + "MIT", +] +homepage = "https://github.com/pdcxs/examora" + [example."0.1.0"] url = "https://packages.typst.org/preview/example-0.1.0.tar.gz" hash = "sha256-VH5lAZYFEGfo3FVKoKgiqvmVUjrTlX+MzQI1e/N7oEM=" @@ -5334,6 +5967,16 @@ license = [ ] homepage = "https://github.com/janekfleper/typst-fancy-units" +[fantastic-cv."0.1.0"] +url = "https://packages.typst.org/preview/fantastic-cv-0.1.0.tar.gz" +hash = "sha256-4XorIpYhsB6J/FGzfUCJAP8gCPIqBO9AbZG4TcPdDRo=" +typstDeps = [] +description = "A fantastic cv template that is highly customizable and easy to use" +license = [ + "MIT", +] +homepage = "https://github.com/austinyu/fantastic-cv" + [fauve-cdb."0.1.0"] url = "https://packages.typst.org/preview/fauve-cdb-0.1.0.tar.gz" hash = "sha256-vc61E1kMUSVpgpQDX3lfUnpFpjenTLVeWa5WuK6TEsA=" @@ -5457,6 +6100,18 @@ license = [ "MIT", ] +[fine-lncs."0.1.0"] +url = "https://packages.typst.org/preview/fine-lncs-0.1.0.tar.gz" +hash = "sha256-H2QM5j3Jx6Y/Di7D8yZTlu9AEnKQ7deMVhHwbWnHpjc=" +typstDeps = [ + "lemmify_0_1_8", +] +description = "An Springer's Lecture Notes in Computer Science (LNCS) styled template" +license = [ + "MIT", +] +homepage = "https://github.com/Jozott00/typst-fine-lncs" + [finely-crafted-cv."0.3.0"] url = "https://packages.typst.org/preview/finely-crafted-cv-0.3.0.tar.gz" hash = "sha256-FIFb++hf4R8p+xzRfAc03wq+i4c8HG+K072KBaPP/mA=" @@ -5487,6 +6142,19 @@ license = [ ] homepage = "https://github.com/swaits/typst-collection" +[finite."0.5.0"] +url = "https://packages.typst.org/preview/finite-0.5.0.tar.gz" +hash = "sha256-l8AimokuwprzRMbjy3Cmq/d20x/ZfM2YyAiYD9EO0i4=" +typstDeps = [ + "cetz_0_3_4", + "t4t_0_4_3", +] +description = "Typst-setting finite automata with CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-finite" + [finite."0.4.1"] url = "https://packages.typst.org/preview/finite-0.4.1.tar.gz" hash = "sha256-wQe8Rb63gPqULtmKglYzJsXKNNZlgngwhGUPgQ0MpDQ=" @@ -5561,6 +6229,16 @@ license = [ "MIT", ] +[flagada."0.2.0"] +url = "https://packages.typst.org/preview/flagada-0.2.0.tar.gz" +hash = "sha256-kXIHE69IXN9ibklRoVMB8RWDVWCaspU6B+fuWNo1VAI=" +typstDeps = [] +description = "A package to generate countries flags, selecting country based on its ISO3166-1 code" +license = [ + "MIT", +] +homepage = "https://github.com/samrenault/flagada" + [flagada."0.1.0"] url = "https://packages.typst.org/preview/flagada-0.1.0.tar.gz" hash = "sha256-tyDAcymyVhl9B+u5Abl5hU2vwB7D1uIDyZEnxwU18RQ=" @@ -5583,6 +6261,30 @@ license = [ ] homepage = "https://codeberg.org/Kuchenmampfer/flautomat" +[fleck."0.1.0"] +url = "https://packages.typst.org/preview/fleck-0.1.0.tar.gz" +hash = "sha256-bhiJPN8JxJ5gh4ZfzrXbfIe3z4i90pc2ge+le4FZBnw=" +typstDeps = [] +description = "Reimplementation of Latex Coffee Stains in typst" +license = [ + "MIT", +] +homepage = "https://github.com/leiserfg/fleck" + +[fletcher."0.5.8"] +url = "https://packages.typst.org/preview/fletcher-0.5.8.tar.gz" +hash = "sha256-kiqiNzFU4imhPnwzwV1bGgGfS3mZOo96JsKboA5yjtU=" +typstDeps = [ + "cetz_0_3_4", + "tidy_0_4_1", + "touying_0_5_5", +] +description = "Draw diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + [fletcher."0.5.7"] url = "https://packages.typst.org/preview/fletcher-0.5.7.tar.gz" hash = "sha256-jsLbE6cHDTjDelrGkB2CSIqfGaeAeQ1RcQRDBx3hA9k=" @@ -5819,6 +6521,20 @@ license = [ ] homepage = "https://github.com/Jollywatt/typst-fletcher" +[flow."0.3.2"] +url = "https://packages.typst.org/preview/flow-0.3.2.tar.gz" +hash = "sha256-MXoV4FUiXltFY6DXxxLHCwoTs9u8DExruOJzXT20nyE=" +typstDeps = [ + "cetz-plot_0_1_1", + "whalogen_0_3_0", +] +description = "A few templates and too many scattered utils" +license = [ + "MIT", + "MIT-0", +] +homepage = "https://github.com/MultisampledNight/flow" + [flow."0.3.1"] url = "https://packages.typst.org/preview/flow-0.3.1.tar.gz" hash = "sha256-YwXzPmBurBdyOeuspshwbLRd4XSdiSlzK28J80k2+Fw=" @@ -5865,6 +6581,20 @@ license = [ ] homepage = "https://github.com/MultisampledNight/flow" +[flyingcircus."3.3.0"] +url = "https://packages.typst.org/preview/flyingcircus-3.3.0.tar.gz" +hash = "sha256-lOCr2yWHFdGlshaSRh67W+OAAu/6HPfl3j34V28eKc8=" +typstDeps = [ + "cetz_0_4_0", + "cetz-plot_0_1_2", + "cuti_0_2_1", +] +description = "For creating homebrew documents with the same fancy style as the Flying Circus book? Provides simple commands to generate a whole aircraft stat page, vehicle, or even ship" +license = [ + "MIT", +] +homepage = "https://github.com/Tetragramm/flying-circus-typst-template" + [flyingcircus."3.2.1"] url = "https://packages.typst.org/preview/flyingcircus-3.2.1.tar.gz" hash = "sha256-dmqOomiW/j5fNEyPqUho6Xsg/5qtQlfPwmMigqK+acg=" @@ -6125,6 +6855,16 @@ license = [ ] homepage = "https://github.com/liuguangxi/fractusist" +[frame-it."1.2.0"] +url = "https://packages.typst.org/preview/frame-it-1.2.0.tar.gz" +hash = "sha256-DWn68Fo+tw//7J9SGE0BmhoXB/Rtv9Y4tsvxWssAhqI=" +typstDeps = [] +description = "Beautiful, flexible, and integrated. Display custom frames for theorems, environments, and more. Attractive visuals with syntax that blends seamlessly into the source" +license = [ + "MIT", +] +homepage = "https://github.com/marc-thieme/frame-it" + [frame-it."1.1.2"] url = "https://packages.typst.org/preview/frame-it-1.1.2.tar.gz" hash = "sha256-kQ3ThqquoBUsn9WW0R93FTAGnkdyGc4dOc9XfZNOzPg=" @@ -6419,6 +7159,18 @@ license = [ ] homepage = "https://github.com/connortwiegand/game-theoryst" +[gantty."0.3.0"] +url = "https://packages.typst.org/preview/gantty-0.3.0.tar.gz" +hash = "sha256-yfyaSGb3c8+ZnyJdF3gfI+faUbjhZI0qhYMXCRPh6nk=" +typstDeps = [ + "cetz_0_3_4", +] +description = "Create gantt charts using datetimes" +license = [ + "LGPL-3.0-only", +] +homepage = "https://gitlab.com/john_t/typst-gantty" + [gantty."0.2.0"] url = "https://packages.typst.org/preview/gantty-0.2.0.tar.gz" hash = "sha256-AFrlAvMhIeQ8yP9Oa8ID4eO9eA4jGzEGxI6BnBjHlik=" @@ -6663,6 +7415,26 @@ license = [ ] homepage = "https://github.com/RolfBremer/typst-glossary" +[glossarium."0.5.6"] +url = "https://packages.typst.org/preview/glossarium-0.5.6.tar.gz" +hash = "sha256-PSJistNVYaEt1VjLxTzieSrOCNKkdbl8x5JWrF/6qfM=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/glossarium" + +[glossarium."0.5.5"] +url = "https://packages.typst.org/preview/glossarium-0.5.5.tar.gz" +hash = "sha256-XduxdzVNbGQJoZgrK0z0nEQ9UfMYsJYakWM5m88S0As=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/glossarium" + [glossarium."0.5.4"] url = "https://packages.typst.org/preview/glossarium-0.5.4.tar.gz" hash = "sha256-OXkASSsWbK2IjoRK6n8L1VLOLKqoj184+2Nl1KrAGh8=" @@ -7063,6 +7835,30 @@ license = [ "MIT", ] +[grape-suite."3.1.0"] +url = "https://packages.typst.org/preview/grape-suite-3.1.0.tar.gz" +hash = "sha256-lIeuFWj6l5wbDTucXEHBk+3vdalMIVbBcjD7Sys1ovA=" +typstDeps = [ + "polylux_0_4_0", +] +description = "Library of templates for exams, seminar papers, homeworks, etc" +license = [ + "MIT", +] +homepage = "https://github.com/piepert/grape-suite" + +[grape-suite."3.0.0"] +url = "https://packages.typst.org/preview/grape-suite-3.0.0.tar.gz" +hash = "sha256-r3iVzGFb1WZb/u8COdUYzzYfIj80+ociUAdl74XbuZU=" +typstDeps = [ + "polylux_0_4_0", +] +description = "Library of templates for exams, seminar papers, homeworks, etc" +license = [ + "MIT", +] +homepage = "https://github.com/piepert/grape-suite" + [grape-suite."2.0.0"] url = "https://packages.typst.org/preview/grape-suite-2.0.0.tar.gz" hash = "sha256-c0LlnyarxBx8LBmAk51QDuBPbMZRiHfRb7bcrUn9Zfw=" @@ -7159,6 +7955,34 @@ license = [ ] homepage = "https://github.com/jbirnick/typst-great-theorems" +[griddle."0.2.0"] +url = "https://packages.typst.org/preview/griddle-0.2.0.tar.gz" +hash = "sha256-FK20bs4kRQfBjOMZUfyqxEDtecTNWPgDd+fqTP42foE=" +typstDeps = [] +description = "Design and visualize crossword puzzles" +license = [ + "GPL-3.0-or-later", +] + +[griddle."0.1.0"] +url = "https://packages.typst.org/preview/griddle-0.1.0.tar.gz" +hash = "sha256-kRgED72g/Pqsg/dYGdvO4dPky43OyQA8mJGGtZcihz0=" +typstDeps = [] +description = "Design and visualize crossword puzzles" +license = [ + "GPL-3.0-or-later", +] + +[gridlock."0.4.0"] +url = "https://packages.typst.org/preview/gridlock-0.4.0.tar.gz" +hash = "sha256-Sg/yyiXtb8ihX6iOholHHrXDn/vT+LaZzXs1U56uJ1I=" +typstDeps = [] +description = "Grid typesetting in Typst" +license = [ + "Unlicense", +] +homepage = "https://github.com/ssotoen/gridlock" + [gridlock."0.3.0"] url = "https://packages.typst.org/preview/gridlock-0.3.0.tar.gz" hash = "sha256-B/o48gnSfhS01A7MjfXdIkbGlPOLQ3ag6Pq02VDHccg=" @@ -7189,6 +8013,26 @@ license = [ ] homepage = "https://github.com/ssotoen/gridlock" +[grotesk-cv."1.0.4"] +url = "https://packages.typst.org/preview/grotesk-cv-1.0.4.tar.gz" +hash = "sha256-NMRU0vPoGT5xrbG/lcGwMs0vsaV56rwEmacQ+1SF2iM=" +typstDeps = [] +description = "A clean CV and cover letter template based on Brilliant-cv and fireside templates" +license = [ + "Unlicense", +] +homepage = "https://github.com/AsiSkarp/grotesk-cv" + +[grotesk-cv."1.0.3"] +url = "https://packages.typst.org/preview/grotesk-cv-1.0.3.tar.gz" +hash = "sha256-DLwp5MxSZ3gTZV0rzxvpKYwl6unCdT49JatUuqdhvZs=" +typstDeps = [] +description = "A clean CV and cover letter template based on Brilliant-cv and fireside templates" +license = [ + "Unlicense", +] +homepage = "https://github.com/AsiSkarp/grotesk-cv" + [grotesk-cv."1.0.2"] url = "https://packages.typst.org/preview/grotesk-cv-1.0.2.tar.gz" hash = "sha256-Vo+LH70Ny+28MxE06YXmg+YuCzLkiNHXP+ytUqL/DKg=" @@ -7344,7 +8188,7 @@ homepage = "https://github.com/34j/typst-hagakiii" [hamnosys-includer."0.1.0"] url = "https://packages.typst.org/preview/hamnosys-includer-0.1.0.tar.gz" -hash = "sha256-kLu2ci0HW9sRpop9HZ1Hd8UcBrozLcn4LDuubXrFjKM=" +hash = "sha256-t1aYMwmrttYE9XPIMVKJbXw75tr8jy5dEaYK4T0aqJ8=" typstDeps = [] description = "For using HamNoSys in Typst" license = [ @@ -7800,6 +8644,22 @@ license = [ ] homepage = "https://github.com/hei-templates/hei-synd-report" +[hei-synd-thesis."0.2.0"] +url = "https://packages.typst.org/preview/hei-synd-thesis-0.2.0.tar.gz" +hash = "sha256-GZCE71ji6RNfjeF4FSFkacMbo8p8sIdvoAU0/lM1w34=" +typstDeps = [ + "codelst_2_0_2", + "fractusist_0_3_2", + "glossarium_0_5_6", + "icu-datetime_0_1_2", + "wordometer_0_1_4", +] +description = "A thesis template tailored to the Systems Engineering (Synd) program at the HEI-Vs School of Engineering, Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/hei-templates/hei-synd-thesis" + [hei-synd-thesis."0.1.1"] url = "https://packages.typst.org/preview/hei-synd-thesis-0.1.1.tar.gz" hash = "sha256-arCFWYx4S/nitZSMlrgRjXdzz1ro/eM1cEBk9gZUeUs=" @@ -7843,6 +8703,39 @@ license = [ ] homepage = "https://github.com/gnist-dev/herodot" +[heroic."0.1.0"] +url = "https://packages.typst.org/preview/heroic-0.1.0.tar.gz" +hash = "sha256-3L551obRnGGTg0j0vfeKJ+QJbfA6yhkDFlW+CEWLjQU=" +typstDeps = [] +description = "Use Heroicons in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-heroic" + +[hhn-unitylab-thesis-template."0.0.2"] +url = "https://packages.typst.org/preview/hhn-unitylab-thesis-template-0.0.2.tar.gz" +hash = "sha256-JaL4bV591+AiFXijkuQBFhoDGYhfU8ZwPyxrp0S9o08=" +typstDeps = [ + "cetz_0_3_4", + "chronos_0_2_1", + "circuiteria_0_2_0", + "codly_1_3_0", + "codly-languages_0_1_8", + "dining-table_0_1_0", + "fletcher_0_5_7", + "glossarium_0_5_4", + "tablem_0_2_0", + "tablex_0_0_9", + "timeliney_0_2_0", + "wrap-it_0_1_1", +] +description = "The official Thesis Template from the Usability and Interaction Technology Laboratory (UniTyLab) of the Heilbronn University (HHN" +license = [ + "MIT", +] +homepage = "https://github.com/Ferrys93de/UniTyLab-Thesis-Template" + [hhn-unitylab-thesis-template."0.0.1"] url = "https://packages.typst.org/preview/hhn-unitylab-thesis-template-0.0.1.tar.gz" hash = "sha256-nUUMm1vlguTyfcHyMZ3MwzFCwCRxtFo3VLiDYyUegYE=" @@ -8087,6 +8980,16 @@ license = [ ] homepage = "https://github.com/tingerrr/hydra" +[hyperscript."0.1.0"] +url = "https://packages.typst.org/preview/hyperscript-0.1.0.tar.gz" +hash = "sha256-hLI4ySFGMsHfncaaZFpVDsbERfcEv32D8RTTtAJvHMc=" +typstDeps = [] +description = "Hyperscript-style HTML creation for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/tshort/hyperscript" + [i-figured."0.2.4"] url = "https://packages.typst.org/preview/i-figured-0.2.4.tar.gz" hash = "sha256-508q3J4Sj5QnxexJndtbrvekcBpuLjyv9Bkt7QgdkPk=" @@ -8195,6 +9098,18 @@ license = [ ] homepage = "https://github.com/typst/templates" +[iconic-salmon-fa."1.1.0"] +url = "https://packages.typst.org/preview/iconic-salmon-fa-1.1.0.tar.gz" +hash = "sha256-bw31SUHRLwJnoHAwtnhfCjl+mBXjv6eqEvMfcxj3KFM=" +typstDeps = [ + "fontawesome_0_5_0", +] +description = "A Typst library for Social Media references with icons based on Font Awesome" +license = [ + "MIT", +] +homepage = "https://github.com/Bi0T1N/typst-iconic-salmon-fa" + [iconic-salmon-fa."1.0.0"] url = "https://packages.typst.org/preview/iconic-salmon-fa-1.0.0.tar.gz" hash = "sha256-7Pmqj+FuJXb8uercaHoW5bTGPYtYqyRdwa1ZLcZJlAY=" @@ -8567,6 +9482,15 @@ license = [ ] homepage = "https://github.com/talal/ilm" +[impaginato."0.1.0"] +url = "https://packages.typst.org/preview/impaginato-0.1.0.tar.gz" +hash = "sha256-pQPxm8ggBP0YBMSu4fiHK4/h7h1SGrhZPdeTOBXwOBE=" +typstDeps = [] +description = "A practical flyer to print and cut at home" +license = [ + "MIT", +] + [imprecv."1.0.1"] url = "https://packages.typst.org/preview/imprecv-1.0.1.tar.gz" hash = "sha256-q0y6QunluYMFNTJKlUqFheRDKzkQ7L7cuOKCX37/PXU=" @@ -8587,6 +9511,19 @@ license = [ ] homepage = "https://github.com/jskherman/imprecv" +[impressive-impression."0.1.0"] +url = "https://packages.typst.org/preview/impressive-impression-0.1.0.tar.gz" +hash = "sha256-bcnoPACzE3kI/ZXxjEqb2UzCeklM8Ofk9hD0l831ZJ4=" +typstDeps = [ + "fontawesome_0_5_0", + "nth_1_0_1", +] +description = "A Typst template for a professional and readable curriculum vitae" +license = [ + "MIT", +] +homepage = "https://github.com/JeppeKlitgaard/impressive-impression" + [in-dexter."0.7.0"] url = "https://packages.typst.org/preview/in-dexter-0.7.0.tar.gz" hash = "sha256-yzRnJe14VYyYWSYAs3pEDDZLU8QfBfC2sK1OP0Bkc50=" @@ -8859,6 +9796,68 @@ license = [ ] homepage = "https://github.com/danielFHcode/typst-screenplay" +[iversymbols."1.0.0"] +url = "https://packages.typst.org/preview/iversymbols-1.0.0.tar.gz" +hash = "sha256-AwzFq8VodBokrIFXF3iWJM+iOGA5UV0xiPrwyssVxmk=" +typstDeps = [] +description = "Symbols definition for Iversonian languages" +license = [ + "MIT", +] +homepage = "https://github.com/glpda/typst-iversymbols" + +[jaconf."0.3.0"] +url = "https://packages.typst.org/preview/jaconf-0.3.0.tar.gz" +hash = "sha256-b5um0HbkDzjEGf+4BQ0jl3/kzQ1K/WLnPM8Yf/ezEKU=" +typstDeps = [ + "codly_1_3_0", + "ctheorems_1_1_3", +] +description = "Template for Japanese academic conference papers. 日本語の学会論文テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jp-conf-template" + +[jaconf."0.2.0"] +url = "https://packages.typst.org/preview/jaconf-0.2.0.tar.gz" +hash = "sha256-5xmilnRul9O9qoUX0+P/OFa7++jVxu7a3+W2uoKBQtU=" +typstDeps = [ + "codly_1_3_0", + "ctheorems_1_1_3", +] +description = "Template for Japanese academic conference papers. 日本語の学会論文テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jp-conf-template" + +[jaconf."0.1.0"] +url = "https://packages.typst.org/preview/jaconf-0.1.0.tar.gz" +hash = "sha256-PhIVlUMIVpcIuWUG9vp9eFLZf1g3qsq/oUCNK3NPEDE=" +typstDeps = [ + "codly_1_3_0", + "ctheorems_1_1_3", +] +description = "Template for Japanese academic conference papers. 国内学会論文の日本語テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jp-conf-template" + +[jaconf-mscs."0.1.1"] +url = "https://packages.typst.org/preview/jaconf-mscs-0.1.1.tar.gz" +hash = "sha256-6Ha6XG1TOmrRRg2PNWKl/3XKAnE+TJdWrzfSlnRfXnk=" +typstDeps = [ + "codly_1_3_0", + "ctheorems_1_1_3", +] +description = "Template for Japanese conference paper of engineering. 工学系の日本語学会論文テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jp-conf-template" + [jaconf-mscs."0.1.0"] url = "https://packages.typst.org/preview/jaconf-mscs-0.1.0.tar.gz" hash = "sha256-Vvp2RFqMP2/Uho0VrA4ZE3DXJuj3cy5cPRaxv280x1o=" @@ -8872,6 +9871,29 @@ license = [ ] homepage = "https://github.com/kimushun1101/typst-jp-conf-template" +[jastylest."0.1.0"] +url = "https://packages.typst.org/preview/jastylest-0.1.0.tar.gz" +hash = "sha256-PCCVfomVgNn6R4R77vwK99tOV+0Dn618SJkPxnHTa4o=" +typstDeps = [] +description = "You can set up style templates for writing reports, papers, and slides in Japanese. It works similarly to LaTeX" +license = [ + "MIT-0", +] +homepage = "https://github.com/raygo0312/jastylest.git" + +[jastylest-zh."0.1.0"] +url = "https://packages.typst.org/preview/jastylest-zh-0.1.0.tar.gz" +hash = "sha256-WHHkRwIGWcgm7ekFuTp5BoIs5DHosiPNj+ZMx8Zo/00=" +typstDeps = [ + "cjk-unbreak_0_1_1", + "pointless-size_0_1_1", +] +description = "Article optimized for Chinese typesetting" +license = [ + "MIT", +] +homepage = "https://github.com/mike-unk/jastylest-zh.git" + [jlyfish."0.1.0"] url = "https://packages.typst.org/preview/jlyfish-0.1.0.tar.gz" hash = "sha256-h7WTNYT4tPbAEF7B50fUP7oHVnNIDJxedS3CMZxcbQ4=" @@ -8984,6 +10006,16 @@ license = [ ] homepage = "https://github.com/okumuralab/typst-js" +[jsonpath."0.1.0"] +url = "https://packages.typst.org/preview/jsonpath-0.1.0.tar.gz" +hash = "sha256-bb5AQ9E6t3bM2MVCQHTJIz6VaZL2jeIkjz8Ri5DiE18=" +typstDeps = [] +description = "jsonpath extracts values from dictionary or array using a JSONPath expression as per RFC 9535, except the filter syntax is different" +license = [ + "MIT", +] +homepage = "https://github.com/qjebbs/typst-jsonpath" + [jumble."0.0.1"] url = "https://packages.typst.org/preview/jumble-0.0.1.tar.gz" hash = "sha256-GnQdiXXCTIIILynOiWgbwmmovZ+6x99IjkiGzOnzVVA=" @@ -9127,6 +10159,16 @@ license = [ "MIT", ] +[kiresume."0.1.17"] +url = "https://packages.typst.org/preview/kiresume-0.1.17.tar.gz" +hash = "sha256-/0IIJl3tUCWDYDt2aoW3HYmRodtLvpOXuVNraa3WqiA=" +typstDeps = [] +description = "A clean and customisable resume template" +license = [ + "Unlicense", +] +homepage = "https://github.com/alpoi/kiresume" + [klaro-ifsc-sj."0.1.0"] url = "https://packages.typst.org/preview/klaro-ifsc-sj-0.1.0.tar.gz" hash = "sha256-ib34/i22ozy0OlhXaOTX5oQn2ITQVHVLYQqBYnDGQDA=" @@ -9147,6 +10189,19 @@ license = [ ] homepage = "https://git.sr.ht/~toto/karnaugh" +[knowledge-key."1.0.2"] +url = "https://packages.typst.org/preview/knowledge-key-1.0.2.tar.gz" +hash = "sha256-ivyWQu5/o6kLeF8Elv5h60YTLw/l0QBJkAwjcPR02FY=" +typstDeps = [ + "codelst_2_0_2", + "tablex_0_0_9", +] +description = "A compact cheat-sheet" +license = [ + "MIT-0", +] +homepage = "https://github.com/ngoetti/knowledge-key" + [knowledge-key."1.0.1"] url = "https://packages.typst.org/preview/knowledge-key-1.0.1.tar.gz" hash = "sha256-mpbfURVxssF0aVKPvvXRWpGUK9TyuXEoz8zdnJrPKP0=" @@ -9600,6 +10655,19 @@ license = [ ] homepage = "https://github.com/sebastos1/light-report-uia" +[lilaq."0.3.0"] +url = "https://packages.typst.org/preview/lilaq-0.3.0.tar.gz" +hash = "sha256-YdAsrkapRmN/U+CE5nEoxPlwjivgTCdWH8Lm9FW75xw=" +typstDeps = [ + "tiptoe_0_3_0", + "zero_0_3_3", +] +description = "Scientific data visualization" +license = [ + "MIT", +] +homepage = "https://github.com/lilaq-project/lilaq" + [lilaq."0.2.0"] url = "https://packages.typst.org/preview/lilaq-0.2.0.tar.gz" hash = "sha256-0wYB8LeODvJ6/ueItWAPP2D8i8ifFfpk7oR6Vp7rrWw=" @@ -9775,6 +10843,26 @@ license = [ ] homepage = "https://github.com/daskol/typst-templates" +[lumen."0.1.1"] +url = "https://packages.typst.org/preview/lumen-0.1.1.tar.gz" +hash = "sha256-mJv6jC/A4Ncnm+0BKwQuZ53e+EhuOrbRLg/lH73rWRw=" +typstDeps = [] +description = "unofficial template of the Université libre de Bruxelles thesis front cover" +license = [ + "MIT-0", +] +homepage = "https://codeberg.org/mononym/typst-ulb-phd-cover" + +[lumen."0.1.0"] +url = "https://packages.typst.org/preview/lumen-0.1.0.tar.gz" +hash = "sha256-cat+9OULmeOXdhH+2To2mZryAHA1whMZiczzs/veRB0=" +typstDeps = [] +description = "unofficial template of the Université libre de Bruxelles thesis front cover" +license = [ + "MIT-0", +] +homepage = "https://codeberg.org/mononym/typst-ulb-phd-cover" + [lyceum."0.1.0"] url = "https://packages.typst.org/preview/lyceum-0.1.0.tar.gz" hash = "sha256-R9YJpG9Qh3Wfrad9kSZKLOJXMScffGX7adVigIb0mKs=" @@ -9808,6 +10896,18 @@ license = [ ] homepage = "https://github.com/Enter-tainer/m-jaxon" +[machiatto."0.2.0"] +url = "https://packages.typst.org/preview/machiatto-0.2.0.tar.gz" +hash = "sha256-8Gu312IG5B9MhQoTZMhQGMS0aDtoz7W3ubkxslEKonQ=" +typstDeps = [ + "suboutline_0_3_0", +] +description = "A package to help develop publications under MoKa Reads Specification" +license = [ + "MIT", +] +homepage = "https://github.com/Moka-Reads/machiatto" + [machiatto."0.1.0"] url = "https://packages.typst.org/preview/machiatto-0.1.0.tar.gz" hash = "sha256-s0fYYTMIuHrHnTqBwa132FiMi5ge0ZGezEOa6t67LCI=" @@ -9912,6 +11012,27 @@ license = [ ] homepage = "https://github.com/ryuryu-ymj/mannot" +[mantys."1.0.2"] +url = "https://packages.typst.org/preview/mantys-1.0.2.tar.gz" +hash = "sha256-qa9bE5mZsYklVctoanQ3NYJ2E0Lf8yLTl5EC0+HFFo4=" +typstDeps = [ + "codly_1_3_0", + "fauxreilly_0_1_1", + "gentle-clues_1_2_0", + "hydra_0_6_1", + "marginalia_0_1_4", + "octique_0_1_0", + "showybox_2_0_4", + "tidy_0_4_3", + "typearea_0_2_0", + "valkyrie_0_2_2", +] +description = "Helpers to build manuals for Typst packages and templates" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-mantys" + [mantys."1.0.1"] url = "https://packages.typst.org/preview/mantys-1.0.1.tar.gz" hash = "sha256-4JVg0Z8j/k4GPIPyGGmTll5CPRbwRriPu8jJyJQysYU=" @@ -10024,6 +11145,36 @@ license = [ ] homepage = "https://github.com/EpicEricEE/typst-marge" +[marginalia."0.2.2"] +url = "https://packages.typst.org/preview/marginalia-0.2.2.tar.gz" +hash = "sha256-WVRgVUXK3VK/vurr+8w0P0zf9kYoQ6PkLSI0QoLetWc=" +typstDeps = [] +description = "Configurable margin-notes and matching wide blocks" +license = [ + "Unlicense", +] +homepage = "https://github.com/nleanba/typst-marginalia" + +[marginalia."0.2.1"] +url = "https://packages.typst.org/preview/marginalia-0.2.1.tar.gz" +hash = "sha256-sQIJVS+YdY+QZ1FzwT3AtMGuOo5Zj0bmf0D/UGlrmeA=" +typstDeps = [] +description = "Configurable margin-notes and matching wide blocks" +license = [ + "Unlicense", +] +homepage = "https://github.com/nleanba/typst-marginalia" + +[marginalia."0.2.0"] +url = "https://packages.typst.org/preview/marginalia-0.2.0.tar.gz" +hash = "sha256-TRB22gdgwVCS/PFqsHpkBc8Yl4t3a+eEGHVv5iRxxjQ=" +typstDeps = [] +description = "Configurable margin-notes and matching wide blocks" +license = [ + "Unlicense", +] +homepage = "https://github.com/nleanba/typst-marginalia" + [marginalia."0.1.4"] url = "https://packages.typst.org/preview/marginalia-0.1.4.tar.gz" hash = "sha256-Z58a+K5+mGxBaRTbI6Z+e034nfJSjW4FV2tXjHqc1gk=" @@ -10098,6 +11249,16 @@ license = [ ] homepage = "https://github.com/cskeeters/typst-markly" +[matador."0.1.0"] +url = "https://packages.typst.org/preview/matador-0.1.0.tar.gz" +hash = "sha256-Bh8ffOsuxYAV9WzqP6T4fw1WBCsA0d6i8QAFDyRrkV0=" +typstDeps = [] +description = "Parser for .mat files" +license = [ + "MIT", +] +homepage = "https://github.com/AcqRel/matador" + [matset."0.1.0"] url = "https://packages.typst.org/preview/matset-0.1.0.tar.gz" hash = "sha256-PXzwRXLAH98V2L6TR/Y+9UZRgXxs4vKgXm1ciYZ7UCM=" @@ -10108,6 +11269,19 @@ license = [ ] homepage = "https://github.com/OptimisticPeach/matset" +[may."0.0.1"] +url = "https://packages.typst.org/preview/may-0.0.1.tar.gz" +hash = "sha256-wntZIT9ENZKZx4Vs50b6LrH6DGI7ZGQEpoQiF/P+XFk=" +typstDeps = [ + "physica_0_9_5", + "wrap-it_0_1_1", +] +description = "A simple and elegant document template for multiple daily tasks" +license = [ + "MIT", +] +homepage = "https://github.com/Carlos-Mero/may" + [mcm-scaffold."0.2.0"] url = "https://packages.typst.org/preview/mcm-scaffold-0.2.0.tar.gz" hash = "sha256-4KSCC7XlZi9eJGm71Ui+dxDFKqkIcl1QYt0CfGXxSgg=" @@ -10394,6 +11568,30 @@ license = [ ] homepage = "https://github.com/mayconfmelo/min-article" +[min-book."1.0.0"] +url = "https://packages.typst.org/preview/min-book-1.0.0.tar.gz" +hash = "sha256-mw88Ui43I5pufLM8Uwvtjsd8J9kgwnCubg1iP3AFBCo=" +typstDeps = [ + "numbly_0_1_0", +] +description = "Simple and complete books without introducing new syntax" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-book" + +[min-book."0.1.1"] +url = "https://packages.typst.org/preview/min-book-0.1.1.tar.gz" +hash = "sha256-kLz6yxShVF+lp+ib5T3JQcLshJ3h8QYl+RmyeJ4vVio=" +typstDeps = [ + "numbly_0_1_0", +] +description = "Simple and complete books without introducing new syntax" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-book" + [min-book."0.1.0"] url = "https://packages.typst.org/preview/min-book-0.1.0.tar.gz" hash = "sha256-pBfBF7HPoSj4k0fxv4FA0tA3jRiaKnGr5Bzy+BDxcJw=" @@ -10565,6 +11763,18 @@ license = [ ] homepage = "https://github.com/flavio20002/typst-presentation-minimal-template" +[minimal-thesis-luebeck."0.4.0"] +url = "https://packages.typst.org/preview/minimal-thesis-luebeck-0.4.0.tar.gz" +hash = "sha256-p/r2Jf0T+64MEtL6oMSXo1lfeQgsGQe9iMOXYYtgRss=" +typstDeps = [ + "abbr_0_2_3", +] +description = "A minimalistic template for writing a thesis" +license = [ + "MIT", +] +homepage = "https://github.com/fhemstra/minimal-thesis-luebeck" + [minimal-thesis-luebeck."0.3.0"] url = "https://packages.typst.org/preview/minimal-thesis-luebeck-0.3.0.tar.gz" hash = "sha256-wnkoejwmSwl2Xy+Lca3QHOL9ng6vZ7sCoQ/T/obZRw8=" @@ -11285,6 +12495,16 @@ license = [ ] homepage = "https://github.com/MrToWy/hsh-thesis" +[modern-iu-thesis."0.1.1"] +url = "https://packages.typst.org/preview/modern-iu-thesis-0.1.1.tar.gz" +hash = "sha256-2ki23KYifJMk0zCVnFTu/KlJsmo5LeOT8UoCeuecsdQ=" +typstDeps = [] +description = "Modern Typst thesis template for Indiana University" +license = [ + "MIT", +] +homepage = "https://github.com/bojohnson5/modern-iu-thesis" + [modern-iu-thesis."0.1.0"] url = "https://packages.typst.org/preview/modern-iu-thesis-0.1.0.tar.gz" hash = "sha256-xda/9KVnb8I0ob1mZMChzqEBw7uBoaUGTwdhFujeV5k=" @@ -11401,6 +12621,18 @@ license = [ ] homepage = "https://github.com/nju-lug/modern-nju-thesis" +[modern-ovgu-fma-polylux."0.2.0"] +url = "https://packages.typst.org/preview/modern-ovgu-fma-polylux-0.2.0.tar.gz" +hash = "sha256-AE77lJp+tAOPHWV2eN+nRgpCA8wm4rEBJJ4a0mb79hA=" +typstDeps = [ + "ez-today_0_3_0", + "polylux_0_4_0", +] +description = "Unofficial template for creating presentations with Polylux in the style of the Faculty of Mathematics at the Otto-von-Guericke-University Magdeburg" +license = [ + "MIT", +] + [modern-ovgu-fma-polylux."0.1.0"] url = "https://packages.typst.org/preview/modern-ovgu-fma-polylux-0.1.0.tar.gz" hash = "sha256-lNkmssNGU3A+07AyaRzY1oHn253I+xRKX59IJWkgf1s=" @@ -11571,6 +12803,63 @@ license = [ ] homepage = "https://github.com/XY-cpp/typst-shu-thesis" +[modern-sjtu-thesis."0.4.1"] +url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.4.1.tar.gz" +hash = "sha256-syG66QD8d+MNFNfmvhFHDU3OhvySr/Mk/+IWOfj8F9Y=" +typstDeps = [ + "a2c-nums_0_0_1", + "codly_1_3_0", + "codly-languages_0_1_8", + "cuti_0_3_0", + "equate_0_3_2", + "fletcher_0_5_8", + "i-figured_0_2_4", + "lilaq_0_3_0", + "lovelace_0_3_0", + "numbly_0_1_0", + "suiji_0_4_0", + "theorion_0_3_3", + "unify_0_7_1", + "wordometer_0_1_4", +] +description = "上海交通大学学位论文 Typst 模板。Shanghai Jiao Tong University Thesis Typst Template" +license = [ + "MIT", +] +homepage = "https://github.com/tzhTaylor/modern-sjtu-thesis" + +[modern-sjtu-thesis."0.4.0"] +url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.4.0.tar.gz" +hash = "sha256-6+G9VfP5baTLTuc6TZtsXzCkwjLpfvG7qVIxeUqqcNs=" +typstDeps = [ + "a2c-nums_0_0_1", + "cuti_0_3_0", + "i-figured_0_2_4", + "lovelace_0_3_0", + "numbly_0_1_0", + "wordometer_0_1_4", +] +description = "上海交通大学学位论文 Typst 模板。Shanghai Jiao Tong University Thesis Typst Template" +license = [ + "MIT", +] +homepage = "https://github.com/tzhTaylor/modern-sjtu-thesis" + +[modern-sjtu-thesis."0.3.0"] +url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.3.0.tar.gz" +hash = "sha256-FEgTSjR/f9ZOzhq3JPjZJMNROUYHm5pTUfRzCrExSX0=" +typstDeps = [ + "a2c-nums_0_0_1", + "cuti_0_3_0", + "i-figured_0_2_4", + "numbly_0_1_0", +] +description = "上海交通大学学位论文 Typst 模板。Shanghai Jiao Tong University Thesis Typst Template" +license = [ + "MIT", +] +homepage = "https://github.com/tzhTaylor/modern-sjtu-thesis" + [modern-sjtu-thesis."0.2.2"] url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.2.2.tar.gz" hash = "sha256-B3FDybHWM5G2cKeBQefMExVcYf4b2yc/gff5GfcWc6M=" @@ -11764,6 +13053,18 @@ license = [ ] homepage = "https://gitlab.com/sysu-gitlab/thesis-template/better-thesis" +[modern-sysu-touying."0.1.0"] +url = "https://packages.typst.org/preview/modern-sysu-touying-0.1.0.tar.gz" +hash = "sha256-LRp4xjm4wtyKf5fCfZtQJN6dPyi/QakdEIUwk1ic/iA=" +typstDeps = [ + "touying_0_6_1", +] +description = "中山大学幻灯片 Typst 模板,A Typst template for SYSU presentation" +license = [ + "MIT", +] +homepage = "https://github.com/sysu/modern-sysu-touying" + [modern-szu-thesis."0.4.0"] url = "https://packages.typst.org/preview/modern-szu-thesis-0.4.0.tar.gz" hash = "sha256-Tz3zDaCYNfLGuzSSdTnrkV+pX/uo/MPGSGwfFiPlKEg=" @@ -11851,6 +13152,38 @@ license = [ "MIT", ] +[modern-uit-thesis."0.1.6"] +url = "https://packages.typst.org/preview/modern-uit-thesis-0.1.6.tar.gz" +hash = "sha256-UyFBhs7rQwHYED4sV3Tnb+vqtq3ZDADn42Tu9qF4q+c=" +typstDeps = [ + "codly_1_3_0", + "ctheorems_1_1_3", + "glossarium_0_5_6", + "physica_0_9_5", + "subpar_0_2_2", +] +description = "A Modern Thesis Template in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/mrtz-j/typst-thesis-template" + +[modern-uit-thesis."0.1.5"] +url = "https://packages.typst.org/preview/modern-uit-thesis-0.1.5.tar.gz" +hash = "sha256-p4oGYHf/Dd84CPWeEFOv5odM6tBOGORH9uo9Ju5efEg=" +typstDeps = [ + "codly_1_3_0", + "ctheorems_1_1_3", + "glossarium_0_5_6", + "physica_0_9_5", + "subpar_0_2_2", +] +description = "A Modern Thesis Template in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/mrtz-j/typst-thesis-template" + [modern-uit-thesis."0.1.4"] url = "https://packages.typst.org/preview/modern-uit-thesis-0.1.4.tar.gz" hash = "sha256-dmsNjOD9kf4PHggxX0r1Dzfra9h9T7EmzuIYG1T3ggM=" @@ -12001,6 +13334,20 @@ license = [ ] homepage = "https://github.com/alex289/whs-typst-templates" +[modern-whs-thesis."0.4.0"] +url = "https://packages.typst.org/preview/modern-whs-thesis-0.4.0.tar.gz" +hash = "sha256-IxuvqGXy51u0arHU41KRhqlL9UjxhWDWIUJv+tdnPjU=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", + "glossarium_0_5_6", +] +description = "Thesis template for Westfälische Hochschule" +license = [ + "MIT", +] +homepage = "https://github.com/alex289/whs-typst-templates" + [modern-whs-thesis."0.3.1"] url = "https://packages.typst.org/preview/modern-whs-thesis-0.3.1.tar.gz" hash = "sha256-QSMYNkM04foBaZFI9Hd+tr6GrzhiHYKo4Fz6LLyTH+E=" @@ -12057,6 +13404,22 @@ license = [ ] homepage = "https://github.com/alex289/whs-typst-templates" +[modern-xmu-thesis."0.2.1"] +url = "https://packages.typst.org/preview/modern-xmu-thesis-0.2.1.tar.gz" +hash = "sha256-Vb4HmFiK9iAsCKydWL286nxT0KVkr/YJnAyRXWbI+ok=" +typstDeps = [ + "hydra_0_6_1", + "i-figured_0_2_4", + "metalogo_1_2_0", + "numbly_0_1_0", + "zebraw_0_5_4", +] +description = "厦门大学学位论文模板。Modern Xiamen University Thesis" +license = [ + "MIT", +] +homepage = "https://github.com/HPCesia/modern-xmu-thesis" + [modern-xmu-thesis."0.2.0"] url = "https://packages.typst.org/preview/modern-xmu-thesis-0.2.0.tar.gz" hash = "sha256-QbqWVtg0BHuOndNyfgAWxv4XLqeb4Bqcn0oLHUXCRXo=" @@ -12326,6 +13689,18 @@ license = [ ] homepage = "https://github.com/RubixDev/typst-name-it" +[nassi."0.1.4"] +url = "https://packages.typst.org/preview/nassi-0.1.4.tar.gz" +hash = "sha256-E6zQAwAE13Ahj+6zYOWmCY4C/zokoff/lqiyDw5PdDQ=" +typstDeps = [ + "cetz_0_3_4", +] +description = "Draw Nassi-Shneiderman diagrams (Struktogramme) with Typst" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-nassi" + [nassi."0.1.2"] url = "https://packages.typst.org/preview/nassi-0.1.2.tar.gz" hash = "sha256-4I3NUThdU/rDPz2yUd6XJ+7gHUBWuOCBwcG5Dg870fE=" @@ -12382,6 +13757,18 @@ license = [ ] homepage = "https://github.com/Haouo/NCKU-Thesis-Typst" +[neat-cv."0.1.0"] +url = "https://packages.typst.org/preview/neat-cv-0.1.0.tar.gz" +hash = "sha256-dyv9Doh1uUSSzRLKOvVSZDkv0uLL4OmiJLbPpG79XvI=" +typstDeps = [ + "fontawesome_0_5_0", +] +description = "A modern and elegant CV template for Typst, inspired by Awesome CV and simple-hisptercv" +license = [ + "MIT", +] +homepage = "https://github.com/dialvarezs/neat-cv" + [neoplot."0.0.3"] url = "https://packages.typst.org/preview/neoplot-0.0.3.tar.gz" hash = "sha256-zkXZL1Ed9oBVGiuS+pMrT94XFmAFVBIHxdOa6NePXj4=" @@ -12412,6 +13799,19 @@ license = [ ] homepage = "https://github.com/KNnut/neoplot" +[nifty-ntnu-thesis."0.1.3"] +url = "https://packages.typst.org/preview/nifty-ntnu-thesis-0.1.3.tar.gz" +hash = "sha256-GU/OcgxTdR4WgoOs6Sa9cmLT0emtGyci2dkhFXSViRg=" +typstDeps = [ + "physica_0_9_5", + "subpar_0_2_2", +] +description = "An NTNU thesis template" +license = [ + "MIT", +] +homepage = "https://github.com/saimnaveediqbal/thesis-NTNU-typst" + [nifty-ntnu-thesis."0.1.2"] url = "https://packages.typst.org/preview/nifty-ntnu-thesis-0.1.2.tar.gz" hash = "sha256-DGdb13aNzB6gB1x9icpxgcZgPnnC1oQXl0vhjwNedkc=" @@ -12451,6 +13851,16 @@ license = [ ] homepage = "https://github.com/saimnaveediqbal/thesis-NTNU-typst" +[niram-css."0.1.0"] +url = "https://packages.typst.org/preview/niram-css-0.1.0.tar.gz" +hash = "sha256-PHcYJreCtl76p9OOPEGQlZ1IZV650rJAOvQnONFoFc4=" +typstDeps = [] +description = "Allows CSS named colors to be used directly in a Typst document" +license = [ + "Unlicense", +] +homepage = "https://github.com/nandac/niram-css" + [nonsense."0.1.0"] url = "https://packages.typst.org/preview/nonsense-0.1.0.tar.gz" hash = "sha256-MhY+xzfZ3HcdEd7NFVOIeGoip9+xZBTP4qt+Jo12lI4=" @@ -12498,6 +13908,18 @@ license = [ "MIT-0", ] +[not-tudabeamer-2023."0.2.1"] +url = "https://packages.typst.org/preview/not-tudabeamer-2023-0.2.1.tar.gz" +hash = "sha256-C5z3j36KCa8n+3DCVSZ73BEnCGLeA+OnvQ+797tgdHE=" +typstDeps = [ + "touying_0_6_1", +] +description = "Not the TU Darmstadt Beamer 2023 template" +license = [ + "MIT", +] +homepage = "https://github.com/JeyRunner/tuda-typst-templates" + [not-tudabeamer-2023."0.2.0"] url = "https://packages.typst.org/preview/not-tudabeamer-2023-0.2.0.tar.gz" hash = "sha256-ypfYI9XO11k8I7HIivpA/4M7L/cVmMyQaqVjRpC3V+k=" @@ -12797,6 +14219,16 @@ license = [ ] homepage = "https://github.com/baptiste/nup" +[nutshell."0.1.0"] +url = "https://packages.typst.org/preview/nutshell-0.1.0.tar.gz" +hash = "sha256-TXCxBWkva9PL3lDAkSRj8vObQtgeWtZOxRu6gSsXos4=" +typstDeps = [] +description = "Template for promotional postcards" +license = [ + "MPL-2.0", +] +homepage = "https://github.com/baptiste/nutshell" + [oasis-align."0.2.0"] url = "https://packages.typst.org/preview/oasis-align-0.2.0.tar.gz" hash = "sha256-XB8YyrcSP3+jHSik+aE8JybL8Pncju/2MKW3MC85TTA=" @@ -13047,6 +14479,20 @@ license = [ ] homepage = "https://github.com/OrangeX4/typst-ori" +[ostfriesen-layout."0.1.0"] +url = "https://packages.typst.org/preview/ostfriesen-layout-0.1.0.tar.gz" +hash = "sha256-LjQb2C6xpIBvOMPhgr3bXmmJrPggk/wB7YNDsgSCAR0=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", + "glossarium_0_5_6", +] +description = "A clean, professional template for academic writing at University of Applied Sciences Emden/Leer" +license = [ + "MIT", +] +homepage = "https://github.com/TobiBeh/HS-Emden-Leer-Typst-Template" + [ourchat."0.1.0"] url = "https://packages.typst.org/preview/ourchat-0.1.0.tar.gz" hash = "sha256-2fY2FGTSaUD9HDdI1A3SSD20l0nKQKUzcc99z03/deg=" @@ -13151,6 +14597,28 @@ license = [ ] homepage = "https://gitlab.com/doggobit/typst-owlbear" +[oxifmt."1.0.0"] +url = "https://packages.typst.org/preview/oxifmt-1.0.0.tar.gz" +hash = "sha256-RtGKdyiX2kJbUjChPohSGNeYOKVlI2VM0k1uFaEqDC8=" +typstDeps = [] +description = "Convenient Rust-like string formatting in Typst" +license = [ + "MIT", + "Apache-2.0", +] +homepage = "https://github.com/PgBiel/typst-oxifmt" + +[oxifmt."0.3.0"] +url = "https://packages.typst.org/preview/oxifmt-0.3.0.tar.gz" +hash = "sha256-Kwu3MbIbmYPNBAYXMgCrgN10OJj6NlFGBdr3nNswQTw=" +typstDeps = [] +description = "Convenient Rust-like string formatting in Typst" +license = [ + "MIT", + "Apache-2.0", +] +homepage = "https://github.com/PgBiel/typst-oxifmt" + [oxifmt."0.2.1"] url = "https://packages.typst.org/preview/oxifmt-0.2.1.tar.gz" hash = "sha256-Cl6Y34d3fi6aB07HIk4zsyy0ucHgWCId0yMVxE4DnWw=" @@ -13185,6 +14653,32 @@ license = [ ] homepage = "https://github.com/TJ-CSCCG/tongji-undergrad-thesis-typst.git" +[parcio-slides."0.1.1"] +url = "https://packages.typst.org/preview/parcio-slides-0.1.1.tar.gz" +hash = "sha256-iOXl+QEOSLYkGNzbHDVckikJGSLV4z/6f+625Gmwmfg=" +typstDeps = [ + "polylux_0_4_0", + "subpar_0_2_2", +] +description = "A simple polylux slide templated based on the ParCIO working group at OvGU Magdeburg" +license = [ + "0BSD", +] +homepage = "https://github.com/xkevio/parcio-typst/" + +[parcio-slides."0.1.0"] +url = "https://packages.typst.org/preview/parcio-slides-0.1.0.tar.gz" +hash = "sha256-5lrqzovCG9VjDVw9zHP8RDX2vWm0ad6ngGc7EY1zqZY=" +typstDeps = [ + "polylux_0_4_0", + "subpar_0_2_2", +] +description = "A simple polylux slide templated based on the ParCIO working group at OvGU Magdeburg" +license = [ + "0BSD", +] +homepage = "https://github.com/xkevio/parcio-typst/" + [parcio-thesis."0.2.2"] url = "https://packages.typst.org/preview/parcio-thesis-0.2.2.tar.gz" hash = "sha256-xcHPtq+d6hpGlMfP74XK5mokzp+lFtFDgEC2FPBu1FI=" @@ -13269,6 +14763,40 @@ license = [ ] homepage = "https://github.com/QuadnucYard/pavemat" +[payqr-swiss."0.2.0"] +url = "https://packages.typst.org/preview/payqr-swiss-0.2.0.tar.gz" +hash = "sha256-AnkmEdX5z32FapkNuC1oLK3oRH2E1jkZ62hFhipTji4=" +typstDeps = [ + "tiaoma_0_3_0", +] +description = "A Swiss QR bill generator for Typst" +license = [ + "LGPL-3.0-only", +] +homepage = "https://github.com/philippdrebes/typst-payqr-swiss" + +[payqr-swiss."0.1.0"] +url = "https://packages.typst.org/preview/payqr-swiss-0.1.0.tar.gz" +hash = "sha256-AJ+gLUb/LAZHF/A6bxrlsD/xSfsOrToeojfyGJX7og8=" +typstDeps = [ + "tiaoma_0_3_0", +] +description = "A Swiss QR bill generator for Typst" +license = [ + "LGPL-3.0-only", +] +homepage = "https://github.com/philippdrebes/typst-payqr-swiss" + +[peace-of-posters."0.5.6"] +url = "https://packages.typst.org/preview/peace-of-posters-0.5.6.tar.gz" +hash = "sha256-oFZwuAptnhscrFLeJ3cjaZsIs1gbAMrxjkxKwwoMGmg=" +typstDeps = [] +description = "Create scientific posters in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/jonaspleyer/peace-of-posters" + [peace-of-posters."0.5.5"] url = "https://packages.typst.org/preview/peace-of-posters-0.5.5.tar.gz" hash = "sha256-oLMQpulSwmXj7cqW+7t1ABFR2+dUGLg8PaIj+/9DIlc=" @@ -13359,6 +14887,18 @@ license = [ ] homepage = "https://github.com/jonaspleyer/peace-of-posters" +[percencode."0.1.0"] +url = "https://packages.typst.org/preview/percencode-0.1.0.tar.gz" +hash = "sha256-uMSxUuO2bjAWwr8SQ+8jQIA4J/F0TetNAHr/MUYeqIE=" +typstDeps = [ + "tidy_0_4_3", +] +description = "Work with percent-encoding used by web browsers to encode URLs" +license = [ + "MIT", +] +homepage = "https://github.com/Servostar/typst-percencode" + [pesha."0.4.0"] url = "https://packages.typst.org/preview/pesha-0.4.0.tar.gz" hash = "sha256-IsYeDU+O7e4KSTl9+nWJiyRgki3QikYJdoDhZF3kYBQ=" @@ -13774,6 +15314,26 @@ license = [ ] homepage = "https://github.com/daskol/typst-templates" +[pleast."0.3.0"] +url = "https://packages.typst.org/preview/pleast-0.3.0.tar.gz" +hash = "sha256-KtfRh4AI/3LKEqv+nbIK5pMRUtxP6+cZMys9EHqBo7o=" +typstDeps = [] +description = "Parse XML files in Property List format (abbreviated as plist, used for .tmTheme files" +license = [ + "MIT", +] +homepage = "https://github.com/HPCesia/plist-typ" + +[pleast."0.2.0"] +url = "https://packages.typst.org/preview/pleast-0.2.0.tar.gz" +hash = "sha256-pe4mtTKEzY1xs6R3Xk0vdFYkVrYnSgeNr3VS18ilp6E=" +typstDeps = [] +description = "A package to parse Plist XML file" +license = [ + "MIT", +] +homepage = "https://github.com/HPCesia/plist-typ" + [plotst."0.2.0"] url = "https://packages.typst.org/preview/plotst-0.2.0.tar.gz" hash = "sha256-lhJCU7Hv/+uEsi123qWCX29InyoR4N0EAkhoQ/NyX1I=" @@ -13796,6 +15356,18 @@ license = [ ] homepage = "https://github.com/Pegacraft/typst-plotting" +[plotsy-3d."0.2.0"] +url = "https://packages.typst.org/preview/plotsy-3d-0.2.0.tar.gz" +hash = "sha256-msL0DxwCBbdTKp7lSfqGCcjGD0PGjIA8GIgJOJaNZO0=" +typstDeps = [ + "cetz_0_3_1", +] +description = "3D plotting for surfaces and parametric equations using CeTZ similar to pgfplots for LaTeX" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/misskacie/plotsy-3d" + [plotsy-3d."0.1.0"] url = "https://packages.typst.org/preview/plotsy-3d-0.1.0.tar.gz" hash = "sha256-17Rieur86RP4fCScePso93SPQ1ex3kWgw0z1SfKpz9c=" @@ -13878,6 +15450,16 @@ license = [ ] homepage = "https://github.com/dangh3014/postercise/" +[preprintx."0.1.0"] +url = "https://packages.typst.org/preview/preprintx-0.1.0.tar.gz" +hash = "sha256-BiNhERcjuSbBkT53vlGAaBEfdMo/u0shTLRQMfgoyPw=" +typstDeps = [] +description = "A two-column preprint layout, inspired by HenriquesLab bioRxiv template" +license = [ + "MIT", +] +homepage = "https://github.com/jskaza/preprintx" + [prequery."0.1.0"] url = "https://packages.typst.org/preview/prequery-0.1.0.tar.gz" hash = "sha256-SgjfD/wSGavgRWXSG2iG+bu+4pBuf76a1oFYQyQkN7o=" @@ -13891,6 +15473,16 @@ license = [ ] homepage = "https://github.com/SillyFreak/typst-prequery" +[presentate."0.1.0"] +url = "https://packages.typst.org/preview/presentate-0.1.0.tar.gz" +hash = "sha256-NyXpTM7rkHImpJ15UeQA1tiSIK6nTQDb33w1XDO4QOQ=" +typstDeps = [] +description = "A package to create slides with ease" +license = [ + "MIT", +] +homepage = "https://github.com/pacaunt/typst-presentate" + [prismath."0.1.0"] url = "https://packages.typst.org/preview/prismath-0.1.0.tar.gz" hash = "sha256-O7PaP1OUcba6j5MBMOmggdPAQDsQkJT5O8RgjP6qfjs=" @@ -13964,9 +15556,9 @@ homepage = "https://github.com/Jac-Zac/project-isi-zac.git" [prooftrees."0.1.0"] url = "https://packages.typst.org/preview/prooftrees-0.1.0.tar.gz" -hash = "sha256-zhnOWUavOqMh3/s8CPIyw5uoX8QslITQJ81zL6WuTaI=" +hash = "sha256-ZT9zOgl/6lXC9NIUTV7Rzl57pZbS3WROx4fQlBmALcQ=" typstDeps = [] -description = "Proof trees for natural deduction and type theories" +description = "[Deprecated in favour of `curryst`; this package is no longer maintained.] Proof trees for natural deduction and type theories" license = [ "MIT", ] @@ -14022,6 +15614,45 @@ license = [ ] homepage = "https://github.com/curvenote/pubmatter" +[pull-eh."0.1.0"] +url = "https://packages.typst.org/preview/pull-eh-0.1.0.tar.gz" +hash = "sha256-E6U+SrfTA0IZKkyjn34ZWHR4hh+RZqG+EmsVpw1o7w4=" +typstDeps = [ + "cetz_0_3_4", +] +description = "Visualize pulleys with Typst and CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/SillyFreak/typst-pull-eh" + +[put-thesis."0.1.0"] +url = "https://packages.typst.org/preview/put-thesis-0.1.0.tar.gz" +hash = "sha256-Nn8aU2St0npCGfgopTzGtBrjKNHl0VfrNokWTlg7qe8=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", + "headcount_0_1_0", + "hydra_0_6_0", + "linguify_0_4_2", +] +description = "An official thesis template for Poznań University of Technology" +license = [ + "MIT", + "MIT-0", +] +homepage = "https://github.com/RoyalDonkey/put-thesis-typst" + +[pyrunner."0.3.0"] +url = "https://packages.typst.org/preview/pyrunner-0.3.0.tar.gz" +hash = "sha256-i9VwZFNKrgtIx7dCvNvE+EDoRNoH5Pfdv918w9iEC88=" +typstDeps = [] +description = "Run python code in typst" +license = [ + "MIT", +] +homepage = "https://github.com/peng1999/typst-pyrunner" + [pyrunner."0.2.0"] url = "https://packages.typst.org/preview/pyrunner-0.2.0.tar.gz" hash = "sha256-0GxKr26m/vztKBqumqgvy1hprOJUoP62vVJ777TcHqk=" @@ -14064,6 +15695,106 @@ license = [ ] homepage = "https://github.com/nzy1997/qec-thrust" +[qooklet."0.6.0"] +url = "https://packages.typst.org/preview/qooklet-0.6.0.tar.gz" +hash = "sha256-CMs9EV6tZnxPSZEV5SbToEr9VONkB+I3HKiTYWU/z5U=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", + "hydra_0_6_1", + "physica_0_9_5", + "theorion_0_3_3", +] +description = "A quick start template for scientific booklets" +license = [ + "MIT", +] +homepage = "https://github.com/ivaquero/typst-qooklet.git" + +[qooklet."0.5.2"] +url = "https://packages.typst.org/preview/qooklet-0.5.2.tar.gz" +hash = "sha256-g7WJgO0qc0fjdGlLLpae7N8jWLU0SpgenZ1WxoyLjbw=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", + "hydra_0_6_1", + "physica_0_9_5", + "theorion_0_3_3", +] +description = "A quick start template for scientific booklets" +license = [ + "MIT", +] +homepage = "https://github.com/ivaquero/typst-qooklet.git" + +[qooklet."0.5.1"] +url = "https://packages.typst.org/preview/qooklet-0.5.1.tar.gz" +hash = "sha256-hnX7y7ZmW09JAzvSliXPZssa8cRss7VUZesdvwiXBnc=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", + "hydra_0_6_1", + "physica_0_9_5", + "theorion_0_3_3", +] +description = "A quick start template for scientific booklets" +license = [ + "MIT", +] +homepage = "https://github.com/ivaquero/typst-qooklet.git" + +[qooklet."0.5.0"] +url = "https://packages.typst.org/preview/qooklet-0.5.0.tar.gz" +hash = "sha256-M8Fxatwlq9kRLSfthzvGfQ2EkxZfroeyqxaICsyaefE=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", + "hydra_0_6_1", + "physica_0_9_5", + "theorion_0_3_3", +] +description = "A quick start template for scientific booklets" +license = [ + "MIT", +] +homepage = "https://github.com/ivaquero/typst-qooklet.git" + +[qooklet."0.3.0"] +url = "https://packages.typst.org/preview/qooklet-0.3.0.tar.gz" +hash = "sha256-N+3tkV/3Hpyxn5xeTMTMQ0KaGxvuBsDZ+Zv64SThRbs=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", + "hydra_0_6_1", + "physica_0_9_5", + "theorion_0_3_3", +] +description = "A quick start template for scientific booklets" +license = [ + "MIT", +] +homepage = "https://github.com/ivaquero/typst-qooklet.git" + +[qooklet."0.2.1"] +url = "https://packages.typst.org/preview/qooklet-0.2.1.tar.gz" +hash = "sha256-vfWm02WckgbwvopZ40wacv3qUNw3CYYmIIRjym5PC7g=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", + "ctheorems_1_1_3", + "gentle-clues_1_2_0", + "hydra_0_6_1", + "linguify_0_4_2", + "physica_0_9_5", + "rexllent_0_3_0", + "subpar_0_2_2", +] +description = "A quick start template for scientific booklets" +license = [ + "MIT", +] +homepage = "https://github.com/ivaquero/qooklet.git" + [qooklet."0.2.0"] url = "https://packages.typst.org/preview/qooklet-0.2.0.tar.gz" hash = "sha256-Xm7VotkOaceLlLhnXad2CpK1mXFw1pohkGz/KE2cu/I=" @@ -14201,6 +15932,16 @@ license = [ ] homepage = "https://github.com/EpicEricEE/typst-quick-maths" +[quick-minutes."1.2.2"] +url = "https://packages.typst.org/preview/quick-minutes-1.2.2.tar.gz" +hash = "sha256-NsOuTyN+KzMAP3D++vSe1ZmCGhx9fY2mFpYjLYs4Hd8=" +typstDeps = [] +description = "A typst template for the keeping of minutes" +license = [ + "MIT", +] +homepage = "https://github.com/Lypsilonx/quick-minutes" + [quick-minutes."1.2.1"] url = "https://packages.typst.org/preview/quick-minutes-1.2.1.tar.gz" hash = "sha256-BME8A8VAEtGCCl7CYHzZPVqtMfr+M8qJNuEIuG6BkcI=" @@ -14297,6 +16038,26 @@ license = [ ] homepage = "https://github.com/artomweb/Quick-Sip-Typst-Template" +[quill."0.7.1"] +url = "https://packages.typst.org/preview/quill-0.7.1.tar.gz" +hash = "sha256-KNnmvvamKnCEGxTI6mytLk4D/Ntse1ethrP4ey6MlyM=" +typstDeps = [] +description = "Effortlessly create quantum circuit diagrams" +license = [ + "MIT", +] +homepage = "https://github.com/Mc-Zen/quill" + +[quill."0.7.0"] +url = "https://packages.typst.org/preview/quill-0.7.0.tar.gz" +hash = "sha256-bqdOGdZrQ/eGKgzBT+wfRBxBLCctqJWT4jDf7KrixLI=" +typstDeps = [] +description = "Effortlessly create quantum circuit diagrams" +license = [ + "MIT", +] +homepage = "https://github.com/Mc-Zen/quill" + [quill."0.6.1"] url = "https://packages.typst.org/preview/quill-0.6.1.tar.gz" hash = "sha256-BKA/RXWfCbVQFzgAbh+n/xeKKMoPe5ut3jGcNPOCoF4=" @@ -14479,6 +16240,26 @@ license = [ ] homepage = "https://github.com/fky2015/resume-ng-typst" +[rexllent."0.3.3"] +url = "https://packages.typst.org/preview/rexllent-0.3.3.tar.gz" +hash = "sha256-XIkYNdCwH8R1ZuLb6fwz+CRMBltqjI81qPKlHAnSqQY=" +typstDeps = [] +description = "Parsing xlsx file into a typst table, powered by wasm" +license = [ + "MIT", +] +homepage = "https://github.com/hongjr03/typst-rexllent" + +[rexllent."0.3.2"] +url = "https://packages.typst.org/preview/rexllent-0.3.2.tar.gz" +hash = "sha256-KDvATCEImn3mEDYJt+8jKTqEvKPm7TrRoQpBlE5mJYc=" +typstDeps = [] +description = "Parsing xlsx file into a typst table, powered by wasm" +license = [ + "MIT", +] +homepage = "https://github.com/hongjr03/typst-rexllent" + [rexllent."0.3.1"] url = "https://packages.typst.org/preview/rexllent-0.3.1.tar.gz" hash = "sha256-wV8Y6ZGp9jNuHBI0S4nB0KoYlD8G6oMcTmQMjDRqx08=" @@ -14625,6 +16406,22 @@ license = [ ] homepage = "https://github.com/ThatOneCalculator/riesketcher" +[rivet."0.3.0"] +url = "https://packages.typst.org/preview/rivet-0.3.0.tar.gz" +hash = "sha256-NywqmI2hFitxofTiILr0DijDaK8AUbC3xV8kK+OyyNA=" +typstDeps = [ + "cetz_0_3_4", + "codly_1_3_0", + "codly-languages_0_1_8", + "showybox_2_0_4", + "tidy_0_4_2", +] +description = "Register / Instruction Visualizer & Explainer Tool with Typst, using CeTZ" +license = [ + "Apache-2.0", +] +homepage = "https://git.kb28.ch/HEL/rivet-typst" + [rivet."0.2.0"] url = "https://packages.typst.org/preview/rivet-0.2.0.tar.gz" hash = "sha256-AL+aUPYNqb4vxLgAXFBFHzxjbL8epNojCbLqNOMtxfg=" @@ -14669,6 +16466,16 @@ license = [ ] homepage = "https://github.com/mkpoli/roremu" +[rose-pine."0.2.1"] +url = "https://packages.typst.org/preview/rose-pine-0.2.1.tar.gz" +hash = "sha256-qd9BYhYkVbR1aRb4t2r+WR9y7pCM1pgEMawU8Dgz/IQ=" +typstDeps = [] +description = "Soho vibes for Typst in a form of easily applicable theme" +license = [ + "MIT", +] +homepage = "https://github.com/rose-pine/typst" + [rose-pine."0.2.0"] url = "https://packages.typst.org/preview/rose-pine-0.2.0.tar.gz" hash = "sha256-TZxAE4goAIvlGNixDaIdCL7GkLyP9XZH8/EZYLfcvNY=" @@ -14689,6 +16496,72 @@ license = [ ] homepage = "https://github.com/rose-pine/typst" +[rowmantic."0.3.0"] +url = "https://packages.typst.org/preview/rowmantic-0.3.0.tar.gz" +hash = "sha256-CXibQEKW5URyH/xA0r7gZWbNB4l6CvK7oxnFJ9wvIHs=" +typstDeps = [] +description = "Define tables row-wise, with inline separators between cells" +license = [ + "EUPL-1.2", +] +homepage = "https://github.com/typst-community/rowmantic" + +[rowmantic."0.2.0"] +url = "https://packages.typst.org/preview/rowmantic-0.2.0.tar.gz" +hash = "sha256-9u6QhXZwIMrmdVZL4JxifOKha89Wkz+J1dtDLh3XlBI=" +typstDeps = [] +description = "Define tables row by row with inline separators between cells" +license = [ + "EUPL-1.2", +] +homepage = "https://github.com/typst-community/rowmantic" + +[rowmantic."0.1.1"] +url = "https://packages.typst.org/preview/rowmantic-0.1.1.tar.gz" +hash = "sha256-fYxyMtHS9bwaGTcIaToQ8Wlqcm7dJHFVY7AlMzvgIOg=" +typstDeps = [] +description = "Define tables row by row with inline separators between cells" +license = [ + "EUPL-1.2", +] +homepage = "https://github.com/typst-community/rowmantic" + +[rowmantic."0.1.0"] +url = "https://packages.typst.org/preview/rowmantic-0.1.0.tar.gz" +hash = "sha256-qR8+PFSNNOIBsfaYplhUl3Lcs9BMwfFeaDUJRgxILGc=" +typstDeps = [] +description = "Define tables row by row with inline separators between cells" +license = [ + "EUPL-1.2", +] +homepage = "https://github.com/typst-community/rowmantic" + +[rubber-article."0.4.2"] +url = "https://packages.typst.org/preview/rubber-article-0.4.2.tar.gz" +hash = "sha256-eJ/R0evHL162/vEvn5wpbLzXMKhyqQGVtf7DpN+4yrE=" +typstDeps = [ + "hydra_0_6_1", + "pillar_0_3_1", +] +description = "A simple template recreating the look of the classic LaTeX article" +license = [ + "MIT", +] +homepage = "https://github.com/npikall/rubber-article.git" + +[rubber-article."0.4.1"] +url = "https://packages.typst.org/preview/rubber-article-0.4.1.tar.gz" +hash = "sha256-MPJ4rKAMLaH+Qze2Vv2h++/Q9CPwcUv9UFK3dFT//rE=" +typstDeps = [ + "hydra_0_6_1", + "pillar_0_3_1", +] +description = "A simple template recreating the look of the classic LaTeX article" +license = [ + "MIT", +] +homepage = "https://github.com/npikall/rubber-article.git" + [rubber-article."0.4.0"] url = "https://packages.typst.org/preview/rubber-article-0.4.0.tar.gz" hash = "sha256-W46qCE7HDZP24FlojvjiHu6Epxz5JEdJn43kbeVIjVE=" @@ -14936,6 +16809,86 @@ license = [ ] homepage = "https://github.com/augustebaum/epfl-thesis-typst" +[scholarly-tauthesis."0.15.2"] +url = "https://packages.typst.org/preview/scholarly-tauthesis-0.15.2.tar.gz" +hash = "sha256-YLv4e/VxeKpS7TWRor4LMKmMd6u/UOpbxzzMkV5yIXk=" +typstDeps = [] +description = "A template for writing Tampere University theses" +license = [ + "MIT", +] +homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template" + +[scholarly-tauthesis."0.15.0"] +url = "https://packages.typst.org/preview/scholarly-tauthesis-0.15.0.tar.gz" +hash = "sha256-NY9qz8HYou4gfg7SKpV2D27PWLE1Z1eufiAnWAbylpQ=" +typstDeps = [] +description = "A template for writing Tampere University theses" +license = [ + "MIT", +] +homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template" + +[scholarly-tauthesis."0.14.3"] +url = "https://packages.typst.org/preview/scholarly-tauthesis-0.14.3.tar.gz" +hash = "sha256-ok9/0+pZFCicnC5cmXpg1mBDyyLQmix2G2KRuFdFBNg=" +typstDeps = [] +description = "A template for writing Tampere University theses" +license = [ + "MIT", +] +homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template" + +[scholarly-tauthesis."0.14.2"] +url = "https://packages.typst.org/preview/scholarly-tauthesis-0.14.2.tar.gz" +hash = "sha256-xLW/mCnBJSXMVkVzuK+XshEiO2Pfq/JFml+lJSfIt/o=" +typstDeps = [] +description = "A template for writing Tampere University theses" +license = [ + "MIT", +] +homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template" + +[scholarly-tauthesis."0.14.1"] +url = "https://packages.typst.org/preview/scholarly-tauthesis-0.14.1.tar.gz" +hash = "sha256-14c0PsAHoQAGG+w9pSkOyhdNQrwAALTFRgLEJpX47yU=" +typstDeps = [] +description = "A template for writing Tampere University theses" +license = [ + "MIT", +] +homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template" + +[scholarly-tauthesis."0.14.0"] +url = "https://packages.typst.org/preview/scholarly-tauthesis-0.14.0.tar.gz" +hash = "sha256-9D6FLvc181AxSrsCTU3jAnF6A3IFmXbupofzz6l0aec=" +typstDeps = [] +description = "A template for writing Tampere University theses" +license = [ + "MIT", +] +homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template" + +[scholarly-tauthesis."0.13.2"] +url = "https://packages.typst.org/preview/scholarly-tauthesis-0.13.2.tar.gz" +hash = "sha256-FiRrI9Vp+s3uAnlXmedGxC5wO+8F6eJW5n+IpM4b1dw=" +typstDeps = [] +description = "A template for writing Tampere University theses" +license = [ + "MIT", +] +homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template" + +[scholarly-tauthesis."0.12.0"] +url = "https://packages.typst.org/preview/scholarly-tauthesis-0.12.0.tar.gz" +hash = "sha256-CEciksfgZa5orVBvZoWn8ALZLTZszSJ4i5chvjCvX9g=" +typstDeps = [] +description = "A template for writing Tampere University theses" +license = [ + "MIT", +] +homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template" + [scholarly-tauthesis."0.11.2"] url = "https://packages.typst.org/preview/scholarly-tauthesis-0.11.2.tar.gz" hash = "sha256-bpRIcwvCbyemi5NSl5lHUh6yddUzFW0WozSBvTYdleA=" @@ -15066,6 +17019,30 @@ license = [ ] homepage = "https://github.com/curvenote/scienceicons" +[scribe."0.2.0"] +url = "https://packages.typst.org/preview/scribe-0.2.0.tar.gz" +hash = "sha256-5kQWPcdwjplT624kYo5QTNX6efEkN0SGWCMgGZSRS4k=" +typstDeps = [ + "quick-maths_0_2_1", +] +description = "Write math in ascii notation" +license = [ + "MIT", +] +homepage = "https://github.com/lentilus/typst-scribe" + +[scribe."0.1.0"] +url = "https://packages.typst.org/preview/scribe-0.1.0.tar.gz" +hash = "sha256-nonWFT+tqdsRF+eWMP7Lu3oeJsiW6pvKGaaOhOusm0E=" +typstDeps = [ + "quick-maths_0_2_0", +] +description = "Write math in ascii notation" +license = [ + "MIT", +] +homepage = "https://github.com/lentilus/typst-scribe" + [scripst."1.1.1"] url = "https://packages.typst.org/preview/scripst-1.1.1.tar.gz" hash = "sha256-N9u+c35SB4NJjczmPQ1OZuCiBXkpXuDuDj/FyS0+WiU=" @@ -15142,6 +17119,23 @@ license = [ ] homepage = "https://github.com/Dregen-Yor/sdu-exp-report" +[sdu-touying-simpl."0.3.1"] +url = "https://packages.typst.org/preview/sdu-touying-simpl-0.3.1.tar.gz" +hash = "sha256-3QSKmhYF1Qj9RT3rHR+DW8miDX+3RIlpQRurt6JMQ+Y=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_1", + "fletcher_0_5_7", + "showybox_2_0_4", + "timeliney_0_2_1", + "touying_0_6_1", +] +description = "An templete based on touying, " +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/Dregen-Yor/sdu-touying-simpl" + [sdu-touying-simpl."0.3.0"] url = "https://packages.typst.org/preview/sdu-touying-simpl-0.3.0.tar.gz" hash = "sha256-m3FzWgM6/45k9dapyJMUVAii3f7a93SDfRcjLxNppy0=" @@ -15284,6 +17278,48 @@ license = [ ] homepage = "https://github.com/T1mVo/shadowed" +[shane-hhu-thesis."0.6.0"] +url = "https://packages.typst.org/preview/shane-hhu-thesis-0.6.0.tar.gz" +hash = "sha256-bF03xav1x/i46hqfvvmyzuPc05iYb/SFfYvWtN1/0Jc=" +typstDeps = [ + "a2c-nums_0_0_1", + "cuti_0_3_0", + "i-figured_0_2_4", +] +description = "河海大学本科生毕业论文(设计)模板。Unofficial Hohai University Undergraduate Thesis (Design) Template" +license = [ + "MIT", +] +homepage = "https://github.com/shaneworld/HHU-Thesis-Template" + +[shane-hhu-thesis."0.5.0"] +url = "https://packages.typst.org/preview/shane-hhu-thesis-0.5.0.tar.gz" +hash = "sha256-x/yw4szmAxSPZMMBhzNuOpqpVzL3/oakcQGFqJb7Whk=" +typstDeps = [ + "a2c-nums_0_0_1", + "cuti_0_3_0", + "i-figured_0_2_4", +] +description = "河海大学本科生毕业论文(设计)模板。Unofficial Hohai University Undergraduate Thesis (Design) Template" +license = [ + "MIT", +] +homepage = "https://github.com/shaneworld/HHU-Thesis-Template" + +[shane-hhu-thesis."0.4.0"] +url = "https://packages.typst.org/preview/shane-hhu-thesis-0.4.0.tar.gz" +hash = "sha256-l7Odmyl01e1EDjHuVFyOR3brTQELfBxpgLR2bodQMU0=" +typstDeps = [ + "a2c-nums_0_0_1", + "cuti_0_3_0", + "i-figured_0_2_4", +] +description = "河海大学本科生毕业论文(设计)模板。Unofficial Hohai University Undergraduate Thesis (Design) Template" +license = [ + "MIT", +] +homepage = "https://github.com/shaneworld/HHU-Thesis-Template" + [shane-hhu-thesis."0.3.0"] url = "https://packages.typst.org/preview/shane-hhu-thesis-0.3.0.tar.gz" hash = "sha256-GhHzGPmQUyLEf3lxRO0VGI0wt/TzLUUvZuo4iFAUqaU=" @@ -15538,6 +17574,97 @@ license = [ "MIT", ] +[shuosc-shu-bachelor-thesis."0.3.1"] +url = "https://packages.typst.org/preview/shuosc-shu-bachelor-thesis-0.3.1.tar.gz" +hash = "sha256-THXfwL3ex2JfwPvwsOmDq268empnlVvce10+NzAcMT8=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "lovelace_0_2_0", + "mitex_0_2_5", + "numbly_0_1_0", +] +description = "上海大学本科生毕业论文 Typst 模板 - 上海大学开源社区版 (SHUOSC" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/shuosc/SHU-Bachelor-Thesis-Typst" + +[shuosc-shu-bachelor-thesis."0.2.2"] +url = "https://packages.typst.org/preview/shuosc-shu-bachelor-thesis-0.2.2.tar.gz" +hash = "sha256-R0jmwgDZGPqftULRBmQdEOS3ChUismqgqTfPJZ+tVxo=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "lovelace_0_2_0", + "numbly_0_1_0", +] +description = "上海大学本科生毕业论文 Typst 模板 - 上海大学开源社区版 (SHUOSC" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/shuosc/SHU-Bachelor-Thesis-Typst" + +[shuosc-shu-bachelor-thesis."0.2.1"] +url = "https://packages.typst.org/preview/shuosc-shu-bachelor-thesis-0.2.1.tar.gz" +hash = "sha256-4IOjtr/FrN557H+fafXfpYYgXQ5exTvLB1kbw0l1nzI=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "lovelace_0_2_0", + "numbly_0_1_0", +] +description = "上海大学本科生毕业论文 Typst 模板 - 上海大学开源社区版 (SHUOSC" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/shuosc/SHU-Bachelor-Thesis-Typst" + +[shuosc-shu-bachelor-thesis."0.2.0"] +url = "https://packages.typst.org/preview/shuosc-shu-bachelor-thesis-0.2.0.tar.gz" +hash = "sha256-xic62NCqHl7Rny3M1nM5L4K4tEr611MnUusJ6XJ66gU=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "lovelace_0_2_0", + "numbly_0_1_0", +] +description = "上海大学本科生毕业论文 Typst 模板 - 上海大学开源社区版 (SHUOSC" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/shuosc/SHU-Bachelor-Thesis-Typst" + +[shuosc-shu-bachelor-thesis."0.1.5"] +url = "https://packages.typst.org/preview/shuosc-shu-bachelor-thesis-0.1.5.tar.gz" +hash = "sha256-f5ejrMNbnJhKVDCL5ByJP6MCX3shHrItxQXAsSZBPQ8=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "lovelace_0_2_0", + "numbly_0_1_0", +] +description = "上海大学本科生毕业论文 Typst 模板 - 上海大学开源社区版 (SHUOSC" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/shuosc/SHU-Bachelor-Thesis-Typst" + +[shuosc-shu-bachelor-thesis."0.1.4"] +url = "https://packages.typst.org/preview/shuosc-shu-bachelor-thesis-0.1.4.tar.gz" +hash = "sha256-Oa6lDL0nay/BqXjerJuPRMv9OCPnmNtF6COiZG5faXg=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "lovelace_0_2_0", + "numbly_0_1_0", +] +description = "上海大学本科生毕业论文 Typst 模板 - 上海大学开源社区版 (SHUOSC" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/shuosc/SHU-Bachelor-Thesis-Typst" + [shuosc-shu-bachelor-thesis."0.1.2"] url = "https://packages.typst.org/preview/shuosc-shu-bachelor-thesis-0.1.2.tar.gz" hash = "sha256-JxZ8ID9XQX9knDDIBVSrHre3PGXVZGJ1qSdkuM9ID9k=" @@ -15658,6 +17785,16 @@ license = [ ] homepage = "https://github.com/SkytAsul/INSA-Typst-Template" +[silky-report-insa."0.5.1"] +url = "https://packages.typst.org/preview/silky-report-insa-0.5.1.tar.gz" +hash = "sha256-SnAuJ1qLZ3UE7CMSYO0Y8V+Dz9cYutJT4JksFFZ79AU=" +typstDeps = [] +description = "A template made for reports and other documents of INSA, a French engineering school" +license = [ + "MIT", +] +homepage = "https://github.com/SkytAsul/INSA-Typst-Template" + [silky-report-insa."0.5.0"] url = "https://packages.typst.org/preview/silky-report-insa-0.5.0.tar.gz" hash = "sha256-MCwrH+qsAML2U/KwWsnw7nFGlJbGgIq3nprlOnAGTDo=" @@ -15789,6 +17926,21 @@ license = [ ] homepage = "https://github.com/zhao-leo/BUPT-Report-Typst" +[simple-handout."0.1.0"] +url = "https://packages.typst.org/preview/simple-handout-0.1.0.tar.gz" +hash = "sha256-7efYd1NTyv44mupckYcQIIuH1xeAuL2M0/E65YB8YKI=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "tablem_0_2_0", + "unify_0_7_1", +] +description = "A simple handout template, adapted to Chinese" +license = [ + "MIT", +] +homepage = "https://github.com/chillcicada/simple-handout-template" + [simple-preavis."0.1.0"] url = "https://packages.typst.org/preview/simple-preavis-0.1.0.tar.gz" hash = "sha256-x5dtbcF3MGGGkGjAYSLHphn7XcrCnmRsf1g27aAq3vI=" @@ -15809,6 +17961,16 @@ license = [ ] homepage = "https://github.com/steadyfall/simple-technical-resume-template" +[simple-tubs-letter."0.1.2"] +url = "https://packages.typst.org/preview/simple-tubs-letter-0.1.2.tar.gz" +hash = "sha256-xUDtps2CcFe4FO+2OaMgzZCGdJQKATHhe8PsZHivsNw=" +typstDeps = [] +description = "A letter template resembling the TUBS coorperate design" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/Cangarw/simple-tubs-letter" + [simple-tubs-letter."0.1.1"] url = "https://packages.typst.org/preview/simple-tubs-letter-0.1.1.tar.gz" hash = "sha256-rmfej0OOGXNDntzUN3N/WsJ4h6A/TISccg0KI9P/JpI=" @@ -15829,6 +17991,16 @@ license = [ ] homepage = "https://github.com/Cangarw/simple-tubs-letter" +[simple-unimi-thesis."0.1.0"] +url = "https://packages.typst.org/preview/simple-unimi-thesis-0.1.0.tar.gz" +hash = "sha256-Wx/unndXVOQVl4JHMejOpdCicB7ZWaCkAfuYDSn0XVc=" +typstDeps = [] +description = "Unofficial thesis template for Università Statale degli Studi di Milano" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/VictuarVi/Template-Tesi-UniMi" + [simplebnf."0.1.1"] url = "https://packages.typst.org/preview/simplebnf-0.1.1.tar.gz" hash = "sha256-dGCrPJW/E4rRKwO8Q+M0g1+zuC5N58Y5nrp1l4Q/9W8=" @@ -15974,6 +18146,18 @@ license = [ ] homepage = "https://github.com/daskol/typst-templates" +[sns-polylux-template."0.2.0"] +url = "https://packages.typst.org/preview/sns-polylux-template-0.2.0.tar.gz" +hash = "sha256-Sxob5KGV6dfudpvd4vX0Qs8DA09A3BXoof5HtQpLRo8=" +typstDeps = [ + "polylux_0_4_0", +] +description = "Unofficial template for slides in Polylux with SNS and UniPi colors" +license = [ + "MIT-0", +] +homepage = "https://gitlab.com/martino.barbieri/polylux-sns-template" + [sns-polylux-template."0.1.0"] url = "https://packages.typst.org/preview/sns-polylux-template-0.1.0.tar.gz" hash = "sha256-TZ1xokDMAoajLEj2xgG8z74I+iyi9QAKdul62SUnpUo=" @@ -16032,6 +18216,36 @@ license = [ ] homepage = "https://codeberg.org/pfad.fr/typst-songbook" +[songting-book."0.0.2"] +url = "https://packages.typst.org/preview/songting-book-0.0.2.tar.gz" +hash = "sha256-uNl6DIU8lxclkuDbwlEsmggUcS2ca6ZMVRWUJKtX3jg=" +typstDeps = [ + "hydra_0_6_1", + "modern-nju-thesis_0_4_0", + "numbly_0_1_0", + "outrageous_0_4_0", +] +description = "Create Chinese-style books effortlessly using markup with built-in styling" +license = [ + "MIT", +] +homepage = "https://github.com/zhinenggongziliaoku/songting-book" + +[songting-book."0.0.1"] +url = "https://packages.typst.org/preview/songting-book-0.0.1.tar.gz" +hash = "sha256-UwxV6cO5lmhCRSxwe5/+DBeriTX+1qINFdggVswO0Bo=" +typstDeps = [ + "hydra_0_6_1", + "modern-nju-thesis_0_4_0", + "numbly_0_1_0", + "outrageous_0_4_0", +] +description = "Create Chinese-style books effortlessly using markup with built-in styling" +license = [ + "MIT", +] +homepage = "https://github.com/zhinenggongziliaoku/songting-book" + [sourcerer."0.2.1"] url = "https://packages.typst.org/preview/sourcerer-0.2.1.tar.gz" hash = "sha256-WrNizB+4ZYOoIOlJxiuzaWqaI7htDzuGjJ5ZsmfxiAA=" @@ -16339,6 +18553,19 @@ license = [ ] homepage = "https://github.com/Sett17/typst-statastic" +[statementsp."0.1.1"] +url = "https://packages.typst.org/preview/statementsp-0.1.1.tar.gz" +hash = "sha256-2Y1Ot1NMoOh9ILbVZe7PGymTD7w4hJkUp5tJeu2FRAE=" +typstDeps = [ + "headcount_0_1_0", + "showybox_2_0_4", +] +description = "Happy statement box and its cross reference system" +license = [ + "MIT", +] +homepage = "https://github.com/Riley719/typst-statementsp" + [statementsp."0.1.0"] url = "https://packages.typst.org/preview/statementsp-0.1.0.tar.gz" hash = "sha256-m+t+94e5wAUrzZrrirROoJceuShgHDrUzqIK1biUdL4=" @@ -16383,6 +18610,16 @@ license = [ ] homepage = "https://github.com/coco33920/stonewall" +[structogrammer."0.1.2"] +url = "https://packages.typst.org/preview/structogrammer-0.1.2.tar.gz" +hash = "sha256-q0/P9yStQHs2dQDT820EfLUHMtu0pdIgFa9xn+dLtnM=" +typstDeps = [] +description = "Draw Nassi-Shneiderman diagrams (or structograms" +license = [ + "MIT", +] +homepage = "https://gitlab.com/czarlie/structogrammer" + [structogrammer."0.1.1"] url = "https://packages.typst.org/preview/structogrammer-0.1.1.tar.gz" hash = "sha256-kC2pidzajg6i7cJbLodRb0JwTuA3ZuCjrfNzJ+a7OeI=" @@ -16930,6 +19167,16 @@ license = [ ] homepage = "https://github.com/DannySeidel/typst-dhbw-template" +[svgalpha."0.0.1"] +url = "https://packages.typst.org/preview/svgalpha-0.0.1.tar.gz" +hash = "sha256-s7q1MoGZ+rNvXHnqA8iFh3qv7HhIwlM4THW44XGZmO4=" +typstDeps = [] +description = "Add global transparency to a SVG image" +license = [ + "MIT", +] +homepage = "https://github.com/pammacdotnet/SVGAlpha" + [swank-tex."0.1.0"] url = "https://packages.typst.org/preview/swank-tex-0.1.0.tar.gz" hash = "sha256-3QcMzmvAghyaqtRUL6G7NU+XFKTiXNWQL5NgT4pRY40=" @@ -16963,6 +19210,16 @@ license = [ ] homepage = "https://codeberg.org/innocent_zero/typst-resume" +[symbolx."0.1.0"] +url = "https://packages.typst.org/preview/symbolx-0.1.0.tar.gz" +hash = "sha256-ST70rYDyS68qAjY7sI4seLYkXD1OnFa9qJrrLy/+IMc=" +typstDeps = [] +description = "More powerful symbols" +license = [ + "MIT-0", +] +homepage = "https://codeberg.org/T0mstone/typst-symbolx" + [syntree."0.2.1"] url = "https://packages.typst.org/preview/syntree-0.2.1.tar.gz" hash = "sha256-rKNxgn7PtqeDPBnDH3hD9HQrB85JeO9uiM5g0m2LDPs=" @@ -16993,6 +19250,16 @@ license = [ ] homepage = "https://github.com/lynn/typst-syntree" +[t4t."0.4.3"] +url = "https://packages.typst.org/preview/t4t-0.4.3.tar.gz" +hash = "sha256-vIbBcXk+kynrOVEmpBhFIpYASiQUVBu5TraVhfuY7ro=" +typstDeps = [] +description = "An utility package for typst package authors" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-tools4typst" + [t4t."0.4.2"] url = "https://packages.typst.org/preview/t4t-0.4.2.tar.gz" hash = "sha256-0aoAPE1c8Xu3escq6+pMhRi3Nc58jv9B0CV47Bz05sE=" @@ -17454,6 +19721,19 @@ license = [ ] homepage = "https://codeberg.org/Andrew15-5/text-dirr" +[tfguf."0.0.3"] +url = "https://packages.typst.org/preview/tfguf-0.0.3.tar.gz" +hash = "sha256-37IYtyMv3zqpZBB08Ywb+7EUGsKMjQu9rrdmQA+LY5k=" +typstDeps = [ + "physica_0_9_5", + "unify_0_7_1", +] +description = "Plantilla para hacer TFGs en el Grado en Física de UNIR" +license = [ + "MIT", +] +homepage = "https://github.com/pammacdotnet/TFGUF" + [tfguf."0.0.2"] url = "https://packages.typst.org/preview/tfguf-0.0.2.tar.gz" hash = "sha256-RSOTvYAxsRXzBH9vfW/9jIIk8KAMjBsmZNJe4mQQXMA=" @@ -17676,6 +19956,22 @@ license = [ ] homepage = "https://github.com/OrangeX4/typst-theorion" +[thesist."1.0.2"] +url = "https://packages.typst.org/preview/thesist-1.0.2.tar.gz" +hash = "sha256-VSY1Syhq3D7pBdzE9YDX4+P5UpM5CzG/39ad/PwpCZM=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", + "glossarium_0_5_6", + "lovelace_0_3_0", + "subpar_0_2_2", +] +description = "A Master's thesis template for Instituto Superior Técnico (IST" +license = [ + "MIT", +] +homepage = "https://github.com/tfachada/thesist" + [thesist."1.0.1"] url = "https://packages.typst.org/preview/thesist-1.0.1.tar.gz" hash = "sha256-cB3PEMShpapW/J1t3x3zkWEFeTdiZLKgafWeTXms0ks=" @@ -17756,6 +20052,16 @@ license = [ ] homepage = "https://github.com/s15n/typst-thmbox" +[thusliding."0.0.1"] +url = "https://packages.typst.org/preview/thusliding-0.0.1.tar.gz" +hash = "sha256-JAJxR1twa0AFLAhVjtwm1GShpT5M05ZhQBQhMZ8dInA=" +typstDeps = [] +description = "A slide template for Tsinghua University, modified from https://github.com/skriptum/Diatypst" +license = [ + "MIT-0", +] +homepage = "https://github.com/Jzzzi/slide-thu" + [tiaoma."0.3.0"] url = "https://packages.typst.org/preview/tiaoma-0.3.0.tar.gz" hash = "sha256-xhVlYXBXisOzx2/R+fPNtCwEY/QoQXt071Q3m+qUHms=" @@ -17898,6 +20204,19 @@ license = [ ] homepage = "https://github.com/bastienvoirin/tierpist" +[timeliney."0.3.0"] +url = "https://packages.typst.org/preview/timeliney-0.3.0.tar.gz" +hash = "sha256-k5psWk1IImnwZlg3s/6JH9hZLPlBesq5TAt8bKVnBmw=" +typstDeps = [ + "cetz_0_3_2", + "mantys_0_1_4", +] +description = "Create Gantt charts in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/pta2002/typst-timeliney" + [timeliney."0.2.1"] url = "https://packages.typst.org/preview/timeliney-0.2.1.tar.gz" hash = "sha256-c4aWt4hEhtFN5s9zhh7kg3bBRA+6KBkO8doadd0lOi4=" @@ -17959,6 +20278,16 @@ license = [ ] homepage = "https://github.com/sylvanfranklin/tinyset" +[tiptoe."0.3.1"] +url = "https://packages.typst.org/preview/tiptoe-0.3.1.tar.gz" +hash = "sha256-e1er8KpCnBYFzKiu39iLVOhQ2vW3KsIzrBZvtN9WcyQ=" +typstDeps = [] +description = "Arrows and other marks for lines and paths" +license = [ + "MIT", +] +homepage = "https://github.com/Mc-Zen/tiptoe" + [tiptoe."0.3.0"] url = "https://packages.typst.org/preview/tiptoe-0.3.0.tar.gz" hash = "sha256-AzT+mOzV4/TsPh9nVHqV35Mu88ljuknWSB54hZ50rUE=" @@ -18018,6 +20347,46 @@ license = [ "MIT", ] +[tntt."0.3.1"] +url = "https://packages.typst.org/preview/tntt-0.3.1.tar.gz" +hash = "sha256-nw8c2BeoQe0/oeVvB9F9kINqOJiLllWUZSpOPa1GKYs=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", +] +description = "Tntt is Not a Tex Thesis Template for Tsinghua university" +license = [ + "MIT", +] +homepage = "https://github.com/chillcicada/tntt" + +[tntt."0.3.0"] +url = "https://packages.typst.org/preview/tntt-0.3.0.tar.gz" +hash = "sha256-ZncSsHMt0gNd7oW5xoH3XCWZZNcbF+8nsctOrgeTxSY=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", +] +description = "Tntt is Not a Tex Thesis Template for Tsinghua university" +license = [ + "MIT", +] +homepage = "https://github.com/chillcicada/tntt" + +[tntt."0.2.0"] +url = "https://packages.typst.org/preview/tntt-0.2.0.tar.gz" +hash = "sha256-Wk2iKBZZznCJz74WrO3L3ZJF4hBudM7ErssqRVhc6m4=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "tablex_0_0_9", +] +description = "Tntt is Not a Tex Thesis Template for Tsinghua university" +license = [ + "MIT", +] +homepage = "https://github.com/chillcicada/tntt" + [tntt."0.1.0"] url = "https://packages.typst.org/preview/tntt-0.1.0.tar.gz" hash = "sha256-f4NgrD5/fI4EQmBiYDgxFn1DqZPyvVgSgaTm3jgmmmU=" @@ -18411,6 +20780,19 @@ license = [ ] homepage = "https://github.com/touying-typ/touying" +[touying-brandred-uobristol."0.2.0"] +url = "https://packages.typst.org/preview/touying-brandred-uobristol-0.2.0.tar.gz" +hash = "sha256-bowcsWjmkcUxZpanBztjPObvCu3FrU7FuAXSJbTOYZE=" +typstDeps = [ + "showybox_2_0_4", + "touying_0_5_2", +] +description = "Touying Slide Theme for University of Bristol" +license = [ + "MIT", +] +homepage = "https://github.com/HPDell/touying-brandred-uobristol" + [touying-brandred-uobristol."0.1.3"] url = "https://packages.typst.org/preview/touying-brandred-uobristol-0.1.3.tar.gz" hash = "sha256-q+a8Jv2o9cYoxdoq6/L4dcoKgGcxAXsGbclWoBbD7m8=" @@ -18607,6 +20989,19 @@ license = [ ] homepage = "https://github.com/Quaternijkon/Typst_USTC_CS" +[touying-quarto-clean."0.1.1"] +url = "https://packages.typst.org/preview/touying-quarto-clean-0.1.1.tar.gz" +hash = "sha256-9zYawo4SimWNIrJCKUe27CHJq3er23/YEJa4iTGesrw=" +typstDeps = [ + "fontawesome_0_5_0", + "touying_0_6_1", +] +description = "A Clean Slide Theme for Touying" +license = [ + "MIT", +] +homepage = "https://github.com/kazuyanagimoto/quarto-clean-typst" + [touying-quarto-clean."0.1.0"] url = "https://packages.typst.org/preview/touying-quarto-clean-0.1.0.tar.gz" hash = "sha256-zjUkMIShayTKau6ZSutmq37zWJWr0ttgu7RZ+DV/TB0=" @@ -18620,6 +21015,22 @@ license = [ ] homepage = "https://github.com/kazuyanagimoto/quarto-clean-typst" +[touying-quick."0.2.0"] +url = "https://packages.typst.org/preview/touying-quick-0.2.0.tar.gz" +hash = "sha256-KJ4P2LudaxyIs9uCqAbMK6+Cn9OwLr0d1NqXBM+Y7RA=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", + "physica_0_9_5", + "theorion_0_3_3", + "touying_0_6_1", +] +description = "A quick-start template based on touying for academic reports" +license = [ + "MIT", +] +homepage = "https://github.com/ivaquero/touying-quick.git" + [touying-quick."0.1.0"] url = "https://packages.typst.org/preview/touying-quick-0.1.0.tar.gz" hash = "sha256-BRYPSevmKHiy9rX6VG+yRlvbPuwoc7oy0owQdW3P3gk=" @@ -18701,6 +21112,30 @@ license = [ ] homepage = "https://github.com/exAClior/touying-simpl-hkustgz" +[touying-unistra-pristine."1.4.1"] +url = "https://packages.typst.org/preview/touying-unistra-pristine-1.4.1.tar.gz" +hash = "sha256-4X1Wh/8oPbTfMtjmjo3ACJXsltkh2Jnlib5JTGJpMGU=" +typstDeps = [ + "touying_0_6_1", +] +description = "Touying theme adhering to the core principles of the style guide of the University of Strasbourg, France" +license = [ + "MIT", +] +homepage = "https://github.com/spidersouris/touying-unistra-pristine" + +[touying-unistra-pristine."1.4.0"] +url = "https://packages.typst.org/preview/touying-unistra-pristine-1.4.0.tar.gz" +hash = "sha256-WuW+2A3PRyVUNAmrCHealAAhIs0JeJ+9SKm/V5lwih4=" +typstDeps = [ + "touying_0_6_1", +] +description = "Touying theme adhering to the core principles of the style guide of the University of Strasbourg, France" +license = [ + "MIT", +] +homepage = "https://github.com/spidersouris/touying-unistra-pristine" + [touying-unistra-pristine."1.3.1"] url = "https://packages.typst.org/preview/touying-unistra-pristine-1.3.1.tar.gz" hash = "sha256-+OPnCXyVUQ1r6drzjxJVC8yCKGIe2xUxokhJDh2qn50=" @@ -19150,6 +21585,18 @@ license = [ "MPL-2.0", ] +[tuhi-labscript-vuw."0.3.0"] +url = "https://packages.typst.org/preview/tuhi-labscript-vuw-0.3.0.tar.gz" +hash = "sha256-ka0RDYYLmQxDOhLG+iEc9Hhb+3jEWQfbT3UF9Jk6SCg=" +typstDeps = [ + "showybox_2_0_4", +] +description = "A labscript template for experimental courses" +license = [ + "MPL-2.0", +] +homepage = "https://github.com/vuw-scps/tuhi-labscript-vuw" + [tuhi-labscript-vuw."0.2.0"] url = "https://packages.typst.org/preview/tuhi-labscript-vuw-0.2.0.tar.gz" hash = "sha256-H99ttKzsviYUcq/mYclHmb6ZDgHf3NmLMEICdddetbI=" @@ -19287,6 +21734,26 @@ license = [ ] homepage = "https://github.com/freundTech/typst-typearea" +[typewind."0.1.0"] +url = "https://packages.typst.org/preview/typewind-0.1.0.tar.gz" +hash = "sha256-5metuBpxNEFLS0vx4SaL2hhNEJGDXWYlSq7OLmhyp34=" +typstDeps = [] +description = "tailwindcss colors" +license = [ + "MIT", +] +homepage = "https://github.com/C4illin/typewind" + +[typhorm."0.1.0"] +url = "https://packages.typst.org/preview/typhorm-0.1.0.tar.gz" +hash = "sha256-Q4yCy6Lr8Z0jWQUmR8+TANVSJcDXUjArSe8c0FfXzug=" +typstDeps = [] +description = "A set of utility functions for creating complex forms" +license = [ + "MIT", +] +homepage = "https://github.com/ivaquero/typhorm.git" + [typographic-resume."0.1.0"] url = "https://packages.typst.org/preview/typographic-resume-0.1.0.tar.gz" hash = "sha256-0E3XQBFLGniJMBpbyLUReNhYh99CpCd7VkiX0GAEZVQ=" @@ -19357,6 +21824,16 @@ license = [ ] homepage = "https://github.com/TeddyHuang-00/typpuccino" +[typsite."0.1.0"] +url = "https://packages.typst.org/preview/typsite-0.1.0.tar.gz" +hash = "sha256-q0M53Wp7BiJ60lvSSw9+f4qRSx+t7S+ma2cXuv++qiI=" +typstDeps = [] +description = "Typsite std lib" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/Glomzzz/typsite" + [typsium."0.2.0"] url = "https://packages.typst.org/preview/typsium-0.2.0.tar.gz" hash = "sha256-6regfP95XRjL1cRahkIjTR0FM+z0bfaVAJFtOkN4oz8=" @@ -19436,6 +21913,16 @@ license = [ ] homepage = "https://github.com/Typsium/typsium-iso-7010" +[typslides."1.2.6"] +url = "https://packages.typst.org/preview/typslides-1.2.6.tar.gz" +hash = "sha256-LHN2Fp1S+X1hw+GkICTaGRRCeOZfWBuakzkDZBvvFRY=" +typstDeps = [] +description = "Minimalistic Typst slides" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/manjavacas/typslides" + [typslides."1.2.5"] url = "https://packages.typst.org/preview/typslides-1.2.5.tar.gz" hash = "sha256-Jxl8Ptse2uQQgSRDQBZXnAzAsWtrNqDN2fm6gZXDNzA=" @@ -19687,6 +22174,21 @@ license = [ "MIT", ] +[unilab."0.0.4"] +url = "https://packages.typst.org/preview/unilab-0.0.4.tar.gz" +hash = "sha256-tL0mHXC4cpXx9TUW1FphUyOLEJib4QJkVXcNyXF4Slc=" +typstDeps = [ + "chic-hdr_0_5_0", + "linguify_0_4_2", + "oxifmt_0_2_1", + "unify_0_7_1", +] +description = "Lab report" +license = [ + "MIT", +] +homepage = "https://github.com/pku-typst/unilab" + [unilab."0.0.2"] url = "https://packages.typst.org/preview/unilab-0.0.2.tar.gz" hash = "sha256-4C37iqsVl1FGkjD3t8aUrghf7Z8QkTwZyNwZHZoi+Ig=" @@ -19929,6 +22431,16 @@ license = [ ] homepage = "https://github.com/TomVer99/FHICT-typst-template" +[unofficial-fontys-paper-template."0.1.0"] +url = "https://packages.typst.org/preview/unofficial-fontys-paper-template-0.1.0.tar.gz" +hash = "sha256-Om8rgOfWADg2tV36qv+PonSZWPBbpCjNw0y7hGobVQU=" +typstDeps = [] +description = "This is a template for creating research papers in Typst, tailored for Fontys Hogeschool" +license = [ + "MIT", +] +homepage = "https://github.com/TomVer99/Fontys-paper-template" + [unofficial-hka-thesis."1.0.1"] url = "https://packages.typst.org/preview/unofficial-hka-thesis-1.0.1.tar.gz" hash = "sha256-XLHqe1WvosoePU30Obp38Y5tQ36kAVgrHRxoyQo72qI=" @@ -19955,6 +22467,21 @@ license = [ ] homepage = "https://github.com/AnsgarLichter/unofficial-hka-thesis" +[unofficial-sdu-thesis."1.0.0"] +url = "https://packages.typst.org/preview/unofficial-sdu-thesis-1.0.0.tar.gz" +hash = "sha256-RnBRBBqyjwEmjw+I7s8ld1fxRxRuwcx/biTDFXZzoJM=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "lovelace_0_2_0", + "numbly_0_1_0", +] +description = "山东大学本科毕业论文(设计)模板" +license = [ + "MIT", +] +homepage = "https://github.com/GrooveWJH/unofficial-sdu-thesis" + [unofficial-sdu-thesis."0.2.2"] url = "https://packages.typst.org/preview/unofficial-sdu-thesis-0.2.2.tar.gz" hash = "sha256-PZBMLtJmY51CEKARfPcOdasT/4DnRjsBoFeabFWlopM=" @@ -20017,6 +22544,40 @@ license = [ ] homepage = "https://github.com/GrooveWJH/unofficial-sdu-thesis" +[unofficial-tyut-thesis."0.1.1"] +url = "https://packages.typst.org/preview/unofficial-tyut-thesis-0.1.1.tar.gz" +hash = "sha256-6qzNBtseYo7TyFYLMcO+6yAriVhjwWlJNj/APnRUIf8=" +typstDeps = [ + "algo_0_3_6", + "cuti_0_3_0", + "i-figured_0_2_4", + "numbly_0_1_0", + "pointless-size_0_1_1", + "zebraw_0_5_5", +] +description = "非官方太原理工大学本科毕业论文 typst 模板。" +license = [ + "MIT", +] +homepage = "https://github.com/pdcxs/unofficial-tyut-thesis" + +[unofficial-tyut-thesis."0.1.0"] +url = "https://packages.typst.org/preview/unofficial-tyut-thesis-0.1.0.tar.gz" +hash = "sha256-Lu278XjtqGyRIMouuOMMgGAkmy1TQrw1OtxUGqrEgZo=" +typstDeps = [ + "algo_0_3_6", + "cuti_0_3_0", + "i-figured_0_2_4", + "numbly_0_1_0", + "pointless-size_0_1_1", + "zebraw_0_5_5", +] +description = "非官方太原理工大学本科毕业论文 typst 模板。" +license = [ + "MIT", +] +homepage = "https://github.com/pdcxs/unofficial-tyut-thesis" + [untypsignia."0.1.1"] url = "https://packages.typst.org/preview/untypsignia-0.1.1.tar.gz" hash = "sha256-skdLt8VjBpWG4eWHArBgPnAxOPcknFrYHCNw7aeiBOE=" @@ -20055,6 +22616,20 @@ license = [ ] homepage = "https://gitlab.com/datsudo/uo-pup-thesis-manuscript" +[uo-tsinghua-thesis."0.4.0"] +url = "https://packages.typst.org/preview/uo-tsinghua-thesis-0.4.0.tar.gz" +hash = "sha256-PFNfhGoBUd3aHOAersoaHWAfWeo/3t9ljVjprUYgb3g=" +typstDeps = [ + "a2c-nums_0_0_1", + "cuti_0_3_0", + "tablem_0_2_0", +] +description = "An unofficial Typst template for Tsinghua University (THU) graduate thesis. 清华大学研究生毕业论文非官方Typst模板。" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/dl-li/uo-Tsinghua-Thesis-Typst-Template" + [uo-tsinghua-thesis."0.3.0"] url = "https://packages.typst.org/preview/uo-tsinghua-thesis-0.3.0.tar.gz" hash = "sha256-c61R3BlMDC0pzk+FpkOakPYPPr+IGjllz7plbmBK/nE=" @@ -20083,6 +22658,19 @@ license = [ ] homepage = "https://github.com/dl-li/uo-Tsinghua-Thesis-Typst-Template" +[upb-cn-templates."0.2.0"] +url = "https://packages.typst.org/preview/upb-cn-templates-0.2.0.tar.gz" +hash = "sha256-SNfqevhWBdoIOSDNarGPQa/L1NmVyYFIk1Ydk7Mj0+Q=" +typstDeps = [ + "ccicons_1_0_1", + "timeliney_0_2_0", +] +description = "Templates for seminar reports, thesis proposals, and theses at the Computer Networks Group of Paderborn University" +license = [ + "MIT-0", +] +homepage = "https://github.com/upb-cn/student-templates-typst" + [upb-cn-templates."0.1.0"] url = "https://packages.typst.org/preview/upb-cn-templates-0.1.0.tar.gz" hash = "sha256-aY7EfOJN2CHoEURr65IuJwkReXF+bHJnfD9ei9bdLJE=" @@ -20095,6 +22683,18 @@ license = [ ] homepage = "https://github.com/upb-cn/student-templates-typst" +[upb-corporate-design-slides."0.1.3"] +url = "https://packages.typst.org/preview/upb-corporate-design-slides-0.1.3.tar.gz" +hash = "sha256-CytayPqjn/iqFVEa2RVBDY1grSrHAlfLGn4qlEQWJMs=" +typstDeps = [ + "touying_0_6_1", +] +description = "Presentation template for Paderborn University (UPB" +license = [ + "MIT", +] +homepage = "https://codeberg.org/Kuchenmampfer/upb-corporate-design-slides" + [upb-corporate-design-slides."0.1.2"] url = "https://packages.typst.org/preview/upb-corporate-design-slides-0.1.2.tar.gz" hash = "sha256-X93El+L4GAiDM9BwiVU8l48MpIAXsWPC4A7z3DTY2ng=" @@ -20141,6 +22741,26 @@ license = [ ] homepage = "https://github.com/bpkleer/typst-academicons" +[use-tabler-icons."0.13.0"] +url = "https://packages.typst.org/preview/use-tabler-icons-0.13.0.tar.gz" +hash = "sha256-gVqEG2sGy2vJb8Vc45PTN2W6vfT/rVRvekrXtWxG+98=" +typstDeps = [] +description = "Tabler Icons for Typst using webfont" +license = [ + "MIT", +] +homepage = "https://github.com/zyf722/typst-tabler-icons" + +[use-tabler-icons."0.12.0"] +url = "https://packages.typst.org/preview/use-tabler-icons-0.12.0.tar.gz" +hash = "sha256-Iz2Es9BSLXY4BVCKbPZ87dKnTSnIbg5R6iu6l0eZ2a0=" +typstDeps = [] +description = "Tabler Icons for Typst using webfont" +license = [ + "MIT", +] +homepage = "https://github.com/zyf722/typst-tabler-icons" + [use-tabler-icons."0.11.0"] url = "https://packages.typst.org/preview/use-tabler-icons-0.11.0.tar.gz" hash = "sha256-z7Z3MKNpWD2q2aRnu/+gnCbumbFt9P4ss0Ma+M6UzUM=" @@ -20287,6 +22907,34 @@ license = [ ] homepage = "https://github.com/ertugruluyar-github/utype-neuies-reports" +[uwnibook-color."0.2.0"] +url = "https://packages.typst.org/preview/uwnibook-color-0.2.0.tar.gz" +hash = "sha256-6gp2NjsS7phGA0k3yY8WmH5/VF4Ejh1E5ZlaChs9lTo=" +typstDeps = [ + "marginalia_0_2_0", +] +description = "A book template for my personal usage, with multilingual support" +license = [ + "MPL-2.0", +] +homepage = "https://github.com/uwni/uwnibook-color" + +[uwnibook-color."0.1.0"] +url = "https://packages.typst.org/preview/uwnibook-color-0.1.0.tar.gz" +hash = "sha256-0bs1wL85VPuh8njtNrU7ADQmduFVE4+t6z5p8Ow3BLg=" +typstDeps = [ + "cheq_0_2_2", + "marginalia_0_1_4", + "tidy_0_4_2", + "treet_0_1_1", + "zebraw_0_5_5", +] +description = "A book template for my personal usage, with multilingual support" +license = [ + "MPL-2.0", +] +homepage = "https://github.com/uwni/uwnibook-color" + [valkyrie."0.2.2"] url = "https://packages.typst.org/preview/valkyrie-0.2.2.tar.gz" hash = "sha256-9FTVR2mbrCMIrsraUrx8m8U1OwMKzIlvK9ule3cQHLk=" @@ -20339,6 +22987,16 @@ license = [ ] homepage = "https://github.com/JamesxX/valkyrie" +[vanilla."0.1.1"] +url = "https://packages.typst.org/preview/vanilla-0.1.1.tar.gz" +hash = "sha256-r2bgKkQCmqSc1PbieLR+nHDo341dtm/vzfWu3l4ahQY=" +typstDeps = [] +description = "A vanilla Typst package. Aims for minimilist styling fimilar to class MS Word defaults" +license = [ + "MIT", +] +homepage = "https://github.com/juristack/typst-vanilla" + [vantage-cv."1.0.0"] url = "https://packages.typst.org/preview/vantage-cv-1.0.0.tar.gz" hash = "sha256-ggyQgxkGUuRJKibB5cIz+8cJGME/ELRwPL1AUnxSTbg=" @@ -20479,6 +23137,49 @@ license = [ ] homepage = "https://github.com/jassielof/typst-templates" +[vibrant-color."0.2.1"] +url = "https://packages.typst.org/preview/vibrant-color-0.2.1.tar.gz" +hash = "sha256-5UIXU8aEuFfi1tViqDS+kN0bmqUIQATT2TG6AEcN0Xk=" +typstDeps = [] +description = "A modern template designed for reports with a variety of colors available" +license = [ + "MIT", +] +homepage = "https://github.com/SHAfoin/shafoin-typst-template" + +[vibrant-color."0.2.0"] +url = "https://packages.typst.org/preview/vibrant-color-0.2.0.tar.gz" +hash = "sha256-+VBb6seh/H78NNas4hhgCazJTzuG4wFiCe9DgIUQ/rc=" +typstDeps = [] +description = "A modern template designed for reports with a variety of colors available" +license = [ + "MIT", +] +homepage = "https://github.com/SHAfoin/shafoin-typst-template" + +[vibrant-color."0.1.0"] +url = "https://packages.typst.org/preview/vibrant-color-0.1.0.tar.gz" +hash = "sha256-ty3Nf9hthJuHeRRHKFifQeuv7GnTBdLyJvtvGZvh9fE=" +typstDeps = [] +description = "A modern template designed for reports with a variety of colors available" +license = [ + "MIT", +] +homepage = "https://github.com/SHAfoin/shafoin-typst-template" + +[vienna-tech."1.1.0"] +url = "https://packages.typst.org/preview/vienna-tech-1.1.0.tar.gz" +hash = "sha256-NjSkVzSNMNOJVuck7IsnwVYCfa/+ZJFz9KIwwLw6PVQ=" +typstDeps = [ + "codly_1_3_0", + "rubber-article_0_4_1", +] +description = "An unofficial template for writing thesis at the TU Wien civil- and environmental engineering faculty" +license = [ + "MIT", +] +homepage = "https://github.com/npikall/vienna-tech.git" + [vienna-tech."1.0.0"] url = "https://packages.typst.org/preview/vienna-tech-1.0.0.tar.gz" hash = "sha256-iFg9YMiy68RfG85RAe9olbAGABtCv95ZpunG/e+wjsA=" @@ -20535,6 +23236,16 @@ license = [ ] homepage = "https://github.com/npikall/vienna-tech.git" +[vlna."0.1.1"] +url = "https://packages.typst.org/preview/vlna-0.1.1.tar.gz" +hash = "sha256-g26sPFG6Jb92aI657KAW1sbgaCZzKqUMiCqvha1CdcU=" +typstDeps = [] +description = "Typst reproduction of `luavlna` known from LuaLaTeX" +license = [ + "MIT", +] +homepage = "https://github.com/ShinoYumi/typst-vlna/" + [vlna."0.1.0"] url = "https://packages.typst.org/preview/vlna-0.1.0.tar.gz" hash = "sha256-G3FA/puWLUb1qa6n6pCyD4CIlr10pfgsZ/ZtQmnHr6s=" @@ -20792,7 +23503,7 @@ license = [ [wrap-it."0.1.1"] url = "https://packages.typst.org/preview/wrap-it-0.1.1.tar.gz" -hash = "sha256-2g0RO1YFmxBSzMqlsTq0W3PQVIcmalx4SXqaegP3xAw=" +hash = "sha256-P21JZ1BqVSVsV0J+yFu4GQ+Cw6fynM9DQyCYK3oMrXg=" typstDeps = [] description = "Wrap text around figures and content" license = [ @@ -20899,6 +23610,28 @@ license = [ "MPL-2.0", ] +[yaml-dadaism."0.2.0"] +url = "https://packages.typst.org/preview/yaml-dadaism-0.2.0.tar.gz" +hash = "sha256-aBlXaJDzpqYbZoUpyk4/uuagRKwhTXaX52/44ru+DGM=" +typstDeps = [ + "cineca_0_5_0", +] +description = "Calendar with linear monthly layout filled with yaml-defined events" +license = [ + "MPL-2.0", +] +homepage = "https://github.com/baptiste/yaml-dadaism" + +[yaml-dadaism."0.1.0"] +url = "https://packages.typst.org/preview/yaml-dadaism-0.1.0.tar.gz" +hash = "sha256-FEDL0cFV1yRN0mvHmyo/lsVxCk11Gk7eWIqT+THlLR8=" +typstDeps = [] +description = "Calendar with linear monthly layout filled with yaml-defined events" +license = [ + "MPL-2.0", +] +homepage = "https://github.com/baptiste/yaml-dadaism" + [yats."0.1.0"] url = "https://packages.typst.org/preview/yats-0.1.0.tar.gz" hash = "sha256-xmyiwiJBqyFk/VUS6Z6Z/XJecb47demxKk68HdWBZao=" @@ -20909,6 +23642,19 @@ license = [ ] homepage = "https://github.com/0warning0error/typst-yats" +[yinsh-record."1.0.0"] +url = "https://packages.typst.org/preview/yinsh-record-1.0.0.tar.gz" +hash = "sha256-yQIzG8lsIla11JRKuP5hwnM4KET3hX553UraaUWLuYI=" +typstDeps = [ + "cetz_0_3_4", + "yinsh_1_0_0", +] +description = "Draw yinsh records" +license = [ + "MIT", +] +homepage = "https://github.com/wedipe/yinsh-for-typst" + [yuan-resume."0.1.0"] url = "https://packages.typst.org/preview/yuan-resume-0.1.0.tar.gz" hash = "sha256-FWEsms0v6M7+T+YiwcINVybnJj53FSYeQpfdz+E4NrQ=" @@ -20919,6 +23665,40 @@ license = [ ] homepage = "https://github.com/visika/yuan-resume" +[zap."0.2.0"] +url = "https://packages.typst.org/preview/zap-0.2.0.tar.gz" +hash = "sha256-JpQv3gBoSOjYSfIi8eeCDllRCJIC7hFALoJvxUBs1QE=" +typstDeps = [ + "cetz_0_3_4", +] +description = "A package to draw amazing electronic circuits using CeTZ superpowers" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/l0uisgrange/zap" + +[zap."0.1.0"] +url = "https://packages.typst.org/preview/zap-0.1.0.tar.gz" +hash = "sha256-QFu6ENyH+DnPXSt9avJnDIkCCNe75eoV+rdx7jqTqg4=" +typstDeps = [ + "cetz_0_3_4", +] +description = "A package to draw amazing electronic circuits using CeTZ superpowers" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/l0uisgrange/zap" + +[zebraw."0.5.5"] +url = "https://packages.typst.org/preview/zebraw-0.5.5.tar.gz" +hash = "sha256-9ippw6VBeXhNHD4WnvPX4HlcraLyGrx8u3Cd6T0lGB0=" +typstDeps = [] +description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting" +license = [ + "MIT", +] +homepage = "https://github.com/hongjr03/typst-zebraw" + [zebraw."0.5.4"] url = "https://packages.typst.org/preview/zebraw-0.5.4.tar.gz" hash = "sha256-mekAjJe/VoNJ9aHbOpogkEi6QKXV9W7ya+vzkiJFado=" @@ -21175,6 +23955,16 @@ license = [ ] homepage = "https://github.com/Mc-Zen/zero" +[zh-kit."0.1.0"] +url = "https://packages.typst.org/preview/zh-kit-0.1.0.tar.gz" +hash = "sha256-bP6KWHpN5vnqNrRzu2QPJyDO7xr3oAzJilBUv9TKWc8=" +typstDeps = [] +description = "基础的 Typst 中文支持,提供字体配置等核心功能。Add basicly support for Chinese Typeset, likes fonts, etc" +license = [ + "LGPL-2.1-only", +] +homepage = "https://github.com/ctypst/zh-kit" + [zhconv."0.3.1"] url = "https://packages.typst.org/preview/zhconv-0.3.1.tar.gz" hash = "sha256-0TyTXVJ73tbTh/y2vGG1ORDwORMve0oQUhyBUO297Lg=" From 6f0ded032df79790f07e0115cc55a7a1308eab52 Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Mon, 23 Jun 2025 13:43:33 +0200 Subject: [PATCH 22/96] oakctl: 0.2.12 -> 0.11.0 --- pkgs/by-name/oa/oakctl/package.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/oa/oakctl/package.nix b/pkgs/by-name/oa/oakctl/package.nix index 2f8f4f2a2a43..dfad861ca1be 100644 --- a/pkgs/by-name/oa/oakctl/package.nix +++ b/pkgs/by-name/oa/oakctl/package.nix @@ -9,26 +9,26 @@ }: let - version = "0.2.12"; + version = "0.11.0"; # Note: Extracted from install script # https://oakctl-releases.luxonis.com/oakctl-installer.sh sources = { x86_64-linux = fetchurl { url = "https://oakctl-releases.luxonis.com/data/${version}/linux_x86_64/oakctl"; - hash = "sha256-HCnFD0LD6sQp9k3SP2g4svjA5/kLvfrnN+IwiuMWGCY="; + hash = "sha256-AJo1xFKWtjMZNsY9M2cENe+3y9Simv+mT/fLKOWeIys="; }; aarch64-linux = fetchurl { url = "https://oakctl-releases.luxonis.com/data/${version}/linux_aarch64/oakctl"; - hash = "sha256-1oJQs57/tW3rsMM+LAuKiBUf1aKOKFoPQAMcVUfXqlE="; + hash = "sha256-sRHfmv1cUWCWkQHARpzTgSns464RlAkgw/JOKPQk//8="; }; aarch64-darwin = fetchurl { url = "https://oakctl-releases.luxonis.com/data/${version}/darwin_arm64/oakctl"; - hash = "sha256-arS2qfd/Z/ZCNWAKD9bc2PMwkhVtO5WViTibMST7zd8="; + hash = "sha256-AgvV8rgVaD+TrjTDvWPGXVSBk9YUVmh7OK3j5mNU+0s="; }; x86_64-darwin = fetchurl { url = "https://oakctl-releases.luxonis.com/data/${version}/darwin_x86_64/oakctl"; - hash = "sha256-yyvDQbFEtlB8xmdbxquy22wAIUcCSVchP/AuSpi4TAU="; + hash = "sha256-AgvV8rgVaD+TrjTDvWPGXVSBk9YUVmh7OK3j5mNU+0s="; }; }; @@ -51,7 +51,10 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ autoPatchelfHook ]; - buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ libgcc ]; + buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ + libgcc + stdenv.cc.cc.lib + ]; installPhase = '' runHook preInstall From c463263dcfb7c0edcf5f6b3d137838b7bd456be9 Mon Sep 17 00:00:00 2001 From: Fernando Rodrigues Date: Tue, 24 Jun 2025 06:53:52 -0300 Subject: [PATCH 23/96] fosrl-gerbil: minor refactoring - Reorders some attributes to keep the hashes closer together. - Adds myself as a maintainer. - Removes the unused `replaceVars` attribute from the function header. - Removes the `fosrl-` prefix from `pname`. Signed-off-by: Fernando Rodrigues --- pkgs/by-name/fo/fosrl-gerbil/package.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/fo/fosrl-gerbil/package.nix b/pkgs/by-name/fo/fosrl-gerbil/package.nix index fc2f5a5fabce..ffe8cffe4fdd 100644 --- a/pkgs/by-name/fo/fosrl-gerbil/package.nix +++ b/pkgs/by-name/fo/fosrl-gerbil/package.nix @@ -3,11 +3,10 @@ iptables, fetchFromGitHub, buildGoModule, - replaceVars, }: buildGoModule rec { - pname = "fosrl-gerbil"; + pname = "gerbil"; version = "1.0.0"; src = fetchFromGitHub { @@ -16,21 +15,25 @@ buildGoModule rec { tag = version; hash = "sha256-6ZmnokXmn4KIfNZT9HrraYP4fjfY2C0sK+xAJyq/pkU="; }; + + vendorHash = "sha256-lYJjw+V94oxILu+akUnzGACtsU7CLGwljysRvyUk+yA="; + # patch out the /usr/sbin/iptables postPatch = '' substituteInPlace main.go \ --replace-fail '/usr/sbin/iptables' '${lib.getExe iptables}' ''; - vendorHash = "sha256-lYJjw+V94oxILu+akUnzGACtsU7CLGwljysRvyUk+yA="; - meta = { description = "Simple WireGuard interface management server"; mainProgram = "gerbil"; homepage = "https://github.com/fosrl/gerbil"; changelog = "https://github.com/fosrl/gerbil/releases/tag/${version}"; license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ jackr ]; + maintainers = with lib.maintainers; [ + jackr + sigmasquadron + ]; platforms = lib.platforms.linux; }; } From 7f8136bb28cbcc764c454eca9efe93913e4d7c8e Mon Sep 17 00:00:00 2001 From: luftmensch-luftmensch Date: Tue, 24 Jun 2025 19:05:08 +0200 Subject: [PATCH 24/96] mpvScripts.modernx-zydezu: 0.4.2 -> 0.4.3 --- pkgs/applications/video/mpv/scripts/modernx-zydezu.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/mpv/scripts/modernx-zydezu.nix b/pkgs/applications/video/mpv/scripts/modernx-zydezu.nix index 618d40b2006c..a084b6665c84 100644 --- a/pkgs/applications/video/mpv/scripts/modernx-zydezu.nix +++ b/pkgs/applications/video/mpv/scripts/modernx-zydezu.nix @@ -7,14 +7,14 @@ }: buildLua (finalAttrs: { pname = "modernx-zydezu"; - version = "0.4.2"; + version = "0.4.3"; scriptPath = "modernx.lua"; src = fetchFromGitHub { owner = "zydezu"; repo = "ModernX"; rev = finalAttrs.version; - hash = "sha256-7DkW3b0YEkV4VPURcg4kkUy8pSTFFb8jaJOuEtzTDow="; + hash = "sha256-vveDQsvMVt9DYFM1Ong7/Gx5P9jMq/BEj2AhSuW6tRI="; }; postInstall = '' From 8a510bd15c6b42d189380b93f091e5bea4fcfbd5 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 24 Jun 2025 18:33:23 +0000 Subject: [PATCH 25/96] python3Packages.jplephem: 2.22 -> 2.23 --- pkgs/development/python-modules/jplephem/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/jplephem/default.nix b/pkgs/development/python-modules/jplephem/default.nix index 4fd924c47358..05d2075a0e51 100644 --- a/pkgs/development/python-modules/jplephem/default.nix +++ b/pkgs/development/python-modules/jplephem/default.nix @@ -7,12 +7,12 @@ buildPythonPackage rec { pname = "jplephem"; - version = "2.22"; + version = "2.23"; format = "setuptools"; src = fetchPypi { inherit pname version; - hash = "sha256-DZrMche0gG/rqT5yl0zurVYREEvOZ4mvONTyfc96WSw="; + hash = "sha256-0/uUd+S/TDnRBJfU/xXlJxt6wD+hAeGCGqxSfWRuzPk="; }; propagatedBuildInputs = [ numpy ]; From b1744596816c4e2e48e94158215162721f90f62a Mon Sep 17 00:00:00 2001 From: Ryan Omasta Date: Tue, 24 Jun 2025 14:04:31 -0600 Subject: [PATCH 26/96] matrix-authentication-service: 0.16.0 -> 0.17.1 https://github.com/element-hq/matrix-authentication-service/releases/tag/v0.17.1 Diff: https://github.com/element-hq/matrix-authentication-service/compare/v0.16.0...v0.17.1 --- pkgs/by-name/ma/matrix-authentication-service/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ma/matrix-authentication-service/package.nix b/pkgs/by-name/ma/matrix-authentication-service/package.nix index 2612dcc1f616..58a84b77acfb 100644 --- a/pkgs/by-name/ma/matrix-authentication-service/package.nix +++ b/pkgs/by-name/ma/matrix-authentication-service/package.nix @@ -16,22 +16,22 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "matrix-authentication-service"; - version = "0.16.0"; + version = "0.17.1"; src = fetchFromGitHub { owner = "element-hq"; repo = "matrix-authentication-service"; tag = "v${finalAttrs.version}"; - hash = "sha256-/UrMmC5DTxoN6uzvTB+V3//hGQmKlkYvi5Lv4p31fq4="; + hash = "sha256-iBDvvKy5alaieIm+Jv9WnqHVGjItDSvJAk+ClTRj3v0="; }; useFetchCargoVendor = true; - cargoHash = "sha256-UvRv69rHqPNqTg5nhUojTDHEFUIXF8LEB4ndzA7CHc0="; + cargoHash = "sha256-rHlzLawpCD9onhca9NzgUXmA2vDmW48cQrV05qs+tn8="; npmDeps = fetchNpmDeps { name = "${finalAttrs.pname}-${finalAttrs.version}-npm-deps"; src = "${finalAttrs.src}/${finalAttrs.npmRoot}"; - hash = "sha256-7EN8GIO8VutAZujVvgM67fGIXWD2aJhHhEJrTeHRiGE="; + hash = "sha256-0rJAU4PZAshTu6KD4EzIltUT8PO4dnWCY5oM3kyxBBk="; }; npmRoot = "frontend"; From aa5ed728e65f0e1b9395383f003b8ad6ef574dc0 Mon Sep 17 00:00:00 2001 From: Savchenko Dmitriy Date: Sat, 21 Jun 2025 14:35:52 +0300 Subject: [PATCH 27/96] =?UTF-8?q?ut1999:=20469d=20=E2=86=92=20469e-rc8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/by-name/ut/ut1999/package.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/by-name/ut/ut1999/package.nix b/pkgs/by-name/ut/ut1999/package.nix index 53d8a9fa88a8..54f9ba6c6839 100644 --- a/pkgs/by-name/ut/ut1999/package.nix +++ b/pkgs/by-name/ut/ut1999/package.nix @@ -21,23 +21,23 @@ }: let - version = "469d"; + version = "469e-rc8"; srcs = rec { x86_64-linux = fetchurl { - url = "https://github.com/OldUnreal/UnrealTournamentPatches/releases/download/v${version}/OldUnreal-UTPatch${version}-Linux-amd64.tar.bz2"; - hash = "sha256-aoGzWuakwN/OL4+xUq8WEpd2c1rrNN/DkffI2vDVGjs="; + url = "https://github.com/OldUnreal/UnrealTournamentPatches/releases/download/v${version}/OldUnreal-UTPatch${builtins.elemAt (lib.strings.splitString "-" version) 0}-Linux-amd64.tar.bz2"; + hash = "sha256-VR4Ldb2LVqO/6kIZINLyndaxf1qzmB1xJrzZHAaoOU0="; }; aarch64-linux = fetchurl { - url = "https://github.com/OldUnreal/UnrealTournamentPatches/releases/download/v${version}/OldUnreal-UTPatch${version}-Linux-arm64.tar.bz2"; - hash = "sha256-2e9lHB12jLTR8UYofLWL7gg0qb2IqFk6eND3T5VqAx0="; + url = "https://github.com/OldUnreal/UnrealTournamentPatches/releases/download/v${version}/OldUnreal-UTPatch${builtins.elemAt (lib.strings.splitString "-" version) 0}-Linux-arm64.tar.bz2"; + hash = "sha256-vMZfmdD0THSIt//ku90bmURqGIRAcsOojJncis2Cr4w="; }; i686-linux = fetchurl { - url = "https://github.com/OldUnreal/UnrealTournamentPatches/releases/download/v${version}/OldUnreal-UTPatch${version}-Linux-x86.tar.bz2"; - hash = "sha256-1JsFKuAAj/LtYvOUPFu0Hn+zvY3riW0YlJbLd4UnaKU="; + url = "https://github.com/OldUnreal/UnrealTournamentPatches/releases/download/v${version}/OldUnreal-UTPatch${builtins.elemAt (lib.strings.splitString "-" version) 0}-Linux-x86.tar.bz2"; + hash = "sha256-Qel/p5wDLsrmD+Nd/+6+s4b6rjcPFDbRw18VHsMH47M="; }; x86_64-darwin = fetchurl { - url = "https://github.com/OldUnreal/UnrealTournamentPatches/releases/download/v${version}/OldUnreal-UTPatch${version}-macOS-Sonoma.dmg"; - hash = "sha256-TbhJbOH4E5WOb6XR9dmqLkXziK3/CzhNjd1ypBkkmvw="; + url = "https://github.com/OldUnreal/UnrealTournamentPatches/releases/download/v${version}/OldUnreal-UTPatch${builtins.elemAt (lib.strings.splitString "-" version) 0}-macOS-.dmg"; + hash = "sha256-Vtp/b+00La0U/jh+UC0SkPnHi0G5+7h7wjsy7FxWdNY="; }; # fat binary aarch64-darwin = x86_64-darwin; From f46e1a4b9e8bf6b1b0cdc1ef09d543802cebdca2 Mon Sep 17 00:00:00 2001 From: DSeeLP <46624152+DSeeLP@users.noreply.github.com> Date: Mon, 23 Jun 2025 10:17:57 +0200 Subject: [PATCH 28/96] finamp: 0.9.16-beta -> 0.9.18-beta --- pkgs/by-name/fi/finamp/package.nix | 9 +- pkgs/by-name/fi/finamp/pubspec.lock.json | 181 ++++++++++++----------- 2 files changed, 101 insertions(+), 89 deletions(-) diff --git a/pkgs/by-name/fi/finamp/package.nix b/pkgs/by-name/fi/finamp/package.nix index 88faddb00d3a..56a43997013e 100644 --- a/pkgs/by-name/fi/finamp/package.nix +++ b/pkgs/by-name/fi/finamp/package.nix @@ -1,7 +1,7 @@ { lib, stdenv, - flutter329, + flutter332, mpv-unwrapped, patchelf, fetchFromGitHub, @@ -9,16 +9,16 @@ makeDesktopItem, }: let - version = "0.9.16-beta"; + version = "0.9.18-beta"; in -flutter329.buildFlutterApplication { +flutter332.buildFlutterApplication { inherit version; pname = "finamp"; src = fetchFromGitHub { owner = "jmshrv"; repo = "finamp"; rev = version; - hash = "sha256-AmxQyDV0AiS2qzAsrgBm0SqH0CaLi3W1A3gcsk65dj0="; + hash = "sha256-ea3+L6M2iaT1Rfy7tH1+3VpnjV+T8S86ZWc9l7pwW/4="; }; pubspecLock = lib.importJSON ./pubspec.lock.json; @@ -31,6 +31,7 @@ flutter329.buildFlutterApplication { gitHashes = { balanced_text = "sha256-lSDR5dDjZ4garRbBPI+wSxC5iScg8wVSD5kymmLbYbk="; isar_generator = "sha256-EthUFM+YI3bnM0U0sECoNOCRXpo4qjP71VXYBuO/u+I="; + isar_flutter_libs = "sha256-Z5IdfiaZ7348XwYSQb81z0YZEoIHWmsSZr6mYqqz4Oo="; media_kit_libs_windows_audio = "sha256-p3hRq79whLFJLNUgL9atXyTGvOIqCbTRKVk1ie0Euqs="; palette_generator = "sha256-mnRJf3asu1mm9HYU8U0di+qRk3SpNFwN3S5QxChpIA0="; split_view = "sha256-unTJQDXUUPVDudlk0ReOPNYrsyEpbd/UMg1tHZsmg+k="; diff --git a/pkgs/by-name/fi/finamp/pubspec.lock.json b/pkgs/by-name/fi/finamp/pubspec.lock.json index c27f4bd1ca58..251c6a266800 100644 --- a/pkgs/by-name/fi/finamp/pubspec.lock.json +++ b/pkgs/by-name/fi/finamp/pubspec.lock.json @@ -34,21 +34,21 @@ "dependency": "direct main", "description": { "name": "app_set_id", - "sha256": "362d61e013f400666c6e0f57d56ab9d32505e011e4ca4dfb779fd80c9d9505b0", + "sha256": "bdc50b3da4b3db791e7a24bfca46f7f791dda318c096a3b62481ea2110a24847", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.2.1" + "version": "1.3.0" }, "archive": { "dependency": "transitive", "description": { "name": "archive", - "sha256": "7dcbd0f87fe5f61cb28da39a1a8b70dbc106e2fe0516f7836eb7bb2948481a12", + "sha256": "2fde1607386ab523f7a36bb3e7edb43bd58e6edaf2ffb29d8a6d578b297fdbbd", "url": "https://pub.dev" }, "source": "hosted", - "version": "4.0.5" + "version": "4.0.7" }, "args": { "dependency": "transitive", @@ -64,21 +64,21 @@ "dependency": "transitive", "description": { "name": "async", - "sha256": "d2872f9c19731c2e5f10444b14686eb7cc85c76274bd6c16e1816bff9a3bab63", + "sha256": "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.12.0" + "version": "2.13.0" }, "audio_service": { "dependency": "direct main", "description": { "name": "audio_service", - "sha256": "887ddf15fce31fd12aa8044c3bffd14c58929fb20e31d96284fe3aaf48315ac6", + "sha256": "cb122c7c2639d2a992421ef96b67948ad88c5221da3365ccef1031393a76e044", "url": "https://pub.dev" }, "source": "hosted", - "version": "0.18.17" + "version": "0.18.18" }, "audio_service_mpris": { "dependency": "direct main", @@ -385,11 +385,11 @@ "dependency": "direct main", "description": { "name": "connectivity_plus", - "sha256": "04bf81bb0b77de31557b58d052b24b3eee33f09a6e7a8c68a3e247c7df19ec27", + "sha256": "051849e2bd7c7b3bc5844ea0d096609ddc3a859890ec3a9ac4a65a2620cc1f99", "url": "https://pub.dev" }, "source": "hosted", - "version": "6.1.3" + "version": "6.1.4" }, "connectivity_plus_platform_interface": { "dependency": "transitive", @@ -485,11 +485,11 @@ "dependency": "transitive", "description": { "name": "dart_style", - "sha256": "27eb0ae77836989a3bc541ce55595e8ceee0992807f14511552a898ddd0d88ac", + "sha256": "5b236382b47ee411741447c1f1e111459c941ea1b3f2b540dde54c210a3662af", "url": "https://pub.dev" }, "source": "hosted", - "version": "3.0.1" + "version": "3.1.0" }, "dartx": { "dependency": "transitive", @@ -515,11 +515,11 @@ "dependency": "direct main", "description": { "name": "device_info_plus", - "sha256": "306b78788d1bb569edb7c55d622953c2414ca12445b41c9117963e03afc5c513", + "sha256": "0c6396126421b590089447154c5f98a5de423b70cfb15b1578fd018843ee6f53", "url": "https://pub.dev" }, "source": "hosted", - "version": "11.3.3" + "version": "11.4.0" }, "device_info_plus_platform_interface": { "dependency": "transitive", @@ -555,11 +555,11 @@ "dependency": "transitive", "description": { "name": "fake_async", - "sha256": "6a95e56b2449df2273fd8c45a662d6947ce1ebb7aafe80e550a3f68297f3cacc", + "sha256": "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.3.2" + "version": "1.3.3" }, "ffi": { "dependency": "transitive", @@ -585,11 +585,11 @@ "dependency": "direct main", "description": { "name": "file_picker", - "sha256": "09b474c0c8117484b80cbebc043801ff91e05cfbd2874d512825c899e1754694", + "sha256": "77f8e81d22d2a07d0dee2c62e1dda71dc1da73bf43bb2d45af09727406167964", "url": "https://pub.dev" }, "source": "hosted", - "version": "9.2.3" + "version": "10.1.9" }, "file_sizes": { "dependency": "direct main", @@ -621,11 +621,11 @@ "dependency": "direct main", "description": { "name": "flutter_blurhash", - "sha256": "5e67678e479ac639069d7af1e133f4a4702311491188ff3e0227486430db0c06", + "sha256": "e97b9aff13b9930bbaa74d0d899fec76e3f320aba3190322dcc5d32104e3d25d", "url": "https://pub.dev" }, "source": "hosted", - "version": "0.8.2" + "version": "0.9.1" }, "flutter_cache_manager": { "dependency": "direct main", @@ -687,11 +687,11 @@ "dependency": "transitive", "description": { "name": "flutter_plugin_android_lifecycle", - "sha256": "5a1e6fb2c0561958d7e4c33574674bda7b77caaca7a33b758876956f2902eea3", + "sha256": "f948e346c12f8d5480d2825e03de228d0eb8c3a737e4cdaa122267b89c022b5e", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.0.27" + "version": "2.0.28" }, "flutter_riverpod": { "dependency": "direct main", @@ -727,21 +727,21 @@ "dependency": "direct main", "description": { "name": "flutter_sticky_header", - "sha256": "7f76d24d119424ca0c95c146b8627a457e8de8169b0d584f766c2c545db8f8be", + "sha256": "fb4fda6164ef3e5fc7ab73aba34aad253c17b7c6ecf738fa26f1a905b7d2d1e2", "url": "https://pub.dev" }, "source": "hosted", - "version": "0.7.0" + "version": "0.8.0" }, "flutter_svg": { "dependency": "direct main", "description": { "name": "flutter_svg", - "sha256": "c200fd79c918a40c5cd50ea0877fa13f81bdaf6f0a5d3dbcc2a13e3285d6aa1b", + "sha256": "d44bf546b13025ec7353091516f6881f1d4c633993cb109c3916c3a0159dadf1", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.0.17" + "version": "2.1.0" }, "flutter_tabler_icons": { "dependency": "direct main", @@ -809,11 +809,11 @@ "dependency": "direct main", "description": { "name": "gaimon", - "sha256": "4194b979dc84b2c5135dba261a0a1f810e4dff25a87bcb53cca53fb585438307", + "sha256": "fca9d9bef76604a4d3ad5d212a349406c68f78ed01172f40bebcbd5b4f55087a", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.4.0" + "version": "1.4.1" }, "get_it": { "dependency": "direct main", @@ -859,31 +859,31 @@ "dependency": "direct main", "description": { "name": "hive_ce", - "sha256": "ac66daee46ad46486a1ed12cf91e9d7479c875fb46889be8d2c96b557406647f", + "sha256": "192b7334299e3672efa1f85d544fef0091c5c592be5caada61417e37723addc6", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.10.1" + "version": "2.11.2" }, "hive_ce_flutter": { "dependency": "direct main", "description": { "name": "hive_ce_flutter", - "sha256": "74c1d5f10d803446b4e7913bb272137e2724ba8a56465444f9e7713aeb60a877", + "sha256": "a0989670652eab097b47544f1e5a4456e861b1b01b050098ea0b80a5fabe9909", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.2.0" + "version": "2.3.1" }, "hive_ce_generator": { "dependency": "direct dev", "description": { "name": "hive_ce_generator", - "sha256": "0b1c750e2d10c55a14cde16d479ada42704be6cef43c54b728ed0e4e02f7d808", + "sha256": "84940c2fd3cb1d1eb318892cdb666bc0b8023f365f28aefe09b9e5a7222bc740", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.8.2" + "version": "1.9.1" }, "hotreloader": { "dependency": "transitive", @@ -899,11 +899,11 @@ "dependency": "transitive", "description": { "name": "http", - "sha256": "fe7ab022b76f3034adc518fb6ea04a82387620e19977665ea18d30a1cf43442f", + "sha256": "2c11f3f94c687ee9bad77c171151672986360b2b001d109814ee7140b2cf261b", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.3.0" + "version": "1.4.0" }, "http_multi_server": { "dependency": "transitive", @@ -959,11 +959,11 @@ "dependency": "direct main", "description": { "name": "intl", - "sha256": "d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf", + "sha256": "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5", "url": "https://pub.dev" }, "source": "hosted", - "version": "0.19.0" + "version": "0.20.2" }, "io": { "dependency": "transitive", @@ -988,11 +988,12 @@ "isar_flutter_libs": { "dependency": "direct main", "description": { - "name": "isar_flutter_libs", - "sha256": "bc6768cc4b9c61aabff77152e7f33b4b17d2fc93134f7af1c3dd51500fe8d5e8", - "url": "https://pub.dev" + "path": ".", + "ref": "HEAD", + "resolved-ref": "59103190aa2ac03041d61ad6d127b540be079ec8", + "url": "https://github.com/MrLittleWhite/isar_flutter_libs.git" }, - "source": "hosted", + "source": "git", "version": "3.1.0+1" }, "isar_generator": { @@ -1006,6 +1007,16 @@ "source": "git", "version": "3.1.8" }, + "isolate_channel": { + "dependency": "transitive", + "description": { + "name": "isolate_channel", + "sha256": "bafedfbcc1e9796ada179b5dac7043b33eb85d35204b089ca37d480d9c0068df", + "url": "https://pub.dev" + }, + "source": "hosted", + "version": "0.2.2" + }, "js": { "dependency": "transitive", "description": { @@ -1030,11 +1041,11 @@ "dependency": "direct dev", "description": { "name": "json_serializable", - "sha256": "81f04dee10969f89f604e1249382d46b97a1ccad53872875369622b5bfc9e58a", + "sha256": "c50ef5fc083d5b5e12eef489503ba3bf5ccc899e487d691584699b4bdefeea8c", "url": "https://pub.dev" }, "source": "hosted", - "version": "6.9.4" + "version": "6.9.5" }, "just_audio": { "dependency": "direct main", @@ -1050,11 +1061,11 @@ "dependency": "direct main", "description": { "name": "just_audio_media_kit", - "sha256": "9f3517213dfc7bbaf6980656feb66c35600f114c7efc0b5b3f4476cd5c18b45e", + "sha256": "f3cf04c3a50339709e87e90b4e841eef4364ab4be2bdbac0c54cc48679f84d23", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.0.6" + "version": "2.1.0" }, "just_audio_platform_interface": { "dependency": "transitive", @@ -1070,21 +1081,21 @@ "dependency": "transitive", "description": { "name": "just_audio_web", - "sha256": "8c7e779892e180cbc9ffb5a3c52f6e90e1cbbf4a63694cc450972a7edbd2bb6d", + "sha256": "6ba8a2a7e87d57d32f0f7b42856ade3d6a9fbe0f1a11fabae0a4f00bb73f0663", "url": "https://pub.dev" }, "source": "hosted", - "version": "0.4.15" + "version": "0.4.16" }, "leak_tracker": { "dependency": "transitive", "description": { "name": "leak_tracker", - "sha256": "c35baad643ba394b40aac41080300150a4f08fd0fd6a10378f8f7c6bc161acec", + "sha256": "6bb818ecbdffe216e81182c2f0714a2e62b593f4a4f13098713ff1685dfb6ab0", "url": "https://pub.dev" }, "source": "hosted", - "version": "10.0.8" + "version": "10.0.9" }, "leak_tracker_flutter_testing": { "dependency": "transitive", @@ -1221,11 +1232,11 @@ "dependency": "direct dev", "description": { "name": "msix", - "sha256": "c50d6bd1aafe0d071a3c1e5a5ccb056404502935cb0a549e3178c4aae16caf33", + "sha256": "edde648a8133bf301883c869d19d127049683037c65ff64173ba526ac7a8af2f", "url": "https://pub.dev" }, "source": "hosted", - "version": "3.16.8" + "version": "3.16.9" }, "nested": { "dependency": "transitive", @@ -1332,11 +1343,11 @@ "dependency": "transitive", "description": { "name": "path_provider_android", - "sha256": "0ca7359dad67fd7063cb2892ab0c0737b2daafd807cf1acecd62374c8fae6c12", + "sha256": "d0d310befe2c8ab9e7f393288ccbb11b60c019c6b5afc21973eeee4dda2b35e9", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.2.16" + "version": "2.2.17" }, "path_provider_foundation": { "dependency": "transitive", @@ -1382,31 +1393,31 @@ "dependency": "direct main", "description": { "name": "permission_handler", - "sha256": "59adad729136f01ea9e35a48f5d1395e25cba6cea552249ddbe9cf950f5d7849", + "sha256": "2d070d8684b68efb580a5997eb62f675e8a885ef0be6e754fb9ef489c177470f", "url": "https://pub.dev" }, "source": "hosted", - "version": "11.4.0" + "version": "12.0.0+1" }, "permission_handler_android": { "dependency": "transitive", "description": { "name": "permission_handler_android", - "sha256": "d3971dcdd76182a0c198c096b5db2f0884b0d4196723d21a866fc4cdea057ebc", + "sha256": "1e3bc410ca1bf84662104b100eb126e066cb55791b7451307f9708d4007350e6", "url": "https://pub.dev" }, "source": "hosted", - "version": "12.1.0" + "version": "13.0.1" }, "permission_handler_apple": { "dependency": "transitive", "description": { "name": "permission_handler_apple", - "sha256": "f84a188e79a35c687c132a0a0556c254747a08561e99ab933f12f6ca71ef3c98", + "sha256": "f000131e755c54cf4d84a5d8bd6e4149e262cc31c5a8b1d698de1ac85fa41023", "url": "https://pub.dev" }, "source": "hosted", - "version": "9.4.6" + "version": "9.4.7" }, "permission_handler_html": { "dependency": "transitive", @@ -1482,11 +1493,11 @@ "dependency": "transitive", "description": { "name": "posix", - "sha256": "a0117dc2167805aa9125b82eee515cc891819bac2f538c83646d355b16f58b9a", + "sha256": "f0d7856b6ca1887cfa6d1d394056a296ae33489db914e365e2044fdada449e62", "url": "https://pub.dev" }, "source": "hosted", - "version": "6.0.1" + "version": "6.0.2" }, "progress_border": { "dependency": "direct main", @@ -1502,11 +1513,11 @@ "dependency": "direct main", "description": { "name": "provider", - "sha256": "489024f942069c2920c844ee18bb3d467c69e48955a4f32d1677f71be103e310", + "sha256": "4abbd070a04e9ddc287673bf5a030c7ca8b685ff70218720abab8b092f53dd84", "url": "https://pub.dev" }, "source": "hosted", - "version": "6.1.4" + "version": "6.1.5" }, "pub_semver": { "dependency": "transitive", @@ -1532,11 +1543,11 @@ "dependency": "transitive", "description": { "name": "qs_dart", - "sha256": "c775dbe663cd59365050220b3499dee259b72ad6b352a3e087a15bd77e161b74", + "sha256": "041c8ae470775b149ca3f7678adf9fb0752d1ab2c44c76aeb681f57379d30f62", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.3.3+1" + "version": "1.3.5+1" }, "recursive_regex": { "dependency": "transitive", @@ -2019,11 +2030,11 @@ "dependency": "transitive", "description": { "name": "url_launcher_android", - "sha256": "1d0eae19bd7606ef60fe69ef3b312a437a16549476c42321d5dc1506c9ca3bf4", + "sha256": "8582d7f6fe14d2652b4c45c9b6c14c0b678c2af2d083a11b604caeba51930d79", "url": "https://pub.dev" }, "source": "hosted", - "version": "6.3.15" + "version": "6.3.16" }, "url_launcher_ios": { "dependency": "transitive", @@ -2069,11 +2080,11 @@ "dependency": "transitive", "description": { "name": "url_launcher_web", - "sha256": "3ba963161bd0fe395917ba881d320b9c4f6dd3c4a233da62ab18a5025c85f1e9", + "sha256": "4bd2b7b4dc4d4d0b94e5babfffbca8eac1a126c7f3d6ecbc1a11013faa3abba2", "url": "https://pub.dev" }, "source": "hosted", - "version": "2.4.0" + "version": "2.4.1" }, "url_launcher_windows": { "dependency": "transitive", @@ -2099,11 +2110,11 @@ "dependency": "transitive", "description": { "name": "value_layout_builder", - "sha256": "c02511ea91ca5c643b514a33a38fa52536f74aa939ec367d02938b5ede6807fa", + "sha256": "ab4b7d98bac8cefeb9713154d43ee0477490183f5aa23bb4ffa5103d9bbf6275", "url": "https://pub.dev" }, "source": "hosted", - "version": "0.4.0" + "version": "0.5.0" }, "vector_graphics": { "dependency": "transitive", @@ -2159,31 +2170,31 @@ "dependency": "transitive", "description": { "name": "vm_service", - "sha256": "0968250880a6c5fe7edc067ed0a13d4bae1577fe2771dcf3010d52c4a9d3ca14", + "sha256": "ddfa8d30d89985b96407efce8acbdd124701f96741f2d981ca860662f1c0dc02", "url": "https://pub.dev" }, "source": "hosted", - "version": "14.3.1" + "version": "15.0.0" }, "wakelock_plus": { "dependency": "direct main", "description": { "name": "wakelock_plus", - "sha256": "b90fbcc8d7bdf3b883ea9706d9d76b9978cb1dfa4351fcc8014d6ec31a493354", + "sha256": "a474e314c3e8fb5adef1f9ae2d247e57467ad557fa7483a2b895bc1b421c5678", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.2.11" + "version": "1.3.2" }, "wakelock_plus_platform_interface": { "dependency": "transitive", "description": { "name": "wakelock_plus_platform_interface", - "sha256": "70e780bc99796e1db82fe764b1e7dcb89a86f1e5b3afb1db354de50f2e41eb7a", + "sha256": "e10444072e50dbc4999d7316fd303f7ea53d31c824aa5eb05d7ccbdd98985207", "url": "https://pub.dev" }, "source": "hosted", - "version": "1.2.2" + "version": "1.2.3" }, "watcher": { "dependency": "transitive", @@ -2219,31 +2230,31 @@ "dependency": "transitive", "description": { "name": "web_socket", - "sha256": "3c12d96c0c9a4eec095246debcea7b86c0324f22df69893d538fcc6f1b8cce83", + "sha256": "34d64019aa8e36bf9842ac014bb5d2f5586ca73df5e4d9bf5c936975cae6982c", "url": "https://pub.dev" }, "source": "hosted", - "version": "0.1.6" + "version": "1.0.1" }, "web_socket_channel": { "dependency": "direct main", "description": { "name": "web_socket_channel", - "sha256": "0b8e2457400d8a859b7b2030786835a28a8e80836ef64402abef392ff4f1d0e5", + "sha256": "d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8", "url": "https://pub.dev" }, "source": "hosted", - "version": "3.0.2" + "version": "3.0.3" }, "win32": { "dependency": "transitive", "description": { "name": "win32", - "sha256": "dc6ecaa00a7c708e5b4d10ee7bec8c270e9276dfcab1783f57e9962d7884305f", + "sha256": "329edf97fdd893e0f1e3b9e88d6a0e627128cc17cc316a8d67fda8f1451178ba", "url": "https://pub.dev" }, "source": "hosted", - "version": "5.12.0" + "version": "5.13.0" }, "win32_registry": { "dependency": "transitive", @@ -2318,6 +2329,6 @@ }, "sdks": { "dart": ">=3.7.0 <4.0.0", - "flutter": ">=3.27.0" + "flutter": ">=3.32.0" } } From b99939dc9e917c530d1a737139f414ced70d4926 Mon Sep 17 00:00:00 2001 From: octvs Date: Tue, 24 Jun 2025 23:05:53 +0200 Subject: [PATCH 29/96] epy: add dependency removed from python stdlib Fix epy build failure by adding dependency directly that was removed from python standard library [1]. [1]: https://peps.python.org/pep-0594/#imghdr --- pkgs/by-name/ep/epy/package.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/by-name/ep/epy/package.nix b/pkgs/by-name/ep/epy/package.nix index 3b54ee697aca..efff04b3aec7 100644 --- a/pkgs/by-name/ep/epy/package.nix +++ b/pkgs/by-name/ep/epy/package.nix @@ -15,6 +15,8 @@ python3Packages.buildPythonApplication rec { hash = "sha256-gel503e8DXjrMJK9lpAZ6GxQsrahKX+SjiyRwKbiJUY="; }; + dependencies = [ python3Packages.standard-imghdr ]; + nativeBuildInputs = [ python3Packages.poetry-core ]; pythonImportsCheck = [ From 106aed9f99ed55d5b495b1d6dd458b25e3a24d35 Mon Sep 17 00:00:00 2001 From: ZHANG Yuntian Date: Wed, 4 Jun 2025 15:22:45 +0800 Subject: [PATCH 30/96] maintainers: add RadxaYuntian --- maintainers/maintainer-list.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 25f340886351..8033875d8c6f 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -20780,6 +20780,13 @@ github = "DaRacci"; githubId = 90304606; }; + RadxaYuntian = { + # This is the work account for @MakiseKurisu + name = "ZHANG Yuntian"; + email = "yt@radxa.com"; + github = "RadxaYuntian"; + githubId = 95260730; + }; raehik = { email = "thefirstmuffinman@gmail.com"; github = "raehik"; From b84f8e6e039ba2b3f017e26eb42320c3b8618cd5 Mon Sep 17 00:00:00 2001 From: ZHANG Yuntian Date: Wed, 4 Jun 2025 15:07:47 +0800 Subject: [PATCH 31/96] ch9344: 0-unstable-2024-11-15 -> 2.3 Also transfer maintainership to @RadxaYuntian. --- pkgs/os-specific/linux/ch9344/default.nix | 9 +++++---- .../linux/ch9344/fix-linux-6-15-build.patch | 16 ++++++++++++++++ 2 files changed, 21 insertions(+), 4 deletions(-) create mode 100644 pkgs/os-specific/linux/ch9344/fix-linux-6-15-build.patch diff --git a/pkgs/os-specific/linux/ch9344/default.nix b/pkgs/os-specific/linux/ch9344/default.nix index e3d8e747a03c..2f290467ace7 100644 --- a/pkgs/os-specific/linux/ch9344/default.nix +++ b/pkgs/os-specific/linux/ch9344/default.nix @@ -7,17 +7,18 @@ stdenv.mkDerivation rec { pname = "ch9344"; - version = "0-unstable-2024-11-15"; + version = "2.3"; src = fetchFromGitHub { owner = "WCHSoftGroup"; repo = "ch9344ser_linux"; - rev = "4ea8973886989d67acdd01dba213e355eacc9088"; - hash = "sha256-ZZ/8s26o7wRwHy6c0m1vZ/DtRW5od+NgiU6aXZBVfc4="; + rev = "e0a38c4f4f9d4c1f5e2e3a352b7b1010b33aa322"; + hash = "sha256-ldYoGmG9DAjASl3xL8djeZ8jRHlcBQdAt0KYAr53epI="; }; patches = [ ./fix-linux-6-12-build.patch + ./fix-linux-6-15-build.patch ]; sourceRoot = "${src.name}/driver"; @@ -47,6 +48,6 @@ stdenv.mkDerivation rec { ''; license = licenses.gpl2Only; platforms = platforms.linux; - maintainers = with maintainers; [ MakiseKurisu ]; + maintainers = with maintainers; [ RadxaYuntian ]; }; } diff --git a/pkgs/os-specific/linux/ch9344/fix-linux-6-15-build.patch b/pkgs/os-specific/linux/ch9344/fix-linux-6-15-build.patch new file mode 100644 index 000000000000..9ba5e1271413 --- /dev/null +++ b/pkgs/os-specific/linux/ch9344/fix-linux-6-15-build.patch @@ -0,0 +1,16 @@ +diff --git a/ch9344.c b/ch9344.c +index 36402c0..cb3efc2 100644 +--- a/ch9344.c ++++ b/ch9344.c +@@ -1251,7 +1251,11 @@ static void ch9344_port_shutdown(struct tty_port *port) + struct ch9344 *ch9344 = tty_get_portdata(ttyport); + int portnum = ttyport->portnum; + ++#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 15, 0)) ++ timer_delete(&ttyport->timer); ++#else + del_timer(&ttyport->timer); ++#endif + ch9344_set_control(ch9344, portnum, 0x00); + ch9344_set_control(ch9344, portnum, 0x10); + ttyport->isopen = false; From 3724ebc9d5d357313a23944c08a8e156f272589d Mon Sep 17 00:00:00 2001 From: Hugo Herter Date: Wed, 25 Jun 2025 09:42:14 +0200 Subject: [PATCH 32/96] python3Packages.cut-cross-entropy: 25.3.1 -> 25.5.1 --- pkgs/development/python-modules/cut-cross-entropy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/cut-cross-entropy/default.nix b/pkgs/development/python-modules/cut-cross-entropy/default.nix index f62b88267c7d..dd9b90b42a64 100644 --- a/pkgs/development/python-modules/cut-cross-entropy/default.nix +++ b/pkgs/development/python-modules/cut-cross-entropy/default.nix @@ -24,7 +24,7 @@ buildPythonPackage { pname = "cut-cross-entropy"; - version = "25.3.1"; + version = "25.5.1"; pyproject = true; # The `ml-cross-entropy` Pypi comes from a third-party. @@ -32,7 +32,7 @@ buildPythonPackage { src = fetchFromGitHub { owner = "apple"; repo = "ml-cross-entropy"; - rev = "24fbe4b5dab9a6c250a014573613c1890190536c"; # no tags + rev = "b616b222976b235647790a16d0388338b9e18941"; # no tags hash = "sha256-BVPon+T7chkpozX/IZU3KZMw1zRzlYVvF/22JWKjT2Y="; }; From 90e2028bcddda9d80f552a720f69d6794f5c1062 Mon Sep 17 00:00:00 2001 From: Hugo Herter Date: Wed, 25 Jun 2025 09:35:25 +0200 Subject: [PATCH 33/96] python3Packages.unsloth-zoo: 2025.5.11 -> 2025.6.4 --- pkgs/development/python-modules/unsloth-zoo/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/unsloth-zoo/default.nix b/pkgs/development/python-modules/unsloth-zoo/default.nix index 16dc99b9c96a..03f4a6e9d577 100644 --- a/pkgs/development/python-modules/unsloth-zoo/default.nix +++ b/pkgs/development/python-modules/unsloth-zoo/default.nix @@ -27,14 +27,14 @@ buildPythonPackage rec { pname = "unsloth-zoo"; - version = "2025.5.11"; + version = "2025.6.4"; pyproject = true; # no tags on GitHub src = fetchPypi { pname = "unsloth_zoo"; inherit version; - hash = "sha256-QRKcFkNlr7pICEy3il+za6hDYjvsSxHIBM6VaB1c5mk="; + hash = "sha256-3KLsFYhnTPqaeydFJDHr+qNkTVi2NL3ADjzkd0NBOQQ="; }; # pyproject.toml requires an obsolete version of protobuf, @@ -43,6 +43,7 @@ buildPythonPackage rec { pythonRelaxDeps = [ "protobuf" "transformers" + "torch" ]; patches = [ From f6820ee4c3806d74c54c765b83df6ae2284e3690 Mon Sep 17 00:00:00 2001 From: Hugo Herter Date: Wed, 25 Jun 2025 09:36:13 +0200 Subject: [PATCH 34/96] python3Packages.unsloth: 2025.5.9 -> 2025.6.5 Changelog: https://github.com/unslothai/unsloth/releases/tag/2025.6.5 --- pkgs/development/python-modules/unsloth/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/unsloth/default.nix b/pkgs/development/python-modules/unsloth/default.nix index 5c88054db0ba..1e9124ad1a62 100644 --- a/pkgs/development/python-modules/unsloth/default.nix +++ b/pkgs/development/python-modules/unsloth/default.nix @@ -31,14 +31,14 @@ buildPythonPackage rec { pname = "unsloth"; - version = "2025.5.9"; + version = "2025.6.5"; pyproject = true; # Tags on the GitHub repo don't match src = fetchPypi { pname = "unsloth"; inherit version; - hash = "sha256-ud4+6BmyNvtvJz56dhS9SIXxTDw740rSfxxoi5itw4U="; + hash = "sha256-o4c4gANnjM+z4Dp/0BZ48SMLMbCyIgjF3C5Q/AXV49A="; }; build-system = [ @@ -74,6 +74,7 @@ buildPythonPackage rec { pythonRelaxDeps = [ "protobuf" "transformers" + "torch" ]; # The source repository contains no test From 012200a35727ce375d1edeb28f15f59da4ec2efb Mon Sep 17 00:00:00 2001 From: t4ccer Date: Wed, 25 Jun 2025 14:07:42 +0200 Subject: [PATCH 35/96] measureme: add update script --- pkgs/by-name/me/measureme/package.nix | 2 ++ pkgs/by-name/me/measureme/update.sh | 31 +++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100755 pkgs/by-name/me/measureme/update.sh diff --git a/pkgs/by-name/me/measureme/package.nix b/pkgs/by-name/me/measureme/package.nix index 4a0e426d3f6f..4826bbc0384a 100644 --- a/pkgs/by-name/me/measureme/package.nix +++ b/pkgs/by-name/me/measureme/package.nix @@ -21,6 +21,8 @@ rustPlatform.buildRustPackage rec { ln -s ${./Cargo.lock} Cargo.lock ''; + passthru.updateScript = ./update.sh; + meta = with lib; { description = "Support crate for rustc's self-profiling feature"; homepage = "https://github.com/rust-lang/measureme"; diff --git a/pkgs/by-name/me/measureme/update.sh b/pkgs/by-name/me/measureme/update.sh new file mode 100755 index 000000000000..f8fa112f66d5 --- /dev/null +++ b/pkgs/by-name/me/measureme/update.sh @@ -0,0 +1,31 @@ +#!/usr/bin/env nix-shell +#! nix-shell -i bash -p nix jq gnused curl nix-prefetch-git cargo + +set -eu -o pipefail + +package_dir="$(dirname "${BASH_SOURCE[0]}")" + +echo "Fetching latest version" +version=$(curl -sfL ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"} https://api.github.com/repos/rust-lang/measureme/releases/latest | jq -r '.tag_name') + +echo "Latest version is $version" +if [[ "$UPDATE_NIX_OLD_VERSION" == "$version" ]]; then + echo "Already up to date!" + exit 0 +fi + +echo "Fetching source hash" +hash="$(nix-prefetch-git https://github.com/rust-lang/measureme.git --quiet --rev "refs/tags/$version" | jq -r '.hash')" + +tmp=$(mktemp -d) +trap "rm -rf $tmp" EXIT + +git clone --depth 1 --branch "$version" https://github.com/rust-lang/measureme.git "$tmp" +pushd "$tmp" +echo "Generating Cargo.lock" +cargo update +cp "Cargo.lock" "$package_dir/Cargo.lock" +popd + +sed -i "s#hash = \".*\";#hash = \"$hash\";#g" "$package_dir/package.nix" +sed -i "s#version = \".*\";#version = \"$version\";#g" "$package_dir/package.nix" From 27414c1b1e0c4599a9ddbc4fa3529a5b6bd49251 Mon Sep 17 00:00:00 2001 From: t4ccer Date: Wed, 25 Jun 2025 12:09:17 +0000 Subject: [PATCH 36/96] measureme: 12.0.0 -> 12.0.1 --- pkgs/by-name/me/measureme/Cargo.lock | 289 +++++++++++++++----------- pkgs/by-name/me/measureme/package.nix | 4 +- 2 files changed, 168 insertions(+), 125 deletions(-) diff --git a/pkgs/by-name/me/measureme/Cargo.lock b/pkgs/by-name/me/measureme/Cargo.lock index 4a0bc5493ceb..995b7303acd2 100644 --- a/pkgs/by-name/me/measureme/Cargo.lock +++ b/pkgs/by-name/me/measureme/Cargo.lock @@ -1,21 +1,21 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "adler2" -version = "2.0.0" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" [[package]] name = "ahash" -version = "0.8.11" +version = "0.8.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" +checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" dependencies = [ "cfg-if", - "getrandom", + "getrandom 0.3.3", "once_cell", "version_check", "zerocopy", @@ -23,13 +23,13 @@ dependencies = [ [[package]] name = "analyzeme" -version = "12.0.0" +version = "12.0.1" dependencies = [ "decodeme 10.1.3", - "decodeme 12.0.0", + "decodeme 12.0.1", "flate2", "measureme 10.1.3", - "measureme 12.0.0", + "measureme 12.0.1", "memchr", "rustc-hash", "serde", @@ -37,9 +37,9 @@ dependencies = [ [[package]] name = "anstream" -version = "0.6.15" +version = "0.6.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" +checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933" dependencies = [ "anstyle", "anstyle-parse", @@ -52,35 +52,36 @@ dependencies = [ [[package]] name = "anstyle" -version = "1.0.8" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" +checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd" [[package]] name = "anstyle-parse" -version = "0.2.5" +version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" +checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" -version = "1.1.1" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" +checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9" dependencies = [ "windows-sys", ] [[package]] name = "anstyle-wincon" -version = "3.0.4" +version = "3.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" +checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882" dependencies = [ "anstyle", + "once_cell_polyfill", "windows-sys", ] @@ -92,33 +93,33 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] name = "autocfg" -version = "1.3.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" [[package]] name = "bitflags" -version = "2.6.0" +version = "2.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" +checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" [[package]] name = "bytemuck" -version = "1.17.1" +version = "1.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "773d90827bc3feecfb67fab12e24de0749aad83c74b9504ecde46237b5cd24e2" +checksum = "5c76a5792e44e4abe34d3abf15636779261d45a7450612059293d1d2cfc63422" [[package]] name = "cfg-if" -version = "1.0.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" +checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" [[package]] name = "clap" -version = "4.5.16" +version = "4.5.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019" +checksum = "40b6887a1d8685cebccf115538db5c0efe625ccac9696ad45c409d96566e910f" dependencies = [ "clap_builder", "clap_derive", @@ -126,9 +127,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.15" +version = "4.5.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6" +checksum = "e0c66c08ce9f0c698cbce5c0279d0bb6ac936d8674174fe48f736533b964f59e" dependencies = [ "anstream", "anstyle", @@ -138,9 +139,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.13" +version = "4.5.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0" +checksum = "d2c7947ae4cc3d851207c1adb5b5e260ff0cca11446b1d6d1423788e442257ce" dependencies = [ "heck", "proc-macro2", @@ -150,15 +151,15 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.7.2" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" +checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" [[package]] name = "colorchoice" -version = "1.0.2" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" +checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" [[package]] name = "crc32fast" @@ -171,11 +172,11 @@ dependencies = [ [[package]] name = "crox" -version = "12.0.0" +version = "12.0.1" dependencies = [ "analyzeme", "clap", - "measureme 12.0.0", + "measureme 12.0.1", "rustc-hash", "serde", "serde_json", @@ -183,9 +184,9 @@ dependencies = [ [[package]] name = "csv" -version = "1.3.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe" +checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf" dependencies = [ "csv-core", "itoa", @@ -195,9 +196,9 @@ dependencies = [ [[package]] name = "csv-core" -version = "0.1.11" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" +checksum = "7d02f3b0da4c6504f86e9cd789d8dbafab48c2321be74e9987593de5a894d93d" dependencies = [ "memchr", ] @@ -217,9 +218,9 @@ dependencies = [ [[package]] name = "decodeme" -version = "12.0.0" +version = "12.0.1" dependencies = [ - "measureme 12.0.0", + "measureme 12.0.1", "memchr", "rustc-hash", "serde", @@ -255,19 +256,19 @@ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" [[package]] name = "flamegraph" -version = "12.0.0" +version = "12.0.1" dependencies = [ "analyzeme", "clap", "inferno", - "measureme 12.0.0", + "measureme 12.0.1", ] [[package]] name = "flate2" -version = "1.0.33" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "324a1be68054ef05ad64b861cc9eaf1d623d2d8cb25b4bf2cb9cdd902b4bf253" +checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" dependencies = [ "crc32fast", "miniz_oxide", @@ -275,13 +276,25 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.15" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" +checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" dependencies = [ "cfg-if", "libc", - "wasi", + "wasi 0.11.1+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" +dependencies = [ + "cfg-if", + "libc", + "r-efi", + "wasi 0.14.2+wasi-0.2.4", ] [[package]] @@ -292,9 +305,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "hermit-abi" -version = "0.4.0" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" +checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" [[package]] name = "inferno" @@ -315,9 +328,9 @@ dependencies = [ [[package]] name = "is-terminal" -version = "0.4.13" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" +checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9" dependencies = [ "hermit-abi", "libc", @@ -332,9 +345,9 @@ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" [[package]] name = "itoa" -version = "1.0.11" +version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" +checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" [[package]] name = "lazy_static" @@ -344,9 +357,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" -version = "0.2.158" +version = "0.2.174" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" +checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" [[package]] name = "libredox" @@ -360,9 +373,9 @@ dependencies = [ [[package]] name = "lock_api" -version = "0.4.12" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" +checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" dependencies = [ "autocfg", "scopeguard", @@ -370,9 +383,9 @@ dependencies = [ [[package]] name = "log" -version = "0.4.22" +version = "0.4.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" +checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" [[package]] name = "measureme" @@ -390,7 +403,7 @@ dependencies = [ [[package]] name = "measureme" -version = "12.0.0" +version = "12.0.1" dependencies = [ "log", "memmap2", @@ -402,9 +415,9 @@ dependencies = [ [[package]] name = "memchr" -version = "2.7.4" +version = "2.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" +checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" [[package]] name = "memmap2" @@ -417,29 +430,29 @@ dependencies = [ [[package]] name = "miniz_oxide" -version = "0.8.0" +version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" dependencies = [ "adler2", ] [[package]] name = "mmedit" -version = "12.0.0" +version = "12.0.1" dependencies = [ "clap", - "decodeme 12.0.0", - "measureme 12.0.0", + "decodeme 12.0.1", + "measureme 12.0.1", ] [[package]] name = "mmview" -version = "12.0.0" +version = "12.0.1" dependencies = [ "analyzeme", "clap", - "measureme 12.0.0", + "measureme 12.0.1", ] [[package]] @@ -454,15 +467,21 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.19.0" +version = "1.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" +checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" + +[[package]] +name = "once_cell_polyfill" +version = "1.70.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" [[package]] name = "parking_lot" -version = "0.12.3" +version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" +checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" dependencies = [ "lock_api", "parking_lot_core", @@ -470,9 +489,9 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.10" +version = "0.9.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" +checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" dependencies = [ "cfg-if", "libc", @@ -506,9 +525,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.86" +version = "1.0.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" +checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" dependencies = [ "unicode-ident", ] @@ -524,18 +543,24 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.37" +version = "1.0.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" +checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" dependencies = [ "proc-macro2", ] [[package]] -name = "redox_syscall" -version = "0.5.3" +name = "r-efi" +version = "5.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + +[[package]] +name = "redox_syscall" +version = "0.5.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6" dependencies = [ "bitflags", ] @@ -546,7 +571,7 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ - "getrandom", + "getrandom 0.2.16", "libredox", "thiserror", ] @@ -568,15 +593,15 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustversion" -version = "1.0.17" +version = "1.0.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" +checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" [[package]] name = "ryu" -version = "1.0.18" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" +checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" [[package]] name = "scopeguard" @@ -586,18 +611,18 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "serde" -version = "1.0.209" +version = "1.0.219" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09" +checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.209" +version = "1.0.219" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170" +checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" dependencies = [ "proc-macro2", "quote", @@ -606,9 +631,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.127" +version = "1.0.140" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8043c06d9f82bd7271361ed64f415fe5e12a77fdb52e573e7f06a516dea329ad" +checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" dependencies = [ "itoa", "memchr", @@ -618,17 +643,17 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.13.2" +version = "1.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" [[package]] name = "stack_collapse" -version = "12.0.0" +version = "12.0.1" dependencies = [ "analyzeme", "clap", - "measureme 12.0.0", + "measureme 12.0.1", ] [[package]] @@ -645,11 +670,11 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "summarize" -version = "12.0.0" +version = "12.0.1" dependencies = [ "analyzeme", "clap", - "measureme 12.0.0", + "measureme 12.0.1", "prettytable-rs", "rustc-hash", "serde", @@ -658,9 +683,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.77" +version = "2.0.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f35bcdf61fd8e7be6caf75f429fdca8beb3ed76584befb503b1569faee373ed" +checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40" dependencies = [ "proc-macro2", "quote", @@ -680,18 +705,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.63" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.63" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", @@ -700,15 +725,15 @@ dependencies = [ [[package]] name = "unicode-ident" -version = "1.0.12" +version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" +checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" [[package]] name = "unicode-width" -version = "0.1.13" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d" +checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" [[package]] name = "utf8parse" @@ -724,9 +749,18 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "wasi" -version = "0.11.0+wasi-snapshot-preview1" +version = "0.11.1+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasi" +version = "0.14.2+wasi-0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" +dependencies = [ + "wit-bindgen-rt", +] [[package]] name = "winapi" @@ -752,9 +786,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windows-sys" -version = "0.52.0" +version = "0.59.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" dependencies = [ "windows-targets", ] @@ -824,19 +858,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] -name = "zerocopy" -version = "0.7.35" +name = "wit-bindgen-rt" +version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" +checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" +dependencies = [ + "bitflags", +] + +[[package]] +name = "zerocopy" +version = "0.8.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f" dependencies = [ "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.7.35" +version = "0.8.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" +checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181" dependencies = [ "proc-macro2", "quote", diff --git a/pkgs/by-name/me/measureme/package.nix b/pkgs/by-name/me/measureme/package.nix index 4826bbc0384a..b88cf6466894 100644 --- a/pkgs/by-name/me/measureme/package.nix +++ b/pkgs/by-name/me/measureme/package.nix @@ -6,13 +6,13 @@ rustPlatform.buildRustPackage rec { pname = "measureme"; - version = "12.0.0"; + version = "12.0.1"; src = fetchFromGitHub { owner = "rust-lang"; repo = "measureme"; rev = version; - hash = "sha256-Zgl8iyBDVwqZnbfqC06DMuo0S/hV6pl812hkiovmS+I="; + hash = "sha256-G6GCXMyjwx1yYuCwSRj8j76zLKShtPFfQmTQnnqpMlk="; }; cargoLock.lockFile = ./Cargo.lock; From af71a18798a340ffbf30e70e0f1f2015625f33e8 Mon Sep 17 00:00:00 2001 From: kilianar Date: Wed, 25 Jun 2025 14:53:28 +0200 Subject: [PATCH 37/96] portfolio: 0.77.2 -> 0.77.3 https://github.com/portfolio-performance/portfolio/releases/tag/0.77.3 --- pkgs/by-name/po/portfolio/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/po/portfolio/package.nix b/pkgs/by-name/po/portfolio/package.nix index c0e75e8c047b..c91789bb1266 100644 --- a/pkgs/by-name/po/portfolio/package.nix +++ b/pkgs/by-name/po/portfolio/package.nix @@ -34,11 +34,11 @@ let in stdenvNoCC.mkDerivation (finalAttrs: { pname = "PortfolioPerformance"; - version = "0.77.2"; + version = "0.77.3"; src = fetchurl { url = "https://github.com/buchen/portfolio/releases/download/${finalAttrs.version}/PortfolioPerformance-${finalAttrs.version}-linux.gtk.x86_64.tar.gz"; - hash = "sha256-3BnCD92gdTgnxCI1haqw4wmFjmtraagSWz/SOzSTlbA="; + hash = "sha256-e+1W2jT2YUM+udegvvupUv8RR+nHZSK/NMjMeu01uR8="; }; nativeBuildInputs = [ From 8789d7a1d0f601612d7845a9f739f8009dff234c Mon Sep 17 00:00:00 2001 From: 06kellyjac Date: Wed, 25 Jun 2025 12:55:25 +0100 Subject: [PATCH 38/96] starboard: 0.15.25 -> 0.15.26 Diff: https://github.com/aquasecurity/starboard/compare/v0.15.25...v0.15.26 Changelog: https://github.com/aquasecurity/starboard/releases/tag/v0.15.26 --- pkgs/by-name/st/starboard/package.nix | 36 +++++++++++++++------------ 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/pkgs/by-name/st/starboard/package.nix b/pkgs/by-name/st/starboard/package.nix index 2b513ae3f1b3..c1040b0308c1 100644 --- a/pkgs/by-name/st/starboard/package.nix +++ b/pkgs/by-name/st/starboard/package.nix @@ -1,19 +1,23 @@ { lib, + stdenv, buildGoModule, fetchFromGitHub, installShellFiles, + versionCheckHook, }: -buildGoModule rec { +buildGoModule (finalAttrs: { pname = "starboard"; - version = "0.15.25"; + version = "0.15.26"; + + __darwinAllowLocalNetworking = true; # for tests src = fetchFromGitHub { owner = "aquasecurity"; repo = "starboard"; - rev = "v${version}"; - hash = "sha256-mCYnJ1SFa3OuYQlPWTq9vWV9s/jtaQ6dOousV/UNR18="; + rev = "v${finalAttrs.version}"; + hash = "sha256-yQ4ABzN8EvD5qs0yjTaihM145K79LglprC2nlqAw0XU="; # populate values that require us to use git. By doing this in postFetch we # can delete .git afterwards and maintain better reproducibility of the src. leaveDotGit = true; @@ -25,7 +29,7 @@ buildGoModule rec { find "$out" -name .git -print0 | xargs -0 rm -rf ''; }; - vendorHash = "sha256-qujObGBxUFGxtrdlJmTOTW6HUbDCjNSElPqhQfYqId4="; + vendorHash = "sha256-6SqghCM2dwNyosZo0wfMMHlgrgY+Ts+7lIN7+qSp0GI="; nativeBuildInputs = [ installShellFiles ]; @@ -34,18 +38,22 @@ buildGoModule rec { ldflags = [ "-s" "-w" - "-X main.version=v${version}" + "-X main.version=v${finalAttrs.version}" ]; # ldflags based on metadata from git and source preBuild = '' - ldflags+=" -X main.gitCommit=$(cat COMMIT)" - ldflags+=" -X main.buildDate=$(cat SOURCE_DATE_EPOCH)" + ldflags+=" -X main.commit=$(cat COMMIT)" + ldflags+=" -X main.date=$(cat SOURCE_DATE_EPOCH)" ''; preCheck = '' # Remove test that requires networking rm pkg/plugin/aqua/client/client_integration_test.go + ${lib.optionalString (stdenv.isDarwin && stdenv.isx86_64) '' + # Remove "[It] should make a request to fetch registries" test that fails on x86_64-darwin + rm pkg/plugin/aqua/client/client_test.go + ''} # Feed in all but the integration tests for testing # This is because subPackages above limits what is built to just what we @@ -62,17 +70,13 @@ buildGoModule rec { --zsh <($out/bin/starboard completion zsh) ''; + nativeInstallCheckInputs = [ versionCheckHook ]; doInstallCheck = true; - installCheckPhase = '' - runHook preInstallCheck - $out/bin/starboard --help - $out/bin/starboard version | grep "v${version}" - runHook postInstallCheck - ''; + versionCheckProgramArg = "version"; meta = { homepage = "https://github.com/aquasecurity/starboard"; - changelog = "https://github.com/aquasecurity/starboard/releases/tag/v${version}"; + changelog = "https://github.com/aquasecurity/starboard/releases/tag/v${finalAttrs.version}"; description = "Kubernetes-native security tool kit"; mainProgram = "starboard"; longDescription = '' @@ -87,4 +91,4 @@ buildGoModule rec { license = lib.licenses.asl20; maintainers = with lib.maintainers; [ jk ]; }; -} +}) From 27cfd94b5081651d462de53b2d4cc7b570fe9e1f Mon Sep 17 00:00:00 2001 From: Linus Karl Date: Wed, 25 Jun 2025 17:56:48 +0200 Subject: [PATCH 39/96] indilib, indi-3rdparty: 2.1.3 -> 2.1.4 Added a patch to fix build of indi-shelyak Changelogs: https://github.com/indilib/indi/releases/tag/v2.1.4 https://github.com/indilib/indi-3rdparty/releases/tag/v2.1.4 --- .../libraries/science/astronomy/indilib/default.nix | 8 ++++---- .../science/astronomy/indilib/indi-3rdparty.nix | 11 ++++++++++- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/science/astronomy/indilib/default.nix b/pkgs/development/libraries/science/astronomy/indilib/default.nix index 8a4ca2f65cde..915b751cbfaa 100644 --- a/pkgs/development/libraries/science/astronomy/indilib/default.nix +++ b/pkgs/development/libraries/science/astronomy/indilib/default.nix @@ -21,13 +21,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "indilib"; - version = "2.1.3"; + version = "2.1.4"; src = fetchFromGitHub { owner = "indilib"; repo = "indi"; rev = "v${finalAttrs.version}"; - hash = "sha256-Y2JmlboNU7e2Whvv6snd8Qgotr+AAkUkAd9qCORZoI0="; + hash = "sha256-ceDuWnIeHTpXyQRXDEQxCDM1pdfz5rEDMyJIcCu6OaM="; }; nativeBuildInputs = [ @@ -67,8 +67,8 @@ stdenv.mkDerivation (finalAttrs: { postFixup = lib.optionalString stdenv.hostPlatform.isLinux '' for f in $out/lib/udev/rules.d/*.rules do - substituteInPlace $f --replace "/bin/sh" "${bash}/bin/sh" \ - --replace "/sbin/modprobe" "${kmod}/sbin/modprobe" + substituteInPlace $f --replace-quiet "/bin/sh" "${bash}/bin/sh" \ + --replace-quiet "/sbin/modprobe" "${kmod}/sbin/modprobe" done ''; diff --git a/pkgs/development/libraries/science/astronomy/indilib/indi-3rdparty.nix b/pkgs/development/libraries/science/astronomy/indilib/indi-3rdparty.nix index eb1673875ddb..b4de4d4ce9e8 100644 --- a/pkgs/development/libraries/science/astronomy/indilib/indi-3rdparty.nix +++ b/pkgs/development/libraries/science/astronomy/indilib/indi-3rdparty.nix @@ -9,6 +9,7 @@ coreutils, cfitsio, fetchFromGitHub, + fetchpatch, gtest, libusb1, libusb-compat-0_1, @@ -45,7 +46,7 @@ let owner = "indilib"; repo = "indi-3rdparty"; rev = "v${indilib.version}"; - hash = "sha256-REmeIP0Cl5FfwUnL40u0dqZaJugBlLGT/Bts5j1bvgw="; + hash = "sha256-zd88QHYhqxAQlzozXZMKXCFWKYqvGsPHhNxmkdexOOE="; }; buildIndi3rdParty = @@ -967,6 +968,14 @@ in indi-shelyak = buildIndi3rdParty { pname = "indi-shelyak"; buildInputs = [ indilib ]; + + patches = [ + (fetchpatch { + url = "https://github.com/indilib/indi-3rdparty/commit/db8106a9a03e0cfb700e02841d46f8b97b5513e0.patch"; + hash = "sha256-JJatmu/dxFEni6CdR6QUn7+EiPe18EwE7OmrCT8Nk2c="; + stripLen = 1; + }) + ]; }; indi-starbook = buildIndi3rdParty { From 1e88c6cdd0c960600b1d46d60508d8058ae1c1aa Mon Sep 17 00:00:00 2001 From: Moraxyc Date: Wed, 25 Jun 2025 23:54:48 +0800 Subject: [PATCH 40/96] gigalixir: modernize --- pkgs/by-name/gi/gigalixir/package.nix | 36 ++++++++++++++------------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/pkgs/by-name/gi/gigalixir/package.nix b/pkgs/by-name/gi/gigalixir/package.nix index cd3106eeeb02..5364e4e9ed28 100644 --- a/pkgs/by-name/gi/gigalixir/package.nix +++ b/pkgs/by-name/gi/gigalixir/package.nix @@ -1,15 +1,15 @@ { stdenv, lib, - python3, + python3Packages, fetchPypi, git, }: -python3.pkgs.buildPythonApplication rec { +python3Packages.buildPythonApplication rec { pname = "gigalixir"; version = "1.13.1"; - format = "setuptools"; + pyproject = true; src = fetchPypi { inherit pname version; @@ -18,11 +18,15 @@ python3.pkgs.buildPythonApplication rec { postPatch = '' substituteInPlace setup.py \ - --replace "'pytest-runner'," "" \ - --replace "cryptography==" "cryptography>=" + --replace-fail "'pytest-runner'," "" \ + --replace-fail "cryptography==" "cryptography>=" ''; - propagatedBuildInputs = with python3.pkgs; [ + build-system = with python3Packages; [ + setuptools + ]; + + dependencies = with python3Packages; [ click pygments pyopenssl @@ -32,15 +36,13 @@ python3.pkgs.buildPythonApplication rec { stripe ]; - nativeCheckInputs = - [ - git - ] - ++ (with python3.pkgs; [ - httpretty - pytestCheckHook - sure - ]); + nativeCheckInputs = with python3Packages; [ + git + + httpretty + pytestCheckHook + sure + ]; disabledTests = [ # Test requires network access @@ -57,11 +59,11 @@ python3.pkgs.buildPythonApplication rec { "gigalixir" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Gigalixir Command-Line Interface"; homepage = "https://github.com/gigalixir/gigalixir-cli"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "gigalixir"; }; From c61c419273845843cbac98d72b1f777c23e35b47 Mon Sep 17 00:00:00 2001 From: Moraxyc Date: Thu, 26 Jun 2025 00:09:05 +0800 Subject: [PATCH 41/96] gigalixir: 1.13.1 -> 1.14.0; switch to fetching from github --- pkgs/by-name/gi/gigalixir/package.nix | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/gi/gigalixir/package.nix b/pkgs/by-name/gi/gigalixir/package.nix index 5364e4e9ed28..be34cf0be714 100644 --- a/pkgs/by-name/gi/gigalixir/package.nix +++ b/pkgs/by-name/gi/gigalixir/package.nix @@ -2,24 +2,25 @@ stdenv, lib, python3Packages, - fetchPypi, + fetchFromGitHub, git, }: python3Packages.buildPythonApplication rec { pname = "gigalixir"; - version = "1.13.1"; + version = "1.14.0"; pyproject = true; - src = fetchPypi { - inherit pname version; - hash = "sha256-hYIuSLK2HeeXPL28qKvkKwPVpOwObNGrVWbDq6B0/IA="; + src = fetchFromGitHub { + owner = "gigalixir"; + repo = "gigalixir-cli"; + tag = "v${version}"; + hash = "sha256-D7HbNQ0heQ0aXAA+z0JIwqWlerChPvzXrIGtXz+UiwQ="; }; postPatch = '' substituteInPlace setup.py \ - --replace-fail "'pytest-runner'," "" \ - --replace-fail "cryptography==" "cryptography>=" + --replace-fail "'pytest-runner'," "" ''; build-system = with python3Packages; [ @@ -27,6 +28,7 @@ python3Packages.buildPythonApplication rec { ]; dependencies = with python3Packages; [ + importlib-metadata click pygments pyopenssl @@ -47,6 +49,8 @@ python3Packages.buildPythonApplication rec { disabledTests = [ # Test requires network access "test_rollback_without_version" + "test_rollback" + "test_create_user" # These following test's are now depraced and removed, check out these commits: # https://github.com/gigalixir/gigalixir-cli/commit/00b758ed462ad8eff6ff0b16cd37fa71f75b2d7d # https://github.com/gigalixir/gigalixir-cli/commit/76fa25f96e71fd75cc22e5439b4a8f9e9ec4e3e5 @@ -60,7 +64,6 @@ python3Packages.buildPythonApplication rec { ]; meta = { - broken = stdenv.hostPlatform.isDarwin; description = "Gigalixir Command-Line Interface"; homepage = "https://github.com/gigalixir/gigalixir-cli"; license = lib.licenses.mit; From 5e8e97db51b6eaba125a8299b696cf056485cb45 Mon Sep 17 00:00:00 2001 From: Tom van Dijk <18gatenmaker6@gmail.com> Date: Wed, 25 Jun 2025 19:09:35 +0200 Subject: [PATCH 42/96] slint-viewer: 1.12.0 -> 1.12.1 --- pkgs/by-name/sl/slint-viewer/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sl/slint-viewer/package.nix b/pkgs/by-name/sl/slint-viewer/package.nix index 888ebb584a15..a810b5cc0b79 100644 --- a/pkgs/by-name/sl/slint-viewer/package.nix +++ b/pkgs/by-name/sl/slint-viewer/package.nix @@ -9,15 +9,15 @@ }: rustPlatform.buildRustPackage (finalAttrs: { pname = "slint-viewer"; - version = "1.12.0"; + version = "1.12.1"; src = fetchCrate { inherit (finalAttrs) pname version; - hash = "sha256-RFOKraBiAqhVH/3nSVEqhR4Gfxr4qJet+yYUrf4/ZzA="; + hash = "sha256-xto9oj4ObRxXT29Qi+6HMnVvu0qK+RkTgTm7xlHOk3w="; }; useFetchCargoVendor = true; - cargoHash = "sha256-gyE7CozFDUEwv87bSQJYyb07nQOHNAyHg7nFgBdhRx4="; + cargoHash = "sha256-xcWVkZu4AMTnp6E3JqquDVJ+/gKr7T2Csq5KDHN64nA="; buildInputs = [ qt6.qtbase From 6f12747ade6404bcf18c2c4800ccc57f9e83efd7 Mon Sep 17 00:00:00 2001 From: Moraxyc Date: Thu, 26 Jun 2025 01:14:46 +0800 Subject: [PATCH 43/96] python313Packages.aria2p: build with tui by default --- pkgs/development/python-modules/aria2p/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/aria2p/default.nix b/pkgs/development/python-modules/aria2p/default.nix index eae13c92e2a4..a09da7152d4b 100644 --- a/pkgs/development/python-modules/aria2p/default.nix +++ b/pkgs/development/python-modules/aria2p/default.nix @@ -19,6 +19,8 @@ pytestCheckHook, responses, uvicorn, + + withTui ? true, }: buildPythonPackage rec { @@ -43,7 +45,7 @@ buildPythonPackage rec { setuptools # for pkg_resources toml websocket-client - ]; + ] ++ lib.optionals withTui optional-dependencies.tui; optional-dependencies = { tui = [ From 44e363ac53e79f0ab78b82cb54c81e8848f5f44d Mon Sep 17 00:00:00 2001 From: Moraxyc Date: Thu, 26 Jun 2025 01:27:08 +0800 Subject: [PATCH 44/96] python313Packages.aria2p: mark broken on darwin --- pkgs/development/python-modules/aria2p/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/aria2p/default.nix b/pkgs/development/python-modules/aria2p/default.nix index a09da7152d4b..373f3f1d1fb6 100644 --- a/pkgs/development/python-modules/aria2p/default.nix +++ b/pkgs/development/python-modules/aria2p/default.nix @@ -1,5 +1,6 @@ { lib, + stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder, @@ -88,5 +89,8 @@ buildPythonPackage rec { mainProgram = "aria2p"; license = licenses.isc; maintainers = with maintainers; [ koral ]; + badPlatforms = [ + lib.systems.inspect.patterns.isDarwin + ]; }; } From bf049492518aa9d0772097d20e6e9b9d964afeaa Mon Sep 17 00:00:00 2001 From: Moraxyc Date: Thu, 26 Jun 2025 01:45:38 +0800 Subject: [PATCH 45/96] python313Packages.aria2p: modernize --- pkgs/development/python-modules/aria2p/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/aria2p/default.nix b/pkgs/development/python-modules/aria2p/default.nix index 373f3f1d1fb6..fe5977108255 100644 --- a/pkgs/development/python-modules/aria2p/default.nix +++ b/pkgs/development/python-modules/aria2p/default.nix @@ -27,7 +27,8 @@ buildPythonPackage rec { pname = "aria2p"; version = "0.12.1"; - format = "pyproject"; + pyproject = true; + disabled = pythonOlder "3.6"; src = fetchFromGitHub { @@ -82,13 +83,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "aria2p" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pawamoy/aria2p"; changelog = "https://github.com/pawamoy/aria2p/blob/${src.tag}/CHANGELOG.md"; description = "Command-line tool and library to interact with an aria2c daemon process with JSON-RPC"; mainProgram = "aria2p"; - license = licenses.isc; - maintainers = with maintainers; [ koral ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ koral ]; badPlatforms = [ lib.systems.inspect.patterns.isDarwin ]; From 84764c0ffbaa3a7128cee0132062158226ee5f00 Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Wed, 25 Jun 2025 12:21:08 -0400 Subject: [PATCH 46/96] mrtrix: 3.0.4-unstable-2025-04-09 -> 3.0.6 --- pkgs/by-name/mr/mrtrix/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/mr/mrtrix/package.nix b/pkgs/by-name/mr/mrtrix/package.nix index 0f75daf9c657..5d0c7674d8e0 100644 --- a/pkgs/by-name/mr/mrtrix/package.nix +++ b/pkgs/by-name/mr/mrtrix/package.nix @@ -20,15 +20,15 @@ withGui ? true, }: -stdenv.mkDerivation { +stdenv.mkDerivation (finalAttrs: { pname = "mrtrix"; - version = "3.0.4-unstable-2025-04-09"; + version = "3.0.6"; src = fetchFromGitHub { owner = "MRtrix3"; repo = "mrtrix3"; - rev = "7843bfc53a75f465901804ccf3fd6797d77531dd"; - hash = "sha256-C4Io3VkX10eWia4djrYvN12fWmwm0j1G60I8lmFH49w="; + rev = finalAttrs.version; + hash = "sha256-5GcQVZaRV7A6aA/ES6qR0dNBrToJiUXt/LyLYmnpvlQ="; fetchSubmodules = true; }; @@ -134,4 +134,4 @@ stdenv.mkDerivation { platforms = platforms.linux; license = licenses.mpl20; }; -} +}) From 5b5b83757f2f9a3463c04a833042ceba2d3d88e5 Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Wed, 25 Jun 2025 14:59:24 -0400 Subject: [PATCH 47/96] nvchecker: 2.17 -> 2.18 Diff: https://github.com/lilydjwg/nvchecker/compare/refs/tags/v2.17...refs/tags/v2.18 Changelog: https://github.com/lilydjwg/nvchecker/releases/tag/v2.18 --- pkgs/development/python-modules/nvchecker/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/nvchecker/default.nix b/pkgs/development/python-modules/nvchecker/default.nix index 449873b36d06..16473d9a02fc 100644 --- a/pkgs/development/python-modules/nvchecker/default.nix +++ b/pkgs/development/python-modules/nvchecker/default.nix @@ -22,7 +22,7 @@ buildPythonPackage rec { pname = "nvchecker"; - version = "2.17"; + version = "2.18"; pyproject = true; disabled = pythonOlder "3.8"; @@ -31,7 +31,7 @@ buildPythonPackage rec { owner = "lilydjwg"; repo = "nvchecker"; tag = "v${version}"; - hash = "sha256-jA41WoD0WXdb8CM9dUchIAhYd4GoUA9zLYbkaPIScLg="; + hash = "sha256-6uFox07mZeKwyhRXGuU8dMoPhLB5CkgdLaWCfG2dy4k="; }; build-system = [ setuptools ]; From 34ae1e56c1305b84309ea6b750db7af6af62862c Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Wed, 25 Jun 2025 15:01:39 -0400 Subject: [PATCH 48/96] nvchecker: adopt, set passthru.updateScript --- pkgs/development/python-modules/nvchecker/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/nvchecker/default.nix b/pkgs/development/python-modules/nvchecker/default.nix index 16473d9a02fc..7356b900ff19 100644 --- a/pkgs/development/python-modules/nvchecker/default.nix +++ b/pkgs/development/python-modules/nvchecker/default.nix @@ -4,6 +4,7 @@ buildPythonPackage, docutils, fetchFromGitHub, + nix-update-script, flaky, installShellFiles, pycurl, @@ -77,11 +78,13 @@ buildPythonPackage rec { htmlparser = [ lxml ]; }; + passthru.updateScript = nix-update-script { }; + meta = { description = "New version checker for software"; homepage = "https://github.com/lilydjwg/nvchecker"; changelog = "https://github.com/lilydjwg/nvchecker/releases/tag/v${version}"; license = lib.licenses.mit; - maintainers = [ ]; + maintainers = [ lib.maintainers.mdaniels5757 ]; }; } From 16414322b9b5278053cb2ffbb00756593e4e62ad Mon Sep 17 00:00:00 2001 From: Alex Wied <2-alex@users.noreply.amorystreet.org> Date: Wed, 25 Jun 2025 16:02:44 -0400 Subject: [PATCH 49/96] cxx-rs: 1.0.131 -> 1.0.158 --- pkgs/by-name/cx/cxx-rs/Cargo.lock | 578 ------------------ pkgs/by-name/cx/cxx-rs/add-Cargo.lock.patch | 640 ++++++++++++++++++++ pkgs/by-name/cx/cxx-rs/package.nix | 14 +- 3 files changed, 646 insertions(+), 586 deletions(-) delete mode 100644 pkgs/by-name/cx/cxx-rs/Cargo.lock create mode 100644 pkgs/by-name/cx/cxx-rs/add-Cargo.lock.patch diff --git a/pkgs/by-name/cx/cxx-rs/Cargo.lock b/pkgs/by-name/cx/cxx-rs/Cargo.lock deleted file mode 100644 index fa933dc0c273..000000000000 --- a/pkgs/by-name/cx/cxx-rs/Cargo.lock +++ /dev/null @@ -1,578 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 3 - -[[package]] -name = "adler2" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" - -[[package]] -name = "anstyle" -version = "1.0.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" - -[[package]] -name = "cc" -version = "1.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f34d93e62b03caf570cccc334cbc6c2fceca82f39211051345108adcba3eebdc" -dependencies = [ - "jobserver", - "libc", - "shlex", -] - -[[package]] -name = "cfg-if" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" - -[[package]] -name = "clang-ast" -version = "0.1.27" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c01fb720699b43fbf9db04dbb8d2b5d037f38938e6b8153863db7532b24a86c" -dependencies = [ - "foldhash", - "serde", -] - -[[package]] -name = "clap" -version = "4.5.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb3b4b9e5a7c7514dfa52869339ee98b3156b0bfb4e8a77c4ff4babb64b1604f" -dependencies = [ - "clap_builder", -] - -[[package]] -name = "clap_builder" -version = "4.5.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b17a95aa67cc7b5ebd32aa5370189aa0d79069ef1c64ce893bd30fb24bff20ec" -dependencies = [ - "anstyle", - "clap_lex", - "strsim", -] - -[[package]] -name = "clap_lex" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "afb84c814227b90d6895e01398aee0d8033c00e7466aca416fb6a8e0eb19d8a7" - -[[package]] -name = "codespan-reporting" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" -dependencies = [ - "termcolor", - "unicode-width", -] - -[[package]] -name = "crc32fast" -version = "1.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" -dependencies = [ - "cfg-if", -] - -[[package]] -name = "cxx" -version = "1.0.131" -dependencies = [ - "cc", - "cxx-build", - "cxx-gen", - "cxx-test-suite", - "cxxbridge-flags", - "cxxbridge-macro", - "foldhash", - "link-cplusplus", - "rustversion", - "trybuild", -] - -[[package]] -name = "cxx-build" -version = "1.0.131" -dependencies = [ - "cc", - "codespan-reporting", - "cxx", - "cxx-gen", - "pkg-config", - "proc-macro2", - "quote", - "scratch", - "syn", -] - -[[package]] -name = "cxx-gen" -version = "0.7.131" -dependencies = [ - "codespan-reporting", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "cxx-test-suite" -version = "0.0.0" -dependencies = [ - "cxx", - "cxx-build", - "cxxbridge-flags", -] - -[[package]] -name = "cxxbridge-cmd" -version = "1.0.131" -dependencies = [ - "clap", - "codespan-reporting", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "cxxbridge-flags" -version = "1.0.131" - -[[package]] -name = "cxxbridge-macro" -version = "1.0.131" -dependencies = [ - "clang-ast", - "cxx", - "flate2", - "memmap", - "proc-macro2", - "quote", - "rustversion", - "serde", - "serde_derive", - "serde_json", - "syn", -] - -[[package]] -name = "demo" -version = "0.0.0" -dependencies = [ - "cxx", - "cxx-build", -] - -[[package]] -name = "dissimilar" -version = "1.0.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59f8e79d1fbf76bdfbde321e902714bf6c49df88a7dda6fc682fc2979226962d" - -[[package]] -name = "equivalent" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" - -[[package]] -name = "flate2" -version = "1.0.35" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c" -dependencies = [ - "crc32fast", - "miniz_oxide", -] - -[[package]] -name = "foldhash" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f81ec6369c545a7d40e4589b5597581fa1c441fe1cce96dd1de43159910a36a2" - -[[package]] -name = "glob" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" - -[[package]] -name = "hashbrown" -version = "0.15.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" - -[[package]] -name = "indexmap" -version = "2.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da" -dependencies = [ - "equivalent", - "hashbrown", -] - -[[package]] -name = "itoa" -version = "1.0.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" - -[[package]] -name = "jobserver" -version = "0.1.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" -dependencies = [ - "libc", -] - -[[package]] -name = "libc" -version = "0.2.166" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2ccc108bbc0b1331bd061864e7cd823c0cab660bbe6970e66e2c0614decde36" - -[[package]] -name = "link-cplusplus" -version = "1.0.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d240c6f7e1ba3a28b0249f774e6a9dd0175054b52dfbb61b16eb8505c3785c9" -dependencies = [ - "cc", -] - -[[package]] -name = "memchr" -version = "2.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" - -[[package]] -name = "memmap" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b" -dependencies = [ - "libc", - "winapi", -] - -[[package]] -name = "miniz_oxide" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" -dependencies = [ - "adler2", -] - -[[package]] -name = "pkg-config" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" - -[[package]] -name = "proc-macro2" -version = "1.0.92" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" -dependencies = [ - "unicode-ident", -] - -[[package]] -name = "quote" -version = "1.0.37" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" -dependencies = [ - "proc-macro2", -] - -[[package]] -name = "rustversion" -version = "1.0.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248" - -[[package]] -name = "ryu" -version = "1.0.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" - -[[package]] -name = "scratch" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3cf7c11c38cb994f3d40e8a8cde3bbd1f72a435e4c49e85d6553d8312306152" - -[[package]] -name = "serde" -version = "1.0.215" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f" -dependencies = [ - "serde_derive", -] - -[[package]] -name = "serde_derive" -version = "1.0.215" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "serde_json" -version = "1.0.133" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377" -dependencies = [ - "itoa", - "memchr", - "ryu", - "serde", -] - -[[package]] -name = "serde_spanned" -version = "0.6.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1" -dependencies = [ - "serde", -] - -[[package]] -name = "shlex" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" - -[[package]] -name = "strsim" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" - -[[package]] -name = "syn" -version = "2.0.89" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44d46482f1c1c87acd84dea20c1bf5ebff4c757009ed6bf19cfd36fb10e92c4e" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", -] - -[[package]] -name = "target-triple" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42a4d50cdb458045afc8131fd91b64904da29548bcb63c7236e0844936c13078" - -[[package]] -name = "termcolor" -version = "1.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" -dependencies = [ - "winapi-util", -] - -[[package]] -name = "toml" -version = "0.8.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e" -dependencies = [ - "serde", - "serde_spanned", - "toml_datetime", - "toml_edit", -] - -[[package]] -name = "toml_datetime" -version = "0.6.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" -dependencies = [ - "serde", -] - -[[package]] -name = "toml_edit" -version = "0.22.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" -dependencies = [ - "indexmap", - "serde", - "serde_spanned", - "toml_datetime", - "winnow", -] - -[[package]] -name = "trybuild" -version = "1.0.101" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8dcd332a5496c026f1e14b7f3d2b7bd98e509660c04239c58b0ba38a12daded4" -dependencies = [ - "dissimilar", - "glob", - "serde", - "serde_derive", - "serde_json", - "target-triple", - "termcolor", - "toml", -] - -[[package]] -name = "unicode-ident" -version = "1.0.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" - -[[package]] -name = "unicode-width" -version = "0.1.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" - -[[package]] -name = "winapi" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" -dependencies = [ - "winapi-i686-pc-windows-gnu", - "winapi-x86_64-pc-windows-gnu", -] - -[[package]] -name = "winapi-i686-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" - -[[package]] -name = "winapi-util" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" -dependencies = [ - "windows-sys", -] - -[[package]] -name = "winapi-x86_64-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" - -[[package]] -name = "windows-sys" -version = "0.59.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" -dependencies = [ - "windows-targets", -] - -[[package]] -name = "windows-targets" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" -dependencies = [ - "windows_aarch64_gnullvm", - "windows_aarch64_msvc", - "windows_i686_gnu", - "windows_i686_gnullvm", - "windows_i686_msvc", - "windows_x86_64_gnu", - "windows_x86_64_gnullvm", - "windows_x86_64_msvc", -] - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" - -[[package]] -name = "windows_i686_gnu" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" - -[[package]] -name = "windows_i686_gnullvm" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" - -[[package]] -name = "windows_i686_msvc" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" - -[[package]] -name = "winnow" -version = "0.6.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" -dependencies = [ - "memchr", -] diff --git a/pkgs/by-name/cx/cxx-rs/add-Cargo.lock.patch b/pkgs/by-name/cx/cxx-rs/add-Cargo.lock.patch new file mode 100644 index 000000000000..4694624397d7 --- /dev/null +++ b/pkgs/by-name/cx/cxx-rs/add-Cargo.lock.patch @@ -0,0 +1,640 @@ +diff --git a/Cargo.lock b/Cargo.lock +new file mode 100644 +index 00000000..58508fbd +--- /dev/null ++++ b/Cargo.lock +@@ -0,0 +1,634 @@ ++# This file is automatically @generated by Cargo. ++# It is not intended for manual editing. ++version = 3 ++ ++[[package]] ++name = "adler2" ++version = "2.0.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" ++ ++[[package]] ++name = "anstyle" ++version = "1.0.11" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd" ++ ++[[package]] ++name = "bitflags" ++version = "2.9.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" ++ ++[[package]] ++name = "cc" ++version = "1.2.27" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc" ++dependencies = [ ++ "jobserver", ++ "libc", ++ "shlex", ++] ++ ++[[package]] ++name = "cfg-if" ++version = "1.0.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" ++ ++[[package]] ++name = "clang-ast" ++version = "0.1.31" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "0f215fa69fa4265fc39aef0b1a1e724e62392da3dcc8c08f892dd323107e9a8d" ++dependencies = [ ++ "foldhash", ++ "serde", ++] ++ ++[[package]] ++name = "clap" ++version = "4.5.40" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "40b6887a1d8685cebccf115538db5c0efe625ccac9696ad45c409d96566e910f" ++dependencies = [ ++ "clap_builder", ++] ++ ++[[package]] ++name = "clap_builder" ++version = "4.5.40" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "e0c66c08ce9f0c698cbce5c0279d0bb6ac936d8674174fe48f736533b964f59e" ++dependencies = [ ++ "anstyle", ++ "clap_lex", ++ "strsim", ++] ++ ++[[package]] ++name = "clap_lex" ++version = "0.7.5" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" ++ ++[[package]] ++name = "codespan-reporting" ++version = "0.12.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81" ++dependencies = [ ++ "serde", ++ "termcolor", ++ "unicode-width", ++] ++ ++[[package]] ++name = "crc32fast" ++version = "1.4.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" ++dependencies = [ ++ "cfg-if", ++] ++ ++[[package]] ++name = "cxx" ++version = "1.0.158" ++dependencies = [ ++ "cc", ++ "cxx-build", ++ "cxx-gen", ++ "cxx-test-suite", ++ "cxxbridge-cmd", ++ "cxxbridge-flags", ++ "cxxbridge-macro", ++ "foldhash", ++ "link-cplusplus", ++ "rustversion", ++ "trybuild", ++] ++ ++[[package]] ++name = "cxx-build" ++version = "1.0.158" ++dependencies = [ ++ "cc", ++ "codespan-reporting", ++ "cxx", ++ "cxx-gen", ++ "indexmap", ++ "pkg-config", ++ "proc-macro2", ++ "quote", ++ "scratch", ++ "syn", ++] ++ ++[[package]] ++name = "cxx-gen" ++version = "0.7.158" ++dependencies = [ ++ "codespan-reporting", ++ "indexmap", ++ "proc-macro2", ++ "quote", ++ "syn", ++] ++ ++[[package]] ++name = "cxx-test-suite" ++version = "0.0.0" ++dependencies = [ ++ "cxx", ++ "cxx-build", ++ "cxxbridge-flags", ++] ++ ++[[package]] ++name = "cxxbridge-cmd" ++version = "1.0.158" ++dependencies = [ ++ "clap", ++ "codespan-reporting", ++ "indexmap", ++ "proc-macro2", ++ "quote", ++ "syn", ++] ++ ++[[package]] ++name = "cxxbridge-flags" ++version = "1.0.158" ++ ++[[package]] ++name = "cxxbridge-macro" ++version = "1.0.158" ++dependencies = [ ++ "clang-ast", ++ "cxx", ++ "flate2", ++ "indexmap", ++ "memmap", ++ "proc-macro2", ++ "quote", ++ "rustversion", ++ "serde", ++ "serde_derive", ++ "serde_json", ++ "syn", ++] ++ ++[[package]] ++name = "demo" ++version = "0.0.0" ++dependencies = [ ++ "cxx", ++ "cxx-build", ++] ++ ++[[package]] ++name = "dissimilar" ++version = "1.0.10" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "8975ffdaa0ef3661bfe02dbdcc06c9f829dfafe6a3c474de366a8d5e44276921" ++ ++[[package]] ++name = "equivalent" ++version = "1.0.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" ++ ++[[package]] ++name = "flate2" ++version = "1.1.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" ++dependencies = [ ++ "crc32fast", ++ "miniz_oxide", ++] ++ ++[[package]] ++name = "foldhash" ++version = "0.1.5" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" ++ ++[[package]] ++name = "getrandom" ++version = "0.3.3" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" ++dependencies = [ ++ "cfg-if", ++ "libc", ++ "r-efi", ++ "wasi", ++] ++ ++[[package]] ++name = "glob" ++version = "0.3.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" ++ ++[[package]] ++name = "hashbrown" ++version = "0.15.4" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5" ++ ++[[package]] ++name = "indexmap" ++version = "2.9.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e" ++dependencies = [ ++ "equivalent", ++ "hashbrown", ++] ++ ++[[package]] ++name = "itoa" ++version = "1.0.15" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" ++ ++[[package]] ++name = "jobserver" ++version = "0.1.33" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a" ++dependencies = [ ++ "getrandom", ++ "libc", ++] ++ ++[[package]] ++name = "libc" ++version = "0.2.174" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" ++ ++[[package]] ++name = "link-cplusplus" ++version = "1.0.10" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "4a6f6da007f968f9def0d65a05b187e2960183de70c160204ecfccf0ee330212" ++dependencies = [ ++ "cc", ++] ++ ++[[package]] ++name = "memchr" ++version = "2.7.5" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" ++ ++[[package]] ++name = "memmap" ++version = "0.7.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b" ++dependencies = [ ++ "libc", ++ "winapi", ++] ++ ++[[package]] ++name = "miniz_oxide" ++version = "0.8.9" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" ++dependencies = [ ++ "adler2", ++] ++ ++[[package]] ++name = "pkg-config" ++version = "0.3.32" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" ++ ++[[package]] ++name = "proc-macro2" ++version = "1.0.95" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" ++dependencies = [ ++ "unicode-ident", ++] ++ ++[[package]] ++name = "quote" ++version = "1.0.40" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" ++dependencies = [ ++ "proc-macro2", ++] ++ ++[[package]] ++name = "r-efi" ++version = "5.3.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" ++ ++[[package]] ++name = "rustversion" ++version = "1.0.21" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" ++ ++[[package]] ++name = "ryu" ++version = "1.0.20" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" ++ ++[[package]] ++name = "scratch" ++version = "1.0.8" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "9f6280af86e5f559536da57a45ebc84948833b3bee313a7dd25232e09c878a52" ++ ++[[package]] ++name = "serde" ++version = "1.0.219" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" ++dependencies = [ ++ "serde_derive", ++] ++ ++[[package]] ++name = "serde_derive" ++version = "1.0.219" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" ++dependencies = [ ++ "proc-macro2", ++ "quote", ++ "syn", ++] ++ ++[[package]] ++name = "serde_json" ++version = "1.0.140" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" ++dependencies = [ ++ "itoa", ++ "memchr", ++ "ryu", ++ "serde", ++] ++ ++[[package]] ++name = "serde_spanned" ++version = "0.6.9" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" ++dependencies = [ ++ "serde", ++] ++ ++[[package]] ++name = "shlex" ++version = "1.3.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" ++ ++[[package]] ++name = "strsim" ++version = "0.11.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" ++ ++[[package]] ++name = "syn" ++version = "2.0.104" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40" ++dependencies = [ ++ "proc-macro2", ++ "quote", ++ "unicode-ident", ++] ++ ++[[package]] ++name = "target-triple" ++version = "0.1.4" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "1ac9aa371f599d22256307c24a9d748c041e548cbf599f35d890f9d365361790" ++ ++[[package]] ++name = "termcolor" ++version = "1.4.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" ++dependencies = [ ++ "winapi-util", ++] ++ ++[[package]] ++name = "toml" ++version = "0.8.23" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" ++dependencies = [ ++ "serde", ++ "serde_spanned", ++ "toml_datetime", ++ "toml_edit", ++] ++ ++[[package]] ++name = "toml_datetime" ++version = "0.6.11" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" ++dependencies = [ ++ "serde", ++] ++ ++[[package]] ++name = "toml_edit" ++version = "0.22.27" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" ++dependencies = [ ++ "indexmap", ++ "serde", ++ "serde_spanned", ++ "toml_datetime", ++ "toml_write", ++ "winnow", ++] ++ ++[[package]] ++name = "toml_write" ++version = "0.1.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" ++ ++[[package]] ++name = "trybuild" ++version = "1.0.105" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "1c9bf9513a2f4aeef5fdac8677d7d349c79fdbcc03b9c86da6e9d254f1e43be2" ++dependencies = [ ++ "dissimilar", ++ "glob", ++ "serde", ++ "serde_derive", ++ "serde_json", ++ "target-triple", ++ "termcolor", ++ "toml", ++] ++ ++[[package]] ++name = "unicode-ident" ++version = "1.0.18" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" ++ ++[[package]] ++name = "unicode-width" ++version = "0.2.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c" ++ ++[[package]] ++name = "wasi" ++version = "0.14.2+wasi-0.2.4" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" ++dependencies = [ ++ "wit-bindgen-rt", ++] ++ ++[[package]] ++name = "winapi" ++version = "0.3.9" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" ++dependencies = [ ++ "winapi-i686-pc-windows-gnu", ++ "winapi-x86_64-pc-windows-gnu", ++] ++ ++[[package]] ++name = "winapi-i686-pc-windows-gnu" ++version = "0.4.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" ++ ++[[package]] ++name = "winapi-util" ++version = "0.1.9" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" ++dependencies = [ ++ "windows-sys", ++] ++ ++[[package]] ++name = "winapi-x86_64-pc-windows-gnu" ++version = "0.4.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" ++ ++[[package]] ++name = "windows-sys" ++version = "0.59.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" ++dependencies = [ ++ "windows-targets", ++] ++ ++[[package]] ++name = "windows-targets" ++version = "0.52.6" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" ++dependencies = [ ++ "windows_aarch64_gnullvm", ++ "windows_aarch64_msvc", ++ "windows_i686_gnu", ++ "windows_i686_gnullvm", ++ "windows_i686_msvc", ++ "windows_x86_64_gnu", ++ "windows_x86_64_gnullvm", ++ "windows_x86_64_msvc", ++] ++ ++[[package]] ++name = "windows_aarch64_gnullvm" ++version = "0.52.6" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" ++ ++[[package]] ++name = "windows_aarch64_msvc" ++version = "0.52.6" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" ++ ++[[package]] ++name = "windows_i686_gnu" ++version = "0.52.6" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" ++ ++[[package]] ++name = "windows_i686_gnullvm" ++version = "0.52.6" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" ++ ++[[package]] ++name = "windows_i686_msvc" ++version = "0.52.6" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" ++ ++[[package]] ++name = "windows_x86_64_gnu" ++version = "0.52.6" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" ++ ++[[package]] ++name = "windows_x86_64_gnullvm" ++version = "0.52.6" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" ++ ++[[package]] ++name = "windows_x86_64_msvc" ++version = "0.52.6" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" ++ ++[[package]] ++name = "winnow" ++version = "0.7.11" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd" ++dependencies = [ ++ "memchr", ++] ++ ++[[package]] ++name = "wit-bindgen-rt" ++version = "0.39.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" ++dependencies = [ ++ "bitflags", ++] diff --git a/pkgs/by-name/cx/cxx-rs/package.nix b/pkgs/by-name/cx/cxx-rs/package.nix index 88d0bf8d6637..ea9ed45049fa 100644 --- a/pkgs/by-name/cx/cxx-rs/package.nix +++ b/pkgs/by-name/cx/cxx-rs/package.nix @@ -8,22 +8,20 @@ rustPlatform.buildRustPackage rec { pname = "cxx-rs"; - version = "1.0.131"; + version = "1.0.158"; src = fetchFromGitHub { owner = "dtolnay"; repo = "cxx"; rev = version; - sha256 = "sha256-KQlbJvULdc94SM0sx6JtukZPpaX4Gojc6Qgr20V3/VI="; + sha256 = "sha256-cihF9VWAvqQxwvRJRfDIVxf56ajgFaOEv0vBvSQd2WY="; }; - cargoLock = { - lockFile = ./Cargo.lock; - }; + cargoHash = "sha256-JxSWct7lx1oDVQ4QnqC9qRJg86XNppn+s4n5ZX0JXIQ="; - postPatch = '' - cp ${./Cargo.lock} Cargo.lock - ''; + cargoPatches = [ + ./add-Cargo.lock.patch + ]; cargoBuildFlags = [ "--workspace" From 8960b1a5eed247443f6effd92625cc1c9919f3a4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 25 Jun 2025 20:04:11 +0000 Subject: [PATCH 50/96] ghidra-extensions.findcrypt: 3.0.5 -> 3.0.6 --- pkgs/tools/security/ghidra/extensions/findcrypt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/ghidra/extensions/findcrypt/default.nix b/pkgs/tools/security/ghidra/extensions/findcrypt/default.nix index 37d5148051ee..5b9395febdff 100644 --- a/pkgs/tools/security/ghidra/extensions/findcrypt/default.nix +++ b/pkgs/tools/security/ghidra/extensions/findcrypt/default.nix @@ -4,7 +4,7 @@ buildGhidraExtension, }: let - version = "3.0.5"; + version = "3.0.6"; in buildGhidraExtension { pname = "findcrypt"; @@ -14,7 +14,7 @@ buildGhidraExtension { owner = "antoniovazquezblanco"; repo = "GhidraFindcrypt"; rev = "v${version}"; - hash = "sha256-gWVYy+PWpNXlcgD83jap4IFRv66qdhloOwvpQVU2TcI="; + hash = "sha256-VWi1MP72Vl4XCrbTvRA6qYPk2QyvRyVb9N8QQ/Zml0A="; }; meta = { From f4538767542c5d6330d40a4fd10c1414b8315c60 Mon Sep 17 00:00:00 2001 From: Ross Smyth <18294397+RossSmyth@users.noreply.github.com> Date: Mon, 23 Jun 2025 15:07:01 -0400 Subject: [PATCH 51/96] rescript-language-server: Fix updateScript --- .../rescript-editor-analysis.nix | 20 ++++++++++++++----- .../re/rescript-language-server/package.nix | 13 ++++-------- 2 files changed, 19 insertions(+), 14 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/rescript-editor-analysis.nix b/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/rescript-editor-analysis.nix index 718d14a52851..7232795a8148 100644 --- a/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/rescript-editor-analysis.nix +++ b/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/rescript-editor-analysis.nix @@ -1,6 +1,7 @@ { lib, fetchFromGitHub, + nix-update-script, ocamlPackages, }: @@ -13,8 +14,8 @@ ocamlPackages.buildDunePackage rec { src = fetchFromGitHub { owner = "rescript-lang"; repo = "rescript-vscode"; - rev = version; - hash = "sha256-v+qCVge57wvA97mtzbxAX9Fvi7ruo6ZyIC14O8uWl9Y="; + tag = version; + hash = "sha256-Tox5Qq0Kpqikac90sQww2cGr9RHlXnVy7GMnRA18CoA="; }; strictDeps = true; @@ -22,12 +23,21 @@ ocamlPackages.buildDunePackage rec { ocamlPackages.cppo ]; + passthru.updateScript = nix-update-script { + extraArgs = [ + "--version-regex" + "([0-9]+\.[0-9]+\.[0-9]+)" + ]; + }; + meta = { description = "Analysis binary for the ReScript VSCode plugin"; homepage = "https://github.com/rescript-lang/rescript-vscode"; - maintainers = [ - lib.maintainers.dlip - lib.maintainers.jayesh-bhoot + changelog = "https://github.com/rescript-lang/rescript-vscode/releases/tag/${version}"; + maintainers = with lib.maintainers; [ + dlip + jayesh-bhoot + RossSmyth ]; license = lib.licenses.mit; mainProgram = "rescript-editor-analysis"; diff --git a/pkgs/by-name/re/rescript-language-server/package.nix b/pkgs/by-name/re/rescript-language-server/package.nix index b2042cfdbb08..ea7a87e5f530 100644 --- a/pkgs/by-name/re/rescript-language-server/package.nix +++ b/pkgs/by-name/re/rescript-language-server/package.nix @@ -20,18 +20,13 @@ let throw "Unsupported system: ${stdenv.system}"; in buildNpmPackage rec { + # These have the same source, and must be the same version. + inherit (rescript-editor-analysis) src; pname = "rescript-language-server"; inherit version; - src = fetchFromGitHub { - owner = "rescript-lang"; - repo = "rescript-vscode"; - tag = version; - hash = "sha256-Tox5Qq0Kpqikac90sQww2cGr9RHlXnVy7GMnRA18CoA="; - }; - sourceRoot = "${src.name}/server"; - npmDepsHash = "sha256-Qi41qDJ0WR0QWw7guhuz1imT51SqI7mORGjNbmZWnio="; + npmDepsHash = "sha256-Qi41qDJ0WR0QWw7guhuz1imT51SqI7mORGjNbmZWnio"; strictDeps = true; nativeBuildInputs = [ esbuild ]; @@ -57,7 +52,7 @@ buildNpmPackage rec { versionCheckProgramArg = "--version"; doInstallCheck = true; - passthru.updateScript = nix-update-script { }; + passthru.updateScript = nix-update-script { extraArgs = [ "--version-regex" "([0-9]\.[0-9][0-9]\.[0-9])"]; }; meta = { description = "ReScript Language Server"; From b814e94cacf063d3e30093656bcd90311630a383 Mon Sep 17 00:00:00 2001 From: Ross Smyth <18294397+RossSmyth@users.noreply.github.com> Date: Mon, 23 Jun 2025 17:03:11 -0400 Subject: [PATCH 52/96] rescript-language-server: Clean-up with finalAttrs, more platforms, symlink binary 1. rec -> finalAttrs 2. Add platforms (they are marked as broken though) 3. symlink the analysis binary into the directory so that it's not copied --- .../re/rescript-language-server/package.nix | 43 ++++++++++++------- 1 file changed, 27 insertions(+), 16 deletions(-) diff --git a/pkgs/by-name/re/rescript-language-server/package.nix b/pkgs/by-name/re/rescript-language-server/package.nix index ea7a87e5f530..8e65671dd9e7 100644 --- a/pkgs/by-name/re/rescript-language-server/package.nix +++ b/pkgs/by-name/re/rescript-language-server/package.nix @@ -9,23 +9,25 @@ rescript-editor-analysis, }: let - version = "1.62.0"; - platformDir = if stdenv.hostPlatform.isLinux then "linux" else if stdenv.hostPlatform.isDarwin then "darwin" + else if stdenv.hostPlatform.isFreeBSD then + "freebsd" + else if stdenv.hostPlatform.isWindows then + "win32" else throw "Unsupported system: ${stdenv.system}"; in -buildNpmPackage rec { +buildNpmPackage (finalAttrs: { # These have the same source, and must be the same version. - inherit (rescript-editor-analysis) src; + inherit (rescript-editor-analysis) src version; pname = "rescript-language-server"; - inherit version; - sourceRoot = "${src.name}/server"; + sourceRoot = "${finalAttrs.src.name}/server"; + npmDepsHash = "sha256-Qi41qDJ0WR0QWw7guhuz1imT51SqI7mORGjNbmZWnio"; strictDeps = true; @@ -36,31 +38,40 @@ buildNpmPackage rec { buildPhase = '' runHook preBuild - # https://github.com/rescript-lang/rescript-vscode/blob/1.62.0/.github/workflows/ci.yml#L182-L183 - mkdir analysis_binaries/${platformDir} - cp ${lib.getExe rescript-editor-analysis} analysis_binaries/${platformDir}/ - # https://github.com/rescript-lang/rescript-vscode/blob/1.62.0/package.json#L252 esbuild src/cli.ts --bundle --sourcemap --outfile=out/cli.js --format=cjs --platform=node --loader:.node=file --minify runHook postBuild ''; + postInstall = '' + DIR="$out/lib/node_modules/@rescript/language-server/analysis_binaries/${platformDir}" + + mkdir -p "$DIR" + ln -s ${lib.getExe rescript-editor-analysis} "$DIR"/rescript-editor-analysis + ''; + nativeInstallCheckInputs = [ versionCheckHook ]; versionCheckProgramArg = "--version"; doInstallCheck = true; - passthru.updateScript = nix-update-script { extraArgs = [ "--version-regex" "([0-9]\.[0-9][0-9]\.[0-9])"]; }; + passthru.updateScript = nix-update-script { + extraArgs = [ + "--version-regex" + "([0-9]+\.[0-9]+\.[0-9]+)" + ]; + }; meta = { description = "ReScript Language Server"; - homepage = "https://github.com/rescript-lang/rescript-vscode/tree/${version}/server"; - changelog = "https://github.com/rescript-lang/rescript-vscode/releases/tag/${version}"; + homepage = "https://github.com/rescript-lang/rescript-vscode/tree/${finalAttrs.version}/server"; + changelog = "https://github.com/rescript-lang/rescript-vscode/releases/tag/${finalAttrs.version}"; mainProgram = "rescript-language-server"; license = lib.licenses.mit; - platforms = lib.platforms.linux ++ lib.platforms.darwin; - maintainers = [ lib.maintainers.RossSmyth ]; + # https://github.com/rescript-lang/rescript-vscode/blob/1.62.0/CONTRIBUTING.md?plain=1#L186 + platforms = with lib.platforms; linux ++ darwin ++ windows ++ freebsd; + maintainers = with lib.maintainers; [ RossSmyth ]; }; -} +}) From 09f3f97afd6406f41e08445216f40d4acd814684 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 26 Jun 2025 01:15:51 +0000 Subject: [PATCH 53/96] grafana-dash-n-grab: 0.7.2 -> 0.8.0 --- pkgs/by-name/gr/grafana-dash-n-grab/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/gr/grafana-dash-n-grab/package.nix b/pkgs/by-name/gr/grafana-dash-n-grab/package.nix index 5ba8447d0892..44b917e7a4a3 100644 --- a/pkgs/by-name/gr/grafana-dash-n-grab/package.nix +++ b/pkgs/by-name/gr/grafana-dash-n-grab/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "grafana-dash-n-grab"; - version = "0.7.2"; + version = "0.8.0"; src = fetchFromGitHub { rev = "v${version}"; owner = "esnet"; repo = "gdg"; - sha256 = "sha256-0F4kdyQ4TXV2vb2IkPx7CisTmJAQjlSRtOAFhmZqaD8="; + sha256 = "sha256-Ou8Yj20q7SGYuFnw3yFvjGHtKE+Uswqfbp9NJztqetU="; }; - vendorHash = "sha256-Ufg4eeSLRHFkI577hPT5KWOf82o7//Y3n5GAlZl8IoQ="; + vendorHash = "sha256-ow5bVwKrvviS7jxpT2xkWX6YufFAM9v7V1o/mNn4Czg="; ldflags = [ "-s" From a46def9416ececed1e07e9c7b4eff1d0642040bf Mon Sep 17 00:00:00 2001 From: Ivan Petkov Date: Wed, 25 Jun 2025 19:41:43 -0700 Subject: [PATCH 54/96] tandoor-recipes: use standard-imghdr --- pkgs/by-name/ta/tandoor-recipes/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/ta/tandoor-recipes/package.nix b/pkgs/by-name/ta/tandoor-recipes/package.nix index bac94a1c5492..16beda51bee5 100644 --- a/pkgs/by-name/ta/tandoor-recipes/package.nix +++ b/pkgs/by-name/ta/tandoor-recipes/package.nix @@ -80,6 +80,7 @@ python.pkgs.buildPythonPackage { pyjwt python3-openid python3-saml + standard-imghdr ]; configurePhase = '' From a151468a5e8e1e452c168e7c694d653716186bcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 25 Jun 2025 21:33:01 -0700 Subject: [PATCH 55/96] python3Packages.systembridgeconnector: 4.1.5 -> 4.1.6 Diff: https://github.com/timmo001/system-bridge-connector/compare/refs/tags/4.1.5...refs/tags/4.1.6 Changelog: https://github.com/timmo001/system-bridge-connector/releases/tag/4.1.6 --- .../python-modules/systembridgeconnector/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/systembridgeconnector/default.nix b/pkgs/development/python-modules/systembridgeconnector/default.nix index f5254d90c75d..c60853410e42 100644 --- a/pkgs/development/python-modules/systembridgeconnector/default.nix +++ b/pkgs/development/python-modules/systembridgeconnector/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "systembridgeconnector"; - version = "4.1.5"; + version = "4.1.6"; pyproject = true; disabled = pythonOlder "3.11"; @@ -25,7 +25,7 @@ buildPythonPackage rec { owner = "timmo001"; repo = "system-bridge-connector"; tag = version; - hash = "sha256-AzAN7reBAI4atEFutgFrdQHFy/Qc90PQxwSaHaftn5Q="; + hash = "sha256-E04ETXfrh+1OY8WsNNJEeYlnqQcHWR3CX/E7SOd7/24="; }; postPatch = '' @@ -41,11 +41,8 @@ buildPythonPackage rec { setuptools ]; - pythonRelaxDeps = [ "incremental" ]; - dependencies = [ aiohttp - incremental packaging systembridgemodels ]; From 5935b3e142b1b473fe89c5e875760c81d8e965e8 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 26 Jun 2025 18:28:46 +0200 Subject: [PATCH 56/96] git-sync: 0-unstable-2024-11-30 -> 0-unstable-2025-06-26 --- pkgs/by-name/gi/git-sync/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/gi/git-sync/package.nix b/pkgs/by-name/gi/git-sync/package.nix index 3b4f43dc1f23..096dc6bb269c 100644 --- a/pkgs/by-name/gi/git-sync/package.nix +++ b/pkgs/by-name/gi/git-sync/package.nix @@ -13,13 +13,13 @@ stdenv.mkDerivation rec { pname = "git-sync"; - version = "0-unstable-2024-11-30"; + version = "0-unstable-2025-06-26"; src = fetchFromGitHub { owner = "simonthum"; repo = "git-sync"; - rev = "7242291edf543ecc1bb9de8f47086bb69a5cb9f7"; - hash = "sha256-t1NVgp+ELmTMK0N1fFFJCoKQd8mSYSMAIDG9+kNs3Ok="; + rev = "15af8a43cb4d8354f0b7e7c8d27e09587a9a3994"; + hash = "sha256-7sCncPxVMiDGi1PSoFhA9emSY2Jit35/FaBbinCdS/A="; }; nativeBuildInputs = [ makeWrapper ]; From 8a03e3479ff8f675a20dc9e4482d27830d991108 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 26 Jun 2025 18:29:56 +0200 Subject: [PATCH 57/96] git-sync: use `makeBinaryWrapper` --- pkgs/by-name/gi/git-sync/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/gi/git-sync/package.nix b/pkgs/by-name/gi/git-sync/package.nix index 096dc6bb269c..338d55af2fad 100644 --- a/pkgs/by-name/gi/git-sync/package.nix +++ b/pkgs/by-name/gi/git-sync/package.nix @@ -6,7 +6,7 @@ git, gnugrep, gnused, - makeWrapper, + makeBinaryWrapper, inotify-tools, nix-update-script, }: @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { hash = "sha256-7sCncPxVMiDGi1PSoFhA9emSY2Jit35/FaBbinCdS/A="; }; - nativeBuildInputs = [ makeWrapper ]; + nativeBuildInputs = [ makeBinaryWrapper ]; dontBuild = true; From f8e8ab711360c3ecb2ac4d7db15aaf3cdd5f5348 Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Thu, 26 Jun 2025 19:37:59 +0400 Subject: [PATCH 58/96] =?UTF-8?q?qvge:=200.6.3-unstable-2024-04-08=20?= =?UTF-8?q?=E2=86=92=200.7.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/by-name/qv/qvge/package.nix | 35 +++++++++++++++++++++----------- 1 file changed, 23 insertions(+), 12 deletions(-) diff --git a/pkgs/by-name/qv/qvge/package.nix b/pkgs/by-name/qv/qvge/package.nix index 28f3f99c4946..c52c25debf9e 100644 --- a/pkgs/by-name/qv/qvge/package.nix +++ b/pkgs/by-name/qv/qvge/package.nix @@ -7,19 +7,18 @@ graphviz, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "qvge"; - version = "0.6.3-unstable-2024-04-08"; + version = "0.7.0"; src = fetchFromGitHub { owner = "ArsMasiuk"; repo = "qvge"; - #tag = "v${version}"; - rev = "5751948358d407673cfda10f52892683be143d42"; - hash = "sha256-Rh8ahS/9x2aWu4THjLKoog58+yJoCQ6GETaAQTW4Hq8="; + tag = "v${finalAttrs.version}"; + hash = "sha256-011gJobDqNnXFTr/XSXcONxvPlzU7UEwS7CHkz1YMtY="; }; - sourceRoot = "${src.name}/src"; + sourceRoot = "${finalAttrs.src.name}/src"; patches = ( replaceVars ./set-graphviz-path.patch { @@ -27,6 +26,11 @@ stdenv.mkDerivation rec { } ); + postPatch = '' + substituteInPlace qvge/linux/qvge.desktop \ + --replace-warn "Exec=qvgeapp" "Exec=qvge" + ''; + nativeBuildInputs = [ libsForQt5.wrapQtAppsHook libsForQt5.qmake @@ -35,12 +39,19 @@ stdenv.mkDerivation rec { buildInputs = if stdenv.hostPlatform.isDarwin then [ libsForQt5.qtsvg ] else [ libsForQt5.qtx11extras ]; - meta = with lib; { + postInstall = lib.optionalString stdenv.hostPlatform.isDarwin '' + mkdir -p $out/Applications + mv $out/bin/qvge.app $out/Applications + ln -s $out/Applications/qvge.app/Contents/MacOS/qvge $out/bin/qvge + ''; + + meta = { description = "Qt Visual Graph Editor"; - mainProgram = "qvgeapp"; homepage = "https://github.com/ArsMasiuk/qvge"; - license = licenses.mit; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + changelog = "https://github.com/ArsMasiuk/qvge/blob/v${finalAttrs.version}/CHANGES"; + license = lib.licenses.mit; + mainProgram = "qvge"; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; }; -} +}) From 2fbbba5004862d84e449ee1a49deb292cfbd0365 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 26 Jun 2025 18:38:36 +0200 Subject: [PATCH 59/96] git-sync: add `fswatch` for `git-sync-on-fswatch` --- pkgs/by-name/gi/git-sync/package.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/by-name/gi/git-sync/package.nix b/pkgs/by-name/gi/git-sync/package.nix index 338d55af2fad..78a17dea1a0c 100644 --- a/pkgs/by-name/gi/git-sync/package.nix +++ b/pkgs/by-name/gi/git-sync/package.nix @@ -3,6 +3,7 @@ stdenv, fetchFromGitHub, coreutils, + fswatch, git, gnugrep, gnused, @@ -35,6 +36,7 @@ stdenv.mkDerivation rec { wrapperPath = lib.makeBinPath ( [ coreutils + fswatch git gnugrep gnused From cdb5e6e881ab6c3e04d34d2af1f19ae27b32464b Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 26 Jun 2025 18:39:25 +0200 Subject: [PATCH 60/96] git-sync: refactor `installPhase` --- pkgs/by-name/gi/git-sync/package.nix | 52 ++++++++++++++++------------ 1 file changed, 30 insertions(+), 22 deletions(-) diff --git a/pkgs/by-name/gi/git-sync/package.nix b/pkgs/by-name/gi/git-sync/package.nix index 78a17dea1a0c..a8bedbd66bba 100644 --- a/pkgs/by-name/gi/git-sync/package.nix +++ b/pkgs/by-name/gi/git-sync/package.nix @@ -27,32 +27,40 @@ stdenv.mkDerivation rec { dontBuild = true; - installPhase = '' - mkdir -p $out/bin - cp -a git-* $out/bin/ - cp -a contrib/git-* $out/bin/ - ''; + installPhase = + let + wrapperPath = lib.makeBinPath ( + [ + coreutils + fswatch + git + gnugrep + gnused + ] + ++ lib.optionals stdenv.hostPlatform.isLinux [ inotify-tools ] + ); - wrapperPath = lib.makeBinPath ( - [ - coreutils - fswatch - git - gnugrep - gnused - ] - ++ lib.optionals stdenv.hostPlatform.isLinux [ inotify-tools ] - ); + in + '' + runHook preInstall - postFixup = '' - wrap_path="${wrapperPath}":$out/bin + for file in git-*; do + install -D -m 755 "$file" -t $out/bin + done - wrapProgram $out/bin/git-sync \ - --prefix PATH : $wrap_path + for file in contrib/git-*; do + install -D -m 755 "$file" -t $out/bin + done - wrapProgram $out/bin/git-sync-on-inotify \ - --prefix PATH : $wrap_path - ''; + wrap_path="${wrapperPath}":$out/bin + + for file in $out/bin/*; do + wrapProgram $file \ + --prefix PATH : $wrap_path + done + + runHook postInstall + ''; passthru = { updateScript = nix-update-script { }; From 43823a262a50cd98a29859eebdaeb591f869c324 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 26 Jun 2025 18:45:06 +0200 Subject: [PATCH 61/96] git-sync: remove obsolete `rec` keyword --- pkgs/by-name/gi/git-sync/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/gi/git-sync/package.nix b/pkgs/by-name/gi/git-sync/package.nix index a8bedbd66bba..99a88571d426 100644 --- a/pkgs/by-name/gi/git-sync/package.nix +++ b/pkgs/by-name/gi/git-sync/package.nix @@ -12,7 +12,7 @@ nix-update-script, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "git-sync"; version = "0-unstable-2025-06-26"; From 10c1d20f48e00411fdacb0f40d80dd9e09610898 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 26 Jun 2025 18:45:37 +0200 Subject: [PATCH 62/96] git-sync: replace `git` with `gitMinimal` --- pkgs/by-name/gi/git-sync/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/gi/git-sync/package.nix b/pkgs/by-name/gi/git-sync/package.nix index 99a88571d426..5f0f274d88ea 100644 --- a/pkgs/by-name/gi/git-sync/package.nix +++ b/pkgs/by-name/gi/git-sync/package.nix @@ -4,7 +4,7 @@ fetchFromGitHub, coreutils, fswatch, - git, + gitMinimal, gnugrep, gnused, makeBinaryWrapper, @@ -33,7 +33,7 @@ stdenv.mkDerivation { [ coreutils fswatch - git + gitMinimal gnugrep gnused ] From c8615e54e1fcd901db972b161bf7e03162cd390e Mon Sep 17 00:00:00 2001 From: Francesco Gazzetta Date: Thu, 26 Jun 2025 18:54:01 +0200 Subject: [PATCH 63/96] tclPackages.tdom: 0.9.5 -> 0.9.6 --- pkgs/development/tcl-modules/by-name/td/tdom/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tcl-modules/by-name/td/tdom/package.nix b/pkgs/development/tcl-modules/by-name/td/tdom/package.nix index 38ac7acfbcf0..12d9290417af 100644 --- a/pkgs/development/tcl-modules/by-name/td/tdom/package.nix +++ b/pkgs/development/tcl-modules/by-name/td/tdom/package.nix @@ -9,11 +9,11 @@ mkTclDerivation rec { pname = "tdom"; - version = "0.9.5"; + version = "0.9.6"; src = fetchzip { url = "http://tdom.org/downloads/tdom-${version}-src.tgz"; - hash = "sha256-WjXIVnz+1Z59fQHMHXzQaIRRwfiBHMTBq/p2alGF+Po="; + hash = "sha256-zN855tb9JQUtcB7K1DeAjUBrqhoNH44KbeHwp3qewqw="; }; buildInputs = [ From 5f2f28ec3ccdaed7d8a964735f5aa8ade95bf980 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 26 Jun 2025 10:16:10 -0700 Subject: [PATCH 64/96] python3Packages.systembridgeconnector: fix tests on Darwin --- .../python-modules/systembridgeconnector/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/systembridgeconnector/default.nix b/pkgs/development/python-modules/systembridgeconnector/default.nix index c60853410e42..8fd7fc89bb66 100644 --- a/pkgs/development/python-modules/systembridgeconnector/default.nix +++ b/pkgs/development/python-modules/systembridgeconnector/default.nix @@ -56,6 +56,8 @@ buildPythonPackage rec { syrupy ]; + __darwinAllowLocalNetworking = true; + disabledTests = [ "test_get_data" "test_wait_for_response_timeout" From dba842b86511ac418fafdb976a6ff44475004dbd Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Thu, 26 Jun 2025 13:30:38 -0400 Subject: [PATCH 65/96] arc-browser: 1.100.0-64467 -> 1.101.0-64746 --- pkgs/by-name/ar/arc-browser/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ar/arc-browser/package.nix b/pkgs/by-name/ar/arc-browser/package.nix index 46d81dac6e60..ebe4fc34719f 100644 --- a/pkgs/by-name/ar/arc-browser/package.nix +++ b/pkgs/by-name/ar/arc-browser/package.nix @@ -10,11 +10,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "arc-browser"; - version = "1.100.0-64467"; + version = "1.101.0-64746"; src = fetchurl { url = "https://releases.arc.net/release/Arc-${finalAttrs.version}.dmg"; - hash = "sha256-fMC35haQOB/YY5EbnvusTOiNbck7Vo9rmM6whVp8l80="; + hash = "sha256-u391hQB+Fqw21cu9GQglOkPHie+8uK8FTxSLWLAH0eA="; }; nativeBuildInputs = [ undmg ]; From fb42926f734782e18f4df702c18dad3d802a4a58 Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Thu, 26 Jun 2025 21:44:47 +0400 Subject: [PATCH 66/96] =?UTF-8?q?workout-tracker:=202.2.2=20=E2=86=92=202.?= =?UTF-8?q?3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/by-name/wo/workout-tracker/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/wo/workout-tracker/package.nix b/pkgs/by-name/wo/workout-tracker/package.nix index 58daf946004a..d5fc554aec09 100644 --- a/pkgs/by-name/wo/workout-tracker/package.nix +++ b/pkgs/by-name/wo/workout-tracker/package.nix @@ -1,6 +1,6 @@ { lib, - buildGo124Module, + buildGoModule, buildNpmPackage, fetchFromGitHub, nix-update-script, @@ -9,19 +9,19 @@ }: let pname = "workout-tracker"; - version = "2.2.2"; + version = "2.3.0"; src = fetchFromGitHub { owner = "jovandeginste"; repo = "workout-tracker"; tag = "v${version}"; - hash = "sha256-TSRHsVpl/qfu4Dwttj1pYhD+4zzxCt48y9FF4zP1drY="; + hash = "sha256-dhuAa0gq++PluglLiU9A4Cve8WCvFz3JDWyhvjMdi0A="; }; assets = buildNpmPackage { pname = "${pname}-assets"; inherit version src; - npmDepsHash = "sha256-rUW7wdJg5AhcDxIaH74YXzQS3Pav2fOraw8Rhb+IgCc="; + npmDepsHash = "sha256-te7A8RRBOM/Ft0wdeBI0rng2IB9Zs6KzI3OK4bfBRRE="; dontNpmBuild = true; makeCacheWritable = true; postPatch = '' @@ -34,7 +34,7 @@ let ''; }; in -buildGo124Module { +buildGoModule { inherit pname version src; vendorHash = null; From ff28f7962a268f3df904c7339f99a8cd2e7a0e3c Mon Sep 17 00:00:00 2001 From: Malo Bourgon Date: Thu, 26 Jun 2025 11:47:35 -0700 Subject: [PATCH 67/96] signalbackup-tools: 20250622-1 -> 20250626 Diff: https://github.com/bepaald/signalbackup-tools/compare/20250622-1...20250626 --- pkgs/by-name/si/signalbackup-tools/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/si/signalbackup-tools/package.nix b/pkgs/by-name/si/signalbackup-tools/package.nix index 5c7f0142bb15..42f13ccc81b0 100644 --- a/pkgs/by-name/si/signalbackup-tools/package.nix +++ b/pkgs/by-name/si/signalbackup-tools/package.nix @@ -13,13 +13,13 @@ stdenv.mkDerivation rec { pname = "signalbackup-tools"; - version = "20250622-1"; + version = "20250626"; src = fetchFromGitHub { owner = "bepaald"; repo = "signalbackup-tools"; rev = version; - hash = "sha256-QLlnIrlWGbPPD2ZgmvzX28UkVSQHcEUoL/XmajgFs6o="; + hash = "sha256-RZLe0d/zpWu8x/4qVZBY3zatb9bc5kfKy7L0EdK02uw="; }; nativeBuildInputs = From 18c8e8fc82997b2de32ffbab93ba8a08b534be0e Mon Sep 17 00:00:00 2001 From: David Reiss Date: Wed, 25 Jun 2025 00:10:42 -0700 Subject: [PATCH 68/96] temporalite: remove --- pkgs/by-name/te/temporalite/package.nix | 37 ------------------------- pkgs/top-level/aliases.nix | 1 + 2 files changed, 1 insertion(+), 37 deletions(-) delete mode 100644 pkgs/by-name/te/temporalite/package.nix diff --git a/pkgs/by-name/te/temporalite/package.nix b/pkgs/by-name/te/temporalite/package.nix deleted file mode 100644 index eb9305942cc5..000000000000 --- a/pkgs/by-name/te/temporalite/package.nix +++ /dev/null @@ -1,37 +0,0 @@ -{ - lib, - buildGoModule, - fetchFromGitHub, -}: - -buildGoModule rec { - pname = "temporalite"; - version = "0.3.0"; - - src = fetchFromGitHub { - owner = "temporalio"; - repo = "temporalite"; - rev = "v${version}"; - sha256 = "sha256-IEB9AFEt8U2zXYfbChfL/UH1rNSLPnfS396/cPE8UdE="; - }; - - vendorHash = "sha256-w86/XCMRGBmXM+oQ5+0qiX0fdwiKXvsmEkApuRLUOiA="; - - subPackages = [ "cmd/temporalite" ]; - - postPatch = '' - substituteInPlace cmd/temporalite/ui_test.go \ - --replace "TestNewUIConfigWithMissingConfigFile" "SkipNewUIConfigWithMissingConfigFile" - - substituteInPlace cmd/temporalite/mtls_test.go \ - --replace "TestMTLSConfig" "SkipMTLSConfig" - ''; - - meta = with lib; { - description = "Experimental distribution of Temporal that runs as a single process"; - mainProgram = "temporalite"; - homepage = "https://github.com/temporalio/temporalite"; - license = licenses.mit; - maintainers = with maintainers; [ lucperkins ]; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index dd8921c4472e..7b41ffbf4249 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1924,6 +1924,7 @@ mapAliases { teleport_13 = throw "teleport 13 has been removed as it is EOL. Please upgrade to Teleport 14 or later"; # Added 2024-05-26 teleport_14 = throw "teleport 14 has been removed as it is EOL. Please upgrade to Teleport 15 or later"; # Added 2024-10-18 teleport_15 = throw "teleport 15 has been removed as it is EOL. Please upgrade to Teleport 16 or later"; # Added 2025-03-28 + temporalite = throw "'temporalite' has been removed as it is obsolete and unmaintained, please use 'temporal-cli' instead (with `temporal server start-dev`)"; # Added 2025-06-26 terminus-nerdfont = lib.warnOnInstantiate "terminus-nerdfont is redundant. Use nerd-fonts.terminess-ttf instead." nerd-fonts.terminess-ttf; # Added 2024-11-10 temurin-bin-20 = throw "Temurin 20 has been removed as it has reached its end of life"; # Added 2024-08-01 temurin-jre-bin-20 = throw "Temurin 20 has been removed as it has reached its end of life"; # Added 2024-08-01 From 0a4f9d60c16a667c8d3ba7a6a4d9e82929a79805 Mon Sep 17 00:00:00 2001 From: Weathercold Date: Thu, 26 Jun 2025 15:53:10 -0400 Subject: [PATCH 69/96] whalebird: 6.2.0-unstable-2025-02-26 -> 6.2.2-unstable-2025-06-12 6.2.2 still uses electron 34 which is EOL --- pkgs/applications/misc/whalebird/default.nix | 8 ++++---- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/misc/whalebird/default.nix b/pkgs/applications/misc/whalebird/default.nix index f53049637bef..60d21f5d2a5d 100644 --- a/pkgs/applications/misc/whalebird/default.nix +++ b/pkgs/applications/misc/whalebird/default.nix @@ -12,13 +12,13 @@ }: stdenv.mkDerivation rec { pname = "whalebird"; - version = "6.2.0-unstable-2025-02-26"; + version = "6.2.2-unstable-2025-06-12"; src = fetchFromGitHub { owner = "h3poteto"; repo = "whalebird-desktop"; - rev = "4f84b962eb338a6251d32f67994b71dc1b44d796"; - hash = "sha256-BBd9VGLtab6DuMODBnEAdZ/aNp1xV/5vkyprUCHR4z8="; + rev = "506a1ff00188f04bffeaede0110719512c621b02"; + hash = "sha256-jkdGwdNcF4Rbivi0TziW/ZOficbXIrxqaB+kQrNcdsc="; }; # we cannot use fetchYarnDeps because that doesn't support yarn 2/berry lockfiles offlineCache = stdenv.mkDerivation { @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { ''; outputHashMode = "recursive"; - outputHash = "sha256-IDOtmpiVcqy7u/pf1ZqDxY+0fo0sh7cPYG8HKyOnVMk="; + outputHash = "sha256-Lru6utVP1uHpHvL8Jg/JzEnIErsxVo7njJhsqkThktk="; }; nativeBuildInputs = [ diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8fe50aec5a33..1cdc72d3fa75 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14330,7 +14330,7 @@ with pkgs; wgnord = callPackage ../applications/networking/wgnord/default.nix { }; whalebird = callPackage ../applications/misc/whalebird { - electron = electron_34; + electron = electron_36; }; inherit (windowmaker) dockapps; From 7a61ac36c7ac6588932a0563ea645f428446f5dd Mon Sep 17 00:00:00 2001 From: Dom Rodriguez Date: Wed, 25 Jun 2025 18:06:18 +0100 Subject: [PATCH 70/96] input-leap: 3.0.2 -> 3.0.3 This PR bumps Input Leap to v3.0.3 It also removes the now-merged patch for a Qt bug, and updates the filename used for the XDG .desktop file. Fixes: #400513 Signed-off-by: Dom Rodriguez --- pkgs/applications/misc/input-leap/default.nix | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/pkgs/applications/misc/input-leap/default.nix b/pkgs/applications/misc/input-leap/default.nix index 68287ee614a3..a1b58f633b78 100644 --- a/pkgs/applications/misc/input-leap/default.nix +++ b/pkgs/applications/misc/input-leap/default.nix @@ -2,7 +2,6 @@ lib, stdenv, fetchFromGitHub, - fetchpatch2, cmake, withLibei ? true, @@ -29,13 +28,13 @@ stdenv.mkDerivation rec { pname = "input-leap"; - version = "3.0.2"; + version = "3.0.3"; src = fetchFromGitHub { owner = "input-leap"; repo = "input-leap"; rev = "v${version}"; - hash = "sha256-YkBHvwN573qqQWe/p0n4C2NlyNQHSZNz2jyMKGPITF4="; + hash = "sha256-zSaeeMlhpWIX3y4OmZ7eHXCu1HPP7NU5HFkME/JZjuQ="; fetchSubmodules = true; }; @@ -65,14 +64,6 @@ stdenv.mkDerivation rec { libportal ]; - patches = [ - (fetchpatch2 { - # Upstream fix for crash on qt6.8 https://github.com/input-leap/input-leap/issues/2067 - url = "https://github.com/input-leap/input-leap/commit/2641bc502e16b1fb7372b43e94d4b894cbc71279.patch?full_index=1"; - hash = "sha256-LV09ITcE0ihKMByM5wiRetGwKbPrJbVY6HjZLqa8Dcs="; - }) - ]; - cmakeFlags = [ "-DINPUTLEAP_REVISION=${builtins.substring 0 8 src.rev}" ] ++ lib.optional withLibei "-DINPUTLEAP_BUILD_LIBEI=ON"; @@ -85,11 +76,6 @@ stdenv.mkDerivation rec { ) ''; - postFixup = '' - substituteInPlace $out/share/applications/io.github.input_leap.InputLeap.desktop \ - --replace "Exec=input-leap" "Exec=$out/bin/input-leap" - ''; - meta = { description = "Open-source KVM software"; longDescription = '' From c29d2934dd60ba812a025ee8733f2da36cdf6bb1 Mon Sep 17 00:00:00 2001 From: Sapphire Date: Thu, 26 Jun 2025 15:44:26 -0500 Subject: [PATCH 71/96] wivrn: 0.25 -> 25.6 --- pkgs/by-name/wi/wivrn/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/wi/wivrn/package.nix b/pkgs/by-name/wi/wivrn/package.nix index 861f53b85bc3..ecdf59183636 100644 --- a/pkgs/by-name/wi/wivrn/package.nix +++ b/pkgs/by-name/wi/wivrn/package.nix @@ -51,13 +51,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "wivrn"; - version = "0.25"; + version = "25.6"; src = fetchFromGitHub { owner = "wivrn"; repo = "wivrn"; rev = "v${finalAttrs.version}"; - hash = "sha256-dDf+BW0AZMWRlWl0ye5s3Muurz+CiM3U5+bYgaFIT7M="; + hash = "sha256-opl1zPQrdOMgDY0rYZccNNRpgba6FQZMHxvgKNS7svM="; }; monado = applyPatches { @@ -65,8 +65,8 @@ stdenv.mkDerivation (finalAttrs: { domain = "gitlab.freedesktop.org"; owner = "monado"; repo = "monado"; - rev = "2a6932d46dad9aa957205e8a47ec2baa33041076"; - hash = "sha256-Bus9GTNC4+nOSwN8pUsMaFsiXjlpHYioQfBLxbQEF+0="; + rev = "bb9bcee2a3be75592de819d9e3fb2c8ed27bb7dc"; + hash = "sha256-+PiWxnvMXaSFc+67r17GBRXo7kbjikSElawNMJCydrk="; }; postPatch = '' @@ -79,7 +79,7 @@ stdenv.mkDerivation (finalAttrs: { # Let's make sure our monado source revision matches what is used by WiVRn upstream postUnpack = '' ourMonadoRev="${finalAttrs.monado.src.rev}" - theirMonadoRev=$(sed -n '/FetchContent_Declare(monado/,/)/p' ${finalAttrs.src.name}/CMakeLists.txt | grep "GIT_TAG" | awk '{print $2}') + theirMonadoRev=$(cat ${finalAttrs.src.name}/monado-rev) if [ ! "$theirMonadoRev" == "$ourMonadoRev" ]; then echo "Our Monado source revision doesn't match CMakeLists.txt." >&2 echo " theirs: $theirMonadoRev" >&2 From f3a931c6cd62cb89108dacfc44316ec7b339b38a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 26 Jun 2025 21:09:26 +0000 Subject: [PATCH 72/96] fastp: 1.0.0 -> 1.0.1 --- pkgs/by-name/fa/fastp/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/fa/fastp/package.nix b/pkgs/by-name/fa/fastp/package.nix index ee532d7248df..bae687c656d3 100644 --- a/pkgs/by-name/fa/fastp/package.nix +++ b/pkgs/by-name/fa/fastp/package.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation rec { pname = "fastp"; - version = "1.0.0"; + version = "1.0.1"; src = fetchFromGitHub { owner = "OpenGene"; repo = "fastp"; rev = "v${version}"; - sha256 = "sha256-oUThNtxM5zQgC4k3igrzYbFsza8d6E0U/o7w0FC8J3o="; + sha256 = "sha256-NR41Hklcz2wOQ39OzQYaYs5+eGjSWxCtcTGDAixZCmg="; }; buildInputs = [ From 292e869674f337c5a6a41aa8cd85b33712ba8dca Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 27 Jun 2025 00:04:52 +0200 Subject: [PATCH 73/96] python3Packages.timm: 1.0.15 -> 1.0.16 Diff: https://github.com/huggingface/pytorch-image-models/compare/refs/tags/v1.0.15...refs/tags/v1.0.16 Changelog: https://github.com/huggingface/pytorch-image-models/blob/v1.0.16/README.md#whats-new --- .../python-modules/timm/default.nix | 25 ++++++------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/pkgs/development/python-modules/timm/default.nix b/pkgs/development/python-modules/timm/default.nix index a514235bcdf6..c41f4ce8d41a 100644 --- a/pkgs/development/python-modules/timm/default.nix +++ b/pkgs/development/python-modules/timm/default.nix @@ -18,19 +18,18 @@ expecttest, pytestCheckHook, pytest-timeout, - pythonAtLeast, }: buildPythonPackage rec { pname = "timm"; - version = "1.0.15"; + version = "1.0.16"; pyproject = true; src = fetchFromGitHub { owner = "huggingface"; repo = "pytorch-image-models"; tag = "v${version}"; - hash = "sha256-TXc+D8GRrO46q88fOH44ZHKOGnCdP47ipEcobnGTxWU="; + hash = "sha256-8z23KQvb+wAlM/IXDC9j6OV8ioZE1dx0xhITSzdHoeY="; }; build-system = [ pdm-backend ]; @@ -51,20 +50,12 @@ buildPythonPackage rec { pytestFlagsArray = [ "tests" ]; - disabledTests = - lib.optionals - ( - # RuntimeError: Dynamo is not supported on Python 3.13+ - (pythonAtLeast "3.13") - - # torch._dynamo.exc.BackendCompilerFailed: backend='inductor' raised: - # CppCompileError: C++ compile error - # OpenMP support not found. - || stdenv.hostPlatform.isDarwin - ) - [ - "test_kron" - ]; + disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ + # torch._dynamo.exc.BackendCompilerFailed: backend='inductor' raised: + # CppCompileError: C++ compile error + # OpenMP support not found. + "test_kron" + ]; disabledTestPaths = [ # Takes too long and also tries to download models From c1c7aa280913f3b84af1880b3bd58420b189e30b Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 27 Jun 2025 00:11:50 +0200 Subject: [PATCH 74/96] python3Packages.huggingface-hub: 0.32.3 -> 0.33.1 Diff: https://github.com/huggingface/huggingface_hub/compare/refs/tags/v0.32.3...refs/tags/v0.33.1 Changelog: https://github.com/huggingface/huggingface_hub/releases/tag/v0.33.1 --- pkgs/development/python-modules/huggingface-hub/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/huggingface-hub/default.nix b/pkgs/development/python-modules/huggingface-hub/default.nix index c97eaa88af24..5327958102bc 100644 --- a/pkgs/development/python-modules/huggingface-hub/default.nix +++ b/pkgs/development/python-modules/huggingface-hub/default.nix @@ -40,14 +40,14 @@ buildPythonPackage rec { pname = "huggingface-hub"; - version = "0.32.3"; + version = "0.33.1"; pyproject = true; src = fetchFromGitHub { owner = "huggingface"; repo = "huggingface_hub"; tag = "v${version}"; - hash = "sha256-qCFwzhjQI1L7mgSSqDPw59woTSTDY0boWSHcm7dgx2A="; + hash = "sha256-rrOmmYHH8Rz6OhJPbRfdwC/AATdYrPTTuPvCPe0G3Do="; }; build-system = [ setuptools ]; From 9332bbfe6a87e5594ce3decfbdb2d4abead90d84 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 27 Jun 2025 00:12:16 +0200 Subject: [PATCH 75/96] python3Packages.transformers: 4.52.4 -> 4.53.0 Diff: https://github.com/huggingface/transformers/compare/refs/tags/v4.52.4...refs/tags/v4.53.0 Changelog: https://github.com/huggingface/transformers/releases/tag/v4.53.0 --- pkgs/development/python-modules/transformers/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/transformers/default.nix b/pkgs/development/python-modules/transformers/default.nix index 0f6e55b9ae74..7fa8fd04f14e 100644 --- a/pkgs/development/python-modules/transformers/default.nix +++ b/pkgs/development/python-modules/transformers/default.nix @@ -59,14 +59,14 @@ buildPythonPackage rec { pname = "transformers"; - version = "4.52.4"; + version = "4.53.0"; pyproject = true; src = fetchFromGitHub { owner = "huggingface"; repo = "transformers"; tag = "v${version}"; - hash = "sha256-n4p+Ge+nO/wR3cAcPL3lHqOKBIlV0mAlX7ZuWs5gAqI="; + hash = "sha256-t30Yy+hXsUU4G6urZeczIopbV7EYxaFs/3BOIiYXqKg="; }; build-system = [ setuptools ]; From 3dd0faac5107c6f5493b034ed48499f0815007e7 Mon Sep 17 00:00:00 2001 From: Gliczy <129636582+Gliczy@users.noreply.github.com> Date: Fri, 27 Jun 2025 00:12:50 +0200 Subject: [PATCH 76/96] dsda-doom: 0.29.0 -> 0.29.2 --- pkgs/by-name/ds/dsda-doom/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/ds/dsda-doom/package.nix b/pkgs/by-name/ds/dsda-doom/package.nix index dde6e731f5c5..b9b11f7a9a40 100644 --- a/pkgs/by-name/ds/dsda-doom/package.nix +++ b/pkgs/by-name/ds/dsda-doom/package.nix @@ -8,7 +8,7 @@ SDL2_image, fluidsynth, portmidi, - dumb, + libopenmpt, libvorbis, libmad, libGLU, @@ -19,13 +19,13 @@ stdenv.mkDerivation rec { pname = "dsda-doom"; - version = "0.29.0"; + version = "0.29.2"; src = fetchFromGitHub { owner = "kraflab"; repo = "dsda-doom"; - rev = "v${version}"; - hash = "sha256-mcg3GAQ90Qg7d1+/ci/XlTTF2q0tB6j+pp+Fb1Mpcao="; + tag = "v${version}"; + hash = "sha256-KNF91ikLFJPjSSsoz01kwAG5aCoABFyIQ5ZzbshFlkI="; }; sourceRoot = "${src.name}/prboom2"; @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { buildInputs = [ alsa-lib - dumb + libopenmpt fluidsynth libGLU libmad From 084a12f3f3a88e8aab8a9172cfd9c52e787fd57c Mon Sep 17 00:00:00 2001 From: Gliczy <129636582+Gliczy@users.noreply.github.com> Date: Fri, 27 Jun 2025 00:13:46 +0200 Subject: [PATCH 77/96] dsda-doom: use finalAttrs --- pkgs/by-name/ds/dsda-doom/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/ds/dsda-doom/package.nix b/pkgs/by-name/ds/dsda-doom/package.nix index b9b11f7a9a40..610f91675be6 100644 --- a/pkgs/by-name/ds/dsda-doom/package.nix +++ b/pkgs/by-name/ds/dsda-doom/package.nix @@ -17,18 +17,18 @@ nix-update-script, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "dsda-doom"; version = "0.29.2"; src = fetchFromGitHub { owner = "kraflab"; repo = "dsda-doom"; - tag = "v${version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-KNF91ikLFJPjSSsoz01kwAG5aCoABFyIQ5ZzbshFlkI="; }; - sourceRoot = "${src.name}/prboom2"; + sourceRoot = "${finalAttrs.src.name}/prboom2"; nativeBuildInputs = [ cmake ]; @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { meta = { homepage = "https://github.com/kraflab/dsda-doom"; - changelog = "https://github.com/kraflab/dsda-doom/releases/tag/v${version}"; + changelog = "https://github.com/kraflab/dsda-doom/releases/tag/v${finalAttrs.version}"; description = "Advanced Doom source port with a focus on speedrunning, successor of PrBoom+"; mainProgram = "dsda-doom"; license = lib.licenses.gpl2Plus; platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ Gliczy ]; }; -} +}) From 484e2f243a29d3be86c33c44b233ef26a36e695b Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 27 Jun 2025 00:26:38 +0200 Subject: [PATCH 78/96] firefox-unwrapped: 140.0 -> 140.0.1 https://www.mozilla.org/en-US/firefox/140.0.1/releasenotes/ --- .../networking/browsers/firefox/packages/firefox.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox/packages/firefox.nix b/pkgs/applications/networking/browsers/firefox/packages/firefox.nix index 89a2292c0cd3..db99cd8674b1 100644 --- a/pkgs/applications/networking/browsers/firefox/packages/firefox.nix +++ b/pkgs/applications/networking/browsers/firefox/packages/firefox.nix @@ -9,10 +9,10 @@ buildMozillaMach rec { pname = "firefox"; - version = "140.0"; + version = "140.0.1"; src = fetchurl { url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; - sha512 = "ef209827a422bab443e2b6fc59ac16f0ad99293b3c8f10a978f222ac8da5ff568b2fadfb97784feeafa4a24883d44ea2f34b47b2bb19863a27e00d2d787b8ad3"; + sha512 = "d521405f49a38b8449a24f90e5ea14d4337085918779d93d282cec80b2627f381648529d6f69930eb6e90e37302797b0049fec5846d25dc40f556bbd86d55ef1"; }; meta = { From fce68634c523157701fe868d5a782db33789fb8a Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 27 Jun 2025 00:27:12 +0200 Subject: [PATCH 79/96] firefox-bin-unwrapped: 140.0 -> 140.0.1 https://www.mozilla.org/en-US/firefox/140.0.1/releasenotes/ --- .../browsers/firefox-bin/release_sources.nix | 1650 ++++++++--------- 1 file changed, 825 insertions(+), 825 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix index a32992b8cde5..a12264e8ed42 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix @@ -1,2477 +1,2477 @@ { - version = "140.0"; + version = "140.0.1"; sources = [ { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/ach/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/ach/firefox-140.0.1.tar.xz"; locale = "ach"; arch = "linux-x86_64"; - sha256 = "8d3ad9d248cfb8914fdd8fbd2060b019bec1df66c1fcf6a349ca6e016ac73b13"; + sha256 = "8ef64f67276d32d6b01cd23b5eeda6e581604d989ab34c85764ff1dcf9a316b6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/af/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/af/firefox-140.0.1.tar.xz"; locale = "af"; arch = "linux-x86_64"; - sha256 = "df92ddb1447998d2de420d57059ae92cb7d9f54954e8141b589f74d86e93292c"; + sha256 = "552e8ae034fa2d4cadc6c01807509cdba447a5d2e31840d88c54beec62d9db55"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/an/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/an/firefox-140.0.1.tar.xz"; locale = "an"; arch = "linux-x86_64"; - sha256 = "9aeb48cfaa07d5dda4f127d659471554922568cbfb1739263393c1fa00910f2d"; + sha256 = "7b5cb58a4dcc2cc7a3b6b3156add00887b3f681099097c6e5e4642798185e4e0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/ar/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/ar/firefox-140.0.1.tar.xz"; locale = "ar"; arch = "linux-x86_64"; - sha256 = "e38b2a27e79ab92104dad9786a0bbc42548669d6fe2a1f2a5d2bd010ead64b19"; + sha256 = "faf25b77c9f867a020bf3fe6c2152c369d7de049ff87d2110a93a0fa3db429ee"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/ast/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/ast/firefox-140.0.1.tar.xz"; locale = "ast"; arch = "linux-x86_64"; - sha256 = "134d2a027f695d751ec1c0e38f26f6ffcde013245d33baffd469fa5bfa87fa14"; + sha256 = "8e6ad43e36c7bc94e3d519af5d6eba1750c6b8f6e0ce412b3da32bc6194970ef"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/az/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/az/firefox-140.0.1.tar.xz"; locale = "az"; arch = "linux-x86_64"; - sha256 = "66675677db100d212be5f638d2ebcdc80bfd9b36662e74d800d63d1de307fe58"; + sha256 = "8a67b4336797398e0a7621721c9c850b3c819a572b51366079cad420fa7417a0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/be/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/be/firefox-140.0.1.tar.xz"; locale = "be"; arch = "linux-x86_64"; - sha256 = "2d9a00717dfeec4a2f9f9c8ded08177f806fced5a327df562d9bdebe2021b645"; + sha256 = "f1bb0ee9fa8f89e653cc0390d299fde2298483ac8e5afdff2ed50d2c3ff4a5b3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/bg/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/bg/firefox-140.0.1.tar.xz"; locale = "bg"; arch = "linux-x86_64"; - sha256 = "7593b6b2d76009aa9669b9d75eb4c3dd9d3f2da3f89fab5a2c382ea1ff2ca61e"; + sha256 = "1e21255e0be3534ce96a2517a3e8a7ed9950e3dbec0df75c3a4fdba53498ba34"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/bn/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/bn/firefox-140.0.1.tar.xz"; locale = "bn"; arch = "linux-x86_64"; - sha256 = "8a523c11fac1832daed23bd7299e70c98ed664dc5735a3ff56281d5b3b466702"; + sha256 = "a282ade373181e2f5194d2c94c67302c8db5d3b89978c188a6a543d711243a36"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/br/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/br/firefox-140.0.1.tar.xz"; locale = "br"; arch = "linux-x86_64"; - sha256 = "39e154f399b8a0f8d33505b9b4cee9107a953ede49e633339b84ce034c547542"; + sha256 = "09dbc962aec54d7083335d83f5db1c2b08e726f3026ae679a0915f1402f20299"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/bs/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/bs/firefox-140.0.1.tar.xz"; locale = "bs"; arch = "linux-x86_64"; - sha256 = "e6bb1f62f62a285ffeedd76cbba32fb36946f3034f11f8024e3397d79eb10edb"; + sha256 = "cf5f5b7560d8dcbce6c317d662f254b7e0478917548072d528ae5e6bdd12a0b9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/ca-valencia/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/ca-valencia/firefox-140.0.1.tar.xz"; locale = "ca-valencia"; arch = "linux-x86_64"; - sha256 = "a9ecdcd7f3d5abab9e1dbbc08974a7bd125a3dca4bb5d50b2c5f6a67c00ae9ab"; + sha256 = "0b2bd97f19997f63575ac317ccaf69f6ae1268f41948c6e5db10301e815f0c2d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/ca/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/ca/firefox-140.0.1.tar.xz"; locale = "ca"; arch = "linux-x86_64"; - sha256 = "8d795bbf146652e3adaabbc2eac1293698095272ed62e2bb83b01066055a651c"; + sha256 = "02d193e332879d15942af62028c41bb5d619294c891aa1809b367290723e483e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/cak/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/cak/firefox-140.0.1.tar.xz"; locale = "cak"; arch = "linux-x86_64"; - sha256 = "27a4deda5c24b5d35fc1ddf899848ee07cfb65380e974efe60aed88407535f28"; + sha256 = "dea8e78ac7f974a518501018f5b65589174e2b2022a3565d07f60d40ae6a6e32"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/cs/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/cs/firefox-140.0.1.tar.xz"; locale = "cs"; arch = "linux-x86_64"; - sha256 = "bdb36636dd031d6aeffad41e54931671f96bbfae37a3eaa7714dc3c4079eab0c"; + sha256 = "023feb54600698fba0b645c08532049812a77f295f57df423c3c375275a53df9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/cy/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/cy/firefox-140.0.1.tar.xz"; locale = "cy"; arch = "linux-x86_64"; - sha256 = "841a947889747215a01a25113ca803acdd937a3d046aa0ba6cf419276165d7dc"; + sha256 = "d80467e6f37cb62a93060edab55ccb6af0b5e6df247e00f5365ca30331ec152e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/da/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/da/firefox-140.0.1.tar.xz"; locale = "da"; arch = "linux-x86_64"; - sha256 = "b69a78fcce24e1a84c3781c5a5d94bc3c5abfaa13fb9a4e2a05e4fc4c5d3731f"; + sha256 = "292833cf4fc5f527f9f8da14a5d7b7591d2cc4d397b5cb852f2ae24b0b704070"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/de/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/de/firefox-140.0.1.tar.xz"; locale = "de"; arch = "linux-x86_64"; - sha256 = "30dd36b419f875ea499f95b858801d781d83d141c5f16e4c1a2422d309ddcec6"; + sha256 = "5465c773bdc150550eaa26ab744e7b20cfd3ca21f4b1fa004c0627e6ecf14e35"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/dsb/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/dsb/firefox-140.0.1.tar.xz"; locale = "dsb"; arch = "linux-x86_64"; - sha256 = "3cf270312ce09b888aa23078cc9b7075e078ed198a49e8f64cb513291050ade7"; + sha256 = "7da9669d9acf0fdbf52efdac2d3d68ab9fdc584193f375e98bd1712908fe076e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/el/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/el/firefox-140.0.1.tar.xz"; locale = "el"; arch = "linux-x86_64"; - sha256 = "ceac2700039c86f4ad25f36aa1fd032af1f5cbcf63a499fb85e25b143ffe53c1"; + sha256 = "97e3cc3ade43ba391039d6de207cbff29e8cc128778499f3c0e7e610d2a363f8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/en-CA/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/en-CA/firefox-140.0.1.tar.xz"; locale = "en-CA"; arch = "linux-x86_64"; - sha256 = "bc256ad2e518df693ee8ebc38b39dda57f52e592bfe18eb86592fb302bb45421"; + sha256 = "8aef0f633616cb2d341da8b6a1dabe9c391cccab128d051708c5038ed4ae2de4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/en-GB/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/en-GB/firefox-140.0.1.tar.xz"; locale = "en-GB"; arch = "linux-x86_64"; - sha256 = "1953ecad7b30d249639ec06a5dd3977cda0ebe873eff36b368a96c80735a2e8c"; + sha256 = "e9dea70cec907d2633203d696da7c13f169510ba11e3b8627c4fec6b2c5e8dec"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/en-US/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/en-US/firefox-140.0.1.tar.xz"; locale = "en-US"; arch = "linux-x86_64"; - sha256 = "ca3469774734743b878bca2cfb7efb7b8a8eb4a3c15c2f1f427fbc0472ad3f6e"; + sha256 = "81596b5061753e1524a3aa41512aee667ec34eac24abd52cd919c759a90a2a60"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/eo/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/eo/firefox-140.0.1.tar.xz"; locale = "eo"; arch = "linux-x86_64"; - sha256 = "c62d7692fb055aa6343c40a2d83530a87d3e48676c32a6b4b263988f8a5d033e"; + sha256 = "42bdd9757f9f84725e01e2e32ec75ae070c90292887dcc5e481fd56f5f194c56"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/es-AR/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/es-AR/firefox-140.0.1.tar.xz"; locale = "es-AR"; arch = "linux-x86_64"; - sha256 = "a14e808f3d7138cce8fb02d82a75277eb806c4dfdcf110c3436b484abb40e54b"; + sha256 = "78858254a6c348a63d42aff649ee6df46058d587072b7ec08c64b43cf71739a2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/es-CL/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/es-CL/firefox-140.0.1.tar.xz"; locale = "es-CL"; arch = "linux-x86_64"; - sha256 = "61e03791900929469e4728a9c630147f68b4e0081e17740479c506162c21b955"; + sha256 = "d1da5214ee81bfe48d55432b57befbb3ef9f20109e187083efe88c1e4aaa242e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/es-ES/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/es-ES/firefox-140.0.1.tar.xz"; locale = "es-ES"; arch = "linux-x86_64"; - sha256 = "a05f2eebffc138dbfe7ce0b86753c72b53a9323be93fb0dcd0d7a8c17517666e"; + sha256 = "c75e608e9f24c695f095c338671df7de46c17554e2a5fa58516db5289148885d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/es-MX/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/es-MX/firefox-140.0.1.tar.xz"; locale = "es-MX"; arch = "linux-x86_64"; - sha256 = "252cbb08be86d3e8a7b8c4866c019e9a13dd7b76921c9cac0b9919fbbcb2caed"; + sha256 = "170a97c087aeab76ab8d9ab660259e5477e312bc0bf8cf481ce773534c22fa6d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/et/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/et/firefox-140.0.1.tar.xz"; locale = "et"; arch = "linux-x86_64"; - sha256 = "3c246bed857b84bb7e283051e6524a08e9e7c2c24b45e0ee02c43424e609ff5c"; + sha256 = "96950653c0d8f61a7e623135e68562846cc692aac218bf0b7411d37807837a45"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/eu/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/eu/firefox-140.0.1.tar.xz"; locale = "eu"; arch = "linux-x86_64"; - sha256 = "849688427d922c8c539d011121fc2af6c1535a8e127195832e869db0df94ea9b"; + sha256 = "09f3c8644636d16d6034dd46f381cda7635d373aa6504aba1a85feb0a57aeb43"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/fa/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/fa/firefox-140.0.1.tar.xz"; locale = "fa"; arch = "linux-x86_64"; - sha256 = "1ef712b9624124fcac4bf8d76cf7951e569b3fd19bdaa4dc9e66092a60392f15"; + sha256 = "ff54af504fee501e6f662cd9a39ebc6e129a82b64d067ee3217d88e379fb6e9d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/ff/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/ff/firefox-140.0.1.tar.xz"; locale = "ff"; arch = "linux-x86_64"; - sha256 = "dc743506e60ea801c729b37fc9f169e659b51b1bc58de8b93e49f214b76d8a95"; + sha256 = "e89f9c1f638bbde6b9e75fda6468f3c0ef68e8104bb546e48c934ae2705d3ba4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/fi/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/fi/firefox-140.0.1.tar.xz"; locale = "fi"; arch = "linux-x86_64"; - sha256 = "d10ad89ad355c6a369dd2711db04a3ff4a011f8deb14017a7b4cdc0aec9c0b63"; + sha256 = "6abf7a1b0e15f5ce85d8c99cdf96a448fd1e1774e1e31b599cf49bfcb71dd4a4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/fr/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/fr/firefox-140.0.1.tar.xz"; locale = "fr"; arch = "linux-x86_64"; - sha256 = "a3e9d97ef8a1b408cb7301e35ad26e9966372541c3e0d4a2be3608434549acb1"; + sha256 = "d63ec8cdec98d277acec8b633bd3ca45586fd0707d45177f22e3eef1530c6b21"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/fur/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/fur/firefox-140.0.1.tar.xz"; locale = "fur"; arch = "linux-x86_64"; - sha256 = "7dbd0829a3b719fc2fcc3d684424f31b50c0394be4d329e061912f32fb48f226"; + sha256 = "ef001f0bf457348dccf127d38c2563daab0f92c6e5db1feb53ea97e89c9094f6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/fy-NL/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/fy-NL/firefox-140.0.1.tar.xz"; locale = "fy-NL"; arch = "linux-x86_64"; - sha256 = "9392092b730e7c8d6b31f0bd238dbdd6fae5bc5946566b79d4a5eccc49679e46"; + sha256 = "7ed13a8bf94916e9f9477ea8818ab027c487ff05d6fb0bc689329a0439660129"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/ga-IE/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/ga-IE/firefox-140.0.1.tar.xz"; locale = "ga-IE"; arch = "linux-x86_64"; - sha256 = "02661776d78c34ebce68fc8e9212a701929bc903f98d7992281a55ab3106fefc"; + sha256 = "660c1ba4e4d94affea5750ffd4ce824ab52a0482cc572a017dbf3df9773f5f2f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/gd/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/gd/firefox-140.0.1.tar.xz"; locale = "gd"; arch = "linux-x86_64"; - sha256 = "73e35e70ede169a0a54e3511107c9e9f956c0ebfb864234c55c166a4e7808c4a"; + sha256 = "9617ed0706c021d31af9a5d7e5f7bb24b977b7280065c987172010837f840cd1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/gl/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/gl/firefox-140.0.1.tar.xz"; locale = "gl"; arch = "linux-x86_64"; - sha256 = "830e1df21a6e651be8b1f5f6fc09ea85ce7998c70ccd2f35ebd261ec6751f782"; + sha256 = "c805d50f128f6b63105f6ab512ed9c75815b075f5456f0d330e09f2917c87b7f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/gn/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/gn/firefox-140.0.1.tar.xz"; locale = "gn"; arch = "linux-x86_64"; - sha256 = "383fd396af8bed91630f57957bdc4a32d7823d2f11aada20da4faa327b0d9d06"; + sha256 = "ada99ec81518331833b225bd4d10aca3476f688872fc737bcfee9e2779653c83"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/gu-IN/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/gu-IN/firefox-140.0.1.tar.xz"; locale = "gu-IN"; arch = "linux-x86_64"; - sha256 = "f96beb7adad112dd44fd17987eda338f380d81d6ada43bb3314f45b17e108de9"; + sha256 = "792e73559cd4fa55bf6e1d805b212a2326df268d8fb851d17bc984292fe89232"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/he/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/he/firefox-140.0.1.tar.xz"; locale = "he"; arch = "linux-x86_64"; - sha256 = "091ca28870c0c7d4a885ef4984a33da727776ec67407708a1865bd3da5c1f1e6"; + sha256 = "b1f7488a0ef829883d6a4c22c14ee67a4d9d504c962b4202d5b515c3a8814bd1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/hi-IN/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/hi-IN/firefox-140.0.1.tar.xz"; locale = "hi-IN"; arch = "linux-x86_64"; - sha256 = "0015818d803ad2d7057c6bbbbaac851c5af4f444b54ddf84e0f3922c42124922"; + sha256 = "782a827721ae1b36cb5fc65127bebf890d09e6bd25215c134b69e8e564c6524e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/hr/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/hr/firefox-140.0.1.tar.xz"; locale = "hr"; arch = "linux-x86_64"; - sha256 = "23153918ffe5fbba01b7fcd9678344f01ed173df05098ed8f4748f0e952282c6"; + sha256 = "bf84dedcb95a10a6c1c03ff3e2c7566f40d5f4644259004d6d337ea1c2e838cc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/hsb/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/hsb/firefox-140.0.1.tar.xz"; locale = "hsb"; arch = "linux-x86_64"; - sha256 = "1d02b4ac6a84c19aaf704b968ebea63362a1832071f06d8bc3c971c1fcc78675"; + sha256 = "a5853b83c3712428bb1aeb1957c1f14a977327b6b2c9aed17cb0afb4df095a8b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/hu/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/hu/firefox-140.0.1.tar.xz"; locale = "hu"; arch = "linux-x86_64"; - sha256 = "46f8e6432511825872c135f9c4a28357b5f6be71fb9a402cf74d4c563ab83c4c"; + sha256 = "e743a640439e08ffa4c0841fbda232fc9983c3f7bd5e26fdae3e772b18c2d34f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/hy-AM/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/hy-AM/firefox-140.0.1.tar.xz"; locale = "hy-AM"; arch = "linux-x86_64"; - sha256 = "225bd4a5220c444e2cadf9534e4f029dbd243f1807a75099ca52cc2ca9433876"; + sha256 = "6626d4dbe3d8e1040f1011f123e5eaf2a466e28feb3366f4ff139b8498ab1546"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/ia/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/ia/firefox-140.0.1.tar.xz"; locale = "ia"; arch = "linux-x86_64"; - sha256 = "7186d41c11410355c485a63c93c26db5be53ac4809c3f8b97751ba50ce719365"; + sha256 = "04b4976426e32e507037f9324b30683028e11d9e44d99b094c04bf0679cef709"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/id/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/id/firefox-140.0.1.tar.xz"; locale = "id"; arch = "linux-x86_64"; - sha256 = "f02092fc917e28764c3ae7de11f710105f2333e06553399775e7dce443027c11"; + sha256 = "dd5ef79b8d2cf86ee3177b803b5ad0e4382f81b9592aa88fe2ad001a8523df81"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/is/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/is/firefox-140.0.1.tar.xz"; locale = "is"; arch = "linux-x86_64"; - sha256 = "2b58ae0c0a4deb82ccac32b9099b99e1f33fdea1653c9428f7bdb22ea6359a43"; + sha256 = "adef304e916ea3e0d77e6e792052ce34bf7361d517b211cc9b13e74c504ec66e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/it/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/it/firefox-140.0.1.tar.xz"; locale = "it"; arch = "linux-x86_64"; - sha256 = "7fe96baa0b96be453da1726ceb4e61e6094bd0555f7613588586faac6193ede9"; + sha256 = "5767277059cbe3e5b2d2d096f165e424fa142c65e0f0ccdc91d5ec9e0bd15a74"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/ja/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/ja/firefox-140.0.1.tar.xz"; locale = "ja"; arch = "linux-x86_64"; - sha256 = "ce168d6816fa268761cbc40e5986b7585d0a7d934c04007c75b6d7e0ceaa8049"; + sha256 = "105d5b14c7c183ca51c411ef4321690175542c0267d95bb9ce4401e7490fb6d4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/ka/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/ka/firefox-140.0.1.tar.xz"; locale = "ka"; arch = "linux-x86_64"; - sha256 = "52c7f357775a89a31b1296683cbd3f108d7078273361c9db233e7fb81f1ab30a"; + sha256 = "01e4fac64480fc34bd46634d185c40e2c720d9d4223cf693362a7106876e0708"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/kab/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/kab/firefox-140.0.1.tar.xz"; locale = "kab"; arch = "linux-x86_64"; - sha256 = "7ab9d13435816a8e31c380c3f7e3e2d8b7d0a5ae8ad113c047992fcce7b3ed0d"; + sha256 = "91d920b8a77426d0bf7cc58a4b97fc4f4bd76bd453500b7162029b8710a13a60"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/kk/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/kk/firefox-140.0.1.tar.xz"; locale = "kk"; arch = "linux-x86_64"; - sha256 = "faeaba4ddd7c4f47535dec8ea2b1fe1d551024559331e7281a542a1440e235d3"; + sha256 = "370c5591dff00f7e97452fcc351ec81d376341335928f7b86bbdae15358f8d83"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/km/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/km/firefox-140.0.1.tar.xz"; locale = "km"; arch = "linux-x86_64"; - sha256 = "186844b2cc48a1123f6ed8940debd0a3682200977b074d42ca12caa7dd9c4a98"; + sha256 = "7f230bca1b4de308f27c76fbcabca9e73e6b23abdf9230db565490e1f1a99d8a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/kn/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/kn/firefox-140.0.1.tar.xz"; locale = "kn"; arch = "linux-x86_64"; - sha256 = "02e8d601cdc803b5c811448642a11427b99e3aa95049b0930a4e04bc2fcc2056"; + sha256 = "b279278917ba7d4c2b8ac17cbf7bc154732ae01779df2bbfbc06bdc7ae829430"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/ko/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/ko/firefox-140.0.1.tar.xz"; locale = "ko"; arch = "linux-x86_64"; - sha256 = "63191dd6dd2d87fc4396f30dcfc558de43b21d7b2d5e0340615978e45e428120"; + sha256 = "dc361845d7b260e7bf704210ca297e7472a8ba9d53bc51f1a2d92ab7761ea59f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/lij/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/lij/firefox-140.0.1.tar.xz"; locale = "lij"; arch = "linux-x86_64"; - sha256 = "e4651aee6e4fa16d6588ba622a076e4f666dc72aa24cceec1205355098a0418e"; + sha256 = "70369cb8e9e3ec79937722d2c43ec147e8788de3dc90f32c811e6799b85be77b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/lt/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/lt/firefox-140.0.1.tar.xz"; locale = "lt"; arch = "linux-x86_64"; - sha256 = "9fa31c718110f2f0e8796381ee5597eb470789f7efd29794a24421c0eadd33e2"; + sha256 = "325892dc2807acfb517696b3afa103b54d7464527ca87f6191f1b15711590334"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/lv/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/lv/firefox-140.0.1.tar.xz"; locale = "lv"; arch = "linux-x86_64"; - sha256 = "4df334ded6dd45fbfb851c1f7e1ddcd32d9f18d9f0c7de854cdbac8f30b537fc"; + sha256 = "ef104f7e5207549b6ee6f47c16af9b1befac1fdbc29cc9b9ef36ec282cd95a04"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/mk/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/mk/firefox-140.0.1.tar.xz"; locale = "mk"; arch = "linux-x86_64"; - sha256 = "76469e46b1a5f96ed2d3f5ffc7e04b8091b19d76991b92470b4e6a1dbbde9361"; + sha256 = "8a221dd0e42a85a5d2c3ec5ea372fd3a6895a033c4ce6ddc7cd656f463baf482"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/mr/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/mr/firefox-140.0.1.tar.xz"; locale = "mr"; arch = "linux-x86_64"; - sha256 = "c9bec0c7ffe836d68f457ea051d486ef8d820935c9e56b0e3b051e587c291ff2"; + sha256 = "c851f103d73c7275864b393cb1d60a147fee22cddf9ab2ab185e380c6427d6da"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/ms/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/ms/firefox-140.0.1.tar.xz"; locale = "ms"; arch = "linux-x86_64"; - sha256 = "f86e7cc3cd6b7354be0e0937492bea873c3ebe266b11a57ebcf78e5e2e0c3d81"; + sha256 = "f18c4b70d417294779aa4c4e69b99e4ecf65eb911d27e1c6118280b0a0f4ef99"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/my/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/my/firefox-140.0.1.tar.xz"; locale = "my"; arch = "linux-x86_64"; - sha256 = "1c022a0b6833cefa4b1b86dbce08ef8d19c3f4cbd338838ea92e6d36e441d632"; + sha256 = "2bf5b950256022d46e25bb8f4c4c7b6df31e65f6a6470372444f00e4da178d50"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/nb-NO/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/nb-NO/firefox-140.0.1.tar.xz"; locale = "nb-NO"; arch = "linux-x86_64"; - sha256 = "cc50663022fccebdc2913d51b4dbd15296b092bcd77de05587a25201c23a18ec"; + sha256 = "019532db854cb65ef0cb4e5a3c894f02621ef590abec033c5a880257ac1e5eac"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/ne-NP/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/ne-NP/firefox-140.0.1.tar.xz"; locale = "ne-NP"; arch = "linux-x86_64"; - sha256 = "376e34a8162314fee8681da63cf0fb32ec2293d562ff5e98e591b08147290d29"; + sha256 = "b8afa6d673cbb0a957251a0e7c30d5790fef5e19bf53ca008faadbc2c014128e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/nl/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/nl/firefox-140.0.1.tar.xz"; locale = "nl"; arch = "linux-x86_64"; - sha256 = "7de2bd58b3360efa3de7c4e0763c1ca1c4ee6f99cc30297b69b9cee2fac62dad"; + sha256 = "1d347f6b8e8c73e1bc513b58f846d809cbd80ea0c21430c5a866d1197573afa5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/nn-NO/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/nn-NO/firefox-140.0.1.tar.xz"; locale = "nn-NO"; arch = "linux-x86_64"; - sha256 = "9c686e8981c259ce228640c3553da8c239a4aa487ea0105cbb9507ca1dde4099"; + sha256 = "be5a86b8cfc902d856ef1c5194f7c27f7b4d19acd1b8b1b18112c88578c09030"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/oc/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/oc/firefox-140.0.1.tar.xz"; locale = "oc"; arch = "linux-x86_64"; - sha256 = "17c751b0cb7555f8627e5813332e548cc2477168163cfa0ce2c8617baa11918a"; + sha256 = "04039efbbc1b4697a0788ef08aa8afdf23580c6ee5d100be1051c27d680e7d73"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/pa-IN/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/pa-IN/firefox-140.0.1.tar.xz"; locale = "pa-IN"; arch = "linux-x86_64"; - sha256 = "abf85546602843db28fa42736dbd62023905ae079ccfac51ccefda44b861d6e3"; + sha256 = "0991c31ae89a10dcee38090412ab39e38a9c15cd07bde14f215d26de23749ec8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/pl/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/pl/firefox-140.0.1.tar.xz"; locale = "pl"; arch = "linux-x86_64"; - sha256 = "42d814bcc07efbcd1fb2b9dafb98fa0caf3607ca79da45beec2f4acbbb452dbe"; + sha256 = "605030e4757b8a8af5bd7b674bf47911a1b90b0707afe646001e6fbb534c34b9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/pt-BR/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/pt-BR/firefox-140.0.1.tar.xz"; locale = "pt-BR"; arch = "linux-x86_64"; - sha256 = "60770d39dec007279d6396838a3fadb9a09dc5cb704548a26c83c5220c0e9b94"; + sha256 = "bbc373ce610c28c75200ea59ec07e9e4a8bbe86dcc879a34453d763278a3cdda"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/pt-PT/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/pt-PT/firefox-140.0.1.tar.xz"; locale = "pt-PT"; arch = "linux-x86_64"; - sha256 = "9984d4087c4e770d08edbd0e8e3899e25bb2567b165f9697ce55588ccbbca6ab"; + sha256 = "110bc0276e09cc41e4bae4c197f349a89464bb81b21fd6a8fbbb83925337fca3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/rm/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/rm/firefox-140.0.1.tar.xz"; locale = "rm"; arch = "linux-x86_64"; - sha256 = "e127b9d57291b04bdd09b9bd3965d0dd9932726554980c50b37e59e8119e9ca5"; + sha256 = "00c03839d6945dd9051ce4d47a7eb1ff3f3bfc95506a4a2984ec7b363729f0d6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/ro/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/ro/firefox-140.0.1.tar.xz"; locale = "ro"; arch = "linux-x86_64"; - sha256 = "a52cb846b9bf0640022d9c7cdf225bd8f6e7391cb3de3d144fb7e72b6cd7c3af"; + sha256 = "a5eccee0999b4417187a5bcdfd825d7f583546105ee846b1ff2eefd2f416b19b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/ru/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/ru/firefox-140.0.1.tar.xz"; locale = "ru"; arch = "linux-x86_64"; - sha256 = "b350b95ebb2474018b5ad2a7ed8c3a24797b93a344fa4e0c5b7c36faacd8d925"; + sha256 = "ebef4d919c75f97aa33efc28b00242b33235c82a3e1121189804c793387e3e63"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/sat/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/sat/firefox-140.0.1.tar.xz"; locale = "sat"; arch = "linux-x86_64"; - sha256 = "b45bb2bb42ab1a7ddef59aa8d4e7127fa4119cbc3f2c991fa66d56fc1a3bd80e"; + sha256 = "db98176a3860e4c04ecfa0ebbaf2162d5f51f04b5cd1cc89b40d87f0cb5c3aec"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/sc/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/sc/firefox-140.0.1.tar.xz"; locale = "sc"; arch = "linux-x86_64"; - sha256 = "8c2b9298aee3939859a7e16796e96453e302448c50ec113cf0b83a8cb3f631e6"; + sha256 = "eba74fc0f6a73ffb345a97bbddece9717cab715fa99e9db0e93d0b73e5806645"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/sco/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/sco/firefox-140.0.1.tar.xz"; locale = "sco"; arch = "linux-x86_64"; - sha256 = "9ea7106a5014e3bc3eaeccc120ed3a4e288f20c935ecd6973c6e624777e0d919"; + sha256 = "425a274889826f6687ff98e02843f97045ddd39a5c061babf9871ffb5203bead"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/si/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/si/firefox-140.0.1.tar.xz"; locale = "si"; arch = "linux-x86_64"; - sha256 = "959fc2f8aa6e471a23d63bd4ca319583de066c0ccc338968fcbc446653d4050d"; + sha256 = "ea0652c77a53cdb9c1ad74aacc460ddf224dc4adc84defaa73daf86bbebd7477"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/sk/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/sk/firefox-140.0.1.tar.xz"; locale = "sk"; arch = "linux-x86_64"; - sha256 = "482a7fe99df4cb564ac0b87700758cf57ae66ee0ce763102b9b3e433f0fae203"; + sha256 = "021436797c02cfa7cbb95a2396ebf5b8f4926e6df70c243b3a86e10ceb65a345"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/skr/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/skr/firefox-140.0.1.tar.xz"; locale = "skr"; arch = "linux-x86_64"; - sha256 = "371f21950abe4bb4cc5b6d19a3aed37899791fd546c08a7c35a75a3d018ad2d1"; + sha256 = "1e465afebcc4980b1d0ba78cebe96dfb397bdeca73c59e6ba88cb22037abe658"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/sl/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/sl/firefox-140.0.1.tar.xz"; locale = "sl"; arch = "linux-x86_64"; - sha256 = "2d66e0f786a0950d5f7ebf13984ea449c0c279946b7853514d27b10c3ec8564c"; + sha256 = "166bf313e453bc83869a935e456281947c393557459b6516f7c8f1534e95581e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/son/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/son/firefox-140.0.1.tar.xz"; locale = "son"; arch = "linux-x86_64"; - sha256 = "640c413f78778af96a8e00e7055a2e2461f96429614626fead6350a008bdab9f"; + sha256 = "2785181db1161e7fba0cd638b5722c15adf6c4f718a9719a027fa9ff1fbaed1c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/sq/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/sq/firefox-140.0.1.tar.xz"; locale = "sq"; arch = "linux-x86_64"; - sha256 = "96aba308c3bc6f60440cf6ae9bfcbd5cc3619caf806b75d61e8281e06f2c3590"; + sha256 = "6d88c6a5db7b6131e076903658f28d6a8f4ab55d20c6b2ec5b06e550d68d3f1e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/sr/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/sr/firefox-140.0.1.tar.xz"; locale = "sr"; arch = "linux-x86_64"; - sha256 = "a0eac5cd18d82350ba8ee8d98498a3bd6b83223269257e89d7ef72c625891252"; + sha256 = "4bb3b9e96fe5ab8da7cd59a8b8938134fc657a3449d1372d5e557d2c96d0917a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/sv-SE/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/sv-SE/firefox-140.0.1.tar.xz"; locale = "sv-SE"; arch = "linux-x86_64"; - sha256 = "88443bae7fb75700d5ebd1dde43e87f3b952950f4dd1f66d72b0b8642b5263be"; + sha256 = "bb2b76e1aea430dd6bf456de4d94bb4468b5270036f34d29ac891796724c1bb8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/szl/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/szl/firefox-140.0.1.tar.xz"; locale = "szl"; arch = "linux-x86_64"; - sha256 = "3dc8fbd415b091f83931f3c1ee100d252fa98cf23bdffd5f7a5f3128890f4873"; + sha256 = "62de8392a40473209eaa5b22199cdd00175e234b83d387d9dc12ccbcd61d1dc6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/ta/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/ta/firefox-140.0.1.tar.xz"; locale = "ta"; arch = "linux-x86_64"; - sha256 = "c93f8cf18af8ce43f823d9d3e335a990955fd290d56ae05ba0cbd86ff7057825"; + sha256 = "6c0ac342120edc948f016dc596324fc62ddba2d978620798065cdb43f5d918a7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/te/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/te/firefox-140.0.1.tar.xz"; locale = "te"; arch = "linux-x86_64"; - sha256 = "39467355eb95cf8e16792859b4127bd891df66741aa393ec18959a86f3607817"; + sha256 = "bcfe180773867ef93797058d6a7edc044c0fbc3b013382146178aa85af6c1c93"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/tg/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/tg/firefox-140.0.1.tar.xz"; locale = "tg"; arch = "linux-x86_64"; - sha256 = "5883e551dae197305b62afba282d6b47687fc39b2eb495a2f6245d58490765fa"; + sha256 = "889b071f6b7cf44fcb678471e871d02b1732871fc59d67d0e308be81fd71363e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/th/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/th/firefox-140.0.1.tar.xz"; locale = "th"; arch = "linux-x86_64"; - sha256 = "806451bd3a77b18aa57507670d2953488106f3574ba515fa1a957997d53b94e8"; + sha256 = "06880569da7447dafe0f2d1e64d6c39e4613e9b4af5a438745a313b7bdb7ad7c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/tl/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/tl/firefox-140.0.1.tar.xz"; locale = "tl"; arch = "linux-x86_64"; - sha256 = "244a31b6015f93b9f17058443f3ca61417cd786c80d8950aec8cef8bbf946832"; + sha256 = "a9bf47b664e7defcd03523f02edf9f64f467acda091c815a69ce5942b8469733"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/tr/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/tr/firefox-140.0.1.tar.xz"; locale = "tr"; arch = "linux-x86_64"; - sha256 = "f8ec9d2ff12f1d4ce85ad93900751e2635c773c66e5e64919703e51d301ee481"; + sha256 = "1c17ba73c4fbf7b002df276d3f457cc7fb9d33ff1b7be6e68ea7021c40f0cfb6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/trs/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/trs/firefox-140.0.1.tar.xz"; locale = "trs"; arch = "linux-x86_64"; - sha256 = "b9f19165e278665e92f2424b5ba99cf5d3cd8e87b6a6c0792e34997b54bb9fb7"; + sha256 = "12c5307934772a079212b12d43c1a21366935f1ccfe0b94845b47014ed12f0e2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/uk/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/uk/firefox-140.0.1.tar.xz"; locale = "uk"; arch = "linux-x86_64"; - sha256 = "999438a1c8b0dd17525823a84232161da0cdf3ecaf0d9e13871228a2cc299b38"; + sha256 = "a7881fd3e1a4c09b8eecd0577009d69f95632a9cfb0cfe49d3b980ec67749664"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/ur/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/ur/firefox-140.0.1.tar.xz"; locale = "ur"; arch = "linux-x86_64"; - sha256 = "354456f9a98f1d90cf32288847398ab8d17a2afd5a859f7f0e0778ea63e9a4af"; + sha256 = "11f3a8e53a9fca0cca095adc9c360d78b7e233942501ef2421855e03f17106bb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/uz/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/uz/firefox-140.0.1.tar.xz"; locale = "uz"; arch = "linux-x86_64"; - sha256 = "8061df4097d0b169fa93ff119d072a17137665df1452d67abe05ffb8dadd7754"; + sha256 = "5ccaa891da8b306a547c9be635d8194d33cddce7afaf53cb460481c05334d4d0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/vi/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/vi/firefox-140.0.1.tar.xz"; locale = "vi"; arch = "linux-x86_64"; - sha256 = "b87756572a3bc9e0b60a0442f0062ae7d6fc0e73d1c72960e3846b16326c38e6"; + sha256 = "a4b1a861ec6b20f5e03c5993f630239db4d8a76f37e10796a036d056febd3f1c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/xh/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/xh/firefox-140.0.1.tar.xz"; locale = "xh"; arch = "linux-x86_64"; - sha256 = "6443e1097ca4efeffa87813087eaad4ae4ec49626626d8b8ede3875b6843eb24"; + sha256 = "6ddb14382050515f1956b977a02c36a5ffdce824215740f5defec22ee00c3ff5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/zh-CN/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/zh-CN/firefox-140.0.1.tar.xz"; locale = "zh-CN"; arch = "linux-x86_64"; - sha256 = "e7c818ce275cf537e00fc30fe5b0064251c7fb217f069621151acad30d8c9bc6"; + sha256 = "82087bd7cc1c08428059948e242a40e4030ccbfdc2c564fef36163a878cd0f14"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-x86_64/zh-TW/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-x86_64/zh-TW/firefox-140.0.1.tar.xz"; locale = "zh-TW"; arch = "linux-x86_64"; - sha256 = "d58767c072db6a3bb4853df66881d37633ec38c82b3c52464c1991ef3d17f024"; + sha256 = "24545443d36833938dcec750d68b795f665070c208c93f2f45effdb05f9a75d8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/ach/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/ach/firefox-140.0.1.tar.xz"; locale = "ach"; arch = "linux-i686"; - sha256 = "99f2274dcee881024a23edf94dbb622e32b4fde414522c05c9835eeb603dc13e"; + sha256 = "81745c26c43c885ef5ad8541412b1ccfd6453a43f19d0256c16fecd370d18c2a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/af/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/af/firefox-140.0.1.tar.xz"; locale = "af"; arch = "linux-i686"; - sha256 = "98a9d5af13c01493e23e18f442f3277655b6adde9c765e817ffa6ca712e9bfcd"; + sha256 = "aab589c7d05fa36c02b8a02a9604534f656dd9637a4cc5917d161ee4fd8ef2a1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/an/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/an/firefox-140.0.1.tar.xz"; locale = "an"; arch = "linux-i686"; - sha256 = "5ab4e2e548449b02638ffb1ceb35b08b49a07ba5db0c0fe7cdff22370e407e15"; + sha256 = "dde7c78b01539cb7bce14c4712f4bcd0b870374570229c4ca7f2ca0ede799acc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/ar/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/ar/firefox-140.0.1.tar.xz"; locale = "ar"; arch = "linux-i686"; - sha256 = "ddddcaac3ec88a2d60dd2b1e535cb742c6f0f4440d5f5d516cd344073dc6de2c"; + sha256 = "67b99717df239f021281b87ab21b8f55292e9ddb853b1dd59d2834e8959afbbb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/ast/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/ast/firefox-140.0.1.tar.xz"; locale = "ast"; arch = "linux-i686"; - sha256 = "422458a09de3ce95137173d3fa36fb5d94088a42bdd678615b39a1fa4dd8e862"; + sha256 = "a0493ab300e9bdecae8ff755c3059c57f9d484db9de49268c333eb9d08359405"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/az/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/az/firefox-140.0.1.tar.xz"; locale = "az"; arch = "linux-i686"; - sha256 = "9c9b868eaac6a6e5d1962a9b7a3200f25bd2817ebb10472b32f66cfe53b17331"; + sha256 = "e3812699dcc6ae9c7fe51cdceeb6ee18a8c5477f4e27112b6a4d15e12fe8f3e2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/be/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/be/firefox-140.0.1.tar.xz"; locale = "be"; arch = "linux-i686"; - sha256 = "f8d9083a6ef6320222997d1a92f474a988faf8bc2f241787ddab9ca73dd7c59e"; + sha256 = "6fe37bb8869b7443913ef337493375c76bd73c76bd4a9ff979ee4fe59fb3575f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/bg/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/bg/firefox-140.0.1.tar.xz"; locale = "bg"; arch = "linux-i686"; - sha256 = "da4d5f2be41570032a1fe0c360cefc55ab765995d80e6a0547de5878f813b305"; + sha256 = "90e5dff93bd46c1285ab0273fd79c853d6f93bf99906ea9b98422ef0f12d00d0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/bn/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/bn/firefox-140.0.1.tar.xz"; locale = "bn"; arch = "linux-i686"; - sha256 = "4624ea48c8a520248ad8b795b2830049b26a8757f017a0a55f27f2cb33f3bef1"; + sha256 = "cc138c1bd4961f8e6b42d403e042edf0f9832643dcff3a8d8dfc4c267f03636e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/br/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/br/firefox-140.0.1.tar.xz"; locale = "br"; arch = "linux-i686"; - sha256 = "5da4ced73a0c4d08bf24ff4782ef657314f56417fb6916f4c6afa7ca231d49cf"; + sha256 = "ce545fa6eb3b32ad95f462b7c8eafc1434fdf958ee6fd13583177d071428d23d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/bs/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/bs/firefox-140.0.1.tar.xz"; locale = "bs"; arch = "linux-i686"; - sha256 = "5f4c472d9e74182b1b8bac91adbc4ac65406cad1827eacb381b6af6d55871410"; + sha256 = "c47e9b4d31633369d333cd3436fd5000ca9a5e8683d64aea834d246d78f13dd0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/ca-valencia/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/ca-valencia/firefox-140.0.1.tar.xz"; locale = "ca-valencia"; arch = "linux-i686"; - sha256 = "6ef7686f27a54877111e0c63f70a7aa3f507daed700b2532e67197fc65ab46d3"; + sha256 = "f3724c83b36cd4d287fec8aefbe28a6ec56fddab541cab5c0db0cc852fcf76c8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/ca/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/ca/firefox-140.0.1.tar.xz"; locale = "ca"; arch = "linux-i686"; - sha256 = "256ab028787596028fbf17bacbc5e68690856ba766786613391ec3dee4a8a726"; + sha256 = "00d5ed5dda013aec1b486b09c03a316db1ce7e6311530826c14acd41ca76d6a1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/cak/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/cak/firefox-140.0.1.tar.xz"; locale = "cak"; arch = "linux-i686"; - sha256 = "6cea377f66f0498afdc2dd2ead27b6aa4e5d464b5d3258e1e8ef6f7194547b23"; + sha256 = "be9781c89f5f0981fc6ef4ff33f6c17d0a53c1536559b388df3c9861f458ac0b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/cs/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/cs/firefox-140.0.1.tar.xz"; locale = "cs"; arch = "linux-i686"; - sha256 = "57196499777860c0f66343041778ba8bf3cea7c6c6dff4e13c24c9c56137efce"; + sha256 = "083c7fa7117b03d88f10fe0f1d47d1ac030b3ba30a158e5417a4351765c4f652"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/cy/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/cy/firefox-140.0.1.tar.xz"; locale = "cy"; arch = "linux-i686"; - sha256 = "7bdc0c597c3a2f67f76965f1e8c33cf055bfdca7e21dbdf4c9346546f7058abb"; + sha256 = "2bcef072993cb4750a442b52a7520acc281414e10eb76ffa9b2f55b530ac0fab"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/da/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/da/firefox-140.0.1.tar.xz"; locale = "da"; arch = "linux-i686"; - sha256 = "acf056df3d32ce46d3aa79891c4f8dd2c906c8dcc9b663f78ec287986c2a6b6e"; + sha256 = "c41f34a0cc7fc1d3deed61a4dc76fa6885c7df2e2f76589073e0a5b8febb2ada"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/de/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/de/firefox-140.0.1.tar.xz"; locale = "de"; arch = "linux-i686"; - sha256 = "10d59420bb3374a7b2c1366c1793aa6c5d2cf1a0beb4eb42211b773be5b49683"; + sha256 = "a3b7e12135e99890ad77688140990ffb71e24d259762280918519fcc390a9765"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/dsb/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/dsb/firefox-140.0.1.tar.xz"; locale = "dsb"; arch = "linux-i686"; - sha256 = "6e62619441b8a98c2e459a2e4d2aa6c241e7a32f7d56385cf77a84ae874b7dbc"; + sha256 = "81840cbf53cf8a8d2bc228b6c7fa17ec3fa59d6fb674be4f51aafe69c4dae7e7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/el/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/el/firefox-140.0.1.tar.xz"; locale = "el"; arch = "linux-i686"; - sha256 = "32cd5609c3d8fbbdaa4978968e4029963e567666fb3fa39fd51f442ae122d39b"; + sha256 = "d3c9c23e4ca58fb8fa3117ee9db67b0417aeba6c55d4d1146b42c8b96dac2497"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/en-CA/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/en-CA/firefox-140.0.1.tar.xz"; locale = "en-CA"; arch = "linux-i686"; - sha256 = "fb57076c723926004b4cc9f5471c4d5b678d506db45d456c77ec84590beebb2e"; + sha256 = "ef7a69e65114c59811cd003de66466fdc05276ef913024d60808eec1a294a3a1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/en-GB/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/en-GB/firefox-140.0.1.tar.xz"; locale = "en-GB"; arch = "linux-i686"; - sha256 = "662c9947885c66b6c17bff4a8032b23646c75ef787b26d8c2ae702312d221b80"; + sha256 = "86996f5da6d2248997527a55cd028b23b3128a3105d8358a405a04279c483558"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/en-US/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/en-US/firefox-140.0.1.tar.xz"; locale = "en-US"; arch = "linux-i686"; - sha256 = "47858cf7b8c84e7330fde38b5017a0a14c5cc07a75d5e3f90048b676f859ef19"; + sha256 = "c374dcbd99bd31545db9d3d719a19fb533a2105aac3df9274c854bb011889bbc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/eo/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/eo/firefox-140.0.1.tar.xz"; locale = "eo"; arch = "linux-i686"; - sha256 = "6e8e15e9762b77e8fa1eba301116718d30490917bec54c4ea554ed609992d43b"; + sha256 = "d2e9ac1e0c0825ff3e122d7dd6b27aa4116a87c1318569b3f6f399bbe5df0ccb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/es-AR/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/es-AR/firefox-140.0.1.tar.xz"; locale = "es-AR"; arch = "linux-i686"; - sha256 = "8fdbb210a7070d60796eed82b2062313a56c3fbece9566b22ed67c3bf51549fd"; + sha256 = "c4fac942ac2dedfb123849c931c3b45eca48d5f210b719829379b8414e07c700"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/es-CL/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/es-CL/firefox-140.0.1.tar.xz"; locale = "es-CL"; arch = "linux-i686"; - sha256 = "126ce4de025ddeef82b80a37dff8b996985075ddd2d00bc8cafd41057118fd01"; + sha256 = "10808bcaf262a9822f19096fb3293135b2102c8732cd4931ac36ca6d503ad556"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/es-ES/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/es-ES/firefox-140.0.1.tar.xz"; locale = "es-ES"; arch = "linux-i686"; - sha256 = "36852a0883d7a98312421cdffa6691b6ec9bef00c9e8e18ba08a4200a2343780"; + sha256 = "254ca00a0eb7da8d69903297025c6cf4ab72673928deba24a3056bb0b88d822e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/es-MX/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/es-MX/firefox-140.0.1.tar.xz"; locale = "es-MX"; arch = "linux-i686"; - sha256 = "671dbf88dbf626e29e25d8b8783fe48d439aacca73ffc343e22bf7aa8942ac09"; + sha256 = "fecd61c3bed1eb2c477565481c1eae0942da0afeabbd0781ef74f47f597dfafd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/et/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/et/firefox-140.0.1.tar.xz"; locale = "et"; arch = "linux-i686"; - sha256 = "110003386981b49407101fe8cd97db136fcd26a715cdbccd129bb9777cc932a8"; + sha256 = "acec4444d158fbf67f255653cc82c837bef8062125a1189e05ee557d4afcf532"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/eu/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/eu/firefox-140.0.1.tar.xz"; locale = "eu"; arch = "linux-i686"; - sha256 = "ccb34213d7668b7606b190c8748164a6cb881464a5ad8b29e3a99b99cf40dddb"; + sha256 = "9b9342ed61c3fb279f111198c96d65de5550e3cbf53014ce8673ae41829e0c3f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/fa/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/fa/firefox-140.0.1.tar.xz"; locale = "fa"; arch = "linux-i686"; - sha256 = "c36698575d278ef19186abf963abb8aac7e4b7d532c5200c67e2f4ecea3afb01"; + sha256 = "f83fc4ab070de0b5f6fc4c2df595017ae9cbfcd0e92039765411d547d972473b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/ff/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/ff/firefox-140.0.1.tar.xz"; locale = "ff"; arch = "linux-i686"; - sha256 = "5217a8c71d95b4efc49786c56338ba4360edb81b972e7f8e55d2ce1d77a53397"; + sha256 = "1db983222bef97e67ffe712eef63dffe1a7205fc50e69bf770a68997bfa7fa48"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/fi/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/fi/firefox-140.0.1.tar.xz"; locale = "fi"; arch = "linux-i686"; - sha256 = "615f222efa72c85bb6288e0ab58ca87d80042ac9ed122a9fcb284ff9fb062f5e"; + sha256 = "c2889c837bd0e8da0f4c0cc7de52233afc641f4bfa2375a251922713b7fa43ff"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/fr/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/fr/firefox-140.0.1.tar.xz"; locale = "fr"; arch = "linux-i686"; - sha256 = "74cec4b8e72c8cde2893ef6529ba3bbeb7e39f688a0ad16f56ea6a378a6c9972"; + sha256 = "a4dcee56da1976cddce142a3f06eac9650ca1eb30be89dcae84b073c5817d6ba"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/fur/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/fur/firefox-140.0.1.tar.xz"; locale = "fur"; arch = "linux-i686"; - sha256 = "f5151c0ed131e3df78ef7f2ef635cc34538060c8dd91035270581ae33a8e0d4f"; + sha256 = "bc607a3310c7155dc85664373c7ec19625fc8fe937f860af6f320ad282702850"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/fy-NL/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/fy-NL/firefox-140.0.1.tar.xz"; locale = "fy-NL"; arch = "linux-i686"; - sha256 = "459596a691af7ab6404f0bbc486edc5ab0800ee144e493ef9884200cf4523ea6"; + sha256 = "0236a14206e9d0691bde518c89d9d6a0edf3e45545ced6c8743fa506cb608863"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/ga-IE/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/ga-IE/firefox-140.0.1.tar.xz"; locale = "ga-IE"; arch = "linux-i686"; - sha256 = "f5fb84c5504982b199262d9a9aa39c4d827e9a772dcc819dab70de96de3a2fd2"; + sha256 = "8e20953a6a9ca9065f87009e6122785ad507b13fbeb39f1ccedc06d2d9486971"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/gd/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/gd/firefox-140.0.1.tar.xz"; locale = "gd"; arch = "linux-i686"; - sha256 = "4659a979ae099d2dbbb8a4587e7e61b948bf755540e7d866f9e7f440bb035629"; + sha256 = "69f59914d905f6248835c17e99cb16dc71464893c8767df71eec993de2bf0db7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/gl/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/gl/firefox-140.0.1.tar.xz"; locale = "gl"; arch = "linux-i686"; - sha256 = "ce6a2f7c4f0d5b4582ecd25cab938466bbc423740ebe43e15d0bba9c09d0c441"; + sha256 = "914dc1e196f1e4e8610ea8ae18413c0d858b0349e8723365ade4989702ed8554"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/gn/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/gn/firefox-140.0.1.tar.xz"; locale = "gn"; arch = "linux-i686"; - sha256 = "0a3012c44a4d3e03ef3143c3f0fc58ffa06978f8dde2770f50903ca274d4988d"; + sha256 = "e1a8ad71c139ea3158671c1e6888669e27ad9a0c14e235f84f921a082a71112a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/gu-IN/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/gu-IN/firefox-140.0.1.tar.xz"; locale = "gu-IN"; arch = "linux-i686"; - sha256 = "1a93ef6a47879c1c9ed3ad8d4914034093b8578724eca0d71f021ce335dd32ed"; + sha256 = "6f223383534739fdc87571d1852614dc8e6689bd711dc4cf0d80fca0cb55dcd3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/he/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/he/firefox-140.0.1.tar.xz"; locale = "he"; arch = "linux-i686"; - sha256 = "c4d69b5bb771dab6882f5c795f7a23da2af487cfac9849c1db37f06f16e36125"; + sha256 = "f912bd4772a0236338048a2aaf65fd00f7af35dee1b27bbe4490f3221f3114c3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/hi-IN/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/hi-IN/firefox-140.0.1.tar.xz"; locale = "hi-IN"; arch = "linux-i686"; - sha256 = "fec1b96f0bbd5ae95ad054cff0d7deff78aa6991ceb99e4d114d7d113cb0ba71"; + sha256 = "9f124027c2c1d7e469720a82ef392b1e4a76ebde2071321360385c3a85fd01d0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/hr/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/hr/firefox-140.0.1.tar.xz"; locale = "hr"; arch = "linux-i686"; - sha256 = "486aada151ad36866be99b374fac437edcf34b5613a358ed26d79fec7581fcff"; + sha256 = "91bb68f4a183e73cfa3803e3709ca86ffb09f979d43c1bdea85cb455cf4ed438"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/hsb/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/hsb/firefox-140.0.1.tar.xz"; locale = "hsb"; arch = "linux-i686"; - sha256 = "a52eb8041da3d24be7fadb27ef4aa985d9036ebdefea2684064eb469fca9387e"; + sha256 = "809d05e4bc42792394906e7ebf567a78766406110ed4533fc9a6a87f6dabda38"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/hu/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/hu/firefox-140.0.1.tar.xz"; locale = "hu"; arch = "linux-i686"; - sha256 = "746f38a26a957507b900fb30588b4fb4596b8e661bffacf632fe09e07eec9dce"; + sha256 = "d671c3cc783e1dc346311a82ca93e768d305954a629ad15dc22aa98f0853cf01"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/hy-AM/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/hy-AM/firefox-140.0.1.tar.xz"; locale = "hy-AM"; arch = "linux-i686"; - sha256 = "ce3f877b42144b568e5881d38a6541b72ef77d907dd36593f75d6c7c3cc45b4e"; + sha256 = "e81b329ca23c49b505c226095ab20ee36da29285c1dd42e78132f2798d48ee8b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/ia/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/ia/firefox-140.0.1.tar.xz"; locale = "ia"; arch = "linux-i686"; - sha256 = "3f71d1d874c6b0bb7773b2e64cbcaffd7e57186b0f43015a69defd8d338ff369"; + sha256 = "b8e6882d29cdd2cecdbb7d511fe1d5019cc8318540409fc4ad08342eea83f3f1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/id/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/id/firefox-140.0.1.tar.xz"; locale = "id"; arch = "linux-i686"; - sha256 = "633bd86b3076e3497b8c97d30376ce46c709b965c6d11e28314b9f9663e2f349"; + sha256 = "d93cdabad9e93827c671a6042194fb151cf923302ce75e43c55a9108c5639283"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/is/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/is/firefox-140.0.1.tar.xz"; locale = "is"; arch = "linux-i686"; - sha256 = "8861f2921a1dd22003fae3c26010a35758cb5822930924b323f78ed958a67cfe"; + sha256 = "fbb2b8deb93bf151b58ed7e707d23681fec92222d13b59cf3f0908860f385234"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/it/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/it/firefox-140.0.1.tar.xz"; locale = "it"; arch = "linux-i686"; - sha256 = "2ec60996b6352a883a85e39eecc8c9c32f5ab6013924084453b6a73f9efba2b5"; + sha256 = "7abb4e1c4a7000ca79c28f2ee688f2292794f0eed34e6fa0422770edbb01fc55"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/ja/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/ja/firefox-140.0.1.tar.xz"; locale = "ja"; arch = "linux-i686"; - sha256 = "7a2a2870e0d3b3106be9863883c1553df15e1d1c2f395335b6c17287419243a3"; + sha256 = "ef9e590cdcecc0b9efbb454da2b3e2c8df5b564abca67aa1e5a302b9ed32ce51"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/ka/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/ka/firefox-140.0.1.tar.xz"; locale = "ka"; arch = "linux-i686"; - sha256 = "647dde6af325c4087b5aff52f3a28dd92221c183078e9d742635d932753a0aec"; + sha256 = "d9db23b21b1847f479061906ab5c944de99416e21e171a9288ac2430e7304ff9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/kab/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/kab/firefox-140.0.1.tar.xz"; locale = "kab"; arch = "linux-i686"; - sha256 = "d5155f2fd0c57886c9650a5177b8201b743ef31302f2f86539a1e162c12430e5"; + sha256 = "77bdfc43c5d66f40d87cdb998f43996b36111b89cf2b0108054b7c67ef8da50d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/kk/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/kk/firefox-140.0.1.tar.xz"; locale = "kk"; arch = "linux-i686"; - sha256 = "85cc556e7ffc2a984729b1710966f3086764aa83b166a613ab90259f359a8f21"; + sha256 = "0e3f4b19b6ae97749d5c828db94b721c3ab404463590e62fca4a5feb9276c78f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/km/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/km/firefox-140.0.1.tar.xz"; locale = "km"; arch = "linux-i686"; - sha256 = "5d5834299ca4e9eb66354a91a9bf429473f0468828fec2d86c86ee40a17b2c63"; + sha256 = "60cf1022d9756224790a33ab248a585aaccf9b4b6759f58039bf69281d63ccd6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/kn/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/kn/firefox-140.0.1.tar.xz"; locale = "kn"; arch = "linux-i686"; - sha256 = "2b23ec6ccc2f1945d783fc54fcb2873a96472257ff12e2493d03e0c946c9441e"; + sha256 = "fccbfafcc29a68b7ca753c976f64af8d4029fe36fc344a0673d5b3656d46b056"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/ko/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/ko/firefox-140.0.1.tar.xz"; locale = "ko"; arch = "linux-i686"; - sha256 = "ef5955e0b1fafec57fcf60cc42a246e405a18d38a22ab78c5649da7c07b7c71d"; + sha256 = "439a219e25ab5310c54d19b0cffcb7f9219f8ca775069837133acd10a4e5100a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/lij/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/lij/firefox-140.0.1.tar.xz"; locale = "lij"; arch = "linux-i686"; - sha256 = "90dfe86b2518b32795c3828ab57651634596f9dec8f63a578a00b5cc6bb5f0ee"; + sha256 = "b758c6ee7e2a99e7dc1ace90a346415d2566f17851fadcb654056ee624d84dba"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/lt/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/lt/firefox-140.0.1.tar.xz"; locale = "lt"; arch = "linux-i686"; - sha256 = "4979df9559b4b2cd1bcbc78dbadd0cae6b2c6152d8322a34816072cb54fb8d42"; + sha256 = "6445c693d80fb66914b2918f1993d41c87b9ae30b4d181c7c8c743b33ff6f2e6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/lv/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/lv/firefox-140.0.1.tar.xz"; locale = "lv"; arch = "linux-i686"; - sha256 = "fb7dc8c7a41c8e06e6c349252381a5187bfd1608a4a35c68e768a6c3d5fd64de"; + sha256 = "7904599682f5ee5102e2622c085be7c9d6f93df22a75ac166f2492ded7100b1a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/mk/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/mk/firefox-140.0.1.tar.xz"; locale = "mk"; arch = "linux-i686"; - sha256 = "9e413e4f774b8fc38df94efef0efbb20f7e999d53e69c39c0607a9479cd360c2"; + sha256 = "50560f21f3699752873cb6a2f5c13854ebefe773228265f7245e6e85d66ade6a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/mr/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/mr/firefox-140.0.1.tar.xz"; locale = "mr"; arch = "linux-i686"; - sha256 = "15c1201c3b2103c875c48716bcaedc0fe90e9c9d01b520fba1b058095d944120"; + sha256 = "f8923cfc8f01ef73c71a49cfdd38318f19b0c543c84a126514341225867ffb77"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/ms/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/ms/firefox-140.0.1.tar.xz"; locale = "ms"; arch = "linux-i686"; - sha256 = "828f7bceefd2bbddc9e2f6df509d53fbfbd0ad56adec778478f87c5dc6e58504"; + sha256 = "b892d9da24680e949c956e7678283d083b9c30d09945fa6d67448c9b0b8b76b8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/my/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/my/firefox-140.0.1.tar.xz"; locale = "my"; arch = "linux-i686"; - sha256 = "d25552cc28081edda72b172fa93316920f6c652fc80eff79fa0dec676344a3d1"; + sha256 = "179d3a624f238b87235bb46c47247bfcc56a5269529ecbb5d3224ae0184d3a59"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/nb-NO/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/nb-NO/firefox-140.0.1.tar.xz"; locale = "nb-NO"; arch = "linux-i686"; - sha256 = "4a6b1173f3bc03a985622ad4d6c75c4a68c4d03911ebb60a0534cc98edbc3e8d"; + sha256 = "5b2b64ef9e381d73c80096e3e96227b7476926bb41e9fde4a476e328e71be120"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/ne-NP/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/ne-NP/firefox-140.0.1.tar.xz"; locale = "ne-NP"; arch = "linux-i686"; - sha256 = "6575d236540712abd703e70d41287bdb4c834c3da43e77663138f4a870e47d8e"; + sha256 = "4e23866ccebecf985159bd51c79cad114965963e2c514fc87dcdab2fae12e7d4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/nl/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/nl/firefox-140.0.1.tar.xz"; locale = "nl"; arch = "linux-i686"; - sha256 = "5398a08fffcf35b8b44d8cccfe611e448c66f5c2cd828f23f50308c2fea82fb3"; + sha256 = "77df1aaec8957e314690c6d3c66dc7758c71ef745d453d6f0234c4b2f0e0fe50"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/nn-NO/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/nn-NO/firefox-140.0.1.tar.xz"; locale = "nn-NO"; arch = "linux-i686"; - sha256 = "3dcdd81ca0b90a0a5d4d51a2b70797a20463dc713c77821b77ad511e53b0419e"; + sha256 = "e030ffa92ef65c9c3696d778a1c2aea79633e2eca8abb036be7b633a59528ec9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/oc/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/oc/firefox-140.0.1.tar.xz"; locale = "oc"; arch = "linux-i686"; - sha256 = "2748f2414a9e8f75a5d70295b580669b0e5aee06c3ca93aad843b79acd8bb390"; + sha256 = "95634e0d4bdfdcd74046bb716dc2ab7e88ff36205274bf0357ce13a4e2a45c94"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/pa-IN/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/pa-IN/firefox-140.0.1.tar.xz"; locale = "pa-IN"; arch = "linux-i686"; - sha256 = "78810d2d99bc363c0a191f00e57d391ee6c2bccc8638099edb984827cc8aaa61"; + sha256 = "7dd99f5232f25a7fbcf934a7dc5f5ce13f483b313af4a3cdc0c8e3dee9490437"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/pl/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/pl/firefox-140.0.1.tar.xz"; locale = "pl"; arch = "linux-i686"; - sha256 = "56bc942a139d5220a0410b44bd580afb20283ff64c046c5fe1093315fb7f39aa"; + sha256 = "c6720755ac68f95d1260c5c1d78045887beb0a8e7deeefb0ad8baafecfe74cd7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/pt-BR/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/pt-BR/firefox-140.0.1.tar.xz"; locale = "pt-BR"; arch = "linux-i686"; - sha256 = "d837122fbb3830e3c25cc54abf6d0759efafc6cf681b7061df3fee4d01b36f80"; + sha256 = "43ca63a102ac1090e76160de3850f1a2d4c56ac3ac9236c1919cd2a3ee2a517a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/pt-PT/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/pt-PT/firefox-140.0.1.tar.xz"; locale = "pt-PT"; arch = "linux-i686"; - sha256 = "3715ad7474d717de8a77e6797dbfd9be4066a63ae60067a301f58c2f4f112213"; + sha256 = "2bf0cfcf50081a1497ddb15b43333cecf5f56933021fedd0da1ec315e3a23596"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/rm/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/rm/firefox-140.0.1.tar.xz"; locale = "rm"; arch = "linux-i686"; - sha256 = "1c1f58a0f1da814587d09ef4a17daa9fc1fea8be758bd260a4bfe15459d90244"; + sha256 = "7b10553199bc624a16284990ef86e2287fd9e771a089d777a5119ed764302b27"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/ro/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/ro/firefox-140.0.1.tar.xz"; locale = "ro"; arch = "linux-i686"; - sha256 = "914c2d80f03446855f092709d4e4175ab71942513d84e479815167cd8f135115"; + sha256 = "a4c83073722aca2af2887a13a012187a0af7330e2657670c5f2cf8c44bdfdaa4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/ru/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/ru/firefox-140.0.1.tar.xz"; locale = "ru"; arch = "linux-i686"; - sha256 = "19d66fe6d0c24967819d2192e89be9f5e29d38148ad6ec076da1b6ae70c1313f"; + sha256 = "2aede4407e7dd3505878605abde47f2eb3b8466aaf7745ef18b0209213cc6788"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/sat/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/sat/firefox-140.0.1.tar.xz"; locale = "sat"; arch = "linux-i686"; - sha256 = "7dfc804665848b88ebe9b610f77408ea7e4dc8b118a22f25bac216ef3295d6e8"; + sha256 = "83d3fda671a6c30079f0f10dbea07277c8f20fb592ee9b3d904bc910037be818"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/sc/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/sc/firefox-140.0.1.tar.xz"; locale = "sc"; arch = "linux-i686"; - sha256 = "e7a2256fd55db43ba8baae4068e6292a15f9c186b3a60da4df77fdd8c840a353"; + sha256 = "cb96e96e5b38d6b8d68073f8301006d9bfd358d0c6f2387eb3a460e6df1c01c5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/sco/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/sco/firefox-140.0.1.tar.xz"; locale = "sco"; arch = "linux-i686"; - sha256 = "80a17e8de05303328f79015ebc259b7440fea3d3030530e5f9a7d2b757e599df"; + sha256 = "35c8cf2cf67404ec3e56b32e7435c57f28ada305c6440edf21ddee8902c0b952"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/si/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/si/firefox-140.0.1.tar.xz"; locale = "si"; arch = "linux-i686"; - sha256 = "132b579bf63817cf4c82ead9d71ff993eb6810678bff5e765021cf8a6f34bf46"; + sha256 = "5bb717460768adbcccd6f057d05a53bf5ac6ff4f16a1601fecb8bacc4cd30639"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/sk/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/sk/firefox-140.0.1.tar.xz"; locale = "sk"; arch = "linux-i686"; - sha256 = "844cbf92400e3550bcb52ca8fbdf073941908371d389d7cc1a9812624ba14ee1"; + sha256 = "36fbb14f00456c44e353c0b2f8482f1d54f29a809807e40e388d84c9e9bd1f00"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/skr/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/skr/firefox-140.0.1.tar.xz"; locale = "skr"; arch = "linux-i686"; - sha256 = "1fd5b1b24d87fae4eb04fd89a6e32519467cb31804345f5162c3587a107901e9"; + sha256 = "7a7c24b413f2d2804910eab9e555e4189637d5df1abcafd8a5ed3d5c5f8f422a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/sl/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/sl/firefox-140.0.1.tar.xz"; locale = "sl"; arch = "linux-i686"; - sha256 = "52c3a9e5b642dd15c9caaca8239c7cdb228f843b3e9ad4029fc3a27e6ba1f1e8"; + sha256 = "6128cac073364bd96542c35fd5d41d63b1beb260631b1f7d74ad8d0529ebdec8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/son/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/son/firefox-140.0.1.tar.xz"; locale = "son"; arch = "linux-i686"; - sha256 = "5427d6f042733ef0b39dc1e33f1a84dd3aab8cc8fb972633920a74af285dff06"; + sha256 = "995b40e98a84faa48da7f3e0a66aee96b205aafc9d30ed63eedf13cef91ca3c0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/sq/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/sq/firefox-140.0.1.tar.xz"; locale = "sq"; arch = "linux-i686"; - sha256 = "68b79ae973c70ec3055fd0aaeb660350fa4d221a8b4fa464f58bc52171c09501"; + sha256 = "29788b09016f720086ece297fa8aa6fcf48e441c860608ae46bf9a8fb3dccd61"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/sr/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/sr/firefox-140.0.1.tar.xz"; locale = "sr"; arch = "linux-i686"; - sha256 = "3edbbf253a196a40f93a32f46cebffa66c59b660655e22b811d7c81fad173252"; + sha256 = "47c8b6786b833730a23918a6690b6a7297d11bbb52945d2791b9fb02650b967d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/sv-SE/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/sv-SE/firefox-140.0.1.tar.xz"; locale = "sv-SE"; arch = "linux-i686"; - sha256 = "c1121301abcb85c6cf939439d35205b651a3bce7f46dcc23be1bf40f2a539cc7"; + sha256 = "62103469db1f61bdd042c79e052e3ef1cf984dfd664e4d7a8fe055614d25fb62"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/szl/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/szl/firefox-140.0.1.tar.xz"; locale = "szl"; arch = "linux-i686"; - sha256 = "8fcac69b94c535772ab13f5dfd95bb9b5a6c59a30d9501a46c66dc41a6447973"; + sha256 = "69da64a9d1de72bc01133f0e598a87b6a6c6b181e2a08bd48523883d0b34308b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/ta/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/ta/firefox-140.0.1.tar.xz"; locale = "ta"; arch = "linux-i686"; - sha256 = "d7a1c13cb0243913e2a41352cafd1720c609877a73e144b7f6f2f472a3dbd93b"; + sha256 = "7265ab46f3e656593b1b492e85ff4b797ac2625982d56ceeac2a2e2917a320d5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/te/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/te/firefox-140.0.1.tar.xz"; locale = "te"; arch = "linux-i686"; - sha256 = "3b46900ac10bd7704c22c1020ef551458e7df95cc770d09b6965d089c773ca1d"; + sha256 = "ea9dfec35f8bc601679fd5f6858a8daf1e3486f9b1864709e9cc5df790abbc75"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/tg/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/tg/firefox-140.0.1.tar.xz"; locale = "tg"; arch = "linux-i686"; - sha256 = "023b51977b8ea9e3165f6accb533e72c70290795139fdd733fbf5de89d33e148"; + sha256 = "4b8f3490c4b9493553c2b56b9003775da3ab67a1ab375adec2f7c3e49708b8ee"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/th/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/th/firefox-140.0.1.tar.xz"; locale = "th"; arch = "linux-i686"; - sha256 = "f26dca620fe1325c609ee93fdebe8934142af5272feba47b3d5ef8b91c3d1051"; + sha256 = "a4ecc291f2ff50c0ed8231ab3f4e0d7168207d23c2646a3e78b932879e57a133"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/tl/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/tl/firefox-140.0.1.tar.xz"; locale = "tl"; arch = "linux-i686"; - sha256 = "d6318dcd53daebac02970e1b0f22153b61ee45c1ceb7b6890cd4bf54809be1ca"; + sha256 = "ad8dbaee89fbb379305ce86814acdf8da5de52bb0e4f6180cc8a35fe961efe43"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/tr/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/tr/firefox-140.0.1.tar.xz"; locale = "tr"; arch = "linux-i686"; - sha256 = "34a30e1baf297748aad567a88f9356be385d8b7cea3c394085ae412144479364"; + sha256 = "edd27c0b00a12431d7d1bc947e28de06d8cc1057230e4cce91305f6d92175908"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/trs/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/trs/firefox-140.0.1.tar.xz"; locale = "trs"; arch = "linux-i686"; - sha256 = "80f594466fb75ce05a4497db559bf4d8197ed19db52dd44bfedd803d8e1cdc64"; + sha256 = "5ebf33f74cca0169161466cf2adab92f41bcdf191ed6c7251b0e143310361abc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/uk/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/uk/firefox-140.0.1.tar.xz"; locale = "uk"; arch = "linux-i686"; - sha256 = "52c709b5761f386ef8c5d2358ef1114731bd421afafb53bc1bd69527bde014ac"; + sha256 = "f9984cb1b3c51b93ffcc58db28ec64387bf1203ab6183e545cfa793cd6811797"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/ur/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/ur/firefox-140.0.1.tar.xz"; locale = "ur"; arch = "linux-i686"; - sha256 = "dc4fd7b5b23b2c9bda42049b8e551638fdf40f0e427dff872534bb5891a1a632"; + sha256 = "eb117775f8c9fb4e82c1669382970a4c1dc300e196e2b918aee5791b8a8ff577"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/uz/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/uz/firefox-140.0.1.tar.xz"; locale = "uz"; arch = "linux-i686"; - sha256 = "45c616db01a599f8d29751be1755847184bee254c155613be2b3d1cf0ef3312c"; + sha256 = "dd734f71290a5e6bb266c0440ddc06fe4a6223a721194f2c48e7224acb2464b7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/vi/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/vi/firefox-140.0.1.tar.xz"; locale = "vi"; arch = "linux-i686"; - sha256 = "926030d4e55b1cbd109294ef38f0b717adca460f1347bc8665e44229b920e992"; + sha256 = "9fb92e06653eb09f8ba70cc879e044019d6c71353dd245beff61f0b884275b0a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/xh/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/xh/firefox-140.0.1.tar.xz"; locale = "xh"; arch = "linux-i686"; - sha256 = "9be05a8cb72c51a6d2b5560555e2d74187574b8e883dd77379c50914c0c2b766"; + sha256 = "90d51a2f0601922318c05d5d75406997ebea1a274ae0a85c07af8f40c998c0e1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/zh-CN/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/zh-CN/firefox-140.0.1.tar.xz"; locale = "zh-CN"; arch = "linux-i686"; - sha256 = "7a7090b51088cacc9f191d52bb9e615b17bf82b73b334fba7a1e3d7ac9d2fa3f"; + sha256 = "1d4059d57b29ab52e4c5d7c557ad7a4fe55cb435103ba906349b57820ff38f52"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-i686/zh-TW/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-i686/zh-TW/firefox-140.0.1.tar.xz"; locale = "zh-TW"; arch = "linux-i686"; - sha256 = "7aed918551cd77d29e32b93df7ca638bc547f91c79b21ad6acc5d3ad90f8a07f"; + sha256 = "e424fa5aea8bc774b785ee783cafc696915b09e25351d6af18fd6193bcefb4fb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/ach/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/ach/firefox-140.0.1.tar.xz"; locale = "ach"; arch = "linux-aarch64"; - sha256 = "88162f5647ee5107ac01fdf90bb4f25739d9ca7352e60adcdd37d0aac7e05649"; + sha256 = "af93d7e30d0d08b100fa390c1894d6a6b13c13d77870fdfcf817e0952bcfc2ef"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/af/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/af/firefox-140.0.1.tar.xz"; locale = "af"; arch = "linux-aarch64"; - sha256 = "dcbfee58cb12d750681a3657795ddee402823725a6bcbee491dd3540f1d9d536"; + sha256 = "81e05d6af01ad743e5ea19e3e2754efcab504ceef20e847664cc48f34d8b2e5e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/an/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/an/firefox-140.0.1.tar.xz"; locale = "an"; arch = "linux-aarch64"; - sha256 = "d7596e43acb927810599559a6c64684bd8a8b150534743e99d1aafd6605d796c"; + sha256 = "ed2a908e7a129d41943e37597282177bfdfbb083117d3e9c35448fb342c2b935"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/ar/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/ar/firefox-140.0.1.tar.xz"; locale = "ar"; arch = "linux-aarch64"; - sha256 = "61aed3a99cb3d8b9e73a1840eed20be5e5fee11cb8267934f43850e62340265e"; + sha256 = "20ac2320baa39c965d753546a922fed8886ef353d4b3815335da297f9ddad344"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/ast/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/ast/firefox-140.0.1.tar.xz"; locale = "ast"; arch = "linux-aarch64"; - sha256 = "1f0660efdd4126ff867edeeb506250c13500ec06b6027591334de9cdc4160b16"; + sha256 = "109b33ebe8a5b6f85337e813b6cec6ff4fca2e75a494e6043b95d44ec510cb93"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/az/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/az/firefox-140.0.1.tar.xz"; locale = "az"; arch = "linux-aarch64"; - sha256 = "b2f3503228319b98a1e9efea27efe06510f4c8adfba578d27717426383fab577"; + sha256 = "edcd46f75deb7d6412c4586ccc48e4675181eeb442630e7e5275cb93fb175a7c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/be/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/be/firefox-140.0.1.tar.xz"; locale = "be"; arch = "linux-aarch64"; - sha256 = "d1c320e76dbcc3bbbc1d2b5ff1d9473bb029e7e32228459c463209954fb135a0"; + sha256 = "d2f31a05873906c56b30263a22c2e2b1de24599f09df228f06b7974f897db05c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/bg/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/bg/firefox-140.0.1.tar.xz"; locale = "bg"; arch = "linux-aarch64"; - sha256 = "093ca4ab96bfc4c53226cad25c6598748a1de256a65d751fb502137641276aaf"; + sha256 = "737f335d87f3f395f1313fc1a0a06fd72e135d238097be9ed3e4ac74b99d6dba"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/bn/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/bn/firefox-140.0.1.tar.xz"; locale = "bn"; arch = "linux-aarch64"; - sha256 = "fa1144dc09cc3222fc8b0beedc8f1e3744a659afa3a592a5bd808588bebb0027"; + sha256 = "86a02460d67ff5c62898a670d24d187157f25b6b71a4d96a68276efd5c45f5fe"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/br/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/br/firefox-140.0.1.tar.xz"; locale = "br"; arch = "linux-aarch64"; - sha256 = "dd05859ffd2c9e24971fb008872ae1b6ec6c824727946412e715ec2643292d86"; + sha256 = "85aa49b65146565373f4392295742c24afad73156a2df65f9f2643ae76460978"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/bs/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/bs/firefox-140.0.1.tar.xz"; locale = "bs"; arch = "linux-aarch64"; - sha256 = "339751b3b3f677f2aab64a8810e010a0c7beb10f302f7b3bb8a53fac5129afbd"; + sha256 = "ded18cb7a6b89fa83fcdc501b388de72efd4ce049c45c65a38263cb8805e1926"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/ca-valencia/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/ca-valencia/firefox-140.0.1.tar.xz"; locale = "ca-valencia"; arch = "linux-aarch64"; - sha256 = "d34cec4309053b0052eff56a3945c591bff1a31018271938434299d54ef9fa16"; + sha256 = "c6fe0e52d593f65fd9ff94af5e63be7af3c8d831cd1afd0c69bd11e045e04ef7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/ca/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/ca/firefox-140.0.1.tar.xz"; locale = "ca"; arch = "linux-aarch64"; - sha256 = "efcf4359152b1e20944d53ec17de7ec88636db5fd1a6aee1df9a50387f264410"; + sha256 = "2ce304f71096c7545b409253db9f1efa142070134628623cf19548fc37916a75"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/cak/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/cak/firefox-140.0.1.tar.xz"; locale = "cak"; arch = "linux-aarch64"; - sha256 = "78436756dbb435afac86367a6da54e65e92ccbc3cb376f527b28e134f64d0367"; + sha256 = "a3c10d06014f8e459921a0d66f0c3538765e2d674df8f3bd78ad487926c52fcd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/cs/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/cs/firefox-140.0.1.tar.xz"; locale = "cs"; arch = "linux-aarch64"; - sha256 = "6685742f6e2f6840b81c89c3495c9419a189c22b3cf245cbe991e0fd77269b39"; + sha256 = "d53d824e42e0670263527bba242dffa5159ffa3c8bebd118c550e5e46ea2e910"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/cy/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/cy/firefox-140.0.1.tar.xz"; locale = "cy"; arch = "linux-aarch64"; - sha256 = "64c9012f46b828d89db623a1efab5f510936b5fe9d67d7df8dd816489c222f8e"; + sha256 = "0c7777b072ad5de4e399be34fbee6e2ff68bfb7f9f011802ab11a7d32a37e4dc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/da/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/da/firefox-140.0.1.tar.xz"; locale = "da"; arch = "linux-aarch64"; - sha256 = "ad58c524f36bececf9aaf0630f2ed1963a97e550a791bf39405e5d74d4127bdf"; + sha256 = "6bfa4ff59f42afc3ba5ef6ee90dbfe6c380d479df1eefc4db682a5bee0451f1f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/de/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/de/firefox-140.0.1.tar.xz"; locale = "de"; arch = "linux-aarch64"; - sha256 = "868cdc964e745d0fb751514279be82ea680e0721bd5548ab9dacae0075bd18cc"; + sha256 = "180e89c5721e8103de58c7d1accf1496f15144bbfcfb0e07b2a061c53c2d10e0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/dsb/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/dsb/firefox-140.0.1.tar.xz"; locale = "dsb"; arch = "linux-aarch64"; - sha256 = "3b5ba7aca878e4816efa1cf2d5142525285c94d195e27b2895228b48f8d65ba6"; + sha256 = "97184d6e55e2e509786aa79766935250b78db5a2664032bfbfef79dcc5e2b701"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/el/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/el/firefox-140.0.1.tar.xz"; locale = "el"; arch = "linux-aarch64"; - sha256 = "24163f2144da95b4a2592e3e0fac6959ab59dbcf39af58c96f50ef3dbbd6be91"; + sha256 = "6fd7480eaa9ef3c9df916eb9c8546ec690ce156418f802d703dfe51de14f56be"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/en-CA/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/en-CA/firefox-140.0.1.tar.xz"; locale = "en-CA"; arch = "linux-aarch64"; - sha256 = "cc5e50fb214b9ca8c66c154cd8d8fda2cdfb76a0ed278dfc816db7fc3cbf925a"; + sha256 = "8777c5f155680eb7ce5c6b0c2f69fd1b1d8c030d374cc1fd40bdcbc4ceb98490"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/en-GB/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/en-GB/firefox-140.0.1.tar.xz"; locale = "en-GB"; arch = "linux-aarch64"; - sha256 = "c1151d90cbe870275993f7e8ce07f11d9accffa450bb4b8aeaf67dd2d8ca4423"; + sha256 = "d5b3b2ac66ad3cac9566fb87c2896799a43937519014f400dea9f56b05c2443d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/en-US/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/en-US/firefox-140.0.1.tar.xz"; locale = "en-US"; arch = "linux-aarch64"; - sha256 = "ee6fadf005a4a833debe5dabf13efbc43498270a584219fa0594f03c3f590007"; + sha256 = "b14e2e4d9897f554588626284448dcd45de33f14adf86068cc37492cff08b3c8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/eo/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/eo/firefox-140.0.1.tar.xz"; locale = "eo"; arch = "linux-aarch64"; - sha256 = "d9669dc2ce9b1e4fe0b97d68c2959c6029d73fe82649a40815f1553557c1b5da"; + sha256 = "a5d2e29c7fda730789fdf5344f3503c049cccd853f501077951f19fa716b542c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/es-AR/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/es-AR/firefox-140.0.1.tar.xz"; locale = "es-AR"; arch = "linux-aarch64"; - sha256 = "b9204fcddbcda0bc2eeb7a5d62dbfe9a250b8ac71b2d0137c53ff66bb77cea88"; + sha256 = "384cc8e1833b44d8a97cf8d81bdfd14583e6d3ea9c06115171cf5c2a3a186cae"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/es-CL/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/es-CL/firefox-140.0.1.tar.xz"; locale = "es-CL"; arch = "linux-aarch64"; - sha256 = "b019c76a5b039c6349fcd8d87f9401ee2bd59e51cb7a4c3c71fa0ff781c7c0c3"; + sha256 = "73da8c1e27d6ea3fed83b98956b2c285eca755b6cc47562493edf1025acd8703"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/es-ES/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/es-ES/firefox-140.0.1.tar.xz"; locale = "es-ES"; arch = "linux-aarch64"; - sha256 = "3b58ea93353f618e9b4d1d03bcb5a35b09ebbcb64a4dae5359d40120c85fdd07"; + sha256 = "64341066655ebbdaffdb5b23156464319f83301f657548906fd6c7628e2c2ad7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/es-MX/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/es-MX/firefox-140.0.1.tar.xz"; locale = "es-MX"; arch = "linux-aarch64"; - sha256 = "8705a9764ded2fcd1d3ca1a2d192ab6240c01fe52783faf107223b288add4bee"; + sha256 = "2f605075bf3084af5963185e79feb478af011eb4eae096321ac243b21f8102a8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/et/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/et/firefox-140.0.1.tar.xz"; locale = "et"; arch = "linux-aarch64"; - sha256 = "4734f1ca8076bcc733b81509df49fdc98e1e4f9c5c32792791f9dc6d70b2c010"; + sha256 = "7dffa5c7f543eeefad0d90ddaf81b7900c20fd3f89141b011ef16b71cdd142ab"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/eu/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/eu/firefox-140.0.1.tar.xz"; locale = "eu"; arch = "linux-aarch64"; - sha256 = "f360e4f9845ff2b4117904625e08bf51c388c877af1cdf197938fd3e156ba0b5"; + sha256 = "3bbe2b0151da7c38a8e46ceeca7944a01344bf7a4d1f6a2ca6a72c9c44679459"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/fa/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/fa/firefox-140.0.1.tar.xz"; locale = "fa"; arch = "linux-aarch64"; - sha256 = "ad60e83e349cee74ed100bd1f3a9ce0d404405c6fe6e96773c955b743a9d4956"; + sha256 = "6970ccdcc6a9f329323834bbf2e40d450475bbf82bea13c0f4c6dbbc4e1dab29"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/ff/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/ff/firefox-140.0.1.tar.xz"; locale = "ff"; arch = "linux-aarch64"; - sha256 = "3952ec8bd22d9fc186738ec2fccb1ed2d1af748effd6aa4de7d4e37c6f7645fe"; + sha256 = "a577ec80febd8403b28e9d68388d3f9b1ae6dccb6b88f673a6d2127b8f1234a9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/fi/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/fi/firefox-140.0.1.tar.xz"; locale = "fi"; arch = "linux-aarch64"; - sha256 = "3d2bf8f57014058e7c90155808bf971287cc145309126a4ef1cebab2e3cad8e9"; + sha256 = "51b9ea799d6a1f1ae126679376959ab9d68d75022cd427b3c7f76dfcc5bfd98c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/fr/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/fr/firefox-140.0.1.tar.xz"; locale = "fr"; arch = "linux-aarch64"; - sha256 = "a6070dbe45a468338f10b2754718cc938e4420e39efff16c7c65290ddc49a1bc"; + sha256 = "feefb2b17b62ec4c46295491025a7849ead4bf7c3fbaeef8fad985238afc8784"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/fur/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/fur/firefox-140.0.1.tar.xz"; locale = "fur"; arch = "linux-aarch64"; - sha256 = "1c6696ccef61e8e9618b963393cc700d03914b3e526b95df50c8ac72018bad28"; + sha256 = "bc45dd37277acd1047674efa933aa623ce8c1c8a02145a09cc4361b4e9b3985a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/fy-NL/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/fy-NL/firefox-140.0.1.tar.xz"; locale = "fy-NL"; arch = "linux-aarch64"; - sha256 = "36ecf8e1b3528c9455aed04ed257d482ae26973cbd5d3355598d7d2e52ad8c5c"; + sha256 = "2d135da104662d567138d7736d6a3154959b4210b72240b1ec0f61d247b316bc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/ga-IE/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/ga-IE/firefox-140.0.1.tar.xz"; locale = "ga-IE"; arch = "linux-aarch64"; - sha256 = "dcf4ab78577ccc8d4b01ab1064270ff5afb122f8421bc90d233a376315c11db4"; + sha256 = "a0d65e4c6aa9315572433618c9b09e7b78eedf5e4b80a9e1055f2d3006900758"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/gd/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/gd/firefox-140.0.1.tar.xz"; locale = "gd"; arch = "linux-aarch64"; - sha256 = "c4ea08226d591cfadc63e5eb25dcab1ca4cc4c9bce3eb5928e592d24cb91f28d"; + sha256 = "85e2814fc53b3b8aa2b927f5c115acc43d8b3d2ac84c9c4513052f1a67a0b9c6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/gl/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/gl/firefox-140.0.1.tar.xz"; locale = "gl"; arch = "linux-aarch64"; - sha256 = "1830af229f1d34900907dd57c35ecdcbf474cf45781c92a1198b299edd531638"; + sha256 = "02df5a0f9af8a2d56f966c014293a89a1a854fd9a9c4e4a7179e4fce3dd636e5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/gn/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/gn/firefox-140.0.1.tar.xz"; locale = "gn"; arch = "linux-aarch64"; - sha256 = "dd10b2c75a1ad910189e68b019acc841050e4bf1e84b709fd4a4a8af8b985418"; + sha256 = "962c419c285e8d6ad4a732c0be4694b895bea5e2433bbedeefff9f5a2aeca166"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/gu-IN/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/gu-IN/firefox-140.0.1.tar.xz"; locale = "gu-IN"; arch = "linux-aarch64"; - sha256 = "70b9c2a83af23b415f1ac959f91f7455cf328dc24451a34dda56d73ceed65f63"; + sha256 = "17bb558e863d7f401d03fa73928b58822e0f5e83b78d255d3006a1f50ccae1d5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/he/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/he/firefox-140.0.1.tar.xz"; locale = "he"; arch = "linux-aarch64"; - sha256 = "74dc21a13b7f4ba88e65c7a1e351d5f3a0098761ff3a3700c72312cb92db8dd9"; + sha256 = "ebcda0e73148affaa16afbac7e8dcee526c7b3c10f3f3f1ba669c7c1a264a096"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/hi-IN/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/hi-IN/firefox-140.0.1.tar.xz"; locale = "hi-IN"; arch = "linux-aarch64"; - sha256 = "7a30df65e8621f47b115864ac8c0be810ae8701536613e49f1eb21284706091b"; + sha256 = "81d69a32d4de81bbe94d7420cf0059d85b54471ec13352f9b5d7b5329096720c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/hr/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/hr/firefox-140.0.1.tar.xz"; locale = "hr"; arch = "linux-aarch64"; - sha256 = "527623ebecfc8266eec16f9351e3c93870187f2546a4546d29fdf59359f97a7a"; + sha256 = "651c142061f3ea8abae4acbeb8f3bbf64f924c610e1b411c1c6dc26bd521b853"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/hsb/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/hsb/firefox-140.0.1.tar.xz"; locale = "hsb"; arch = "linux-aarch64"; - sha256 = "777e5004b2a64beca9840823da0ae73f9ed9b3fb0c068d0e1282ba3711461afc"; + sha256 = "d144144c2b036118413aaa161cc74196802dcacb7fdeb13f4c4fa82b496f0417"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/hu/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/hu/firefox-140.0.1.tar.xz"; locale = "hu"; arch = "linux-aarch64"; - sha256 = "1a2260dfa3efa59b2eb8f60e4096073404302315c327e3c6b84623e83cb47363"; + sha256 = "3ffa7ecbbe9a5fca62b6d24bd54ca6e1af92465a7c4da590b79a83be724a61bd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/hy-AM/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/hy-AM/firefox-140.0.1.tar.xz"; locale = "hy-AM"; arch = "linux-aarch64"; - sha256 = "4268af4fc7c4eb4f70073d1843d727fef4eae1a8d46538480fcb12435bca12c3"; + sha256 = "f4a2faf1eadf996e13f8521b265385e29283328b247f703c4f16a18f9f02d655"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/ia/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/ia/firefox-140.0.1.tar.xz"; locale = "ia"; arch = "linux-aarch64"; - sha256 = "883ffec6df98a49be7eab9491a480a15bd4c8dea33327213110ebcf9525dc6f6"; + sha256 = "90b59193eadd35ed1b5d32b0147a5a0bfabc551aed0d57dbb88120b70b044214"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/id/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/id/firefox-140.0.1.tar.xz"; locale = "id"; arch = "linux-aarch64"; - sha256 = "8ab8cb04defaec64b84c07b2f970e50cae3ccd663fd652c1886e63548bf347a3"; + sha256 = "32a01c699015bb1d53d4657ea5a8549bd4db196969ccd456d3998b31c02bb232"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/is/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/is/firefox-140.0.1.tar.xz"; locale = "is"; arch = "linux-aarch64"; - sha256 = "9418275c7171afef7d245999c15772fe59d72b24fcff6c36feba513d97093672"; + sha256 = "0d8f8185d7fb1f32c105f8711d52b504dd1b2d69c878d9135605a51168dba236"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/it/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/it/firefox-140.0.1.tar.xz"; locale = "it"; arch = "linux-aarch64"; - sha256 = "7387bd3f54ea876fa8de603a68064f9a9741253db5ef035f47cac057ea8a5b54"; + sha256 = "28cbc44d9fa43a34e3509f3c591f24839d98a9683f0de200b4e9a5586092279a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/ja/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/ja/firefox-140.0.1.tar.xz"; locale = "ja"; arch = "linux-aarch64"; - sha256 = "ee86f17d10c9c31bda010ca28ea420da595463cff1cf4c327cc8e8ccccc9ef7f"; + sha256 = "b5792a8547b9836096eeb5c40cff25dbb6f60659f2b75c5af275ee890e5ff718"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/ka/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/ka/firefox-140.0.1.tar.xz"; locale = "ka"; arch = "linux-aarch64"; - sha256 = "09f6cbc5ca7af19550a1345c3ece159e221a638c8581b018541aa4a01f7585f5"; + sha256 = "e0dda1cbcc2eda1172a42fbb76acbe403e62e0fde604a44b7ad1b2c380c0eaf5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/kab/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/kab/firefox-140.0.1.tar.xz"; locale = "kab"; arch = "linux-aarch64"; - sha256 = "8a8cce56b466aec4ae3b9eef666c701e2255e005e7146bf212a1286d2081fc56"; + sha256 = "aebe6bba0b947dd49dac479f6f0f8c6ab523d60719c33410b9442b56be3ac457"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/kk/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/kk/firefox-140.0.1.tar.xz"; locale = "kk"; arch = "linux-aarch64"; - sha256 = "fc4fa20d7eb321f97e8804eb6075c64db22c5e49abc27aa08b113e772f80238b"; + sha256 = "4599d95a94c00268bb8813cf2b12436ef1aa59565f20c372ecb5b8c6e58be060"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/km/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/km/firefox-140.0.1.tar.xz"; locale = "km"; arch = "linux-aarch64"; - sha256 = "c5f87863b190c56c48a21f20527b0fd292cd87ea091b73e6bd537b6d047207af"; + sha256 = "440a777621eeefbea1b3bd9150c994d1a9dd0743f823076f5ba1d9aa3bbb237a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/kn/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/kn/firefox-140.0.1.tar.xz"; locale = "kn"; arch = "linux-aarch64"; - sha256 = "f596f4e433dbd7513aa62a30b196202880bd4bcff2c36df9c25b86d8a0c6a183"; + sha256 = "256d669d0601afb810e79c273e96c24255616729d2a958158766a6485739a3ee"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/ko/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/ko/firefox-140.0.1.tar.xz"; locale = "ko"; arch = "linux-aarch64"; - sha256 = "d436db9db8e6c980544ee379fd6eff4c9224cc2a7f8acab96149a086dcc03dd6"; + sha256 = "125723bf51c14a3123e5a59e21bb40a07e79a8c7a34f9ca19bdc2828e15de210"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/lij/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/lij/firefox-140.0.1.tar.xz"; locale = "lij"; arch = "linux-aarch64"; - sha256 = "be1e4cd0ca89426842bd516fabb4d6e52d42fdb7270f2a629fbd8688d93fd28a"; + sha256 = "3b54e73c497873bda4647c6122a07ba062d38ed8c08c1e6958532203a322d17f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/lt/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/lt/firefox-140.0.1.tar.xz"; locale = "lt"; arch = "linux-aarch64"; - sha256 = "555b15e0479505f2cb84413538805202927310cee4da1c60d78197aa070aeb23"; + sha256 = "198df6f35f194011ae51e1e7fe93c42650f0595f7dd24b9a4a57b3a617906b56"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/lv/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/lv/firefox-140.0.1.tar.xz"; locale = "lv"; arch = "linux-aarch64"; - sha256 = "3316aeb17791bf180fbddaaf5e2e945c45ef4a6531b3ad095ddf7a1c00d961ae"; + sha256 = "eeb14f78652a43ca179973947fba112c0a6647f22e60bb09ca1d5b5851a2090a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/mk/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/mk/firefox-140.0.1.tar.xz"; locale = "mk"; arch = "linux-aarch64"; - sha256 = "01b63debae69c066328daeff5421a081029aefb8b7da054516a6890180f4d594"; + sha256 = "6e5fe1564578cc113ae94051e660e526298f07eb5e9d3a86a0eb0aabf808663f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/mr/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/mr/firefox-140.0.1.tar.xz"; locale = "mr"; arch = "linux-aarch64"; - sha256 = "3183e1e208e3ccb9ecee0b8d2a550958cf56283e3af129a4225ca2fab1747956"; + sha256 = "9fb46906a13bc5567182b3b1ef5df0263173a69be8a782b880a40377e4581123"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/ms/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/ms/firefox-140.0.1.tar.xz"; locale = "ms"; arch = "linux-aarch64"; - sha256 = "72c18125e81abd12b445ad0c099606f17a3fc92489ee96675df5c872773d8768"; + sha256 = "18124f5a2d1d83b6725c7ffad055eda805db7c775996a9861faed2325f8477b0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/my/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/my/firefox-140.0.1.tar.xz"; locale = "my"; arch = "linux-aarch64"; - sha256 = "50cc9d4f95c8324d82340e86fa51386f1fa357160cd42351a5cd8286f3e9ff34"; + sha256 = "d94ed1d3c8f7cbfd3dddf68f86bb6626b8fb0bbc885824cdd6ae5e4fb1dc6e38"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/nb-NO/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/nb-NO/firefox-140.0.1.tar.xz"; locale = "nb-NO"; arch = "linux-aarch64"; - sha256 = "89a7af06c905fd1898acfc696145965c64f9a823e981a93307d9420b94e1ec01"; + sha256 = "512479d30538f6d206af9c07cc426a65a56c4177c7eb1d12d5b63f24a49fd2f1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/ne-NP/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/ne-NP/firefox-140.0.1.tar.xz"; locale = "ne-NP"; arch = "linux-aarch64"; - sha256 = "d57fb937ab9222fa4ce26d411204066c2832276570d1bc2fe09ccc0fc4c750ac"; + sha256 = "596c4cca41491bb9244c5d44748491e9df99d8c9018fd1bfbbfc100a56093cc0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/nl/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/nl/firefox-140.0.1.tar.xz"; locale = "nl"; arch = "linux-aarch64"; - sha256 = "e4dcc699844ee961c0945e6a561d6a03a64b75293ac7eba910f732fabe0c307f"; + sha256 = "b01b4db6c90ff19dc5918a6e11ebc10892f61536f7b482953ab824b030bb15d3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/nn-NO/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/nn-NO/firefox-140.0.1.tar.xz"; locale = "nn-NO"; arch = "linux-aarch64"; - sha256 = "ee74df91ad7f4e5f54695b8539697bc9092e2510456851f81c640f4a00d3d08a"; + sha256 = "eeda843410a96f1f29e4fea2626a522cb5d57b856ff9363e71f974f4345b3c99"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/oc/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/oc/firefox-140.0.1.tar.xz"; locale = "oc"; arch = "linux-aarch64"; - sha256 = "a1408bad0de2c64ecea1a72864d9f363da4a153d98d83e7e18db8eae47b796d0"; + sha256 = "df94f8b914384000391bfc7cc06b8cd6f49663b0cb73dcbc90513aafecd3ed1c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/pa-IN/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/pa-IN/firefox-140.0.1.tar.xz"; locale = "pa-IN"; arch = "linux-aarch64"; - sha256 = "88f5f43b701a94d8551e2786f72b7643e4506609f42a2c3596f458d278362d1d"; + sha256 = "c5b06423d2f2f96a4e990e3f0ee138e66e043512b5c6fa78119054f7841fa08a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/pl/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/pl/firefox-140.0.1.tar.xz"; locale = "pl"; arch = "linux-aarch64"; - sha256 = "3e7df16ed8b4f808a093e337cd9f79eaba3c39c950561680eb1969027a10a2d1"; + sha256 = "35c03baeebfd48abdbabfa8d0ebbada67f8172f90c0ebe2a66b81b1bcd06ae5e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/pt-BR/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/pt-BR/firefox-140.0.1.tar.xz"; locale = "pt-BR"; arch = "linux-aarch64"; - sha256 = "d2ae5d20752a16453d7b9146811ffe7646587544611aa1580ab753584653d816"; + sha256 = "dd8ad39a96bff5e73a42f4c97754dd9518e1880eee97baf3585c5df5f5a04a61"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/pt-PT/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/pt-PT/firefox-140.0.1.tar.xz"; locale = "pt-PT"; arch = "linux-aarch64"; - sha256 = "4d8acb0411b0b1bbbc09db99a7fde9506f8e61cd5dc147c93dd4a9a7a40d6b02"; + sha256 = "39e99f96fd2de4a5097fbe9d8ae02fa7f42c7fc2379d593e0b787a443088350c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/rm/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/rm/firefox-140.0.1.tar.xz"; locale = "rm"; arch = "linux-aarch64"; - sha256 = "f98801cafadb0d8ea5b88ae26052134f9b7b90da6653f2181b731f638afebcab"; + sha256 = "dd6b6a3a29e16c408a227cd2609214395dc65808c14e7a3224d419d4cfe00b0d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/ro/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/ro/firefox-140.0.1.tar.xz"; locale = "ro"; arch = "linux-aarch64"; - sha256 = "058c99e4cf2c95739d6a09cb5e44111c8d49ba01a51bd2a3ce7557258d5cd3ce"; + sha256 = "da6a05c552fe2a913d16239131c33c980a89ec16270e003c107cc34e04b4d377"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/ru/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/ru/firefox-140.0.1.tar.xz"; locale = "ru"; arch = "linux-aarch64"; - sha256 = "e8f4084f31f6833d4254502f93aee87f76fd1592b5250e04e03790572ba66a14"; + sha256 = "89624eeb629c561bcf1ee2f9c25dcc95d8806cb5539527cbe3c60e7e970d4e24"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/sat/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/sat/firefox-140.0.1.tar.xz"; locale = "sat"; arch = "linux-aarch64"; - sha256 = "17dcb716a149183a35bd32a0948ab3171be4a547cbc39d2e0d14ac2e07a26a19"; + sha256 = "b23c995a72f8e88c64222a2623e5846b44560dd1f698ee2994618a89ccba73d9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/sc/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/sc/firefox-140.0.1.tar.xz"; locale = "sc"; arch = "linux-aarch64"; - sha256 = "f15a75dbd51f6c1341190904e996a9afee73eba615f48d92c021b8a2a6341425"; + sha256 = "95c39cc43f5c0bcf63fe75b536acfa8d7f16657838218a77fee3cf36a122b5e5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/sco/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/sco/firefox-140.0.1.tar.xz"; locale = "sco"; arch = "linux-aarch64"; - sha256 = "6b74e2091d37d0b0b6355d136693d9f64bdf37d32392561ec946c16804c438de"; + sha256 = "d434afa3d817aa438620d975bb4a61ead1630297cd24c871b224b860313bc3a3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/si/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/si/firefox-140.0.1.tar.xz"; locale = "si"; arch = "linux-aarch64"; - sha256 = "c53b6b388d652721c6f529604d08e11256a27130e8a410afe516d6583f0375b2"; + sha256 = "5d630b7d8fa02835d1b66154aabe6ceefc2fc9d5dddb7184b8889666a49dea30"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/sk/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/sk/firefox-140.0.1.tar.xz"; locale = "sk"; arch = "linux-aarch64"; - sha256 = "6e9eadfe9f5cf42e652d4be2a108bb419b6a313465bd51668ee7f808a02b0d4d"; + sha256 = "f535e002711c9a2a611f6b1bb25b3d49fe3f1735a536359d84f3b29e1e54f75a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/skr/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/skr/firefox-140.0.1.tar.xz"; locale = "skr"; arch = "linux-aarch64"; - sha256 = "cf3c531d3963963878fd184351c8966ba03a910e00f34e5a67eea90f79a24be0"; + sha256 = "6b1e7d1eb38c1c8c289d177f3c026329a43604f802664b4bb4211de14111308e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/sl/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/sl/firefox-140.0.1.tar.xz"; locale = "sl"; arch = "linux-aarch64"; - sha256 = "1eff6cd0299936498389bc4d19d2492277098d2070b559e292161b430b2784f3"; + sha256 = "619c870425c7f066e35bb0f462cae99634d60d7def3c93f14ad0cafb3da27914"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/son/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/son/firefox-140.0.1.tar.xz"; locale = "son"; arch = "linux-aarch64"; - sha256 = "352fd568f3daf11cd82e25949c8af29cf8e0ed301f6622866a85e1cbda1a985b"; + sha256 = "b40b4224a38a30c80d55ce0e2b7dc01e817783f14b3bcedb12c9605a692ce96b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/sq/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/sq/firefox-140.0.1.tar.xz"; locale = "sq"; arch = "linux-aarch64"; - sha256 = "a65872fec817052b5764f582808060c15659301072b3485c64240848e96c0973"; + sha256 = "29b1deac09f49a4629a772d52bd8798144fc5b9fdb2dba2c57ac548c0d51ed06"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/sr/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/sr/firefox-140.0.1.tar.xz"; locale = "sr"; arch = "linux-aarch64"; - sha256 = "81c375f570842704feb3fb5a70778f62ffdc947b701a3e8d5cb6dd8629881b06"; + sha256 = "8bb742044ed9820cd4855a4b3fe45bb4fa8d12619d9e66c3f1619c9888dd392c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/sv-SE/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/sv-SE/firefox-140.0.1.tar.xz"; locale = "sv-SE"; arch = "linux-aarch64"; - sha256 = "d0e56fdb7a5c1c1ad3301b151198eb3242452f3b57fcd1598713d6a968ef2b02"; + sha256 = "cfa92310bf604dfa7a00ee97427344d6506ea946da5c2ce77ac0c7bdd3e6b54f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/szl/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/szl/firefox-140.0.1.tar.xz"; locale = "szl"; arch = "linux-aarch64"; - sha256 = "097ab1dedc4a34518e384dbb3d855e850b8ba40b3a2b7c658b8d1f9b3d461ef2"; + sha256 = "0ea4761e9979bb9c8f56458d300058c1a673064adceae6c30a7d6461c47e2565"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/ta/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/ta/firefox-140.0.1.tar.xz"; locale = "ta"; arch = "linux-aarch64"; - sha256 = "a32d31fc9959e3ac53d7de110ecdcb67dc2de418b9f8efac516e8f24069df789"; + sha256 = "0606865345b898a6711af7eaaeea086eed0ad327b7bc1b2df46499648c3dc8b3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/te/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/te/firefox-140.0.1.tar.xz"; locale = "te"; arch = "linux-aarch64"; - sha256 = "c24a2b30f7f753bc47dd3abf197df34b2e9e0bdce54ddeee4e4d8b324d2dd08e"; + sha256 = "8ca19359781e0e98883958c12ccdf04056d713a190ac929e24a55b688fb7fe99"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/tg/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/tg/firefox-140.0.1.tar.xz"; locale = "tg"; arch = "linux-aarch64"; - sha256 = "d1353bc0a07ee1a46bc6ef33721b1fc3cc15c3e6573c271d5e767784019f024d"; + sha256 = "c4391f504b4eac8d0d86a50f2b4a906eab2207c0d82b3e79a87d6f5134115174"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/th/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/th/firefox-140.0.1.tar.xz"; locale = "th"; arch = "linux-aarch64"; - sha256 = "7134f78cce1a40647194c0dbb73956d9f9be52774a72a480f93f6b727367c323"; + sha256 = "df9beaca1a8075879876bea550dbf8c879157f73b870da016a7cce6c8f09f5aa"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/tl/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/tl/firefox-140.0.1.tar.xz"; locale = "tl"; arch = "linux-aarch64"; - sha256 = "25ed58bd672ab9dba6ed8e52bedfd5213d92595e75604bd0ec5e3840bd69abe4"; + sha256 = "982240f984756b93320a5b0e3d5ff4bac71676208a5d05981574b3ca921bb7ef"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/tr/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/tr/firefox-140.0.1.tar.xz"; locale = "tr"; arch = "linux-aarch64"; - sha256 = "ecb3de9fed0c635e950cd8d08c0a4564d305e7b5749329c3f16b3348ec41dea2"; + sha256 = "c1fbae917d436b695dc98d452bb52a7a0b05ec1af9aad631bcb016ca4cce1d2f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/trs/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/trs/firefox-140.0.1.tar.xz"; locale = "trs"; arch = "linux-aarch64"; - sha256 = "532db68ffebf59ad0244d669c0196bc1287d50d20637d92da1937b5ee8e72bd5"; + sha256 = "95c80a16a0d11c345ec57b15b1df041657cbb079d0ec489022440f397f555256"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/uk/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/uk/firefox-140.0.1.tar.xz"; locale = "uk"; arch = "linux-aarch64"; - sha256 = "4f5e607103dd86ceeaea4c1cae1083ac87fb95aa0972556043b74bd476b02e33"; + sha256 = "fcd64cc84c6c921e04ea68a07ea0dc7f4c8f8f5b013a64963e9d9b8c8cc18c50"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/ur/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/ur/firefox-140.0.1.tar.xz"; locale = "ur"; arch = "linux-aarch64"; - sha256 = "99a2b04b388d4593eac2f94b508a6fb12a2baabfda590e7f10ea06faa3ca3622"; + sha256 = "0743e59066415ddd9d7c1059271f1c20cd5c097424c26aefc34b2102dae4f8d3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/uz/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/uz/firefox-140.0.1.tar.xz"; locale = "uz"; arch = "linux-aarch64"; - sha256 = "aec185fd4db0b853681eccdd83ff28a3449e2fcf864790b4a30b00c78e93400c"; + sha256 = "fa6728c01d3f51b5a5a9bf7c270f68cfe066e5e080125f1e1647964c238213a9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/vi/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/vi/firefox-140.0.1.tar.xz"; locale = "vi"; arch = "linux-aarch64"; - sha256 = "22b0b31a6f1f36beae7277b43cd54512ce37637309d7b560b7adb9320b11e2b8"; + sha256 = "04d3286ab2173ff47fea50d6f40c52426c8be67ecdd578317779e5196c78461a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/xh/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/xh/firefox-140.0.1.tar.xz"; locale = "xh"; arch = "linux-aarch64"; - sha256 = "682baecc9e328ccffda49c268489dc1275c678a57c6c244f96531da04ae2aa07"; + sha256 = "5961a8d5184c5364aab2babc468d38b7922784b4c44c3c9d63d1e8f918f8c6ee"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/zh-CN/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/zh-CN/firefox-140.0.1.tar.xz"; locale = "zh-CN"; arch = "linux-aarch64"; - sha256 = "371000dcaccc8b0e6416853dd90006bec0be351892f1024c64f20a880ad7c9a9"; + sha256 = "dcf81e3448d1ba28d85d86c568caf8ee36bf69b06c84bf18c087d014dc0099a1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/linux-aarch64/zh-TW/firefox-140.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/linux-aarch64/zh-TW/firefox-140.0.1.tar.xz"; locale = "zh-TW"; arch = "linux-aarch64"; - sha256 = "ae9233bbad9576e3752013d3e870fe62b8b01420a32f4c44cbc6f1b9d71ae83a"; + sha256 = "672478b1977c30d8da79958627ba4996c631f7a4e8e26b82ee35957a449cb67f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/ach/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/ach/Firefox%20140.0.1.dmg"; locale = "ach"; arch = "mac"; - sha256 = "252e14211dc82d4da1b5d0f02885b2d71ddef5b7d2161d1cd2d36b3626d47127"; + sha256 = "5c1d1afe82a731fc192a6d9bb13046cd30739fed3f4560ea9796405b19f9400b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/af/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/af/Firefox%20140.0.1.dmg"; locale = "af"; arch = "mac"; - sha256 = "6527a8e846ceaea20c2ad106fb0798f03df4f8dbb9b7ff43331b0ffeb6c9616c"; + sha256 = "b8c659f7b19da372c1e38d6766f7f82f777dc55736a808b17cd3e19be5d68dbf"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/an/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/an/Firefox%20140.0.1.dmg"; locale = "an"; arch = "mac"; - sha256 = "d32a9e0befd6efc08cd9d9bdd6d5fb9043477bc0d4e2cf59e8674b28adb0e013"; + sha256 = "a14cef26c700f43c2622220a24b7424f00ee60a73fff54539f6b45c1c8120b6c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/ar/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/ar/Firefox%20140.0.1.dmg"; locale = "ar"; arch = "mac"; - sha256 = "481e021c3eec7e63b10e9ca2b8a90580b02484f0ffdb60bed73886ae58246a41"; + sha256 = "da7993d4e8df2c051b58952303f92ed7c3320abad121fe45adea1182feb8b0aa"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/ast/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/ast/Firefox%20140.0.1.dmg"; locale = "ast"; arch = "mac"; - sha256 = "b2aa1e68e9d543f780284455763e38c52a4f95a4e44ab09d7a5849c244e5170a"; + sha256 = "0112f5b3ff5780d8cf584dca83f5762ca20a986e053a7b1a07a16e26f4364c13"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/az/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/az/Firefox%20140.0.1.dmg"; locale = "az"; arch = "mac"; - sha256 = "3d98ebcfbc8cca145457f23f75f78d9091b41031e3264bd7444925905902e6df"; + sha256 = "d7d7bb02c49e4e6e87f33eb07654f1ec266dca6758331d0614fe137742cbb59b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/be/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/be/Firefox%20140.0.1.dmg"; locale = "be"; arch = "mac"; - sha256 = "13a887e13133bf942db51b5288e95b78466eec20c013bd694ece2f4e984bff6f"; + sha256 = "c2a2c9bc4dd90b50bb5762400669aec88f422e2636fff47478a008c061a52400"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/bg/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/bg/Firefox%20140.0.1.dmg"; locale = "bg"; arch = "mac"; - sha256 = "91ee8c4ee554ccbf663c658d817017196ee0a473d241feeb819d7888a8537e74"; + sha256 = "8fa624216f9e3bcb83ab3d8f4b3a2407476f69d0fc6557a7bb64ec48f98131c5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/bn/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/bn/Firefox%20140.0.1.dmg"; locale = "bn"; arch = "mac"; - sha256 = "1479f506ccab899bfcb78d2576655c5cbc3c4099000e7c43ddba79e7fabecf01"; + sha256 = "a252c9306302af6979f8a886b0108085f47cd889bab89f7dc1f809d93ced7efc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/br/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/br/Firefox%20140.0.1.dmg"; locale = "br"; arch = "mac"; - sha256 = "ce26c22755bd3926605505ce20b3177fab60841d5db33f10037ce76224d399c7"; + sha256 = "f25e0f15e11da49b081714856ba05f1975c0c71d8327791c07763842ffef840f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/bs/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/bs/Firefox%20140.0.1.dmg"; locale = "bs"; arch = "mac"; - sha256 = "ed5a5633a15eee2171f5b7476f613c35840a32ca5be11f77d9d2bc48f2d75f98"; + sha256 = "485748d59994d76fd8876a27cc55fc82db2deaef001266e5c99935bc9db4f8cf"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/ca-valencia/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/ca-valencia/Firefox%20140.0.1.dmg"; locale = "ca-valencia"; arch = "mac"; - sha256 = "9af340066d32661b058d5af792bb47459fafaf656eed8156cd2e98e015493969"; + sha256 = "8bfea273739befc6f18799d1efb822332e97386e4d54057ce85ff88d20e3a828"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/ca/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/ca/Firefox%20140.0.1.dmg"; locale = "ca"; arch = "mac"; - sha256 = "522f922fad7766f53929f37df844a38e9fa3d22c057e5f7a7dd5823e009fd6c5"; + sha256 = "82398cb997f4af31a6dfd97ed803c39c0602fd453b10bb1640e162c1c03dba95"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/cak/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/cak/Firefox%20140.0.1.dmg"; locale = "cak"; arch = "mac"; - sha256 = "f53867fac80e28139e394641e8b0d3d9d8e16fbafdaa78b2193b9b5defe61170"; + sha256 = "1b329689dc57057be0f2ccf65651760f925da5c218af0c34d24ec7953a73bbc2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/cs/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/cs/Firefox%20140.0.1.dmg"; locale = "cs"; arch = "mac"; - sha256 = "472ed62990a4e5c8678f3ec8bfcab2f3284501f2ca836beeae529d33f05db578"; + sha256 = "c0c605b854e429e383e2eb2cbc9cf0de501cd5af1f5014edf155b3cc65bb1e60"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/cy/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/cy/Firefox%20140.0.1.dmg"; locale = "cy"; arch = "mac"; - sha256 = "b1fffc2a97e89075ea9b80240cb7fd80536328966fc312988ec6de653184769c"; + sha256 = "713b042d0f3b63b6ecdd299b7a6a8285fb4864779e891d9b4f0c26d90ead5384"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/da/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/da/Firefox%20140.0.1.dmg"; locale = "da"; arch = "mac"; - sha256 = "65f13829b0928082537198e63bec919059deb34f2edb806e5b7c0ec706432385"; + sha256 = "9da55e1412b8e208c86c0e3e6d1fe3f8941643781674877bc894add5f1aa364b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/de/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/de/Firefox%20140.0.1.dmg"; locale = "de"; arch = "mac"; - sha256 = "d0e934d88bf088f6bc127c6700a4c540a1c9d139b663513a59fb3a618087956b"; + sha256 = "4a88efa1028b454f5dfb8b938b16810dad7abb0a4fde0d02684f8942dd514234"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/dsb/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/dsb/Firefox%20140.0.1.dmg"; locale = "dsb"; arch = "mac"; - sha256 = "6b48594c3db6149eb8cb3b10458379de6fbd11801d38c0886add0e91c0146b41"; + sha256 = "d2f6dfcc37e77085e31faad67dfddc84647bbe0bee810e634d026b949b8e9471"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/el/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/el/Firefox%20140.0.1.dmg"; locale = "el"; arch = "mac"; - sha256 = "e5909b4b8b3e798fb6e016262ad21606de0fbe255408b32d3cf1c498e8ea8342"; + sha256 = "3a3a3e34240751bf8a7370334f2b2f0840482e9fa7609bfec749d86826fa70ca"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/en-CA/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/en-CA/Firefox%20140.0.1.dmg"; locale = "en-CA"; arch = "mac"; - sha256 = "c2b537cdb63ad1cbc9c4e2d4edd861da2e0c1c6735f6aa280882963be478f085"; + sha256 = "9142924511f9fc36d0dd1b7074291c90d59fa408843ef36d5ce3e508ff4aa095"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/en-GB/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/en-GB/Firefox%20140.0.1.dmg"; locale = "en-GB"; arch = "mac"; - sha256 = "d8f845f442e00f46ea448a57433a3276863dac6a5407b1c7d26211888f23f637"; + sha256 = "218f5158c57475e82b08a014410fb9d88c5ba88b3bfc0752b57e64ab57d26daf"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/en-US/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/en-US/Firefox%20140.0.1.dmg"; locale = "en-US"; arch = "mac"; - sha256 = "6ed2ee0aa3f64a9eac93e1195c8fca54ba6b53c07eeea6fe4c6144491ae6b3d9"; + sha256 = "1049b957e497df1a9ab5fdfad971b02f00f3573029a23cbb930bc4fa60d2c7b4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/eo/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/eo/Firefox%20140.0.1.dmg"; locale = "eo"; arch = "mac"; - sha256 = "ad6ca2fdd2a8267da135dbdb1d53e4f2e33bc118151177cad171bed51062bee4"; + sha256 = "b1f169919da19053ce8c47ff4c0478d74a94f73009744a12ccbaf89a6c3e57c1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/es-AR/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/es-AR/Firefox%20140.0.1.dmg"; locale = "es-AR"; arch = "mac"; - sha256 = "5bb2ce2e1c741bdd53d32d8d0e666be002ff72078f62c781ea9ffd867cbf55cc"; + sha256 = "45cc953a20d2fb1c5b735c5f58a90f4f1006a4527597add8f8dcdb5ac2516fd8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/es-CL/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/es-CL/Firefox%20140.0.1.dmg"; locale = "es-CL"; arch = "mac"; - sha256 = "3f8448679f63ac70cdc8cf74329eb32209470f582ba972dbf8eafded58a1b990"; + sha256 = "e64f1bca9a4617d9ac15e89493e9f78620d8522c1e0465d6d92d8fe055f26eb6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/es-ES/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/es-ES/Firefox%20140.0.1.dmg"; locale = "es-ES"; arch = "mac"; - sha256 = "2d92be4ea56616fcb9bc3b83609da630891f949e4398e39b540efb6d5c429afb"; + sha256 = "26300d6640cbc9b05ced5eb61fcf141c1e75be77d8b930a9590db2e628c50ab1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/es-MX/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/es-MX/Firefox%20140.0.1.dmg"; locale = "es-MX"; arch = "mac"; - sha256 = "afe92b90c9d5d7ca95e788f7992a72e78f5096d2762d0a18f3df44a140409e9f"; + sha256 = "c24417006a0608d71e9795ee84347a895927efda95d52fde53b1cb44d82d845c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/et/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/et/Firefox%20140.0.1.dmg"; locale = "et"; arch = "mac"; - sha256 = "90300ad0c7ac283bf23daae74b55464ff645038d094b80072a194086e0273b38"; + sha256 = "8665094d5dc051f5ba40f1cceca1800fe8ef6eb440ad4fa45a00f64f84313588"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/eu/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/eu/Firefox%20140.0.1.dmg"; locale = "eu"; arch = "mac"; - sha256 = "c79e912bf1aa390c9fa61380071ee626aeee46c11652d1f4a34e5ee7f8bced19"; + sha256 = "e3b77f8e3fcf04393fee23c8eccee31885eb97d6dcd573babde8b07ac6fc711f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/fa/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/fa/Firefox%20140.0.1.dmg"; locale = "fa"; arch = "mac"; - sha256 = "3e125c1b0556dae79500077697db9233f0ab0a557e3e8050b71e7595083a0b6e"; + sha256 = "759ade9ba35a4f7153f6fa31d878592b6f91fed09ed259f3b43b12692e6a738e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/ff/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/ff/Firefox%20140.0.1.dmg"; locale = "ff"; arch = "mac"; - sha256 = "25a37789f3e344c38562cef738aeb3e2438768ab0c4dabdb61f992bab0807f95"; + sha256 = "35b64f453e7242d2bc6b08cf4f4233d2b344dc341c5fa4af9f4c77b128856bce"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/fi/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/fi/Firefox%20140.0.1.dmg"; locale = "fi"; arch = "mac"; - sha256 = "2b3edc6c4d891e92325c752623d508f021a67583d25ec9a6e430c4a26f7f0766"; + sha256 = "33aefa3d2789956a6d7a6f3018b731f7d3e8ddbb7c36677e39445147603e02c2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/fr/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/fr/Firefox%20140.0.1.dmg"; locale = "fr"; arch = "mac"; - sha256 = "523f5f7899db0f58f1a196905b263b0daf4e891d51a52609004a5437f37040a1"; + sha256 = "79a08c0bf65b8962eb459cf4a555bc0d23e80c726ad1b8b6f1c4de5e6b032c72"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/fur/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/fur/Firefox%20140.0.1.dmg"; locale = "fur"; arch = "mac"; - sha256 = "928732daa3c5a83ba33cc061c806f09d8332be15924272da83ebcb274ab1280c"; + sha256 = "3633f8d2e36ceac2f68d02062258ab353f9933e89397c68cc93318aadff13ddd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/fy-NL/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/fy-NL/Firefox%20140.0.1.dmg"; locale = "fy-NL"; arch = "mac"; - sha256 = "251b2879f978907869cb6aee9327b9c389102113e19886d063077c44a3494257"; + sha256 = "d0ab63818fad2efeddd33e4719dd26abb6317c5fc5116063c4e82af3672d3eed"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/ga-IE/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/ga-IE/Firefox%20140.0.1.dmg"; locale = "ga-IE"; arch = "mac"; - sha256 = "be910f034ff43b789ac04b50c773903a3e18164a9cc8c5adefafc26eb6a332ca"; + sha256 = "9c1d8a88f401868adec4f19549a666550ebadf0c764d4daf29ac8c9dcfcb9e0d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/gd/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/gd/Firefox%20140.0.1.dmg"; locale = "gd"; arch = "mac"; - sha256 = "c988d72107512c162591b9ad6c1c0b4e422b221639027b2906c96375c74e6f5e"; + sha256 = "684d1a32692b5b6fdf81c6d6923582a3b523632e824e1e6b72207c9d58c9c596"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/gl/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/gl/Firefox%20140.0.1.dmg"; locale = "gl"; arch = "mac"; - sha256 = "5e9620dbdcd068b08415f6f1e5c831757facdc028af20cc32c3fcaa316bedab0"; + sha256 = "274bfac363d1251d4fb5bc75f5175deb3c462ae44f29952e7b0e5790a48350f9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/gn/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/gn/Firefox%20140.0.1.dmg"; locale = "gn"; arch = "mac"; - sha256 = "85368c393310707d0d0c3679247e45ffd03b8e5ee902483e2fb047517a913859"; + sha256 = "273e4d9394df2de0cb5c1119a62b06d587fe0585bea9a0de9a81f0bbfe0476a0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/gu-IN/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/gu-IN/Firefox%20140.0.1.dmg"; locale = "gu-IN"; arch = "mac"; - sha256 = "56b987c8c2e12f7b36ea4eb32c90c60b196b3caea031b5c204cd17dea794604d"; + sha256 = "8044b2cb651367ed33fd7e21ce4ff0dc470650e6a8f1f364c8dcc70cb5bfcfaf"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/he/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/he/Firefox%20140.0.1.dmg"; locale = "he"; arch = "mac"; - sha256 = "f65fad05cc857d849c41a2e937b1a7d8fd8f2bf2eb6e07a9bce16d169a891926"; + sha256 = "3c6f4c000e5332b2b1dafd3d03e2fe9c5b92a568374c5341b23d3d83a11487af"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/hi-IN/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/hi-IN/Firefox%20140.0.1.dmg"; locale = "hi-IN"; arch = "mac"; - sha256 = "6c8c3d3d34402df266a8183886a60a94ccb20264e4f43459f8ec7e94dd57360e"; + sha256 = "6a87054f095d50451cda386e618b9b9f99b5734cf574b0ab2f0b0f46371c4034"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/hr/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/hr/Firefox%20140.0.1.dmg"; locale = "hr"; arch = "mac"; - sha256 = "12e19f3180add0643543cdf16fb8e1ee2775f1e9ac671a2b9802da0abcfa6b0a"; + sha256 = "168aab9bf5764617e6f7fb329f019d0d66f9fbbb98ec2e9b8afbec8265b517c0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/hsb/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/hsb/Firefox%20140.0.1.dmg"; locale = "hsb"; arch = "mac"; - sha256 = "3db483ade515fb66ef1f7d7e401ef36a930da49605c86dd24b5fb389ccfb9227"; + sha256 = "ba57e50ef701a56a19071388f23e3c602b113569a75c26ffbf1038744717738b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/hu/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/hu/Firefox%20140.0.1.dmg"; locale = "hu"; arch = "mac"; - sha256 = "77785cce6ea6c618e7a3211dba42381ffc2bd87732f967cf9954169fb407772b"; + sha256 = "608ac9e8eaa13b375838349b7cefa20f9d335d296c8f68a648edaf31c349aed8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/hy-AM/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/hy-AM/Firefox%20140.0.1.dmg"; locale = "hy-AM"; arch = "mac"; - sha256 = "c12471fa3da0b938772c37f3fda4c41e4bb3934bb65521402dd51520641eaa63"; + sha256 = "e6b4bf9f71289bd70618a085383ba4308dd7c82c8625745b9583090ee021152c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/ia/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/ia/Firefox%20140.0.1.dmg"; locale = "ia"; arch = "mac"; - sha256 = "b0b26e915a1e090da09655808506755e7b69b200084678980bc4d43d68207905"; + sha256 = "5beac4f4a51e6805ad754e6e178389f77e7827ea38a1eb1e484d63824df72b51"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/id/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/id/Firefox%20140.0.1.dmg"; locale = "id"; arch = "mac"; - sha256 = "83d16b2f15a51a1c7a8196b16236a0f1f7e72ba62a157a9d570760fd02c5db35"; + sha256 = "5a4b76c3593c7043aafaa69419b493d54f3d2f31275678e4cbb5964d7fb56b08"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/is/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/is/Firefox%20140.0.1.dmg"; locale = "is"; arch = "mac"; - sha256 = "e25dde9001d5236d644a4e2ec2a9ecbc049ab8552d07884583557966ffb581c2"; + sha256 = "0bb9a615cbb4d364bf06c6572372aae32ec52c25ec935d98a87c1c1e658e3245"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/it/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/it/Firefox%20140.0.1.dmg"; locale = "it"; arch = "mac"; - sha256 = "ff7417875f4b5c61b7857f30c55803a2e977d16f51af03259e4161848f393df3"; + sha256 = "1701dd73416b901fd519f6f7e208c555e11bfde444be6cebed5950bed6b3cc2b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/ja-JP-mac/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/ja-JP-mac/Firefox%20140.0.1.dmg"; locale = "ja-JP-mac"; arch = "mac"; - sha256 = "767aa8ee404a3ac4b9be5f89f630d55ccd85a743d432b7e2bce0bbbb46c27c61"; + sha256 = "b42016e88c88f69c90239e08503fb74521b69a7947ca33807bc058efc0123efd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/ka/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/ka/Firefox%20140.0.1.dmg"; locale = "ka"; arch = "mac"; - sha256 = "4395b5cc101e85a3f9c7fa4b9ede792a758ea5f24d91f7a8e7af1ff9105f83fc"; + sha256 = "ab8e74fa4fdfe2e6048e689e1b5af2c743e8887acc77ccbf8014456c9cf123f8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/kab/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/kab/Firefox%20140.0.1.dmg"; locale = "kab"; arch = "mac"; - sha256 = "fb615390c7e8c890096c7eb230e4862bbf3f4ad37e5ca791acdb276049086420"; + sha256 = "c03b505c76b83dfc4e00f8608bdb6da1d707ac85fefacc7347c3e26e4fc996f7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/kk/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/kk/Firefox%20140.0.1.dmg"; locale = "kk"; arch = "mac"; - sha256 = "74d44581a25c2e30597a99a279d3e37d544f170b48debf8ca765e399b2286690"; + sha256 = "01a1ef3a639200d804ebbab7fe81ac79f72ea51ede707ddccf042baacb27e01c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/km/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/km/Firefox%20140.0.1.dmg"; locale = "km"; arch = "mac"; - sha256 = "c728746ff9d57247451ec5a494d6a0925da59c2c052500472ffdd8c3e52cabc1"; + sha256 = "56a95f4c4d2a89f3b434260a841df95684e72c594f00a4bd1bc99dd0399821ef"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/kn/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/kn/Firefox%20140.0.1.dmg"; locale = "kn"; arch = "mac"; - sha256 = "00e42306ed4eb34a1015bd851f146f324148531e3d634d1faecff6b1f7b696bc"; + sha256 = "b8c7ef77c4e6d2e8c15f6f5e025c21a837fa15ce8f5928f3a39cf21e1cbd7254"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/ko/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/ko/Firefox%20140.0.1.dmg"; locale = "ko"; arch = "mac"; - sha256 = "7bead55e834069698c72c22de573406c8177fb27a1f6174a34813295efe3aca5"; + sha256 = "c0b2c9c0e7ab9c05213f297478a9768ee1e9d2c3ef7369f7b8945d92cd5d1835"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/lij/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/lij/Firefox%20140.0.1.dmg"; locale = "lij"; arch = "mac"; - sha256 = "02bbbfc3904758ad5dc3abc0c02d94a5f6c3e82fed504dd1d9fb415fb2096aa2"; + sha256 = "9450ecaab23f70227bb69f4ea883ffac3713e4c5fb7e62aeed182beb4a496732"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/lt/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/lt/Firefox%20140.0.1.dmg"; locale = "lt"; arch = "mac"; - sha256 = "b9d6135116d665564fa405de90ea33f3b730c9c6296c5e7210bfff720ffac031"; + sha256 = "fb61d7a37a63a0e7f7ec9fa159fdf0bfea7225f5361aa9ca19770de92dd48b32"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/lv/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/lv/Firefox%20140.0.1.dmg"; locale = "lv"; arch = "mac"; - sha256 = "47fc8e61bd3b7af1bfeee046a96038fcf6e066231787051281a5fc477052ec65"; + sha256 = "8edd5dd24733b40dd391805049ef64eac6d8a47810fbe9cf8dc0d95f334a3b77"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/mk/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/mk/Firefox%20140.0.1.dmg"; locale = "mk"; arch = "mac"; - sha256 = "aa28371d9f707869af43f1973e3b91c24840a0ef9cab4e2b86a0f21d3bc66941"; + sha256 = "5d18eb003872ea49ca4b3b8deb8a7de03d1b5bf56c28a74ba64539eb036cf52a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/mr/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/mr/Firefox%20140.0.1.dmg"; locale = "mr"; arch = "mac"; - sha256 = "93b81363da4279e55c1adbbdc92bb4925259f7ff5b62af8864bd083bb7d63e0f"; + sha256 = "5f485954a2f4e50e11edb3dcc66f4557ef4a65ab3fec8281305384e90f1b74d0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/ms/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/ms/Firefox%20140.0.1.dmg"; locale = "ms"; arch = "mac"; - sha256 = "0d364950485cabcd358fe5d8e35fbbbf84894bb5d70c1e5deaa2e4790e892a8e"; + sha256 = "873bbb32b69cc9034af7f5b1a620264f3554a4c33204726f1a34c3a70d176fc8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/my/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/my/Firefox%20140.0.1.dmg"; locale = "my"; arch = "mac"; - sha256 = "b8b0f6c1fc3329a186dae0cc27b7852e3aacc8dcaac6b7e11ffe24973485e687"; + sha256 = "a060dea26ef4e3be103aecb2a7f2a3d56da8464f80e9d13555da30d2a7f91cec"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/nb-NO/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/nb-NO/Firefox%20140.0.1.dmg"; locale = "nb-NO"; arch = "mac"; - sha256 = "a0a7cdd84ede13ab5e333177fdd0e0abb2fc53c065667d9401dd394bc88dacd6"; + sha256 = "879c71957f46a7d3c28a379d48a1fafa920a7795e9fe9649a9975a227c91ec77"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/ne-NP/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/ne-NP/Firefox%20140.0.1.dmg"; locale = "ne-NP"; arch = "mac"; - sha256 = "0a02f26ba81ece40b45ec87879e5ac797adc36a74d3d850a439259e97f69c8b3"; + sha256 = "e39f6ad8bd0378fbc3182673220b58296dfaf77bce416e7820e9166ede6d6daa"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/nl/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/nl/Firefox%20140.0.1.dmg"; locale = "nl"; arch = "mac"; - sha256 = "fe605c4f24d30adb984f9d466427064996665fc46d93fda121cb475249de51a6"; + sha256 = "b20d05fe1da4702787bd1d65f9d4f44250171884e182655811c7155d9dc46ced"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/nn-NO/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/nn-NO/Firefox%20140.0.1.dmg"; locale = "nn-NO"; arch = "mac"; - sha256 = "9c9f431f5c95e036bd77c8bd3cc91f78cf949812e361ec77ab5de29cb4454985"; + sha256 = "98bd6119bbc2c200563ff689ab8a79b22c31c29ac3e4c0947a67660a2f982882"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/oc/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/oc/Firefox%20140.0.1.dmg"; locale = "oc"; arch = "mac"; - sha256 = "2ff26c27720dd961b9d42b52dd1eb9bb366b525b682bd01e7028320183375daa"; + sha256 = "20949d84312488d0d629366a2e23e561e8b2b141a8efc1d6989ad9eba7537ab3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/pa-IN/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/pa-IN/Firefox%20140.0.1.dmg"; locale = "pa-IN"; arch = "mac"; - sha256 = "844be22b0a8405895c7023f17a876dc795378510129dd85aa1316e9836458f3a"; + sha256 = "15daaccd37cc22354bed47909558821241330c86901902d0d943e787dac6922a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/pl/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/pl/Firefox%20140.0.1.dmg"; locale = "pl"; arch = "mac"; - sha256 = "c5607951ab65e4ef4423aac64b106b1c27a6b413761b7751304c0204323d27c5"; + sha256 = "1a94f98d57bf6740a033ff7602efcd50e72f010f8e2ca8f8a0d7e6ca9efdc2bb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/pt-BR/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/pt-BR/Firefox%20140.0.1.dmg"; locale = "pt-BR"; arch = "mac"; - sha256 = "32a91038ea6ae1469fdbae91e67fa8d65bf4d4359dafdfbdadcbd613130eca86"; + sha256 = "d86d87348e12eb5ee47b5355feee10e33a605d477b435930065867ba55d95556"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/pt-PT/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/pt-PT/Firefox%20140.0.1.dmg"; locale = "pt-PT"; arch = "mac"; - sha256 = "baee5014326c90d7ac41cba4862a42c44a70cdbef77627e7fc93bab1fd4ce8c4"; + sha256 = "e76c4434038f51aa077c1f7afd7c9d4aca4663d0a34304161057d099be708e26"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/rm/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/rm/Firefox%20140.0.1.dmg"; locale = "rm"; arch = "mac"; - sha256 = "5b171e4cce7ca88d2c620dba26c9b3b2941e4e0465ea3388fec1efdf1c681ce3"; + sha256 = "80ad315bc4c5ca24262bbd6da2c9512c01b4a8af20ab88d863266d9d316ab7d0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/ro/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/ro/Firefox%20140.0.1.dmg"; locale = "ro"; arch = "mac"; - sha256 = "e3b46ba679fae5642d634ac48112e12374458e78a463493e97afdb8b06534413"; + sha256 = "0ca7cd7fa968e0a3f1b56b2cc75bb40994e9e741586786a28e250e9699b3980c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/ru/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/ru/Firefox%20140.0.1.dmg"; locale = "ru"; arch = "mac"; - sha256 = "274982f5872ecfa90aec643d36e5f32d14eb0ae504597e9279f562b1eec116a0"; + sha256 = "671a25ec32798f1dd6aadb01269f76e0f7222bc46122b3eeff2df0f280976ceb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/sat/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/sat/Firefox%20140.0.1.dmg"; locale = "sat"; arch = "mac"; - sha256 = "1a4e6709373fcc14da59cd88c2aed3c331d415198129cdcfbc3e2f02c2072d33"; + sha256 = "7fde15fba88b867bfbdfc35842d7fe8d5d5adfd1fe2e5632ddcb744d69f57621"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/sc/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/sc/Firefox%20140.0.1.dmg"; locale = "sc"; arch = "mac"; - sha256 = "a3f41539a9139325f119f4cb00a212377b73d94801d2c481a174412199df63cd"; + sha256 = "a02ee8e4439b19d128b7ce01c01be2c984309caa550ab86517ff1cbc68480150"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/sco/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/sco/Firefox%20140.0.1.dmg"; locale = "sco"; arch = "mac"; - sha256 = "71f55579c8ed8b3608b1ead9f2063d88936c5e7b66eb34562f4fca13ad06c255"; + sha256 = "ee1f6e3520f9853af900a0842c80f94d2a830d90748efb25207de9c895c2b9f4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/si/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/si/Firefox%20140.0.1.dmg"; locale = "si"; arch = "mac"; - sha256 = "f61f9095d9eecd80da4db323b938ee0d2a79ad2d7b6d412960ecd00484e402ba"; + sha256 = "55d457b06b9664ba00d100345bade3335999ee7df0bba3075eba3bd808aa641f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/sk/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/sk/Firefox%20140.0.1.dmg"; locale = "sk"; arch = "mac"; - sha256 = "7f97d6f7f331799999b40674662301dd1bc7744d1dd783f03e8bae12711f4aa2"; + sha256 = "9bbbbf5209535f64f9736e886eeeeb79b0d02b50d1238b3835fe60fe961531fb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/skr/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/skr/Firefox%20140.0.1.dmg"; locale = "skr"; arch = "mac"; - sha256 = "d2840f66ad2a0281c0cf362631963ff5a99b77a39bcbc956aae3c11d1bc0bce4"; + sha256 = "e3cf964f2e0300f5feec02be3b45e7712309b07c4fe65692867e429d2bc9e4d7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/sl/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/sl/Firefox%20140.0.1.dmg"; locale = "sl"; arch = "mac"; - sha256 = "daf4e6a94a060f92419d9ad3474dc005a82755bfda7c15a8e174e15d78f2e8fb"; + sha256 = "bc0a450124095c46ff11a681992ba6b10de00c92edcf6c01aa2bffcc8e815d54"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/son/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/son/Firefox%20140.0.1.dmg"; locale = "son"; arch = "mac"; - sha256 = "e6761f721df1866d6dcb0c8fc2ef6d6f87e8cc739a30597bd4873e154b890ca0"; + sha256 = "18a6dc8b89d4bdcdc0d61e859a0bb5a52488a9b35a4bec7288a7708028134e07"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/sq/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/sq/Firefox%20140.0.1.dmg"; locale = "sq"; arch = "mac"; - sha256 = "2ec1dee5c8552f510c847d9ff9d30e98ad6d51d44e43cc801e6bcded2339dcf8"; + sha256 = "e354102d47616e601f388322cda0171188e800a7b89b87492ef25e4d7a2d9966"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/sr/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/sr/Firefox%20140.0.1.dmg"; locale = "sr"; arch = "mac"; - sha256 = "8a57d2bf77e497e2988afc172b0e198a115699dd90162e888a950b8be4689f8c"; + sha256 = "3c4ba2034cae06fc2047d6e821bd57476ea5b5553b354ebbc789789f5687cb03"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/sv-SE/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/sv-SE/Firefox%20140.0.1.dmg"; locale = "sv-SE"; arch = "mac"; - sha256 = "428b00960c2b5897a78265f32bfa9a065456cd674a690305173f41493ab529ab"; + sha256 = "2dacb4595f30580ccaf96875ad9dc35ada3a4561e05c5fc2b0a837e55e539fe9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/szl/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/szl/Firefox%20140.0.1.dmg"; locale = "szl"; arch = "mac"; - sha256 = "35b79dd5e1913d8c22ccb3e440c3dbc3d8170e7977893921aa28b882ae3d48b0"; + sha256 = "3ef5b6c9b682e0f82c372a9a6ad856fa4889af5b87a2f9e292185fb696a53371"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/ta/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/ta/Firefox%20140.0.1.dmg"; locale = "ta"; arch = "mac"; - sha256 = "8cb9812857e15d6c755d6b0b7479b5d69fa1b1d69f4b8ec149ec8ef50d79120e"; + sha256 = "63a342067c199290e5f67567aad809b61a67f8340109b2e13004271e772dd9fb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/te/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/te/Firefox%20140.0.1.dmg"; locale = "te"; arch = "mac"; - sha256 = "5f88a5fc49b8074e9bbf990c676f8d3782b68a61a583f4cc69514dd04d213655"; + sha256 = "72de647ff4d6ee4af2219e77206ac2704a8e14bccd18774dff80186b2b872449"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/tg/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/tg/Firefox%20140.0.1.dmg"; locale = "tg"; arch = "mac"; - sha256 = "3a19b160e28cfcd100c1f185ac08dd3bbaf627a3ac43151f252c7a6eb15ccbef"; + sha256 = "e59d1c5d79d7b6224c60a95642b836436ced01d770478a084f0fdfa730236255"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/th/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/th/Firefox%20140.0.1.dmg"; locale = "th"; arch = "mac"; - sha256 = "c010b6a584872a648d88c03af33d5d721c74ffbd16938ea5cb6752cae636d1b2"; + sha256 = "e03b7ff634cb44595a86e4c0d125929a6365f3d0c4a653d1e9355971da2607ed"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/tl/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/tl/Firefox%20140.0.1.dmg"; locale = "tl"; arch = "mac"; - sha256 = "b62a4a02012c0f71f8220a2b2de969f3d1fa59fa1aba7fcec97e0666f88c1693"; + sha256 = "c6b2f952877266ed130bdb1d7565d154664c201d2f03172952ccf8b58ec85628"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/tr/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/tr/Firefox%20140.0.1.dmg"; locale = "tr"; arch = "mac"; - sha256 = "1fb628f977b870b77fc27339522dff3dd75ba4b105e5c1876c6558514ddcba1a"; + sha256 = "e60589257d139e71ec8947eb417caae063b21aa730a071f30dc9e8067eaa7fe5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/trs/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/trs/Firefox%20140.0.1.dmg"; locale = "trs"; arch = "mac"; - sha256 = "65591b585579cfe0a28c118686d291a4e131b68803945cf3668225269a2c75a5"; + sha256 = "bd8848f95cd11326ee8e919f49a59c7ca97a00bb30e692db8a78187840e7157a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/uk/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/uk/Firefox%20140.0.1.dmg"; locale = "uk"; arch = "mac"; - sha256 = "92d20201ebd8ccf76098d6c5aeeb345a8da84cfb1a0f2fd901b663266ab23510"; + sha256 = "ca1c3444a09cb2a69f308e226dbc14265dda160142bf15d79ce89b11e7537f0b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/ur/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/ur/Firefox%20140.0.1.dmg"; locale = "ur"; arch = "mac"; - sha256 = "1a900caeaeea8d208bd1bfcf6365c8b71526cb6cb01b4caff813636fa930abcd"; + sha256 = "0d043d47d3336ded40a7e5474be3f39dffc3c089dec68bc0a8e41f77034fb1fa"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/uz/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/uz/Firefox%20140.0.1.dmg"; locale = "uz"; arch = "mac"; - sha256 = "335fe10336466a6fc773644ca55aa0b02b12a3452268b2084df676f4f63f6aac"; + sha256 = "beebcc97502de3be6ec43d485ed787de93ebbbe1c5b9d4fb816340ab9555c0d4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/vi/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/vi/Firefox%20140.0.1.dmg"; locale = "vi"; arch = "mac"; - sha256 = "c95acd66d454b769d2f0d590a89856d0d7c488d05f7172ed03b886730d095ec1"; + sha256 = "d4f38111ad4b1664230284545db3166f38d50cd124ebb1935087d358fceaff22"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/xh/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/xh/Firefox%20140.0.1.dmg"; locale = "xh"; arch = "mac"; - sha256 = "7b2da794e59fcba899d3b0fa481b1bcf87a2c0ff37e92a309c580bbac79b7d32"; + sha256 = "892a987d5db7fcd430a1f554680a506f4ea8831430f7cf885762dee2a915f585"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/zh-CN/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/zh-CN/Firefox%20140.0.1.dmg"; locale = "zh-CN"; arch = "mac"; - sha256 = "a62709ca0a15017aa95e26b6295a60d382b94662e2f45e54977991c2f155c753"; + sha256 = "f6b2f1c906f1daa0bf11f29be3c05436e763884da448de96a6f2cd0518fd6b9c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/140.0/mac/zh-TW/Firefox%20140.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/140.0.1/mac/zh-TW/Firefox%20140.0.1.dmg"; locale = "zh-TW"; arch = "mac"; - sha256 = "94de38627dd06786fde9c783315917c2621df7bd6515333044c1efb6e550528d"; + sha256 = "38e6797eef99447e204ed63e12592b8e8294449b577adcba4982cba01f1737f3"; } ]; } From b9341d3020da02532387da199becbdd07179e86a Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 27 Jun 2025 00:50:26 +0200 Subject: [PATCH 80/96] python3Packages.openai-whisper: 20240930-unstable-2025-01-04 -> 20250625 https://github.com/openai/whisper/blob/v20250625/CHANGELOG.md --- pkgs/development/python-modules/openai-whisper/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/openai-whisper/default.nix b/pkgs/development/python-modules/openai-whisper/default.nix index 958c9250f9f8..3774bf9802cc 100644 --- a/pkgs/development/python-modules/openai-whisper/default.nix +++ b/pkgs/development/python-modules/openai-whisper/default.nix @@ -28,14 +28,14 @@ buildPythonPackage rec { pname = "whisper"; - version = "20240930-unstable-2025-01-04"; + version = "20250625"; pyproject = true; src = fetchFromGitHub { owner = "openai"; repo = "whisper"; - rev = "517a43ecd132a2089d85f4ebc044728a71d49f6e"; - hash = "sha256-RYcQC70E27gtW4gzoPJU132Dm7CnSg8d2/GEfyUyXU4="; + rev = "v${version}"; + hash = "sha256-Zn2HUCor1eCJBP7q0vpffqhw5SNguz8zCGoPgdt6P+c="; }; patches = [ From b4b3ae49af4c14438484de83c56d2ec284d9e6e7 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 27 Jun 2025 00:57:58 +0200 Subject: [PATCH 81/96] python3Packages.openai-whisper: remove me from maintainers --- pkgs/development/python-modules/openai-whisper/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/openai-whisper/default.nix b/pkgs/development/python-modules/openai-whisper/default.nix index 3774bf9802cc..0c6e39ad44ec 100644 --- a/pkgs/development/python-modules/openai-whisper/default.nix +++ b/pkgs/development/python-modules/openai-whisper/default.nix @@ -81,9 +81,6 @@ buildPythonPackage rec { mainProgram = "whisper"; homepage = "https://github.com/openai/whisper"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ - hexa - MayNiklas - ]; + maintainers = with lib.maintainers; [ MayNiklas ]; }; } From 0e6adc7b5b85490a8ae9a1d40d975f4660c69a11 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 26 Jun 2025 23:29:43 +0000 Subject: [PATCH 82/96] simdutf: 7.3.1 -> 7.3.2 --- pkgs/by-name/si/simdutf/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/si/simdutf/package.nix b/pkgs/by-name/si/simdutf/package.nix index 14d3aa88d762..34c895cebccd 100644 --- a/pkgs/by-name/si/simdutf/package.nix +++ b/pkgs/by-name/si/simdutf/package.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "simdutf"; - version = "7.3.1"; + version = "7.3.2"; src = fetchFromGitHub { owner = "simdutf"; repo = "simdutf"; rev = "v${finalAttrs.version}"; - hash = "sha256-U53FYlojKc3Q/GIC5TtfYmJMrB+NlPhSwIjNlp/5ZvI="; + hash = "sha256-n4/beHoK8sz/dvPMNDdGT9CQV9fRfLtEd6dW4wmWlMI="; }; # Fix build on darwin From a7cf16754c79f5bd2ce3e57f39a1470ca12a3265 Mon Sep 17 00:00:00 2001 From: awwpotato Date: Thu, 26 Jun 2025 16:57:00 -0700 Subject: [PATCH 83/96] calligraphy: 1.0.1 -> 1.2.0 --- pkgs/by-name/ca/calligraphy/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ca/calligraphy/package.nix b/pkgs/by-name/ca/calligraphy/package.nix index 88856bd21adc..862f3427f5d3 100644 --- a/pkgs/by-name/ca/calligraphy/package.nix +++ b/pkgs/by-name/ca/calligraphy/package.nix @@ -13,7 +13,7 @@ python3Packages.buildPythonApplication rec { pname = "calligraphy"; - version = "1.0.1"; + version = "1.2.0"; pyproject = false; # Built with meson src = fetchFromGitLab { @@ -21,7 +21,7 @@ python3Packages.buildPythonApplication rec { owner = "GeopJr"; repo = "Calligraphy"; rev = "refs/tags/v${version}"; - hash = "sha256-Vqbrt8zS2PL4Fhc421DY+IkjD4nuGqSNTLlE8IYSmcI="; + hash = "sha256-KDml96oxnmTygTC+3rZ//wKv7xDSjw37+UHu3a3zuO4="; }; nativeBuildInputs = [ From bf9cef120b2cf3bc5730c85cb2dd3230d00fb064 Mon Sep 17 00:00:00 2001 From: awwpotato Date: Thu, 26 Jun 2025 16:58:33 -0700 Subject: [PATCH 84/96] calligraphy: use tag instead of rev --- pkgs/by-name/ca/calligraphy/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/ca/calligraphy/package.nix b/pkgs/by-name/ca/calligraphy/package.nix index 862f3427f5d3..c2068130393f 100644 --- a/pkgs/by-name/ca/calligraphy/package.nix +++ b/pkgs/by-name/ca/calligraphy/package.nix @@ -20,7 +20,7 @@ python3Packages.buildPythonApplication rec { domain = "gitlab.gnome.org"; owner = "GeopJr"; repo = "Calligraphy"; - rev = "refs/tags/v${version}"; + tag = "v${version}"; hash = "sha256-KDml96oxnmTygTC+3rZ//wKv7xDSjw37+UHu3a3zuO4="; }; From 522b70138fcde6c6726a862bf125aeeefcb02759 Mon Sep 17 00:00:00 2001 From: awwpotato Date: Thu, 26 Jun 2025 16:58:47 -0700 Subject: [PATCH 85/96] calligraphy: add update-script --- pkgs/by-name/ca/calligraphy/package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/ca/calligraphy/package.nix b/pkgs/by-name/ca/calligraphy/package.nix index c2068130393f..945dc7fd33ce 100644 --- a/pkgs/by-name/ca/calligraphy/package.nix +++ b/pkgs/by-name/ca/calligraphy/package.nix @@ -9,6 +9,7 @@ wrapGAppsHook4, desktop-file-utils, libadwaita, + nix-update-script, }: python3Packages.buildPythonApplication rec { @@ -46,6 +47,8 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs = [ "\${gappsWrapperArgs[@]}" ]; + passthru.updateScript = nix-update-script { }; + meta = { description = "GTK tool turning text into ASCII banners"; homepage = "https://calligraphy.geopjr.dev"; From e9e2c9d83d8a46daede01b4d05ffca04a401aec3 Mon Sep 17 00:00:00 2001 From: awwpotato Date: Thu, 26 Jun 2025 16:58:59 -0700 Subject: [PATCH 86/96] calligraphy: add awwpotato as maintainer --- pkgs/by-name/ca/calligraphy/package.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/ca/calligraphy/package.nix b/pkgs/by-name/ca/calligraphy/package.nix index 945dc7fd33ce..815923e84192 100644 --- a/pkgs/by-name/ca/calligraphy/package.nix +++ b/pkgs/by-name/ca/calligraphy/package.nix @@ -58,7 +58,10 @@ python3Packages.buildPythonApplication rec { cc0 ]; mainProgram = "calligraphy"; - maintainers = with lib.maintainers; [ aleksana ]; + maintainers = with lib.maintainers; [ + aleksana + awwpotato + ]; platforms = lib.platforms.linux; }; } From ab0558d53293a2f20ff1d20c9e6634a4f940b6c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Fri, 27 Jun 2025 00:04:06 +0000 Subject: [PATCH 87/96] ceph: Add patch to fix CVE-2025-52555 See https://github.com/ceph/ceph/security/advisories/GHSA-89hm-qq33-2fjm --- pkgs/tools/filesystems/ceph/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/tools/filesystems/ceph/default.nix b/pkgs/tools/filesystems/ceph/default.nix index 88c636048ab4..be9009f6c051 100644 --- a/pkgs/tools/filesystems/ceph/default.nix +++ b/pkgs/tools/filesystems/ceph/default.nix @@ -392,6 +392,14 @@ rec { # * # * ./boost-1.86-PyModule.patch + + # TODO: Remove with Ceph >= 19.2.3 + (fetchpatch2 { + name = "ceph-squid-client-disallow-unprivileged-users-to-escalate-root-privileges.patch"; + url = "https://github.com/ceph/ceph/commit/380da5049e8ea7c35f34022fba24d3e2d4db6dd8.patch?full_index=1"; + hash = "sha256-hVJ1v/n2YCJLusw+DEyK12MG73sJ/ccwbSc+2pLRxvw="; + }) + ]; nativeBuildInputs = [ From be3ad66d60fa3cded3be51c4862908a58ba75d91 Mon Sep 17 00:00:00 2001 From: Enrico Stemmer Date: Wed, 25 Jun 2025 02:10:20 +0200 Subject: [PATCH 88/96] hyprshell: update description and platforms --- pkgs/by-name/hy/hyprshell/package.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/hy/hyprshell/package.nix b/pkgs/by-name/hy/hyprshell/package.nix index cee96100e937..24c7bc6544d8 100644 --- a/pkgs/by-name/hy/hyprshell/package.nix +++ b/pkgs/by-name/hy/hyprshell/package.nix @@ -4,7 +4,9 @@ fetchFromGitHub, pkg-config, wrapGAppsHook4, + gtk4, gtk4-layer-shell, + hyprland, }: rustPlatform.buildRustPackage (finalAttrs: { @@ -27,15 +29,16 @@ rustPlatform.buildRustPackage (finalAttrs: { ]; buildInputs = [ + gtk4 gtk4-layer-shell ]; meta = { - description = "CLI/GUI that allows switching between windows in Hyprland"; + description = "Modern GTK4-based window switcher and application launcher for Hyprland"; mainProgram = "hyprshell"; homepage = "https://github.com/H3rmt/hyprshell"; license = lib.licenses.mit; - platforms = lib.platforms.linux; + platforms = hyprland.meta.platforms; maintainers = with lib.maintainers; [ arminius-smh ]; }; }) From 6a109702859fdbc3d2c0133dd93f013e22980aa5 Mon Sep 17 00:00:00 2001 From: Samuel Ainsworth Date: Thu, 26 Jun 2025 20:28:26 -0400 Subject: [PATCH 89/96] python3Packages.anndata: init at 0.11.4 (#418562) * python3Packages.anndata: init at 0.11.4 * Update pkgs/development/python-modules/anndata/default.nix Co-authored-by: dotlambda * Update pkgs/development/python-modules/anndata/default.nix Co-authored-by: dotlambda * Update pkgs/development/python-modules/anndata/default.nix Co-authored-by: dotlambda * Update pkgs/development/python-modules/anndata/default.nix Co-authored-by: dotlambda * Update pkgs/development/python-modules/anndata/default.nix Co-authored-by: dotlambda * python3Packages.anndata: fix build on aarch64-darwin --------- Co-authored-by: dotlambda --- .../python-modules/anndata/default.nix | 158 ++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 160 insertions(+) create mode 100644 pkgs/development/python-modules/anndata/default.nix diff --git a/pkgs/development/python-modules/anndata/default.nix b/pkgs/development/python-modules/anndata/default.nix new file mode 100644 index 000000000000..4e79d8b013d8 --- /dev/null +++ b/pkgs/development/python-modules/anndata/default.nix @@ -0,0 +1,158 @@ +{ + array-api-compat, + awkward, + boltons, + buildPythonPackage, + dask, + distributed, + fetchFromGitHub, + filelock, + h5py, + hatch-vcs, + hatchling, + joblib, + lib, + natsort, + numba, + numpy, + openpyxl, + packaging, + pandas, + pyarrow, + pytest-mock, + pytest-xdist, + pytestCheckHook, + pythonOlder, + scikit-learn, + scipy, + stdenv, + typing-extensions, + zarr, +}: + +buildPythonPackage rec { + pname = "anndata"; + version = "0.11.4"; + pyproject = true; + + src = fetchFromGitHub { + owner = "scverse"; + repo = "anndata"; + tag = version; + hash = "sha256-9RDR0veZ8n2sq0kUbAkS2nP57u47cQxmubzuWWYBKBY="; + }; + + build-system = [ + hatch-vcs + hatchling + ]; + + dependencies = [ + array-api-compat + h5py + natsort + numpy + pandas + scipy + ]; + + nativeCheckInputs = [ + awkward + boltons + dask + distributed + filelock + joblib + numba + openpyxl + pyarrow + pytest-mock + pytest-xdist + pytestCheckHook + scikit-learn + zarr + ]; + + # Optionally disable pytest-xdist to make it easier to debug the test suite. + # Test suite takes ~5 minutes without pytest-xdist. Note that some tests will + # fail when running without pytest-xdist ("worker_id not found"). + # pytestFlagsArray = [ "-o" "addopts=" ]; + + disabledTestPaths = [ + # Tests that require scanpy, creating a circular dependency chain + "src/anndata/_core/anndata.py" + "src/anndata/_core/merge.py" + "src/anndata/_core/sparse_dataset.py" + "src/anndata/_io/specs/registry.py" + "src/anndata/_io/utils.py" + "src/anndata/_warnings.py" + "src/anndata/experimental/merge.py" + "src/anndata/experimental/multi_files/_anncollection.py" + "src/anndata/utils.py" + ]; + + disabledTests = + [ + # doctests that require scanpy, creating a circular dependency chain. These + # do not work in disabledTestPaths for some reason. + "anndata._core.anndata.AnnData.concatenate" + "anndata._core.anndata.AnnData.obs_names_make_unique" + "anndata._core.anndata.AnnData.var_names_make_unique" + "anndata._core.merge.concat" + "anndata._core.merge.gen_reindexer" + "anndata._core.sparse_dataset.sparse_dataset" + "anndata._io.specs.registry.read_elem_as_dask" + "anndata._io.utils.report_read_key_on_error" + "anndata._io.utils.report_write_key_on_error" + "anndata._warnings.ImplicitModificationWarning" + "anndata.experimental.merge.concat_on_disk" + "anndata.experimental.multi_files._anncollection.AnnCollection" + "anndata.utils.make_index_unique" + "ci.scripts.min-deps.min_dep" + "concatenation.rst" + + # Tests that require cupy and GPU access. Introducing cupy as a dependency + # would make this package unfree and GPU access is not possible within the + # nix build environment anyhow. + "test_adata_raw_gpu" + "test_as_cupy_dask" + "test_as_dask_functions" + "test_concat_different_types_dask" + "test_concat_on_var_outer_join" + "test_concatenate_layers_misaligned" + "test_concatenate_layers_outer" + "test_concatenate_layers" + "test_concatenate_roundtrip" + "test_dask_to_memory_unbacked" + "test_ellipsis_index" + "test_error_on_mixed_device" + "test_gpu" + "test_io_spec_cupy" + "test_modify_view_component" + "test_nan_merge" + "test_pairwise_concat" + "test_raw_gpu" + "test_set_scalar_subset_X" + "test_transposed_concat" + "test_view_different_type_indices" + "test_view_of_view" + + # Tests that are seemingly broken. See https://github.com/scverse/anndata/issues/2017. + "test_concat_dask_sparse_matches_memory" + ] + ++ lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [ + # RuntimeError: Cluster failed to start: [Errno 1] Operation not permitted + "test_dask_distributed_write" + "test_read_lazy_h5_cluster" + ]; + + pythonImportsCheck = [ "anndata" ]; + + meta = { + changelog = "https://github.com/scverse/anndata/blob/main/docs/release-notes/${version}.md"; + description = "Python package for handling annotated data matrices in memory and on disk"; + homepage = "https://anndata.readthedocs.io/"; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ samuela ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8bf8b075bc19..56ce5f4d779d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -681,6 +681,8 @@ self: super: with self; { anitopy = callPackage ../development/python-modules/anitopy { }; + anndata = callPackage ../development/python-modules/anndata { }; + annexremote = callPackage ../development/python-modules/annexremote { }; annotated-types = callPackage ../development/python-modules/annotated-types { }; From 766b71511e2b5e9d81bb6e6ada9e9336e0fab6c5 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 27 Jun 2025 01:35:08 +0000 Subject: [PATCH 90/96] inputplumber: 0.58.6 -> 0.59.1 --- pkgs/by-name/in/inputplumber/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/in/inputplumber/package.nix b/pkgs/by-name/in/inputplumber/package.nix index 92f3e7948244..b133970bd8e9 100644 --- a/pkgs/by-name/in/inputplumber/package.nix +++ b/pkgs/by-name/in/inputplumber/package.nix @@ -10,17 +10,17 @@ rustPlatform.buildRustPackage rec { pname = "inputplumber"; - version = "0.58.6"; + version = "0.59.1"; src = fetchFromGitHub { owner = "ShadowBlip"; repo = "InputPlumber"; tag = "v${version}"; - hash = "sha256-cVK336ZOBrbH6VJTOw2K4DrlcS/1IrDgLsczVQ3OKTE="; + hash = "sha256-haNlVKO8wZ5SvWllQv/d8qBW4bZrzPnxIe+dolBDqjg="; }; useFetchCargoVendor = true; - cargoHash = "sha256-FOr1X3aShKn6I3PPFnl/BLRzTewNrRnIGRKf3+4dd18="; + cargoHash = "sha256-MaB8GyFMeKzE+Q2vfhA9fn1fxXA+/9OcX6aTc3+GobY="; nativeBuildInputs = [ pkg-config From da232b9973273b496944b45b0b76dc436fd48e23 Mon Sep 17 00:00:00 2001 From: Eman Resu <78693624+quatquatt@users.noreply.github.com> Date: Thu, 26 Jun 2025 21:45:05 -0400 Subject: [PATCH 91/96] asciinema_3: 3.0.0-rc.4 -> 3.0.0-rc.5 --- pkgs/by-name/as/asciinema_3/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/as/asciinema_3/package.nix b/pkgs/by-name/as/asciinema_3/package.nix index 6b9b4de833ad..d0704bb5a18b 100644 --- a/pkgs/by-name/as/asciinema_3/package.nix +++ b/pkgs/by-name/as/asciinema_3/package.nix @@ -9,18 +9,18 @@ let self = rustPlatform.buildRustPackage { pname = "asciinema"; - version = "3.0.0-rc.4"; + version = "3.0.0-rc.5"; src = fetchFromGitHub { name = "asciinema-source-${self.version}"; owner = "asciinema"; repo = "asciinema"; rev = "v${self.version}"; - hash = "sha256-w1LV21EqHNC+LYMLpljGQrxmBJ8ztCQ7g3YbJ6ME5j0="; + hash = "sha256-CxssC3ftnXgxdvRO7CrVgBSVkh7DPjXRNRet4fB2BKc="; }; useFetchCargoVendor = true; - cargoHash = "sha256-Q6HoKrcwa67lAsl4zgNYilo4LzPxySz2lE85ZdOSPpM="; + cargoHash = "sha256-OsynIQeGjXHD1E9iDH4P7Jksr1APtGZkchzZB0DawIw="; nativeCheckInputs = [ python3 ]; From 6511342e44715cd57af40d776e0f6ab2b47f32b8 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 27 Jun 2025 04:09:21 +0200 Subject: [PATCH 92/96] servo: unstable-2025-06-04 -> unstable-2025-06-26 --- pkgs/by-name/se/servo/package.nix | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/se/servo/package.nix b/pkgs/by-name/se/servo/package.nix index a2494c57eba1..bbeb8dc5b187 100644 --- a/pkgs/by-name/se/servo/package.nix +++ b/pkgs/by-name/se/servo/package.nix @@ -16,8 +16,9 @@ makeWrapper, perl, pkg-config, - python3, + python311, taplo, + uv, which, yasm, zlib, @@ -41,7 +42,8 @@ }: let - customPython = python3.withPackages ( + # match .python-version + customPython = python311.withPackages ( ps: with ps; [ packaging ] @@ -61,13 +63,13 @@ in rustPlatform.buildRustPackage { pname = "servo"; - version = "0-unstable-2025-06-04"; + version = "0-unstable-2025-06-26"; src = fetchFromGitHub { owner = "servo"; repo = "servo"; - rev = "e78c033b5bc36a9576530869b38eba88080342d1"; - hash = "sha256-BG0zQRLEM9bghjkB+He5fqpfinowRcn1k1oqhODzaPI="; + rev = "cbb0407ae641c049dd6796275b4ba8572c06b798"; + hash = "sha256-d0Z+dvnNm3NxvGe/W/zJsAsyeMvxF9HoA+wSclWeLgk="; # Breaks reproducibility depending on whether the picked commit # has other ref-names or not, which may change over time, i.e. with # "ref-names: HEAD -> main" as long this commit is the branch HEAD @@ -78,7 +80,7 @@ rustPlatform.buildRustPackage { }; useFetchCargoVendor = true; - cargoHash = "sha256-7jbaJSmz7isAiOYVXJ3gXorA2lhDEiVpL+l8gkOnQuM="; + cargoHash = "sha256-j6cQalYbeHunI1t4VRQkbqGNylwWg0NBoItwloYTfAE="; # set `HOME` to a temp dir for write access # Fix invalid option errors during linking (https://github.com/mozilla/nixpkgs-mozilla/commit/c72ff151a3e25f14182569679ed4cd22ef352328) @@ -100,14 +102,16 @@ rustPlatform.buildRustPackage { makeWrapper perl pkg-config - python3 rustPlatform.bindgenHook taplo + uv which yasm zlib ]; + env.UV_PYTHON = customPython.interpreter; + buildInputs = [ fontconfig From 8d040fa632f8ec161af61eb53828db232ad8dd58 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 27 Jun 2025 03:54:22 +0000 Subject: [PATCH 93/96] opengamepadui: 0.39.2 -> 0.40.1 --- pkgs/by-name/op/opengamepadui/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/op/opengamepadui/package.nix b/pkgs/by-name/op/opengamepadui/package.nix index e700d72d27e9..37a07ca943b4 100644 --- a/pkgs/by-name/op/opengamepadui/package.nix +++ b/pkgs/by-name/op/opengamepadui/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "opengamepadui"; - version = "0.39.2"; + version = "0.40.1"; buildType = if withDebug then "debug" else "release"; @@ -31,12 +31,12 @@ stdenv.mkDerivation (finalAttrs: { owner = "ShadowBlip"; repo = "OpenGamepadUI"; tag = "v${finalAttrs.version}"; - hash = "sha256-r7AR3PAYgTS/KvL44xkAr/iJM19grbmjwjZyzOSFXMc="; + hash = "sha256-XznqiHyMcjxpPUwvir4SyIkMnHroKOgOixx5C9Gd6p4="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit (finalAttrs) src cargoRoot; - hash = "sha256-T79G2bShJuFRfaCqG3IDHqW0s68yAdGyv58kdDYg6kg="; + hash = "sha256-vgaa7Pe0lksiGEpQbn2he5CzhVWoHUSPuXqCwSkoDco="; }; cargoRoot = "extensions"; From 4670b06dff171a923a397ea73c577c5ffba829f0 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Thu, 26 Jun 2025 23:12:59 -0500 Subject: [PATCH 94/96] fyne: 2.6.1 -> 1.26.1 (#417095) fyne: Build from new tools repo --- pkgs/by-name/fy/fyne/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/fy/fyne/package.nix b/pkgs/by-name/fy/fyne/package.nix index 4f12cee55bd2..fa11db13290f 100644 --- a/pkgs/by-name/fy/fyne/package.nix +++ b/pkgs/by-name/fy/fyne/package.nix @@ -15,16 +15,16 @@ buildGoModule rec { pname = "fyne"; - version = "2.6.1"; + version = "1.26.1"; src = fetchFromGitHub { owner = "fyne-io"; - repo = "fyne"; - tag = "v${version}"; - hash = "sha256-ONtZd+WlgDUS4XwSvIDkCazPsmiTIXdaQua6fnq5NKQ="; + repo = "tools"; + rev = "v${version}"; + hash = "sha256-eBwbXyhI1s4se7krzTemoSehgSXN7mht70q8mk+yGoM="; }; - vendorHash = "sha256-3lXDkiQoq+rDUN8Am9Bd/DJ5CKQqfQucbHKQrkS4wIg="; + vendorHash = "sha256-7B0PCKMfLULmqzIlNFeXhOUThnWSe9+gRhpswbiwLP4="; nativeBuildInputs = [ pkg-config ]; From 64adabab6c724b654be6ae61c5cb152231fb2928 Mon Sep 17 00:00:00 2001 From: Adrien Cosson Date: Fri, 27 Jun 2025 06:28:58 +0200 Subject: [PATCH 95/96] git-stack: add zlib to build input to fix darwin build (#419580) * git-stack: add zlib to build input to fix darwin build The version 0.10.18 of the package, introduced in 25.05, broke the build for `darwin` systems, due to a missing dependency on `zlib.h`. Inspired by https://github.com/NixOS/nixpkgs/pull/366745 * Take review into account --- pkgs/by-name/gi/git-stack/package.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/gi/git-stack/package.nix b/pkgs/by-name/gi/git-stack/package.nix index af3c00c1beb1..7ffa01c3e0ab 100644 --- a/pkgs/by-name/gi/git-stack/package.nix +++ b/pkgs/by-name/gi/git-stack/package.nix @@ -4,8 +4,9 @@ rustPlatform, testers, git-stack, + stdenv, + zlib, }: - rustPlatform.buildRustPackage rec { pname = "git-stack"; version = "0.10.19"; @@ -20,6 +21,12 @@ rustPlatform.buildRustPackage rec { useFetchCargoVendor = true; cargoHash = "sha256-kjyJeKeFtETowTehQEjN58YoqYFUBt9yQlRIcNY0hso="; + buildInputs = + [ ] + ++ lib.optionals stdenv.hostPlatform.isDarwin [ + zlib + ]; + # Many tests try to access the file system. doCheck = false; From 1a850b79b88bdacdacd8852f4ecc1688e9f6a38a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 27 Jun 2025 00:29:29 +0000 Subject: [PATCH 96/96] basex: 11.9 -> 12.0 --- pkgs/by-name/ba/basex/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ba/basex/package.nix b/pkgs/by-name/ba/basex/package.nix index ef9457d06651..44a3fc81bfd0 100644 --- a/pkgs/by-name/ba/basex/package.nix +++ b/pkgs/by-name/ba/basex/package.nix @@ -11,13 +11,13 @@ stdenv.mkDerivation rec { pname = "basex"; - version = "11.9"; + version = "12.0"; src = fetchurl { url = "http://files.basex.org/releases/${version}/BaseX${ builtins.replaceStrings [ "." ] [ "" ] version }.zip"; - hash = "sha256-55bZL/ogND4/X8ysMUC67C8AVv3eBWTm3iKfyR7bPVM="; + hash = "sha256-/9TeaAp2jckG77F8+J3aSpkoXWyTFXvXxnxXgpn58Zc="; }; nativeBuildInputs = [