summary refs log tree commit diff
path: root/pkgs/development/libraries/gnutls-kdh/generic.nix
blob: 6079387fc7207dcbc51ca66e46cc90a7189f3b74 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{ config, lib, stdenv, zlib, lzo, libtasn1, nettle, pkgconfig, lzip
, perl, gmp, autogen, libidn, p11-kit, unbound, libiconv
, guileBindings ? config.gnutls.guile or false, guile
, tpmSupport ? true, trousers, nettools, gperftools, gperf, gettext, automake
, yacc, texinfo

# Version dependent args
, version, src, patches ? [], postPatch ? "", nativeBuildInputs ? []
, ...}:

assert guileBindings -> guile != null;
let
  # XXX: Gnulib's `test-select' fails on FreeBSD:
  # http://hydra.nixos.org/build/2962084/nixlog/1/raw .
  doCheck = !stdenv.isFreeBSD && !stdenv.isDarwin && lib.versionAtLeast version "3.4";
in
stdenv.mkDerivation {
  pname = "gnutls-kdh";
  inherit version;

  inherit src patches;

  outputs = [ "bin" "dev" "out" ];

  patchPhase = ''
      # rm -fR ./po
      # substituteInPlace configure "po/Makefile.in" " "
      substituteInPlace doc/manpages/Makefile.in  --replace "gnutls_cipher_list.3" " "
      substituteInPlace doc/manpages/Makefile.in  --replace "gnutls_cipher_self_test.3" " "
      substituteInPlace doc/manpages/Makefile.in  --replace "gnutls_digest_self_test.3" " "
      substituteInPlace doc/manpages/Makefile.in  --replace "gnutls_mac_self_test.3" " "
      substituteInPlace doc/manpages/Makefile.in  --replace "gnutls_pk_self_test.3" " "
      printf "all: ;\n\ninstall: ;" > "po/Makefile.in"
      printf "all: ;\n\ninstall: ;" > "po/Makefile.in.in"
      '';

  postPatch = lib.optionalString (lib.versionAtLeast version "3.4") ''
    sed '2iecho "name constraints tests skipped due to datefudge problems"\nexit 0' \
      -i tests/cert-tests/name-constraints
  '' + postPatch;

  preConfigure = "patchShebangs .";
  configureFlags =
    lib.optional stdenv.isLinux "--with-default-trust-store-file=/etc/ssl/certs/ca-certificates.crt"
  ++ [
    "--disable-dependency-tracking"
    "--enable-fast-install"
  ] ++ lib.optional guileBindings
    [ "--enable-guile" "--with-guile-site-dir=\${out}/share/guile/site" ];

  # Build of the Guile bindings is not parallel-safe.  See
  # <https://github.com/arpa2/gnutls-kdh/commit/330995a920037b6030ec0282b51dde3f8b493cad>
  # for the actual fix.  Also an apparent race in the generation of
  # systemkey-args.h.
  enableParallelBuilding = false;

  buildInputs = [ lzo lzip nettle libtasn1 libidn p11-kit zlib gmp
  autogen gperftools gperf gettext automake yacc texinfo ]
    ++ lib.optional doCheck nettools
    ++ lib.optional (stdenv.isFreeBSD || stdenv.isDarwin) libiconv
    ++ lib.optional (tpmSupport && stdenv.isLinux) trousers
    ++ [ unbound ]
    ++ lib.optional guileBindings guile;

  nativeBuildInputs = [ perl pkgconfig ] ++ nativeBuildInputs;

  #inherit doCheck;
  doCheck = false;

  # Fixup broken libtool and pkgconfig files
  preFixup = lib.optionalString (!stdenv.isDarwin) ''
    sed ${lib.optionalString tpmSupport "-e 's,-ltspi,-L${trousers}/lib -ltspi,'"} \
        -e 's,-lz,-L${zlib.out}/lib -lz,' \
        -e 's,-L${gmp.dev}/lib,-L${gmp.out}/lib,' \
        -e 's,-lgmp,-L${gmp.out}/lib -lgmp,' \
        -i $out/lib/*.la "$dev/lib/pkgconfig/gnutls.pc"
  '';

  meta = with lib; {
    description = "GnuTLS with additional TLS-KDH ciphers: Kerberos + Diffie-Hellman";

    longDescription = ''
       The ARPA2 project aims to add security. This is an enhanced
       version of GnuTLS,  a project that aims to develop a library which
       provides a secure layer, over a reliable transport
       layer. It adds TLS-KDH ciphers: Kerberos + Diffie-Hellman.
    '';

    homepage = https://github.com/arpa2/gnutls-kdh;
    license = licenses.lgpl21Plus;
    maintainers = with maintainers; [ leenaars ];
    platforms = platforms.all;
    broken = true;
  };
}