GNU Guile 1.9: Add propagated build inputs.

svn path=/nixpkgs/trunk/; revision=24372
This commit is contained in:
Ludovic Courtès 2010-10-19 22:23:06 +00:00
parent f1af21e633
commit 01134e698f

View file

@ -18,7 +18,13 @@ rec {
[ makeWrapper gawk readline libtool libunistring
libffi pkgconfig
];
propagatedBuildInputs = [ gmp boehmgc ];
propagatedBuildInputs = [ gmp boehmgc ]
# XXX: These ones aren't normally needed here, but since
# `libguile-2.0.la' reads `-lltdl -lunistring', adding them here will add
# the needed `-L' flags. As for why the `.la' file lacks the `-L' flags,
# see below.
++ [ libtool libunistring ];
patches =
stdenv.lib.optionals (coverageAnalysis != null)