forked from mirrors/nixpkgs
Guile 1.9: Propagate `pkg-config'.
svn path=/nixpkgs/trunk/; revision=17359
This commit is contained in:
parent
47828714e4
commit
cdd0317b9a
|
@ -8,8 +8,14 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "10q0k4884b68nba272bg1ym4djpvq35r9m8xw444mrh1jqfz9gsj";
|
sha256 = "10q0k4884b68nba272bg1ym4djpvq35r9m8xw444mrh1jqfz9gsj";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ makeWrapper gawk readline libtool libunistring pkgconfig ];
|
buildInputs = [ makeWrapper gawk readline libtool libunistring ];
|
||||||
propagatedBuildInputs = [ gmp boehmgc ];
|
propagatedBuildInputs = [
|
||||||
|
/* XXX: Temporary Hack so that guile-config(1) gets to see `pkg-config',
|
||||||
|
until this is fixed upstream. */
|
||||||
|
pkgconfig
|
||||||
|
|
||||||
|
gmp boehmgc
|
||||||
|
];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
wrapProgram $out/bin/guile-snarf --prefix PATH : "${gawk}/bin"
|
wrapProgram $out/bin/guile-snarf --prefix PATH : "${gawk}/bin"
|
||||||
|
|
Loading…
Reference in a new issue