Previously substituters could read nix.conf themselves, but this didn't take --option flags into account.
		
			
				
	
	
		
			41 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
package Nix::Config;
 | 
						|
 | 
						|
$version = "@version@";
 | 
						|
 | 
						|
$binDir = $ENV{"NIX_BIN_DIR"} || "@bindir@";
 | 
						|
$libexecDir = $ENV{"NIX_LIBEXEC_DIR"} || "@libexecdir@";
 | 
						|
$stateDir = $ENV{"NIX_STATE_DIR"} || "@localstatedir@/nix";
 | 
						|
$manifestDir = $ENV{"NIX_MANIFESTS_DIR"} || "@localstatedir@/nix/manifests";
 | 
						|
$logDir = $ENV{"NIX_LOG_DIR"} || "@localstatedir@/log/nix";
 | 
						|
$confDir = $ENV{"NIX_CONF_DIR"} || "@sysconfdir@/nix";
 | 
						|
$storeDir = $ENV{"NIX_STORE_DIR"} || "@storedir@";
 | 
						|
 | 
						|
$bzip2 = "@bzip2@";
 | 
						|
$xz = "@xz@";
 | 
						|
$curl = "@curl@";
 | 
						|
 | 
						|
$useBindings = "@perlbindings@" eq "yes";
 | 
						|
 | 
						|
%config = ();
 | 
						|
 | 
						|
sub readConfig {
 | 
						|
    if (defined $ENV{'_NIX_OPTIONS'}) {
 | 
						|
        foreach my $s (split '\n', $ENV{'_NIX_OPTIONS'}) {
 | 
						|
            my ($n, $v) = split '=', $s, 2;
 | 
						|
            $config{$n} = $v;
 | 
						|
        }
 | 
						|
        return;
 | 
						|
    }
 | 
						|
 | 
						|
    my $config = "$confDir/nix.conf";
 | 
						|
    return unless -f $config;
 | 
						|
 | 
						|
    open CONFIG, "<$config" or die "cannot open `$config'";
 | 
						|
    while (<CONFIG>) {
 | 
						|
        /^\s*([\w|-]+)\s*=\s*(.*)$/ or next;
 | 
						|
        $config{$1} = $2;
 | 
						|
    }
 | 
						|
    close CONFIG;
 | 
						|
}
 | 
						|
 | 
						|
return 1;
 |