path can be created by copying it from another location in the file system. This is useful in the NixOS installation.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			285 B
		
	
	
	
		
			Perl
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			285 B
		
	
	
	
		
			Perl
		
	
	
		
			Executable file
		
	
	
	
	
#! /usr/bin/perl -w -I/home/eelco/nix/scripts
 | 
						|
 | 
						|
use strict;
 | 
						|
use readmanifest;
 | 
						|
 | 
						|
for my $p (@ARGV) {
 | 
						|
 | 
						|
    my %narFiles;
 | 
						|
    my %localPaths;
 | 
						|
    my %patches;
 | 
						|
 | 
						|
    readManifest $p, \%narFiles, \%localPaths, \%patches;
 | 
						|
 | 
						|
    %patches = ();
 | 
						|
    
 | 
						|
    writeManifest $p, \%narFiles, \%patches;
 | 
						|
}
 |