CJTOL7Y2YVHNTXJJ5VSETTRPVPHVOMSU4LORLJGGRFITIPWRHEOQC
my @paths = split '\n', `nix-store --query --requisites --include-outputs @storePaths`;
die "cannot query dependencies of path(s) @storePaths: $?" if $? != 0;
my @paths = Nix::computeFSClosure(0, 1, @storePaths);