diff options
Diffstat (limited to '.nix/derivation.nix')
| -rw-r--r-- | .nix/derivation.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.nix/derivation.nix b/.nix/derivation.nix index 5a1f1db..3be1695 100644 --- a/.nix/derivation.nix +++ b/.nix/derivation.nix @@ -1,6 +1,7 @@ { lib , stdenv , typst +, typstPackages }: stdenv.mkDerivation { @@ -11,7 +12,9 @@ stdenv.mkDerivation { nativeBuildInputs = [ typst - ]; + ] ++ (with typstPackages; [ + charged-ieee + ]); buildPhase = '' typst compile report.typ out.pdf |
