mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
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")
|
||
|
'';
|
||
|
})
|