2015-04-04 01:26:48 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
2009-09-16 08:31:16 +01:00
|
|
|
|
2017-03-02 09:21:08 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-04 01:26:48 +01:00
|
|
|
name = "uptimed-${version}";
|
2017-03-02 09:21:08 +00:00
|
|
|
version = "0.4.0";
|
|
|
|
|
2015-04-04 01:26:48 +01:00
|
|
|
src = fetchFromGitHub {
|
2017-03-02 09:21:08 +00:00
|
|
|
sha256 = "0h3192angfiv01bjk3f3nd2fmjic37cl72pvmr556n0wy3cfybas";
|
2015-04-04 01:26:48 +01:00
|
|
|
rev = "v${version}";
|
|
|
|
repo = "uptimed";
|
|
|
|
owner = "rpodgorny";
|
2009-09-16 08:31:16 +01:00
|
|
|
};
|
|
|
|
|
2017-03-02 09:21:08 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
patches = [ ./no-var-spool-install.patch ];
|
|
|
|
|
2015-04-04 01:26:48 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Uptime record daemon";
|
|
|
|
longDescription = ''
|
|
|
|
An uptime record daemon keeping track of the highest uptimes a computer
|
|
|
|
system ever had. It uses the system boot time to keep sessions apart from
|
|
|
|
each other. Uptimed comes with a console front-end to parse the records,
|
|
|
|
which can also easily be used to show your records on a web page.
|
|
|
|
'';
|
|
|
|
homepage = https://github.com/rpodgorny/uptimed/;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl2;
|
2015-11-17 20:29:29 +00:00
|
|
|
platforms = platforms.linux;
|
2015-04-04 01:26:48 +01:00
|
|
|
};
|
2009-09-16 08:31:16 +01:00
|
|
|
|
|
|
|
}
|