mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
22 lines
512 B
Nix
22 lines
512 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
name = "whoogle-search";
|
|
meta.maintainers = with lib.maintainers; [ malte-v ];
|
|
|
|
nodes.machine =
|
|
{ pkgs, ... }:
|
|
{
|
|
services.whoogle-search = {
|
|
enable = true;
|
|
port = 5000;
|
|
listenAddress = "127.0.0.1";
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
machine.start()
|
|
machine.wait_for_unit("whoogle-search.service")
|
|
machine.wait_for_open_port(5000)
|
|
machine.wait_until_succeeds("curl --fail --show-error --silent --location localhost:5000/")
|
|
'';
|
|
}
|