forked from mirrors/nixpkgs
dbus: Update to 1.6.4
This commit is contained in:
parent
5046d0628f
commit
5b7d7b11f3
|
@ -1,11 +1,11 @@
|
|||
{ stdenv, fetchurl, pkgconfig, expat, libX11, libICE, libSM, useX11 ? true }:
|
||||
|
||||
let
|
||||
version = "1.4.16";
|
||||
version = "1.6.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://dbus.freedesktop.org/releases/dbus/dbus-${version}.tar.gz";
|
||||
sha256 = "1ii93d0lzj5xm564dcq6ca4s0nvm5i9fx3jp0s7i9hlc5wkfd3hx";
|
||||
sha256 = "1wacqyfkcpayg7f8rvx9awqg275n5pksxq5q7y21lxjx85x6pfjz";
|
||||
};
|
||||
|
||||
patches = [ ./ignore-missing-includedirs.patch ];
|
||||
|
@ -21,6 +21,10 @@ in rec {
|
|||
|
||||
buildInputs = [ expat ];
|
||||
|
||||
# FIXME: dbus has optional systemd integration when checking
|
||||
# at_console policies. How to enable this without introducing a
|
||||
# circular dependency between dbus and systemd?
|
||||
|
||||
inherit src patches configureFlags;
|
||||
|
||||
preConfigure =
|
||||
|
@ -58,6 +62,8 @@ in rec {
|
|||
'';
|
||||
|
||||
postConfigure = "cd tools";
|
||||
|
||||
installFlags = "localstatedir=$TMPDIR/var";
|
||||
};
|
||||
|
||||
# I'm too lazy to separate daemon and libs now.
|
||||
|
|
Loading…
Reference in a new issue