freetalk: fixed cross-compilation
Some build-time and run-time dependencies were mixed. I put them in a right place!
This commit is contained in:
parent
855be67358
commit
bed7172639
1 changed files with 4 additions and 7 deletions
|
@ -1,9 +1,7 @@
|
||||||
{ stdenv, fetchFromGitHub
|
{ stdenv, fetchFromGitHub
|
||||||
, guile, pkgconfig, glib, loudmouth, gmp, libidn, readline, libtool
|
, guile, pkgconfig, glib, loudmouth, gmp, libidn, readline, libtool
|
||||||
, libunwind, ncurses, curl, jansson, texinfo
|
, libunwind, ncurses, curl, jansson, texinfo
|
||||||
, automake, autoconf
|
, automake, autoconf }:
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "freetalk-${version}";
|
name = "freetalk-${version}";
|
||||||
version = "4.1";
|
version = "4.1";
|
||||||
|
@ -19,11 +17,10 @@ stdenv.mkDerivation rec {
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig texinfo autoconf automake ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
guile glib loudmouth gmp libidn readline libtool
|
guile glib loudmouth gmp libidn readline libtool
|
||||||
libunwind ncurses curl jansson texinfo
|
libunwind ncurses curl jansson
|
||||||
autoconf automake
|
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
Loading…
Reference in a new issue