diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-07-02 20:21:10 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-07-02 20:21:15 +0200 |
| commit | 19345f76576623951d61b83dc3435628a0b48f65 (patch) | |
| tree | fe8fc33512403780adad13dd288b96920ab7c4fc | |
| parent | ebfdb1dafa430786db10dad2ef7d5467c1bdbed1 (diff) | |
Fix some issues in Nix flake
| -rw-r--r-- | flake.nix | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -38,7 +38,7 @@ inherit ((importTOML ./Cargo.toml).workspace.package) version; src = sourceByRegex ./. [ - "(assets|cli|docs|library|macros|src|tests)(/.*)?" + "(assets|crates|tests)(/.*)?" ''Cargo\.(toml|lock)'' ''build\.rs'' ]; @@ -57,10 +57,10 @@ ]; postInstall = '' - installManPage cli/artifacts/*.1 + installManPage crates/typst-cli/artifacts/*.1 installShellCompletion \ - cli/artifacts/typst.{bash,fish} \ - --zsh cli/artifacts/_typst + crates/typst-cli/artifacts/typst.{bash,fish} \ + --zsh crates/typst-cli/artifacts/_typst ''; GEN_ARTIFACTS = "artifacts"; |
