mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
gnome.GConf: fix build on darwin
* disable polkit * add --enable-static to configureFlags
This commit is contained in:
parent
216d47be0c
commit
a42133a102
1 changed files with 8 additions and 2 deletions
|
@ -9,10 +9,16 @@ stdenv.mkDerivation {
|
|||
sha256 = "09ch709cb9fniwc4221xgkq0jf0x0lxs814sqig8p2dcll0llvzk";
|
||||
};
|
||||
|
||||
buildInputs = [ ORBit2 dbus_libs dbus_glib libxml2 polkit gtk ];
|
||||
buildInputs = [ ORBit2 dbus_libs dbus_glib libxml2 gtk ]
|
||||
# polkit requires pam, which requires shadow.h, which is not available on
|
||||
# darwin
|
||||
++ stdenv.lib.optional (!stdenv.isDarwin) polkit;
|
||||
|
||||
propagatedBuildInputs = [ glib ];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig intltool ];
|
||||
|
||||
configureFlags = "--with-gtk=2.0";
|
||||
configureFlags = [ "--with-gtk=2.0" ]
|
||||
# fixes the "libgconfbackend-oldxml.so is not portable" error on darwin
|
||||
++ stdenv.lib.optional stdenv.isDarwin [ "--enable-static" ];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue