udisks2: update

Also depend on systemd instead of udev, as some libsystemd* is used.
This commit is contained in:
Vladimír Čunát 2014-12-25 18:08:57 +01:00
parent 4e87c458c4
commit 1aec647906

View File

@ -1,14 +1,14 @@
{ stdenv, fetchurl, pkgconfig, intltool { stdenv, fetchurl, pkgconfig, intltool
, expat, acl, udev, glib, libatasmart, polkit , expat, acl, systemd, glib, libatasmart, polkit
, libxslt, docbook_xsl, utillinux, mdadm , libxslt, docbook_xsl, utillinux, mdadm
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "udisks-2.1.3"; name = "udisks-2.1.4";
src = fetchurl { src = fetchurl {
url = "http://udisks.freedesktop.org/releases/${name}.tar.bz2"; url = "http://udisks.freedesktop.org/releases/${name}.tar.bz2";
sha256 = "0bb3403pa23j317b7z9ikdigr6ll5cl93l4hiy4afjgfa7b2zjaw"; sha256 = "1fqrwmdyn5vc5r7wixh2f013ca1qf3kwy4ia8mh9282a7bfliqd4";
}; };
patches = [ ./force-path.patch ]; patches = [ ./force-path.patch ];
@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool ]; nativeBuildInputs = [ pkgconfig intltool ];
propagatedBuildInputs = [ expat acl udev glib libatasmart polkit ]; # in closure anyway propagatedBuildInputs = [ expat acl systemd glib libatasmart polkit ]; # in closure anyway
buildInputs = [ libxslt docbook_xsl ]; buildInputs = [ libxslt docbook_xsl ];