summaryrefslogtreecommitdiff
path: root/doc/languages-frameworks
diff options
context:
space:
mode:
authorRoss Smyth <18294397+RossSmyth@users.noreply.github.com>2025-11-19 15:17:11 -0500
committerRoss Smyth <18294397+RossSmyth@users.noreply.github.com>2025-11-19 17:10:28 -0500
commitd3503bd57f16c8cd67ef04bd5cd6b0ddfdd8d027 (patch)
treeb3c669e9eb8253e9e575d47567ff7f9f00e2dd4d /doc/languages-frameworks
parentservo: 0.0.1-unstable-2025-10-29 -> 0.0.1-unstable-2025-11-12 (#461103) (diff)
downloadnixpkgs-d3503bd57f16c8cd67ef04bd5cd6b0ddfdd8d027.tar.gz
typstPackages: Use makeScope so that it has typical pkgset attrs
Diffstat (limited to 'doc/languages-frameworks')
-rw-r--r--doc/languages-frameworks/typst.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/typst.section.md b/doc/languages-frameworks/typst.section.md
index 5d95f44ae7ad..711b6ce193bd 100644
--- a/doc/languages-frameworks/typst.section.md
+++ b/doc/languages-frameworks/typst.section.md
@@ -22,7 +22,7 @@ Since **Typst Universe** does not provide a way to fetch a package with a specif
```nix
typst.withPackages.override
(old: {
- typstPackages = old.typstPackages.extend (
+ typstPackages = old.typstPackages.overrideScope (
_: previous: {
polylux_0_4_0 = previous.polylux_0_4_0.overrideAttrs (oldPolylux: {
src = oldPolylux.src.overrideAttrs { outputHash = YourUpToDatePolyluxHash; };