summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-01-17 23:24:27 +0000
committerAlyssa Ross <hi@alyssa.is>2023-02-05 11:09:03 +0000
commit29fae13a946a53062e96ec43117118bd66f00808 (patch)
treec1fd5ea3f6c89e40ae889d5273d97d3dff86e56a
parentd528d7c8d74b8a30a4a5c508f4349e4b4241797a (diff)
mblaze: depend on libiconv unconditionally
libiconv is already defined per-platform. The actual libiconv library won't be built on platforms like Linux where it doesn't need to be, so there's no need to maintain a separate platform list here. Required to build for FreeBSD.
-rw-r--r--pkgs/applications/networking/mailreaders/mblaze/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/mailreaders/mblaze/default.nix b/pkgs/applications/networking/mailreaders/mblaze/default.nix
index de82535cd560..fb852f76045d 100644
--- a/pkgs/applications/networking/mailreaders/mblaze/default.nix
+++ b/pkgs/applications/networking/mailreaders/mblaze/default.nix
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
version = "1.2";
nativeBuildInputs = [ installShellFiles makeWrapper ];
- buildInputs = [ ruby ] ++ lib.optionals stdenv.isDarwin [ libiconv ];
+ buildInputs = [ libiconv ruby ];
src = fetchFromGitHub {
owner = "leahneukirchen";