ec3965d8d0
See #490 discussion. This reverts commit 1278859d3167b9f84bfab680d9c8c463adf64a60, reversing changes made to 0c020c98f9d4f49d5c9907db5f4b35aac7df959b. Conflicts: pkgs/desktops/xfce/core/xfce4-session.nix (take master) pkgs/lib/misc.nix (auto)
24 lines
681 B
Nix
24 lines
681 B
Nix
{ stdenv, fetchurl, glib, dbus_glib, pkgconfig, libxml2, gtk3, intltool, polkit }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "GConf-3.2.3";
|
|
|
|
src = fetchurl {
|
|
url = mirror://gnome/sources/GConf/3.2/GConf-3.2.3.tar.xz;
|
|
sha256 = "0jd1z9gb1b7mv4g07qm554va6idasf3swgrfqflypdh9s38mvdcy";
|
|
};
|
|
|
|
propagatedBuildInputs = [ glib dbus_glib ];
|
|
buildInputs = [ polkit gtk3 libxml2 ];
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
|
|
configureFlags = "--disable-orbit";
|
|
|
|
meta = {
|
|
homepage = http://projects.gnome.org/gconf/;
|
|
description = "A system for storing application preferences";
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
|
inherit (gtk3.meta) platforms;
|
|
};
|
|
}
|