meli: include notmuch in LD_LIBRARY_PATH by default

This commit is contained in:
Kerstin Humm 2025-07-12 16:54:12 +02:00
parent 7165b9da37
commit e23883f017
No known key found for this signature in database
GPG Key ID: 40293358C7B9326B

View File

@ -21,6 +21,9 @@
# runtime deps
gpgme,
gnum4,
withNotmuch ? true,
notmuch,
}:
rustPlatform.buildRustPackage rec {
@ -66,7 +69,9 @@ rustPlatform.buildRustPackage rec {
installManPage meli/docs/*.{1,5,7}
wrapProgram $out/bin/meli \
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ gpgme ]} \
--prefix LD_LIBRARY_PATH : ${
lib.makeLibraryPath ([ gpgme ] ++ lib.optional withNotmuch notmuch)
} \
--prefix PATH : ${lib.makeBinPath [ gnum4 ]}
'';