urlForInstall is used during `nix profile install`. The key difference with URLForFlakeInput is that it has a suffix of `#attributePath`
()
| 320 | // The key difference with URLForFlakeInput is that it has a suffix of |
| 321 | // `#attributePath` |
| 322 | func (p *Package) urlForInstall() (string, error) { |
| 323 | if err := p.resolve(); err != nil { |
| 324 | return "", err |
| 325 | } |
| 326 | return p.installable.String(), nil |
| 327 | } |
| 328 | |
| 329 | func (p *Package) NormalizedDevboxPackageReference() (string, error) { |
| 330 | installable, err := p.FlakeInstallable() |
no test coverage detected