15 stdenv.mkDerivation rec {
20 url = "mirror://gnome/sources/GConf/${lib.versions.majorMinor version}/GConf-${version}.tar.xz";
21 sha256 = "0k3q9nh53yhc9qxf1zaicz4sk8p3kzq4ndjdsgpaa2db0ccbj4hr";
37 # polkit requires pam, which requires shadow.h, which is not available on
39 ++ lib.optional (!stdenv.hostPlatform.isDarwin) polkit;
41 propagatedBuildInputs = [
54 # fixes the "libgconfbackend-oldxml.so is not portable" error on darwin
55 lib.optionals stdenv.hostPlatform.isDarwin [ "--enable-static" ];
58 2to3 --write --nobackup gsettings/gsettings-schema-convert
62 homepage = "https://projects.gnome.org/gconf/";
63 description = "Deprecated system for storing application preferences";
64 platforms = platforms.unix;