IsInstallable returns whether this package is installable. Not to be confused with the Installable() method which returns the corresponding nix concept.
()
| 254 | // IsInstallable returns whether this package is installable. Not to be confused |
| 255 | // with the Installable() method which returns the corresponding nix concept. |
| 256 | func (p *Package) IsInstallable() bool { |
| 257 | return p.isInstallable() |
| 258 | } |
| 259 | |
| 260 | // Installables for this package. Installables is a nix concept defined here: |
| 261 | // https://nixos.org/manual/nix/stable/command-ref/new-cli/nix.html#installables |
no outgoing calls
no test coverage detected