Since cifs-utils 6.12, smbinfo needs Python to be usable. Issue introduced in 033208fd46e03178655f3c4a59add1d9dbf57731.
		
			
				
	
	
		
			13 lines
		
	
	
		
			406 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			406 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
import ./make-test-python.nix ({ pkgs, ... }: {
 | 
						|
  name = "cifs-utils";
 | 
						|
 | 
						|
  machine = { pkgs, ... }: { environment.systemPackages = [ pkgs.cifs-utils ]; };
 | 
						|
 | 
						|
  testScript = ''
 | 
						|
    machine.succeed("smbinfo -h")
 | 
						|
    machine.succeed("smb2-quota -h")
 | 
						|
    assert "${pkgs.cifs-utils.version}" in machine.succeed("cifs.upcall -v")
 | 
						|
    assert "${pkgs.cifs-utils.version}" in machine.succeed("mount.cifs -V")
 | 
						|
  '';
 | 
						|
})
 |