Skip to content

Commit

Permalink
neomutt: fix missing libidn
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Sep 22, 2017
1 parent 14f2e0c commit a2444a2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkgs/applications/networking/mailreaders/neomutt/default.nix
Expand Up @@ -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";

This comment has been minimized.

Copy link
@Mic92

Mic92 Sep 22, 2017

Author Member

@andir maybe you can figure out a better fix here. But at least this makes neomutt usable again.

This comment has been minimized.

Copy link
@andir

andir via email Sep 22, 2017

Member

configureScript = "./prepare";

enableParallelBuilding = true;
Expand Down

0 comments on commit a2444a2

Please sign in to comment.