cachix / devenv

Fast, Declarative, Reproducible, and Composable Developer Environments
https://devenv.sh
Apache License 2.0
3.61k stars 262 forks source link

Process Compose ready_log_line not usable #1206

Closed euphemism closed 1 week ago

euphemism commented 2 weeks ago

Describe the bug Attempting to pass along ready_log_line to Process Compose via devenv fails with the following:

FTL Failed to load project error="unknown key 'ready_log_line' found in process 'start'"

Process Compose docs on the feature.

To reproduce

devenv.nix:

{ ... }:

{
  processes.start = {
    exec = "echo start";

    process-compose.ready_log_line = "start";
  };
}

Version

devenv 1.0.5 (aarch64-darwin)

euphemism commented 1 week ago

Is this just user error?

sandydoo commented 1 week ago

@euphemism, this feature was added 2 weeks ago. You can use a newer version from nixpkgs-unstable in the meantime.

euphemism commented 1 week ago

Ah, okay. Thank you.