summary refs log tree commit diff
path: root/pkgs/tools/networking/tlsdate/default.nix
blob: efea10eaa4daa825f768377e9e0d1f2a177f8595 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{ stdenv, fetchFromGitHub, fetchpatch
, autoconf
, automake
, libevent
, libtool
, pkgconfig
, openssl
}:

stdenv.mkDerivation rec {
  version = "0.0.13";
  name = "tlsdate-${version}";

  src = fetchFromGitHub {
    owner = "ioerror";
    repo = "tlsdate";
    rev = name;
    sha256 = "0w3v63qmbhpqlxjsvf4k3zp90k6mdzi8cdpgshan9iphy1f44xgl";
  };

  patches = [
    (fetchpatch {
      name = "tlsdate-no_sslv3.patch";
      url = "https://github.com/ioerror/tlsdate/commit/f9d3cba7536d1679e98172ccbddad32bc9ae490c.patch";
      sha256 = "0prv46vxvb4paxaswmc6ix0kd5sp0552i5msdldnhg9fysbac8s0";
    })
  ];

  buildInputs = [
    autoconf
    automake
    libevent
    libtool
    pkgconfig
    openssl
  ];

  preConfigure = ''
    export COMPILE_DATE=0
    ./autogen.sh
  '';

  doCheck = true;

  meta = with stdenv.lib; {
    description = "Secure parasitic rdate replacement";
    homepage = https://github.com/ioerror/tlsdate;
    maintainers = with maintainers; [ tv fpletz ];
    platforms = platforms.allBut platforms.darwin;
  };
}