aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/avahi
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-02-11 15:56:29 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-02-11 15:56:29 +0000
commitcb41a67c476b108883687e623e1c901549cb5cd6 (patch)
tree46c9e37fd2f5969f9a37405aaae3f3976e44fac9 /pkgs/development/libraries/avahi
parentbb1edcae8d22bb23fe631b735ec1eb827d08c8d3 (diff)
Building mumble a bit further.
svn path=/nixpkgs/trunk/; revision=25908
Diffstat (limited to 'pkgs/development/libraries/avahi')
-rw-r--r--pkgs/development/libraries/avahi/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/avahi/default.nix b/pkgs/development/libraries/avahi/default.nix
index 525175c0d83e..709ea3583dc1 100644
--- a/pkgs/development/libraries/avahi/default.nix
+++ b/pkgs/development/libraries/avahi/default.nix
@@ -1,6 +1,7 @@
{ fetchurl, stdenv, pkgconfig, libdaemon, dbus, perl, perlXMLParser
, expat, gettext, intltool, glib, gtk, qt4 ? null, lib
-, qt4Support ? false }:
+, qt4Support ? false
+, withLibdnsCompat ? false }:
assert qt4Support -> qt4 != null;
@@ -26,7 +27,7 @@ stdenv.mkDerivation rec {
"--${if qt4Support then "enable" else "disable"}-qt4"
"--disable-python"
"--with-distro=none" "--localstatedir=/var"
- ];
+ ] ++ stdenv.lib.optional withLibdnsCompat "--enable-compat-libdns_sd";
meta = {
description = "Avahi, an mDNS/DNS-SD implementation";