makes
makes copied to clipboard
Running makes CLI within makes
I have seen use cases where I want to execute the m command within a makeScript job.
Let's look for a comfortable way to do this.
It looks like doing something like this is enough:
makes = import (builtins.fetchGit {
url = "https://github.com/fluidattacks/makes";
ref = "refs/heads/main";
rev = "bd2848c799aac0f04e211f16547dad41c6e3190e";
}) {};
Then it can be added to the path with:
searchPaths.bin = [makes]
Let's add documentation for this.