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