Description
I'm packaging hypher for Guix (a source-based distro similar to Nix) as part of a larger project to package Typst, and part of our packaging guidelines is to avoid packaging "opaque" binaries if possible. In service of that, I've been trying to find a way to generate the files in the ./tries
directory.
The naive answer is to spot the ./tests/generate.rs
file and try running cargo test
(from a git checkout, as the cargo release is missing ./patterns
) but it seems that without the pre-existing binaries, hypher doesn't compile, so generate.rs can't be run. I read in #1 that this choice was made because the process requires human intervention(?), which is understandable, but would you be able to describe your process in detail, so that it can be replicated for Guix?