fix: pass the flakeSelf argument to typst packages
This commit is contained in:
parent
1ff976cd36
commit
b09e369a76
2 changed files with 9 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
|||
typixLib,
|
||||
typstPackagesCache,
|
||||
cleanTypstSource,
|
||||
flakeSelf,
|
||||
...
|
||||
}:
|
||||
package:
|
||||
|
@ -12,5 +13,6 @@ package {
|
|||
typixLib
|
||||
typstPackagesCache
|
||||
cleanTypstSource
|
||||
flakeSelf
|
||||
;
|
||||
}
|
||||
|
|
|
@ -2,10 +2,16 @@
|
|||
pkgs,
|
||||
typstPackagesCache,
|
||||
typixLib,
|
||||
flakeSelf,
|
||||
}:
|
||||
let
|
||||
defaultArgs = {
|
||||
inherit pkgs typstPackagesCache typixLib;
|
||||
inherit
|
||||
pkgs
|
||||
typstPackagesCache
|
||||
typixLib
|
||||
flakeSelf
|
||||
;
|
||||
};
|
||||
in
|
||||
rec {
|
||||
|
|
Loading…
Reference in a new issue