Update prompt for Local path input to indicate a URL is also valid.

The PathInput input for local paths was previously enhanced to allow
URLs for which it would use a nix-prefetch-url operation.  This change
updates the prompt for the declarative input type to indicate this
capability.
This commit is contained in:
Kevin Quick 2018-09-09 22:08:06 -07:00
parent b7c42a38a3
commit d9515b208c

View file

@ -8,7 +8,7 @@ use Nix::Store;
sub supportedInputTypes {
my ($self, $inputTypes) = @_;
$inputTypes->{'path'} = 'Local path';
$inputTypes->{'path'} = 'Local path or URL';
}
sub fetchInput {