Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge staging-next into staging

authored by

nixpkgs-ci[bot] and committed by
GitHub
fd607c5e 6ef33903

+1587 -110
-44
nixos/tests/openssh.nix
··· 35 35 ]; 36 36 }; 37 37 38 - server-x11 = 39 - { ... }: 40 - 41 - { 42 - environment.systemPackages = [ pkgs.xorg.xauth ]; 43 - services.openssh = { 44 - enable = true; 45 - settings.X11Forwarding = true; 46 - }; 47 - users.users.root.openssh.authorizedKeys.keys = [ 48 - snakeOilPublicKey 49 - ]; 50 - }; 51 - 52 - server-x11-disable = 53 - { ... }: 54 - 55 - { 56 - environment.systemPackages = [ pkgs.xorg.xauth ]; 57 - services.openssh = { 58 - enable = true; 59 - settings = { 60 - X11Forwarding = true; 61 - # CVE-2025-32728: the following line is ineffectual 62 - DisableForwarding = true; 63 - }; 64 - }; 65 - users.users.root.openssh.authorizedKeys.keys = [ 66 - snakeOilPublicKey 67 - ]; 68 - }; 69 - 70 38 server-allowed-users = 71 39 { ... }: 72 40 ··· 272 240 start_all() 273 241 274 242 server.wait_for_unit("sshd", timeout=30) 275 - server_x11.wait_for_unit("sshd", timeout=30) 276 - server_x11_disable.wait_for_unit("sshd", timeout=30) 277 243 server_allowed_users.wait_for_unit("sshd", timeout=30) 278 244 server_localhost_only.wait_for_unit("sshd", timeout=30) 279 245 server_match_rule.wait_for_unit("sshd", timeout=30) ··· 338 304 ) 339 305 client.succeed( 340 306 "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i privkey.snakeoil server-lazy true", 341 - timeout=30 342 - ) 343 - 344 - with subtest("x11-forwarding"): 345 - client.succeed( 346 - "[ \"$(ssh -Y -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i privkey.snakeoil server-x11 'xauth list' | tee /dev/stderr | wc -l)\" -eq 1 ]", 347 - timeout=30 348 - ) 349 - client.succeed( 350 - "[ \"$(ssh -Y -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i privkey.snakeoil server-x11-disable 'xauth list' | tee /dev/stderr | wc -l)\" -eq 0 ]", 351 307 timeout=30 352 308 ) 353 309
+2 -2
pkgs/applications/misc/slstatus/default.nix
··· 15 15 16 16 stdenv.mkDerivation rec { 17 17 pname = "slstatus"; 18 - version = "1.0"; 18 + version = "1.1"; 19 19 20 20 src = fetchgit { 21 21 url = "https://git.suckless.org/slstatus"; 22 22 rev = version; 23 - hash = "sha256-cFah6EgApslLSlJaOy/5W9ZV9Z1lzfKye/rRh9Om3T4="; 23 + hash = "sha256-MRDovZpQsvnLEvsbJNBzprkzQQ4nIs1T9BLT+tSGta8="; 24 24 }; 25 25 26 26 preBuild =
+6 -2
pkgs/applications/networking/browsers/librewolf/librewolf.nix
··· 15 15 16 16 extraPostPatch = '' 17 17 while read patch_name; do 18 - echo "applying LibreWolf patch: $patch_name" 19 - patch -p1 < ${source}/$patch_name 18 + if [ "$patch_name" -neq "patches/macos-import-vector.patch"]; then 19 + echo "applying LibreWolf patch: $patch_name" 20 + patch -p1 < ${source}/$patch_name 21 + else 22 + echo "skipping LibreWolf patch: $patch" 23 + fi 20 24 done <${source}/assets/patches.txt 21 25 22 26 cp -r ${source}/themes/browser .
+5 -5
pkgs/applications/networking/browsers/librewolf/src.json
··· 1 1 { 2 - "packageVersion": "137.0.2-1", 2 + "packageVersion": "138.0.1-2", 3 3 "source": { 4 - "rev": "137.0.2-1", 5 - "hash": "sha256-PZapXnpVGdQrTXWjlNuFj3idqelTKTpwapuwx+XuwW8=" 4 + "rev": "138.0.1-2", 5 + "hash": "sha256-H4GvKTrx0+GdUFOjW+E53VwZcZnrrBiXiMvR6aCEKDE=" 6 6 }, 7 7 "firefox": { 8 - "version": "137.0.2", 9 - "hash": "sha512-ghQMQyUjPqLi9XkIjOu5jA6NuISLQBjP+V1O1Cv4RwSe1lIPwFHZMO4melrLAIkIFwgl04FYnaDRCcoEph4cJA==" 8 + "version": "138.0.1", 9 + "hash": "sha512-vFqNZYFAxMPbKdURNMlxBaAiVWfVzhR1f2lZQGa/akShPgYmzr3it6B4usEooUaQ7gYIPQMG13id4qXp2DlLIw==" 10 10 } 11 11 }
+3 -1
pkgs/by-name/ca/cargo-embassy/package.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 rustPlatform, 4 5 fetchFromGitHub, 5 6 pkg-config, ··· 18 19 hash = "sha256-C8eFQFHYIj2P+zPOKLVBNX97UDVbbcdjbqh5n53ktCU="; 19 20 }; 20 21 21 - buildInputs = [ 22 + buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ 22 23 udev 23 24 ]; 24 25 ··· 34 35 homepage = "https://github.com/adinack/cargo-embassy"; 35 36 license = lib.licenses.gpl3Only; 36 37 maintainers = [ lib.maintainers.samw ]; 38 + platforms = lib.platforms.unix; 37 39 mainProgram = "cargo-embassy"; 38 40 }; 39 41 }
-1
pkgs/by-name/co/code-cursor/package.nix
··· 188 188 license = lib.licenses.unfree; 189 189 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 190 190 maintainers = with lib.maintainers; [ 191 - sarahec 192 191 aspauldingcode 193 192 ]; 194 193 platforms = lib.platforms.linux ++ lib.platforms.darwin;
+4 -1
pkgs/by-name/e1/e1s/package.nix
··· 25 25 changelog = "https://github.com/keidarcy/e1s/releases/tag/v${version}"; 26 26 license = licenses.mit; 27 27 mainProgram = "e1s"; 28 - maintainers = with maintainers; [ zelkourban ]; 28 + maintainers = with maintainers; [ 29 + zelkourban 30 + carlossless 31 + ]; 29 32 }; 30 33 }
+2 -2
pkgs/by-name/im/immich-go/package.nix
··· 9 9 }: 10 10 buildGoModule rec { 11 11 pname = "immich-go"; 12 - version = "0.25.3"; 12 + version = "0.26.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "simulot"; 16 16 repo = "immich-go"; 17 17 tag = "v${version}"; 18 - hash = "sha256-l4D0tE0yB2eLy9QlB9kraOtCUfqVRhYyaMUb/Xvv82c="; 18 + hash = "sha256-ya2KCUGHLdKcoxR83YqNG/4GiSgPABUeVaf1jqHtdzE="; 19 19 20 20 # Inspired by: https://github.com/NixOS/nixpkgs/blob/f2d7a289c5a5ece8521dd082b81ac7e4a57c2c5c/pkgs/applications/graphics/pdfcpu/default.nix#L20-L32 21 21 # The intention here is to write the information into files in the `src`'s
+6 -3
pkgs/by-name/io/ioquake3/package.nix
··· 18 18 makeDesktopItem, 19 19 freetype, 20 20 mumble, 21 + unstableGitUpdater, 21 22 }: 22 23 23 24 stdenv.mkDerivation { 24 25 pname = "ioquake3"; 25 - version = "unstable-2023-08-13"; 26 + version = "0-unstable-2025-04-25"; 26 27 27 28 src = fetchFromGitHub { 28 29 owner = "ioquake"; 29 30 repo = "ioq3"; 30 - rev = "ee950eb7b0e41437cc23a9943254c958da8a61ab"; 31 - sha256 = "sha256-NfhInwrtw85i2mnv7EtBrrpNaslaQaVhLNlK0I9aYto="; 31 + rev = "10afd421f23876e03535bb1958eae8b76371565d"; 32 + hash = "sha256-5ByaIjmyndiliU5qnt62mj2CFByVv4M4+d3KBAgysck="; 32 33 }; 33 34 34 35 nativeBuildInputs = [ ··· 82 83 ]; 83 84 }) 84 85 ]; 86 + 87 + passthru.updateScript = unstableGitUpdater { }; 85 88 86 89 meta = { 87 90 homepage = "https://ioquake3.org/";
+15 -12
pkgs/by-name/lu/luau/package.nix
··· 3 3 stdenv, 4 4 fetchFromGitHub, 5 5 cmake, 6 - gitUpdater, 7 6 llvmPackages, 7 + nix-update-script, 8 8 }: 9 9 10 - stdenv.mkDerivation rec { 10 + stdenv.mkDerivation (finalAttrs: { 11 11 pname = "luau"; 12 - version = "0.671"; 12 + version = "0.672"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "luau-lang"; 16 16 repo = "luau"; 17 - rev = version; 18 - hash = "sha256-iiIQKXByHuGCH5ypr7uSAcABaQagLw008Z0HRCsREIM="; 17 + tag = finalAttrs.version; 18 + hash = "sha256-FMFW7AikBnoT6FZhmCOHKqRVCi2qcO8kXxYCaAfCfNY="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ cmake ]; ··· 43 43 runHook postCheck 44 44 ''; 45 45 46 - passthru.updateScript = gitUpdater { }; 46 + passthru.updateScript = nix-update-script { }; 47 47 48 - meta = with lib; { 48 + meta = { 49 49 description = "Fast, small, safe, gradually typed embeddable scripting language derived from Lua"; 50 50 homepage = "https://luau-lang.org/"; 51 - changelog = "https://github.com/luau-lang/luau/releases/tag/${version}"; 52 - license = licenses.mit; 53 - platforms = platforms.all; 54 - maintainers = with maintainers; [ prince213 ]; 51 + changelog = "https://github.com/luau-lang/luau/releases/tag/${finalAttrs.version}"; 52 + license = lib.licenses.mit; 53 + platforms = lib.platforms.all; 54 + maintainers = with lib.maintainers; [ 55 + prince213 56 + HeitorAugustoLN 57 + ]; 55 58 mainProgram = "luau"; 56 59 }; 57 - } 60 + })
+34
pkgs/by-name/me/meowpdf/package.nix
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + pkg-config, 6 + }: 7 + 8 + rustPlatform.buildRustPackage (finalAttrs: { 9 + pname = "meowpdf"; 10 + version = "1.0.0"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "monoamine11231"; 14 + repo = "meowpdf"; 15 + tag = "v${finalAttrs.version}"; 16 + hash = "sha256-C5GqyZW0pDmBuaKM890hx2JZtkZqZx+x/RZFCPhpjho="; 17 + }; 18 + 19 + cargoHash = "sha256-hCGMm0ORKuyyWU5D9k+nthSwmq8ALz0qASLDaMiW30U="; 20 + 21 + nativeBuildInputs = [ 22 + pkg-config 23 + rustPlatform.bindgenHook 24 + ]; 25 + 26 + meta = { 27 + description = "PDF viewer for the Kitty terminal with GUI-like usage and Vim-like keybindings written in Rust"; 28 + homepage = "https://github.com/monoamine11231/meowpdf"; 29 + license = lib.licenses.mit; 30 + maintainers = with lib.maintainers; [ arthsmn ]; 31 + mainProgram = "meowpdf"; 32 + platforms = lib.platforms.linux; 33 + }; 34 + })
+2 -2
pkgs/by-name/nw/nwg-panel/package.nix
··· 23 23 24 24 python3Packages.buildPythonApplication rec { 25 25 pname = "nwg-panel"; 26 - version = "0.10.1"; 26 + version = "0.10.2"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "nwg-piotr"; 30 30 repo = "nwg-panel"; 31 31 tag = "v${version}"; 32 - hash = "sha256-ZQQRuYcctVKkE1GLx0VRAOZc0VTl1DuyR6y9CE5TbcE="; 32 + hash = "sha256-Wml9FXktLjTtYWTE/yoYDwFcPXeL1zhY3VgzrMW8DzE="; 33 33 }; 34 34 35 35 # No tests
+17
pkgs/by-name/sd/sdcc/package.nix
··· 63 63 gputils 64 64 ]; 65 65 66 + # sdcc 4.5.0 massively rewrote sim/ucsim/Makefile.in, and lost the `.PHONY` 67 + # rule in the process. As a result, on macOS (which uses a case-insensitive 68 + # filesystem), the INSTALL file keeps the `install` target in the ucsim 69 + # directory from running. Nothing else creates the `man` output, causing the 70 + # entire build to fail. 71 + # 72 + # TODO: remove this when updating to the next release - it's been fixed in 73 + # upstream sdcc r15384 <https://sourceforge.net/p/sdcc/code/15384/>. 74 + 75 + postPatch = '' 76 + if grep -q '\.PHONY:.*install' sim/ucsim/Makefile.in; then 77 + echo 'Upstream has added `.PHONY: install` rule; must remove `postPatch` from the Nix file.' >&2 78 + exit 1 79 + fi 80 + echo '.PHONY: install' >> sim/ucsim/Makefile.in 81 + ''; 82 + 66 83 configureFlags = 67 84 let 68 85 excludedPorts =
+3 -3
pkgs/by-name/st/stalwart-mail/package.nix
··· 19 19 20 20 rustPlatform.buildRustPackage rec { 21 21 pname = "stalwart-mail"; 22 - version = "0.11.7"; 22 + version = "0.11.8"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "stalwartlabs"; 26 26 repo = "mail-server"; 27 27 tag = "v${version}"; 28 - hash = "sha256-pBCj/im5UB7A92LBuLeB6EAHTJEuN62BG5Nkj8qsNNA="; 28 + hash = "sha256-VqGosbSQxNeOS+kGtvXAmz6vyz5mJlXvKZM57B1Xue4="; 29 29 }; 30 30 31 31 useFetchCargoVendor = true; 32 - cargoHash = "sha256-B+xsTVsh9QBAybKiJq0Sb7rveOsH05vuCmNQ5t/UZnk="; 32 + cargoHash = "sha256-iheURWxO0cOvO+FV01l2Vmo0B+S2mXzue6mx3gapftQ="; 33 33 34 34 nativeBuildInputs = [ 35 35 pkg-config
+1479 -1
pkgs/by-name/ty/typst/typst-packages-from-universe.toml
··· 84 84 ] 85 85 homepage = "https://github.com/JL-ghcoder/Typst-Pre-Template" 86 86 87 + [academicv."1.1.0"] 88 + url = "https://packages.typst.org/preview/academicv-1.1.0.tar.gz" 89 + hash = "sha256-OzuK3FlqGPgFEoBz3J8zTJXfxG5qbO0oZFGVPofXqA0=" 90 + typstDeps = [ 91 + "academicv_1_0_0", 92 + ] 93 + description = "A clean, flexible curriculum vitae (CV) template using Typst and YAML" 94 + license = [ 95 + "Apache-2.0", 96 + ] 97 + homepage = "https://github.com/roaldarbol/academicv" 98 + 87 99 [academicv."1.0.0"] 88 100 url = "https://packages.typst.org/preview/academicv-1.0.0.tar.gz" 89 101 hash = "sha256-GHXDKGpD9JZIZbCmziNORHx4n6VjwY4R4nh8bUyGYQ4=" ··· 444 456 "MIT", 445 457 ] 446 458 homepage = "https://github.com/Robotechnic/alchemist" 459 + 460 + [alexandria."0.2.0"] 461 + url = "https://packages.typst.org/preview/alexandria-0.2.0.tar.gz" 462 + hash = "sha256-N8O9v1tD6CemqbJjX8yTMK2ZGFFASLchZSEie1v2Y3w=" 463 + typstDeps = [] 464 + description = "Use multiple bibliographies in a single Typst document " 465 + license = [ 466 + "MIT", 467 + ] 468 + homepage = "https://github.com/SillyFreak/typst-alexandria" 447 469 448 470 [alexandria."0.1.3"] 449 471 url = "https://packages.typst.org/preview/alexandria-0.1.3.tar.gz" ··· 910 932 ] 911 933 homepage = "https://github.com/typst/templates" 912 934 935 + [arborly."0.3.0"] 936 + url = "https://packages.typst.org/preview/arborly-0.3.0.tar.gz" 937 + hash = "sha256-/5uZL6VbHbNkof5ffFuqnzl1EALCaZ4wdxrYn+IjdSU=" 938 + typstDeps = [ 939 + "mantys_1_0_1", 940 + ] 941 + description = "A library for producing beautiful syntax tree graphs" 942 + license = [ 943 + "MIT", 944 + ] 945 + homepage = "https://github.com/pearcebasmanm/arborly" 946 + 913 947 [arborly."0.2.0"] 914 948 url = "https://packages.typst.org/preview/arborly-0.2.0.tar.gz" 915 949 hash = "sha256-PotA4XfhbE8qPcPUgq4dtbwrGPnP1dT7i4bRqgj4SY4=" ··· 1203 1237 ] 1204 1238 homepage = "https://github.com/avonmoll/bamdone-rebuttal" 1205 1239 1240 + [barcala."0.1.1"] 1241 + url = "https://packages.typst.org/preview/barcala-0.1.1.tar.gz" 1242 + hash = "sha256-CrtqR7G1X0Uert3ZILtxBn50feB6VtgyR3DoJFvDkok=" 1243 + typstDeps = [ 1244 + "fancy-units_0_1_1", 1245 + "lilaq_0_2_0", 1246 + "physica_0_9_5", 1247 + "valkyrie_0_2_2", 1248 + ] 1249 + description = "A report template for UNLP students, specially for engineering" 1250 + license = [ 1251 + "MIT", 1252 + ] 1253 + homepage = "https://github.com/JuanM04/barcala" 1254 + 1255 + [barcala."0.1.0"] 1256 + url = "https://packages.typst.org/preview/barcala-0.1.0.tar.gz" 1257 + hash = "sha256-DcG8bHqYciFELaKKXqS4/wOT9EwlWh/sihySjwBKV8I=" 1258 + typstDeps = [ 1259 + "valkyrie_0_2_2", 1260 + ] 1261 + description = "A report template for UNLP students, specially for engineering" 1262 + license = [ 1263 + "MIT", 1264 + ] 1265 + homepage = "https://github.com/JuanM04/barcala" 1266 + 1206 1267 [basalt-backlinks."0.1.1"] 1207 1268 url = "https://packages.typst.org/preview/basalt-backlinks-0.1.1.tar.gz" 1208 1269 hash = "sha256-ynoLsV664bY6MyJF5BXM3/tBXO28g3ZxW567MKg1SgY=" ··· 1275 1336 ] 1276 1337 homepage = "https://github.com/polylux-typ/basic" 1277 1338 1339 + [basic-report."0.2.0"] 1340 + url = "https://packages.typst.org/preview/basic-report-0.2.0.tar.gz" 1341 + hash = "sha256-WXemvfXuIw/fBgJ9adUjcbovK797F1lPXvcKLELrs00=" 1342 + typstDeps = [ 1343 + "hydra_0_6_0", 1344 + ] 1345 + description = "A simple template for reports" 1346 + license = [ 1347 + "MIT", 1348 + ] 1349 + homepage = "https://github.com/roland-KA/basic-report-typst-template" 1350 + 1278 1351 [basic-report."0.1.2"] 1279 1352 url = "https://packages.typst.org/preview/basic-report-0.1.2.tar.gz" 1280 1353 hash = "sha256-1gyKqdnYu/T7bJahuonb/f8N3tc+w8k3eVLAWo4SmFs=" ··· 1310 1383 "MIT", 1311 1384 ] 1312 1385 homepage = "https://github.com/roland-KA/basic-report-typst-template" 1386 + 1387 + [basic-resume."0.2.7"] 1388 + url = "https://packages.typst.org/preview/basic-resume-0.2.7.tar.gz" 1389 + hash = "sha256-qKv8c853nKkPEzW04MEoa4wK0/6dm0lDG6rKU+f6OpI=" 1390 + typstDeps = [ 1391 + "scienceicons_0_1_0", 1392 + ] 1393 + description = "A simple, standard resume, designed to work well with ATS" 1394 + license = [ 1395 + "Unlicense", 1396 + ] 1397 + homepage = "https://github.com/stuxf/basic-typst-resume-template" 1313 1398 1314 1399 [basic-resume."0.2.4"] 1315 1400 url = "https://packages.typst.org/preview/basic-resume-0.2.4.tar.gz" ··· 1683 1768 ] 1684 1769 homepage = "https://github.com/Lypsilonx/boxr" 1685 1770 1771 + [brain-transplant."0.1.0"] 1772 + url = "https://packages.typst.org/preview/brain-transplant-0.1.0.tar.gz" 1773 + hash = "sha256-8kPaIV5h/xOrwMuLSyO0uFEw8mk89+GZDB8zMMZKgJg=" 1774 + typstDeps = [] 1775 + description = "Transpile Brainfuck code to Typst" 1776 + license = [ 1777 + "MIT-0", 1778 + ] 1779 + homepage = "https://app.radicle.xyz/nodes/seed.radicle.garden/rad:z3bYXx6FurPtAURke7sUV8ktrtFNt" 1780 + 1686 1781 [brilliant-cv."2.0.5"] 1687 1782 url = "https://packages.typst.org/preview/brilliant-cv-2.0.5.tar.gz" 1688 1783 hash = "sha256-55ldsGnrsDowYYz1mxIlcLXIna8gRteDikv6K56aXDo=" ··· 1925 2020 "MIT", 1926 2021 ] 1927 2022 homepage = "https://github.com/cu1ch3n/caidan" 2023 + 2024 + [callisto."0.2.2"] 2025 + url = "https://packages.typst.org/preview/callisto-0.2.2.tar.gz" 2026 + hash = "sha256-uX1REI/dk8FlXAE7mGGOI6IuJQh73gWNd5ZOhjrd/gw=" 2027 + typstDeps = [ 2028 + "based_0_2_0", 2029 + "cmarker_0_1_3", 2030 + "mitex_0_2_5", 2031 + ] 2032 + description = "Import Jupyter notebooks" 2033 + license = [ 2034 + "MIT", 2035 + ] 2036 + homepage = "https://github.com/knuesel/callisto" 1928 2037 1929 2038 [callisto."0.1.0"] 1930 2039 url = "https://packages.typst.org/preview/callisto-0.1.0.tar.gz" ··· 2769 2878 ] 2770 2879 homepage = "https://github.com/alexanderkoller/typst-citegeist" 2771 2880 2881 + [cjk-unbreak."0.1.0"] 2882 + url = "https://packages.typst.org/preview/cjk-unbreak-0.1.0.tar.gz" 2883 + hash = "sha256-i4Rql1otEyJZW1ib987ZACP9u8fx7S8wvMlrZFvLLrI=" 2884 + typstDeps = [ 2885 + "touying_0_6_1", 2886 + ] 2887 + description = "Remove spaces caused by line breaks around CJK" 2888 + license = [ 2889 + "MIT", 2890 + ] 2891 + homepage = "https://github.com/KZNS/cjk-unbreak" 2892 + 2772 2893 [classic-aau-report."0.3.0"] 2773 2894 url = "https://packages.typst.org/preview/classic-aau-report-0.3.0.tar.gz" 2774 2895 hash = "sha256-SqWI3LPyvv5nGWeLfrMD3rLOMXer2UT2djt/iA9NlSE=" ··· 2904 3025 ] 2905 3026 homepage = "https://github.com/Gowee/typst-clatter" 2906 3027 3028 + [clean-acmart."0.0.1"] 3029 + url = "https://packages.typst.org/preview/clean-acmart-0.0.1.tar.gz" 3030 + hash = "sha256-2xb7rRpMwA0FEIgZwzTUia1DoOQDU3Otc48Qc9YZe3U=" 3031 + typstDeps = [] 3032 + description = "Simple and clean Typst paper template for ACM conferences following the original acmart style" 3033 + license = [ 3034 + "MIT", 3035 + ] 3036 + homepage = "https://github.com/vtta/clean-acmart" 3037 + 3038 + [clean-agh-thesis."0.1.0"] 3039 + url = "https://packages.typst.org/preview/clean-agh-thesis-0.1.0.tar.gz" 3040 + hash = "sha256-dFhLL2pFSYtizKGoKpegQppBdFsai9TQUPJWVdFOmtQ=" 3041 + typstDeps = [] 3042 + description = "AGH-compliant thesis template" 3043 + license = [ 3044 + "MIT-0", 3045 + ] 3046 + homepage = "https://github.com/matisiekpl/agh-typst" 3047 + 2907 3048 [clean-dhbw."0.2.1"] 2908 3049 url = "https://packages.typst.org/preview/clean-dhbw-0.2.1.tar.gz" 2909 3050 hash = "sha256-JAF0qUnqAlKzVU2g8XYrRJRDX2whTeS5rq8Jfo/upk4=" ··· 3060 3201 ] 3061 3202 homepage = "https://github.com/sebaseb98/clean-math-thesis" 3062 3203 3204 + [clear-iclr."0.7.0"] 3205 + url = "https://packages.typst.org/preview/clear-iclr-0.7.0.tar.gz" 3206 + hash = "sha256-d5Jv1xtNJllFK6nC56jU6xmfMZa2tp2GvNwspDLxW6c=" 3207 + typstDeps = [] 3208 + description = "Paper template for submission to International Conference on Learning\nRepresentations (ICLR" 3209 + license = [ 3210 + "MIT", 3211 + ] 3212 + homepage = "https://github.com/daskol/typst-templates" 3213 + 3063 3214 [clear-iclr."0.4.0"] 3064 3215 url = "https://packages.typst.org/preview/clear-iclr-0.4.0.tar.gz" 3065 3216 hash = "sha256-hpHIcxCB5ZE8ZJITOzUYuiFEuV/Fs2UiSVhrX86r6MQ=" ··· 3069 3220 "MIT", 3070 3221 ] 3071 3222 homepage = "https://github.com/daskol/typst-templates" 3223 + 3224 + [cmarker."0.1.5"] 3225 + url = "https://packages.typst.org/preview/cmarker-0.1.5.tar.gz" 3226 + hash = "sha256-5Y9ucv5QfjvrHG8ZxypW88XjjjB8XWqxm5Y2pwFgQDA=" 3227 + typstDeps = [] 3228 + description = "Transpile CommonMark Markdown to Typst, from within Typst" 3229 + license = [ 3230 + "MIT", 3231 + ] 3232 + homepage = "https://github.com/SabrinaJewson/cmarker.typ" 3233 + 3234 + [cmarker."0.1.4"] 3235 + url = "https://packages.typst.org/preview/cmarker-0.1.4.tar.gz" 3236 + hash = "sha256-TVbvfBOivVXn9sFMswRptRhNXasTKLy3GtDFGDOhE1A=" 3237 + typstDeps = [] 3238 + description = "Transpile CommonMark Markdown to Typst, from within Typst" 3239 + license = [ 3240 + "MIT", 3241 + ] 3242 + homepage = "https://github.com/SabrinaJewson/cmarker.typ" 3072 3243 3073 3244 [cmarker."0.1.3"] 3074 3245 url = "https://packages.typst.org/preview/cmarker-0.1.3.tar.gz" ··· 3826 3997 ] 3827 3998 homepage = "https://github.com/philkleer/create-lattes-cv" 3828 3999 4000 + [curryst."0.5.1"] 4001 + url = "https://packages.typst.org/preview/curryst-0.5.1.tar.gz" 4002 + hash = "sha256-aDSFHAGqdWYTQzUuwgVtDaprCsFsT+7zt28abBm4QDo=" 4003 + typstDeps = [] 4004 + description = "Typeset trees of inference rules" 4005 + license = [ 4006 + "MIT", 4007 + ] 4008 + homepage = "https://github.com/pauladam94/curryst" 4009 + 3829 4010 [curryst."0.5.0"] 3830 4011 url = "https://packages.typst.org/preview/curryst-0.5.0.tar.gz" 3831 4012 hash = "sha256-WBGZ8nmCrB8iihmkjzdrA7l2U3ff3TKpvQh/XAmTE8Y=" ··· 3940 4121 ] 3941 4122 homepage = "https://github.com/csimide/cuti" 3942 4123 4124 + [cvssc."0.1.1"] 4125 + url = "https://packages.typst.org/preview/cvssc-0.1.1.tar.gz" 4126 + hash = "sha256-COZzBQ2MqLGKlUlXweYpkERIzC3OE4OUeKNKntQhPpg=" 4127 + typstDeps = [ 4128 + "codly_0_1_0", 4129 + "tidy_0_3_0", 4130 + ] 4131 + description = "Common Vulnerability Scoring System Calculator" 4132 + license = [ 4133 + "MIT", 4134 + ] 4135 + 3943 4136 [cvssc."0.1.0"] 3944 4137 url = "https://packages.typst.org/preview/cvssc-0.1.0.tar.gz" 3945 4138 hash = "sha256-pCeczpz4B70NefSn79TL/zFjwZG5A+W2QsYedUjvg5o=" ··· 3951 4144 license = [ 3952 4145 "MIT", 3953 4146 ] 4147 + 4148 + [cyberschool-errorteaplate."0.1.4"] 4149 + url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.4.tar.gz" 4150 + hash = "sha256-BHJNjdvj53BHDhvqjkSRk0bLBUzlbYazd+ZXzgj0FSo=" 4151 + typstDeps = [ 4152 + "codly_1_3_0", 4153 + "codly-languages_0_1_8", 4154 + ] 4155 + description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" 4156 + license = [ 4157 + "MIT", 4158 + ] 4159 + homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" 3954 4160 3955 4161 [cyberschool-errorteaplate."0.1.3"] 3956 4162 url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.3.tar.gz" ··· 4086 4292 "Unlicense", 4087 4293 ] 4088 4294 homepage = "https://github.com/profetia/defined" 4295 + 4296 + [definitely-not-isec-thesis."2.0.1"] 4297 + url = "https://packages.typst.org/preview/definitely-not-isec-thesis-2.0.1.tar.gz" 4298 + hash = "sha256-5mxFjH8gF1biPwEclEdRpMgth8FHBcrJWauc3PCYmIo=" 4299 + typstDeps = [ 4300 + "definitely-not-isec-thesis_2_0_0", 4301 + ] 4302 + description = "An unofficial ISEC TUGraz Master's Thesis template" 4303 + license = [ 4304 + "MIT", 4305 + ] 4306 + homepage = "https://github.com/ecomaikgolf/typst-isec-master-thesis-template/" 4089 4307 4090 4308 [definitely-not-isec-thesis."2.0.0"] 4091 4309 url = "https://packages.typst.org/preview/definitely-not-isec-thesis-2.0.0.tar.gz" ··· 5759 5977 ] 5760 5978 homepage = "https://github.com/duskmoon314/typst-fontawesome" 5761 5979 5980 + [formalettre."0.1.3"] 5981 + url = "https://packages.typst.org/preview/formalettre-0.1.3.tar.gz" 5982 + hash = "sha256-51SXjB7Icsb0NUPvhPhmaZxa2AJF8D0DLhm5zFzH7YI=" 5983 + typstDeps = [] 5984 + description = "French formal letter template" 5985 + license = [ 5986 + "BSD-3-Clause", 5987 + ] 5988 + homepage = "https://github.com/Brndan/lettre" 5989 + 5762 5990 [formalettre."0.1.2"] 5763 5991 url = "https://packages.typst.org/preview/formalettre-0.1.2.tar.gz" 5764 5992 hash = "sha256-pAfyUg/DQ0a8EoRPRc9rIV+URWHP8ea32R8gevkcjJQ=" ··· 5818 6046 "MIT", 5819 6047 ] 5820 6048 homepage = "https://github.com/ejbasas/fractus" 6049 + 6050 + [fractusist."0.3.2"] 6051 + url = "https://packages.typst.org/preview/fractusist-0.3.2.tar.gz" 6052 + hash = "sha256-MZLCEJq/4006XsJyf91k2WlF/zgQo2Nx0Ng1FsV4ojI=" 6053 + typstDeps = [ 6054 + "suiji_0_3_0", 6055 + ] 6056 + description = "Create a variety of wonderful fractals and curves in Typst" 6057 + license = [ 6058 + "MIT", 6059 + ] 6060 + homepage = "https://github.com/liuguangxi/fractusist" 6061 + 6062 + [fractusist."0.3.1"] 6063 + url = "https://packages.typst.org/preview/fractusist-0.3.1.tar.gz" 6064 + hash = "sha256-r2W2PTjgLYmBW2J8AMP6KMZC8QtJ0NfesIcEZHVNxSs=" 6065 + typstDeps = [ 6066 + "suiji_0_3_0", 6067 + ] 6068 + description = "Create a variety of wonderful fractals and curves in Typst" 6069 + license = [ 6070 + "MIT", 6071 + ] 6072 + homepage = "https://github.com/liuguangxi/fractusist" 5821 6073 5822 6074 [fractusist."0.3.0"] 5823 6075 url = "https://packages.typst.org/preview/fractusist-0.3.0.tar.gz" ··· 6166 6418 "AGPL-3.0-only", 6167 6419 ] 6168 6420 homepage = "https://github.com/connortwiegand/game-theoryst" 6421 + 6422 + [gantty."0.2.0"] 6423 + url = "https://packages.typst.org/preview/gantty-0.2.0.tar.gz" 6424 + hash = "sha256-AFrlAvMhIeQ8yP9Oa8ID4eO9eA4jGzEGxI6BnBjHlik=" 6425 + typstDeps = [ 6426 + "cetz_0_3_1", 6427 + ] 6428 + description = "Create gantt charts using datetimes" 6429 + license = [ 6430 + "LGPL-3.0-only", 6431 + ] 6432 + homepage = "https://gitlab.com/john_t/typst-gantty" 6169 6433 6170 6434 [gantty."0.1.0"] 6171 6435 url = "https://packages.typst.org/preview/gantty-0.1.0.tar.gz" ··· 7068 7332 ] 7069 7333 homepage = "https://codeberg.org/Sekoia/gviz-typst" 7070 7334 7335 + [hagakiii."0.1.0"] 7336 + url = "https://packages.typst.org/preview/hagakiii-0.1.0.tar.gz" 7337 + hash = "sha256-cIJ562PgOM0flVEhS+7tyuMX+SH/2rxlifpqI5PBr+E=" 7338 + typstDeps = [] 7339 + description = "Print address labels on Japanese postcards" 7340 + license = [ 7341 + "MIT", 7342 + ] 7343 + homepage = "https://github.com/34j/typst-hagakiii" 7344 + 7345 + [hamnosys-includer."0.1.0"] 7346 + url = "https://packages.typst.org/preview/hamnosys-includer-0.1.0.tar.gz" 7347 + hash = "sha256-kLu2ci0HW9sRpop9HZ1Hd8UcBrozLcn4LDuubXrFjKM=" 7348 + typstDeps = [] 7349 + description = "For using HamNoSys in Typst" 7350 + license = [ 7351 + "LPPL-1.3c", 7352 + ] 7353 + homepage = "https://github.com/TestTimothy/Typst-HamNoSys" 7354 + 7355 + [hand-in."1.0.0"] 7356 + url = "https://packages.typst.org/preview/hand-in-1.0.0.tar.gz" 7357 + hash = "sha256-c7xX5I3AImc7cWhxtLhsHa3EOx5zNAq4Tlqtn/DV5EM=" 7358 + typstDeps = [] 7359 + description = "Clean and minimalist assignment" 7360 + license = [ 7361 + "MIT-0", 7362 + ] 7363 + homepage = "https://github.com/mkorje/typst-hand-in" 7364 + 7071 7365 [handy-dora."0.1.0"] 7072 7366 url = "https://packages.typst.org/preview/handy-dora-0.1.0.tar.gz" 7073 7367 hash = "sha256-3cDtmhJjp2GgBMQGUyUrd8hq6SQ9ggKD7vsR9e1OUvQ=" ··· 7537 7831 ] 7538 7832 homepage = "https://github.com/hei-templates/hei-synd-thesis" 7539 7833 7834 + [herodot."0.1.0"] 7835 + url = "https://packages.typst.org/preview/herodot-0.1.0.tar.gz" 7836 + hash = "sha256-hZItUzNJe3TNxMjk2JiN7+wuI5AhGwUdx8p8HOUMnUI=" 7837 + typstDeps = [ 7838 + "cetz_0_3_4", 7839 + ] 7840 + description = "A package for making linear timelines, inspired by chronology" 7841 + license = [ 7842 + "GPL-3.0-only", 7843 + ] 7844 + homepage = "https://github.com/gnist-dev/herodot" 7845 + 7540 7846 [hhn-unitylab-thesis-template."0.0.1"] 7541 7847 url = "https://packages.typst.org/preview/hhn-unitylab-thesis-template-0.0.1.tar.gz" 7542 7848 hash = "sha256-nUUMm1vlguTyfcHyMZ3MwzFCwCRxtFo3VLiDYyUegYE=" ··· 7608 7914 ] 7609 7915 homepage = "https://github.com/HTL3R-Typst/htl3r-da" 7610 7916 7917 + [htlwienwest-da."0.3.3"] 7918 + url = "https://packages.typst.org/preview/htlwienwest-da-0.3.3.tar.gz" 7919 + hash = "sha256-MFvkmwBGhKRC1308oznAnKWAT1fKuo0l00hmHw/Vljk=" 7920 + typstDeps = [] 7921 + description = "The diploma thesis template for students of the HTL Wien West" 7922 + license = [ 7923 + "MIT", 7924 + ] 7925 + homepage = "https://github.com/htlwienwest/da-vorlage-typst" 7926 + 7927 + [htlwienwest-da."0.3.2"] 7928 + url = "https://packages.typst.org/preview/htlwienwest-da-0.3.2.tar.gz" 7929 + hash = "sha256-OAVoHBYuLe9zT3wWOgNBYTX2id/Y1ap7lKDweLgkyV4=" 7930 + typstDeps = [] 7931 + description = "The diploma thesis template for students of the HTL Wien West" 7932 + license = [ 7933 + "MIT", 7934 + ] 7935 + homepage = "https://github.com/htlwienwest/da-vorlage-typst" 7936 + 7611 7937 [htlwienwest-da."0.2.1"] 7612 7938 url = "https://packages.typst.org/preview/htlwienwest-da-0.2.1.tar.gz" 7613 7939 hash = "sha256-3nU774Aby7wrhNgCm8H4cOdc6cj1OD+2o8DMr7rqknE=" ··· 7981 8307 ] 7982 8308 homepage = "https://github.com/Fricsion/typst-template_ieee-style-single-column" 7983 8309 8310 + [ijimai."0.0.4"] 8311 + url = "https://packages.typst.org/preview/ijimai-0.0.4.tar.gz" 8312 + hash = "sha256-TMGEcCP27e0mLbDZdsOBT0kpYdL+5rnbvr38Z2cjJIg=" 8313 + typstDeps = [ 8314 + "datify_0_1_3", 8315 + "droplet_0_3_1", 8316 + "wrap-it_0_1_1", 8317 + ] 8318 + description = "Template for writing articles for the International Journal of Interactive Multimedia and Artificial Intelligence (IJIMAI" 8319 + license = [ 8320 + "MIT", 8321 + ] 8322 + homepage = "https://github.com/pammacdotnet/IJIMAI" 8323 + 8324 + [ijimai."0.0.3"] 8325 + url = "https://packages.typst.org/preview/ijimai-0.0.3.tar.gz" 8326 + hash = "sha256-xZmU8c/CXwHwCv2QuU83YhOiZ6nuADn5smSMhigjQPo=" 8327 + typstDeps = [ 8328 + "datify_0_1_3", 8329 + "droplet_0_3_1", 8330 + "wrap-it_0_1_1", 8331 + ] 8332 + description = "Template for writing articles for the International Journal of Interactive Multimedia and Artificial Intelligence (IJIMAI" 8333 + license = [ 8334 + "MIT", 8335 + ] 8336 + homepage = "https://github.com/pammacdotnet/IJIMAI" 8337 + 7984 8338 [ijimai."0.0.2"] 7985 8339 url = "https://packages.typst.org/preview/ijimai-0.0.2.tar.gz" 7986 8340 hash = "sha256-Uf+PQdL6RsBiKdkbWg+msGLwpkbwiBvBUnzk0MQow3M=" ··· 8008 8362 "MIT", 8009 8363 ] 8010 8364 homepage = "https://github.com/pammacdotnet/IJIMAI" 8365 + 8366 + [illc-mol-thesis."0.2.0"] 8367 + url = "https://packages.typst.org/preview/illc-mol-thesis-0.2.0.tar.gz" 8368 + hash = "sha256-aQisDHYRzCywWs1ayT5nRFO64F2bBPUJJgANhEGZSsk=" 8369 + typstDeps = [ 8370 + "great-theorems_0_1_2", 8371 + "rich-counters_0_2_2", 8372 + ] 8373 + description = "Official Typst thesis template for Master of Logic students at the ILLC" 8374 + license = [ 8375 + "AGPL-3.0-or-later", 8376 + ] 8377 + homepage = "https://codeberg.org/foxy/illc-mol-thesis" 8011 8378 8012 8379 [illc-mol-thesis."0.1.2"] 8013 8380 url = "https://packages.typst.org/preview/illc-mol-thesis-0.1.2.tar.gz" ··· 8482 8849 ] 8483 8850 homepage = "https://github.com/ISC-HEI/ISC-report" 8484 8851 8852 + [its-scripted."0.1.0"] 8853 + url = "https://packages.typst.org/preview/its-scripted-0.1.0.tar.gz" 8854 + hash = "sha256-Q7zPoW9hjAoirl2xb5sG2/tY3ornofX1hq6B6OIQBHo=" 8855 + typstDeps = [] 8856 + description = "A template for writing movie/tv/theater-scripts in screenplay format" 8857 + license = [ 8858 + "LGPL-3.0-only", 8859 + ] 8860 + homepage = "https://github.com/danielFHcode/typst-screenplay" 8861 + 8485 8862 [jaconf-mscs."0.1.0"] 8486 8863 url = "https://packages.typst.org/preview/jaconf-mscs-0.1.0.tar.gz" 8487 8864 hash = "sha256-Vvp2RFqMP2/Uho0VrA4ZE3DXJuj3cy5cPRaxv280x1o=" ··· 8624 9001 hash = "sha256-m/Mj05WArGW5YDoKNdyt1F0YQTS1Dz5Jw9er8w2vyas=" 8625 9002 typstDeps = [] 8626 9003 description = "Randziffern in Typst" 9004 + license = [ 9005 + "MIT", 9006 + ] 9007 + 9008 + [juti."0.0.2"] 9009 + url = "https://packages.typst.org/preview/juti-0.0.2.tar.gz" 9010 + hash = "sha256-BcluOxlfOmvwCMGY1tnoLMOGpGw2FK+K4O9VbmAXDIc=" 9011 + typstDeps = [] 9012 + description = "Template for writing articles for JUTI: Jurnal Ilmiah Teknologi Informasi" 9013 + license = [ 9014 + "MIT", 9015 + ] 9016 + 9017 + [juti."0.0.1"] 9018 + url = "https://packages.typst.org/preview/juti-0.0.1.tar.gz" 9019 + hash = "sha256-vUaHThW8boRmGh6g8xnTJpyAJD6oDMI9HEq9vtSbzcY=" 9020 + typstDeps = [] 9021 + description = "Template for writing articles for JUTI: Jurnal Ilmiah Teknologi Informasi" 8627 9022 license = [ 8628 9023 "MIT", 8629 9024 ] ··· 9116 9511 ] 9117 9512 homepage = "https://github.com/Marmare314/lemmify" 9118 9513 9514 + [leonux."1.1.0"] 9515 + url = "https://packages.typst.org/preview/leonux-1.1.0.tar.gz" 9516 + hash = "sha256-+kzhNhI9CeQ297PYDQ3L+BQLxZnwc/oJafNyapBY/yU=" 9517 + typstDeps = [] 9518 + description = "Minimalistic Typst slides (similar to LaTeX beamer" 9519 + license = [ 9520 + "MIT", 9521 + ] 9522 + homepage = "https://github.com/LordBlacky/leonux" 9523 + 9524 + [leonux."1.0.0"] 9525 + url = "https://packages.typst.org/preview/leonux-1.0.0.tar.gz" 9526 + hash = "sha256-r9W+jllahfpEiHMTMHQ5zMMU7LPtfdnwVnYvMWqtpaY=" 9527 + typstDeps = [] 9528 + description = "Minimalistic Typst slides (similar to LaTeX beamer" 9529 + license = [ 9530 + "MIT", 9531 + ] 9532 + homepage = "https://github.com/LordBlacky/leonux" 9533 + 9119 9534 [letter-pro."3.0.0"] 9120 9535 url = "https://packages.typst.org/preview/letter-pro-3.0.0.tar.gz" 9121 9536 hash = "sha256-Ow22loLjb/wiiB3iSmdZirbtfDR2XIveWgFcnWctBtI=" ··· 9393 9808 ] 9394 9809 homepage = "https://github.com/Enter-tainer/m-jaxon" 9395 9810 9811 + [machiatto."0.1.0"] 9812 + url = "https://packages.typst.org/preview/machiatto-0.1.0.tar.gz" 9813 + hash = "sha256-s0fYYTMIuHrHnTqBwa132FiMi5ge0ZGezEOa6t67LCI=" 9814 + typstDeps = [ 9815 + "minitoc_0_1_0", 9816 + ] 9817 + description = "A package to help develop publications under MoKa Reads Specification" 9818 + license = [ 9819 + "MIT", 9820 + ] 9821 + homepage = "https://github.com/Moka-Reads/machiatto" 9822 + 9823 + [magnifying-glass."0.1.0"] 9824 + url = "https://packages.typst.org/preview/magnifying-glass-0.1.0.tar.gz" 9825 + hash = "sha256-K4NjY2JJKSijf8UVL7ujT0F2DghmV4Xu7jE9/Bzhb1s=" 9826 + typstDeps = [] 9827 + description = "Magnify part of image or content" 9828 + license = [ 9829 + "AGPL-3.0-only", 9830 + ] 9831 + homepage = "https://codeberg.org/Andrew15-5/magnifying-glass" 9832 + 9833 + [mannot."0.3.0"] 9834 + url = "https://packages.typst.org/preview/mannot-0.3.0.tar.gz" 9835 + hash = "sha256-akdMPerbH8WpVQ1OACR9HOceZunKGTkj6jfh7s6ChFA=" 9836 + typstDeps = [ 9837 + "cetz_0_3_4", 9838 + "codly_1_2_0", 9839 + "tidy_0_4_0", 9840 + "tidy_0_4_2", 9841 + "tiptoe_0_3_0", 9842 + ] 9843 + description = "A package for marking and annotating in math blocks" 9844 + license = [ 9845 + "MIT", 9846 + ] 9847 + homepage = "https://github.com/ryuryu-ymj/mannot" 9848 + 9396 9849 [mannot."0.2.3"] 9397 9850 url = "https://packages.typst.org/preview/mannot-0.2.3.tar.gz" 9398 9851 hash = "sha256-FByqhbapg8hXEr2F+LsIz9chdNXLHoiOaotB6JxT+jE=" ··· 9570 10023 "MIT", 9571 10024 ] 9572 10025 homepage = "https://github.com/EpicEricEE/typst-marge" 10026 + 10027 + [marginalia."0.1.4"] 10028 + url = "https://packages.typst.org/preview/marginalia-0.1.4.tar.gz" 10029 + hash = "sha256-Z58a+K5+mGxBaRTbI6Z+e034nfJSjW4FV2tXjHqc1gk=" 10030 + typstDeps = [] 10031 + description = "Configurable margin-notes and matching wide blocks" 10032 + license = [ 10033 + "Unlicense", 10034 + ] 10035 + homepage = "https://github.com/nleanba/typst-marginalia" 9573 10036 9574 10037 [marginalia."0.1.3"] 9575 10038 url = "https://packages.typst.org/preview/marginalia-0.1.3.tar.gz" ··· 9669 10132 ] 9670 10133 homepage = "https://github.com/sxdl/MCM-Typst-template" 9671 10134 10135 + [mechanical-system-cetz-34j."0.1.0"] 10136 + url = "https://packages.typst.org/preview/mechanical-system-cetz-34j-0.1.0.tar.gz" 10137 + hash = "sha256-PPoQ0Gy6Xh19JPPnL2uyGhVomZbOHOOUCFJDp/U/cTc=" 10138 + typstDeps = [ 10139 + "cetz_0_3_0", 10140 + ] 10141 + description = "CeTZ library for drawing mechanical systems" 10142 + license = [ 10143 + "MIT", 10144 + ] 10145 + homepage = "https://github.com/34j/typst-cetz-mechanical-system" 10146 + 9672 10147 [mephistypsteles."0.3.0"] 9673 10148 url = "https://packages.typst.org/preview/mephistypsteles-0.3.0.tar.gz" 9674 10149 hash = "sha256-/XWM4SMGT+ZUAEb0QCNxNp8JkHqGInjwY3/zXWrQkls=" ··· 9730 10205 "MIT", 9731 10206 ] 9732 10207 homepage = "https://github.com/CL4R3T/meppp" 10208 + 10209 + [messeji."0.3.0"] 10210 + url = "https://packages.typst.org/preview/messeji-0.3.0.tar.gz" 10211 + hash = "sha256-vqIQjUdm4KvrDNTr5SnWqzVwSkG/dRVvQy/0W6o0P/g=" 10212 + typstDeps = [ 10213 + "codly_1_3_0", 10214 + "tidy_0_4_2", 10215 + ] 10216 + description = "Typeset multi-page chat histories, including from external JSON files" 10217 + license = [ 10218 + "MIT", 10219 + ] 10220 + homepage = "https://github.com/Tanikai/messeji" 10221 + 10222 + [messeji."0.2.0"] 10223 + url = "https://packages.typst.org/preview/messeji-0.2.0.tar.gz" 10224 + hash = "sha256-ObsJGFyE7RTc6QBr/Vrvf4bwxfs2qGEcAceAxOpHlaM=" 10225 + typstDeps = [] 10226 + description = "Typeset multi-page chat histories, including from external JSON files" 10227 + license = [ 10228 + "MIT", 10229 + ] 10230 + homepage = "https://github.com/Tanikai/messeji" 10231 + 10232 + [messeji."0.1.0"] 10233 + url = "https://packages.typst.org/preview/messeji-0.1.0.tar.gz" 10234 + hash = "sha256-Aq217WNVh5jq7qrrP6xpcu5hXrPm4zQrHhL4Xugy01o=" 10235 + typstDeps = [] 10236 + description = "Typeset multi-page chat histories, with JSON support" 10237 + license = [ 10238 + "MIT", 10239 + ] 10240 + homepage = "https://github.com/Tanikai/messeji" 9733 10241 9734 10242 [metalogo."1.2.0"] 9735 10243 url = "https://packages.typst.org/preview/metalogo-1.2.0.tar.gz" ··· 10318 10826 ] 10319 10827 homepage = "https://github.com/EuanTop/modern-bnu-course-paper" 10320 10828 10829 + [modern-bnu-thesis."0.0.2"] 10830 + url = "https://packages.typst.org/preview/modern-bnu-thesis-0.0.2.tar.gz" 10831 + hash = "sha256-pMg00ozQH/SRCyd/BR94OMd7lmg701RG5BGUTMXbvNY=" 10832 + typstDeps = [ 10833 + "algo_0_3_6", 10834 + "cuti_0_3_0", 10835 + "i-figured_0_2_4", 10836 + "pinit_0_2_2", 10837 + "tablex_0_0_9", 10838 + ] 10839 + description = "北京师范大学学位论文模板。Modern Beijing Normal University Thesis" 10840 + license = [ 10841 + "MIT", 10842 + ] 10843 + homepage = "https://github.com/mosrat/modern-bnu-thesis" 10844 + 10321 10845 [modern-bnu-thesis."0.0.1"] 10322 10846 url = "https://packages.typst.org/preview/modern-bnu-thesis-0.0.1.tar.gz" 10323 10847 hash = "sha256-Zw7INRq6oBSgl7ip/e6SlUgqrAvgwzTmbW0ODOQBFOU=" ··· 10671 11195 ] 10672 11196 homepage = "https://github.com/typst-g7-32/modern-g7-32" 10673 11197 11198 + [modern-hsh-thesis."1.1.1"] 11199 + url = "https://packages.typst.org/preview/modern-hsh-thesis-1.1.1.tar.gz" 11200 + hash = "sha256-X7gt1MdV8F+vArCrPDwMfLlA3ZndNgo0tOXJo7OV/8M=" 11201 + typstDeps = [ 11202 + "big-todo_0_2_0", 11203 + "codly_1_3_0", 11204 + "gentle-clues_1_2_0", 11205 + "gloss-awe_0_0_5", 11206 + "hydra_0_6_0", 11207 + "treet_0_1_1", 11208 + "wrap-it_0_1_1", 11209 + ] 11210 + description = "Template for writing a bachelors or masters thesis at the Hochschule Hannover, Faculty 4" 11211 + license = [ 11212 + "MIT", 11213 + ] 11214 + homepage = "https://github.com/MrToWy/hsh-thesis" 11215 + 11216 + [modern-hsh-thesis."1.1.0"] 11217 + url = "https://packages.typst.org/preview/modern-hsh-thesis-1.1.0.tar.gz" 11218 + hash = "sha256-A+DECSPBeSUhEXlDGCL7xBWrQ83NGD5Xy0rAaa7TNJk=" 11219 + typstDeps = [ 11220 + "big-todo_0_2_0", 11221 + "codly_1_3_0", 11222 + "gentle-clues_1_2_0", 11223 + "gloss-awe_0_0_5", 11224 + "hydra_0_6_0", 11225 + "treet_0_1_1", 11226 + "wrap-it_0_1_1", 11227 + ] 11228 + description = "Template for writing a bachelors or masters thesis at the Hochschule Hannover, Faculty 4" 11229 + license = [ 11230 + "MIT", 11231 + ] 11232 + homepage = "https://github.com/MrToWy/hsh-thesis" 11233 + 10674 11234 [modern-hsh-thesis."1.0.2"] 10675 11235 url = "https://packages.typst.org/preview/modern-hsh-thesis-1.0.2.tar.gz" 10676 11236 hash = "sha256-RXQYwYaz/mAXMuDX7DS+Wpr8Op6x6nF2G0KB88HCauM=" ··· 10908 11468 ] 10909 11469 homepage = "https://github.com/SergeyGorchakov/russian-phd-thesis-template-typst" 10910 11470 11471 + [modern-shu-thesis."0.3.3"] 11472 + url = "https://packages.typst.org/preview/modern-shu-thesis-0.3.3.tar.gz" 11473 + hash = "sha256-DgolzfJo0xU5W9dofKZt2wjOJJgke8CsIsa0/74Iv/s=" 11474 + typstDeps = [ 11475 + "cuti_0_3_0", 11476 + "i-figured_0_2_4", 11477 + "lovelace_0_2_0", 11478 + "numbly_0_1_0", 11479 + ] 11480 + description = "上海大学本科毕业论文模板" 11481 + license = [ 11482 + "Apache-2.0", 11483 + ] 11484 + homepage = "https://github.com/XY-cpp/typst-shu-thesis" 11485 + 11486 + [modern-shu-thesis."0.3.2"] 11487 + url = "https://packages.typst.org/preview/modern-shu-thesis-0.3.2.tar.gz" 11488 + hash = "sha256-BSo6yklzgBm5DuJtrhaSbnVKRKO8lVUviSA1oB6rAs8=" 11489 + typstDeps = [ 11490 + "cuti_0_3_0", 11491 + "i-figured_0_2_4", 11492 + "lovelace_0_2_0", 11493 + "numbly_0_1_0", 11494 + ] 11495 + description = "上海大学本科毕业论文模板" 11496 + license = [ 11497 + "Apache-2.0", 11498 + ] 11499 + homepage = "https://github.com/XY-cpp/typst-shu-thesis" 11500 + 10911 11501 [modern-shu-thesis."0.3.1"] 10912 11502 url = "https://packages.typst.org/preview/modern-shu-thesis-0.3.1.tar.gz" 10913 11503 hash = "sha256-25P4yWiDyB1aKjaYjfSeZzJZr7RUuDacp87HQ0zQU/Y=" ··· 10980 11570 "MIT", 10981 11571 ] 10982 11572 homepage = "https://github.com/XY-cpp/typst-shu-thesis" 11573 + 11574 + [modern-sjtu-thesis."0.2.2"] 11575 + url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.2.2.tar.gz" 11576 + hash = "sha256-B3FDybHWM5G2cKeBQefMExVcYf4b2yc/gff5GfcWc6M=" 11577 + typstDeps = [ 11578 + "a2c-nums_0_0_1", 11579 + "cuti_0_3_0", 11580 + "i-figured_0_2_4", 11581 + "numbly_0_1_0", 11582 + ] 11583 + description = "上海交通大学学位论文 Typst 模板。Shanghai Jiao Tong University Thesis Typst Template" 11584 + license = [ 11585 + "MIT", 11586 + ] 11587 + homepage = "https://github.com/tzhTaylor/modern-sjtu-thesis" 10983 11588 10984 11589 [modern-sjtu-thesis."0.2.1"] 10985 11590 url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.2.1.tar.gz" ··· 11866 12471 ] 11867 12472 homepage = "https://github.com/jonaspleyer/nordic-typst" 11868 12473 12474 + [not-jku-thesis."0.2.0"] 12475 + url = "https://packages.typst.org/preview/not-jku-thesis-0.2.0.tar.gz" 12476 + hash = "sha256-73PcYUmXirUoOD2ya89J0GqI/lZtt9Z3FXcRqAqnwDk=" 12477 + typstDeps = [ 12478 + "cheq_0_1_0", 12479 + "glossarium_0_5_4", 12480 + "wrap-it_0_1_1", 12481 + ] 12482 + description = "Customizable not official template for a thesis at the JKU, derived from a template created by Fabian Scherer <https://www.linkedin.com/in/fabian-scherer-de/> with Leon Weber in an advisory role" 12483 + license = [ 12484 + "MIT-0", 12485 + ] 12486 + 11869 12487 [not-jku-thesis."0.1.0"] 11870 12488 url = "https://packages.typst.org/preview/not-jku-thesis-0.1.0.tar.gz" 11871 12489 hash = "sha256-CdIyVXvRx0S7kNPPf/3cWpRICwnHOHB8QhtcSuLDPDQ=" ··· 12153 12771 "MIT", 12154 12772 ] 12155 12773 12774 + [nup."0.1.1"] 12775 + url = "https://packages.typst.org/preview/nup-0.1.1.tar.gz" 12776 + hash = "sha256-UEG7L4KtOcMsILjhcNDZPrzrjFMDqYLTMWQQnjLmNWM=" 12777 + typstDeps = [ 12778 + "muchpdf_0_1_0", 12779 + "shadowed_0_2_0", 12780 + ] 12781 + description = "Preview multipage documents with a defined grid layout" 12782 + license = [ 12783 + "MPL-2.0", 12784 + ] 12785 + homepage = "https://github.com/baptiste/nup" 12786 + 12787 + [nup."0.1.0"] 12788 + url = "https://packages.typst.org/preview/nup-0.1.0.tar.gz" 12789 + hash = "sha256-vTeP+zoShfjDuXpXZ5HYyYouQrX+8XvUMgXz+a1bgik=" 12790 + typstDeps = [ 12791 + "muchpdf_0_1_0", 12792 + "shadowed_0_2_0", 12793 + ] 12794 + description = "Preview multipage documents with a defined grid layout" 12795 + license = [ 12796 + "MPL-2.0", 12797 + ] 12798 + homepage = "https://github.com/baptiste/nup" 12799 + 12156 12800 [oasis-align."0.2.0"] 12157 12801 url = "https://packages.typst.org/preview/oasis-align-0.2.0.tar.gz" 12158 12802 hash = "sha256-XB8YyrcSP3+jHSik+aE8JybL8Pncju/2MKW3MC85TTA=" ··· 12269 12913 ] 12270 12914 homepage = "https://github.com/v411e/optimal-ovgu-thesis" 12271 12915 12916 + [orange-book."0.6.1"] 12917 + url = "https://packages.typst.org/preview/orange-book-0.6.1.tar.gz" 12918 + hash = "sha256-D2WQwAS6ftls8vN2YGDvbqbXh7NC+SUqfGHzvACt4To=" 12919 + typstDeps = [] 12920 + description = "A book template inspired by The Legrand Orange Book of Mathias Legrand and Vel" 12921 + license = [ 12922 + "MIT-0", 12923 + ] 12924 + homepage = "https://github.com/flavio20002/typst-orange-template" 12925 + 12272 12926 [orange-book."0.6.0"] 12273 12927 url = "https://packages.typst.org/preview/orange-book-0.6.0.tar.gz" 12274 12928 hash = "sha256-ZAuCUReYMujh/T7h2A7zEZER1R66IUcVbfCgnSq89Sg=" ··· 12531 13185 ] 12532 13186 homepage = "https://github.com/TJ-CSCCG/tongji-undergrad-thesis-typst.git" 12533 13187 13188 + [parcio-thesis."0.2.2"] 13189 + url = "https://packages.typst.org/preview/parcio-thesis-0.2.2.tar.gz" 13190 + hash = "sha256-xcHPtq+d6hpGlMfP74XK5mokzp+lFtFDgEC2FPBu1FI=" 13191 + typstDeps = [ 13192 + "drafting_0_2_2", 13193 + "subpar_0_2_2", 13194 + ] 13195 + description = "A simple thesis template based on the ParCIO working group at OvGU Magdeburg" 13196 + license = [ 13197 + "0BSD", 13198 + ] 13199 + homepage = "https://github.com/xkevio/parcio-typst/" 13200 + 12534 13201 [parcio-thesis."0.2.1"] 12535 13202 url = "https://packages.typst.org/preview/parcio-thesis-0.2.1.tar.gz" 12536 13203 hash = "sha256-XDh2M16Hlg6EOl9ATbxnEEqrSX1G2RzymYB+gQPB5TU=" ··· 12602 13269 ] 12603 13270 homepage = "https://github.com/QuadnucYard/pavemat" 12604 13271 13272 + [peace-of-posters."0.5.5"] 13273 + url = "https://packages.typst.org/preview/peace-of-posters-0.5.5.tar.gz" 13274 + hash = "sha256-oLMQpulSwmXj7cqW+7t1ABFR2+dUGLg8PaIj+/9DIlc=" 13275 + typstDeps = [] 13276 + description = "Create scientific posters in Typst" 13277 + license = [ 13278 + "MIT", 13279 + ] 13280 + homepage = "https://github.com/jonaspleyer/peace-of-posters" 13281 + 12605 13282 [peace-of-posters."0.5.4"] 12606 13283 url = "https://packages.typst.org/preview/peace-of-posters-0.5.4.tar.gz" 12607 13284 hash = "sha256-fgOOhaLSCT1wW3lM1hPXlkbOM2FKWvonJWIgsh037O8=" ··· 12822 13499 ] 12823 13500 homepage = "https://github.com/Leedehai/typst-physics" 12824 13501 13502 + [pigmentpedia."0.3.3"] 13503 + url = "https://packages.typst.org/preview/pigmentpedia-0.3.3.tar.gz" 13504 + hash = "sha256-xPFb9o+dHTfWvV0Hs1wuhcTniZH6SnsC0zPSwDcPayo=" 13505 + typstDeps = [] 13506 + description = "An extensive color library for Typst" 13507 + license = [ 13508 + "MIT", 13509 + ] 13510 + homepage = "https://github.com/neuralpain/pigmentpedia" 13511 + 13512 + [pigmentpedia."0.3.2"] 13513 + url = "https://packages.typst.org/preview/pigmentpedia-0.3.2.tar.gz" 13514 + hash = "sha256-j8XCfUwUF+r72tMZmEAy+hNS9yMdIWD3NlNRQ/GIFLs=" 13515 + typstDeps = [] 13516 + description = "An extensive color library for Typst" 13517 + license = [ 13518 + "MIT", 13519 + ] 13520 + homepage = "https://github.com/neuralpain/pigmentpedia" 13521 + 12825 13522 [pigmentpedia."0.3.1"] 12826 13523 url = "https://packages.typst.org/preview/pigmentpedia-0.3.1.tar.gz" 12827 13524 hash = "sha256-/U6/zsw3Vb/JGgsc9lgKeZ1UYnnSv8cZWUtC4wFciyc=" ··· 12851 13548 "MIT", 12852 13549 ] 12853 13550 homepage = "https://github.com/neuralpain/pigmentpedia" 13551 + 13552 + [pillar."0.3.2"] 13553 + url = "https://packages.typst.org/preview/pillar-0.3.2.tar.gz" 13554 + hash = "sha256-2Wriav61AfMHQhvwAauKKsR13aR+9x45FK/JTSGIFOg=" 13555 + typstDeps = [ 13556 + "zero_0_3_3", 13557 + ] 13558 + description = "Faster column specifications for tables" 13559 + license = [ 13560 + "MIT", 13561 + ] 13562 + homepage = "https://github.com/Mc-Zen/pillar" 12854 13563 12855 13564 [pillar."0.3.1"] 12856 13565 url = "https://packages.typst.org/preview/pillar-0.3.1.tar.gz" ··· 13241 13950 "MIT", 13242 13951 ] 13243 13952 13953 + [project-isi-zac."0.1.0"] 13954 + url = "https://packages.typst.org/preview/project-isi-zac-0.1.0.tar.gz" 13955 + hash = "sha256-aBndG/X2kGLDR3A48g4B3RGvSAvYbBzpx0XBwxdEZ28=" 13956 + typstDeps = [ 13957 + "hydra_0_6_1", 13958 + ] 13959 + description = "A template for writing reports and thesis" 13960 + license = [ 13961 + "MIT-0", 13962 + ] 13963 + homepage = "https://github.com/Jac-Zac/project-isi-zac.git" 13964 + 13244 13965 [prooftrees."0.1.0"] 13245 13966 url = "https://packages.typst.org/preview/prooftrees-0.1.0.tar.gz" 13246 13967 hash = "sha256-zhnOWUavOqMh3/s8CPIyw5uoX8QslITQJ81zL6WuTaI=" ··· 13264 13985 "MIT-0", 13265 13986 ] 13266 13987 homepage = "https://github.com/sdiebolt/psl-thesis" 13988 + 13989 + [pubmatter."0.2.1"] 13990 + url = "https://packages.typst.org/preview/pubmatter-0.2.1.tar.gz" 13991 + hash = "sha256-PuuXzQfKFtL+MYsftUaDnaQBK5LOo6EtcMzpkae0XgE=" 13992 + typstDeps = [ 13993 + "scienceicons_0_0_6", 13994 + ] 13995 + description = "Parse, normalize and show publication frontmatter, including authors and affiliations" 13996 + license = [ 13997 + "MIT", 13998 + ] 13999 + homepage = "https://github.com/continuous-foundation/pubmatter" 13267 14000 13268 14001 [pubmatter."0.2.0"] 13269 14002 url = "https://packages.typst.org/preview/pubmatter-0.2.0.tar.gz" ··· 13319 14052 ] 13320 14053 homepage = "https://github.com/ludwig-austermann/qcm" 13321 14054 14055 + [qec-thrust."0.1.0"] 14056 + url = "https://packages.typst.org/preview/qec-thrust-0.1.0.tar.gz" 14057 + hash = "sha256-0Qofs0kXArco7PDC3iRU1Nnjm1hngYcA4tqxj/a1spo=" 14058 + typstDeps = [ 14059 + "cetz_0_3_4", 14060 + ] 14061 + description = "A package for drawing quantum error correction codes with Typst" 14062 + license = [ 14063 + "MIT", 14064 + ] 14065 + homepage = "https://github.com/nzy1997/qec-thrust" 14066 + 14067 + [qooklet."0.2.0"] 14068 + url = "https://packages.typst.org/preview/qooklet-0.2.0.tar.gz" 14069 + hash = "sha256-Xm7VotkOaceLlLhnXad2CpK1mXFw1pohkGz/KE2cu/I=" 14070 + typstDeps = [ 14071 + "codly_1_3_0", 14072 + "codly-languages_0_1_8", 14073 + "ctheorems_1_1_3", 14074 + "fletcher_0_5_7", 14075 + "gentle-clues_1_2_0", 14076 + "hydra_0_6_1", 14077 + "linguify_0_4_2", 14078 + "physica_0_9_5", 14079 + "pinit_0_2_2", 14080 + "rexllent_0_3_0", 14081 + "subpar_0_2_2", 14082 + "wrap-it_0_1_1", 14083 + ] 14084 + description = "A quick start template for scientific booklets" 14085 + license = [ 14086 + "MIT", 14087 + ] 14088 + homepage = "https://github.com/ivaquero/qooklet.git" 14089 + 14090 + [qooklet."0.1.1"] 14091 + url = "https://packages.typst.org/preview/qooklet-0.1.1.tar.gz" 14092 + hash = "sha256-tPewnWaTQW53UZMIWiKYrOYi31CPneUMM8VnNExhuqE=" 14093 + typstDeps = [ 14094 + "codly_1_3_0", 14095 + "codly-languages_0_1_8", 14096 + "ctheorems_1_1_3", 14097 + "fletcher_0_5_7", 14098 + "gentle-clues_1_2_0", 14099 + "hydra_0_6_1", 14100 + "linguify_0_4_2", 14101 + "physica_0_9_5", 14102 + "pinit_0_2_2", 14103 + "rexllent_0_3_0", 14104 + "subpar_0_2_2", 14105 + "wrap-it_0_1_1", 14106 + ] 14107 + description = "A quick start utility for scientific booklets" 14108 + license = [ 14109 + "MIT", 14110 + ] 14111 + homepage = "https://github.com/ivaquero/qooklet.git" 14112 + 14113 + [qooklet."0.1.0"] 14114 + url = "https://packages.typst.org/preview/qooklet-0.1.0.tar.gz" 14115 + hash = "sha256-QFOc21AbDMtoYvAwgNKQCoO9PkBhTHdELyHlm9jSddg=" 14116 + typstDeps = [ 14117 + "codly_1_3_0", 14118 + "codly-languages_0_1_8", 14119 + "ctheorems_1_1_3", 14120 + "fletcher_0_5_7", 14121 + "gentle-clues_1_2_0", 14122 + "hydra_0_6_1", 14123 + "linguify_0_4_2", 14124 + "physica_0_9_5", 14125 + "pinit_0_2_2", 14126 + "rexllent_0_3_0", 14127 + "subpar_0_2_2", 14128 + "wrap-it_0_1_1", 14129 + ] 14130 + description = "A quick start utility for scientific booklets" 14131 + license = [ 14132 + "MIT", 14133 + ] 14134 + homepage = "https://github.com/ivaquero/qooklet.git" 14135 + 13322 14136 [quetta."0.2.0"] 13323 14137 url = "https://packages.typst.org/preview/quetta-0.2.0.tar.gz" 13324 14138 hash = "sha256-VOTfREPGxLOnzmZV21+A+D59u1aAahyB2iJm0dNlhF8=" ··· 13665 14479 ] 13666 14480 homepage = "https://github.com/fky2015/resume-ng-typst" 13667 14481 14482 + [rexllent."0.3.1"] 14483 + url = "https://packages.typst.org/preview/rexllent-0.3.1.tar.gz" 14484 + hash = "sha256-wV8Y6ZGp9jNuHBI0S4nB0KoYlD8G6oMcTmQMjDRqx08=" 14485 + typstDeps = [] 14486 + description = "Parsing xlsx file into a typst table, powered by wasm" 14487 + license = [ 14488 + "MIT", 14489 + ] 14490 + homepage = "https://github.com/hongjr03/typst-rexllent" 14491 + 13668 14492 [rexllent."0.3.0"] 13669 14493 url = "https://packages.typst.org/preview/rexllent-0.3.0.tar.gz" 13670 14494 hash = "sha256-xG91tiCiPZ9lItlzyyg4pXB5uqtV2tioO+RLtHb5K+w=" ··· 13865 14689 ] 13866 14690 homepage = "https://github.com/rose-pine/typst" 13867 14691 14692 + [rubber-article."0.4.0"] 14693 + url = "https://packages.typst.org/preview/rubber-article-0.4.0.tar.gz" 14694 + hash = "sha256-W46qCE7HDZP24FlojvjiHu6Epxz5JEdJn43kbeVIjVE=" 14695 + typstDeps = [ 14696 + "hydra_0_6_1", 14697 + "pillar_0_3_1", 14698 + ] 14699 + description = "A simple template recreating the look of the classic LaTeX article" 14700 + license = [ 14701 + "MIT", 14702 + ] 14703 + homepage = "https://github.com/npikall/rubber-article.git" 14704 + 14705 + [rubber-article."0.3.2"] 14706 + url = "https://packages.typst.org/preview/rubber-article-0.3.2.tar.gz" 14707 + hash = "sha256-31Vnkz0ii8KxgCvdnzUjMqFHp0RLF8M6dfI4T5UHlGQ=" 14708 + typstDeps = [ 14709 + "hydra_0_6_1", 14710 + "pillar_0_3_1", 14711 + ] 14712 + description = "A simple template recreating the look of the classic LaTeX article" 14713 + license = [ 14714 + "MIT", 14715 + ] 14716 + homepage = "https://github.com/npikall/rubber-article.git" 14717 + 13868 14718 [rubber-article."0.3.1"] 13869 14719 url = "https://packages.typst.org/preview/rubber-article-0.3.1.tar.gz" 13870 14720 hash = "sha256-B+/lqmX27ndp/8IBGa74Y3Mnj3q9Gy6D4ywOYHvBByo=" ··· 14016 14866 ] 14017 14867 homepage = "https://github.com/sudanchapagain/sano-presentation-template" 14018 14868 14869 + [scaffolder."0.2.1"] 14870 + url = "https://packages.typst.org/preview/scaffolder-0.2.1.tar.gz" 14871 + hash = "sha256-C1/wct+NAtulHWopZsztNcAUpX/0+opIknzehNLSKRs=" 14872 + typstDeps = [] 14873 + description = "Show borders around the main text area, header and footer in Typst documents" 14874 + license = [ 14875 + "MIT", 14876 + ] 14877 + homepage = "https://github.com/wisp3rwind/typst-scaffolder" 14878 + 14019 14879 [scaffolder."0.2.0"] 14020 14880 url = "https://packages.typst.org/preview/scaffolder-0.2.0.tar.gz" 14021 14881 hash = "sha256-iMOIGDtLE/7GDV29+efx9EX6emZ9R2y9AumEajMb7jk=" ··· 14075 14935 "MIT", 14076 14936 ] 14077 14937 homepage = "https://github.com/augustebaum/epfl-thesis-typst" 14938 + 14939 + [scholarly-tauthesis."0.11.2"] 14940 + url = "https://packages.typst.org/preview/scholarly-tauthesis-0.11.2.tar.gz" 14941 + hash = "sha256-bpRIcwvCbyemi5NSl5lHUh6yddUzFW0WozSBvTYdleA=" 14942 + typstDeps = [] 14943 + description = "A template for writing Tampere University theses" 14944 + license = [ 14945 + "MIT", 14946 + ] 14947 + homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template" 14078 14948 14079 14949 [scholarly-tauthesis."0.11.0"] 14080 14950 url = "https://packages.typst.org/preview/scholarly-tauthesis-0.11.0.tar.gz" ··· 14176 15046 ] 14177 15047 homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template" 14178 15048 15049 + [scienceicons."0.1.0"] 15050 + url = "https://packages.typst.org/preview/scienceicons-0.1.0.tar.gz" 15051 + hash = "sha256-xbqURYis+fBX0Wozcv8Ld0CAZv0zH05pYqylJhSmYjQ=" 15052 + typstDeps = [] 15053 + description = "SVG icons for open-science articles" 15054 + license = [ 15055 + "MIT", 15056 + ] 15057 + homepage = "https://github.com/continuous-foundation/scienceicons" 15058 + 14179 15059 [scienceicons."0.0.6"] 14180 15060 url = "https://packages.typst.org/preview/scienceicons-0.0.6.tar.gz" 14181 15061 hash = "sha256-n3GMd9uPpqK2G5aD4+g8D5Egm/OwgGQ2yrZVgeD+lNM=" ··· 14261 15141 "GPL-3.0-only", 14262 15142 ] 14263 15143 homepage = "https://github.com/Dregen-Yor/sdu-exp-report" 15144 + 15145 + [sdu-touying-simpl."0.3.0"] 15146 + url = "https://packages.typst.org/preview/sdu-touying-simpl-0.3.0.tar.gz" 15147 + hash = "sha256-m3FzWgM6/45k9dapyJMUVAii3f7a93SDfRcjLxNppy0=" 15148 + typstDeps = [ 15149 + "codly_1_3_0", 15150 + "codly-languages_0_1_8", 15151 + "fletcher_0_5_7", 15152 + "showybox_2_0_4", 15153 + "timeliney_0_2_1", 15154 + "touying_0_6_1", 15155 + ] 15156 + description = "An templete based on touying, " 15157 + license = [ 15158 + "GPL-3.0-only", 15159 + ] 15160 + homepage = "https://github.com/Dregen-Yor/sdu-touying-simpl" 15161 + 15162 + [sdu-touying-simpl."0.2.2"] 15163 + url = "https://packages.typst.org/preview/sdu-touying-simpl-0.2.2.tar.gz" 15164 + hash = "sha256-Fa6IS+3xj8Sz8dxV+AP5hUxEUn0kfQhFwCbw0OKKxFg=" 15165 + typstDeps = [ 15166 + "codly_1_3_0", 15167 + "ctheorems_1_1_3", 15168 + "fletcher_0_5_7", 15169 + "gentle-clues_1_2_0", 15170 + "showybox_2_0_4", 15171 + "timeliney_0_2_0", 15172 + "touying_0_6_1", 15173 + ] 15174 + description = "An templete based on touying, " 15175 + license = [ 15176 + "GPL-3.0-only", 15177 + ] 15178 + homepage = "https://github.com/Dregen-Yor/sdu-touying-simpl" 14264 15179 14265 15180 [sdu-touying-simpl."0.2.1"] 14266 15181 url = "https://packages.typst.org/preview/sdu-touying-simpl-0.2.1.tar.gz" ··· 14411 15326 "MIT", 14412 15327 ] 14413 15328 homepage = "https://github.com/shaneworld/HHU-Thesis-Template" 15329 + 15330 + [shiroa."0.2.3"] 15331 + url = "https://packages.typst.org/preview/shiroa-0.2.3.tar.gz" 15332 + hash = "sha256-Yb2tdrqI1j/hZDV0gBctZssJaj3b7qqVVfCQ6BhG5uY=" 15333 + typstDeps = [] 15334 + description = "A simple tool for creating modern online books in pure typst" 15335 + license = [ 15336 + "Apache-2.0", 15337 + ] 15338 + homepage = "https://github.com/Myriad-Dreamin/shiroa" 14414 15339 14415 15340 [shiroa."0.2.2"] 14416 15341 url = "https://packages.typst.org/preview/shiroa-0.2.2.tar.gz" ··· 14613 15538 "MIT", 14614 15539 ] 14615 15540 15541 + [shuosc-shu-bachelor-thesis."0.1.2"] 15542 + url = "https://packages.typst.org/preview/shuosc-shu-bachelor-thesis-0.1.2.tar.gz" 15543 + hash = "sha256-JxZ8ID9XQX9knDDIBVSrHre3PGXVZGJ1qSdkuM9ID9k=" 15544 + typstDeps = [ 15545 + "cuti_0_3_0", 15546 + "i-figured_0_2_4", 15547 + "lovelace_0_2_0", 15548 + "numbly_0_1_0", 15549 + ] 15550 + description = "上海大学本科生毕业论文 Typst 模板 - 上海大学开源社区版 (SHUOSC" 15551 + license = [ 15552 + "Apache-2.0", 15553 + ] 15554 + homepage = "https://github.com/shuosc/SHU-Bachelor-Thesis-Typst" 15555 + 15556 + [shuosc-shu-bachelor-thesis."0.1.1"] 15557 + url = "https://packages.typst.org/preview/shuosc-shu-bachelor-thesis-0.1.1.tar.gz" 15558 + hash = "sha256-yLT54a9Bxh0llQvzWrz7ZIDuJZB7PUGvHo201ANoGTc=" 15559 + typstDeps = [ 15560 + "cuti_0_3_0", 15561 + "i-figured_0_2_4", 15562 + "lovelace_0_2_0", 15563 + "numbly_0_1_0", 15564 + ] 15565 + description = "上海大学本科生毕业论文 Typst 模板 - 上海大学开源社区版 (SHUOSC" 15566 + license = [ 15567 + "Apache-2.0", 15568 + ] 15569 + homepage = "https://github.com/shuosc/SHU-Bachelor-Thesis-Typst" 15570 + 15571 + [shuxuejuan."0.1.2"] 15572 + url = "https://packages.typst.org/preview/shuxuejuan-0.1.2.tar.gz" 15573 + hash = "sha256-oLT87kWugcdSIUGHlM89j+j15BcXA0PK+Yl3VJWrs3s=" 15574 + typstDeps = [] 15575 + description = "A simple Typst template for math exam in Chinese" 15576 + license = [ 15577 + "MIT", 15578 + ] 15579 + homepage = "https://github.com/VWWVVW/shuxuejuan" 15580 + 14616 15581 [shuxuejuan."0.1.1"] 14617 15582 url = "https://packages.typst.org/preview/shuxuejuan-0.1.1.tar.gz" 14618 15583 hash = "sha256-srMnXvFwGS/BvnQc+7ts0GGJMzKW42BnZkc8CWvvf8E=" ··· 14693 15658 ] 14694 15659 homepage = "https://github.com/SkytAsul/INSA-Typst-Template" 14695 15660 15661 + [silky-report-insa."0.5.0"] 15662 + url = "https://packages.typst.org/preview/silky-report-insa-0.5.0.tar.gz" 15663 + hash = "sha256-MCwrH+qsAML2U/KwWsnw7nFGlJbGgIq3nprlOnAGTDo=" 15664 + typstDeps = [] 15665 + description = "A template made for reports and other documents of INSA, a French engineering school" 15666 + license = [ 15667 + "MIT", 15668 + ] 15669 + homepage = "https://github.com/SkytAsul/INSA-Typst-Template" 15670 + 14696 15671 [silky-report-insa."0.4.0"] 14697 15672 url = "https://packages.typst.org/preview/silky-report-insa-0.4.0.tar.gz" 14698 15673 hash = "sha256-Pcsnm1nYr1xTKZ8x0vRQDn8oqy2HvbEGa7Rf1eZbETg=" ··· 14804 15779 "MIT", 14805 15780 ] 14806 15781 15782 + [simple-bupt-report."0.1.0"] 15783 + url = "https://packages.typst.org/preview/simple-bupt-report-0.1.0.tar.gz" 15784 + hash = "sha256-GeL1I2NCqZItRhfDPHI1u0aXJtTGnaYmFzouZ0fIIvk=" 15785 + typstDeps = [] 15786 + description = "一份简单的北邮实验报告模板 Simple BUPT Report" 15787 + license = [ 15788 + "MIT", 15789 + ] 15790 + homepage = "https://github.com/zhao-leo/BUPT-Report-Typst" 15791 + 14807 15792 [simple-preavis."0.1.0"] 14808 15793 url = "https://packages.typst.org/preview/simple-preavis-0.1.0.tar.gz" 14809 15794 hash = "sha256-x5dtbcF3MGGGkGjAYSLHphn7XcrCnmRsf1g27aAq3vI=" ··· 14824 15809 ] 14825 15810 homepage = "https://github.com/steadyfall/simple-technical-resume-template" 14826 15811 15812 + [simple-tubs-letter."0.1.1"] 15813 + url = "https://packages.typst.org/preview/simple-tubs-letter-0.1.1.tar.gz" 15814 + hash = "sha256-rmfej0OOGXNDntzUN3N/WsJ4h6A/TISccg0KI9P/JpI=" 15815 + typstDeps = [] 15816 + description = "A letter template resembling the TUBS coorperate design" 15817 + license = [ 15818 + "GPL-3.0-only", 15819 + ] 15820 + homepage = "https://github.com/Cangarw/simple-tubs-letter" 15821 + 15822 + [simple-tubs-letter."0.1.0"] 15823 + url = "https://packages.typst.org/preview/simple-tubs-letter-0.1.0.tar.gz" 15824 + hash = "sha256-Jq9eSrmAFuYwwXAv5BMElIMngdy8WkoqZgbbw8SFHEA=" 15825 + typstDeps = [] 15826 + description = "A letter template resembling the TUBS coorperate design" 15827 + license = [ 15828 + "GPL-3.0-only", 15829 + ] 15830 + homepage = "https://github.com/Cangarw/simple-tubs-letter" 15831 + 14827 15832 [simplebnf."0.1.1"] 14828 15833 url = "https://packages.typst.org/preview/simplebnf-0.1.1.tar.gz" 14829 15834 hash = "sha256-dGCrPJW/E4rRKwO8Q+M0g1+zuC5N58Y5nrp1l4Q/9W8=" ··· 14969 15974 ] 14970 15975 homepage = "https://github.com/daskol/typst-templates" 14971 15976 15977 + [sns-polylux-template."0.1.0"] 15978 + url = "https://packages.typst.org/preview/sns-polylux-template-0.1.0.tar.gz" 15979 + hash = "sha256-TZ1xokDMAoajLEj2xgG8z74I+iyi9QAKdul62SUnpUo=" 15980 + typstDeps = [ 15981 + "polylux_0_4_0", 15982 + ] 15983 + description = "Unofficial template for slides in Polylux with SNS and UniPi colors" 15984 + license = [ 15985 + "MIT-0", 15986 + ] 15987 + homepage = "https://gitlab.com/martino.barbieri/polylux-sns-template" 15988 + 15989 + [socialhub-fa."1.0.1"] 15990 + url = "https://packages.typst.org/preview/socialhub-fa-1.0.1.tar.gz" 15991 + hash = "sha256-PKN4zsbdZ1/YRFUrEiadzvlT1zUmUZZGdu+t3XNb3fM=" 15992 + typstDeps = [ 15993 + "fontawesome_0_1_0", 15994 + ] 15995 + description = "A Typst library for Social Media references with icons based on Font Awesome" 15996 + license = [ 15997 + "MIT", 15998 + ] 15999 + homepage = "https://github.com/Bi0T1N/typst-socialhub-fa" 16000 + 14972 16001 [socialhub-fa."1.0.0"] 14973 16002 url = "https://packages.typst.org/preview/socialhub-fa-1.0.0.tar.gz" 14974 16003 hash = "sha256-peWWI/ULorfjvD7I8+rh9jm9MIrI/p+8y/kaH9MKM3k=" ··· 15069 16098 "MIT", 15070 16099 ] 15071 16100 homepage = "https://github.com/YouXam/soviet-matrix" 16101 + 16102 + [splash."0.5.0"] 16103 + url = "https://packages.typst.org/preview/splash-0.5.0.tar.gz" 16104 + hash = "sha256-gqujm+2U5ufCNeSzBzLtdzCNcg/fMx7Si2jOdavc4y4=" 16105 + typstDeps = [] 16106 + description = "A library of color palettes for Typst" 16107 + license = [ 16108 + "MIT", 16109 + ] 16110 + homepage = "https://github.com/kaarmu/typst-palettes" 15072 16111 15073 16112 [splash."0.4.0"] 15074 16113 url = "https://packages.typst.org/preview/splash-0.4.0.tar.gz" ··· 15210 16249 ] 15211 16250 homepage = "https://github.com/SillyFreak/typst-stack-pointer" 15212 16251 16252 + [starter-journal-article."0.4.0"] 16253 + url = "https://packages.typst.org/preview/starter-journal-article-0.4.0.tar.gz" 16254 + hash = "sha256-e4Be7W7KlECKwqXtSt7iLeBzmzbTuoQJZvz/v4r6rwQ=" 16255 + typstDeps = [] 16256 + description = "A starter template for journal articles" 16257 + license = [ 16258 + "MIT", 16259 + ] 16260 + homepage = "https://github.com/HPDell/typst-starter-journal-article" 16261 + 16262 + [starter-journal-article."0.3.3"] 16263 + url = "https://packages.typst.org/preview/starter-journal-article-0.3.3.tar.gz" 16264 + hash = "sha256-7f8Lqvra9Hnfa7xyZGZbF7pFEQOA41bKg/FA3DxJ1v4=" 16265 + typstDeps = [] 16266 + description = "A starter template for journal articles" 16267 + license = [ 16268 + "MIT", 16269 + ] 16270 + homepage = "https://github.com/HPDell/typst-starter-journal-article" 16271 + 15213 16272 [starter-journal-article."0.3.2"] 15214 16273 url = "https://packages.typst.org/preview/starter-journal-article-0.3.2.tar.gz" 15215 16274 hash = "sha256-zIv5xE2rmkTPQOvUVd7/S8aVgBg27+yKaiGx250PNgo=" ··· 15464 16523 ] 15465 16524 homepage = "https://github.com/tingerrr/subpar" 15466 16525 16526 + [suiji."0.4.0"] 16527 + url = "https://packages.typst.org/preview/suiji-0.4.0.tar.gz" 16528 + hash = "sha256-NG34Nbcxyq2OoK3wKBv88in0GNV6JK8mmCj9WBAY4bQ=" 16529 + typstDeps = [ 16530 + "cetz_0_3_4", 16531 + ] 16532 + description = "A high efficient random number generator in Typst" 16533 + license = [ 16534 + "MIT", 16535 + ] 16536 + homepage = "https://github.com/liuguangxi/suiji" 16537 + 15467 16538 [suiji."0.3.0"] 15468 16539 url = "https://packages.typst.org/preview/suiji-0.3.0.tar.gz" 15469 16540 hash = "sha256-Fu5fl35phzkx7cWezobq1pB17YyQVGdZ31XDJDdI5EY=" ··· 15583 16654 license = [ 15584 16655 "MIT", 15585 16656 ] 16657 + 16658 + [superb-pci."0.2.0"] 16659 + url = "https://packages.typst.org/preview/superb-pci-0.2.0.tar.gz" 16660 + hash = "sha256-0xp+Cl2+yW9V6599VhP2NGWBKZhgMblFmcKqcNR41oc=" 16661 + typstDeps = [] 16662 + description = "A Peer Community In (PCI) and Peer Community Journal (PCJ) template" 16663 + license = [ 16664 + "MIT-0", 16665 + ] 16666 + homepage = "https://codeberg.org/alxsim/superb-pci" 15586 16667 15587 16668 [superb-pci."0.1.0"] 15588 16669 url = "https://packages.typst.org/preview/superb-pci-0.1.0.tar.gz" ··· 16189 17270 ] 16190 17271 homepage = "https://github.com/7ijme/tally" 16191 17272 17273 + [tapestry."0.0.4"] 17274 + url = "https://packages.typst.org/preview/tapestry-0.0.4.tar.gz" 17275 + hash = "sha256-T84c9SHNZMHAmqZuVw2VB3S5JCbfOiv3cD0UUOZGBBI=" 17276 + typstDeps = [ 17277 + "cetz_0_3_4", 17278 + "cetz-plot_0_1_1", 17279 + "equate_0_3_1", 17280 + "physica_0_9_5", 17281 + ] 17282 + description = "A template for creating LaTeX-like class notes" 17283 + license = [ 17284 + "MIT-0", 17285 + ] 17286 + homepage = "https://github.com/BrandenXia/tapestry" 17287 + 17288 + [tapestry."0.0.3"] 17289 + url = "https://packages.typst.org/preview/tapestry-0.0.3.tar.gz" 17290 + hash = "sha256-j+I5k5O/4bUTEH8kI8+uaC9qXlaaipCAyY1kdQMop7k=" 17291 + typstDeps = [ 17292 + "cetz_0_3_4", 17293 + "cetz-plot_0_1_1", 17294 + "equate_0_3_1", 17295 + "physica_0_9_5", 17296 + ] 17297 + description = "A template for creating LaTeX-like class notes" 17298 + license = [ 17299 + "MIT-0", 17300 + ] 17301 + homepage = "https://github.com/BrandenXia/tapestry" 17302 + 17303 + [tapestry."0.0.2"] 17304 + url = "https://packages.typst.org/preview/tapestry-0.0.2.tar.gz" 17305 + hash = "sha256-50m7fT1xli8ER/CiCkWVN1EPEO7EJIPsw/r6rKMEcKU=" 17306 + typstDeps = [ 17307 + "equate_0_3_1", 17308 + "physica_0_9_5", 17309 + ] 17310 + description = "A template for creating LaTeX-like class notes" 17311 + license = [ 17312 + "MIT-0", 17313 + ] 17314 + homepage = "https://github.com/BrandenXia/tapestry" 17315 + 17316 + [tapestry."0.0.1"] 17317 + url = "https://packages.typst.org/preview/tapestry-0.0.1.tar.gz" 17318 + hash = "sha256-/UafNzzyhCV0EzwgLSxE3IWEEHgmD/MOF6Ye703m80Y=" 17319 + typstDeps = [] 17320 + description = "A template for creating LaTeX-like class notes" 17321 + license = [ 17322 + "MIT-0", 17323 + ] 17324 + 16192 17325 [tasteful-pairings."0.1.0"] 16193 17326 url = "https://packages.typst.org/preview/tasteful-pairings-0.1.0.tar.gz" 16194 17327 hash = "sha256-j68y3BmvDWBFKt5XdOHJxu3lAR5XX5PD0Tw6JXIdXSk=" ··· 16311 17444 ] 16312 17445 homepage = "https://github.com/chillcicada/typst-dotenv" 16313 17446 17447 + [text-dirr."1.0.0"] 17448 + url = "https://packages.typst.org/preview/text-dirr-1.0.0.tar.gz" 17449 + hash = "sha256-qn4cfK9i1f8ClTsrA0CM5+KLsEPVCUqgDEVUIQm4iqk=" 17450 + typstDeps = [] 17451 + description = "Get resolved value for text.dir" 17452 + license = [ 17453 + "AGPL-3.0-only", 17454 + ] 17455 + homepage = "https://codeberg.org/Andrew15-5/text-dirr" 17456 + 17457 + [tfguf."0.0.2"] 17458 + url = "https://packages.typst.org/preview/tfguf-0.0.2.tar.gz" 17459 + hash = "sha256-RSOTvYAxsRXzBH9vfW/9jIIk8KAMjBsmZNJe4mQQXMA=" 17460 + typstDeps = [ 17461 + "physica_0_9_5", 17462 + "unify_0_7_1", 17463 + ] 17464 + description = "Plantilla para hacer TFGs en el Grado en Física de UNIR" 17465 + license = [ 17466 + "MIT", 17467 + ] 17468 + homepage = "https://github.com/pammacdotnet/TFGUF" 17469 + 16314 17470 [tfguf."0.0.1"] 16315 17471 url = "https://packages.typst.org/preview/tfguf-0.0.1.tar.gz" 16316 17472 hash = "sha256-57aMGzmncJSV0LSiEcv9alhSZ95j7BDaF99Sek71lNk=" ··· 16337 17493 ] 16338 17494 homepage = "https://github.com/TGM-HIT/typst-protocol" 16339 17495 17496 + [tgm-hit-thesis."0.3.1"] 17497 + url = "https://packages.typst.org/preview/tgm-hit-thesis-0.3.1.tar.gz" 17498 + hash = "sha256-9lHo3QhUG7AnjwhRBf+NLBJb9PmHvzsh9XOCgCo49TM=" 17499 + typstDeps = [ 17500 + "alexandria_0_1_3", 17501 + "glossarium_0_5_2", 17502 + "linguify_0_4_2", 17503 + ] 17504 + description = "Diploma thesis template for students of the HIT department at TGM Wien" 17505 + license = [ 17506 + "MIT", 17507 + ] 17508 + homepage = "https://github.com/TGM-HIT/typst-diploma-thesis" 17509 + 16340 17510 [tgm-hit-thesis."0.3.0"] 16341 17511 url = "https://packages.typst.org/preview/tgm-hit-thesis-0.3.0.tar.gz" 16342 17512 hash = "sha256-grS8PHu4lkietTBdZAZd60f72VpGUwtbOUlRQqunK6Q=" ··· 16626 17796 ] 16627 17797 homepage = "https://github.com/Enter-tainer/zint-wasi" 16628 17798 17799 + [tidy."0.4.3"] 17800 + url = "https://packages.typst.org/preview/tidy-0.4.3.tar.gz" 17801 + hash = "sha256-3F4nBSvietpAevp+EgZIFoLfv4GRMLjSyGD+7RCYjjg=" 17802 + typstDeps = [] 17803 + description = "Documentation generator for Typst code in Typst" 17804 + license = [ 17805 + "MIT", 17806 + ] 17807 + homepage = "https://github.com/Mc-Zen/tidy" 17808 + 16629 17809 [tidy."0.4.2"] 16630 17810 url = "https://packages.typst.org/preview/tidy-0.4.2.tar.gz" 16631 17811 hash = "sha256-ZeHCBZWwe7G+tAfoyEzlCGQJFECMhUbiJzKRRKusF4E=" ··· 16684 17864 "MIT", 16685 17865 ] 16686 17866 17867 + [tiefletter."0.1.1"] 17868 + url = "https://packages.typst.org/preview/tiefletter-0.1.1.tar.gz" 17869 + hash = "sha256-536tEljAru3xi7OaK53ehX3WeK5cdHyQkuwfQEeD580=" 17870 + typstDeps = [ 17871 + "tiaoma_0_3_0", 17872 + ] 17873 + description = "Invoice and offer template for Austrian freelancers" 17874 + license = [ 17875 + "MIT", 17876 + ] 17877 + 17878 + [tiefletter."0.1.0"] 17879 + url = "https://packages.typst.org/preview/tiefletter-0.1.0.tar.gz" 17880 + hash = "sha256-g+hC7DtT5CNf3PSTldttvSK2s2ocRnZboWhVYVmgAY4=" 17881 + typstDeps = [ 17882 + "tiaoma_0_3_0", 17883 + ] 17884 + description = "Invoice and offer template for Austrian freelancers" 17885 + license = [ 17886 + "MIT", 17887 + ] 17888 + 16687 17889 [tierpist."0.1.0"] 16688 17890 url = "https://packages.typst.org/preview/tierpist-0.1.0.tar.gz" 16689 17891 hash = "sha256-p9EUIa5z1f22OlPbJtdUojsnE3Kb2BDAwivkh3himQg=" ··· 16696 17898 ] 16697 17899 homepage = "https://github.com/bastienvoirin/tierpist" 16698 17900 17901 + [timeliney."0.2.1"] 17902 + url = "https://packages.typst.org/preview/timeliney-0.2.1.tar.gz" 17903 + hash = "sha256-c4aWt4hEhtFN5s9zhh7kg3bBRA+6KBkO8doadd0lOi4=" 17904 + typstDeps = [ 17905 + "cetz_0_3_2", 17906 + "mantys_0_1_4", 17907 + ] 17908 + description = "Create Gantt charts in Typst" 17909 + license = [ 17910 + "MIT", 17911 + ] 17912 + homepage = "https://github.com/pta2002/typst-timeliney" 17913 + 16699 17914 [timeliney."0.2.0"] 16700 17915 url = "https://packages.typst.org/preview/timeliney-0.2.0.tar.gz" 16701 17916 hash = "sha256-1dQFae+mGAsCRHDWBd2saFgzYRI427Ltx6WPCLU2/pM=" ··· 16802 18017 license = [ 16803 18018 "MIT", 16804 18019 ] 18020 + 18021 + [tntt."0.1.0"] 18022 + url = "https://packages.typst.org/preview/tntt-0.1.0.tar.gz" 18023 + hash = "sha256-f4NgrD5/fI4EQmBiYDgxFn1DqZPyvVgSgaTm3jgmmmU=" 18024 + typstDeps = [ 18025 + "cuti_0_3_0", 18026 + "i-figured_0_2_4", 18027 + "tablex_0_0_9", 18028 + ] 18029 + description = "Tntt is Not a Tex Thesis Template for Tsinghua university" 18030 + license = [ 18031 + "MIT", 18032 + ] 18033 + homepage = "https://github.com/chillcicada/tntt" 16805 18034 16806 18035 [touying."0.6.1"] 16807 18036 url = "https://packages.typst.org/preview/touying-0.6.1.tar.gz" ··· 17272 18501 ] 17273 18502 homepage = "https://github.com/RaVincentHuang/touying-dids" 17274 18503 18504 + [touying-flow."1.2.0"] 18505 + url = "https://packages.typst.org/preview/touying-flow-1.2.0.tar.gz" 18506 + hash = "sha256-rSMg6h0ouBSgHfyy6/3j8+1MNLkjYXNE3NKcWntYGjM=" 18507 + typstDeps = [ 18508 + "codly_1_3_0", 18509 + "cuti_0_3_0", 18510 + "lovelace_0_3_0", 18511 + "mitex_0_2_5", 18512 + "numbly_0_1_0", 18513 + "touying_0_6_1", 18514 + ] 18515 + description = "Enhancing the audience's immersion and foster a deeper state of flow" 18516 + license = [ 18517 + "MIT", 18518 + ] 18519 + homepage = "https://github.com/Quaternijkon/touying-flow" 18520 + 17275 18521 [touying-flow."1.1.0"] 17276 18522 url = "https://packages.typst.org/preview/touying-flow-1.1.0.tar.gz" 17277 - hash = "sha256-KuAAoTh9fbfg+IZagElq10yPce387wsja78SXr0ZqKA=" 18523 + hash = "sha256-Hf4pRkP66FVXhTGh9eIxXW/1RqRL/X6/STVXvQeIanE=" 17278 18524 typstDeps = [ 17279 18525 "codly_1_0_0", 17280 18526 "cuti_0_2_1", ··· 17374 18620 ] 17375 18621 homepage = "https://github.com/kazuyanagimoto/quarto-clean-typst" 17376 18622 18623 + [touying-quick."0.1.0"] 18624 + url = "https://packages.typst.org/preview/touying-quick-0.1.0.tar.gz" 18625 + hash = "sha256-BRYPSevmKHiy9rX6VG+yRlvbPuwoc7oy0owQdW3P3gk=" 18626 + typstDeps = [ 18627 + "codly_1_3_0", 18628 + "codly-languages_0_1_8", 18629 + "ctheorems_1_1_3", 18630 + "fletcher_0_5_7", 18631 + "gentle-clues_1_2_0", 18632 + "linguify_0_4_2", 18633 + "physica_0_9_5", 18634 + "pinit_0_2_2", 18635 + "rexllent_0_3_0", 18636 + "subpar_0_2_2", 18637 + "touying_0_6_0", 18638 + ] 18639 + description = "A quick-start template based on touying for academic reports" 18640 + license = [ 18641 + "MIT", 18642 + ] 18643 + homepage = "https://github.com/ivaquero/touying-quick.git" 18644 + 18645 + [touying-simpl-cau."0.2.0"] 18646 + url = "https://packages.typst.org/preview/touying-simpl-cau-0.2.0.tar.gz" 18647 + hash = "sha256-ZNqxrRPAa27RzF5Ib6u9PRAizftPqH2o8ar+NZ6yWAQ=" 18648 + typstDeps = [ 18649 + "cetz_0_3_4", 18650 + "fletcher_0_5_7", 18651 + "numbly_0_1_0", 18652 + "touying_0_6_1", 18653 + ] 18654 + description = "Touying Slide Theme for China Agricultural University" 18655 + license = [ 18656 + "MIT", 18657 + ] 18658 + homepage = "https://github.com/maxchang3/touying-simpl-cau" 18659 + 18660 + [touying-simpl-cau."0.1.0"] 18661 + url = "https://packages.typst.org/preview/touying-simpl-cau-0.1.0.tar.gz" 18662 + hash = "sha256-PzAfpKvVPs8pweoP8QwrVI58wWB+QNZ1efkDASKJqDM=" 18663 + typstDeps = [ 18664 + "cetz_0_3_2", 18665 + "fletcher_0_5_5", 18666 + "numbly_0_1_0", 18667 + "touying_0_6_0", 18668 + "touying_0_6_1", 18669 + ] 18670 + description = "Touying Slide Theme for China Agricultural University" 18671 + license = [ 18672 + "MIT", 18673 + ] 18674 + homepage = "https://github.com/maxchang3/touying-simpl-cau" 18675 + 17377 18676 [touying-simpl-hkustgz."0.1.1"] 17378 18677 url = "https://packages.typst.org/preview/touying-simpl-hkustgz-0.1.1.tar.gz" 17379 18678 hash = "sha256-hPzAv/zrLYdniHhKcXhiw4NqivEzu/MH0NO7utaIv/Q=" ··· 18465 19764 ] 18466 19765 homepage = "https://github.com/chosertech/HIT-Thesis-Typst" 18467 19766 19767 + [unofficial-cityuhk-thesis."0.1.0"] 19768 + url = "https://packages.typst.org/preview/unofficial-cityuhk-thesis-0.1.0.tar.gz" 19769 + hash = "sha256-wC73F94RMGrq2iKnCTMJfhZkKctHQOiJf1KAT5DjUR4=" 19770 + typstDeps = [ 19771 + "hydra_0_6_1", 19772 + ] 19773 + description = "The unofficial thesis template for City University of Hong Kong" 19774 + license = [ 19775 + "MIT", 19776 + ] 19777 + homepage = "https://github.com/bowentan/unofficial-cityuhk-thesis" 19778 + 18468 19779 [unofficial-fhict-document-template."1.1.3"] 18469 19780 url = "https://packages.typst.org/preview/unofficial-fhict-document-template-1.1.3.tar.gz" 18470 19781 hash = "sha256-QMVNRywcGXL/YcD47I0HSPZiRcW6XT5SwGDvgHwR9es=" ··· 18644 19955 ] 18645 19956 homepage = "https://github.com/AnsgarLichter/unofficial-hka-thesis" 18646 19957 19958 + [unofficial-sdu-thesis."0.2.2"] 19959 + url = "https://packages.typst.org/preview/unofficial-sdu-thesis-0.2.2.tar.gz" 19960 + hash = "sha256-PZBMLtJmY51CEKARfPcOdasT/4DnRjsBoFeabFWlopM=" 19961 + typstDeps = [ 19962 + "cuti_0_3_0", 19963 + "i-figured_0_2_4", 19964 + "lovelace_0_2_0", 19965 + "numbly_0_1_0", 19966 + "unofficial-sdu-thesis_0_2_1", 19967 + ] 19968 + description = "山东大学本科毕业论文(设计)模板" 19969 + license = [ 19970 + "MIT", 19971 + ] 19972 + homepage = "https://github.com/GrooveWJH/unofficial-sdu-thesis" 19973 + 19974 + [unofficial-sdu-thesis."0.2.1"] 19975 + url = "https://packages.typst.org/preview/unofficial-sdu-thesis-0.2.1.tar.gz" 19976 + hash = "sha256-dRMEQ4PtyFkOhpWyhy+X9XHdhFdH/3s67r/2khFsAc8=" 19977 + typstDeps = [ 19978 + "cuti_0_3_0", 19979 + "i-figured_0_2_4", 19980 + "lovelace_0_2_0", 19981 + "numbly_0_1_0", 19982 + ] 19983 + description = "山东大学本科毕业论文(设计)模板" 19984 + license = [ 19985 + "MIT", 19986 + ] 19987 + homepage = "https://github.com/GrooveWJH/unofficial-sdu-thesis" 19988 + 18647 19989 [unofficial-sdu-thesis."0.2.0"] 18648 19990 url = "https://packages.typst.org/preview/unofficial-sdu-thesis-0.2.0.tar.gz" 18649 19991 hash = "sha256-O/l47Jrk+ChI0JC7VVGLxTL250OTs4L24OlYtZeCei4=" ··· 18741 20083 ] 18742 20084 homepage = "https://github.com/dl-li/uo-Tsinghua-Thesis-Typst-Template" 18743 20085 20086 + [upb-cn-templates."0.1.0"] 20087 + url = "https://packages.typst.org/preview/upb-cn-templates-0.1.0.tar.gz" 20088 + hash = "sha256-aY7EfOJN2CHoEURr65IuJwkReXF+bHJnfD9ei9bdLJE=" 20089 + typstDeps = [ 20090 + "timeliney_0_2_0", 20091 + ] 20092 + description = "Templates for seminar reports and thesis proposals at the Computer Networks Group of Paderborn University" 20093 + license = [ 20094 + "MIT-0", 20095 + ] 20096 + homepage = "https://github.com/upb-cn/student-templates-typst" 20097 + 18744 20098 [upb-corporate-design-slides."0.1.2"] 18745 20099 url = "https://packages.typst.org/preview/upb-corporate-design-slides-0.1.2.tar.gz" 18746 20100 hash = "sha256-X93El+L4GAiDM9BwiVU8l48MpIAXsWPC4A7z3DTY2ng=" ··· 18897 20251 ] 18898 20252 homepage = "https://github.com/zyf722/typst-tabler-icons" 18899 20253 20254 + [utype-neuies-reports."1.2.0"] 20255 + url = "https://packages.typst.org/preview/utype-neuies-reports-1.2.0.tar.gz" 20256 + hash = "sha256-zvz+mkwc2vgai0+LWbLD+j9/RNGW2iGph0qgZTrVV0M=" 20257 + typstDeps = [ 20258 + "linguify_0_4_2", 20259 + ] 20260 + description = "NEÜ Eğitim Bilimleri Enstitüsü için RESMÎ OLMAYAN tez önerisi, tez ve dönem projesi şablonudur. [UNOFFICIAL thesis proposal, thesis and term project template for NEU Institute of Educational Sciences" 20261 + license = [ 20262 + "MIT", 20263 + ] 20264 + homepage = "https://github.com/ertugruluyar-github/utype-neuies-reports" 20265 + 20266 + [utype-neuies-reports."1.1.0"] 20267 + url = "https://packages.typst.org/preview/utype-neuies-reports-1.1.0.tar.gz" 20268 + hash = "sha256-YPlUrEwSdm/xqtN0q4SXIZ+whrl7EmyTIzulowYJOIo=" 20269 + typstDeps = [ 20270 + "linguify_0_4_2", 20271 + ] 20272 + description = "NEÜ Eğitim Bilimleri Enstitüsü için RESMÎ OLMAYAN tez önerisi, tez ve dönem projesi şablonudur. [UNOFFICIAL thesis proposal, thesis and term project template for NEU Institute of Educational Sciences" 20273 + license = [ 20274 + "MIT", 20275 + ] 20276 + homepage = "https://github.com/ertugruluyar-github/utype-neuies-reports" 20277 + 20278 + [utype-neuies-reports."1.0.0"] 20279 + url = "https://packages.typst.org/preview/utype-neuies-reports-1.0.0.tar.gz" 20280 + hash = "sha256-NkL09w2FJq7orkefTPZ+74Ud/twqIrOBq9FtZdlsN48=" 20281 + typstDeps = [ 20282 + "linguify_0_4_2", 20283 + ] 20284 + description = "NEÜ Eğitim Bilimleri Enstitüsü için RESMÎ OLMAYAN tez önerisi, tez ve dönem projesi şablonudur. [UNOFFICIAL thesis proposal, thesis and term project template for NEU Institute of Educational Sciences" 20285 + license = [ 20286 + "MIT", 20287 + ] 20288 + homepage = "https://github.com/ertugruluyar-github/utype-neuies-reports" 20289 + 18900 20290 [valkyrie."0.2.2"] 18901 20291 url = "https://packages.typst.org/preview/valkyrie-0.2.2.tar.gz" 18902 20292 hash = "sha256-9FTVR2mbrCMIrsraUrx8m8U1OwMKzIlvK9ule3cQHLk=" ··· 18959 20349 ] 18960 20350 homepage = "https://github.com/sardorml/vantage-typst" 18961 20351 20352 + [vartable."0.2.0"] 20353 + url = "https://packages.typst.org/preview/vartable-0.2.0.tar.gz" 20354 + hash = "sha256-nPJw1lKOeCWb03tm4l5MBn8Se7nW8PGt4ELD/9wB+iE=" 20355 + typstDeps = [ 20356 + "cetz_0_3_4", 20357 + ] 20358 + description = "A simple package to make variation table" 20359 + license = [ 20360 + "MIT", 20361 + ] 20362 + homepage = "https://github.com/Le-foucheur/Typst-VarTable" 20363 + 18962 20364 [vartable."0.1.2"] 18963 20365 url = "https://packages.typst.org/preview/vartable-0.1.2.tar.gz" 18964 20366 hash = "sha256-qdxhy9af6K4ez9UUd9sYrHR38DbCHG/D1besutjxOHE=" ··· 18995 20397 ] 18996 20398 homepage = "https://github.com/Le-foucheur/Typst-VarTable" 18997 20399 20400 + [vercanard."1.0.3"] 20401 + url = "https://packages.typst.org/preview/vercanard-1.0.3.tar.gz" 20402 + hash = "sha256-yuElpbHPgUVznja91n020BA6dNoZh5Jj7vKqxx1kLFg=" 20403 + typstDeps = [] 20404 + description = "A colorful CV template" 20405 + license = [ 20406 + "GPL-3.0-only", 20407 + ] 20408 + homepage = "https://github.com/elegaanz/vercanard" 20409 + 18998 20410 [vercanard."1.0.2"] 18999 20411 url = "https://packages.typst.org/preview/vercanard-1.0.2.tar.gz" 19000 20412 hash = "sha256-OlUnjAHq46bqpMcrfpoZs2dFMwoxydonb5nUSrMWkIA=" ··· 19026 20438 "GPL-3.0-only", 19027 20439 ] 19028 20440 homepage = "https://github.com/elegaanz/vercanard" 20441 + 20442 + [versatile-apa."7.1.2"] 20443 + url = "https://packages.typst.org/preview/versatile-apa-7.1.2.tar.gz" 20444 + hash = "sha256-g0w9jFsBSyeCjVWGp4/Tu++4VQ5KqRWZt6v8zpDh5k8=" 20445 + typstDeps = [] 20446 + description = "Comprehensive APA 7th Edition Style Template for Typst, suitable for both student and professional papers" 20447 + license = [ 20448 + "MIT-0", 20449 + ] 20450 + homepage = "https://github.com/jassielof/typst-templates" 19029 20451 19030 20452 [versatile-apa."7.1.1"] 19031 20453 url = "https://packages.typst.org/preview/versatile-apa-7.1.1.tar.gz" ··· 19142 20564 "AGPL-3.0-only", 19143 20565 ] 19144 20566 homepage = "https://github.com/vonsim/typst-package" 20567 + 20568 + [wavy."0.1.3"] 20569 + url = "https://packages.typst.org/preview/wavy-0.1.3.tar.gz" 20570 + hash = "sha256-iLh9y+2tL8G2RKQ7thYYfa9wyKWZR543JoIMbzqo2tA=" 20571 + typstDeps = [ 20572 + "jogs_0_2_4", 20573 + ] 20574 + description = "Draw digital timing diagram in Typst using Wavedrom" 20575 + license = [ 20576 + "MIT", 20577 + ] 20578 + homepage = "https://github.com/Enter-tainer/wavy" 19145 20579 19146 20580 [wavy."0.1.1"] 19147 20581 url = "https://packages.typst.org/preview/wavy-0.1.1.tar.gz" ··· 19484 20918 "MIT", 19485 20919 ] 19486 20920 homepage = "https://github.com/visika/yuan-resume" 20921 + 20922 + [zebraw."0.5.4"] 20923 + url = "https://packages.typst.org/preview/zebraw-0.5.4.tar.gz" 20924 + hash = "sha256-mekAjJe/VoNJ9aHbOpogkEi6QKXV9W7ya+vzkiJFado=" 20925 + typstDeps = [] 20926 + description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting" 20927 + license = [ 20928 + "MIT", 20929 + ] 20930 + homepage = "https://github.com/hongjr03/typst-zebraw" 20931 + 20932 + [zebraw."0.5.3"] 20933 + url = "https://packages.typst.org/preview/zebraw-0.5.3.tar.gz" 20934 + hash = "sha256-ZQAp9iWU/YDdmp9yahnA3Thy9Hv39M5+AYZ7N0l0F4w=" 20935 + typstDeps = [ 20936 + "zebraw_0_5_2", 20937 + ] 20938 + description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting" 20939 + license = [ 20940 + "MIT", 20941 + ] 20942 + homepage = "https://github.com/hongjr03/typst-zebraw" 20943 + 20944 + [zebraw."0.5.2"] 20945 + url = "https://packages.typst.org/preview/zebraw-0.5.2.tar.gz" 20946 + hash = "sha256-4gGEiicfY4Eby8sxHdOwxs7Bh9YUtnZwqlkSTYyvCA4=" 20947 + typstDeps = [] 20948 + description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting" 20949 + license = [ 20950 + "MIT", 20951 + ] 20952 + homepage = "https://github.com/hongjr03/typst-zebraw" 20953 + 20954 + [zebraw."0.5.1"] 20955 + url = "https://packages.typst.org/preview/zebraw-0.5.1.tar.gz" 20956 + hash = "sha256-yDdpAR4F+TbuCSn5bBVTDNX3BDKGH5F55eSaMNJcQz8=" 20957 + typstDeps = [ 20958 + "tidy_0_4_2", 20959 + ] 20960 + description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting" 20961 + license = [ 20962 + "MIT", 20963 + ] 20964 + homepage = "https://github.com/hongjr03/typst-zebraw" 19487 20965 19488 20966 [zebraw."0.5.0"] 19489 20967 url = "https://packages.typst.org/preview/zebraw-0.5.0.tar.gz"
+3 -3
pkgs/development/php-packages/phpstan/default.nix
··· 7 7 8 8 php.buildComposerProject2 (finalAttrs: { 9 9 pname = "phpstan"; 10 - version = "2.1.13"; 10 + version = "2.1.14"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "phpstan"; 14 14 repo = "phpstan-src"; 15 15 tag = finalAttrs.version; 16 - hash = "sha256-/danRcl5yTJNtJFhuIRMvNuii7SZc/e9B+gM6MB6Avc="; 16 + hash = "sha256-Bo+jjTJ0EoU09z/lWl1ZyD639lz/C8v7OwPspSFNNp8="; 17 17 }; 18 18 19 - vendorHash = "sha256-IYcpPaXrML+YM3kcU527RMQjluczsISSyHGzsQFZuuc="; 19 + vendorHash = "sha256-exm2AofvmRqRF+TZ3hI5lsacMn+AvceNMWQvRrMTjsU="; 20 20 composerStrictValidation = false; 21 21 22 22 doInstallCheck = true;
+5
pkgs/development/python-modules/pygeocodio/default.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 buildPythonPackage, 4 5 fetchFromGitHub, 5 6 setuptools, ··· 30 31 ]; 31 32 32 33 pythonImportsCheck = [ "geocodio" ]; 34 + 35 + disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ 36 + "test_timeout" 37 + ]; 33 38 34 39 nativeCheckInputs = [ 35 40 pytestCheckHook
-26
pkgs/development/python-modules/sabyenc/default.nix
··· 1 - { 2 - lib, 3 - buildPythonPackage, 4 - fetchPypi, 5 - }: 6 - 7 - buildPythonPackage rec { 8 - pname = "sabyenc"; 9 - version = "3.3.6"; 10 - format = "setuptools"; 11 - 12 - src = fetchPypi { 13 - inherit pname version; 14 - sha256 = "1qbymi1626mmcxnsqdwnz2krxg7jvl4qbh8nwjj54z2p681wvjm4"; 15 - }; 16 - 17 - # tests are not included in pypi distribution 18 - doCheck = false; 19 - 20 - meta = { 21 - description = "Python yEnc package optimized for use within SABnzbd"; 22 - homepage = "https://github.com/sabnzbd/sabyenc/"; 23 - license = lib.licenses.lgpl3; 24 - maintainers = [ lib.maintainers.georgewhewell ]; 25 - }; 26 - }
+1
pkgs/top-level/python-aliases.nix
··· 686 686 ruff-lsp = throw "ruff-lsp has been deprecated, use `ruff server` instead"; # added 2025-04-21 687 687 runway-python = throw "SDK has been deprecated and was archived by upstream"; # added 2023-05-03 688 688 safe = throw "safe has been removed, it was unmaintained sinced October 2019"; # added 2024-07-28 689 + sabyenc = throw "sabyenc has been removed, due to no updates since June 2019 and being superseded by sabyenc3"; # added 2025-05-03 689 690 sampledata = throw "sampledata has been removed, it was unmaintained since 2017"; # added 2024-07-27 690 691 sapi-python-client = kbcstorage; # added 2022-04-20 691 692 scikitimage = scikit-image; # added 2023-05-14
-2
pkgs/top-level/python-packages.nix
··· 15358 15358 15359 15359 sabctools = callPackage ../development/python-modules/sabctools { }; 15360 15360 15361 - sabyenc = callPackage ../development/python-modules/sabyenc { }; 15362 - 15363 15361 sabyenc3 = callPackage ../development/python-modules/sabyenc3 { }; 15364 15362 15365 15363 sacn = callPackage ../development/python-modules/sacn { };