Unverified Commit 65dc67b5 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

motioneye: init at 0.43.1 (#502230)

parents 7cfe0394 0283946b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1587,6 +1587,7 @@
  ./services/video/go2rtc/default.nix
  ./services/video/mediamtx.nix
  ./services/video/mirakurun.nix
  ./services/video/motioneye.nix
  ./services/video/photonvision.nix
  ./services/video/ustreamer.nix
  ./services/video/v4l2-relayd.nix
+122 −0
Original line number Diff line number Diff line
{
  config,
  pkgs,
  lib,
  ...
}:

let
  cfg = config.services.motioneye;
in
{
  options.services.motioneye = {
    enable = lib.mkEnableOption "motionEye";

    packages = {
      motioneye = lib.mkPackageOption pkgs "motioneye" { };
      motion = lib.mkPackageOption pkgs "motion" { };
      ffmpeg = lib.mkPackageOption pkgs "ffmpeg" { };
    };

    user = lib.mkOption {
      type = lib.types.str;
      default = "motioneye";
      description = "User to run motionEye under.";
    };

    group = lib.mkOption {
      type = lib.types.str;
      default = "motioneye";
      description = "Group to run motionEye under.";
    };

    settings = lib.mkOption {
      type = lib.types.attrsOf lib.types.str;
      default = { };
      defaultText = lib.literalExpression /* nix */ ''
        {
          conf_path = lib.mkDefault "/var/lib/motioneye/conf";
          run_path = lib.mkDefault "/run/motioneye";
          log_path = lib.mkDefault "/var/log/motioneye";
          media_path = lib.mkDefault "/var/lib/motioneye/media";
        }
      '';
      description = ''
        Configuration to put in motioneye.conf.
        See <https://github.com/motioneye-project/motioneye/wiki/Configuration-File>  for more details.
      '';
    };
  };

  config = lib.mkIf cfg.enable {
    services.motioneye.settings = {
      conf_path = lib.mkDefault "/var/lib/motioneye/conf";
      run_path = lib.mkDefault "/run/motioneye";
      log_path = lib.mkDefault "/var/log/motioneye";
      media_path = lib.mkDefault "/var/lib/motioneye/media";
    };

    users = {
      groups.${cfg.group} = { };
      users.${cfg.user} = {
        inherit (cfg) group;
        isSystemUser = true;

        # allow v4l access
        extraGroups = [ "video" ];
      };
    };

    systemd.tmpfiles.settings.motioneye =
      let
        config = {
          d = {
            inherit (cfg) user group;
            mode = "0750";
          };
        };
      in
      {
        "${cfg.settings.conf_path}" = config;
        "${cfg.settings.run_path}" = config;
        "${cfg.settings.log_path}" = config;
        "${cfg.settings.media_path}" = config;
      };

    environment.etc."motioneye/motioneye.conf".text = lib.concatMapAttrsStringSep "\n" (
      key: value: "${key} ${lib.escapeShellArg value}"
    ) cfg.settings;

    # https://github.com/motioneye-project/motioneye/blob/main/motioneye/extra/motioneye.systemd
    systemd.services.motioneye = {
      description = "motionEye Server";
      after = [
        "network.target"
        "local-fs.target"
        "remote-fs.target"
      ];
      wantedBy = [ "multi-user.target" ];
      path =
        (with pkgs; [
          which
          v4l-utils
        ])
        ++ [
          cfg.packages.motion
          cfg.packages.ffmpeg
        ];
      restartTriggers = [
        config.environment.etc."motioneye/motioneye.conf".source
      ];
      serviceConfig = {
        User = cfg.user;
        Group = cfg.group;
        RuntimeDirectory = "motioneye";
        LogsDirectory = "motioneye";
        StateDirectory = "motioneye";
        ExecStart = "${lib.getExe' cfg.packages.motioneye "meyectl"} startserver -c /etc/motioneye/motioneye.conf";
        Restart = "on-abort";
      };
    };
  };
}
+57 −0
Original line number Diff line number Diff line
{
  lib,
  python3Packages,
  fetchFromGitHub,
  fetchpatch,
}:

python3Packages.buildPythonApplication rec {
  pname = "motioneye";
  version = "0.43.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "motioneye-project";
    repo = "motioneye";
    tag = version;
    hash = "sha256-ckOgYmOP5irjNutcC3FMZPBexn/CldG0UtFZ+tPYNJ4=";
  };

  patches = [
    # fix pytest
    # https://github.com/motioneye-project/motioneye/pull/3271
    (fetchpatch {
      url = "https://github.com/motioneye-project/motioneye/commit/41c0727e2872af1b758743c41b529e76dcac6f84.patch";
      hash = "sha256-0zDveoAN1T0SuCob0U/9GEGTh7pj2CXH/j4YrjO0VE0=";
      includes = [ "conftest.py" ];
    })
  ];

  build-system = with python3Packages; [
    setuptools
  ];

  dependencies = with python3Packages; [
    babel
    boto3
    jinja2
    pillow
    pycurl
    tornado
  ];

  nativeCheckInputs = with python3Packages; [
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "motioneye"
  ];

  meta = {
    description = "Web frontend for the motion daemon";
    homepage = "https://github.com/motioneye-project/motioneye";
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ marcel ];
  };
}