mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
5858d84658
Since cifs-utils 6.12, smbinfo needs Python to be usable.
Issue introduced in 033208fd46
.
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")
|
|
'';
|
|
})
|