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.
This commit is contained in:
parent
d528d7c8d7
commit
29fae13a94
1 changed files with 1 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue