gnome2.gnome_vfs: disable HAL, enable ACL

svn path=/nixpkgs/trunk/; revision=31403
This commit is contained in:
Yury G. Kudryashov 2012-01-07 15:31:31 +00:00
parent b81dda6f0a
commit 50dab98373

View File

@ -1,5 +1,5 @@
{ stdenv, fetchurl_gnome, pkgconfig, libxml2, bzip2, openssl, samba, dbus_glib { stdenv, fetchurl_gnome, pkgconfig, libxml2, bzip2, openssl, samba, dbus_glib
, glib, fam, hal, cdparanoia, intltool, GConf, gnome_mime_data}: , glib, fam, cdparanoia, intltool, GConf, gnome_mime_data, avahi, acl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = src.pkgname; name = src.pkgname;
@ -12,9 +12,8 @@ stdenv.mkDerivation rec {
buildInputs = buildInputs =
[ pkgconfig libxml2 bzip2 openssl samba dbus_glib fam cdparanoia [ pkgconfig libxml2 bzip2 openssl samba dbus_glib fam cdparanoia
intltool gnome_mime_data intltool gnome_mime_data avahi acl
] ];
++ (if stdenv.isLinux then [hal] else []);
propagatedBuildInputs = [ GConf glib ]; propagatedBuildInputs = [ GConf glib ];
} }