2013-02-21 20:09:10 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, dbus_glib, gtk, glib, libxml2
|
|
|
|
, intltool, polkit, orbit }:
|
2012-07-10 18:03:13 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
versionMajor = "3.2";
|
2014-01-10 01:10:03 +01:00
|
|
|
versionMinor = "6";
|
2012-07-10 18:03:13 +02:00
|
|
|
moduleName = "GConf";
|
|
|
|
|
|
|
|
origName = "${moduleName}-${versionMajor}.${versionMinor}";
|
2013-02-21 20:09:10 +01:00
|
|
|
|
2012-07-10 18:03:13 +02:00
|
|
|
name = "gconf-${versionMajor}.${versionMinor}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${origName}.tar.xz";
|
2014-01-10 01:10:03 +01:00
|
|
|
sha256 = "0k3q9nh53yhc9qxf1zaicz4sk8p3kzq4ndjdsgpaa2db0ccbj4hr";
|
2012-07-10 18:03:13 +02:00
|
|
|
};
|
|
|
|
|
2013-02-21 20:09:10 +01:00
|
|
|
buildInputs = [ libxml2 polkit gtk orbit ];
|
|
|
|
propagatedBuildInputs = [ glib dbus_glib ];
|
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
|
|
|
|
|
|
# ToDo: ldap reported as not found but afterwards reported as supported
|
|
|
|
|
2014-01-10 01:09:26 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-02-21 20:09:10 +01:00
|
|
|
homepage = http://projects.gnome.org/gconf/;
|
|
|
|
description = "A system for storing application preferences";
|
2014-01-10 01:09:26 +01:00
|
|
|
platforms = platforms.linux;
|
2013-02-21 20:09:10 +01:00
|
|
|
};
|
2012-07-10 18:03:13 +02:00
|
|
|
}
|