39 lines
		
	
	
	
		
			896 B
		
	
	
	
		
			Perl
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			896 B
		
	
	
	
		
			Perl
		
	
	
		
			Executable file
		
	
	
	
	
| #! /usr/bin/perl -w
 | |
| 
 | |
| my $linkdir = "@localstatedir@/nix/links";
 | |
| my $storedir = "@prefix@/store";
 | |
| 
 | |
| my %alive;
 | |
| 
 | |
| my $keepsuccessors = 0;
 | |
| my $invert = 0;
 | |
| 
 | |
| foreach my $arg (@ARGV) {
 | |
|     if ($arg eq "--keep-successors") { $keepsuccessors = 1; }
 | |
|     elsif ($arg eq "--invert") { $invert = 1; }
 | |
|     else { die "unknown argument `$arg'" };
 | |
| }
 | |
| 
 | |
| my $extraarg = "";
 | |
| if ($keepsuccessors) { $extraarg = "--include-successors"; };
 | |
| open HASHES, "nix --query --requisites $extraarg \$(cat $linkdir/*.id) |" or die "in `nix -qrh'";
 | |
| while (<HASHES>) {
 | |
| 	chomp;
 | |
| 	$alive{$_} = 1;
 | |
| 	if ($invert) { print "$_\n"; };
 | |
| }
 | |
| close HASHES;
 | |
| 
 | |
| exit 0 if ($invert);
 | |
| 
 | |
| opendir(DIR, $storedir) or die "cannot opendir $storedir: $!";
 | |
| my @names = readdir(DIR);
 | |
| closedir DIR;
 | |
| 
 | |
| foreach my $name (@names) {
 | |
|     next if ($name eq "." || $name eq "..");
 | |
|     $name = "$storedir/$name";
 | |
|     if (!$alive{$name}) {
 | |
|         print "$name\n";
 | |
|     }
 | |
| }
 |