languagemachines: fix darwin build

This commit is contained in:
Badi Abdul-Wahid
2018-03-11 01:54:46 -05:00
parent 3117ae6c4f
commit ff0f112527
6 changed files with 13 additions and 13 deletions
@@ -1,6 +1,6 @@
{ stdenv, fetchurl
, automake, autoconf, libtool, pkgconfig, autoconf-archive
, libxml2
, libxml2, bzip2, libtar
, languageMachines
}:
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
src = fetchurl { inherit (release) url sha256;
name = "timbl-${release.version}.tar.gz"; };
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ automake autoconf libtool autoconf-archive
buildInputs = [ automake autoconf bzip2 libtar libtool autoconf-archive
libxml2
languageMachines.ticcutils
];