mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
29 lines
625 B
Nix
29 lines
625 B
Nix
import ./make-test-python.nix (
|
|
{ lib, ... }:
|
|
let
|
|
port = 61812;
|
|
in
|
|
{
|
|
name = "misskey";
|
|
|
|
meta.maintainers = [ lib.maintainers.feathecutie ];
|
|
|
|
nodes.machine = {
|
|
services.misskey = {
|
|
enable = true;
|
|
settings = {
|
|
url = "http://misskey.local";
|
|
inherit port;
|
|
};
|
|
database.createLocally = true;
|
|
redis.createLocally = true;
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
machine.wait_for_unit("misskey.service")
|
|
machine.wait_for_open_port(${toString port})
|
|
machine.succeed("curl --fail http://localhost:${toString port}/")
|
|
'';
|
|
}
|
|
)
|