mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
20 lines
359 B
Nix
20 lines
359 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
name = "lidarr";
|
|
meta.maintainers = with lib.maintainers; [ etu ];
|
|
|
|
nodes.machine =
|
|
{ pkgs, ... }:
|
|
{
|
|
services.lidarr.enable = true;
|
|
};
|
|
|
|
testScript = ''
|
|
start_all()
|
|
|
|
machine.wait_for_unit("lidarr.service")
|
|
machine.wait_for_open_port(8686)
|
|
machine.succeed("curl --fail http://localhost:8686/")
|
|
'';
|
|
}
|