cc @FRidh
This commit is contained in:
Jan Tojnar
2018-07-21 20:20:36 +02:00
parent ad47d658d1
commit 452017032a
2 changed files with 4 additions and 7 deletions
@@ -1,6 +1,5 @@
{ stdenv, fetchurl, pkgconfig, dbus-glib, glib, ORBit2, libxml2
, polkit, intltool, dbus, gtk2 ? null, withGtk ? false }:
, polkit, intltool }:
stdenv.mkDerivation rec {
name = "gconf-${version}";
@@ -13,8 +12,7 @@ stdenv.mkDerivation rec {
outputs = [ "out" "dev" "man" ];
buildInputs = [ ORBit2 dbus dbus-glib libxml2 ]
buildInputs = [ ORBit2 libxml2 ]
# polkit requires pam, which requires shadow.h, which is not available on
# darwin
++ stdenv.lib.optional (!stdenv.isDarwin) polkit;