Unverified Commit 15b20374 authored by Sefa Eyeoglu's avatar Sefa Eyeoglu Committed by GitHub
Browse files

watchdog: init at 5.16 (#351037)

parents 17915e16 bc7813e2
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchzip,
}:
stdenv.mkDerivation (finalAttrs: {
  version = "5.16";
  pname = "watchdog";
  src = fetchzip {
    url = "mirror://sourceforge/watchdog/watchdog-${finalAttrs.version}.tar.gz";
    hash = "sha256-ecXsnPvAhlRB8jiTgK+i1j6m/0idNqmzjSqi6UGCydE=";
  };
  makeFlags = [
    "CONFIG_FILENAME:=${placeholder "out"}/etc/watchdog.conf"
  ];

  meta = {
    description = "Software watchdog for Linux";
    homepage = "https://sourceforge.net/projects/watchdog/";
    license = lib.licenses.gpl2;
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ n8henrie ];
    mainProgram = "watchdog";
  };
})