summary refs log tree commit diff
path: root/pkgs/tools/system/uptimed/default.nix
blob: da2ac49b1958a09f27e9a067cb4b8a1aa228e295 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl, automake, autoconf, libtool}:

stdenv.mkDerivation {
  name = "uptimed-0.3.16";
  
  src = fetchurl {
    url = http://podgorny.cz/uptimed/releases/uptimed-0.3.16.tar.bz2;
    sha256 = "0axi2rz4gnmzzjl7xay7y8j1mh6iqqyg0arl1jyc3fgsk1ggy27m";
  };

  patches = [ ./no-var-spool-install.patch ];

  buildInputs = [automake autoconf libtool];

  meta = {
    homepage = http://podgorny.cz/uptimed/;
  };
}