linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / htpdate / default.nix
blobcd2b3a18d4215e26ab6c050a383ac97c20ea87c8
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   version = "1.2.2";
5   pname = "htpdate";
7   src = fetchurl {
8     url = "http://www.vervest.org/htp/archive/c/${pname}-${version}.tar.xz";
9     sha256 = "0mgr350qwgzrdrwkb9kaj6z7l6hn6a2pwh7sacqvnal5fyc9a7sz";
10   };
12   makeFlags = [
13     "INSTALL=install"
14     "STRIP=${stdenv.cc.bintools.targetPrefix}strip"
15     "prefix=$(out)"
16   ];
18   enableParallelBuilding = true;
20   meta = with lib; {
21     description = "Utility to fetch time and set the system clock over HTTP";
22     homepage = "http://www.vervest.org/htp/";
23     platforms = platforms.linux;
24     license = licenses.gpl2Plus;
25   };