summary refs log tree commit diff
path: root/pkgs/development/libraries/kerberos/krb5.nix
blob: 41c570ee554ec06a030413d8bfd65a6625365a6b (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
{ stdenv, fetchurl, pkgconfig, perl, ncurses, yacc, openssl, openldap, bootstrap_cmds }:

let
  pname = "krb5";
  version = "1.13.1";
  name = "${pname}-${version}";
  webpage = http://web.mit.edu/kerberos/;
in

stdenv.mkDerivation (rec {
  inherit name;

  src = fetchurl {
    url = "${webpage}dist/krb5/1.13/${name}-signed.tar";
    sha256 = "0gk6jvr64rf6l4xcyxn8i3fr5d1j7dhqvwyv3vw2qdkzz7yjkxjd";
  };

  buildInputs = [ pkgconfig perl ncurses yacc openssl openldap ]
    # Provides the mig command used by the build scripts
    ++ stdenv.lib.optional stdenv.isDarwin bootstrap_cmds ;

  unpackPhase = ''
    tar -xf $src
    tar -xzf ${name}.tar.gz
    cd ${name}/src
  '';

  configureFlags = [ "--with-tcl=no" ];

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "MIT Kerberos 5";
    homepage = webpage;
    license = "MPL";
    platforms = platforms.unix;
    maintainers = with maintainers; [ wkennington ];
  };

  passthru.implementation = "krb5";
})