mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
21 lines
363 B
Nix
21 lines
363 B
Nix
import ./make-test-python.nix ({ lib, pkgs, ... }: {
|
|
|
|
name = "bpftune";
|
|
|
|
meta = {
|
|
maintainers = with lib.maintainers; [ nickcao ];
|
|
};
|
|
|
|
nodes = {
|
|
machine = { pkgs, ... }: {
|
|
services.bpftune.enable = true;
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
machine.wait_for_unit("bpftune.service")
|
|
machine.wait_for_console_text("bpftune works")
|
|
'';
|
|
|
|
})
|