vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / ccache.nix
bloba97ae050176768786141dee097b7f8d6765e95e5
1 import ./make-test-python.nix ({ pkgs, ...} : {
2   name = "ccache";
3   meta = with pkgs.lib.maintainers; {
4     maintainers = [ ehmry ];
5   };
7   nodes.machine = { ... }: {
8     imports = [ ../modules/profiles/minimal.nix ];
9     environment.systemPackages = [ pkgs.hello ];
10     programs.ccache = {
11       enable = true;
12       packageNames = [ "hello" ];
13     };
14   };
16   testScript =
17     ''
18       start_all()
19       machine.wait_for_unit("multi-user.target")
20       machine.succeed("nix-ccache --show-stats")
21       machine.succeed("hello")
22       machine.shutdown()
23     '';