Merge pull request #67207 from kisik21/freetalk-cross-compile-fixes

freetalk: fixed cross-compilation
This commit is contained in:
Marek Mahut 2019-08-22 21:12:22 +02:00 committed by GitHub
commit e518635127
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 7 deletions

View File

@ -1,9 +1,7 @@
{ stdenv, fetchFromGitHub
, guile, pkgconfig, glib, loudmouth, gmp, libidn, readline, libtool
, libunwind, ncurses, curl, jansson, texinfo
, automake, autoconf
}:
, automake, autoconf }:
stdenv.mkDerivation rec {
name = "freetalk-${version}";
version = "4.1";
@ -19,11 +17,10 @@ stdenv.mkDerivation rec {
./autogen.sh
'';
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkgconfig texinfo autoconf automake ];
buildInputs = [
guile glib loudmouth gmp libidn readline libtool
libunwind ncurses curl jansson texinfo
autoconf automake
libunwind ncurses curl jansson
];
meta = with stdenv.lib; {