2017-10-14 19:47:13 +00:00
|
|
|
{ stdenv, fetchurl, perl, perlPackages, finger_bsd, makeWrapper
|
|
|
|
, abook ? null
|
|
|
|
, gnupg ? null
|
|
|
|
, goobook ? null
|
|
|
|
, khard ? null
|
2018-01-20 07:55:00 +00:00
|
|
|
, mu ? null
|
2017-10-14 19:47:13 +00:00
|
|
|
}:
|
2013-08-27 07:28:36 +00:00
|
|
|
|
|
|
|
let
|
2019-01-07 22:42:09 +00:00
|
|
|
version = "0.48";
|
2013-08-27 07:28:36 +00:00
|
|
|
in
|
2017-10-14 19:47:13 +00:00
|
|
|
with stdenv.lib;
|
|
|
|
with perlPackages;
|
2013-08-27 07:28:36 +00:00
|
|
|
stdenv.mkDerivation {
|
2013-08-28 07:56:08 +00:00
|
|
|
name = "lbdb-${version}";
|
|
|
|
src = fetchurl {
|
2018-01-20 07:55:00 +00:00
|
|
|
url = "http://www.spinnaker.de/lbdb/download/lbdb_${version}.tar.gz";
|
2019-01-07 22:42:09 +00:00
|
|
|
sha256 = "1j1ac0nnf6j5mwb6rh61ax9aidj4lvv2vrj5b1p71d4d1m3g180z";
|
2013-08-28 07:56:08 +00:00
|
|
|
};
|
2013-08-27 07:28:36 +00:00
|
|
|
|
2018-07-22 02:03:24 +00:00
|
|
|
buildInputs = [ goobook makeWrapper perl ConvertASN1 perlldap AuthenSASL ]
|
2017-10-14 19:47:13 +00:00
|
|
|
++ optional (!stdenv.isDarwin) finger_bsd
|
|
|
|
++ optional (abook != null) abook
|
|
|
|
++ optional (gnupg != null) gnupg
|
|
|
|
++ optional (goobook != null) goobook
|
2018-01-20 07:55:00 +00:00
|
|
|
++ optional (khard != null) khard
|
|
|
|
++ optional (mu != null) mu;
|
2017-10-14 19:47:13 +00:00
|
|
|
configureFlags = [ ]
|
|
|
|
++ optional (abook != null) "--with-abook"
|
|
|
|
++ optional (gnupg != null) "--with-gpg"
|
|
|
|
++ optional (goobook != null) "--with-goobook"
|
2018-01-20 07:55:00 +00:00
|
|
|
++ optional (khard != null) "--with-khard"
|
|
|
|
++ optional (mu != null) "--with-mu";
|
2017-10-14 19:47:13 +00:00
|
|
|
|
|
|
|
patches = [ ./add-methods-to-rc.patch ];
|
|
|
|
postFixup = "wrapProgram $out/lib/mutt_ldap_query --prefix PERL5LIB : "
|
|
|
|
+ "${AuthenSASL}/${perl.libPrefix}"
|
|
|
|
+ ":${ConvertASN1}/${perl.libPrefix}"
|
2018-07-22 02:03:24 +00:00
|
|
|
+ ":${perlldap}/${perl.libPrefix}";
|
2013-08-27 07:28:36 +00:00
|
|
|
|
2013-08-28 07:56:08 +00:00
|
|
|
meta = {
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://www.spinnaker.de/lbdb/;
|
2017-11-12 15:03:06 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.all;
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "The Little Brother's Database";
|
2017-11-12 15:03:06 +00:00
|
|
|
maintainers = [ maintainers.kaiha ];
|
2013-08-28 07:56:08 +00:00
|
|
|
};
|
2013-08-27 07:28:36 +00:00
|
|
|
}
|