summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-07-25 11:23:55 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-07-25 11:23:55 +0300
commitb619e0b016c5c79920aa06b78ccf936e56eaf45d (patch)
tree3b27f89ebd059ebf202f36cead815cbd61ededa7 /pkgs/desktops/gnome-2
parentdb557aab7b690f5e0e3348459f2e4dc8fd0d9298 (diff)
downloadnixpkgs-b619e0b016c5c79920aa06b78ccf936e56eaf45d.tar
nixpkgs-b619e0b016c5c79920aa06b78ccf936e56eaf45d.tar.gz
nixpkgs-b619e0b016c5c79920aa06b78ccf936e56eaf45d.tar.bz2
nixpkgs-b619e0b016c5c79920aa06b78ccf936e56eaf45d.tar.lz
nixpkgs-b619e0b016c5c79920aa06b78ccf936e56eaf45d.tar.xz
nixpkgs-b619e0b016c5c79920aa06b78ccf936e56eaf45d.tar.zst
nixpkgs-b619e0b016c5c79920aa06b78ccf936e56eaf45d.zip
gnome2.GConf: Add python2 dependency for gsettings-schema-convert
https://hydra.nixos.org/build/78312507
Diffstat (limited to 'pkgs/desktops/gnome-2')
-rw-r--r--pkgs/desktops/gnome-2/platform/GConf/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/desktops/gnome-2/platform/GConf/default.nix b/pkgs/desktops/gnome-2/platform/GConf/default.nix
index afba6e15ebd..dd9264514d4 100644
--- a/pkgs/desktops/gnome-2/platform/GConf/default.nix
+++ b/pkgs/desktops/gnome-2/platform/GConf/default.nix
@@ -1,5 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, dbus-glib, glib, ORBit2, libxml2
-, polkit, intltool }:
+{ stdenv, fetchurl, pkgconfig, dbus-glib, glib, ORBit2, libxml2, polkit, python2, intltool }:
 
 stdenv.mkDerivation rec {
   name = "gconf-${version}";
@@ -12,7 +11,7 @@ stdenv.mkDerivation rec {
 
   outputs = [ "out" "dev" "man" ];
 
-  buildInputs = [ ORBit2 libxml2 ]
+  buildInputs = [ ORBit2 libxml2 python2 ]
     # polkit requires pam, which requires shadow.h, which is not available on
     # darwin
     ++ stdenv.lib.optional (!stdenv.isDarwin) polkit;