20 lines
320 B
Nix
20 lines
320 B
Nix
|
{
|
||
|
pkgs,
|
||
|
typstPackagesCache,
|
||
|
typixLib,
|
||
|
}:
|
||
|
let
|
||
|
defaultArgs = {
|
||
|
inherit pkgs typstPackagesCache typixLib;
|
||
|
};
|
||
|
in
|
||
|
rec {
|
||
|
cleanTypstSource = (import ./cleanTypstSource.nix) defaultArgs;
|
||
|
callTypstProject = (import ./callTypstProject.nix) (
|
||
|
defaultArgs
|
||
|
// {
|
||
|
inherit cleanTypstSource;
|
||
|
}
|
||
|
);
|
||
|
}
|