2016-05-31 14:29:53 +01:00
|
|
|
{ stdenv, lib, fetchurl, pkgconfig, expat, systemd
|
2015-03-19 00:49:31 +00:00
|
|
|
, libX11 ? null, libICE ? null, libSM ? null, x11Support ? (stdenv.isLinux || stdenv.isDarwin) }:
|
|
|
|
|
|
|
|
assert x11Support -> libX11 != null
|
|
|
|
&& libICE != null
|
|
|
|
&& libSM != null;
|
2008-12-15 23:45:52 +00:00
|
|
|
|
2008-02-02 20:41:06 +00:00
|
|
|
let
|
2017-02-20 20:38:24 +00:00
|
|
|
version = "1.10.16";
|
|
|
|
sha256 = "121kqkjsd3vgf8vca8364xl44qa5086h7qy5zs5f1l78ldpbmc57";
|
2011-08-26 15:57:48 +01:00
|
|
|
|
2017-02-01 20:22:19 +00:00
|
|
|
self = stdenv.mkDerivation {
|
2015-10-13 13:33:08 +01:00
|
|
|
name = "dbus-${version}";
|
2017-02-01 20:22:19 +00:00
|
|
|
inherit version;
|
2013-03-23 16:08:47 +00:00
|
|
|
|
2013-04-11 21:12:00 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://dbus.freedesktop.org/releases/dbus/dbus-${version}.tar.gz";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
2013-03-23 16:08:47 +00:00
|
|
|
|
2016-05-02 19:01:59 +01:00
|
|
|
patches = lib.optional stdenv.isSunOS ./implement-getgrouplist.patch;
|
2015-10-13 13:33:08 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace tools/Makefile.in \
|
|
|
|
--replace 'install-localstatelibDATA:' 'disabled:' \
|
|
|
|
--replace 'install-data-local:' 'disabled:' \
|
|
|
|
--replace 'installcheck-local:' 'disabled:'
|
|
|
|
substituteInPlace bus/Makefile.in \
|
|
|
|
--replace '$(mkinstalldirs) $(DESTDIR)$(localstatedir)/run/dbus' ':'
|
|
|
|
'' + /* cleanup of runtime references */ ''
|
|
|
|
substituteInPlace ./dbus/dbus-sysdeps-unix.c \
|
|
|
|
--replace 'DBUS_BINDIR "/dbus-launch"' "\"$lib/bin/dbus-launch\""
|
|
|
|
substituteInPlace ./tools/dbus-launch.c \
|
|
|
|
--replace 'DBUS_DAEMONDIR"/dbus-daemon"' '"/run/current-system/sw/bin/dbus-daemon"'
|
|
|
|
'';
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" "lib" "doc" ];
|
2013-09-06 14:51:38 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
propagatedBuildInputs = [ expat ];
|
2015-10-13 13:33:08 +01:00
|
|
|
buildInputs = lib.optional stdenv.isLinux systemd
|
|
|
|
++ lib.optionals x11Support [ libX11 libICE libSM ];
|
|
|
|
# ToDo: optional selinux?
|
2011-08-26 15:57:48 +01:00
|
|
|
|
2013-09-06 14:51:38 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--with-session-socket-dir=/tmp"
|
2016-09-20 08:21:08 +01:00
|
|
|
"--with-system-pid-file=/run/dbus/pid"
|
|
|
|
"--with-system-socket=/run/dbus/system_bus_socket"
|
2014-03-13 20:44:51 +00:00
|
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
2016-09-20 08:21:08 +01:00
|
|
|
"--with-systemduserunitdir=$(out)/etc/systemd/user"
|
|
|
|
"--enable-user-session"
|
2017-02-16 11:55:03 +00:00
|
|
|
"--datadir=/etc"
|
|
|
|
"--libexecdir=$(out)/libexec"
|
2015-03-19 00:49:31 +00:00
|
|
|
] ++ lib.optional (!x11Support) "--without-x";
|
2011-08-26 15:57:48 +01:00
|
|
|
|
2013-04-11 21:12:00 +01:00
|
|
|
# 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.
|
2015-10-28 11:02:01 +00:00
|
|
|
# problems building without x11Support so disabled in that case for now
|
|
|
|
NIX_CFLAGS_COMPILE = lib.optionalString x11Support "-DDBUS_ENABLE_X11_AUTOLAUNCH=1";
|
2015-10-13 13:33:08 +01:00
|
|
|
NIX_CFLAGS_LINK = lib.optionalString (!stdenv.isDarwin) "-Wl,--as-needed";
|
2010-02-11 02:43:45 +00:00
|
|
|
|
2015-10-13 13:33:08 +01:00
|
|
|
enableParallelBuilding = true;
|
2011-08-26 15:57:48 +01:00
|
|
|
|
2015-10-13 13:33:08 +01:00
|
|
|
doCheck = true;
|
2011-12-14 18:22:55 +00:00
|
|
|
|
2017-02-16 11:55:03 +00:00
|
|
|
installFlags = [ "sysconfdir=$(out)/etc" "datadir=$(out)/share" ];
|
|
|
|
|
|
|
|
postInstall = ''
|
2017-02-20 02:16:26 +00:00
|
|
|
mkdir -p "$out/share/xml/dbus"
|
|
|
|
cp doc/*.dtd "$out/share/xml/dbus"
|
2017-02-16 11:55:03 +00:00
|
|
|
'';
|
2013-06-18 13:59:32 +01:00
|
|
|
|
2015-10-13 13:33:08 +01:00
|
|
|
# it's executed from $lib by absolute path
|
|
|
|
postFixup = ''
|
2015-12-02 09:03:23 +00:00
|
|
|
moveToOutput bin/dbus-launch "$lib"
|
2015-10-13 13:33:08 +01:00
|
|
|
ln -s "$lib/bin/dbus-launch" "$out/bin/"
|
2015-02-01 10:38:15 +00:00
|
|
|
'';
|
|
|
|
|
2015-10-13 13:33:08 +01:00
|
|
|
passthru = {
|
|
|
|
dbus-launch = "${self.lib}/bin/dbus-launch";
|
|
|
|
daemon = self.out;
|
|
|
|
};
|
2007-06-05 17:56:10 +01:00
|
|
|
|
2015-10-13 13:33:08 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Simple interprocess messaging system";
|
|
|
|
homepage = http://www.freedesktop.org/wiki/Software/dbus/;
|
|
|
|
license = licenses.gpl2Plus; # most is also under AFL-2.1
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2013-03-23 16:08:47 +00:00
|
|
|
};
|
2015-10-13 13:33:08 +01:00
|
|
|
in self
|