devenv icon indicating copy to clipboard operation
devenv copied to clipboard

[feature request] add files."name".path option.

Open landure opened this issue 6 months ago • 1 comments

Please add a "path" option to "files", in order for:

  files."bin/composer-recipes-install-all" = {
    executable = true;
    text = builtins.readFile ../files/php/bin/composer-recipes-install-all.bash;
  };

to be written like:

  files."bin/composer-recipes-install-all" = {
    executable = true;
    path = ../files/php/bin/composer-recipes-install-all.bash;
  };

landure avatar Aug 23 '25 14:08 landure

We could extend text to support paths

domenkozar avatar Nov 22 '25 16:11 domenkozar