2021-01-11 07:54:33 +00:00
|
|
|
{ lib, 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";
|
2021-03-09 23:26:35 +00:00
|
|
|
version = "0.4.3";
|
2017-03-02 09:21:08 +00:00
|
|
|
|
2015-04-04 01:26:48 +01:00
|
|
|
src = fetchFromGitHub {
|
2021-03-09 23:26:35 +00:00
|
|
|
sha256 = "sha256-X/LnH+EWjXlw8RktfL4ckAUmP2DPV1qlb6Ii4N985cU=";
|
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 ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-04-04 01:26:48 +01:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/rpodgorny/uptimed/";
|
2021-03-10 07:10:07 +00:00
|
|
|
license = with licenses; [ gpl2Only lgpl21Plus ];
|
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
platforms = platforms.linux;
|
2015-04-04 01:26:48 +01:00
|
|
|
};
|
2009-09-16 08:31:16 +01:00
|
|
|
}
|