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 {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "uptimed";
|
2019-09-29 08:12:18 +01:00
|
|
|
version = "0.4.2";
|
2017-03-02 09:21:08 +00:00
|
|
|
|
2015-04-04 01:26:48 +01:00
|
|
|
src = fetchFromGitHub {
|
2019-09-29 08:12:18 +01:00
|
|
|
sha256 = "0wnnpjfxnycigqj6hag0n6p5piss8cv40y9jda72d9s4df5n91z8";
|
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
|
|
|
|
|
|
|
}
|