depot/pkgs/by-name/wa/watchdog/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

25 lines
649 B
Nix

{
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";
};
})