3
0
Fork 0
forked from mirrors/nixpkgs

* Simplify the avahi call.

svn path=/nixpkgs/branches/x-updates/; revision=26158
This commit is contained in:
Eelco Dolstra 2011-03-04 13:04:08 +00:00
parent 69b8bc9ed7
commit 3a4b95e503

View file

@ -394,16 +394,9 @@ let
autojump = callPackage ../tools/misc/autojump { };
avahi =
let qt4Support = getConfig [ "avahi" "qt4Support" ] false;
in
makeOverridable (import ../development/libraries/avahi) {
inherit stdenv fetchurl pkgconfig libdaemon dbus perl perlXMLParser
expat gettext intltool lib;
inherit (gtkLibs) glib gtk;
inherit qt4Support;
qt4 = if qt4Support then qt4 else null;
};
avahi = callPackage ../development/libraries/avahi {
qt4Support = getConfig [ "avahi" "qt4Support" ] false;
};
axel = callPackage ../tools/networking/axel { };