From cdd0317b9ac75373de4fb63c664041f88147ab27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 23 Sep 2009 09:13:51 +0000 Subject: [PATCH] Guile 1.9: Propagate `pkg-config'. svn path=/nixpkgs/trunk/; revision=17359 --- pkgs/development/interpreters/guile/1.9.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/guile/1.9.nix b/pkgs/development/interpreters/guile/1.9.nix index 963239f40dad..b902a69bfdaa 100644 --- a/pkgs/development/interpreters/guile/1.9.nix +++ b/pkgs/development/interpreters/guile/1.9.nix @@ -8,8 +8,14 @@ stdenv.mkDerivation rec { sha256 = "10q0k4884b68nba272bg1ym4djpvq35r9m8xw444mrh1jqfz9gsj"; }; - buildInputs = [ makeWrapper gawk readline libtool libunistring pkgconfig ]; - propagatedBuildInputs = [ gmp boehmgc ]; + buildInputs = [ makeWrapper gawk readline libtool libunistring ]; + propagatedBuildInputs = [ + /* XXX: Temporary Hack so that guile-config(1) gets to see `pkg-config', + until this is fixed upstream. */ + pkgconfig + + gmp boehmgc + ]; postInstall = '' wrapProgram $out/bin/guile-snarf --prefix PATH : "${gawk}/bin"