mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 03:03:37 +00:00
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,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 ];
|
||||
buildInputs = [
|
||||
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; {
|
||||
|
Loading…
Reference in New Issue
Block a user