summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorArmijn Hemel <armijn@gpl-violations.org>2007-08-16 23:14:52 +0000
committerArmijn Hemel <armijn@gpl-violations.org>2007-08-16 23:14:52 +0000
commit813f26af958c86b219e4547f7121c2f8eab06775 (patch)
tree11b078d44f97581c84f63667a1e7fb47443757ad /pkgs
parent38871bf455bb718c42e49d3712ed8aebc8d4de5c (diff)
downloadnixlib-813f26af958c86b219e4547f7121c2f8eab06775.tar
nixlib-813f26af958c86b219e4547f7121c2f8eab06775.tar.gz
nixlib-813f26af958c86b219e4547f7121c2f8eab06775.tar.bz2
nixlib-813f26af958c86b219e4547f7121c2f8eab06775.tar.lz
nixlib-813f26af958c86b219e4547f7121c2f8eab06775.tar.xz
nixlib-813f26af958c86b219e4547f7121c2f8eab06775.tar.zst
nixlib-813f26af958c86b219e4547f7121c2f8eab06775.zip
move some buildInputs to propagatedBuildInputs, since these are also used by some external Pidgin plugins
svn path=/nixpkgs/trunk/; revision=9145
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/instant-messengers/pidgin/default.nix11
1 files 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 85624004b91b..bcccb2c5a7c9 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.";