nixpkgs/pkgs/development/libraries/kerberos/krb5.nix

71 lines
1.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, perl, yacc, bootstrap_cmds
, openssl, openldap, libedit
# Extra Arguments
, type ? ""
}:
let
libOnly = type == "lib";
2015-05-28 07:53:47 +00:00
in
with stdenv.lib;
stdenv.mkDerivation rec {
name = "${type}krb5-${version}";
2016-12-20 14:59:51 +00:00
majorVersion = "1.15";
version = "${majorVersion}.2";
src = fetchurl {
2016-12-20 14:59:51 +00:00
url = "${meta.homepage}dist/krb5/${majorVersion}/krb5-${version}.tar.gz";
sha256 = "0zn8s7anb10hw3nzwjz7vg10fgmmgvwnibn2zrn3nppjxn9f6f8n";
};
2017-12-17 13:51:32 +00:00
outputs = [ "out" "dev" ];
configureFlags = [ "--with-tcl=no" "--localstatedir=/var/lib"]
++ optional stdenv.isFreeBSD ''WARN_CFLAGS=""'';
nativeBuildInputs = [ pkgconfig perl ]
++ optional (!libOnly) yacc
# Provides the mig command used by the build scripts
++ optional (stdenv.isDarwin && !libOnly) bootstrap_cmds;
buildInputs = [ openssl ]
++ optionals (!libOnly) [ openldap libedit ];
2016-01-02 10:44:38 +00:00
preConfigure = "cd ./src";
buildPhase = optionalString libOnly ''
2017-12-17 13:51:32 +00:00
MAKE="make -j $NIX_BUILD_CORES -l $NIX_BUILD_CORES"
(cd util; $MAKE)
(cd include; $MAKE)
(cd lib; $MAKE)
(cd build-tools; $MAKE)
'';
installPhase = optionalString libOnly ''
2017-12-17 13:51:32 +00:00
mkdir -p "$out"/{bin,sbin,lib/pkgconfig,share/{et,man/man1}} \
"$dev"/include/{gssapi,gssrpc,kadm5,krb5}
(cd util; $MAKE install)
(cd include; $MAKE install)
(cd lib; $MAKE install)
(cd build-tools; $MAKE install)
${postInstall}
'';
# not via outputBin, due to reference from libkrb5.so
postInstall = ''
moveToOutput bin "$dev"
'';
2013-03-20 22:36:17 +00:00
enableParallelBuilding = true;
2015-06-27 05:41:58 +00:00
meta = {
2013-03-20 22:36:17 +00:00
description = "MIT Kerberos 5";
homepage = http://web.mit.edu/kerberos/;
license = licenses.mit;
platforms = platforms.unix;
2014-12-30 09:03:29 +00:00
maintainers = with maintainers; [ wkennington ];
};
2015-03-05 00:48:20 +00:00
passthru.implementation = "krb5";
}