2019-08-23 18:31:37 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchurl
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config
|
2019-08-23 18:31:37 +00:00
|
|
|
, expat
|
2022-09-21 07:04:52 +00:00
|
|
|
, enableSystemd ? lib.meta.availableOn stdenv.hostPlatform systemdMinimal
|
2022-07-03 21:13:45 +00:00
|
|
|
, systemdMinimal
|
2020-11-02 21:11:38 +00:00
|
|
|
, audit
|
|
|
|
, libapparmor
|
2019-08-23 18:31:37 +00:00
|
|
|
, dbus
|
2020-09-28 16:25:45 +00:00
|
|
|
, docbook_xml_dtd_44
|
|
|
|
, docbook-xsl-nons
|
|
|
|
, xmlto
|
2021-08-21 13:09:30 +00:00
|
|
|
, autoreconfHook
|
|
|
|
, autoconf-archive
|
2022-05-10 17:42:31 +00:00
|
|
|
, x11Support ? (stdenv.isLinux || stdenv.isDarwin)
|
|
|
|
, xorg
|
2019-08-23 18:31:37 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "dbus";
|
2022-10-09 17:33:30 +00:00
|
|
|
version = "1.14.4";
|
2015-03-19 00:49:31 +00:00
|
|
|
|
2019-08-23 18:31:37 +00:00
|
|
|
src = fetchurl {
|
2022-05-10 17:58:19 +00:00
|
|
|
url = "https://dbus.freedesktop.org/releases/dbus/dbus-${version}.tar.xz";
|
2022-10-09 17:33:30 +00:00
|
|
|
sha256 = "sha256-fA+bjl7A/yR5OD5iwAhKOimvme3xUU6fZZuBsw1ONT4=";
|
2019-08-23 18:31:37 +00:00
|
|
|
};
|
2008-12-15 23:45:52 +00:00
|
|
|
|
2022-10-09 17:33:30 +00:00
|
|
|
patches = lib.optional stdenv.isSunOS ./implement-getgrouplist.patch;
|
2019-08-23 18:31:37 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
2021-08-21 13:09:30 +00:00
|
|
|
substituteInPlace bus/Makefile.am \
|
|
|
|
--replace 'install-data-hook:' 'disabled:' \
|
|
|
|
--replace '$(mkinstalldirs) $(DESTDIR)$(localstatedir)/run/dbus' ':'
|
|
|
|
substituteInPlace tools/Makefile.am \
|
2019-08-23 18:31:37 +00:00
|
|
|
--replace 'install-data-local:' 'disabled:' \
|
|
|
|
--replace 'installcheck-local:' 'disabled:'
|
|
|
|
'' + /* 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"'
|
|
|
|
'';
|
|
|
|
|
2020-09-28 16:25:45 +00:00
|
|
|
outputs = [ "out" "dev" "lib" "doc" "man" ];
|
2019-08-23 18:31:37 +00:00
|
|
|
|
2022-05-10 18:44:08 +00:00
|
|
|
strictDeps = true;
|
2019-08-23 18:31:37 +00:00
|
|
|
nativeBuildInputs = [
|
2021-08-21 13:09:30 +00:00
|
|
|
autoreconfHook
|
|
|
|
autoconf-archive
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2020-09-28 16:25:45 +00:00
|
|
|
docbook_xml_dtd_44
|
|
|
|
docbook-xsl-nons
|
|
|
|
xmlto
|
2019-08-23 18:31:37 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
expat
|
|
|
|
];
|
|
|
|
|
2019-10-21 17:09:32 +00:00
|
|
|
buildInputs =
|
2022-05-10 17:42:31 +00:00
|
|
|
lib.optionals x11Support (with xorg; [
|
2019-10-21 17:09:32 +00:00
|
|
|
libX11
|
|
|
|
libICE
|
|
|
|
libSM
|
2022-07-03 21:13:45 +00:00
|
|
|
]) ++ lib.optional enableSystemd systemdMinimal
|
2021-06-07 12:45:00 +00:00
|
|
|
++ lib.optionals stdenv.isLinux [ audit libapparmor ];
|
2019-08-23 18:31:37 +00:00
|
|
|
# ToDo: optional selinux?
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-user-session"
|
2020-09-28 16:25:45 +00:00
|
|
|
"--enable-xml-docs"
|
2021-01-24 09:19:10 +00:00
|
|
|
"--libexecdir=${placeholder "out"}/libexec"
|
2019-09-25 20:47:17 +00:00
|
|
|
"--datadir=/etc"
|
2019-08-23 18:31:37 +00:00
|
|
|
"--localstatedir=/var"
|
|
|
|
"--runstatedir=/run"
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--with-session-socket-dir=/tmp"
|
|
|
|
"--with-system-pid-file=/run/dbus/pid"
|
|
|
|
"--with-system-socket=/run/dbus/system_bus_socket"
|
2021-01-24 09:19:10 +00:00
|
|
|
"--with-systemdsystemunitdir=${placeholder "out"}/etc/systemd/system"
|
|
|
|
"--with-systemduserunitdir=${placeholder "out"}/etc/systemd/user"
|
2020-11-02 21:11:38 +00:00
|
|
|
] ++ lib.optional (!x11Support) "--without-x"
|
2022-05-10 18:44:08 +00:00
|
|
|
++ lib.optionals stdenv.isLinux [ "--enable-apparmor" "--enable-libaudit" ]
|
2022-07-03 21:13:45 +00:00
|
|
|
++ lib.optionals enableSystemd [ "SYSTEMCTL=${systemdMinimal}/bin/systemctl" ];
|
2019-08-23 18:31:37 +00:00
|
|
|
|
|
|
|
NIX_CFLAGS_LINK = lib.optionalString (!stdenv.isDarwin) "-Wl,--as-needed";
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2022-05-22 19:52:04 +00:00
|
|
|
makeFlags = [
|
|
|
|
# Fix paths in XML catalog broken by mismatching build/install datadir.
|
|
|
|
"dtddir=${placeholder "out"}/share/xml/dbus-1"
|
|
|
|
];
|
|
|
|
|
2019-08-23 18:31:37 +00:00
|
|
|
installFlags = [
|
2021-01-24 09:19:10 +00:00
|
|
|
"sysconfdir=${placeholder "out"}/etc"
|
|
|
|
"datadir=${placeholder "out"}/share"
|
2019-08-23 18:31:37 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# it's executed from $lib by absolute path
|
|
|
|
postFixup = ''
|
|
|
|
moveToOutput bin/dbus-launch "$lib"
|
|
|
|
ln -s "$lib/bin/dbus-launch" "$out/bin/"
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
dbus-launch = "${dbus.lib}/bin/dbus-launch";
|
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2019-08-23 18:31:37 +00:00
|
|
|
description = "Simple interprocess messaging system";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.freedesktop.org/wiki/Software/dbus/";
|
2019-08-23 18:31:37 +00:00
|
|
|
license = licenses.gpl2Plus; # most is also under AFL-2.1
|
2021-05-07 13:23:50 +00:00
|
|
|
maintainers = teams.freedesktop.members ++ (with maintainers; [ ]);
|
2019-08-23 18:31:37 +00:00
|
|
|
platforms = platforms.unix;
|
2013-03-23 16:08:47 +00:00
|
|
|
};
|
2019-08-23 18:31:37 +00:00
|
|
|
}
|