L54KA7IMVLHLHUED7I2K5AGSDR3EHFLMR7H332TCOTZFPV72AUWQC
my $declText = readNixFile($declPath)
or die "Couldn't read declarative specification file $declPath: $!";
my $declText = eval {
readNixFile($declPath)
};
if ($@) {
print STDERR "ERROR: failed to readNixFile $declPath: ", $@, "\n";
die;
}