mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 17:46:29 +09:00
18 lines
342 B
Nix
18 lines
342 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
name = "radarr";
|
|
meta.maintainers = with lib.maintainers; [ etu ];
|
|
|
|
nodes.machine =
|
|
{ pkgs, ... }:
|
|
{
|
|
services.radarr.enable = true;
|
|
};
|
|
|
|
testScript = ''
|
|
machine.wait_for_unit("radarr.service")
|
|
machine.wait_for_open_port(7878)
|
|
machine.succeed("curl --fail http://localhost:7878/")
|
|
'';
|
|
}
|