mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
libdatrie: 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
79a606608e
commit
8d2255d654
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
installShellFiles
|
||||
];
|
||||
|
||||
buildInputs = lib.optional stdenv.isDarwin libiconv;
|
||||
buildInputs = [ libiconv ];
|
||||
|
||||
preAutoreconf = let
|
||||
reports = "https://github.com/tlwg/libdatrie/issues";
|
||||
|
Loading…
Reference in New Issue
Block a user