Shipwright does not support proxy, all it takes to enable proxy support
is adding the following line into Shipwright/Source/Base.pm
sub _lwp_get {
my $self = shift;
my $source = shift;
require LWP::UserAgent;
my $ua = LWP::UserAgent->new;
+ $ua->env_proxy;
$ua->timeout( $ENV{SHIPWRIGHT_LWP_TIMEOUT} )
This will get the proxy from the environment variables