makes icon indicating copy to clipboard operation
makes copied to clipboard

Running makes CLI within makes

Open dsalaza4 opened this issue 2 years ago • 1 comments

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.

dsalaza4 avatar Jan 26 '23 00:01 dsalaza4

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.

dsalaza4 avatar Jan 26 '23 18:01 dsalaza4