3
0
Fork 0
forked from mirrors/nixpkgs

gconf: add python to dependencies, fixes #31083

This commit is contained in:
Yegor Timoshenko 2017-11-01 12:31:59 +00:00
parent c433fef525
commit 3322a85223

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, dbus_glib, gnome3 ? null, glib, libxml2
, intltool, polkit, orbit, withGtk ? false }:
, intltool, polkit, orbit, python, withGtk ? false }:
assert withGtk -> (gnome3 != null);
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
sha256 = "0k3q9nh53yhc9qxf1zaicz4sk8p3kzq4ndjdsgpaa2db0ccbj4hr";
};
buildInputs = [ libxml2 polkit orbit ] ++ stdenv.lib.optional withGtk gnome3.gtk;
buildInputs = [ libxml2 polkit orbit python ] ++ stdenv.lib.optional withGtk gnome3.gtk;
propagatedBuildInputs = [ glib dbus_glib ];
nativeBuildInputs = [ pkgconfig intltool ];