3806d47b49
* uptimed: 0.3.18 -> 0.4.0 * uptimed: autoreconfHook belongs to nativeBuildInputs
31 lines
923 B
Nix
31 lines
923 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "uptimed-${version}";
|
|
version = "0.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "0h3192angfiv01bjk3f3nd2fmjic37cl72pvmr556n0wy3cfybas";
|
|
rev = "v${version}";
|
|
repo = "uptimed";
|
|
owner = "rpodgorny";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
patches = [ ./no-var-spool-install.patch ];
|
|
|
|
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/;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
|
|
}
|