summary refs log tree commit diff
path: root/pkgs/tools/networking/htpdate/default.nix
blob: 47163b94dc52f6594cf329871e018e10e0912834 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  version = "1.2.0";
  name = "htpdate-${version}";

  src = fetchurl {
    url = "http://www.vervest.org/htp/archive/c/${name}.tar.xz";
    sha256 = "00xwppq3aj951m0srjvxmr17kiaaflyjmbfkvpnfs3jvqhzczci2";
  };

  makeFlags = [
    "INSTALL=install"
    "STRIP=${stdenv.cc.bintools.prefix}strip"
    "prefix=$(out)"
  ];

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "Utility to fetch time and set the system clock over HTTP";
    homepage = http://www.vervest.org/htp/;
    platforms = platforms.unix;
    license = licenses.gpl2Plus;
  };
}