2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
2009-09-16 09:31:16 +02:00
|
|
|
|
2017-03-02 10:21:08 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "uptimed";
|
2022-01-01 23:37:24 +01:00
|
|
|
version = "0.4.6";
|
2017-03-02 10:21:08 +01:00
|
|
|
|
2015-04-04 02:26:48 +02:00
|
|
|
src = fetchFromGitHub {
|
2022-01-01 23:37:24 +01:00
|
|
|
sha256 = "sha256-aYP20O/8QotmnpryiFnFAfrpyk5f+0OkbkGxWf2Ug9w=";
|
2015-04-04 02:26:48 +02:00
|
|
|
rev = "v${version}";
|
|
|
|
repo = "uptimed";
|
|
|
|
owner = "rpodgorny";
|
2009-09-16 09:31:16 +02:00
|
|
|
};
|
|
|
|
|
2017-03-02 10:21:08 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
patches = [ ./no-var-spool-install.patch ];
|
|
|
|
|
2021-07-22 06:39:18 +02:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace libuptimed/urec.h \
|
|
|
|
--replace /var/spool /var/lib
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2015-04-04 02:26:48 +02: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 03:11:51 +02:00
|
|
|
homepage = "https://github.com/rpodgorny/uptimed/";
|
2021-03-10 08:10:07 +01:00
|
|
|
license = with licenses; [ gpl2Only lgpl21Plus ];
|
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
platforms = platforms.linux;
|
2015-04-04 02:26:48 +02:00
|
|
|
};
|
2009-09-16 09:31:16 +02:00
|
|
|
}
|