{ stdenv, fetchurl, pkgconfig, autoconf, automake, libtool , expat, systemd, glib, dbus_glib, python , libX11, libICE, libSM, useX11 ? stdenv.isLinux }: let version = "1.6.12"; # 1.7.* isn't recommended, even for gnome 3.8 sha256 = "14pfh2ksn4srfry752kf1jy3c61hklcs9fx2xglw2ifhsszplypn"; inherit (stdenv) lib; buildInputsX = lib.optionals useX11 [ libX11 libICE libSM ]; # also other parts than "libs" need this statically linked lib makeInternalLib = "(cd dbus && make libdbus-internal.la)"; systemdOrEmpty = lib.optional stdenv.isLinux systemd; # A generic builder for individual parts (subdirs) of D-Bus dbus_drv = name: subdirs: merge: stdenv.mkDerivation (lib.mergeAttrsByFuncDefaultsClean [{ name = "dbus-${name}-${version}"; src = fetchurl { url = "http://dbus.freedesktop.org/releases/dbus/dbus-${version}.tar.gz"; inherit sha256; }; configureFlags = [ "--localstatedir=/var" "--sysconfdir=/etc" "--with-session-socket-dir=/tmp" "--with-systemdsystemunitdir=$(out)/lib/systemd" ]; preConfigure = '' patchShebangs . substituteInPlace tools/Makefile.am --replace 'install-localstatelibDATA:' 'disabled:' autoreconf -fi ''; installFlags = "sysconfdir=$(out)/etc"; doCheck = true; patches = [ ./ignore-missing-includedirs.patch ] ++ lib.optional (stdenv.isSunOS || stdenv.isLinux/*avoid rebuilds*/) ./implement-getgrouplist.patch ++ [ ./ucred-dirty-hack.patch ./no-create-dirs.patch ]; nativeBuildInputs = [ pkgconfig ]; propagatedBuildInputs = [ expat ]; buildInputs = [ autoconf automake libtool ]; # ToDo: optional selinux? # build only the specified subdirs postPatch = "sed '/SUBDIRS/s/=.*/=" + subdirs + "/' -i Makefile.am\n" # use already packaged libdbus instead of trying to build it again + lib.optionalString (name != "libs") '' for mfile in */Makefile.am; do sed 's,\$(top_builddir)/dbus/\(libdbus-[0-9]\),${libs}/lib/\1,g' -i "$mfile" done ''; } merge ]); libs = dbus_drv "libs" "dbus" ({ # Enable X11 autolaunch support in libdbus. This doesn't actually depend on X11 # (it just execs dbus-launch in dbus.tools), contrary to what the configure script demands. NIX_CFLAGS_COMPILE = "-DDBUS_ENABLE_X11_AUTOLAUNCH=1"; } // stdenv.lib.optionalAttrs (systemdOrEmpty != []) { buildInputs = [ systemd.headers ]; patches = [ ./systemd.patch ]; # bypass systemd detection }); in rec { # This package has been split because most applications only need dbus.lib # which serves as an interface to a *system-wide* daemon, # see e.g. http://en.wikipedia.org/wiki/D-Bus#Architecture . # Also some circular dependencies get split by this (like with systemd). inherit libs; tools = dbus_drv "tools" "tools" { configureFlags = [ "--with-dbus-daemondir=${daemon}/bin" ]; buildInputs = buildInputsX ++ systemdOrEmpty ++ [ libs daemon dbus_glib ]; NIX_CFLAGS_LINK = "-Wl,--as-needed -ldbus-1"; meta.platforms = stdenv.lib.platforms.all; }; daemon = dbus_drv "daemon" "bus" { preBuild = makeInternalLib; buildInputs = systemdOrEmpty; }; # Some of the tests don't work yet; in fact, @vcunat tried several packages # containing dbus testing, and all of them have some test failure. tests = dbus_drv "tests" "test" { preBuild = makeInternalLib; buildInputs = buildInputsX ++ systemdOrEmpty ++ [ libs tools daemon dbus_glib python ]; NIX_CFLAGS_LINK = "-Wl,--as-needed -ldbus-1"; }; docs = dbus_drv "docs" "doc" { postInstall = ''rm -r "$out/lib"''; }; }