mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
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 }:
|
{ stdenv, fetchurl, pkgconfig, expat, libX11, libICE, libSM, useX11 ? true }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "1.4.16";
|
version = "1.6.4";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://dbus.freedesktop.org/releases/dbus/dbus-${version}.tar.gz";
|
url = "http://dbus.freedesktop.org/releases/dbus/dbus-${version}.tar.gz";
|
||||||
sha256 = "1ii93d0lzj5xm564dcq6ca4s0nvm5i9fx3jp0s7i9hlc5wkfd3hx";
|
sha256 = "1wacqyfkcpayg7f8rvx9awqg275n5pksxq5q7y21lxjx85x6pfjz";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./ignore-missing-includedirs.patch ];
|
patches = [ ./ignore-missing-includedirs.patch ];
|
||||||
@ -21,6 +21,10 @@ in rec {
|
|||||||
|
|
||||||
buildInputs = [ expat ];
|
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;
|
inherit src patches configureFlags;
|
||||||
|
|
||||||
preConfigure =
|
preConfigure =
|
||||||
@ -58,6 +62,8 @@ in rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
postConfigure = "cd tools";
|
postConfigure = "cd tools";
|
||||||
|
|
||||||
|
installFlags = "localstatedir=$TMPDIR/var";
|
||||||
};
|
};
|
||||||
|
|
||||||
# I'm too lazy to separate daemon and libs now.
|
# I'm too lazy to separate daemon and libs now.
|
||||||
|
Loading…
Reference in New Issue
Block a user