(hosts []nix.Host)
| 330 | } |
| 331 | |
| 332 | func execBuild(hosts []nix.Host) (string, error) { |
| 333 | resultPath, err := buildHosts(hosts) |
| 334 | if err != nil { |
| 335 | return "", err |
| 336 | } |
| 337 | return resultPath, nil |
| 338 | } |
| 339 | |
| 340 | func execEval() (string, error) { |
| 341 | ctx := getNixContext() |
no test coverage detected