add missing libiconv

This commit is contained in:
Clément DOUIN
2024-11-25 08:09:35 +01:00
parent f04362572f
commit 73fbb8ebf6
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -38,6 +38,7 @@ let
inherit lib hostPlatform rustPlatform;
fetchFromGitHub = pkgs.fetchFromGitHub;
stdenv = pkgs.stdenv;
libiconv = pkgs.libiconv;
darwin = pkgs.darwin;
installShellFiles = false;
installShellCompletions = false;
+2
View File
@@ -8,6 +8,7 @@
, installShellCompletions ? stdenv.buildPlatform.canExecute stdenv.hostPlatform
, installManPages ? stdenv.buildPlatform.canExecute stdenv.hostPlatform
, notmuch
, libiconv
, gpgme
, buildNoDefaultFeatures ? false
, buildFeatures ? [ ]
@@ -33,6 +34,7 @@ rustPlatform.buildRustPackage rec {
cargoTestFlags = [ "--lib" ];
nativeBuildInputs = [ ]
++ lib.optional hostPlatform.isDarwin libiconv
++ lib.optional (installManPages || installShellCompletions) installShellFiles;
buildInputs = [ ]