From 813f26af958c86b219e4547f7121c2f8eab06775 Mon Sep 17 00:00:00 2001 From: Armijn Hemel Date: Thu, 16 Aug 2007 23:14:52 +0000 Subject: [PATCH] move some buildInputs to propagatedBuildInputs, since these are also used by some external Pidgin plugins svn path=/nixpkgs/trunk/; revision=9145 --- .../networking/instant-messengers/pidgin/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/pidgin/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/default.nix index 85624004b91..bcccb2c5a7c 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/default.nix @@ -25,11 +25,16 @@ stdenv.mkDerivation { inherit nss ncurses; buildInputs = [ - pkgconfig gtk gtkspell aspell - GStreamer startupnotification gettext - perl perlXMLParser libxml2 openssl nss + gtkspell aspell + GStreamer startupnotification + libxml2 openssl nss libXScrnSaver ncurses ]; + + propagatedBuildInputs = [ + pkgconfig gtk perl perlXMLParser gettext + ]; + configureFlags="--with-nspr-includes=${nss}/include/nspr --with-nspr-libs=${nss}/lib --with-nss-includes=${nss}/include/nss --with-nss-libs=${nss}/lib --with-ncurses-headers=${ncurses}/include"; meta = { description = "Pidgin IM - XMPP(Jabber), AIM/ICQ, IRC, SIP etc client.";