mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 17:54:53 +01:00
24 lines
326 B
Nix
24 lines
326 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
name = "tika-server";
|
|
|
|
nodes = {
|
|
machine =
|
|
{ pkgs, ... }:
|
|
{
|
|
services.tika = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
machine.start()
|
|
machine.wait_for_unit("tika.service")
|
|
machine.wait_for_open_port(9998)
|
|
'';
|
|
|
|
meta.maintainers = [ ];
|
|
}
|