python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / htpdate / default.nix
blobe821163f2298bb4c2ff3f7407c812d8077904186
1 { stdenv, lib, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   version = "1.3.6";
5   pname = "htpdate";
7   src = fetchFromGitHub {
8     owner = "twekkel";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-0NLlBNYTJ+hmQLH/UYwIOIbq3G1sDo/A03xFHsXdzig=";
12   };
14   makeFlags = [
15     "prefix=$(out)"
16   ];
18   meta = with lib; {
19     description = "Utility to fetch time and set the system clock over HTTP";
20     homepage = "https://github.com/twekkel/htpdate";
21     platforms = platforms.linux;
22     license = licenses.gpl2Plus;
23     maintainers = with maintainers; [ julienmalka ];
24   };