in reply to Sorting an array of hash references of array references

OK, found http://www.perlmonks.org/?node_id=599204 and came up with this:

my @sorted = sort { $a->{entry}->[1] cmp $b->{entry}->[1] } @array;

Seems to do the trick.