2008-12-13 00:02:11 +01:00
|
|
|
{ fetchurl, stdenv, pkgconfig, libdaemon, dbus, perl, perlXMLParser
|
|
|
|
, expat, gettext, intltool, glib, gtk, qt4 ? null, lib
|
2011-02-11 16:56:29 +01:00
|
|
|
, qt4Support ? false
|
|
|
|
, withLibdnsCompat ? false }:
|
2008-02-18 21:48:36 +01:00
|
|
|
|
2008-03-06 17:42:34 +01:00
|
|
|
assert qt4Support -> qt4 != null;
|
|
|
|
|
2008-02-18 21:48:36 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2010-10-05 17:15:49 +02:00
|
|
|
name = "avahi-0.6.28";
|
|
|
|
|
2008-02-18 21:48:36 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/download/${name}.tar.gz";
|
2010-10-05 17:15:49 +02:00
|
|
|
sha256 = "14gw611d3srn2r18a6g4y04r571w3l4lihiiaffryar1i2n0mn50";
|
2008-02-18 21:48:36 +01:00
|
|
|
};
|
|
|
|
|
2010-05-09 00:24:39 +02:00
|
|
|
patches = [ ./no-mkdir-localstatedir.patch ];
|
|
|
|
|
2008-12-13 00:02:11 +01:00
|
|
|
buildInputs = [
|
|
|
|
pkgconfig libdaemon dbus perl perlXMLParser glib expat
|
|
|
|
gettext intltool
|
|
|
|
]
|
2010-07-08 15:25:52 +02:00
|
|
|
++ (lib.optional qt4Support qt4);
|
2008-02-18 21:48:36 +01:00
|
|
|
|
2010-05-09 00:24:39 +02:00
|
|
|
configureFlags =
|
2010-07-13 18:32:22 +02:00
|
|
|
[ "--disable-qt3" "--disable-gdbm" "--disable-mono"
|
|
|
|
"--disable-gtk" "--disable-gtk3"
|
|
|
|
"--${if qt4Support then "enable" else "disable"}-qt4"
|
|
|
|
"--disable-python"
|
2010-05-09 00:24:39 +02:00
|
|
|
"--with-distro=none" "--localstatedir=/var"
|
2011-02-11 16:56:29 +01:00
|
|
|
] ++ stdenv.lib.optional withLibdnsCompat "--enable-compat-libdns_sd";
|
2008-02-18 21:48:36 +01:00
|
|
|
|
|
|
|
meta = {
|
2008-03-20 15:35:03 +01:00
|
|
|
description = "Avahi, an mDNS/DNS-SD implementation";
|
|
|
|
longDescription = ''
|
|
|
|
Avahi is a system which facilitates service discovery on a local
|
|
|
|
network. It is an implementation of the mDNS (for "Multicast
|
|
|
|
DNS") and DNS-SD (for "DNS-Based Service Discovery")
|
|
|
|
protocols.
|
|
|
|
'';
|
|
|
|
|
2008-02-18 21:48:36 +01:00
|
|
|
homepage = http://avahi.org;
|
2008-03-06 17:42:34 +01:00
|
|
|
license = "LGPLv2+";
|
2010-05-09 00:24:39 +02:00
|
|
|
|
2011-01-05 10:46:50 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux; # arbitrary choice
|
2010-05-09 00:24:39 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
2008-02-18 21:48:36 +01:00
|
|
|
};
|
|
|
|
}
|