nixpkgs/pkgs/tools/system/das_watchdog/default.nix

34 lines
957 B
Nix
Raw Normal View History

2015-05-25 18:40:16 +03:00
{ stdenv, fetchgit, libgtop, xmessage, which, pkgconfig }:
2019-08-14 00:52:01 +03:00
stdenv.mkDerivation {
pname = "das_watchdog";
version = "git-2015-09-12";
2015-05-25 18:40:16 +03:00
src = fetchgit {
url = "https://github.com/kmatheussen/das_watchdog.git";
rev = "5ac0db0b98e5b4e690aca0aa7fb6ec60ceddcb06";
sha256 = "02y1vfb3wh4908xjj1kpyf8kgxk29x8dw7yl3pnl220qz2gi99vr";
2015-05-25 18:40:16 +03:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libgtop xmessage which ];
2015-05-25 18:40:16 +03:00
installPhase = ''
mkdir -p $out/bin/
cp das_watchdog $out/bin/
cp test_rt $out/bin/
'';
meta = with stdenv.lib; {
homepage = "https://github.com/kmatheussen/das_watchdog";
2015-05-25 18:40:16 +03:00
description = "A general watchdog for the linux operating system";
longDescription = ''
It should run in the background at all times to ensure a realtime process
won't hang the machine.";
'';
license = licenses.free;
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
};
}