mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 14:11:36 +00:00
neomutt: fix missing libidn
This commit is contained in:
parent
14f2e0cd36
commit
a2444a2831
|
@ -42,6 +42,11 @@ stdenv.mkDerivation rec {
|
|||
"ac_cv_path_SENDMAIL=sendmail"
|
||||
];
|
||||
|
||||
# Fix missing libidn in mutt;
|
||||
# this fix is ugly since it links all binaries in mutt against libidn
|
||||
# like pgpring, pgpewrap, ...
|
||||
NIX_LDFLAGS = "-lidn";
|
||||
|
||||
configureScript = "./prepare";
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
|
Loading…
Reference in a new issue