summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/mailreaders
diff options
context:
space:
mode:
authorJustin Humm <justin.humm@posteo.de>2020-11-25 10:09:05 +0100
committererictapen <justin.humm@posteo.de>2020-11-25 11:10:50 +0100
commitd75276a28e60bd3105669eb0da1a13e418c518bd (patch)
tree9f6d6bad665fc31ada4e8bf57b92bf3c4beec4b0 /pkgs/applications/networking/mailreaders
parent2ea6e83af170edbfad0ce7e28f85c1f7275fb7cf (diff)
meli: fix runtime error with libnotmuch5
> libnotmuch5 was not found in your system. Make sure it is installed and in the library paths. > notmuch is not a valid mail backend
Diffstat (limited to 'pkgs/applications/networking/mailreaders')
-rw-r--r--pkgs/applications/networking/mailreaders/meli/default.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/pkgs/applications/networking/mailreaders/meli/default.nix b/pkgs/applications/networking/mailreaders/meli/default.nix
index 1abaeb6f1656..4f3a1ef3901f 100644
--- a/pkgs/applications/networking/mailreaders/meli/default.nix
+++ b/pkgs/applications/networking/mailreaders/meli/default.nix
@@ -8,6 +8,7 @@
, sqlite
, file
, gzip
+, makeWrapper
, notmuch
# Build with support for notmuch backend
, withNotmuch ? true
@@ -27,7 +28,7 @@ rustPlatform.buildRustPackage rec {
cargoBuildFlags = lib.optional withNotmuch "--features=notmuch";
- nativeBuildInputs = [ pkgconfig gzip ];
+ nativeBuildInputs = [ pkgconfig gzip makeWrapper ];
buildInputs = [ openssl dbus sqlite ] ++ lib.optional withNotmuch notmuch;
@@ -39,6 +40,13 @@ rustPlatform.buildRustPackage rec {
mkdir -p $out/share/man/man5
gzip < docs/meli.conf.5 > $out/share/man/man5/meli.conf.5.gz
gzip < docs/meli-themes.5 > $out/share/man/man5/meli-themes.5.gz
+ '' + lib.optionalString withNotmuch ''
+ # Fixes this runtime error when meli is started with notmuch configured:
+ # $ meli
+ # libnotmuch5 was not found in your system. Make sure it is installed and
+ # in the library paths.
+ # notmuch is not a valid mail backend
+ wrapProgram $out/bin/meli --set LD_LIBRARY_PATH ${notmuch}/lib
'';
meta = with stdenv.lib; {