2015-05-25 15:40:16 +00:00
|
|
|
{ stdenv, fetchgit, libgtop, xmessage, which, pkgconfig }:
|
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "das_watchdog";
|
2017-08-15 07:42:11 +00:00
|
|
|
version = "git-2015-09-12";
|
2015-05-25 15:40:16 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/kmatheussen/das_watchdog.git";
|
2017-08-15 07:42:11 +00:00
|
|
|
rev = "5ac0db0b98e5b4e690aca0aa7fb6ec60ceddcb06";
|
|
|
|
sha256 = "02y1vfb3wh4908xjj1kpyf8kgxk29x8dw7yl3pnl220qz2gi99vr";
|
2015-05-25 15:40:16 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libgtop xmessage which ];
|
2015-05-25 15:40:16 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin/
|
|
|
|
cp das_watchdog $out/bin/
|
|
|
|
cp test_rt $out/bin/
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/kmatheussen/das_watchdog";
|
2015-05-25 15:40:16 +00: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;
|
|
|
|
};
|
|
|
|
}
|