79d8353b5e
The old way depended on old list-of-strings `meta.platforms`, and was not good for cross.
82 lines
2.6 KiB
Nix
82 lines
2.6 KiB
Nix
{ stdenv, fetchurl, pkgconfig
|
|
, libgcrypt, libgpgerror, libtasn1
|
|
|
|
# Optional Dependencies
|
|
, pam ? null, libidn ? null, gnutls ? null
|
|
}:
|
|
|
|
let
|
|
mkFlag = trueStr: falseStr: cond: name: val: "--"
|
|
+ (if cond then trueStr else falseStr)
|
|
+ name
|
|
+ stdenv.lib.optionalString (val != null && cond != false) "=${val}";
|
|
mkEnable = mkFlag "enable-" "disable-";
|
|
mkWith = mkFlag "with-" "without-";
|
|
mkOther = mkFlag "" "" true;
|
|
|
|
shouldUsePkg = pkg: if pkg != null && pkg.meta.available then pkg else null;
|
|
|
|
optPam = shouldUsePkg pam;
|
|
optLibidn = shouldUsePkg libidn;
|
|
optGnutls = shouldUsePkg gnutls;
|
|
in
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
name = "shishi-1.0.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/shishi/${name}.tar.gz";
|
|
sha256 = "032qf72cpjdfffq1yq54gz3ahgqf2ijca4vl31sfabmjzq9q370d";
|
|
};
|
|
|
|
# Fixes support for gcrypt 1.6+
|
|
patches = [ ./gcrypt-fix.patch ./freebsd-unistd.patch ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libgcrypt libgpgerror libtasn1 optPam optLibidn optGnutls ];
|
|
|
|
configureFlags = [
|
|
(mkOther "sysconfdir" "/etc")
|
|
(mkOther "localstatedir" "/var")
|
|
(mkEnable true "libgcrypt" null)
|
|
(mkEnable (optPam != null) "pam" null)
|
|
(mkEnable true "ipv6" null)
|
|
(mkWith (optLibidn != null) "stringprep" null)
|
|
(mkEnable (optGnutls != null) "starttls" null)
|
|
(mkEnable true "des" null)
|
|
(mkEnable true "3des" null)
|
|
(mkEnable true "aes" null)
|
|
(mkEnable true "md" null)
|
|
(mkEnable false "null" null)
|
|
(mkEnable true "arcfour" null)
|
|
];
|
|
|
|
NIX_CFLAGS_COMPILE
|
|
= optionalString stdenv.isDarwin "-DBIND_8_COMPAT";
|
|
|
|
doCheck = true;
|
|
|
|
installFlags = [ "sysconfdir=\${out}/etc" ];
|
|
|
|
# Fix *.la files
|
|
postInstall = ''
|
|
sed -i $out/lib/libshi{sa,shi}.la \
|
|
'' + optionalString (optLibidn != null) ''
|
|
-e 's,\(-lidn\),-L${optLibidn.out}/lib \1,' \
|
|
'' + optionalString (optGnutls != null) ''
|
|
-e 's,\(-lgnutls\),-L${optGnutls.out}/lib \1,' \
|
|
'' + ''
|
|
-e 's,\(-lgcrypt\),-L${libgcrypt.out}/lib \1,' \
|
|
-e 's,\(-lgpg-error\),-L${libgpgerror.out}/lib \1,' \
|
|
-e 's,\(-ltasn1\),-L${libtasn1.out}/lib \1,'
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.gnu.org/software/shishi/;
|
|
description = "An implementation of the Kerberos 5 network security system";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ bjg lovek323 wkennington ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|